1 // SPDX-License-Identifier: GPL-2.0-only
3 * Match running platform with pre-defined OPP values for CPUFreq
5 * Author: Ajit Pal Singh <ajitpal.singh@st.com>
6 * Lee Jones <lee.jones@linaro.org>
8 * Copyright (C) 2015 STMicroelectronics (R&D) Limited
11 #include <linux/cpu.h>
13 #include <linux/mfd/syscon.h>
14 #include <linux/module.h>
16 #include <linux/of_platform.h>
17 #include <linux/pm_opp.h>
18 #include <linux/regmap.h>
20 #define VERSION_ELEMENTS 3
21 #define MAX_PCODE_NAME_LEN 7
23 #define VERSION_SHIFT 28
24 #define HW_INFO_INDEX 1
25 #define MAJOR_ID_INDEX 1
26 #define MINOR_ID_INDEX 2
29 * Only match on "suitable for ALL versions" entries
31 * This will be used with the BIT() macro. It sets the
32 * top bit of a 32bit value and is equal to 0x80000000.
34 #define DEFAULT_VERSION 31
43 * struct sti_cpufreq_ddata - ST CPUFreq Driver Data
46 * @syscfg_eng: Engineering Syscon register map
47 * @syscfg: Syscon register map
49 static struct sti_cpufreq_ddata
{
51 struct regmap
*syscfg_eng
;
52 struct regmap
*syscfg
;
55 static int sti_cpufreq_fetch_major(void) {
56 struct device_node
*np
= ddata
.cpu
->of_node
;
57 struct device
*dev
= ddata
.cpu
;
58 unsigned int major_offset
;
62 ret
= of_property_read_u32_index(np
, "st,syscfg",
63 MAJOR_ID_INDEX
, &major_offset
);
65 dev_err(dev
, "No major number offset provided in %pOF [%d]\n",
70 ret
= regmap_read(ddata
.syscfg
, major_offset
, &socid
);
72 dev_err(dev
, "Failed to read major number from syscon [%d]\n",
77 return ((socid
>> VERSION_SHIFT
) & 0xf) + 1;
80 static int sti_cpufreq_fetch_minor(void)
82 struct device
*dev
= ddata
.cpu
;
83 struct device_node
*np
= dev
->of_node
;
84 unsigned int minor_offset
;
88 ret
= of_property_read_u32_index(np
, "st,syscfg-eng",
89 MINOR_ID_INDEX
, &minor_offset
);
92 "No minor number offset provided %pOF [%d]\n",
97 ret
= regmap_read(ddata
.syscfg_eng
, minor_offset
, &minid
);
100 "Failed to read the minor number from syscon [%d]\n",
108 static int sti_cpufreq_fetch_regmap_field(const struct reg_field
*reg_fields
,
109 int hw_info_offset
, int field
)
111 struct regmap_field
*regmap_field
;
112 struct reg_field reg_field
= reg_fields
[field
];
113 struct device
*dev
= ddata
.cpu
;
117 reg_field
.reg
= hw_info_offset
;
118 regmap_field
= devm_regmap_field_alloc(dev
,
121 if (IS_ERR(regmap_field
)) {
122 dev_err(dev
, "Failed to allocate reg field\n");
123 return PTR_ERR(regmap_field
);
126 ret
= regmap_field_read(regmap_field
, &value
);
128 dev_err(dev
, "Failed to read %s code\n",
129 field
? "SUBSTRATE" : "PCODE");
136 static const struct reg_field sti_stih407_dvfs_regfields
[DVFS_MAX_REGFIELDS
] = {
137 [PCODE
] = REG_FIELD(0, 16, 19),
138 [SUBSTRATE
] = REG_FIELD(0, 0, 2),
141 static const struct reg_field
*sti_cpufreq_match(void)
143 if (of_machine_is_compatible("st,stih407") ||
144 of_machine_is_compatible("st,stih410") ||
145 of_machine_is_compatible("st,stih418"))
146 return sti_stih407_dvfs_regfields
;
151 static int sti_cpufreq_set_opp_info(void)
153 struct device
*dev
= ddata
.cpu
;
154 struct device_node
*np
= dev
->of_node
;
155 const struct reg_field
*reg_fields
;
156 unsigned int hw_info_offset
;
157 unsigned int version
[VERSION_ELEMENTS
];
158 int pcode
, substrate
, major
, minor
;
160 char name
[MAX_PCODE_NAME_LEN
];
161 struct opp_table
*opp_table
;
163 reg_fields
= sti_cpufreq_match();
165 dev_err(dev
, "This SoC doesn't support voltage scaling\n");
169 ret
= of_property_read_u32_index(np
, "st,syscfg-eng",
170 HW_INFO_INDEX
, &hw_info_offset
);
172 dev_warn(dev
, "Failed to read HW info offset from DT\n");
173 substrate
= DEFAULT_VERSION
;
178 pcode
= sti_cpufreq_fetch_regmap_field(reg_fields
,
182 dev_warn(dev
, "Failed to obtain process code\n");
183 /* Use default pcode */
187 substrate
= sti_cpufreq_fetch_regmap_field(reg_fields
,
191 dev_warn(dev
, "Failed to obtain substrate code\n");
192 /* Use default substrate */
193 substrate
= DEFAULT_VERSION
;
197 major
= sti_cpufreq_fetch_major();
199 dev_err(dev
, "Failed to obtain major version\n");
200 /* Use default major number */
201 major
= DEFAULT_VERSION
;
204 minor
= sti_cpufreq_fetch_minor();
206 dev_err(dev
, "Failed to obtain minor version\n");
207 /* Use default minor number */
208 minor
= DEFAULT_VERSION
;
211 snprintf(name
, MAX_PCODE_NAME_LEN
, "pcode%d", pcode
);
213 opp_table
= dev_pm_opp_set_prop_name(dev
, name
);
214 if (IS_ERR(opp_table
)) {
215 dev_err(dev
, "Failed to set prop name\n");
216 return PTR_ERR(opp_table
);
219 version
[0] = BIT(major
);
220 version
[1] = BIT(minor
);
221 version
[2] = BIT(substrate
);
223 opp_table
= dev_pm_opp_set_supported_hw(dev
, version
, VERSION_ELEMENTS
);
224 if (IS_ERR(opp_table
)) {
225 dev_err(dev
, "Failed to set supported hardware\n");
226 ret
= PTR_ERR(opp_table
);
227 goto err_put_prop_name
;
230 dev_dbg(dev
, "pcode: %d major: %d minor: %d substrate: %d\n",
231 pcode
, major
, minor
, substrate
);
232 dev_dbg(dev
, "version[0]: %x version[1]: %x version[2]: %x\n",
233 version
[0], version
[1], version
[2]);
238 dev_pm_opp_put_prop_name(opp_table
);
242 static int sti_cpufreq_fetch_syscon_registers(void)
244 struct device
*dev
= ddata
.cpu
;
245 struct device_node
*np
= dev
->of_node
;
247 ddata
.syscfg
= syscon_regmap_lookup_by_phandle(np
, "st,syscfg");
248 if (IS_ERR(ddata
.syscfg
)) {
249 dev_err(dev
, "\"st,syscfg\" not supplied\n");
250 return PTR_ERR(ddata
.syscfg
);
253 ddata
.syscfg_eng
= syscon_regmap_lookup_by_phandle(np
, "st,syscfg-eng");
254 if (IS_ERR(ddata
.syscfg_eng
)) {
255 dev_err(dev
, "\"st,syscfg-eng\" not supplied\n");
256 return PTR_ERR(ddata
.syscfg_eng
);
262 static int sti_cpufreq_init(void)
266 if ((!of_machine_is_compatible("st,stih407")) &&
267 (!of_machine_is_compatible("st,stih410")) &&
268 (!of_machine_is_compatible("st,stih418")))
271 ddata
.cpu
= get_cpu_device(0);
273 dev_err(ddata
.cpu
, "Failed to get device for CPU0\n");
274 goto skip_voltage_scaling
;
277 if (!of_get_property(ddata
.cpu
->of_node
, "operating-points-v2", NULL
)) {
278 dev_err(ddata
.cpu
, "OPP-v2 not supported\n");
279 goto skip_voltage_scaling
;
282 ret
= sti_cpufreq_fetch_syscon_registers();
284 goto skip_voltage_scaling
;
286 ret
= sti_cpufreq_set_opp_info();
288 goto register_cpufreq_dt
;
290 skip_voltage_scaling
:
291 dev_err(ddata
.cpu
, "Not doing voltage scaling\n");
294 platform_device_register_simple("cpufreq-dt", -1, NULL
, 0);
298 module_init(sti_cpufreq_init
);
300 static const struct of_device_id __maybe_unused sti_cpufreq_of_match
[] = {
301 { .compatible
= "st,stih407" },
302 { .compatible
= "st,stih410" },
305 MODULE_DEVICE_TABLE(of
, sti_cpufreq_of_match
);
307 MODULE_DESCRIPTION("STMicroelectronics CPUFreq/OPP driver");
308 MODULE_AUTHOR("Ajitpal Singh <ajitpal.singh@st.com>");
309 MODULE_AUTHOR("Lee Jones <lee.jones@linaro.org>");
310 MODULE_LICENSE("GPL v2");