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