1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * CPPC (Collaborative Processor Performance Control) methods used
6 * (C) Copyright 2014, 2015 Linaro Ltd.
13 #include <linux/acpi.h>
14 #include <linux/cpufreq.h>
15 #include <linux/types.h>
18 #include <acpi/processor.h>
20 /* CPPCv2 and CPPCv3 support */
23 #define CPPC_V2_NUM_ENT 21
24 #define CPPC_V3_NUM_ENT 23
26 #define PCC_CMD_COMPLETE_MASK (1 << 0)
27 #define PCC_ERROR_MASK (1 << 2)
29 #define MAX_CPC_REG_ENT 21
31 /* CPPC specific PCC commands. */
35 /* Each register has the folowing format. */
47 * Each entry in the CPC table is either
48 * of type ACPI_TYPE_BUFFER or
51 struct cpc_register_resource {
52 acpi_object_type type;
53 u64 __iomem *sys_mem_vaddr;
60 /* Container to hold the CPC details for each CPU */
67 struct cpc_register_resource cpc_regs[MAX_CPC_REG_ENT];
68 struct acpi_psd_package domain_info;
72 /* These are indexes into the per-cpu cpc_regs[]. Order is important. */
98 * Categorization of registers as described
99 * in the ACPI v.5.1 spec.
100 * XXX: Only filling up ones which are used by governors
103 struct cppc_perf_caps {
108 u32 lowest_nonlinear_perf;
115 struct cppc_perf_ctrls {
122 struct cppc_perf_fb_ctrs {
129 /* Per CPU container for runtime CPPC management. */
130 struct cppc_cpudata {
131 struct list_head node;
132 struct cppc_perf_caps perf_caps;
133 struct cppc_perf_ctrls perf_ctrls;
134 struct cppc_perf_fb_ctrs perf_fb_ctrs;
135 unsigned int shared_type;
136 cpumask_var_t shared_cpu_map;
139 #ifdef CONFIG_ACPI_CPPC_LIB
140 extern int cppc_get_desired_perf(int cpunum, u64 *desired_perf);
141 extern int cppc_get_nominal_perf(int cpunum, u64 *nominal_perf);
142 extern int cppc_get_perf_ctrs(int cpu, struct cppc_perf_fb_ctrs *perf_fb_ctrs);
143 extern int cppc_set_perf(int cpu, struct cppc_perf_ctrls *perf_ctrls);
144 extern int cppc_set_enable(int cpu, bool enable);
145 extern int cppc_get_perf_caps(int cpu, struct cppc_perf_caps *caps);
146 extern bool cppc_perf_ctrs_in_pcc(void);
147 extern bool acpi_cpc_valid(void);
148 extern bool cppc_allow_fast_switch(void);
149 extern int acpi_get_psd_map(unsigned int cpu, struct cppc_cpudata *cpu_data);
150 extern unsigned int cppc_get_transition_latency(int cpu);
151 extern bool cpc_ffh_supported(void);
152 extern bool cpc_supported_by_cpu(void);
153 extern int cpc_read_ffh(int cpunum, struct cpc_reg *reg, u64 *val);
154 extern int cpc_write_ffh(int cpunum, struct cpc_reg *reg, u64 val);
155 extern int cppc_get_epp_perf(int cpunum, u64 *epp_perf);
156 extern int cppc_set_epp_perf(int cpu, struct cppc_perf_ctrls *perf_ctrls, bool enable);
157 extern int cppc_get_auto_sel_caps(int cpunum, struct cppc_perf_caps *perf_caps);
158 extern int cppc_set_auto_sel(int cpu, bool enable);
159 #else /* !CONFIG_ACPI_CPPC_LIB */
160 static inline int cppc_get_desired_perf(int cpunum, u64 *desired_perf)
164 static inline int cppc_get_nominal_perf(int cpunum, u64 *nominal_perf)
168 static inline int cppc_get_perf_ctrs(int cpu, struct cppc_perf_fb_ctrs *perf_fb_ctrs)
172 static inline int cppc_set_perf(int cpu, struct cppc_perf_ctrls *perf_ctrls)
176 static inline int cppc_set_enable(int cpu, bool enable)
180 static inline int cppc_get_perf_caps(int cpu, struct cppc_perf_caps *caps)
184 static inline bool cppc_perf_ctrs_in_pcc(void)
188 static inline bool acpi_cpc_valid(void)
192 static inline bool cppc_allow_fast_switch(void)
196 static inline unsigned int cppc_get_transition_latency(int cpu)
198 return CPUFREQ_ETERNAL;
200 static inline bool cpc_ffh_supported(void)
204 static inline int cpc_read_ffh(int cpunum, struct cpc_reg *reg, u64 *val)
208 static inline int cpc_write_ffh(int cpunum, struct cpc_reg *reg, u64 val)
212 static inline int cppc_set_epp_perf(int cpu, struct cppc_perf_ctrls *perf_ctrls, bool enable)
216 static inline int cppc_get_epp_perf(int cpunum, u64 *epp_perf)
220 static inline int cppc_set_auto_sel(int cpu, bool enable)
224 static inline int cppc_get_auto_sel_caps(int cpunum, struct cppc_perf_caps *perf_caps)
228 #endif /* !CONFIG_ACPI_CPPC_LIB */
230 #endif /* _CPPC_ACPI_H*/