1 // SPDX-License-Identifier: GPL-2.0+
3 * CPU frequency scaling support for Armada 37xx platform.
5 * Copyright (C) 2017 Marvell
7 * Gregory CLEMENT <gregory.clement@free-electrons.com>
10 #include <linux/clk.h>
11 #include <linux/cpu.h>
12 #include <linux/cpufreq.h>
13 #include <linux/err.h>
14 #include <linux/interrupt.h>
16 #include <linux/mfd/syscon.h>
17 #include <linux/module.h>
18 #include <linux/of_address.h>
19 #include <linux/of_device.h>
20 #include <linux/of_irq.h>
21 #include <linux/platform_device.h>
22 #include <linux/pm_opp.h>
23 #include <linux/regmap.h>
24 #include <linux/slab.h>
26 /* Power management in North Bridge register set */
27 #define ARMADA_37XX_NB_L0L1 0x18
28 #define ARMADA_37XX_NB_L2L3 0x1C
29 #define ARMADA_37XX_NB_TBG_DIV_OFF 13
30 #define ARMADA_37XX_NB_TBG_DIV_MASK 0x7
31 #define ARMADA_37XX_NB_CLK_SEL_OFF 11
32 #define ARMADA_37XX_NB_CLK_SEL_MASK 0x1
33 #define ARMADA_37XX_NB_CLK_SEL_TBG 0x1
34 #define ARMADA_37XX_NB_TBG_SEL_OFF 9
35 #define ARMADA_37XX_NB_TBG_SEL_MASK 0x3
36 #define ARMADA_37XX_NB_VDD_SEL_OFF 6
37 #define ARMADA_37XX_NB_VDD_SEL_MASK 0x3
38 #define ARMADA_37XX_NB_CONFIG_SHIFT 16
39 #define ARMADA_37XX_NB_DYN_MOD 0x24
40 #define ARMADA_37XX_NB_CLK_SEL_EN BIT(26)
41 #define ARMADA_37XX_NB_TBG_EN BIT(28)
42 #define ARMADA_37XX_NB_DIV_EN BIT(29)
43 #define ARMADA_37XX_NB_VDD_EN BIT(30)
44 #define ARMADA_37XX_NB_DFS_EN BIT(31)
45 #define ARMADA_37XX_NB_CPU_LOAD 0x30
46 #define ARMADA_37XX_NB_CPU_LOAD_MASK 0x3
47 #define ARMADA_37XX_DVFS_LOAD_0 0
48 #define ARMADA_37XX_DVFS_LOAD_1 1
49 #define ARMADA_37XX_DVFS_LOAD_2 2
50 #define ARMADA_37XX_DVFS_LOAD_3 3
53 * On Armada 37xx the Power management manages 4 level of CPU load,
54 * each level can be associated with a CPU clock source, a CPU
55 * divider, a VDD level, etc...
57 #define LOAD_LEVEL_NR 4
59 struct armada_37xx_dvfs
{
61 u8 divider
[LOAD_LEVEL_NR
];
64 static struct armada_37xx_dvfs armada_37xx_dvfs
[] = {
65 {.cpu_freq_max
= 1200*1000*1000, .divider
= {1, 2, 4, 6} },
66 {.cpu_freq_max
= 1000*1000*1000, .divider
= {1, 2, 4, 5} },
67 {.cpu_freq_max
= 800*1000*1000, .divider
= {1, 2, 3, 4} },
68 {.cpu_freq_max
= 600*1000*1000, .divider
= {2, 4, 5, 6} },
71 static struct armada_37xx_dvfs
*armada_37xx_cpu_freq_info_get(u32 freq
)
75 for (i
= 0; i
< ARRAY_SIZE(armada_37xx_dvfs
); i
++) {
76 if (freq
== armada_37xx_dvfs
[i
].cpu_freq_max
)
77 return &armada_37xx_dvfs
[i
];
80 pr_err("Unsupported CPU frequency %d MHz\n", freq
/1000000);
85 * Setup the four level managed by the hardware. Once the four level
86 * will be configured then the DVFS will be enabled.
88 static void __init
armada37xx_cpufreq_dvfs_setup(struct regmap
*base
,
89 struct clk
*clk
, u8
*divider
)
94 for (load_lvl
= 0; load_lvl
< LOAD_LEVEL_NR
; load_lvl
++) {
95 unsigned int reg
, mask
, val
, offset
= 0;
97 if (load_lvl
<= ARMADA_37XX_DVFS_LOAD_1
)
98 reg
= ARMADA_37XX_NB_L0L1
;
100 reg
= ARMADA_37XX_NB_L2L3
;
102 if (load_lvl
== ARMADA_37XX_DVFS_LOAD_0
||
103 load_lvl
== ARMADA_37XX_DVFS_LOAD_2
)
104 offset
+= ARMADA_37XX_NB_CONFIG_SHIFT
;
106 /* Set cpu clock source, for all the level we use TBG */
107 val
= ARMADA_37XX_NB_CLK_SEL_TBG
<< ARMADA_37XX_NB_CLK_SEL_OFF
;
108 mask
= (ARMADA_37XX_NB_CLK_SEL_MASK
109 << ARMADA_37XX_NB_CLK_SEL_OFF
);
112 * Set cpu divider based on the pre-computed array in
113 * order to have balanced step.
115 val
|= divider
[load_lvl
] << ARMADA_37XX_NB_TBG_DIV_OFF
;
116 mask
|= (ARMADA_37XX_NB_TBG_DIV_MASK
117 << ARMADA_37XX_NB_TBG_DIV_OFF
);
119 /* Set VDD divider which is actually the load level. */
120 val
|= load_lvl
<< ARMADA_37XX_NB_VDD_SEL_OFF
;
121 mask
|= (ARMADA_37XX_NB_VDD_SEL_MASK
122 << ARMADA_37XX_NB_VDD_SEL_OFF
);
127 regmap_update_bits(base
, reg
, mask
, val
);
131 * Set cpu clock source, for all the level we keep the same
132 * clock source that the one already configured. For this one
133 * we need to use the clock framework
135 parent
= clk_get_parent(clk
);
136 clk_set_parent(clk
, parent
);
139 static void __init
armada37xx_cpufreq_disable_dvfs(struct regmap
*base
)
141 unsigned int reg
= ARMADA_37XX_NB_DYN_MOD
,
142 mask
= ARMADA_37XX_NB_DFS_EN
;
144 regmap_update_bits(base
, reg
, mask
, 0);
147 static void __init
armada37xx_cpufreq_enable_dvfs(struct regmap
*base
)
149 unsigned int val
, reg
= ARMADA_37XX_NB_CPU_LOAD
,
150 mask
= ARMADA_37XX_NB_CPU_LOAD_MASK
;
152 /* Start with the highest load (0) */
153 val
= ARMADA_37XX_DVFS_LOAD_0
;
154 regmap_update_bits(base
, reg
, mask
, val
);
156 /* Now enable DVFS for the CPUs */
157 reg
= ARMADA_37XX_NB_DYN_MOD
;
158 mask
= ARMADA_37XX_NB_CLK_SEL_EN
| ARMADA_37XX_NB_TBG_EN
|
159 ARMADA_37XX_NB_DIV_EN
| ARMADA_37XX_NB_VDD_EN
|
160 ARMADA_37XX_NB_DFS_EN
;
162 regmap_update_bits(base
, reg
, mask
, mask
);
165 static int __init
armada37xx_cpufreq_driver_init(void)
167 struct armada_37xx_dvfs
*dvfs
;
168 struct platform_device
*pdev
;
169 unsigned int cur_frequency
;
170 struct regmap
*nb_pm_base
;
171 struct device
*cpu_dev
;
176 syscon_regmap_lookup_by_compatible("marvell,armada-3700-nb-pm");
178 if (IS_ERR(nb_pm_base
))
181 /* Before doing any configuration on the DVFS first, disable it */
182 armada37xx_cpufreq_disable_dvfs(nb_pm_base
);
185 * On CPU 0 register the operating points supported (which are
186 * the nominal CPU frequency and full integer divisions of
189 cpu_dev
= get_cpu_device(0);
191 dev_err(cpu_dev
, "Cannot get CPU\n");
195 clk
= clk_get(cpu_dev
, 0);
197 dev_err(cpu_dev
, "Cannot get clock for CPU0\n");
201 /* Get nominal (current) CPU frequency */
202 cur_frequency
= clk_get_rate(clk
);
203 if (!cur_frequency
) {
204 dev_err(cpu_dev
, "Failed to get clock rate for CPU\n");
209 dvfs
= armada_37xx_cpu_freq_info_get(cur_frequency
);
213 armada37xx_cpufreq_dvfs_setup(nb_pm_base
, clk
, dvfs
->divider
);
216 for (load_lvl
= ARMADA_37XX_DVFS_LOAD_0
; load_lvl
< LOAD_LEVEL_NR
;
218 unsigned long freq
= cur_frequency
/ dvfs
->divider
[load_lvl
];
220 ret
= dev_pm_opp_add(cpu_dev
, freq
, 0);
222 /* clean-up the already added opp before leaving */
223 while (load_lvl
-- > ARMADA_37XX_DVFS_LOAD_0
) {
224 freq
= cur_frequency
/ dvfs
->divider
[load_lvl
];
225 dev_pm_opp_remove(cpu_dev
, freq
);
231 /* Now that everything is setup, enable the DVFS at hardware level */
232 armada37xx_cpufreq_enable_dvfs(nb_pm_base
);
234 pdev
= platform_device_register_simple("cpufreq-dt", -1, NULL
, 0);
236 return PTR_ERR_OR_ZERO(pdev
);
238 /* late_initcall, to guarantee the driver is loaded after A37xx clock driver */
239 late_initcall(armada37xx_cpufreq_driver_init
);
241 MODULE_AUTHOR("Gregory CLEMENT <gregory.clement@free-electrons.com>");
242 MODULE_DESCRIPTION("Armada 37xx cpufreq driver");
243 MODULE_LICENSE("GPL");