1 // SPDX-License-Identifier: GPL-2.0-only
3 * OMAP2xxx DVFS virtual clock functions
5 * Copyright (C) 2005-2008, 2012 Texas Instruments, Inc.
6 * Copyright (C) 2004-2010 Nokia Corporation
9 * Richard Woodruff <r-woodruff2@ti.com>
12 * Based on earlier work by Tuukka Tikkanen, Tony Lindgren,
13 * Gordon McNutt and RidgeRun, Inc.
15 * XXX Some of this code should be replaceable by the upcoming OPP layer
16 * code. However, some notion of "rate set" is probably still necessary
17 * for OMAP2xxx at least. Rate sets should be generalized so they can be
18 * used for any OMAP chip, not just OMAP2xxx. In particular, Richard Woodruff
19 * has in the past expressed a preference to use rate sets for OPP changes,
20 * rather than dynamically recalculating the clock tree, so if someone wants
21 * this badly enough to write the code to handle it, we should support it
26 #include <linux/kernel.h>
27 #include <linux/errno.h>
28 #include <linux/clk.h>
30 #include <linux/cpufreq.h>
31 #include <linux/slab.h>
35 #include "clock2xxx.h"
38 #include "cm-regbits-24xx.h"
44 const struct prcm_config
*curr_prcm_set
;
45 const struct prcm_config
*rate_table
;
48 * sys_ck_rate: the rate of the external high-frequency clock
49 * oscillator on the board. Set by the SoC-specific clock init code.
50 * Once set during a boot, will not change.
52 static unsigned long sys_ck_rate
;
55 * omap2_table_mpu_recalc - just return the MPU speed
56 * @clk: virt_prcm_set struct clk
58 * Set virt_prcm_set's rate to the mpu_speed field of the current PRCM set.
60 static unsigned long omap2_table_mpu_recalc(struct clk_hw
*clk
,
61 unsigned long parent_rate
)
63 return curr_prcm_set
->mpu_speed
;
67 * Look for a rate equal or less than the target rate given a configuration set.
69 * What's not entirely clear is "which" field represents the key field.
70 * Some might argue L3-DDR, others ARM, others IVA. This code is simple and
71 * just uses the ARM rates.
73 static long omap2_round_to_table_rate(struct clk_hw
*hw
, unsigned long rate
,
74 unsigned long *parent_rate
)
76 const struct prcm_config
*ptr
;
79 highest_rate
= -EINVAL
;
81 for (ptr
= rate_table
; ptr
->mpu_speed
; ptr
++) {
82 if (!(ptr
->flags
& cpu_mask
))
84 if (ptr
->xtal_speed
!= sys_ck_rate
)
87 highest_rate
= ptr
->mpu_speed
;
89 /* Can check only after xtal frequency check */
90 if (ptr
->mpu_speed
<= rate
)
96 /* Sets basic clocks based on the specified rate */
97 static int omap2_select_table_rate(struct clk_hw
*hw
, unsigned long rate
,
98 unsigned long parent_rate
)
100 u32 cur_rate
, done_rate
, bypass
= 0;
101 const struct prcm_config
*prcm
;
102 unsigned long found_speed
= 0;
105 for (prcm
= rate_table
; prcm
->mpu_speed
; prcm
++) {
106 if (!(prcm
->flags
& cpu_mask
))
109 if (prcm
->xtal_speed
!= sys_ck_rate
)
112 if (prcm
->mpu_speed
<= rate
) {
113 found_speed
= prcm
->mpu_speed
;
119 printk(KERN_INFO
"Could not set MPU rate to %luMHz\n",
124 curr_prcm_set
= prcm
;
125 cur_rate
= omap2xxx_clk_get_core_rate();
127 if (prcm
->dpll_speed
== cur_rate
/ 2) {
128 omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL
, 1);
129 } else if (prcm
->dpll_speed
== cur_rate
* 2) {
130 omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2
, 1);
131 } else if (prcm
->dpll_speed
!= cur_rate
) {
132 local_irq_save(flags
);
134 if (prcm
->dpll_speed
== prcm
->xtal_speed
)
137 if ((prcm
->cm_clksel2_pll
& OMAP24XX_CORE_CLK_SRC_MASK
) ==
138 CORE_CLK_SRC_DPLL_X2
)
139 done_rate
= CORE_CLK_SRC_DPLL_X2
;
141 done_rate
= CORE_CLK_SRC_DPLL
;
143 omap2xxx_cm_set_mod_dividers(prcm
->cm_clksel_mpu
,
146 prcm
->cm_clksel1_core
,
147 prcm
->cm_clksel_mdm
);
149 /* x2 to enter omap2xxx_sdrc_init_params() */
150 omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2
, 1);
152 omap2_set_prcm(prcm
->cm_clksel1_pll
, prcm
->base_sdrc_rfr
,
155 omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked());
156 omap2xxx_sdrc_reprogram(done_rate
, 0);
158 local_irq_restore(flags
);
165 * omap2xxx_clkt_vps_check_bootloader_rates - determine which of the rate
166 * table sets matches the current CORE DPLL hardware rate
168 * Check the MPU rate set by bootloader. Sets the 'curr_prcm_set'
169 * global to point to the active rate set when found; otherwise, sets
170 * it to NULL. No return value;
172 static void omap2xxx_clkt_vps_check_bootloader_rates(void)
174 const struct prcm_config
*prcm
= NULL
;
177 rate
= omap2xxx_clk_get_core_rate();
178 for (prcm
= rate_table
; prcm
->mpu_speed
; prcm
++) {
179 if (!(prcm
->flags
& cpu_mask
))
181 if (prcm
->xtal_speed
!= sys_ck_rate
)
183 if (prcm
->dpll_speed
<= rate
)
186 curr_prcm_set
= prcm
;
190 * omap2xxx_clkt_vps_late_init - store a copy of the sys_ck rate
192 * Store a copy of the sys_ck rate for later use by the OMAP2xxx DVFS
193 * code. (The sys_ck rate does not -- or rather, must not -- change
194 * during kernel runtime.) Must be called after we have a valid
195 * sys_ck rate, but before the virt_prcm_set clock rate is
196 * recalculated. No return value.
198 static void omap2xxx_clkt_vps_late_init(void)
202 c
= clk_get(NULL
, "sys_ck");
204 WARN(1, "could not locate sys_ck\n");
206 sys_ck_rate
= clk_get_rate(c
);
212 #include <linux/clk-provider.h>
213 #include <linux/clkdev.h>
215 static const struct clk_ops virt_prcm_set_ops
= {
216 .recalc_rate
= &omap2_table_mpu_recalc
,
217 .set_rate
= &omap2_select_table_rate
,
218 .round_rate
= &omap2_round_to_table_rate
,
222 * omap2xxx_clkt_vps_init - initialize virt_prcm_set clock
224 * Does a manual init for the virtual prcm DVFS clock for OMAP2. This
225 * function is called only from omap2 DT clock init, as the virtual
226 * node is not modelled in the DT clock data.
228 void omap2xxx_clkt_vps_init(void)
230 struct clk_init_data init
= { NULL
};
231 struct clk_hw_omap
*hw
= NULL
;
233 const char *parent_name
= "mpu_ck";
235 omap2xxx_clkt_vps_late_init();
236 omap2xxx_clkt_vps_check_bootloader_rates();
238 hw
= kzalloc(sizeof(*hw
), GFP_KERNEL
);
241 init
.name
= "virt_prcm_set";
242 init
.ops
= &virt_prcm_set_ops
;
243 init
.parent_names
= &parent_name
;
244 init
.num_parents
= 1;
248 clk
= clk_register(NULL
, &hw
->hw
);
250 printk(KERN_ERR
"Failed to register clock\n");
255 clkdev_create(clk
, "cpufreq_ck", NULL
);