Loading...
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * CPPC (Collaborative Processor Performance Control) methods used
4 * by CPUfreq drivers.
5 *
6 * (C) Copyright 2014, 2015 Linaro Ltd.
7 * Author: Ashwin Chaugule <ashwin.chaugule@linaro.org>
8 */
9
10#ifndef _CPPC_ACPI_H
11#define _CPPC_ACPI_H
12
13#include <linux/acpi.h>
14#include <linux/cpufreq.h>
15#include <linux/types.h>
16
17#include <acpi/pcc.h>
18#include <acpi/processor.h>
19
20/* CPPCv2 and CPPCv3 support */
21#define CPPC_V2_REV 2
22#define CPPC_V3_REV 3
23#define CPPC_V2_NUM_ENT 21
24#define CPPC_V3_NUM_ENT 23
25
26#define PCC_CMD_COMPLETE_MASK (1 << 0)
27#define PCC_ERROR_MASK (1 << 2)
28
29#define MAX_CPC_REG_ENT 21
30
31/* CPPC specific PCC commands. */
32#define CMD_READ 0
33#define CMD_WRITE 1
34
35/* Each register has the folowing format. */
36struct cpc_reg {
37 u8 descriptor;
38 u16 length;
39 u8 space_id;
40 u8 bit_width;
41 u8 bit_offset;
42 u8 access_width;
43 u64 address;
44} __packed;
45
46/*
47 * Each entry in the CPC table is either
48 * of type ACPI_TYPE_BUFFER or
49 * ACPI_TYPE_INTEGER.
50 */
51struct cpc_register_resource {
52 acpi_object_type type;
53 u64 __iomem *sys_mem_vaddr;
54 union {
55 struct cpc_reg reg;
56 u64 int_value;
57 } cpc_entry;
58};
59
60/* Container to hold the CPC details for each CPU */
61struct cpc_desc {
62 int num_entries;
63 int version;
64 int cpu_id;
65 int write_cmd_status;
66 int write_cmd_id;
67 struct cpc_register_resource cpc_regs[MAX_CPC_REG_ENT];
68 struct acpi_psd_package domain_info;
69 struct kobject kobj;
70};
71
72/* These are indexes into the per-cpu cpc_regs[]. Order is important. */
73enum cppc_regs {
74 HIGHEST_PERF,
75 NOMINAL_PERF,
76 LOW_NON_LINEAR_PERF,
77 LOWEST_PERF,
78 GUARANTEED_PERF,
79 DESIRED_PERF,
80 MIN_PERF,
81 MAX_PERF,
82 PERF_REDUC_TOLERANCE,
83 TIME_WINDOW,
84 CTR_WRAP_TIME,
85 REFERENCE_CTR,
86 DELIVERED_CTR,
87 PERF_LIMITED,
88 ENABLE,
89 AUTO_SEL_ENABLE,
90 AUTO_ACT_WINDOW,
91 ENERGY_PERF,
92 REFERENCE_PERF,
93 LOWEST_FREQ,
94 NOMINAL_FREQ,
95};
96
97/*
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
101 * today.
102 */
103struct cppc_perf_caps {
104 u32 guaranteed_perf;
105 u32 highest_perf;
106 u32 nominal_perf;
107 u32 lowest_perf;
108 u32 lowest_nonlinear_perf;
109 u32 lowest_freq;
110 u32 nominal_freq;
111};
112
113struct cppc_perf_ctrls {
114 u32 max_perf;
115 u32 min_perf;
116 u32 desired_perf;
117};
118
119struct cppc_perf_fb_ctrs {
120 u64 reference;
121 u64 delivered;
122 u64 reference_perf;
123 u64 wraparound_time;
124};
125
126/* Per CPU container for runtime CPPC management. */
127struct 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;
134};
135
136#ifdef CONFIG_ACPI_CPPC_LIB
137extern int cppc_get_desired_perf(int cpunum, u64 *desired_perf);
138extern int cppc_get_nominal_perf(int cpunum, u64 *nominal_perf);
139extern int cppc_get_perf_ctrs(int cpu, struct cppc_perf_fb_ctrs *perf_fb_ctrs);
140extern int cppc_set_perf(int cpu, struct cppc_perf_ctrls *perf_ctrls);
141extern int cppc_set_enable(int cpu, bool enable);
142extern int cppc_get_perf_caps(int cpu, struct cppc_perf_caps *caps);
143extern bool cppc_perf_ctrs_in_pcc(void);
144extern bool acpi_cpc_valid(void);
145extern bool cppc_allow_fast_switch(void);
146extern int acpi_get_psd_map(unsigned int cpu, struct cppc_cpudata *cpu_data);
147extern unsigned int cppc_get_transition_latency(int cpu);
148extern bool cpc_ffh_supported(void);
149extern bool cpc_supported_by_cpu(void);
150extern int cpc_read_ffh(int cpunum, struct cpc_reg *reg, u64 *val);
151extern int cpc_write_ffh(int cpunum, struct cpc_reg *reg, u64 val);
152#else /* !CONFIG_ACPI_CPPC_LIB */
153static inline int cppc_get_desired_perf(int cpunum, u64 *desired_perf)
154{
155 return -ENOTSUPP;
156}
157static inline int cppc_get_nominal_perf(int cpunum, u64 *nominal_perf)
158{
159 return -ENOTSUPP;
160}
161static inline int cppc_get_perf_ctrs(int cpu, struct cppc_perf_fb_ctrs *perf_fb_ctrs)
162{
163 return -ENOTSUPP;
164}
165static inline int cppc_set_perf(int cpu, struct cppc_perf_ctrls *perf_ctrls)
166{
167 return -ENOTSUPP;
168}
169static inline int cppc_set_enable(int cpu, bool enable)
170{
171 return -ENOTSUPP;
172}
173static inline int cppc_get_perf_caps(int cpu, struct cppc_perf_caps *caps)
174{
175 return -ENOTSUPP;
176}
177static inline bool cppc_perf_ctrs_in_pcc(void)
178{
179 return false;
180}
181static inline bool acpi_cpc_valid(void)
182{
183 return false;
184}
185static inline bool cppc_allow_fast_switch(void)
186{
187 return false;
188}
189static inline unsigned int cppc_get_transition_latency(int cpu)
190{
191 return CPUFREQ_ETERNAL;
192}
193static inline bool cpc_ffh_supported(void)
194{
195 return false;
196}
197static inline int cpc_read_ffh(int cpunum, struct cpc_reg *reg, u64 *val)
198{
199 return -ENOTSUPP;
200}
201static inline int cpc_write_ffh(int cpunum, struct cpc_reg *reg, u64 val)
202{
203 return -ENOTSUPP;
204}
205#endif /* !CONFIG_ACPI_CPPC_LIB */
206
207#endif /* _CPPC_ACPI_H*/
1/*
2 * CPPC (Collaborative Processor Performance Control) methods used
3 * by CPUfreq drivers.
4 *
5 * (C) Copyright 2014, 2015 Linaro Ltd.
6 * Author: Ashwin Chaugule <ashwin.chaugule@linaro.org>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; version 2
11 * of the License.
12 */
13
14#ifndef _CPPC_ACPI_H
15#define _CPPC_ACPI_H
16
17#include <linux/acpi.h>
18#include <linux/mailbox_controller.h>
19#include <linux/mailbox_client.h>
20#include <linux/types.h>
21
22#include <acpi/processor.h>
23
24/* Only support CPPCv2 for now. */
25#define CPPC_NUM_ENT 21
26#define CPPC_REV 2
27
28#define PCC_CMD_COMPLETE 1
29#define MAX_CPC_REG_ENT 19
30
31/* CPPC specific PCC commands. */
32#define CMD_READ 0
33#define CMD_WRITE 1
34
35/* Each register has the folowing format. */
36struct cpc_reg {
37 u8 descriptor;
38 u16 length;
39 u8 space_id;
40 u8 bit_width;
41 u8 bit_offset;
42 u8 access_width;
43 u64 __iomem address;
44} __packed;
45
46/*
47 * Each entry in the CPC table is either
48 * of type ACPI_TYPE_BUFFER or
49 * ACPI_TYPE_INTEGER.
50 */
51struct cpc_register_resource {
52 acpi_object_type type;
53 union {
54 struct cpc_reg reg;
55 u64 int_value;
56 } cpc_entry;
57};
58
59/* Container to hold the CPC details for each CPU */
60struct cpc_desc {
61 int num_entries;
62 int version;
63 int cpu_id;
64 struct cpc_register_resource cpc_regs[MAX_CPC_REG_ENT];
65 struct acpi_psd_package domain_info;
66};
67
68/* These are indexes into the per-cpu cpc_regs[]. Order is important. */
69enum cppc_regs {
70 HIGHEST_PERF,
71 NOMINAL_PERF,
72 LOW_NON_LINEAR_PERF,
73 LOWEST_PERF,
74 GUARANTEED_PERF,
75 DESIRED_PERF,
76 MIN_PERF,
77 MAX_PERF,
78 PERF_REDUC_TOLERANCE,
79 TIME_WINDOW,
80 CTR_WRAP_TIME,
81 REFERENCE_CTR,
82 DELIVERED_CTR,
83 PERF_LIMITED,
84 ENABLE,
85 AUTO_SEL_ENABLE,
86 AUTO_ACT_WINDOW,
87 ENERGY_PERF,
88 REFERENCE_PERF,
89};
90
91/*
92 * Categorization of registers as described
93 * in the ACPI v.5.1 spec.
94 * XXX: Only filling up ones which are used by governors
95 * today.
96 */
97struct cppc_perf_caps {
98 u32 highest_perf;
99 u32 nominal_perf;
100 u32 reference_perf;
101 u32 lowest_perf;
102};
103
104struct cppc_perf_ctrls {
105 u32 max_perf;
106 u32 min_perf;
107 u32 desired_perf;
108};
109
110struct cppc_perf_fb_ctrs {
111 u64 reference;
112 u64 prev_reference;
113 u64 delivered;
114 u64 prev_delivered;
115};
116
117/* Per CPU container for runtime CPPC management. */
118struct cpudata {
119 int cpu;
120 struct cppc_perf_caps perf_caps;
121 struct cppc_perf_ctrls perf_ctrls;
122 struct cppc_perf_fb_ctrs perf_fb_ctrs;
123 struct cpufreq_policy *cur_policy;
124 unsigned int shared_type;
125 cpumask_var_t shared_cpu_map;
126};
127
128extern int cppc_get_perf_ctrs(int cpu, struct cppc_perf_fb_ctrs *perf_fb_ctrs);
129extern int cppc_set_perf(int cpu, struct cppc_perf_ctrls *perf_ctrls);
130extern int cppc_get_perf_caps(int cpu, struct cppc_perf_caps *caps);
131extern int acpi_get_psd_map(struct cpudata **);
132
133/* Methods to interact with the PCC mailbox controller. */
134extern struct mbox_chan *
135 pcc_mbox_request_channel(struct mbox_client *, unsigned int);
136
137#endif /* _CPPC_ACPI_H*/