1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ACPI_PROCESSOR_H
3 #define __ACPI_PROCESSOR_H
6 #include <linux/cpufreq.h>
7 #include <linux/pm_qos.h>
8 #include <linux/printk.h>
9 #include <linux/sched.h>
10 #include <linux/smp.h>
11 #include <linux/thermal.h>
12 #include <linux/types.h>
13 #include <linux/workqueue.h>
17 #define ACPI_PROCESSOR_CLASS "processor"
18 #define ACPI_PROCESSOR_DEVICE_NAME "Processor"
19 #define ACPI_PROCESSOR_DEVICE_HID "ACPI0007"
20 #define ACPI_PROCESSOR_CONTAINER_HID "ACPI0010"
22 #define ACPI_PROCESSOR_BUSY_METRIC 10
24 #define ACPI_PROCESSOR_MAX_POWER 8
25 #define ACPI_PROCESSOR_MAX_C2_LATENCY 100
26 #define ACPI_PROCESSOR_MAX_C3_LATENCY 1000
28 #define ACPI_PROCESSOR_MAX_THROTTLING 16
29 #define ACPI_PROCESSOR_MAX_THROTTLE 250 /* 25% */
30 #define ACPI_PROCESSOR_MAX_DUTY_WIDTH 4
32 #define ACPI_PDC_REVISION_ID 0x1
34 #define ACPI_PSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */
35 #define ACPI_PSD_REV0_ENTRIES 5
37 #define ACPI_TSD_REV0_REVISION 0 /* Support for _PSD as in ACPI 3.0 */
38 #define ACPI_TSD_REV0_ENTRIES 5
40 * Types of coordination defined in ACPI 3.0. Same macros can be used across
43 #define DOMAIN_COORD_TYPE_SW_ALL 0xfc
44 #define DOMAIN_COORD_TYPE_SW_ANY 0xfd
45 #define DOMAIN_COORD_TYPE_HW_ALL 0xfe
47 #define ACPI_CSTATE_SYSTEMIO 0
48 #define ACPI_CSTATE_FFH 1
49 #define ACPI_CSTATE_HALT 2
50 #define ACPI_CSTATE_INTEGER 3
52 #define ACPI_CX_DESC_LEN 32
54 /* Power Management */
56 struct acpi_processor_cx
;
58 struct acpi_power_register
{
68 struct acpi_processor_cx
{
76 char desc
[ACPI_CX_DESC_LEN
];
79 struct acpi_lpi_state
{
81 u32 wake_latency
; /* worst case */
85 u32 enable_parent_state
;
89 char desc
[ACPI_CX_DESC_LEN
];
92 struct acpi_processor_power
{
95 struct acpi_processor_cx states
[ACPI_PROCESSOR_MAX_POWER
];
96 struct acpi_lpi_state lpi_states
[ACPI_PROCESSOR_MAX_POWER
];
98 int timer_broadcast_on_state
;
101 /* Performance Management */
103 struct acpi_psd_package
{
111 struct acpi_pct_register
{
121 struct acpi_processor_px
{
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 */
130 struct acpi_processor_performance
{
132 unsigned int platform_limit
;
133 struct acpi_pct_register control_register
;
134 struct acpi_pct_register status_register
;
135 unsigned int state_count
;
136 struct acpi_processor_px
*states
;
137 struct acpi_psd_package domain_info
;
138 cpumask_var_t shared_cpu_map
;
139 unsigned int shared_type
;
142 /* Throttling Control */
144 struct acpi_tsd_package
{
152 struct acpi_ptc_register
{
162 struct acpi_processor_tx_tss
{
163 u64 freqpercentage
; /* */
164 u64 power
; /* milliWatts */
165 u64 transition_latency
; /* microseconds */
166 u64 control
; /* control value */
167 u64 status
; /* success indicator */
169 struct acpi_processor_tx
{
174 struct acpi_processor
;
175 struct acpi_processor_throttling
{
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
;
183 cpumask_var_t shared_cpu_map
;
184 int (*acpi_processor_get_throttling
) (struct acpi_processor
* pr
);
185 int (*acpi_processor_set_throttling
) (struct acpi_processor
* pr
,
186 int state
, bool force
);
192 unsigned int shared_type
;
193 struct acpi_processor_tx states
[ACPI_PROCESSOR_MAX_THROTTLING
];
196 /* Limit Interface */
198 struct acpi_processor_lx
{
199 int px
; /* performance state */
200 int tx
; /* throttle level */
203 struct acpi_processor_limit
{
204 struct acpi_processor_lx state
; /* current limit */
205 struct acpi_processor_lx thermal
; /* thermal limit */
206 struct acpi_processor_lx user
; /* user limit */
209 struct acpi_processor_flags
{
218 u8 power_setup_done
:1;
220 u8 previously_online
:1;
223 struct acpi_processor
{
226 phys_cpuid_t phys_id
; /* CPU hardware ID such as APIC ID for x86 */
227 u32 id
; /* CPU logical ID allocated by OS */
229 int performance_platform_limit
;
230 int throttling_platform_limit
;
231 /* 0 - states 0..n-th state available */
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
;
238 struct thermal_cooling_device
*cdev
;
239 struct device
*dev
; /* Processor device. */
240 struct freq_qos_request perflib_req
;
241 struct freq_qos_request thermal_req
;
244 struct acpi_processor_errata
{
254 extern int acpi_processor_preregister_performance(struct
255 acpi_processor_performance
256 __percpu
*performance
);
258 extern int acpi_processor_register_performance(struct acpi_processor_performance
259 *performance
, unsigned int cpu
);
260 extern void acpi_processor_unregister_performance(unsigned int cpu
);
262 int acpi_processor_pstate_control(void);
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
);
266 int acpi_processor_get_psd(acpi_handle handle
,
267 struct acpi_psd_package
*pdomain
);
269 /* parsing the _P* objects. */
270 extern int acpi_processor_get_performance_info(struct acpi_processor
*pr
);
272 /* for communication between multiple parts of the processor kernel module */
273 DECLARE_PER_CPU(struct acpi_processor
*, processors
);
274 extern struct acpi_processor_errata errata
;
276 #if defined(ARCH_HAS_POWER_INIT) && defined(CONFIG_ACPI_PROCESSOR_CSTATE)
277 void acpi_processor_power_init_bm_check(struct acpi_processor_flags
*flags
,
279 int acpi_processor_ffh_cstate_probe(unsigned int cpu
,
280 struct acpi_processor_cx
*cx
,
281 struct acpi_power_register
*reg
);
282 void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx
*cstate
);
284 static inline void acpi_processor_power_init_bm_check(struct
286 *flags
, unsigned int cpu
)
291 static inline int acpi_processor_ffh_cstate_probe(unsigned int cpu
,
292 struct acpi_processor_cx
*cx
,
293 struct acpi_power_register
298 static inline void acpi_processor_ffh_cstate_enter(struct acpi_processor_cx
305 static inline int call_on_cpu(int cpu
, long (*fn
)(void *), void *arg
,
308 if (direct
|| (is_percpu_thread() && cpu
== smp_processor_id()))
310 return work_on_cpu(cpu
, fn
, arg
);
313 /* in processor_perflib.c */
315 #ifdef CONFIG_CPU_FREQ
316 extern bool acpi_processor_cpufreq_init
;
317 void acpi_processor_ignore_ppc_init(void);
318 void acpi_processor_ppc_init(struct cpufreq_policy
*policy
);
319 void acpi_processor_ppc_exit(struct cpufreq_policy
*policy
);
320 void acpi_processor_ppc_has_changed(struct acpi_processor
*pr
, int event_flag
);
321 extern int acpi_processor_get_bios_limit(int cpu
, unsigned int *limit
);
323 static inline void acpi_processor_ignore_ppc_init(void)
327 static inline void acpi_processor_ppc_init(struct cpufreq_policy
*policy
)
331 static inline void acpi_processor_ppc_exit(struct cpufreq_policy
*policy
)
335 static inline void acpi_processor_ppc_has_changed(struct acpi_processor
*pr
,
338 static unsigned int printout
= 1;
341 "Warning: Processor Platform Limit event detected, but not handled.\n");
343 "Consider compiling CPUfreq support into your kernel.\n");
347 static inline int acpi_processor_get_bios_limit(int cpu
, unsigned int *limit
)
352 #endif /* CONFIG_CPU_FREQ */
354 /* in processor_core.c */
355 phys_cpuid_t
acpi_get_phys_id(acpi_handle
, int type
, u32 acpi_id
);
356 phys_cpuid_t
acpi_map_madt_entry(u32 acpi_id
);
357 int acpi_map_cpuid(phys_cpuid_t phys_id
, u32 acpi_id
);
358 int acpi_get_cpuid(acpi_handle
, int type
, u32 acpi_id
);
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
);
364 static inline int acpi_cppc_processor_probe(struct acpi_processor
*pr
)
368 static inline void acpi_cppc_processor_exit(struct acpi_processor
*pr
)
372 #endif /* CONFIG_ACPI_CPPC_LIB */
374 /* in processor_pdc.c */
375 void acpi_processor_set_pdc(acpi_handle handle
);
377 /* in processor_throttling.c */
378 #ifdef CONFIG_ACPI_CPU_FREQ_PSS
379 int acpi_processor_tstate_has_changed(struct acpi_processor
*pr
);
380 int acpi_processor_get_throttling_info(struct acpi_processor
*pr
);
381 extern int acpi_processor_set_throttling(struct acpi_processor
*pr
,
382 int state
, bool force
);
384 * Reevaluate whether the T-state is invalid after one cpu is
385 * onlined/offlined. In such case the flags.throttling will be updated.
387 extern void acpi_processor_reevaluate_tstate(struct acpi_processor
*pr
,
389 extern const struct file_operations acpi_processor_throttling_fops
;
390 extern void acpi_processor_throttling_init(void);
392 static inline int acpi_processor_tstate_has_changed(struct acpi_processor
*pr
)
397 static inline int acpi_processor_get_throttling_info(struct acpi_processor
*pr
)
402 static inline int acpi_processor_set_throttling(struct acpi_processor
*pr
,
403 int state
, bool force
)
408 static inline void acpi_processor_reevaluate_tstate(struct acpi_processor
*pr
,
411 static inline void acpi_processor_throttling_init(void) {}
412 #endif /* CONFIG_ACPI_CPU_FREQ_PSS */
414 /* in processor_idle.c */
415 extern struct cpuidle_driver acpi_idle_driver
;
416 #ifdef CONFIG_ACPI_PROCESSOR_IDLE
417 int acpi_processor_power_init(struct acpi_processor
*pr
);
418 int acpi_processor_power_exit(struct acpi_processor
*pr
);
419 int acpi_processor_power_state_has_changed(struct acpi_processor
*pr
);
420 int acpi_processor_hotplug(struct acpi_processor
*pr
);
422 static inline int acpi_processor_power_init(struct acpi_processor
*pr
)
427 static inline int acpi_processor_power_exit(struct acpi_processor
*pr
)
432 static inline int acpi_processor_power_state_has_changed(struct acpi_processor
*pr
)
437 static inline int acpi_processor_hotplug(struct acpi_processor
*pr
)
441 #endif /* CONFIG_ACPI_PROCESSOR_IDLE */
443 /* in processor_thermal.c */
444 int acpi_processor_thermal_init(struct acpi_processor
*pr
,
445 struct acpi_device
*device
);
446 void acpi_processor_thermal_exit(struct acpi_processor
*pr
,
447 struct acpi_device
*device
);
448 extern const struct thermal_cooling_device_ops processor_cooling_ops
;
449 #ifdef CONFIG_CPU_FREQ
450 void acpi_thermal_cpufreq_init(struct cpufreq_policy
*policy
);
451 void acpi_thermal_cpufreq_exit(struct cpufreq_policy
*policy
);
453 static inline void acpi_thermal_cpufreq_init(struct cpufreq_policy
*policy
)
457 static inline void acpi_thermal_cpufreq_exit(struct cpufreq_policy
*policy
)
461 #endif /* CONFIG_CPU_FREQ */
463 #ifdef CONFIG_ACPI_PROCESSOR_IDLE
464 extern int acpi_processor_ffh_lpi_probe(unsigned int cpu
);
465 extern int acpi_processor_ffh_lpi_enter(struct acpi_lpi_state
*lpi
);
468 void acpi_processor_init_invariance_cppc(void);