2 * Match running platform with pre-defined OPP values for CPUFreq
4 * Author: Ajit Pal Singh <ajitpal.singh@st.com>
5 * Lee Jones <lee.jones@linaro.org>
7 * Copyright (C) 2015 STMicroelectronics (R&D) Limited
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the version 2 of the GNU General Public License as
11 * published by the Free Software Foundation
14 #include <linux/cpu.h>
16 #include <linux/mfd/syscon.h>
17 #include <linux/module.h>
19 #include <linux/of_platform.h>
20 #include <linux/pm_opp.h>
21 #include <linux/regmap.h>
23 #define VERSION_ELEMENTS 3
24 #define MAX_PCODE_NAME_LEN 7
26 #define VERSION_SHIFT 28
27 #define HW_INFO_INDEX 1
28 #define MAJOR_ID_INDEX 1
29 #define MINOR_ID_INDEX 2
32 * Only match on "suitable for ALL versions" entries
34 * This will be used with the BIT() macro. It sets the
35 * top bit of a 32bit value and is equal to 0x80000000.
37 #define DEFAULT_VERSION 31
46 * ST CPUFreq Driver Data
48 * @cpu_node CPU's OF node
49 * @syscfg_eng Engineering Syscon register map
50 * @regmap Syscon register map
52 static struct sti_cpufreq_ddata
{
54 struct regmap
*syscfg_eng
;
55 struct regmap
*syscfg
;
58 static int sti_cpufreq_fetch_major(void) {
59 struct device_node
*np
= ddata
.cpu
->of_node
;
60 struct device
*dev
= ddata
.cpu
;
61 unsigned int major_offset
;
65 ret
= of_property_read_u32_index(np
, "st,syscfg",
66 MAJOR_ID_INDEX
, &major_offset
);
68 dev_err(dev
, "No major number offset provided in %s [%d]\n",
73 ret
= regmap_read(ddata
.syscfg
, major_offset
, &socid
);
75 dev_err(dev
, "Failed to read major number from syscon [%d]\n",
80 return ((socid
>> VERSION_SHIFT
) & 0xf) + 1;
83 static int sti_cpufreq_fetch_minor(void)
85 struct device
*dev
= ddata
.cpu
;
86 struct device_node
*np
= dev
->of_node
;
87 unsigned int minor_offset
;
91 ret
= of_property_read_u32_index(np
, "st,syscfg-eng",
92 MINOR_ID_INDEX
, &minor_offset
);
95 "No minor number offset provided %s [%d]\n",
100 ret
= regmap_read(ddata
.syscfg_eng
, minor_offset
, &minid
);
103 "Failed to read the minor number from syscon [%d]\n",
111 static int sti_cpufreq_fetch_regmap_field(const struct reg_field
*reg_fields
,
112 int hw_info_offset
, int field
)
114 struct regmap_field
*regmap_field
;
115 struct reg_field reg_field
= reg_fields
[field
];
116 struct device
*dev
= ddata
.cpu
;
120 reg_field
.reg
= hw_info_offset
;
121 regmap_field
= devm_regmap_field_alloc(dev
,
124 if (IS_ERR(regmap_field
)) {
125 dev_err(dev
, "Failed to allocate reg field\n");
126 return PTR_ERR(regmap_field
);
129 ret
= regmap_field_read(regmap_field
, &value
);
131 dev_err(dev
, "Failed to read %s code\n",
132 field
? "SUBSTRATE" : "PCODE");
139 static const struct reg_field sti_stih407_dvfs_regfields
[DVFS_MAX_REGFIELDS
] = {
140 [PCODE
] = REG_FIELD(0, 16, 19),
141 [SUBSTRATE
] = REG_FIELD(0, 0, 2),
144 static const struct reg_field
*sti_cpufreq_match(void)
146 if (of_machine_is_compatible("st,stih407") ||
147 of_machine_is_compatible("st,stih410") ||
148 of_machine_is_compatible("st,stih418"))
149 return sti_stih407_dvfs_regfields
;
154 static int sti_cpufreq_set_opp_info(void)
156 struct device
*dev
= ddata
.cpu
;
157 struct device_node
*np
= dev
->of_node
;
158 const struct reg_field
*reg_fields
;
159 unsigned int hw_info_offset
;
160 unsigned int version
[VERSION_ELEMENTS
];
161 int pcode
, substrate
, major
, minor
;
163 char name
[MAX_PCODE_NAME_LEN
];
165 reg_fields
= sti_cpufreq_match();
167 dev_err(dev
, "This SoC doesn't support voltage scaling\n");
171 ret
= of_property_read_u32_index(np
, "st,syscfg-eng",
172 HW_INFO_INDEX
, &hw_info_offset
);
174 dev_warn(dev
, "Failed to read HW info offset from DT\n");
175 substrate
= DEFAULT_VERSION
;
180 pcode
= sti_cpufreq_fetch_regmap_field(reg_fields
,
184 dev_warn(dev
, "Failed to obtain process code\n");
185 /* Use default pcode */
189 substrate
= sti_cpufreq_fetch_regmap_field(reg_fields
,
193 dev_warn(dev
, "Failed to obtain substrate code\n");
194 /* Use default substrate */
195 substrate
= DEFAULT_VERSION
;
199 major
= sti_cpufreq_fetch_major();
201 dev_err(dev
, "Failed to obtain major version\n");
202 /* Use default major number */
203 major
= DEFAULT_VERSION
;
206 minor
= sti_cpufreq_fetch_minor();
208 dev_err(dev
, "Failed to obtain minor version\n");
209 /* Use default minor number */
210 minor
= DEFAULT_VERSION
;
213 snprintf(name
, MAX_PCODE_NAME_LEN
, "pcode%d", pcode
);
215 ret
= dev_pm_opp_set_prop_name(dev
, name
);
217 dev_err(dev
, "Failed to set prop name\n");
221 version
[0] = BIT(major
);
222 version
[1] = BIT(minor
);
223 version
[2] = BIT(substrate
);
225 ret
= dev_pm_opp_set_supported_hw(dev
, version
, VERSION_ELEMENTS
);
227 dev_err(dev
, "Failed to set supported hardware\n");
231 dev_dbg(dev
, "pcode: %d major: %d minor: %d substrate: %d\n",
232 pcode
, major
, minor
, substrate
);
233 dev_dbg(dev
, "version[0]: %x version[1]: %x version[2]: %x\n",
234 version
[0], version
[1], version
[2]);
239 static int sti_cpufreq_fetch_syscon_regsiters(void)
241 struct device
*dev
= ddata
.cpu
;
242 struct device_node
*np
= dev
->of_node
;
244 ddata
.syscfg
= syscon_regmap_lookup_by_phandle(np
, "st,syscfg");
245 if (IS_ERR(ddata
.syscfg
)) {
246 dev_err(dev
, "\"st,syscfg\" not supplied\n");
247 return PTR_ERR(ddata
.syscfg
);
250 ddata
.syscfg_eng
= syscon_regmap_lookup_by_phandle(np
, "st,syscfg-eng");
251 if (IS_ERR(ddata
.syscfg_eng
)) {
252 dev_err(dev
, "\"st,syscfg-eng\" not supplied\n");
253 return PTR_ERR(ddata
.syscfg_eng
);
259 static int sti_cpufreq_init(void)
263 if ((!of_machine_is_compatible("st,stih407")) &&
264 (!of_machine_is_compatible("st,stih410")) &&
265 (!of_machine_is_compatible("st,stih418")))
268 ddata
.cpu
= get_cpu_device(0);
270 dev_err(ddata
.cpu
, "Failed to get device for CPU0\n");
271 goto skip_voltage_scaling
;
274 if (!of_get_property(ddata
.cpu
->of_node
, "operating-points-v2", NULL
)) {
275 dev_err(ddata
.cpu
, "OPP-v2 not supported\n");
276 goto skip_voltage_scaling
;
279 ret
= sti_cpufreq_fetch_syscon_regsiters();
281 goto skip_voltage_scaling
;
283 ret
= sti_cpufreq_set_opp_info();
285 goto register_cpufreq_dt
;
287 skip_voltage_scaling
:
288 dev_err(ddata
.cpu
, "Not doing voltage scaling\n");
291 platform_device_register_simple("cpufreq-dt", -1, NULL
, 0);
295 module_init(sti_cpufreq_init
);
297 static const struct of_device_id __maybe_unused sti_cpufreq_of_match
[] = {
298 { .compatible
= "st,stih407" },
299 { .compatible
= "st,stih410" },
302 MODULE_DEVICE_TABLE(of
, sti_cpufreq_of_match
);
304 MODULE_DESCRIPTION("STMicroelectronics CPUFreq/OPP driver");
305 MODULE_AUTHOR("Ajitpal Singh <ajitpal.singh@st.com>");
306 MODULE_AUTHOR("Lee Jones <lee.jones@linaro.org>");
307 MODULE_LICENSE("GPL v2");