blob: 77371b3cdc44ef0fe03ec774407b78615060a007 [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
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -050021#define ACPI_PSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */
22#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/* Power Management */
33
34struct acpi_processor_cx;
35
36struct acpi_power_register {
Len Brown4be44fc2005-08-05 00:44:28 -040037 u8 descriptor;
38 u16 length;
39 u8 space_id;
40 u8 bit_width;
41 u8 bit_offset;
42 u8 reserved;
43 u64 address;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044} __attribute__ ((packed));
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046struct acpi_processor_cx_policy {
Len Brown4be44fc2005-08-05 00:44:28 -040047 u32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 struct acpi_processor_cx *state;
49 struct {
Len Brown4be44fc2005-08-05 00:44:28 -040050 u32 time;
51 u32 ticks;
52 u32 count;
53 u32 bm;
54 } threshold;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055};
56
57struct acpi_processor_cx {
Len Brown4be44fc2005-08-05 00:44:28 -040058 u8 valid;
59 u8 type;
60 u32 address;
61 u32 latency;
62 u32 latency_ticks;
63 u32 power;
64 u32 usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 struct acpi_processor_cx_policy promotion;
66 struct acpi_processor_cx_policy demotion;
67};
68
69struct acpi_processor_power {
70 struct acpi_processor_cx *state;
Len Brown4be44fc2005-08-05 00:44:28 -040071 unsigned long bm_check_timestamp;
72 u32 default_state;
73 u32 bm_activity;
74 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 struct acpi_processor_cx states[ACPI_PROCESSOR_MAX_POWER];
76};
77
78/* Performance Management */
79
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -050080struct acpi_psd_package {
81 acpi_integer num_entries;
82 acpi_integer revision;
83 acpi_integer domain;
84 acpi_integer coord_type;
85 acpi_integer num_processors;
86} __attribute__ ((packed));
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088struct acpi_pct_register {
Len Brown4be44fc2005-08-05 00:44:28 -040089 u8 descriptor;
90 u16 length;
91 u8 space_id;
92 u8 bit_width;
93 u8 bit_offset;
94 u8 reserved;
95 u64 address;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096} __attribute__ ((packed));
97
98struct acpi_processor_px {
Len Brown4be44fc2005-08-05 00:44:28 -040099 acpi_integer core_frequency; /* megahertz */
100 acpi_integer power; /* milliWatts */
101 acpi_integer transition_latency; /* microseconds */
102 acpi_integer bus_master_latency; /* microseconds */
103 acpi_integer control; /* control value */
104 acpi_integer status; /* success indicator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107struct acpi_processor_performance {
Len Brown4be44fc2005-08-05 00:44:28 -0400108 unsigned int state;
109 unsigned int platform_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 struct acpi_pct_register control_register;
111 struct acpi_pct_register status_register;
Len Brown4be44fc2005-08-05 00:44:28 -0400112 unsigned int state_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 struct acpi_processor_px *states;
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500114 struct acpi_psd_package domain_info;
115 cpumask_t shared_cpu_map;
116 unsigned int shared_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117};
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/* Throttling Control */
120
121struct acpi_processor_tx {
Len Brown4be44fc2005-08-05 00:44:28 -0400122 u16 power;
123 u16 performance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
126struct acpi_processor_throttling {
Len Brown4be44fc2005-08-05 00:44:28 -0400127 int state;
128 u32 address;
129 u8 duty_offset;
130 u8 duty_width;
131 int state_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct acpi_processor_tx states[ACPI_PROCESSOR_MAX_THROTTLING];
133};
134
135/* Limit Interface */
136
137struct acpi_processor_lx {
Len Brown4be44fc2005-08-05 00:44:28 -0400138 int px; /* performace state */
139 int tx; /* throttle level */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
142struct acpi_processor_limit {
Len Brown4be44fc2005-08-05 00:44:28 -0400143 struct acpi_processor_lx state; /* current limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct acpi_processor_lx thermal; /* thermal limit */
Len Brown4be44fc2005-08-05 00:44:28 -0400145 struct acpi_processor_lx user; /* user limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148struct acpi_processor_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400149 u8 power:1;
150 u8 performance:1;
151 u8 throttling:1;
152 u8 limit:1;
153 u8 bm_control:1;
154 u8 bm_check:1;
155 u8 has_cst:1;
156 u8 power_setup_done:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
159struct acpi_processor {
Len Brown4be44fc2005-08-05 00:44:28 -0400160 acpi_handle handle;
161 u32 acpi_id;
162 u32 id;
163 u32 pblk;
164 int performance_platform_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 struct acpi_processor_flags flags;
166 struct acpi_processor_power power;
167 struct acpi_processor_performance *performance;
168 struct acpi_processor_throttling throttling;
169 struct acpi_processor_limit limit;
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400170
171 /* the _PDC objects for this processor, if any */
172 struct acpi_object_list *pdc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
174
175struct acpi_processor_errata {
Len Brown4be44fc2005-08-05 00:44:28 -0400176 u8 smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct {
Len Brown4be44fc2005-08-05 00:44:28 -0400178 u8 throttle:1;
179 u8 fdma:1;
180 u8 reserved:6;
181 u32 bmisx;
182 } piix4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183};
184
Venkatesh Pallipadi3b2d9942005-12-14 15:05:00 -0500185extern int acpi_processor_preregister_performance(
186 struct acpi_processor_performance **performance);
187
Len Brown4be44fc2005-08-05 00:44:28 -0400188extern int acpi_processor_register_performance(struct acpi_processor_performance
189 *performance, unsigned int cpu);
190extern void acpi_processor_unregister_performance(struct
191 acpi_processor_performance
192 *performance,
193 unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195/* note: this locks both the calling module and the processor module
196 if a _PPC object exists, rmmod is disallowed then */
197int acpi_processor_notify_smm(struct module *calling_module);
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/* for communication between multiple parts of the processor kernel module */
Len Brown4be44fc2005-08-05 00:44:28 -0400200extern struct acpi_processor *processors[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201extern struct acpi_processor_errata errata;
202
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400203void arch_acpi_processor_init_pdc(struct acpi_processor *pr);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400204
Venkatesh Pallipadi05131ec2005-10-23 16:31:00 -0400205#ifdef ARCH_HAS_POWER_INIT
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400206void acpi_processor_power_init_bm_check(struct acpi_processor_flags *flags,
Len Brown4be44fc2005-08-05 00:44:28 -0400207 unsigned int cpu);
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400208#else
Len Brown4be44fc2005-08-05 00:44:28 -0400209static inline void acpi_processor_power_init_bm_check(struct
210 acpi_processor_flags
211 *flags, unsigned int cpu)
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400212{
213 flags->bm_check = 1;
214 return;
215}
216#endif
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/* in processor_perflib.c */
Venkatesh Pallipadi02df8b92005-04-15 15:07:10 -0400219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#ifdef CONFIG_CPU_FREQ
221void acpi_processor_ppc_init(void);
222void acpi_processor_ppc_exit(void);
223int acpi_processor_ppc_has_changed(struct acpi_processor *pr);
224#else
Len Brown4be44fc2005-08-05 00:44:28 -0400225static inline void acpi_processor_ppc_init(void)
226{
227 return;
228}
229static inline void acpi_processor_ppc_exit(void)
230{
231 return;
232}
233static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr)
234{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 static unsigned int printout = 1;
236 if (printout) {
Len Brown4be44fc2005-08-05 00:44:28 -0400237 printk(KERN_WARNING
238 "Warning: Processor Platform Limit event detected, but not handled.\n");
239 printk(KERN_WARNING
240 "Consider compiling CPUfreq support into your kernel.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 printout = 0;
242 }
243 return 0;
244}
Len Brown4be44fc2005-08-05 00:44:28 -0400245#endif /* CONFIG_CPU_FREQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247/* in processor_throttling.c */
Len Brown4be44fc2005-08-05 00:44:28 -0400248int acpi_processor_get_throttling_info(struct acpi_processor *pr);
249int acpi_processor_set_throttling(struct acpi_processor *pr, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250extern struct file_operations acpi_processor_throttling_fops;
251
252/* in processor_idle.c */
Len Brown4be44fc2005-08-05 00:44:28 -0400253int acpi_processor_power_init(struct acpi_processor *pr,
254 struct acpi_device *device);
255int acpi_processor_cst_has_changed(struct acpi_processor *pr);
256int acpi_processor_power_exit(struct acpi_processor *pr,
257 struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259/* in processor_thermal.c */
Len Brown4be44fc2005-08-05 00:44:28 -0400260int acpi_processor_get_limit_info(struct acpi_processor *pr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261extern struct file_operations acpi_processor_limit_fops;
262
263#ifdef CONFIG_CPU_FREQ
264void acpi_thermal_cpufreq_init(void);
265void acpi_thermal_cpufreq_exit(void);
266#else
Len Brown4be44fc2005-08-05 00:44:28 -0400267static inline void acpi_thermal_cpufreq_init(void)
268{
269 return;
270}
271static inline void acpi_thermal_cpufreq_exit(void)
272{
273 return;
274}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#endif
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#endif