processor.h 7.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#ifndef __ACPI_PROCESSOR_H
#define __ACPI_PROCESSOR_H

#include <linux/kernel.h>
5
#include <linux/cpu.h>
L
Linus Torvalds 已提交
6

7 8
#include <asm/acpi.h>

L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18
#define ACPI_PROCESSOR_BUSY_METRIC	10

#define ACPI_PROCESSOR_MAX_POWER	8
#define ACPI_PROCESSOR_MAX_C2_LATENCY	100
#define ACPI_PROCESSOR_MAX_C3_LATENCY	1000

#define ACPI_PROCESSOR_MAX_THROTTLING	16
#define ACPI_PROCESSOR_MAX_THROTTLE	250	/* 25% */
#define ACPI_PROCESSOR_MAX_DUTY_WIDTH	4

19 20
#define ACPI_PDC_REVISION_ID		0x1

21 22 23 24 25 26 27 28 29 30 31
#define ACPI_PSD_REV0_REVISION		0 /* Support for _PSD as in ACPI 3.0 */
#define ACPI_PSD_REV0_ENTRIES		5

/*
 * Types of coordination defined in ACPI 3.0. Same macros can be used across
 * P, C and T states
 */
#define DOMAIN_COORD_TYPE_SW_ALL	0xfc
#define DOMAIN_COORD_TYPE_SW_ANY	0xfd
#define DOMAIN_COORD_TYPE_HW_ALL	0xfe

32 33 34
#define ACPI_CSTATE_SYSTEMIO	(0)
#define ACPI_CSTATE_FFH		(1)

L
Linus Torvalds 已提交
35 36 37 38 39
/* Power Management */

struct acpi_processor_cx;

struct acpi_power_register {
L
Len Brown 已提交
40 41 42 43 44 45 46
	u8 descriptor;
	u16 length;
	u8 space_id;
	u8 bit_width;
	u8 bit_offset;
	u8 reserved;
	u64 address;
L
Linus Torvalds 已提交
47 48 49
} __attribute__ ((packed));

struct acpi_processor_cx_policy {
L
Len Brown 已提交
50
	u32 count;
L
Linus Torvalds 已提交
51 52
	struct acpi_processor_cx *state;
	struct {
L
Len Brown 已提交
53 54 55 56 57
		u32 time;
		u32 ticks;
		u32 count;
		u32 bm;
	} threshold;
L
Linus Torvalds 已提交
58 59 60
};

struct acpi_processor_cx {
L
Len Brown 已提交
61 62 63
	u8 valid;
	u8 type;
	u32 address;
64 65
	u8 space_id;
	u8 index;
L
Len Brown 已提交
66 67 68 69
	u32 latency;
	u32 latency_ticks;
	u32 power;
	u32 usage;
70
	u64 time;
L
Linus Torvalds 已提交
71 72 73 74 75 76
	struct acpi_processor_cx_policy promotion;
	struct acpi_processor_cx_policy demotion;
};

struct acpi_processor_power {
	struct acpi_processor_cx *state;
L
Len Brown 已提交
77 78 79 80
	unsigned long bm_check_timestamp;
	u32 default_state;
	u32 bm_activity;
	int count;
L
Linus Torvalds 已提交
81 82 83 84 85
	struct acpi_processor_cx states[ACPI_PROCESSOR_MAX_POWER];
};

/* Performance Management */

86 87 88 89 90 91 92 93
struct acpi_psd_package {
	acpi_integer num_entries;
	acpi_integer revision;
	acpi_integer domain;
	acpi_integer coord_type;
	acpi_integer num_processors;
} __attribute__ ((packed));

L
Linus Torvalds 已提交
94
struct acpi_pct_register {
L
Len Brown 已提交
95 96 97 98 99 100 101
	u8 descriptor;
	u16 length;
	u8 space_id;
	u8 bit_width;
	u8 bit_offset;
	u8 reserved;
	u64 address;
L
Linus Torvalds 已提交
102 103 104
} __attribute__ ((packed));

