blob: 06480bcabfdc0eb83bb99d8b56d17671a14b328a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ACPI_PROCESSOR_H
2#define __ACPI_PROCESSOR_H
3
4#include <linux/kernel.h>
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -05005#include <linux/cpu.h>
Len Brown4f86d3a2007-10-03 18:58:00 -04006#include <linux/cpuidle.h>
Zhang Ruid9460fd222008-01-17 15:51:23 +08007#include <linux/thermal.h>
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04008#include <asm/acpi.h>
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#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 Pallipadi02df8b92005-04-15 15:07:10 -040020#define ACPI_PDC_REVISION_ID 0x1
21
Len Brownfd350942007-05-09 23:34:35 -040022#define ACPI_PSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -050023#define ACPI_PSD_REV0_ENTRIES 5
24
Luming Yu01854e62007-05-26 22:49:58 +080025#define ACPI_TSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */
26#define ACPI_TSD_REV0_ENTRIES 5
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -050027/*
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 Pallipadi4fcb2fc2008-02-11 17:46:31 -080035#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 Pallipadi991528d2006-09-25 16:28:13 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/* Power Management */
42
43struct acpi_processor_cx;
44
45struct acpi_power_register {
Len Brown4be44fc2005-08-05 00:44:28 -040046 u8 descriptor;
47 u16 length;
48 u8 space_id;
49 u8 bit_width;
50 u8 bit_offset;
51 u8 reserved;
52 u64 address;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053} __attribute__ ((packed));
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055struct acpi_processor_cx_policy {
Len Brown4be44fc2005-08-05 00:44:28 -040056 u32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 struct acpi_processor_cx *state;
58 struct {
Len Brown4be44fc2005-08-05 00:44:28 -040059 u32 time;
60 u32 ticks;
61 u32 count;
62 u32 bm;
63 } threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66struct acpi_processor_cx {
Len Brown4be44fc2005-08-05 00:44:28 -040067 u8 valid;
68 u8 type;
69 u32 address;
venkatesh.pallipadi@intel.combc71bec2008-01-31 17:35:04 -080070 u8 entry_method;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -070071 u8 index;
Len Brown4be44fc2005-08-05 00:44:28 -040072 u32 latency;
73 u32 latency_ticks;
74 u32 power;
75 u32 usage;
Dominik Brodowskia3c65982006-06-24 19:37:00 -040076 u64 time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct acpi_processor_cx_policy promotion;
78 struct acpi_processor_cx_policy demotion;
Venkatesh Pallipadi4fcb2fc2008-02-11 17:46:31 -080079 char desc[ACPI_CX_DESC_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
82struct acpi_processor_power {
Len Brown4f86d3a2007-10-03 18:58:00 -040083 struct cpuidle_device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 struct acpi_processor_cx *state;
Len Brown4be44fc2005-08-05 00:44:28 -040085 unsigned long bm_check_timestamp;
86 u32 default_state;
87 u32 bm_activity;
88 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 struct acpi_processor_cx states[ACPI_PROCESSOR_MAX_POWER];
Thomas Gleixner169a0ab2007-02-16 01:27:55 -080090 int timer_broadcast_on_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
93/* Performance Management */
94
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -050095struct acpi_psd_package {
96 acpi_integer num_entries;
97 acpi_integer revision;
98 acpi_integer domain;
99 acpi_integer coord_type;
100 acpi_integer num_processors;
101} __attribute__ ((packed));
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103struct acpi_pct_register {
Len Brown4be44fc2005-08-05 00:44:28 -0400104 u8 descriptor;
105 u16 length;
106 u8 space_id;
107 u8 bit_width;
108 u8 bit_offset;
109 u8 reserved;
110 u64 address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111} __attribute__ ((packed));
112
113struct acpi_processor_px {
Len Brown4be44fc2005-08-05 00:44:28 -0400114 acpi_integer core_frequency; /* megahertz */
115 acpi_integer power; /* milliWatts */
116 acpi_integer transition_latency; /* microseconds */
117 acpi_integer bus_master_latency; /* microseconds */
118 acpi_integer control; /* control value */
119 acpi_integer status; /* success indicator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122struct acpi_processor_performance {
Len Brown4be44fc2005-08-05 00:44:28 -0400123 unsigned int state;
124 unsigned int platform_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 struct acpi_pct_register control_register;
126 struct acpi_pct_register status_register;
Len Brown4be44fc2005-08-05 00:44:28 -0400127 unsigned int state_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct acpi_processor_px *states;
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500129 struct acpi_psd_package domain_info;
130 cpumask_t shared_cpu_map;
131 unsigned int shared_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/* Throttling Control */
135
Luming Yu01854e62007-05-26 22:49:58 +0800136struct acpi_tsd_package {
137 acpi_integer num_entries;
138 acpi_integer revision;
139 acpi_integer domain;
140 acpi_integer coord_type;
141 acpi_integer num_processors;
142} __attribute__ ((packed));
143
144struct acpi_ptc_register {
145 u8 descriptor;
146 u16 length;
147 u8 space_id;
148 u8 bit_width;
149 u8 bit_offset;
150 u8 reserved;
151 u64 address;
152} __attribute__ ((packed));
153
154struct acpi_processor_tx_tss {
155 acpi_integer freqpercentage; /* */
156 acpi_integer power; /* milliWatts */
157 acpi_integer transition_latency; /* microseconds */
158 acpi_integer control; /* control value */
159 acpi_integer status; /* success indicator */
160};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161struct acpi_processor_tx {
Len Brown4be44fc2005-08-05 00:44:28 -0400162 u16 power;
163 u16 performance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165
Luming Yu01854e62007-05-26 22:49:58 +0800166struct acpi_processor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167struct acpi_processor_throttling {
Luming Yu01854e62007-05-26 22:49:58 +0800168 unsigned int state;
169 unsigned int platform_limit;
170 struct acpi_pct_register control_register;
171 struct acpi_pct_register status_register;
172 unsigned int state_count;
173 struct acpi_processor_tx_tss *states_tss;
174 struct acpi_tsd_package domain_info;
175 cpumask_t shared_cpu_map;
Len Brownff55a9c2007-06-02 00:15:25 -0400176 int (*acpi_processor_get_throttling) (struct acpi_processor * pr);
177 int (*acpi_processor_set_throttling) (struct acpi_processor * pr,
178 int state);
Luming Yu01854e62007-05-26 22:49:58 +0800179
Len Brown4be44fc2005-08-05 00:44:28 -0400180 u32 address;
181 u8 duty_offset;
182 u8 duty_width;
Zhao Yakui11805092008-01-28 13:53:42 +0800183 u8 tsd_valid_flag;
184 unsigned int shared_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct acpi_processor_tx states[ACPI_PROCESSOR_MAX_THROTTLING];
186};
187
188/* Limit Interface */
189
190struct acpi_processor_lx {
Joe Perchesaee07ba2008-02-03 17:07:16 +0200191 int px; /* performance state */
Len Brown4be44fc2005-08-05 00:44:28 -0400192 int tx; /* throttle level */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193};
194
195struct acpi_processor_limit {
Len Brown4be44fc2005-08-05 00:44:28 -0400196 struct acpi_processor_lx state; /* current limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 struct acpi_processor_lx thermal; /* thermal limit */
Len Brown4be44fc2005-08-05 00:44:28 -0400198 struct acpi_processor_lx user; /* user limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199};
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201struct acpi_processor_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400202 u8 power:1;
203 u8 performance:1;
204 u8 throttling:1;
205 u8 limit:1;
206 u8 bm_control:1;
207 u8 bm_check:1;
208 u8 has_cst:1;
209 u8 power_setup_done:1;
Len Brown4f86d3a2007-10-03 18:58:00 -0400210 u8 bm_rld_set:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
213struct acpi_processor {
Len Brown4be44fc2005-08-05 00:44:28 -0400214 acpi_handle handle;
215 u32 acpi_id;
216 u32 id;
217 u32 pblk;
218 int performance_platform_limit;
Luming Yu01854e62007-05-26 22:49:58 +0800219 int throttling_platform_limit;
Len Brownff55a9c2007-06-02 00:15:25 -0400220 /* 0 - states 0..n-th state available */
Luming Yu01854e62007-05-26 22:49:58 +0800221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 struct acpi_processor_flags flags;
223 struct acpi_processor_power power;
224 struct acpi_processor_performance *performance;
225 struct acpi_processor_throttling throttling;
226 struct acpi_processor_limit limit;
Zhang Ruid9460fd222008-01-17 15:51:23 +0800227 struct thermal_cooling_device *cdev;
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400228 /* the _PDC objects for this processor, if any */
229 struct acpi_object_list *pdc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230};
231
232struct acpi_processor_errata {
Len Brown4be44fc2005-08-05 00:44:28 -0400233 u8 smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 struct {
Len Brown4be44fc2005-08-05 00:44:28 -0400235 u8 throttle:1;
236 u8 fdma:1;
237 u8 reserved:6;
238 u32 bmisx;
239 } piix4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240};
241
Len Brownfd350942007-05-09 23:34:35 -0400242extern int acpi_processor_preregister_performance(struct
243 acpi_processor_performance
Fenghua Yu50109292007-08-07 18:40:30 -0400244 *performance);
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500245
Len Brown4be44fc2005-08-05 00:44:28 -0400246extern int acpi_processor_register_performance(struct acpi_processor_performance
247 *performance, unsigned int cpu);
248extern void acpi_processor_unregister_performance(struct
249 acpi_processor_performance
250 *performance,
251 unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253/* note: this locks both the calling module and the processor module
254 if a _PPC object exists, rmmod is disallowed then */
255int acpi_processor_notify_smm(struct module *calling_module);
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257/* for communication between multiple parts of the processor kernel module */
Len Brown4be44fc2005-08-05 00:44:28 -0400258extern struct acpi_processor *processors[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259extern struct acpi_processor_errata errata;
260
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400261void arch_acpi_processor_init_pdc(struct acpi_processor *pr);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400262
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400263#ifdef ARCH_HAS_POWER_INIT
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400264void acpi_processor_power_init_bm_check(struct acpi_processor_flags *flags,
Len Brown4be44fc2005-08-05 00:44:28 -0400265 unsigned int cpu);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700266int acpi_processor_ffh_cstate_probe(unsigned int cpu,
Len Brownfd350942007-05-09 23:34:35 -0400267 struct acpi_processor_cx *cx,
268 struct acpi_power_register *reg);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700269void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx *cstate);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400270#else
Len Brown4be44fc2005-08-05 00:44:28 -0400271static inline void acpi_processor_power_init_bm_check(struct
272 acpi_processor_flags
273 *flags, unsigned int cpu)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400274{
275 flags->bm_check = 1;
276 return;
277}
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700278static inline int acpi_processor_ffh_cstate_probe(unsigned int cpu,
Len Brownfd350942007-05-09 23:34:35 -0400279 struct acpi_processor_cx *cx,
280 struct acpi_power_register
281 *reg)
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700282{
283 return -1;
284}
Len Brownfd350942007-05-09 23:34:35 -0400285static inline void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx
286 *cstate)
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700287{
288 return;
289}
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400290#endif
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/* in processor_perflib.c */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294#ifdef CONFIG_CPU_FREQ
295void acpi_processor_ppc_init(void);
296void acpi_processor_ppc_exit(void);
297int acpi_processor_ppc_has_changed(struct acpi_processor *pr);
298#else
Len Brown4be44fc2005-08-05 00:44:28 -0400299static inline void acpi_processor_ppc_init(void)
300{
301 return;
302}
303static inline void acpi_processor_ppc_exit(void)
304{
305 return;
306}
307static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr)
308{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 static unsigned int printout = 1;
310 if (printout) {
Len Brown4be44fc2005-08-05 00:44:28 -0400311 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 Torvalds1da177e2005-04-16 15:20:36 -0700315 printout = 0;
316 }
317 return 0;
318}
Len Brown4be44fc2005-08-05 00:44:28 -0400319#endif /* CONFIG_CPU_FREQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321/* in processor_throttling.c */
Len Brown4be44fc2005-08-05 00:44:28 -0400322int acpi_processor_get_throttling_info(struct acpi_processor *pr);
Luming Yu01854e62007-05-26 22:49:58 +0800323extern int acpi_processor_set_throttling(struct acpi_processor *pr, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324extern struct file_operations acpi_processor_throttling_fops;
Zhao Yakui11805092008-01-28 13:53:42 +0800325extern void acpi_processor_throttling_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/* in processor_idle.c */
Len Brown4be44fc2005-08-05 00:44:28 -0400327int acpi_processor_power_init(struct acpi_processor *pr,
328 struct acpi_device *device);
329int acpi_processor_cst_has_changed(struct acpi_processor *pr);
330int acpi_processor_power_exit(struct acpi_processor *pr,
331 struct acpi_device *device);
Thomas Gleixnerb04e7bd2007-09-22 22:29:05 +0000332int acpi_processor_suspend(struct acpi_device * device, pm_message_t state);
333int acpi_processor_resume(struct acpi_device * device);
Len Brown4f86d3a2007-10-03 18:58:00 -0400334extern struct cpuidle_driver acpi_idle_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336/* in processor_thermal.c */
Len Brown4be44fc2005-08-05 00:44:28 -0400337int acpi_processor_get_limit_info(struct acpi_processor *pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338extern struct file_operations acpi_processor_limit_fops;
Zhang Ruid9460fd222008-01-17 15:51:23 +0800339extern struct thermal_cooling_device_ops processor_cooling_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340#ifdef CONFIG_CPU_FREQ
341void acpi_thermal_cpufreq_init(void);
342void acpi_thermal_cpufreq_exit(void);
343#else
Len Brown4be44fc2005-08-05 00:44:28 -0400344static inline void acpi_thermal_cpufreq_init(void)
345{
346 return;
347}
348static inline void acpi_thermal_cpufreq_exit(void)
349{
350 return;
351}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#endif
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#endif