1 #ifndef __ACPI_PROCESSOR_H
2 #define __ACPI_PROCESSOR_H
4 #include <linux/kernel.h>
6 #include <linux/cpuidle.h>
7 #include <linux/thermal.h>
10 #define ACPI_PROCESSOR_BUSY_METRIC 10
12 #define ACPI_PROCESSOR_MAX_POWER 8
13 #define ACPI_PROCESSOR_MAX_C2_LATENCY 100
14 #define ACPI_PROCESSOR_MAX_C3_LATENCY 1000
16 #define ACPI_PROCESSOR_MAX_THROTTLING 16
17 #define ACPI_PROCESSOR_MAX_THROTTLE 250 /* 25% */
18 #define ACPI_PROCESSOR_MAX_DUTY_WIDTH 4
20 #define ACPI_PDC_REVISION_ID 0x1
22 #define ACPI_PSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */
23 #define ACPI_PSD_REV0_ENTRIES 5
25 #define ACPI_TSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */
26 #define ACPI_TSD_REV0_ENTRIES 5
28 * Types of coordination defined in ACPI 3.0. Same macros can be used across
31 #define DOMAIN_COORD_TYPE_SW_ALL 0xfc
32 #define DOMAIN_COORD_TYPE_SW_ANY 0xfd
33 #define DOMAIN_COORD_TYPE_HW_ALL 0xfe
35 #define ACPI_CSTATE_SYSTEMIO 0
36 #define ACPI_CSTATE_FFH 1
37 #define ACPI_CSTATE_HALT 2
39 #define ACPI_CX_DESC_LEN 32
41 /* Power Management */
43 struct acpi_processor_cx
;
45 struct acpi_power_register
{
53 } __attribute__ ((packed
));
55 struct acpi_processor_cx_policy
{
57 struct acpi_processor_cx
*state
;
66 struct acpi_processor_cx
{
77 struct acpi_processor_cx_policy promotion
;
78 struct acpi_processor_cx_policy demotion
;
79 char desc
[ACPI_CX_DESC_LEN
];
82 struct acpi_processor_power
{
83 struct cpuidle_device dev
;
84 struct acpi_processor_cx
*state
;
85 unsigned long bm_check_timestamp
;
89 struct acpi_processor_cx states
[ACPI_PROCESSOR_MAX_POWER
];
90 int timer_broadcast_on_state
;
93 /* Performance Management */
95 struct acpi_psd_package
{
96 acpi_integer num_entries
;
97 acpi_integer revision
;
99 acpi_integer coord_type
;
100 acpi_integer num_processors
;
101 } __attribute__ ((packed
));
103 struct acpi_pct_register
{
111 } __attribute__ ((packed
));
113 struct acpi_processor_px
{
114 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 */
122 struct acpi_processor_performance
{
124 unsigned int platform_limit
;
125 struct acpi_pct_register control_register
;
126 struct acpi_pct_register status_register
;
127 unsigned int state_count
;
128 struct acpi_processor_px
*states
;
129 struct acpi_psd_package domain_info
;
130 cpumask_t shared_cpu_map
;
131 unsigned int shared_type
;
134 /* Throttling Control */
136 struct acpi_tsd_package
{
137 acpi_integer num_entries
;
138 acpi_integer revision
;
140 acpi_integer coord_type
;
141 acpi_integer num_processors
;
142 } __attribute__ ((packed
));
144 struct acpi_ptc_register
{
152 } __attribute__ ((packed
));
154 struct 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 */
161 struct acpi_processor_tx
{
166 struct acpi_processor
;
167 struct acpi_processor_throttling
{
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
;
176 int (*acpi_processor_get_throttling
) (struct acpi_processor
* pr
);
177 int (*acpi_processor_set_throttling
) (struct acpi_processor
* pr
,
184 unsigned int shared_type
;
185 struct acpi_processor_tx states
[ACPI_PROCESSOR_MAX_THROTTLING
];
188 /* Limit Interface */
190 struct acpi_processor_lx
{
191 int px
; /* performance state */
192 int tx
; /* throttle level */
195 struct acpi_processor_limit
{
196 struct acpi_processor_lx state
; /* current limit */
197 struct acpi_processor_lx thermal
; /* thermal limit */
198 struct acpi_processor_lx user
; /* user limit */
201 struct acpi_processor_flags
{
209 u8 power_setup_done
:1;
213 struct acpi_processor
{
218 int performance_platform_limit
;
219 int throttling_platform_limit
;
220 /* 0 - states 0..n-th state available */
222 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
;
227 struct thermal_cooling_device
*cdev
;
228 /* the _PDC objects for this processor, if any */
229 struct acpi_object_list
*pdc
;
232 struct acpi_processor_errata
{
242 extern int acpi_processor_preregister_performance(struct
243 acpi_processor_performance
246 extern int acpi_processor_register_performance(struct acpi_processor_performance
247 *performance
, unsigned int cpu
);
248 extern void acpi_processor_unregister_performance(struct
249 acpi_processor_performance
253 /* note: this locks both the calling module and the processor module
254 if a _PPC object exists, rmmod is disallowed then */
255 int acpi_processor_notify_smm(struct module
*calling_module
);
257 /* for communication between multiple parts of the processor kernel module */
258 extern struct acpi_processor
*processors
[NR_CPUS
];
259 extern struct acpi_processor_errata errata
;
261 void arch_acpi_processor_init_pdc(struct acpi_processor
*pr
);
263 #ifdef ARCH_HAS_POWER_INIT
264 void acpi_processor_power_init_bm_check(struct acpi_processor_flags
*flags
,
266 int acpi_processor_ffh_cstate_probe(unsigned int cpu
,
267 struct acpi_processor_cx
*cx
,
268 struct acpi_power_register
*reg
);
269 void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx
*cstate
);
271 static inline void acpi_processor_power_init_bm_check(struct
273 *flags
, unsigned int cpu
)
278 static inline int acpi_processor_ffh_cstate_probe(unsigned int cpu
,
279 struct acpi_processor_cx
*cx
,
280 struct acpi_power_register
285 static inline void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx
292 /* in processor_perflib.c */
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
);
299 static inline void acpi_processor_ppc_init(void)
303 static inline void acpi_processor_ppc_exit(void)
307 static inline int acpi_processor_ppc_has_changed(struct acpi_processor
*pr
)
309 static unsigned int printout
= 1;
312 "Warning: Processor Platform Limit event detected, but not handled.\n");
314 "Consider compiling CPUfreq support into your kernel.\n");
319 #endif /* CONFIG_CPU_FREQ */
321 /* in processor_throttling.c */
322 int acpi_processor_get_throttling_info(struct acpi_processor
*pr
);
323 extern int acpi_processor_set_throttling(struct acpi_processor
*pr
, int state
);
324 extern struct file_operations acpi_processor_throttling_fops
;
325 extern void acpi_processor_throttling_init(void);
326 /* in processor_idle.c */
327 int acpi_processor_power_init(struct acpi_processor
*pr
,
328 struct acpi_device
*device
);
329 int acpi_processor_cst_has_changed(struct acpi_processor
*pr
);
330 int acpi_processor_power_exit(struct acpi_processor
*pr
,
331 struct acpi_device
*device
);
332 int acpi_processor_suspend(struct acpi_device
* device
, pm_message_t state
);
333 int acpi_processor_resume(struct acpi_device
* device
);
334 extern struct cpuidle_driver acpi_idle_driver
;
336 /* in processor_thermal.c */
337 int acpi_processor_get_limit_info(struct acpi_processor
*pr
);
338 extern struct file_operations acpi_processor_limit_fops
;
339 extern struct thermal_cooling_device_ops processor_cooling_ops
;
340 #ifdef CONFIG_CPU_FREQ
341 void acpi_thermal_cpufreq_init(void);
342 void acpi_thermal_cpufreq_exit(void);
344 static inline void acpi_thermal_cpufreq_init(void)
348 static inline void acpi_thermal_cpufreq_exit(void)