struct acpi_processor_px {
L
Len Brown 已提交
105 106 107 108 109 110
	acpi_integer core_frequency;	/* megahertz */
	acpi_integer power;	/* milliWatts */
	acpi_integer transition_latency;	/* microseconds */
	acpi_integer bus_master_latency;	/* microseconds */
	acpi_integer control;	/* control value */
	acpi_integer status;	/* success indicator */
L
Linus Torvalds 已提交
111 112 113
};

struct acpi_processor_performance {
L
Len Brown 已提交
114 115
	unsigned int state;
	unsigned int platform_limit;
L
Linus Torvalds 已提交
116 117
	struct acpi_pct_register control_register;
	struct acpi_pct_register status_register;
L
Len Brown 已提交
118
	unsigned int state_count;
L
Linus Torvalds 已提交
119
	struct acpi_processor_px *states;
120 121 122
	struct acpi_psd_package domain_info;
	cpumask_t shared_cpu_map;
	unsigned int shared_type;
L
Linus Torvalds 已提交
123 124 125 126 127
};

/* Throttling Control */

struct acpi_processor_tx {
L
Len Brown 已提交
128 129
	u16 power;
	u16 performance;
L
Linus Torvalds 已提交
130 131 132
};

struct acpi_processor_throttling {
L
Len Brown 已提交
133 134 135 136 137
	int state;
	u32 address;
	u8 duty_offset;
	u8 duty_width;
	int state_count;
L
Linus Torvalds 已提交
138 139 140 141 142 143
	struct acpi_processor_tx states[ACPI_PROCESSOR_MAX_THROTTLING];
};

/* Limit Interface */

struct acpi_processor_lx {
L
Len Brown 已提交
144 145
	int px;			/* performace state */
	int tx;			/* throttle level */
L
Linus Torvalds 已提交
146 147 148
};

struct acpi_processor_limit {
L
Len Brown 已提交
149
	struct acpi_processor_lx state;	/* current limit */
L
Linus Torvalds 已提交
150
	struct acpi_processor_lx thermal;	/* thermal limit */
L
Len Brown 已提交
151
	struct acpi_processor_lx user;	/* user limit */
L
Linus Torvalds 已提交
152 153 154
};

struct acpi_processor_flags {
L
Len Brown 已提交
155 156 157 158 159 160 161 162
	u8 power:1;
	u8 performance:1;
	u8 throttling:1;
	u8 limit:1;
	u8 bm_control:1;
	u8 bm_check:1;
	u8 has_cst:1;
	u8 power_setup_done:1;
L
Linus Torvalds 已提交
163 164 165
};

struct acpi_processor {
L
Len Brown 已提交
166 167 168 169 170
	acpi_handle handle;
	u32 acpi_id;
	u32 id;
	u32 pblk;
	int performance_platform_limit;
L
Linus Torvalds 已提交
171 172 173 174 175
	struct acpi_processor_flags flags;
	struct acpi_processor_power power;
	struct acpi_processor_performance *performance;
	struct acpi_processor_throttling throttling;
	struct acpi_processor_limit limit;
176 177 178

	/* the _PDC objects for this processor, if any */
	struct acpi_object_list *pdc;
L
Linus Torvalds 已提交
179 180 181
};

struct acpi_processor_errata {
L
Len Brown 已提交
182
	u8 smp;
L
Linus Torvalds 已提交
183
	struct {
L
Len Brown 已提交
184 185 186 187 188
		u8 throttle:1;
		u8 fdma:1;
		u8 reserved:6;
		u32 bmisx;
	} piix4;
L
Linus Torvalds 已提交
189 190
};

191 192 193
extern int acpi_processor_preregister_performance(
		struct acpi_processor_performance **performance);

L
Len Brown 已提交
194 195 196 197 198 199
extern int acpi_processor_register_performance(struct acpi_processor_performance
					       *performance, unsigned int cpu);
extern void acpi_processor_unregister_performance(struct
						  acpi_processor_performance
						  *performance,
						  unsigned int cpu);
L
Linus Torvalds 已提交
200 201 202 203 204 205

/* note: this locks both the calling module and the processor module
         if a _PPC object exists, rmmod is disallowed then */
