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