| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ACPI_PROCESSOR_H | 
|  | 2 | #define __ACPI_PROCESSOR_H | 
|  | 3 |  | 
|  | 4 | #include <linux/kernel.h> | 
| Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 5 | #include <linux/cpu.h> | 
| Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 6 | #include <linux/cpuidle.h> | 
| Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 7 | #include <linux/thermal.h> | 
| Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 8 | #include <asm/acpi.h> | 
|  | 9 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #define ACPI_PROCESSOR_BUSY_METRIC	10 | 
|  | 11 |  | 
|  | 12 | #define ACPI_PROCESSOR_MAX_POWER	8 | 
|  | 13 | #define ACPI_PROCESSOR_MAX_C2_LATENCY	100 | 
|  | 14 | #define ACPI_PROCESSOR_MAX_C3_LATENCY	1000 | 
|  | 15 |  | 
|  | 16 | #define ACPI_PROCESSOR_MAX_THROTTLING	16 | 
|  | 17 | #define ACPI_PROCESSOR_MAX_THROTTLE	250	/* 25% */ | 
|  | 18 | #define ACPI_PROCESSOR_MAX_DUTY_WIDTH	4 | 
|  | 19 |  | 
| Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 20 | #define ACPI_PDC_REVISION_ID		0x1 | 
|  | 21 |  | 
| Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 22 | #define ACPI_PSD_REV0_REVISION		0	/* Support for _PSD as in ACPI 3.0 */ | 
| Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 23 | #define ACPI_PSD_REV0_ENTRIES		5 | 
|  | 24 |  | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 25 | #define ACPI_TSD_REV0_REVISION		0	/* Support for _PSD as in ACPI 3.0 */ | 
|  | 26 | #define ACPI_TSD_REV0_ENTRIES		5 | 
| Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 27 | /* | 
|  | 28 | * Types of coordination defined in ACPI 3.0. Same macros can be used across | 
|  | 29 | * P, C and T states | 
|  | 30 | */ | 
|  | 31 | #define DOMAIN_COORD_TYPE_SW_ALL	0xfc | 
|  | 32 | #define DOMAIN_COORD_TYPE_SW_ANY	0xfd | 
|  | 33 | #define DOMAIN_COORD_TYPE_HW_ALL	0xfe | 
|  | 34 |  | 
| Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 35 | #define ACPI_CSTATE_SYSTEMIO	0 | 
|  | 36 | #define ACPI_CSTATE_FFH		1 | 
|  | 37 | #define ACPI_CSTATE_HALT	2 | 
|  | 38 |  | 
|  | 39 | #define ACPI_CX_DESC_LEN	32 | 
| Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 40 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | /* Power Management */ | 
|  | 42 |  | 
|  | 43 | struct acpi_processor_cx; | 
|  | 44 |  | 
|  | 45 | struct acpi_power_register { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 46 | u8 descriptor; | 
|  | 47 | u16 length; | 
|  | 48 | u8 space_id; | 
|  | 49 | u8 bit_width; | 
|  | 50 | u8 bit_offset; | 
| Len Brown | 718be4a | 2010-07-22 16:54:27 -0400 | [diff] [blame] | 51 | u8 access_size; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 52 | u64 address; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | } __attribute__ ((packed)); | 
|  | 54 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | struct acpi_processor_cx { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 56 | u8 valid; | 
|  | 57 | u8 type; | 
|  | 58 | u32 address; | 
| venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 59 | u8 entry_method; | 
| Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 60 | u8 index; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 61 | u32 latency; | 
|  | 62 | u32 latency_ticks; | 
|  | 63 | u32 power; | 
|  | 64 | u32 usage; | 
| Dominik Brodowski | a3c6598 | 2006-06-24 19:37:00 -0400 | [diff] [blame] | 65 | u64 time; | 
| Len Brown | 718be4a | 2010-07-22 16:54:27 -0400 | [diff] [blame] | 66 | u8 bm_sts_skip; | 
| Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 67 | char desc[ACPI_CX_DESC_LEN]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | }; | 
|  | 69 |  | 
|  | 70 | struct acpi_processor_power { | 
| Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 71 | struct cpuidle_device dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | struct acpi_processor_cx *state; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 73 | unsigned long bm_check_timestamp; | 
|  | 74 | u32 default_state; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 75 | int count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | struct acpi_processor_cx states[ACPI_PROCESSOR_MAX_POWER]; | 
| Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 77 | int timer_broadcast_on_state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | }; | 
|  | 79 |  | 
|  | 80 | /* Performance Management */ | 
|  | 81 |  | 
| Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 82 | struct acpi_psd_package { | 
| Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 83 | u64 num_entries; | 
|  | 84 | u64 revision; | 
|  | 85 | u64 domain; | 
|  | 86 | u64 coord_type; | 
|  | 87 | u64 num_processors; | 
| Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 88 | } __attribute__ ((packed)); | 
|  | 89 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | struct acpi_pct_register { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 91 | u8 descriptor; | 
|  | 92 | u16 length; | 
|  | 93 | u8 space_id; | 
|  | 94 | u8 bit_width; | 
|  | 95 | u8 bit_offset; | 
|  | 96 | u8 reserved; | 
|  | 97 | u64 address; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } __attribute__ ((packed)); | 
|  | 99 |  | 
|  | 100 | struct acpi_processor_px { | 
| Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 101 | u64 core_frequency;	/* megahertz */ | 
|  | 102 | u64 power;	/* milliWatts */ | 
|  | 103 | u64 transition_latency;	/* microseconds */ | 
|  | 104 | u64 bus_master_latency;	/* microseconds */ | 
|  | 105 | u64 control;	/* control value */ | 
|  | 106 | u64 status;	/* success indicator */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | }; | 
|  | 108 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | struct acpi_processor_performance { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 110 | unsigned int state; | 
|  | 111 | unsigned int platform_limit; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | struct acpi_pct_register control_register; | 
|  | 113 | struct acpi_pct_register status_register; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 114 | unsigned int state_count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | struct acpi_processor_px *states; | 
| Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 116 | struct acpi_psd_package domain_info; | 
| Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 117 | cpumask_var_t shared_cpu_map; | 
| Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 118 | unsigned int shared_type; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | }; | 
|  | 120 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | /* Throttling Control */ | 
|  | 122 |  | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 123 | struct acpi_tsd_package { | 
| Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 124 | u64 num_entries; | 
|  | 125 | u64 revision; | 
|  | 126 | u64 domain; | 
|  | 127 | u64 coord_type; | 
|  | 128 | u64 num_processors; | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 129 | } __attribute__ ((packed)); | 
|  | 130 |  | 
|  | 131 | struct acpi_ptc_register { | 
|  | 132 | u8 descriptor; | 
|  | 133 | u16 length; | 
|  | 134 | u8 space_id; | 
|  | 135 | u8 bit_width; | 
|  | 136 | u8 bit_offset; | 
|  | 137 | u8 reserved; | 
|  | 138 | u64 address; | 
|  | 139 | } __attribute__ ((packed)); | 
|  | 140 |  | 
|  | 141 | struct acpi_processor_tx_tss { | 
| Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 142 | u64 freqpercentage;	/* */ | 
|  | 143 | u64 power;	/* milliWatts */ | 
|  | 144 | u64 transition_latency;	/* microseconds */ | 
|  | 145 | u64 control;	/* control value */ | 
|  | 146 | u64 status;	/* success indicator */ | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 147 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | struct acpi_processor_tx { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 149 | u16 power; | 
|  | 150 | u16 performance; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | }; | 
|  | 152 |  | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 153 | struct acpi_processor; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | struct acpi_processor_throttling { | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 155 | unsigned int state; | 
|  | 156 | unsigned int platform_limit; | 
|  | 157 | struct acpi_pct_register control_register; | 
|  | 158 | struct acpi_pct_register status_register; | 
|  | 159 | unsigned int state_count; | 
|  | 160 | struct acpi_processor_tx_tss *states_tss; | 
|  | 161 | struct acpi_tsd_package domain_info; | 
| Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 162 | cpumask_var_t shared_cpu_map; | 
| Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 163 | int (*acpi_processor_get_throttling) (struct acpi_processor * pr); | 
|  | 164 | int (*acpi_processor_set_throttling) (struct acpi_processor * pr, | 
| Frans Pop | 2a90800 | 2009-08-26 14:29:29 -0700 | [diff] [blame] | 165 | int state, bool force); | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 166 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 167 | u32 address; | 
|  | 168 | u8 duty_offset; | 
|  | 169 | u8 duty_width; | 
| Zhao Yakui | 1180509 | 2008-01-28 13:53:42 +0800 | [diff] [blame] | 170 | u8 tsd_valid_flag; | 
|  | 171 | unsigned int shared_type; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | struct acpi_processor_tx states[ACPI_PROCESSOR_MAX_THROTTLING]; | 
|  | 173 | }; | 
|  | 174 |  | 
|  | 175 | /* Limit Interface */ | 
|  | 176 |  | 
|  | 177 | struct acpi_processor_lx { | 
| Joe Perches | aee07ba | 2008-02-03 17:07:16 +0200 | [diff] [blame] | 178 | int px;			/* performance state */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 179 | int tx;			/* throttle level */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | }; | 
|  | 181 |  | 
|  | 182 | struct acpi_processor_limit { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 183 | struct acpi_processor_lx state;	/* current limit */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | struct acpi_processor_lx thermal;	/* thermal limit */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 185 | struct acpi_processor_lx user;	/* user limit */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | }; | 
|  | 187 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | struct acpi_processor_flags { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 189 | u8 power:1; | 
|  | 190 | u8 performance:1; | 
|  | 191 | u8 throttling:1; | 
|  | 192 | u8 limit:1; | 
|  | 193 | u8 bm_control:1; | 
|  | 194 | u8 bm_check:1; | 
|  | 195 | u8 has_cst:1; | 
|  | 196 | u8 power_setup_done:1; | 
| Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 197 | u8 bm_rld_set:1; | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 198 | u8 need_hotplug_init:1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | }; | 
|  | 200 |  | 
|  | 201 | struct acpi_processor { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 202 | acpi_handle handle; | 
|  | 203 | u32 acpi_id; | 
|  | 204 | u32 id; | 
|  | 205 | u32 pblk; | 
|  | 206 | int performance_platform_limit; | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 207 | int throttling_platform_limit; | 
| Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 208 | /* 0 - states 0..n-th state available */ | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 209 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | struct acpi_processor_flags flags; | 
|  | 211 | struct acpi_processor_power power; | 
|  | 212 | struct acpi_processor_performance *performance; | 
|  | 213 | struct acpi_processor_throttling throttling; | 
|  | 214 | struct acpi_processor_limit limit; | 
| Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 215 | struct thermal_cooling_device *cdev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | }; | 
|  | 217 |  | 
|  | 218 | struct acpi_processor_errata { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 219 | u8 smp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | struct { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 221 | u8 throttle:1; | 
|  | 222 | u8 fdma:1; | 
|  | 223 | u8 reserved:6; | 
|  | 224 | u32 bmisx; | 
|  | 225 | } piix4; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | }; | 
|  | 227 |  | 
| Andi Kleen | 9061e0e | 2012-01-26 00:09:08 +0100 | [diff] [blame] | 228 | extern void acpi_processor_load_module(struct acpi_processor *pr); | 
| Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 229 | extern int acpi_processor_preregister_performance(struct | 
|  | 230 | acpi_processor_performance | 
| Tejun Heo | a29d8b8 | 2010-02-02 14:39:15 +0900 | [diff] [blame] | 231 | __percpu *performance); | 
| Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 232 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 233 | extern int acpi_processor_register_performance(struct acpi_processor_performance | 
|  | 234 | *performance, unsigned int cpu); | 
|  | 235 | extern void acpi_processor_unregister_performance(struct | 
|  | 236 | acpi_processor_performance | 
|  | 237 | *performance, | 
|  | 238 | unsigned int cpu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 |  | 
|  | 240 | /* note: this locks both the calling module and the processor module | 
|  | 241 | if a _PPC object exists, rmmod is disallowed then */ | 
|  | 242 | int acpi_processor_notify_smm(struct module *calling_module); | 
|  | 243 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | /* for communication between multiple parts of the processor kernel module */ | 
| Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 245 | DECLARE_PER_CPU(struct acpi_processor *, processors); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | extern struct acpi_processor_errata errata; | 
|  | 247 |  | 
| Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 248 | #ifdef ARCH_HAS_POWER_INIT | 
| Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 249 | void acpi_processor_power_init_bm_check(struct acpi_processor_flags *flags, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 250 | unsigned int cpu); | 
| Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 251 | int acpi_processor_ffh_cstate_probe(unsigned int cpu, | 
| Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 252 | struct acpi_processor_cx *cx, | 
|  | 253 | struct acpi_power_register *reg); | 
| Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 254 | void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx *cstate); | 
| Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 255 | #else | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 256 | static inline void acpi_processor_power_init_bm_check(struct | 
|  | 257 | acpi_processor_flags | 
|  | 258 | *flags, unsigned int cpu) | 
| Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 259 | { | 
|  | 260 | flags->bm_check = 1; | 
|  | 261 | return; | 
|  | 262 | } | 
| Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 263 | static inline int acpi_processor_ffh_cstate_probe(unsigned int cpu, | 
| Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 264 | struct acpi_processor_cx *cx, | 
|  | 265 | struct acpi_power_register | 
|  | 266 | *reg) | 
| Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 267 | { | 
|  | 268 | return -1; | 
|  | 269 | } | 
| Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 270 | static inline void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx | 
|  | 271 | *cstate) | 
| Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 272 | { | 
|  | 273 | return; | 
|  | 274 | } | 
| Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 275 | #endif | 
|  | 276 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | /* in processor_perflib.c */ | 
| Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 278 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | #ifdef CONFIG_CPU_FREQ | 
|  | 280 | void acpi_processor_ppc_init(void); | 
|  | 281 | void acpi_processor_ppc_exit(void); | 
| Zhao Yakui | d81c45e | 2009-10-16 09:20:41 +0800 | [diff] [blame] | 282 | int acpi_processor_ppc_has_changed(struct acpi_processor *pr, int event_flag); | 
| Thomas Renninger | e2f74f3 | 2009-11-19 12:31:01 +0100 | [diff] [blame] | 283 | extern int acpi_processor_get_bios_limit(int cpu, unsigned int *limit); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | #else | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 285 | static inline void acpi_processor_ppc_init(void) | 
|  | 286 | { | 
|  | 287 | return; | 
|  | 288 | } | 
|  | 289 | static inline void acpi_processor_ppc_exit(void) | 
|  | 290 | { | 
|  | 291 | return; | 
|  | 292 | } | 
| Zhao Yakui | d81c45e | 2009-10-16 09:20:41 +0800 | [diff] [blame] | 293 | static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr, | 
|  | 294 | int event_flag) | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 295 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | static unsigned int printout = 1; | 
|  | 297 | if (printout) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 298 | printk(KERN_WARNING | 
|  | 299 | "Warning: Processor Platform Limit event detected, but not handled.\n"); | 
|  | 300 | printk(KERN_WARNING | 
|  | 301 | "Consider compiling CPUfreq support into your kernel.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | printout = 0; | 
|  | 303 | } | 
|  | 304 | return 0; | 
|  | 305 | } | 
| Thomas Renninger | e2f74f3 | 2009-11-19 12:31:01 +0100 | [diff] [blame] | 306 | static inline int acpi_processor_get_bios_limit(int cpu, unsigned int *limit) | 
|  | 307 | { | 
|  | 308 | return -ENODEV; | 
|  | 309 | } | 
|  | 310 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 311 | #endif				/* CONFIG_CPU_FREQ */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 |  | 
| Alex Chiang | 4d5d4cd | 2010-02-22 12:11:14 -0700 | [diff] [blame] | 313 | /* in processor_core.c */ | 
| Alex Chiang | 43bab25 | 2009-12-20 12:23:16 -0700 | [diff] [blame] | 314 | void acpi_processor_set_pdc(acpi_handle handle); | 
| Alex Chiang | 2e9d5e4 | 2010-02-22 12:11:19 -0700 | [diff] [blame] | 315 | int acpi_get_cpuid(acpi_handle, int type, u32 acpi_id); | 
| Alex Chiang | 78f1699 | 2009-12-20 12:19:09 -0700 | [diff] [blame] | 316 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | /* in processor_throttling.c */ | 
| Adrian Bunk | a66b34b | 2008-06-09 16:22:24 -0700 | [diff] [blame] | 318 | int acpi_processor_tstate_has_changed(struct acpi_processor *pr); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 319 | int acpi_processor_get_throttling_info(struct acpi_processor *pr); | 
| Frans Pop | 2a90800 | 2009-08-26 14:29:29 -0700 | [diff] [blame] | 320 | extern int acpi_processor_set_throttling(struct acpi_processor *pr, | 
|  | 321 | int state, bool force); | 
| Zhao Yakui | 5a344a5 | 2011-01-10 16:35:45 +0800 | [diff] [blame] | 322 | /* | 
|  | 323 | * Reevaluate whether the T-state is invalid after one cpu is | 
|  | 324 | * onlined/offlined. In such case the flags.throttling will be updated. | 
|  | 325 | */ | 
|  | 326 | extern void acpi_processor_reevaluate_tstate(struct acpi_processor *pr, | 
|  | 327 | unsigned long action); | 
| Jan Engelhardt | 070d8eb | 2009-01-12 00:07:55 +0100 | [diff] [blame] | 328 | extern const struct file_operations acpi_processor_throttling_fops; | 
| Zhao Yakui | 1180509 | 2008-01-28 13:53:42 +0800 | [diff] [blame] | 329 | extern void acpi_processor_throttling_init(void); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | /* in processor_idle.c */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 331 | int acpi_processor_power_init(struct acpi_processor *pr, | 
|  | 332 | struct acpi_device *device); | 
|  | 333 | int acpi_processor_cst_has_changed(struct acpi_processor *pr); | 
| Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 334 | int acpi_processor_hotplug(struct acpi_processor *pr); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 335 | int acpi_processor_power_exit(struct acpi_processor *pr, | 
|  | 336 | struct acpi_device *device); | 
| Thomas Gleixner | b04e7bd | 2007-09-22 22:29:05 +0000 | [diff] [blame] | 337 | int acpi_processor_suspend(struct acpi_device * device, pm_message_t state); | 
|  | 338 | int acpi_processor_resume(struct acpi_device * device); | 
| Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 339 | extern struct cpuidle_driver acpi_idle_driver; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 |  | 
|  | 341 | /* in processor_thermal.c */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 342 | int acpi_processor_get_limit_info(struct acpi_processor *pr); | 
| Vasiliy Kulikov | 9c8b04b | 2011-06-25 21:07:52 +0400 | [diff] [blame] | 343 | extern const struct thermal_cooling_device_ops processor_cooling_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | #ifdef CONFIG_CPU_FREQ | 
|  | 345 | void acpi_thermal_cpufreq_init(void); | 
|  | 346 | void acpi_thermal_cpufreq_exit(void); | 
|  | 347 | #else | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 348 | static inline void acpi_thermal_cpufreq_init(void) | 
|  | 349 | { | 
|  | 350 | return; | 
|  | 351 | } | 
|  | 352 | static inline void acpi_thermal_cpufreq_exit(void) | 
|  | 353 | { | 
|  | 354 | return; | 
|  | 355 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | #endif | 
|  | 357 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | #endif |