int acpi_processor_notify_smm(struct module *calling_module);

/* for communication between multiple parts of the processor kernel module */
L
Len Brown 已提交
206
extern struct acpi_processor *processors[NR_CPUS];
L
Linus Torvalds 已提交
207 208
extern struct acpi_processor_errata errata;

209
void arch_acpi_processor_init_pdc(struct acpi_processor *pr);
210

211
#ifdef ARCH_HAS_POWER_INIT
212
void acpi_processor_power_init_bm_check(struct acpi_processor_flags *flags,
L
Len Brown 已提交
213
					unsigned int cpu);
214 215 216
int acpi_processor_ffh_cstate_probe(unsigned int cpu,
		struct acpi_processor_cx *cx, struct acpi_power_register *reg);
void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx *cstate);
217
#else
L
Len Brown 已提交
218 219 220
static inline void acpi_processor_power_init_bm_check(struct
						      acpi_processor_flags
						      *flags, unsigned int cpu)
221 222 223 224
{
	flags->bm_check = 1;
	return;
}
225 226 227 228 229 230 231 232 233 234
static inline int acpi_processor_ffh_cstate_probe(unsigned int cpu,
		struct acpi_processor_cx *cx, struct acpi_power_register *reg)
{
	return -1;
}
static inline void acpi_processor_ffh_cstate_enter(
		struct acpi_processor_cx *cstate)
{
	return;
}
235 236
#endif

L
Linus Torvalds 已提交
237
/* in processor_perflib.c */
238

L
Linus Torvalds 已提交
239 240 241 242 243
#ifdef CONFIG_CPU_FREQ
void acpi_processor_ppc_init(void);
void acpi_processor_ppc_exit(void);
int acpi_processor_ppc_has_changed(struct acpi_processor *pr);
#else
L
Len Brown 已提交
244 245 246 247 248 249 250 251 252 253
static inline void acpi_processor_ppc_init(void)
{
	return;
}
static inline void acpi_processor_ppc_exit(void)
{
	return;
}
static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr)
{
L
Linus Torvalds 已提交
254 255
	static unsigned int printout = 1;
	if (printout) {
L
Len Brown 已提交
256 257 258 259
		printk(KERN_WARNING
		       "Warning: Processor Platform Limit event detected, but not handled.\n");
		printk(KERN_WARNING
		       "Consider compiling CPUfreq support into your kernel.\n");
L
Linus Torvalds 已提交
260 261 262 263
		printout = 0;
	}
	return 0;
}
L
Len Brown 已提交
264
#endif				/* CONFIG_CPU_FREQ */
L
Linus Torvalds 已提交
265 266

/* in processor_throttling.c */
L
Len Brown 已提交
267 268
int acpi_processor_get_throttling_info(struct acpi_processor *pr);
int acpi_processor_set_throttling(struct acpi_processor *pr, int state);
L
Linus Torvalds 已提交
269 270 271
extern struct file_operations acpi_processor_throttling_fops;

/* in processor_idle.c */
L
Len Brown 已提交
272 273 274 275 276
int acpi_processor_power_init(struct acpi_processor *pr,
			      struct acpi_device *device);
int acpi_processor_cst_has_changed(struct acpi_processor *pr);
int acpi_processor_power_exit(struct acpi_processor *pr,
			      struct acpi_device *device);
L
Linus Torvalds 已提交
277 278

/* in processor_thermal.c */
L
Len Brown 已提交
279
int acpi_processor_get_limit_info(struct acpi_processor *pr);
L
Linus Torvalds 已提交
280 281 282 283 284 285
extern struct file_operations acpi_processor_limit_fops;

#ifdef CONFIG_CPU_FREQ
void acpi_thermal_cpufreq_init(void);
void acpi_thermal_cpufreq_exit(void);
#else
L
Len Brown 已提交
286 287 288 289 290 291 292 293
static inline void acpi_thermal_cpufreq_init(void)
{
	return;
}
static inline void acpi_thermal_cpufreq_exit(void)
{
	return;
}
L
Linus Torvalds 已提交
294 295 296
#endif

#endif