blob: 40a88c2e40168e42d06473189ae0ebb8e0b5f63a [file] [log] [blame]
Paul Walmsley543d9372008-03-18 10:22:06 +02001/*
2 * linux/arch/arm/mach-omap2/clock.c
3 *
Tony Lindgrena16e9702008-03-18 11:56:39 +02004 * Copyright (C) 2005-2008 Texas Instruments, Inc.
Paul Walmsley8c349742010-02-22 22:09:24 -07005 * Copyright (C) 2004-2010 Nokia Corporation
Tony Lindgrena16e9702008-03-18 11:56:39 +02006 *
7 * Contacts:
Paul Walmsley543d9372008-03-18 10:22:06 +02008 * Richard Woodruff <r-woodruff2@ti.com>
Paul Walmsley543d9372008-03-18 10:22:06 +02009 * Paul Walmsley
10 *
Paul Walmsley543d9372008-03-18 10:22:06 +020011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15#undef DEBUG
16
Paul Walmsley543d9372008-03-18 10:22:06 +020017#include <linux/kernel.h>
Paul Walmsley1fe9be82012-09-27 10:33:33 -060018#include <linux/export.h>
Paul Walmsley543d9372008-03-18 10:22:06 +020019#include <linux/list.h>
20#include <linux/errno.h>
Paul Walmsley4d30e822010-02-22 22:09:36 -070021#include <linux/err.h>
22#include <linux/delay.h>
Mike Turquette32cc0022012-11-10 16:58:41 -070023#include <linux/clk-provider.h>
Russell Kingfced80c2008-09-06 12:10:45 +010024#include <linux/io.h>
Russell Kingfbd3bdb2008-09-06 12:13:59 +010025#include <linux/bitops.h>
Tero Kristo80cbb222015-02-06 16:00:32 +020026#include <linux/regmap.h>
Tero Kristo9f029b12014-10-22 15:15:36 +030027#include <linux/of_address.h>
Tero Kristo80cbb222015-02-06 16:00:32 +020028#include <linux/bootmem.h>
Jean Pihet5e7c58d2011-03-03 11:25:43 +010029#include <asm/cpu.h>
Tony Lindgrendbc04162012-08-31 10:59:07 -070030
Tony Lindgrendbc04162012-08-31 10:59:07 -070031#include <trace/events/power.h>
32
33#include "soc.h"
34#include "clockdomain.h"
Paul Walmsley543d9372008-03-18 10:22:06 +020035#include "clock.h"
Paul Walmsleyc4ceedc2012-10-29 20:56:29 -060036#include "cm.h"
Paul Walmsleyff4ae5d2012-10-21 01:01:11 -060037#include "cm2xxx.h"
38#include "cm3xxx.h"
Paul Walmsley543d9372008-03-18 10:22:06 +020039#include "cm-regbits-24xx.h"
40#include "cm-regbits-34xx.h"
Paul Walmsleyc4ceedc2012-10-29 20:56:29 -060041#include "common.h"
42
Afzal Mohammed99541192011-12-13 10:46:43 -080043u16 cpu_mask;
Paul Walmsley543d9372008-03-18 10:22:06 +020044
Tero Kristoa24886e2014-07-02 11:47:40 +030045/* DPLL valid Fint frequency band limits - from 34xx TRM Section 4.7.6.2 */
46#define OMAP3430_DPLL_FINT_BAND1_MIN 750000
47#define OMAP3430_DPLL_FINT_BAND1_MAX 2100000
48#define OMAP3430_DPLL_FINT_BAND2_MIN 7500000
49#define OMAP3430_DPLL_FINT_BAND2_MAX 21000000
50
51/*
52 * DPLL valid Fint frequency range for OMAP36xx and OMAP4xxx.
53 * From device data manual section 4.3 "DPLL and DLL Specifications".
54 */
55#define OMAP3PLUS_DPLL_FINT_MIN 32000
56#define OMAP3PLUS_DPLL_FINT_MAX 52000000
57
Tero Kristo80cbb222015-02-06 16:00:32 +020058struct clk_iomap {
59 struct regmap *regmap;
60 void __iomem *mem;
61};
62
63static struct clk_iomap *clk_memmaps[CLK_MAX_MEMMAPS];
Tero Kristo9f029b12014-10-22 15:15:36 +030064
65static void clk_memmap_writel(u32 val, void __iomem *reg)
66{
67 struct clk_omap_reg *r = (struct clk_omap_reg *)&reg;
Tero Kristo80cbb222015-02-06 16:00:32 +020068 struct clk_iomap *io = clk_memmaps[r->index];
Tero Kristo9f029b12014-10-22 15:15:36 +030069
Tero Kristo80cbb222015-02-06 16:00:32 +020070 if (io->regmap)
71 regmap_write(io->regmap, r->offset, val);
72 else
73 writel_relaxed(val, io->mem + r->offset);
Tero Kristo9f029b12014-10-22 15:15:36 +030074}
75
76static u32 clk_memmap_readl(void __iomem *reg)
77{
Tero Kristo80cbb222015-02-06 16:00:32 +020078 u32 val;
Tero Kristo9f029b12014-10-22 15:15:36 +030079 struct clk_omap_reg *r = (struct clk_omap_reg *)&reg;
Tero Kristo80cbb222015-02-06 16:00:32 +020080 struct clk_iomap *io = clk_memmaps[r->index];
Tero Kristo9f029b12014-10-22 15:15:36 +030081
Tero Kristo80cbb222015-02-06 16:00:32 +020082 if (io->regmap)
83 regmap_read(io->regmap, r->offset, &val);
84 else
85 val = readl_relaxed(io->mem + r->offset);
86
87 return val;
Tero Kristo9f029b12014-10-22 15:15:36 +030088}
Tero Kristo3ada6b102013-10-22 11:47:08 +030089
90void omap2_clk_writel(u32 val, struct clk_hw_omap *clk, void __iomem *reg)
91{
Tero Kristo9f029b12014-10-22 15:15:36 +030092 if (WARN_ON_ONCE(!(clk->flags & MEMMAP_ADDRESSING)))
Tero Kristo3ada6b102013-10-22 11:47:08 +030093 writel_relaxed(val, reg);
Tero Kristo9f029b12014-10-22 15:15:36 +030094 else
95 clk_memmap_writel(val, reg);
Tero Kristo3ada6b102013-10-22 11:47:08 +030096}
97
98u32 omap2_clk_readl(struct clk_hw_omap *clk, void __iomem *reg)
99{
Tero Kristo9f029b12014-10-22 15:15:36 +0300100 if (WARN_ON_ONCE(!(clk->flags & MEMMAP_ADDRESSING)))
101 return readl_relaxed(reg);
102 else
103 return clk_memmap_readl(reg);
104}
Tero Kristo3ada6b102013-10-22 11:47:08 +0300105
Tero Kristo9f029b12014-10-22 15:15:36 +0300106static struct ti_clk_ll_ops omap_clk_ll_ops = {
107 .clk_readl = clk_memmap_readl,
108 .clk_writel = clk_memmap_writel,
Tero Kristo9a356d62015-03-03 11:14:31 +0200109 .clkdm_clk_enable = clkdm_clk_enable,
110 .clkdm_clk_disable = clkdm_clk_disable,
Tero Kristo192383d2015-03-03 13:47:08 +0200111 .cm_wait_module_ready = omap_cm_wait_module_ready,
112 .cm_split_idlest_reg = cm_split_idlest_reg,
Tero Kristo9f029b12014-10-22 15:15:36 +0300113};
Tero Kristo3ada6b102013-10-22 11:47:08 +0300114
Tero Kristo9f029b12014-10-22 15:15:36 +0300115/**
Tero Kristoe9e63082015-04-27 21:55:42 +0300116 * omap2_clk_setup_ll_ops - setup clock driver low-level ops
117 *
118 * Sets up clock driver low-level platform ops. These are needed
119 * for register accesses and various other misc platform operations.
120 * Returns 0 on success, -EBUSY if low level ops have been registered
121 * already.
122 */
123int __init omap2_clk_setup_ll_ops(void)
124{
125 return ti_clk_setup_ll_ops(&omap_clk_ll_ops);
126}
127
128/**
Tero Kristo9f029b12014-10-22 15:15:36 +0300129 * omap2_clk_provider_init - initialize a clock provider
130 * @match_table: DT device table to match for devices to init
131 * @np: device node pointer for the this clock provider
132 * @index: index for the clock provider
Tero Kristo80cbb222015-02-06 16:00:32 +0200133 + @syscon: syscon regmap pointer
134 * @mem: iomem pointer for the clock provider memory area, only used if
135 * syscon is not provided
Tero Kristo9f029b12014-10-22 15:15:36 +0300136 *
137 * Initializes a clock provider module (CM/PRM etc.), registering
138 * the memory mapping at specified index and initializing the
139 * low level driver infrastructure. Returns 0 in success.
140 */
141int __init omap2_clk_provider_init(struct device_node *np, int index,
Tero Kristo80cbb222015-02-06 16:00:32 +0200142 struct regmap *syscon, void __iomem *mem)
Tero Kristo9f029b12014-10-22 15:15:36 +0300143{
Tero Kristo80cbb222015-02-06 16:00:32 +0200144 struct clk_iomap *io;
145
Tero Kristo80cbb222015-02-06 16:00:32 +0200146 io = kzalloc(sizeof(*io), GFP_KERNEL);
147
148 io->regmap = syscon;
149 io->mem = mem;
150
151 clk_memmaps[index] = io;
Tero Kristo9f029b12014-10-22 15:15:36 +0300152
153 ti_dt_clk_init_provider(np, index);
154
155 return 0;
156}
157
158/**
159 * omap2_clk_legacy_provider_init - initialize a legacy clock provider
160 * @index: index for the clock provider
161 * @mem: iomem pointer for the clock provider memory area
162 *
163 * Initializes a legacy clock provider memory mapping.
164 */
165void __init omap2_clk_legacy_provider_init(int index, void __iomem *mem)
166{
Tero Kristo80cbb222015-02-06 16:00:32 +0200167 struct clk_iomap *io;
168
Tero Kristo80cbb222015-02-06 16:00:32 +0200169 io = memblock_virt_alloc(sizeof(*io), 0);
170
171 io->mem = mem;
172
173 clk_memmaps[index] = io;
Tero Kristo3ada6b102013-10-22 11:47:08 +0300174}
Mike Turquette32cc0022012-11-10 16:58:41 -0700175
176/*
Paul Walmsley30962d92010-02-22 22:09:38 -0700177 * OMAP2+ specific clock functions
178 */
Paul Walmsley543d9372008-03-18 10:22:06 +0200179
Paul Walmsley4b1f76e2010-01-26 20:13:04 -0700180/* Private functions */
181
Paul Walmsley4b1f76e2010-01-26 20:13:04 -0700182/* Public functions */
183
Paul Walmsley543d9372008-03-18 10:22:06 +0200184/**
Paul Walmsley333943b2008-08-19 11:08:45 +0300185 * omap2_init_clk_clkdm - look up a clockdomain name, store pointer in clk
186 * @clk: OMAP clock struct ptr to use
187 *
188 * Convert a clockdomain name stored in a struct clk 'clk' into a
189 * clockdomain pointer, and save it into the struct clk. Intended to be
190 * called during clk_register(). No return value.
191 */
Mike Turquette32cc0022012-11-10 16:58:41 -0700192void omap2_init_clk_clkdm(struct clk_hw *hw)
193{
194 struct clk_hw_omap *clk = to_clk_hw_omap(hw);
Paul Walmsley333943b2008-08-19 11:08:45 +0300195 struct clockdomain *clkdm;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600196 const char *clk_name;
Paul Walmsley333943b2008-08-19 11:08:45 +0300197
198 if (!clk->clkdm_name)
199 return;
200
Mike Turquette32cc0022012-11-10 16:58:41 -0700201 clk_name = __clk_get_name(hw->clk);
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600202
Paul Walmsley333943b2008-08-19 11:08:45 +0300203 clkdm = clkdm_lookup(clk->clkdm_name);
204 if (clkdm) {
205 pr_debug("clock: associated clk %s to clkdm %s\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600206 clk_name, clk->clkdm_name);
Paul Walmsley333943b2008-08-19 11:08:45 +0300207 clk->clkdm = clkdm;
208 } else {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600209 pr_debug("clock: could not associate clk %s to clkdm %s\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600210 clk_name, clk->clkdm_name);
Paul Walmsley333943b2008-08-19 11:08:45 +0300211 }
212}
213
Mike Turquette32cc0022012-11-10 16:58:41 -0700214static int __initdata mpurate;
215
216/*
217 * By default we use the rate set by the bootloader.
218 * You can override this with mpurate= cmdline option.
219 */
220static int __init omap_clk_setup(char *str)
221{
222 get_option(&str, &mpurate);
223
224 if (!mpurate)
225 return 1;
226
227 if (mpurate < 1000)
228 mpurate *= 1000000;
229
230 return 1;
231}
232__setup("mpurate=", omap_clk_setup);
233
Paul Walmsley4d30e822010-02-22 22:09:36 -0700234/**
Paul Walmsley4d30e822010-02-22 22:09:36 -0700235 * omap2_clk_print_new_rates - print summary of current clock tree rates
236 * @hfclkin_ck_name: clk name for the off-chip HF oscillator
237 * @core_ck_name: clk name for the on-chip CORE_CLK
238 * @mpu_ck_name: clk name for the ARM MPU clock
239 *
240 * Prints a short message to the console with the HFCLKIN oscillator
241 * rate, the rate of the CORE clock, and the rate of the ARM MPU clock.
242 * Called by the boot-time MPU rate switching code. XXX This is intended
243 * to be handled by the OPP layer code in the near future and should be
244 * removed from the clock code. No return value.
245 */
246void __init omap2_clk_print_new_rates(const char *hfclkin_ck_name,
247 const char *core_ck_name,
248 const char *mpu_ck_name)
249{
250 struct clk *hfclkin_ck, *core_ck, *mpu_ck;
251 unsigned long hfclkin_rate;
252
253 mpu_ck = clk_get(NULL, mpu_ck_name);
254 if (WARN(IS_ERR(mpu_ck), "clock: failed to get %s.\n", mpu_ck_name))
255 return;
256
257 core_ck = clk_get(NULL, core_ck_name);
258 if (WARN(IS_ERR(core_ck), "clock: failed to get %s.\n", core_ck_name))
259 return;
260
261 hfclkin_ck = clk_get(NULL, hfclkin_ck_name);
262 if (WARN(IS_ERR(hfclkin_ck), "Failed to get %s.\n", hfclkin_ck_name))
263 return;
264
265 hfclkin_rate = clk_get_rate(hfclkin_ck);
266
Paul Walmsley7852ec02012-07-26 00:54:26 -0600267 pr_info("Switched to new clocking rate (Crystal/Core/MPU): %ld.%01ld/%ld/%ld MHz\n",
268 (hfclkin_rate / 1000000), ((hfclkin_rate / 100000) % 10),
Paul Walmsley4d30e822010-02-22 22:09:36 -0700269 (clk_get_rate(core_ck) / 1000000),
270 (clk_get_rate(mpu_ck) / 1000000));
271}
Tero Kristo8111e012014-07-02 11:47:39 +0300272
273/**
274 * ti_clk_init_features - init clock features struct for the SoC
275 *
276 * Initializes the clock features struct based on the SoC type.
277 */
278void __init ti_clk_init_features(void)
279{
Tero Kristof3b19aa2015-02-27 17:54:14 +0200280 struct ti_clk_features features = { 0 };
Tero Kristoa24886e2014-07-02 11:47:40 +0300281 /* Fint setup for DPLLs */
282 if (cpu_is_omap3430()) {
Tero Kristof3b19aa2015-02-27 17:54:14 +0200283 features.fint_min = OMAP3430_DPLL_FINT_BAND1_MIN;
284 features.fint_max = OMAP3430_DPLL_FINT_BAND2_MAX;
285 features.fint_band1_max = OMAP3430_DPLL_FINT_BAND1_MAX;
286 features.fint_band2_min = OMAP3430_DPLL_FINT_BAND2_MIN;
Tero Kristoa24886e2014-07-02 11:47:40 +0300287 } else {
Tero Kristof3b19aa2015-02-27 17:54:14 +0200288 features.fint_min = OMAP3PLUS_DPLL_FINT_MIN;
289 features.fint_max = OMAP3PLUS_DPLL_FINT_MAX;
Tero Kristoa24886e2014-07-02 11:47:40 +0300290 }
Tero Kristo512d91c2014-07-02 11:47:42 +0300291
292 /* Bypass value setup for DPLLs */
293 if (cpu_is_omap24xx()) {
Tero Kristof3b19aa2015-02-27 17:54:14 +0200294 features.dpll_bypass_vals |=
Tero Kristo512d91c2014-07-02 11:47:42 +0300295 (1 << OMAP2XXX_EN_DPLL_LPBYPASS) |
296 (1 << OMAP2XXX_EN_DPLL_FRBYPASS);
297 } else if (cpu_is_omap34xx()) {
Tero Kristof3b19aa2015-02-27 17:54:14 +0200298 features.dpll_bypass_vals |=
Tero Kristo512d91c2014-07-02 11:47:42 +0300299 (1 << OMAP3XXX_EN_DPLL_LPBYPASS) |
300 (1 << OMAP3XXX_EN_DPLL_FRBYPASS);
301 } else if (soc_is_am33xx() || cpu_is_omap44xx() || soc_is_am43xx() ||
302 soc_is_omap54xx() || soc_is_dra7xx()) {
Tero Kristof3b19aa2015-02-27 17:54:14 +0200303 features.dpll_bypass_vals |=
Tero Kristo512d91c2014-07-02 11:47:42 +0300304 (1 << OMAP4XXX_EN_DPLL_LPBYPASS) |
305 (1 << OMAP4XXX_EN_DPLL_FRBYPASS) |
306 (1 << OMAP4XXX_EN_DPLL_MNBYPASS);
307 }
Tero Kristo2337c5b2014-07-02 11:47:43 +0300308
309 /* Jitter correction only available on OMAP343X */
310 if (cpu_is_omap343x())
Tero Kristof3b19aa2015-02-27 17:54:14 +0200311 features.flags |= TI_CLK_DPLL_HAS_FREQSEL;
Tero Kristo066edb22014-07-02 11:47:44 +0300312
313 /* Idlest value for interface clocks.
314 * 24xx uses 0 to indicate not ready, and 1 to indicate ready.
315 * 34xx reverses this, just to keep us on our toes
316 * AM35xx uses both, depending on the module.
317 */
318 if (cpu_is_omap24xx())
Tero Kristof3b19aa2015-02-27 17:54:14 +0200319 features.cm_idlest_val = OMAP24XX_CM_IDLEST_VAL;
Tero Kristo066edb22014-07-02 11:47:44 +0300320 else if (cpu_is_omap34xx())
Tero Kristof3b19aa2015-02-27 17:54:14 +0200321 features.cm_idlest_val = OMAP34XX_CM_IDLEST_VAL;
Tero Kristof0d2f682014-10-03 16:57:10 +0300322
323 /* On OMAP3430 ES1.0, DPLL4 can't be re-programmed */
324 if (omap_rev() == OMAP3430_REV_ES1_0)
Tero Kristof3b19aa2015-02-27 17:54:14 +0200325 features.flags |= TI_CLK_DPLL4_DENY_REPROGRAM;
326
327 ti_clk_setup_features(&features);
Tero Kristo8111e012014-07-02 11:47:39 +0300328}