blob: b4b0ffdab098f50c5e1bb44f12400150e8ff923c [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -04007#include <asm/acpi.h>
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#define ACPI_PROCESSOR_BUSY_METRIC 10
10
11#define ACPI_PROCESSOR_MAX_POWER 8
12#define ACPI_PROCESSOR_MAX_C2_LATENCY 100
13#define ACPI_PROCESSOR_MAX_C3_LATENCY 1000
14
15#define ACPI_PROCESSOR_MAX_THROTTLING 16
16#define ACPI_PROCESSOR_MAX_THROTTLE 250 /* 25% */
17#define ACPI_PROCESSOR_MAX_DUTY_WIDTH 4
18
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -040019#define ACPI_PDC_REVISION_ID 0x1
20
Len Brownfd350942007-05-09 23:34:35 -040021#define ACPI_PSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -050022#define ACPI_PSD_REV0_ENTRIES 5
23
24/*
25 * Types of coordination defined in ACPI 3.0. Same macros can be used across
26 * P, C and T states
27 */
28#define DOMAIN_COORD_TYPE_SW_ALL 0xfc
29#define DOMAIN_COORD_TYPE_SW_ANY 0xfd
30#define DOMAIN_COORD_TYPE_HW_ALL 0xfe
31
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -070032#define ACPI_CSTATE_SYSTEMIO (0)
33#define ACPI_CSTATE_FFH (1)
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/* Power Management */
36
37struct acpi_processor_cx;
38
39struct acpi_power_register {
Len Brown4be44fc2005-08-05 00:44:28 -040040 u8 descriptor;
41 u16 length;
42 u8 space_id;
43 u8 bit_width;
44 u8 bit_offset;
45 u8 reserved;
46 u64 address;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047} __attribute__ ((packed));
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049struct acpi_processor_cx_policy {
Len Brown4be44fc2005-08-05 00:44:28 -040050 u32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 struct acpi_processor_cx *state;
52 struct {
Len Brown4be44fc2005-08-05 00:44:28 -040053 u32 time;
54 u32 ticks;
55 u32 count;
56 u32 bm;
57 } threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
60struct acpi_processor_cx {
Len Brown4be44fc2005-08-05 00:44:28 -040061 u8 valid;
62 u8 type;
63 u32 address;
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -070064 u8 space_id;
65 u8 index;
Len Brown4be44fc2005-08-05 00:44:28 -040066 u32 latency;
67 u32 latency_ticks;
68 u32 power;
69 u32 usage;
Dominik Brodowskia3c65982006-06-24 19:37:00 -040070 u64 time;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 struct acpi_processor_cx_policy promotion;
72 struct acpi_processor_cx_policy demotion;
73};
74
75struct acpi_processor_power {
76 struct acpi_processor_cx *state;
Len Brown4be44fc2005-08-05 00:44:28 -040077 unsigned long bm_check_timestamp;
78 u32 default_state;
79 u32 bm_activity;
80 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 struct acpi_processor_cx states[ACPI_PROCESSOR_MAX_POWER];
Thomas Gleixner169a0ab2007-02-16 01:27:55 -080082 int timer_broadcast_on_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
85/* Performance Management */
86
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -050087struct acpi_psd_package {
88 acpi_integer num_entries;
89 acpi_integer revision;
90 acpi_integer domain;
91 acpi_integer coord_type;
92 acpi_integer num_processors;
93} __attribute__ ((packed));
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095struct acpi_pct_register {
Len Brown4be44fc2005-08-05 00:44:28 -040096 u8 descriptor;
97 u16 length;
98 u8 space_id;
99 u8 bit_width;
100 u8 bit_offset;
101 u8 reserved;
102 u64 address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103} __attribute__ ((packed));
104
105struct acpi_processor_px {
Len Brown4be44fc2005-08-05 00:44:28 -0400106 acpi_integer core_frequency; /* megahertz */
107 acpi_integer power; /* milliWatts */
108 acpi_integer transition_latency; /* microseconds */
109 acpi_integer bus_master_latency; /* microseconds */
110 acpi_integer control; /* control value */
111 acpi_integer status; /* success indicator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114struct acpi_processor_performance {
Len Brown4be44fc2005-08-05 00:44:28 -0400115 unsigned int state;
116 unsigned int platform_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 struct acpi_pct_register control_register;
118 struct acpi_pct_register status_register;
Len Brown4be44fc2005-08-05 00:44:28 -0400119 unsigned int state_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 struct acpi_processor_px *states;
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500121 struct acpi_psd_package domain_info;
122 cpumask_t shared_cpu_map;
123 unsigned int shared_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/* Throttling Control */
127
128struct acpi_processor_tx {
Len Brown4be44fc2005-08-05 00:44:28 -0400129 u16 power;
130 u16 performance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133struct acpi_processor_throttling {
Len Brown4be44fc2005-08-05 00:44:28 -0400134 int state;
135 u32 address;
136 u8 duty_offset;
137 u8 duty_width;
138 int state_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 struct acpi_processor_tx states[ACPI_PROCESSOR_MAX_THROTTLING];
140};
141
142/* Limit Interface */
143
144struct acpi_processor_lx {
Len Brown4be44fc2005-08-05 00:44:28 -0400145 int px; /* performace state */
146 int tx; /* throttle level */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
149struct acpi_processor_limit {
Len Brown4be44fc2005-08-05 00:44:28 -0400150 struct acpi_processor_lx state; /* current limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct acpi_processor_lx thermal; /* thermal limit */
Len Brown4be44fc2005-08-05 00:44:28 -0400152 struct acpi_processor_lx user; /* user limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155struct acpi_processor_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400156 u8 power:1;
157 u8 performance:1;
158 u8 throttling:1;
159 u8 limit:1;
160 u8 bm_control:1;
161 u8 bm_check:1;
162 u8 has_cst:1;
163 u8 power_setup_done:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165
166struct acpi_processor {
Len Brown4be44fc2005-08-05 00:44:28 -0400167 acpi_handle handle;
168 u32 acpi_id;
169 u32 id;
170 u32 pblk;
171 int performance_platform_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 struct acpi_processor_flags flags;
173 struct acpi_processor_power power;
174 struct acpi_processor_performance *performance;
175 struct acpi_processor_throttling throttling;
176 struct acpi_processor_limit limit;
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400177
178 /* the _PDC objects for this processor, if any */
179 struct acpi_object_list *pdc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180};
181
182struct acpi_processor_errata {
Len Brown4be44fc2005-08-05 00:44:28 -0400183 u8 smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct {
Len Brown4be44fc2005-08-05 00:44:28 -0400185 u8 throttle:1;
186 u8 fdma:1;
187 u8 reserved:6;
188 u32 bmisx;
189 } piix4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190};
191
Len Brownfd350942007-05-09 23:34:35 -0400192extern int acpi_processor_preregister_performance(struct
193 acpi_processor_performance
194 **performance);
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500195
Len Brown4be44fc2005-08-05 00:44:28 -0400196extern int acpi_processor_register_performance(struct acpi_processor_performance
197 *performance, unsigned int cpu);
198extern void acpi_processor_unregister_performance(struct
199 acpi_processor_performance
200 *performance,
201 unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203/* note: this locks both the calling module and the processor module
204 if a _PPC object exists, rmmod is disallowed then */
205int acpi_processor_notify_smm(struct module *calling_module);
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* for communication between multiple parts of the processor kernel module */
Len Brown4be44fc2005-08-05 00:44:28 -0400208extern struct acpi_processor *processors[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209extern struct acpi_processor_errata errata;
210
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400211void arch_acpi_processor_init_pdc(struct acpi_processor *pr);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400212
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400213#ifdef ARCH_HAS_POWER_INIT
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400214void acpi_processor_power_init_bm_check(struct acpi_processor_flags *flags,
Len Brown4be44fc2005-08-05 00:44:28 -0400215 unsigned int cpu);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700216int acpi_processor_ffh_cstate_probe(unsigned int cpu,
Len Brownfd350942007-05-09 23:34:35 -0400217 struct acpi_processor_cx *cx,
218 struct acpi_power_register *reg);
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700219void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx *cstate);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400220#else
Len Brown4be44fc2005-08-05 00:44:28 -0400221static inline void acpi_processor_power_init_bm_check(struct
222 acpi_processor_flags
223 *flags, unsigned int cpu)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400224{
225 flags->bm_check = 1;
226 return;
227}
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700228static inline int acpi_processor_ffh_cstate_probe(unsigned int cpu,
Len Brownfd350942007-05-09 23:34:35 -0400229 struct acpi_processor_cx *cx,
230 struct acpi_power_register
231 *reg)
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700232{
233 return -1;
234}
Len Brownfd350942007-05-09 23:34:35 -0400235static inline void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx
236 *cstate)
Venkatesh Pallipadi991528d2006-09-25 16:28:13 -0700237{
238 return;
239}
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400240#endif
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242/* in processor_perflib.c */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244#ifdef CONFIG_CPU_FREQ
245void acpi_processor_ppc_init(void);
246void acpi_processor_ppc_exit(void);
247int acpi_processor_ppc_has_changed(struct acpi_processor *pr);
248#else
Len Brown4be44fc2005-08-05 00:44:28 -0400249static inline void acpi_processor_ppc_init(void)
250{
251 return;
252}
253static inline void acpi_processor_ppc_exit(void)
254{
255 return;
256}
257static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr)
258{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 static unsigned int printout = 1;
260 if (printout) {
Len Brown4be44fc2005-08-05 00:44:28 -0400261 printk(KERN_WARNING
262 "Warning: Processor Platform Limit event detected, but not handled.\n");
263 printk(KERN_WARNING
264 "Consider compiling CPUfreq support into your kernel.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 printout = 0;
266 }
267 return 0;
268}
Len Brown4be44fc2005-08-05 00:44:28 -0400269#endif /* CONFIG_CPU_FREQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271/* in processor_throttling.c */
Len Brown4be44fc2005-08-05 00:44:28 -0400272int acpi_processor_get_throttling_info(struct acpi_processor *pr);
273int acpi_processor_set_throttling(struct acpi_processor *pr, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274extern struct file_operations acpi_processor_throttling_fops;
275
276/* in processor_idle.c */
Len Brown4be44fc2005-08-05 00:44:28 -0400277int acpi_processor_power_init(struct acpi_processor *pr,
278 struct acpi_device *device);
279int acpi_processor_cst_has_changed(struct acpi_processor *pr);
280int acpi_processor_power_exit(struct acpi_processor *pr,
281 struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283/* in processor_thermal.c */
Len Brown4be44fc2005-08-05 00:44:28 -0400284int acpi_processor_get_limit_info(struct acpi_processor *pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285extern struct file_operations acpi_processor_limit_fops;
286
287#ifdef CONFIG_CPU_FREQ
288void acpi_thermal_cpufreq_init(void);
289void acpi_thermal_cpufreq_exit(void);
290#else
Len Brown4be44fc2005-08-05 00:44:28 -0400291static inline void acpi_thermal_cpufreq_init(void)
292{
293 return;
294}
295static inline void acpi_thermal_cpufreq_exit(void)
296{
297 return;
298}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299#endif
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#endif