Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ACPI_PROCESSOR_H |
| 2 | #define __ACPI_PROCESSOR_H |
| 3 | |
| 4 | #include <linux/kernel.h> |
Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 5 | #include <linux/cpu.h> |
Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 6 | #include <linux/thermal.h> |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 7 | #include <asm/acpi.h> |
| 8 | |
Rafael J. Wysocki | ac212b6 | 2013-05-03 00:26:22 +0200 | [diff] [blame] | 9 | #define ACPI_PROCESSOR_CLASS "processor" |
| 10 | #define ACPI_PROCESSOR_DEVICE_NAME "Processor" |
| 11 | #define ACPI_PROCESSOR_DEVICE_HID "ACPI0007" |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #define ACPI_PROCESSOR_BUSY_METRIC 10 |
| 14 | |
| 15 | #define ACPI_PROCESSOR_MAX_POWER 8 |
| 16 | #define ACPI_PROCESSOR_MAX_C2_LATENCY 100 |
| 17 | #define ACPI_PROCESSOR_MAX_C3_LATENCY 1000 |
| 18 | |
| 19 | #define ACPI_PROCESSOR_MAX_THROTTLING 16 |
| 20 | #define ACPI_PROCESSOR_MAX_THROTTLE 250 /* 25% */ |
| 21 | #define ACPI_PROCESSOR_MAX_DUTY_WIDTH 4 |
| 22 | |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 23 | #define ACPI_PDC_REVISION_ID 0x1 |
| 24 | |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 25 | #define ACPI_PSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */ |
Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 26 | #define ACPI_PSD_REV0_ENTRIES 5 |
| 27 | |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 28 | #define ACPI_TSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */ |
| 29 | #define ACPI_TSD_REV0_ENTRIES 5 |
Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 30 | /* |
| 31 | * Types of coordination defined in ACPI 3.0. Same macros can be used across |
| 32 | * P, C and T states |
| 33 | */ |
| 34 | #define DOMAIN_COORD_TYPE_SW_ALL 0xfc |
| 35 | #define DOMAIN_COORD_TYPE_SW_ANY 0xfd |
| 36 | #define DOMAIN_COORD_TYPE_HW_ALL 0xfe |
| 37 | |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 38 | #define ACPI_CSTATE_SYSTEMIO 0 |
| 39 | #define ACPI_CSTATE_FFH 1 |
| 40 | #define ACPI_CSTATE_HALT 2 |
| 41 | |
| 42 | #define ACPI_CX_DESC_LEN 32 |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* Power Management */ |
| 45 | |
| 46 | struct acpi_processor_cx; |
| 47 | |
| 48 | struct acpi_power_register { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 49 | u8 descriptor; |
| 50 | u16 length; |
| 51 | u8 space_id; |
| 52 | u8 bit_width; |
| 53 | u8 bit_offset; |
Len Brown | 718be4a | 2010-07-22 16:54:27 -0400 | [diff] [blame] | 54 | u8 access_size; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 55 | u64 address; |
Fabian Frederick | 92c4d2a | 2014-06-01 19:16:17 +0200 | [diff] [blame] | 56 | } __packed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | struct acpi_processor_cx { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 59 | u8 valid; |
| 60 | u8 type; |
| 61 | u32 address; |
venkatesh.pallipadi@intel.com | bc71bec | 2008-01-31 17:35:04 -0800 | [diff] [blame] | 62 | u8 entry_method; |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 63 | u8 index; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 64 | u32 latency; |
Len Brown | 718be4a | 2010-07-22 16:54:27 -0400 | [diff] [blame] | 65 | u8 bm_sts_skip; |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 66 | char desc[ACPI_CX_DESC_LEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | struct acpi_processor_power { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 70 | int count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | struct acpi_processor_cx states[ACPI_PROCESSOR_MAX_POWER]; |
Thomas Gleixner | 169a0ab | 2007-02-16 01:27:55 -0800 | [diff] [blame] | 72 | int timer_broadcast_on_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | /* Performance Management */ |
| 76 | |
Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 77 | struct acpi_psd_package { |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 78 | u64 num_entries; |
| 79 | u64 revision; |
| 80 | u64 domain; |
| 81 | u64 coord_type; |
| 82 | u64 num_processors; |
Fabian Frederick | 92c4d2a | 2014-06-01 19:16:17 +0200 | [diff] [blame] | 83 | } __packed; |
Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | struct acpi_pct_register { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 86 | u8 descriptor; |
| 87 | u16 length; |
| 88 | u8 space_id; |
| 89 | u8 bit_width; |
| 90 | u8 bit_offset; |
| 91 | u8 reserved; |
| 92 | u64 address; |
Fabian Frederick | 92c4d2a | 2014-06-01 19:16:17 +0200 | [diff] [blame] | 93 | } __packed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
| 95 | struct acpi_processor_px { |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 96 | u64 core_frequency; /* megahertz */ |
| 97 | u64 power; /* milliWatts */ |
| 98 | u64 transition_latency; /* microseconds */ |
| 99 | u64 bus_master_latency; /* microseconds */ |
| 100 | u64 control; /* control value */ |
| 101 | u64 status; /* success indicator */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | }; |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | struct acpi_processor_performance { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 105 | unsigned int state; |
| 106 | unsigned int platform_limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | struct acpi_pct_register control_register; |
| 108 | struct acpi_pct_register status_register; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 109 | unsigned int state_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | struct acpi_processor_px *states; |
Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 111 | struct acpi_psd_package domain_info; |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 112 | cpumask_var_t shared_cpu_map; |
Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 113 | unsigned int shared_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | }; |
| 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* Throttling Control */ |
| 117 | |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 118 | struct acpi_tsd_package { |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 119 | u64 num_entries; |
| 120 | u64 revision; |
| 121 | u64 domain; |
| 122 | u64 coord_type; |
| 123 | u64 num_processors; |
Fabian Frederick | 92c4d2a | 2014-06-01 19:16:17 +0200 | [diff] [blame] | 124 | } __packed; |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 125 | |
| 126 | struct acpi_ptc_register { |
| 127 | u8 descriptor; |
| 128 | u16 length; |
| 129 | u8 space_id; |
| 130 | u8 bit_width; |
| 131 | u8 bit_offset; |
| 132 | u8 reserved; |
| 133 | u64 address; |
Fabian Frederick | 92c4d2a | 2014-06-01 19:16:17 +0200 | [diff] [blame] | 134 | } __packed; |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 135 | |
| 136 | struct acpi_processor_tx_tss { |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 137 | u64 freqpercentage; /* */ |
| 138 | u64 power; /* milliWatts */ |
| 139 | u64 transition_latency; /* microseconds */ |
| 140 | u64 control; /* control value */ |
| 141 | u64 status; /* success indicator */ |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 142 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | struct acpi_processor_tx { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 144 | u16 power; |
| 145 | u16 performance; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | }; |
| 147 | |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 148 | struct acpi_processor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | struct acpi_processor_throttling { |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 150 | unsigned int state; |
| 151 | unsigned int platform_limit; |
| 152 | struct acpi_pct_register control_register; |
| 153 | struct acpi_pct_register status_register; |
| 154 | unsigned int state_count; |
| 155 | struct acpi_processor_tx_tss *states_tss; |
| 156 | struct acpi_tsd_package domain_info; |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 157 | cpumask_var_t shared_cpu_map; |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 158 | int (*acpi_processor_get_throttling) (struct acpi_processor * pr); |
| 159 | int (*acpi_processor_set_throttling) (struct acpi_processor * pr, |
Frans Pop | 2a90800 | 2009-08-26 14:29:29 -0700 | [diff] [blame] | 160 | int state, bool force); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 161 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 162 | u32 address; |
| 163 | u8 duty_offset; |
| 164 | u8 duty_width; |
Zhao Yakui | 1180509 | 2008-01-28 13:53:42 +0800 | [diff] [blame] | 165 | u8 tsd_valid_flag; |
| 166 | unsigned int shared_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | struct acpi_processor_tx states[ACPI_PROCESSOR_MAX_THROTTLING]; |
| 168 | }; |
| 169 | |
| 170 | /* Limit Interface */ |
| 171 | |
| 172 | struct acpi_processor_lx { |
Joe Perches | aee07ba | 2008-02-03 17:07:16 +0200 | [diff] [blame] | 173 | int px; /* performance state */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 174 | int tx; /* throttle level */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | }; |
| 176 | |
| 177 | struct acpi_processor_limit { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 178 | struct acpi_processor_lx state; /* current limit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | struct acpi_processor_lx thermal; /* thermal limit */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 180 | struct acpi_processor_lx user; /* user limit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | }; |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | struct acpi_processor_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 184 | u8 power:1; |
| 185 | u8 performance:1; |
| 186 | u8 throttling:1; |
| 187 | u8 limit:1; |
| 188 | u8 bm_control:1; |
| 189 | u8 bm_check:1; |
| 190 | u8 has_cst:1; |
| 191 | u8 power_setup_done:1; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 192 | u8 bm_rld_set:1; |
Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 193 | u8 need_hotplug_init:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | }; |
| 195 | |
| 196 | struct acpi_processor { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 197 | acpi_handle handle; |
| 198 | u32 acpi_id; |
Catalin Marinas | 828aef3 | 2015-03-24 14:02:46 +0000 | [diff] [blame] | 199 | phys_cpuid_t phys_id; /* CPU hardware ID such as APIC ID for x86 */ |
Hanjun Guo | af8f3f5 | 2015-01-04 18:55:02 +0800 | [diff] [blame] | 200 | u32 id; /* CPU logical ID allocated by OS */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | u32 pblk; |
| 202 | int performance_platform_limit; |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 203 | int throttling_platform_limit; |
Len Brown | ff55a9c | 2007-06-02 00:15:25 -0400 | [diff] [blame] | 204 | /* 0 - states 0..n-th state available */ |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | struct acpi_processor_flags flags; |
| 207 | struct acpi_processor_power power; |
| 208 | struct acpi_processor_performance *performance; |
| 209 | struct acpi_processor_throttling throttling; |
| 210 | struct acpi_processor_limit limit; |
Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 211 | struct thermal_cooling_device *cdev; |
Rafael J. Wysocki | ac212b6 | 2013-05-03 00:26:22 +0200 | [diff] [blame] | 212 | struct device *dev; /* Processor device. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | }; |
| 214 | |
| 215 | struct acpi_processor_errata { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 216 | u8 smp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | struct { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 218 | u8 throttle:1; |
| 219 | u8 fdma:1; |
| 220 | u8 reserved:6; |
| 221 | u32 bmisx; |
| 222 | } piix4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | }; |
| 224 | |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 225 | extern int acpi_processor_preregister_performance(struct |
| 226 | acpi_processor_performance |
Tejun Heo | a29d8b8 | 2010-02-02 14:39:15 +0900 | [diff] [blame] | 227 | __percpu *performance); |
Venkatesh Pallipadi | 3b2d994 | 2005-12-14 15:05:00 -0500 | [diff] [blame] | 228 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 229 | extern int acpi_processor_register_performance(struct acpi_processor_performance |
| 230 | *performance, unsigned int cpu); |
Rafael J. Wysocki | b2f8dc4 | 2015-07-22 22:11:16 +0200 | [diff] [blame] | 231 | extern void acpi_processor_unregister_performance(unsigned int cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
| 233 | /* note: this locks both the calling module and the processor module |
| 234 | if a _PPC object exists, rmmod is disallowed then */ |
| 235 | int acpi_processor_notify_smm(struct module *calling_module); |
| 236 | |
Konrad Rzeszutek Wilk | c705c78 | 2013-03-05 13:42:54 -0500 | [diff] [blame] | 237 | /* parsing the _P* objects. */ |
| 238 | extern int acpi_processor_get_performance_info(struct acpi_processor *pr); |
| 239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | /* for communication between multiple parts of the processor kernel module */ |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 241 | DECLARE_PER_CPU(struct acpi_processor *, processors); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | extern struct acpi_processor_errata errata; |
| 243 | |
Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 244 | #ifdef ARCH_HAS_POWER_INIT |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 245 | void acpi_processor_power_init_bm_check(struct acpi_processor_flags *flags, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 246 | unsigned int cpu); |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 247 | int acpi_processor_ffh_cstate_probe(unsigned int cpu, |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 248 | struct acpi_processor_cx *cx, |
| 249 | struct acpi_power_register *reg); |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 250 | void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx *cstate); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 251 | #else |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 252 | static inline void acpi_processor_power_init_bm_check(struct |
| 253 | acpi_processor_flags |
| 254 | *flags, unsigned int cpu) |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 255 | { |
| 256 | flags->bm_check = 1; |
| 257 | return; |
| 258 | } |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 259 | static inline int acpi_processor_ffh_cstate_probe(unsigned int cpu, |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 260 | struct acpi_processor_cx *cx, |
| 261 | struct acpi_power_register |
| 262 | *reg) |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 263 | { |
| 264 | return -1; |
| 265 | } |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 266 | static inline void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx |
| 267 | *cstate) |
Venkatesh Pallipadi | 991528d | 2006-09-25 16:28:13 -0700 | [diff] [blame] | 268 | { |
| 269 | return; |
| 270 | } |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 271 | #endif |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | /* in processor_perflib.c */ |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | #ifdef CONFIG_CPU_FREQ |
| 276 | void acpi_processor_ppc_init(void); |
| 277 | void acpi_processor_ppc_exit(void); |
Zhao Yakui | d81c45e1 | 2009-10-16 09:20:41 +0800 | [diff] [blame] | 278 | int acpi_processor_ppc_has_changed(struct acpi_processor *pr, int event_flag); |
Thomas Renninger | e2f74f3 | 2009-11-19 12:31:01 +0100 | [diff] [blame] | 279 | extern int acpi_processor_get_bios_limit(int cpu, unsigned int *limit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | #else |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 281 | static inline void acpi_processor_ppc_init(void) |
| 282 | { |
| 283 | return; |
| 284 | } |
| 285 | static inline void acpi_processor_ppc_exit(void) |
| 286 | { |
| 287 | return; |
| 288 | } |
Zhao Yakui | d81c45e1 | 2009-10-16 09:20:41 +0800 | [diff] [blame] | 289 | static inline int acpi_processor_ppc_has_changed(struct acpi_processor *pr, |
| 290 | int event_flag) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 291 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | static unsigned int printout = 1; |
| 293 | if (printout) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 294 | printk(KERN_WARNING |
| 295 | "Warning: Processor Platform Limit event detected, but not handled.\n"); |
| 296 | printk(KERN_WARNING |
| 297 | "Consider compiling CPUfreq support into your kernel.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | printout = 0; |
| 299 | } |
| 300 | return 0; |
| 301 | } |
Thomas Renninger | e2f74f3 | 2009-11-19 12:31:01 +0100 | [diff] [blame] | 302 | static inline int acpi_processor_get_bios_limit(int cpu, unsigned int *limit) |
| 303 | { |
| 304 | return -ENODEV; |
| 305 | } |
| 306 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 307 | #endif /* CONFIG_CPU_FREQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
Alex Chiang | 4d5d4cd | 2010-02-22 12:11:14 -0700 | [diff] [blame] | 309 | /* in processor_core.c */ |
Catalin Marinas | 828aef3 | 2015-03-24 14:02:46 +0000 | [diff] [blame] | 310 | phys_cpuid_t acpi_get_phys_id(acpi_handle, int type, u32 acpi_id); |
| 311 | int acpi_map_cpuid(phys_cpuid_t phys_id, u32 acpi_id); |
Alex Chiang | 2e9d5e4 | 2010-02-22 12:11:19 -0700 | [diff] [blame] | 312 | int acpi_get_cpuid(acpi_handle, int type, u32 acpi_id); |
Alex Chiang | 78f1699 | 2009-12-20 12:19:09 -0700 | [diff] [blame] | 313 | |
Hanjun Guo | 24119a8 | 2014-10-30 17:52:58 +0800 | [diff] [blame] | 314 | /* in processor_pdc.c */ |
| 315 | void acpi_processor_set_pdc(acpi_handle handle); |
| 316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | /* in processor_throttling.c */ |
Ashwin Chaugule | 239708a | 2015-08-05 09:40:25 -0400 | [diff] [blame] | 318 | #ifdef CONFIG_ACPI_CPU_FREQ_PSS |
Adrian Bunk | a66b34b | 2008-06-09 16:22:24 -0700 | [diff] [blame] | 319 | int acpi_processor_tstate_has_changed(struct acpi_processor *pr); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 320 | int acpi_processor_get_throttling_info(struct acpi_processor *pr); |
Frans Pop | 2a90800 | 2009-08-26 14:29:29 -0700 | [diff] [blame] | 321 | extern int acpi_processor_set_throttling(struct acpi_processor *pr, |
| 322 | int state, bool force); |
Zhao Yakui | 5a344a5 | 2011-01-10 16:35:45 +0800 | [diff] [blame] | 323 | /* |
| 324 | * Reevaluate whether the T-state is invalid after one cpu is |
| 325 | * onlined/offlined. In such case the flags.throttling will be updated. |
| 326 | */ |
| 327 | extern void acpi_processor_reevaluate_tstate(struct acpi_processor *pr, |
| 328 | unsigned long action); |
Jan Engelhardt | 070d8eb | 2009-01-12 00:07:55 +0100 | [diff] [blame] | 329 | extern const struct file_operations acpi_processor_throttling_fops; |
Zhao Yakui | 1180509 | 2008-01-28 13:53:42 +0800 | [diff] [blame] | 330 | extern void acpi_processor_throttling_init(void); |
Ashwin Chaugule | 239708a | 2015-08-05 09:40:25 -0400 | [diff] [blame] | 331 | #else |
| 332 | static inline int acpi_processor_tstate_has_changed(struct acpi_processor *pr) |
| 333 | { |
| 334 | return 0; |
| 335 | } |
| 336 | |
| 337 | static inline int acpi_processor_get_throttling_info(struct acpi_processor *pr) |
| 338 | { |
| 339 | return -ENODEV; |
| 340 | } |
| 341 | |
| 342 | static inline int acpi_processor_set_throttling(struct acpi_processor *pr, |
| 343 | int state, bool force) |
| 344 | { |
| 345 | return -ENODEV; |
| 346 | } |
| 347 | |
| 348 | static inline void acpi_processor_reevaluate_tstate(struct acpi_processor *pr, |
| 349 | unsigned long action) {} |
| 350 | |
| 351 | static inline void acpi_processor_throttling_init(void) {} |
| 352 | #endif /* CONFIG_ACPI_CPU_FREQ_PSS */ |
| 353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | /* in processor_idle.c */ |
Ashwin Chaugule | 5f05586 | 2015-08-05 09:40:26 -0400 | [diff] [blame] | 355 | extern struct cpuidle_driver acpi_idle_driver; |
| 356 | #ifdef CONFIG_ACPI_PROCESSOR_IDLE |
Daniel Lezcano | 38a991b | 2012-09-15 22:42:54 +0200 | [diff] [blame] | 357 | int acpi_processor_power_init(struct acpi_processor *pr); |
| 358 | int acpi_processor_power_exit(struct acpi_processor *pr); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 359 | int acpi_processor_cst_has_changed(struct acpi_processor *pr); |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 360 | int acpi_processor_hotplug(struct acpi_processor *pr); |
Ashwin Chaugule | 5f05586 | 2015-08-05 09:40:26 -0400 | [diff] [blame] | 361 | #else |
| 362 | static inline int acpi_processor_power_init(struct acpi_processor *pr) |
| 363 | { |
| 364 | return -ENODEV; |
| 365 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
Ashwin Chaugule | 5f05586 | 2015-08-05 09:40:26 -0400 | [diff] [blame] | 367 | static inline int acpi_processor_power_exit(struct acpi_processor *pr) |
| 368 | { |
| 369 | return -ENODEV; |
| 370 | } |
| 371 | |
| 372 | static inline int acpi_processor_cst_has_changed(struct acpi_processor *pr) |
| 373 | { |
| 374 | return -ENODEV; |
| 375 | } |
| 376 | |
| 377 | static inline int acpi_processor_hotplug(struct acpi_processor *pr) |
| 378 | { |
| 379 | return -ENODEV; |
| 380 | } |
| 381 | #endif /* CONFIG_ACPI_PROCESSOR_IDLE */ |
| 382 | |
| 383 | #if defined(CONFIG_PM_SLEEP) & defined(CONFIG_ACPI_PROCESSOR_IDLE) |
Rafael J. Wysocki | 0a3b15a | 2013-05-02 21:54:37 +0200 | [diff] [blame] | 384 | void acpi_processor_syscore_init(void); |
| 385 | void acpi_processor_syscore_exit(void); |
| 386 | #else |
| 387 | static inline void acpi_processor_syscore_init(void) {} |
| 388 | static inline void acpi_processor_syscore_exit(void) {} |
| 389 | #endif |
| 390 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | /* in processor_thermal.c */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 392 | int acpi_processor_get_limit_info(struct acpi_processor *pr); |
Vasiliy Kulikov | 9c8b04b | 2011-06-25 21:07:52 +0400 | [diff] [blame] | 393 | extern const struct thermal_cooling_device_ops processor_cooling_ops; |
Ashwin Chaugule | 239708a | 2015-08-05 09:40:25 -0400 | [diff] [blame] | 394 | #if defined(CONFIG_ACPI_CPU_FREQ_PSS) & defined(CONFIG_CPU_FREQ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | void acpi_thermal_cpufreq_init(void); |
| 396 | void acpi_thermal_cpufreq_exit(void); |
| 397 | #else |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 398 | static inline void acpi_thermal_cpufreq_init(void) |
| 399 | { |
| 400 | return; |
| 401 | } |
| 402 | static inline void acpi_thermal_cpufreq_exit(void) |
| 403 | { |
| 404 | return; |
| 405 | } |
Ashwin Chaugule | 239708a | 2015-08-05 09:40:25 -0400 | [diff] [blame] | 406 | #endif /* CONFIG_ACPI_CPU_FREQ_PSS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | #endif |