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