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 /* Support CPPCv2 and CPPCv3 */
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;
113 struct cppc_perf_ctrls {
119 struct cppc_perf_fb_ctrs {
126 /* Per CPU container for runtime CPPC management. */
127 struct cppc_cpudata {
128 struct list_head node;
129 struct cppc_perf_caps perf_caps;
130 struct cppc_perf_ctrls perf_ctrls;
131 struct cppc_perf_fb_ctrs perf_fb_ctrs;
132 unsigned int shared_type;
133 cpumask_var_t shared_cpu_map;
136 #ifdef CONFIG_ACPI_CPPC_LIB
137 extern int cppc_get_desired_perf(int cpunum, u64 *desired_perf);
138 extern int cppc_get_nominal_perf(int cpunum, u64 *nominal_perf);
139 extern int cppc_get_perf_ctrs(int cpu, struct cppc_perf_fb_ctrs *perf_fb_ctrs);
140 extern int cppc_set_perf(int cpu, struct cppc_perf_ctrls *perf_ctrls);
141 extern int cppc_get_perf_caps(int cpu, struct cppc_perf_caps *caps);
142 extern bool acpi_cpc_valid(void);
143 extern int acpi_get_psd_map(unsigned int cpu, struct cppc_cpudata *cpu_data);
144 extern unsigned int cppc_get_transition_latency(int cpu);
145 extern bool cpc_ffh_supported(void);
146 extern int cpc_read_ffh(int cpunum, struct cpc_reg *reg, u64 *val);
147 extern int cpc_write_ffh(int cpunum, struct cpc_reg *reg, u64 val);
148 #else /* !CONFIG_ACPI_CPPC_LIB */
149 static inline int cppc_get_desired_perf(int cpunum, u64 *desired_perf)
153 static inline int cppc_get_nominal_perf(int cpunum, u64 *nominal_perf)
157 static inline int cppc_get_perf_ctrs(int cpu, struct cppc_perf_fb_ctrs *perf_fb_ctrs)
161 static inline int cppc_set_perf(int cpu, struct cppc_perf_ctrls *perf_ctrls)
165 static inline int cppc_get_perf_caps(int cpu, struct cppc_perf_caps *caps)
169 static inline bool acpi_cpc_valid(void)
173 static inline unsigned int cppc_get_transition_latency(int cpu)
175 return CPUFREQ_ETERNAL;
177 static inline bool cpc_ffh_supported(void)
181 static inline int cpc_read_ffh(int cpunum, struct cpc_reg *reg, u64 *val)
185 static inline int cpc_write_ffh(int cpunum, struct cpc_reg *reg, u64 val)
189 #endif /* !CONFIG_ACPI_CPPC_LIB */
191 #endif /* _CPPC_ACPI_H*/