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 return sti_stih407_dvfs_regfields
;
153 static int sti_cpufreq_set_opp_info(void)
155 struct device
*dev
= ddata
.cpu
;
156 struct device_node
*np
= dev
->of_node
;
157 const struct reg_field
*reg_fields
;
158 unsigned int hw_info_offset
;
159 unsigned int version
[VERSION_ELEMENTS
];
160 int pcode
, substrate
, major
, minor
;
162 char name
[MAX_PCODE_NAME_LEN
];
164 reg_fields
= sti_cpufreq_match();
166 dev_err(dev
, "This SoC doesn't support voltage scaling\n");
170 ret
= of_property_read_u32_index(np
, "st,syscfg-eng",
171 HW_INFO_INDEX
, &hw_info_offset
);
173 dev_warn(dev
, "Failed to read HW info offset from DT\n");
174 substrate
= DEFAULT_VERSION
;
179 pcode
= sti_cpufreq_fetch_regmap_field(reg_fields
,
183 dev_warn(dev
, "Failed to obtain process code\n");
184 /* Use default pcode */
188 substrate
= sti_cpufreq_fetch_regmap_field(reg_fields
,
192 dev_warn(dev
, "Failed to obtain substrate code\n");
193 /* Use default substrate */
194 substrate
= DEFAULT_VERSION
;
198 major
= sti_cpufreq_fetch_major();
200 dev_err(dev
, "Failed to obtain major version\n");
201 /* Use default major number */
202 major
= DEFAULT_VERSION
;
205 minor
= sti_cpufreq_fetch_minor();
207 dev_err(dev
, "Failed to obtain minor version\n");
208 /* Use default minor number */
209 minor
= DEFAULT_VERSION
;
212 snprintf(name
, MAX_PCODE_NAME_LEN
, "pcode%d", pcode
);
214 ret
= dev_pm_opp_set_prop_name(dev
, name
);
216 dev_err(dev
, "Failed to set prop name\n");
220 version
[0] = BIT(major
);
221 version
[1] = BIT(minor
);
222 version
[2] = BIT(substrate
);
224 ret
= dev_pm_opp_set_supported_hw(dev
, version
, VERSION_ELEMENTS
);
226 dev_err(dev
, "Failed to set supported hardware\n");
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 static int sti_cpufreq_fetch_syscon_regsiters(void)
240 struct device
*dev
= ddata
.cpu
;
241 struct device_node
*np
= dev
->of_node
;
243 ddata
.syscfg
= syscon_regmap_lookup_by_phandle(np
, "st,syscfg");
244 if (IS_ERR(ddata
.syscfg
)) {
245 dev_err(dev
, "\"st,syscfg\" not supplied\n");
246 return PTR_ERR(ddata
.syscfg
);
249 ddata
.syscfg_eng
= syscon_regmap_lookup_by_phandle(np
, "st,syscfg-eng");
250 if (IS_ERR(ddata
.syscfg_eng
)) {
251 dev_err(dev
, "\"st,syscfg-eng\" not supplied\n");
252 return PTR_ERR(ddata
.syscfg_eng
);
258 static int sti_cpufreq_init(void)
262 if ((!of_machine_is_compatible("st,stih407")) &&
263 (!of_machine_is_compatible("st,stih410")))
266 ddata
.cpu
= get_cpu_device(0);
268 dev_err(ddata
.cpu
, "Failed to get device for CPU0\n");
269 goto skip_voltage_scaling
;
272 if (!of_get_property(ddata
.cpu
->of_node
, "operating-points-v2", NULL
)) {
273 dev_err(ddata
.cpu
, "OPP-v2 not supported\n");
274 goto skip_voltage_scaling
;
277 ret
= sti_cpufreq_fetch_syscon_regsiters();
279 goto skip_voltage_scaling
;
281 ret
= sti_cpufreq_set_opp_info();
283 goto register_cpufreq_dt
;
285 skip_voltage_scaling
:
286 dev_err(ddata
.cpu
, "Not doing voltage scaling\n");
289 platform_device_register_simple("cpufreq-dt", -1, NULL
, 0);
293 module_init(sti_cpufreq_init
);
295 MODULE_DESCRIPTION("STMicroelectronics CPUFreq/OPP driver");
296 MODULE_AUTHOR("Ajitpal Singh <ajitpal.singh@st.com>");
297 MODULE_AUTHOR("Lee Jones <lee.jones@linaro.org>");
298 MODULE_LICENSE("GPL v2");