blob: 34b5c5ae4cbdba937bbb42fa4ad1c1af4b8c959c [file] [log] [blame]
Magnus Damm6d9598e2010-11-17 10:59:31 +00001/*
2 * sh73a0 clock framework support
3 *
4 * Copyright (C) 2010 Magnus Damm
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19#include <linux/init.h>
20#include <linux/kernel.h>
21#include <linux/io.h>
22#include <linux/sh_clk.h>
Paul Mundt6ef9f6f2011-01-07 11:49:49 +090023#include <linux/clkdev.h>
Guennadi Liakhovetski7653c312013-02-28 13:21:58 +010024#include <asm/processor.h>
Magnus Damm6d9598e2010-11-17 10:59:31 +000025#include <mach/common.h>
Magnus Damm6d9598e2010-11-17 10:59:31 +000026
Arnd Bergmann0a4b04d2012-09-14 20:08:08 +000027#define FRQCRA IOMEM(0xe6150000)
28#define FRQCRB IOMEM(0xe6150004)
29#define FRQCRD IOMEM(0xe61500e4)
30#define VCLKCR1 IOMEM(0xe6150008)
31#define VCLKCR2 IOMEM(0xe615000C)
32#define VCLKCR3 IOMEM(0xe615001C)
33#define ZBCKCR IOMEM(0xe6150010)
34#define FLCKCR IOMEM(0xe6150014)
35#define SD0CKCR IOMEM(0xe6150074)
36#define SD1CKCR IOMEM(0xe6150078)
37#define SD2CKCR IOMEM(0xe615007C)
38#define FSIACKCR IOMEM(0xe6150018)
39#define FSIBCKCR IOMEM(0xe6150090)
40#define SUBCKCR IOMEM(0xe6150080)
41#define SPUACKCR IOMEM(0xe6150084)
42#define SPUVCKCR IOMEM(0xe6150094)
43#define MSUCKCR IOMEM(0xe6150088)
44#define HSICKCR IOMEM(0xe615008C)
45#define MFCK1CR IOMEM(0xe6150098)
46#define MFCK2CR IOMEM(0xe615009C)
47#define DSITCKCR IOMEM(0xe6150060)
48#define DSI0PCKCR IOMEM(0xe6150064)
49#define DSI1PCKCR IOMEM(0xe6150068)
Magnus Dammf6d84f42010-12-03 07:22:31 +000050#define DSI0PHYCR 0xe615006C
51#define DSI1PHYCR 0xe6150070
Arnd Bergmann0a4b04d2012-09-14 20:08:08 +000052#define PLLECR IOMEM(0xe61500d0)
53#define PLL0CR IOMEM(0xe61500d8)
54#define PLL1CR IOMEM(0xe6150028)
55#define PLL2CR IOMEM(0xe615002c)
56#define PLL3CR IOMEM(0xe61500dc)
57#define SMSTPCR0 IOMEM(0xe6150130)
58#define SMSTPCR1 IOMEM(0xe6150134)
59#define SMSTPCR2 IOMEM(0xe6150138)
60#define SMSTPCR3 IOMEM(0xe615013c)
61#define SMSTPCR4 IOMEM(0xe6150140)
62#define SMSTPCR5 IOMEM(0xe6150144)
63#define CKSCR IOMEM(0xe61500c0)
Magnus Damm6d9598e2010-11-17 10:59:31 +000064
65/* Fixed 32 KHz root clock from EXTALR pin */
66static struct clk r_clk = {
67 .rate = 32768,
68};
69
Magnus Dammf6d84f42010-12-03 07:22:31 +000070/*
71 * 26MHz default rate for the EXTAL1 root input clock.
72 * If needed, reset this with clk_set_rate() from the platform code.
73 */
74struct clk sh73a0_extal1_clk = {
75 .rate = 26000000,
Magnus Damm6d9598e2010-11-17 10:59:31 +000076};
77
Magnus Dammf6d84f42010-12-03 07:22:31 +000078/*
79 * 48MHz default rate for the EXTAL2 root input clock.
80 * If needed, reset this with clk_set_rate() from the platform code.
81 */
82struct clk sh73a0_extal2_clk = {
83 .rate = 48000000,
84};
85
86/* A fixed divide-by-2 block */
87static unsigned long div2_recalc(struct clk *clk)
88{
89 return clk->parent->rate / 2;
90}
91
Magnus Damm7bcda502012-02-29 22:16:52 +090092static struct sh_clk_ops div2_clk_ops = {
Magnus Dammf6d84f42010-12-03 07:22:31 +000093 .recalc = div2_recalc,
94};
95
Kuninori Morimotod4775352011-12-05 22:29:15 -080096static unsigned long div7_recalc(struct clk *clk)
97{
98 return clk->parent->rate / 7;
99}
100
Magnus Damm7bcda502012-02-29 22:16:52 +0900101static struct sh_clk_ops div7_clk_ops = {
Kuninori Morimotod4775352011-12-05 22:29:15 -0800102 .recalc = div7_recalc,
103};
104
105static unsigned long div13_recalc(struct clk *clk)
106{
107 return clk->parent->rate / 13;
108}
109
Magnus Damm7bcda502012-02-29 22:16:52 +0900110static struct sh_clk_ops div13_clk_ops = {
Kuninori Morimotod4775352011-12-05 22:29:15 -0800111 .recalc = div13_recalc,
112};
113
Magnus Dammf6d84f42010-12-03 07:22:31 +0000114/* Divide extal1 by two */
115static struct clk extal1_div2_clk = {
116 .ops = &div2_clk_ops,
117 .parent = &sh73a0_extal1_clk,
118};
119
120/* Divide extal2 by two */
121static struct clk extal2_div2_clk = {
122 .ops = &div2_clk_ops,
123 .parent = &sh73a0_extal2_clk,
124};
125
Magnus Damm7bcda502012-02-29 22:16:52 +0900126static struct sh_clk_ops main_clk_ops = {
Magnus Dammf6d84f42010-12-03 07:22:31 +0000127 .recalc = followparent_recalc,
128};
129
130/* Main clock */
131static struct clk main_clk = {
132 .ops = &main_clk_ops,
133};
134
Magnus Damm33661c92011-11-22 15:44:58 +0900135/* Divide Main clock by two */
Kuninori Morimotod4775352011-12-05 22:29:15 -0800136static struct clk main_div2_clk = {
137 .ops = &div2_clk_ops,
138 .parent = &main_clk,
139};
140
Magnus Dammf6d84f42010-12-03 07:22:31 +0000141/* PLL0, PLL1, PLL2, PLL3 */
142static unsigned long pll_recalc(struct clk *clk)
143{
144 unsigned long mult = 1;
145
Magnus Damm71fc5092011-01-20 08:11:11 +0000146 if (__raw_readl(PLLECR) & (1 << clk->enable_bit)) {
Magnus Dammf6d84f42010-12-03 07:22:31 +0000147 mult = (((__raw_readl(clk->enable_reg) >> 24) & 0x3f) + 1);
Magnus Damm71fc5092011-01-20 08:11:11 +0000148 /* handle CFG bit for PLL1 and PLL2 */
149 switch (clk->enable_bit) {
150 case 1:
151 case 2:
152 if (__raw_readl(clk->enable_reg) & (1 << 20))
153 mult *= 2;
154 }
155 }
Magnus Dammf6d84f42010-12-03 07:22:31 +0000156
157 return clk->parent->rate * mult;
158}
159
Magnus Damm7bcda502012-02-29 22:16:52 +0900160static struct sh_clk_ops pll_clk_ops = {
Magnus Dammf6d84f42010-12-03 07:22:31 +0000161 .recalc = pll_recalc,
162};
163
164static struct clk pll0_clk = {
165 .ops = &pll_clk_ops,
166 .flags = CLK_ENABLE_ON_INIT,
167 .parent = &main_clk,
168 .enable_reg = (void __iomem *)PLL0CR,
169 .enable_bit = 0,
170};
171
172static struct clk pll1_clk = {
173 .ops = &pll_clk_ops,
174 .flags = CLK_ENABLE_ON_INIT,
175 .parent = &main_clk,
176 .enable_reg = (void __iomem *)PLL1CR,
177 .enable_bit = 1,
178};
179
180static struct clk pll2_clk = {
181 .ops = &pll_clk_ops,
182 .flags = CLK_ENABLE_ON_INIT,
183 .parent = &main_clk,
184 .enable_reg = (void __iomem *)PLL2CR,
185 .enable_bit = 2,
186};
187
188static struct clk pll3_clk = {
189 .ops = &pll_clk_ops,
190 .flags = CLK_ENABLE_ON_INIT,
191 .parent = &main_clk,
192 .enable_reg = (void __iomem *)PLL3CR,
193 .enable_bit = 3,
194};
195
Kuninori Morimotod4775352011-12-05 22:29:15 -0800196/* Divide PLL */
Magnus Dammf6d84f42010-12-03 07:22:31 +0000197static struct clk pll1_div2_clk = {
198 .ops = &div2_clk_ops,
199 .parent = &pll1_clk,
Yoshii Takashib028f942010-11-19 13:20:45 +0000200};
201
Kuninori Morimotod4775352011-12-05 22:29:15 -0800202static struct clk pll1_div7_clk = {
203 .ops = &div7_clk_ops,
204 .parent = &pll1_clk,
205};
206
207static struct clk pll1_div13_clk = {
208 .ops = &div13_clk_ops,
209 .parent = &pll1_clk,
210};
211
212/* External input clock */
213struct clk sh73a0_extcki_clk = {
214};
215
216struct clk sh73a0_extalr_clk = {
217};
218
Magnus Damm6d9598e2010-11-17 10:59:31 +0000219static struct clk *main_clks[] = {
220 &r_clk,
Magnus Dammf6d84f42010-12-03 07:22:31 +0000221 &sh73a0_extal1_clk,
222 &sh73a0_extal2_clk,
223 &extal1_div2_clk,
224 &extal2_div2_clk,
225 &main_clk,
Kuninori Morimotod4775352011-12-05 22:29:15 -0800226 &main_div2_clk,
Magnus Dammf6d84f42010-12-03 07:22:31 +0000227 &pll0_clk,
228 &pll1_clk,
229 &pll2_clk,
230 &pll3_clk,
231 &pll1_div2_clk,
Kuninori Morimotod4775352011-12-05 22:29:15 -0800232 &pll1_div7_clk,
233 &pll1_div13_clk,
234 &sh73a0_extcki_clk,
235 &sh73a0_extalr_clk,
Magnus Damm6d9598e2010-11-17 10:59:31 +0000236};
237
Guennadi Liakhovetski7653c312013-02-28 13:21:58 +0100238static int frqcr_kick(void)
239{
240 int i;
241
242 /* set KICK bit in FRQCRB to update hardware setting, check success */
243 __raw_writel(__raw_readl(FRQCRB) | (1 << 31), FRQCRB);
244 for (i = 1000; i; i--)
245 if (__raw_readl(FRQCRB) & (1 << 31))
246 cpu_relax();
247 else
248 return i;
249
250 return -ETIMEDOUT;
251}
252
Magnus Dammf6d84f42010-12-03 07:22:31 +0000253static void div4_kick(struct clk *clk)
254{
Guennadi Liakhovetski7653c312013-02-28 13:21:58 +0100255 frqcr_kick();
Magnus Dammf6d84f42010-12-03 07:22:31 +0000256}
257
258static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 18,
Takashi YOSHIIc070c202010-12-22 14:15:08 +0000259 24, 0, 36, 48, 7 };
Magnus Dammf6d84f42010-12-03 07:22:31 +0000260
261static struct clk_div_mult_table div4_div_mult_table = {
262 .divisors = divisors,
263 .nr_divisors = ARRAY_SIZE(divisors),
264};
265
266static struct clk_div4_table div4_table = {
267 .div_mult_table = &div4_div_mult_table,
268 .kick = div4_kick,
269};
270
271enum { DIV4_I, DIV4_ZG, DIV4_M3, DIV4_B, DIV4_M1, DIV4_M2,
272 DIV4_Z, DIV4_ZTR, DIV4_ZT, DIV4_ZX, DIV4_HP, DIV4_NR };
273
274#define DIV4(_reg, _bit, _mask, _flags) \
275 SH_CLK_DIV4(&pll1_clk, _reg, _bit, _mask, _flags)
276
277static struct clk div4_clks[DIV4_NR] = {
Kuninori Morimotobf519bfb2012-12-04 17:43:29 -0800278 [DIV4_I] = DIV4(FRQCRA, 20, 0xdff, CLK_ENABLE_ON_INIT),
Guennadi Liakhovetski8a444472013-02-22 18:17:51 +0100279 [DIV4_ZG] = SH_CLK_DIV4(&pll0_clk, FRQCRA, 16, 0xd7f, CLK_ENABLE_ON_INIT),
Kuninori Morimotobf519bfb2012-12-04 17:43:29 -0800280 [DIV4_M3] = DIV4(FRQCRA, 12, 0x1dff, CLK_ENABLE_ON_INIT),
281 [DIV4_B] = DIV4(FRQCRA, 8, 0xdff, CLK_ENABLE_ON_INIT),
282 [DIV4_M1] = DIV4(FRQCRA, 4, 0x1dff, 0),
283 [DIV4_M2] = DIV4(FRQCRA, 0, 0x1dff, 0),
Guennadi Liakhovetski8a444472013-02-22 18:17:51 +0100284 [DIV4_Z] = SH_CLK_DIV4(&pll0_clk, FRQCRB, 24, 0x97f, 0),
Kuninori Morimotobf519bfb2012-12-04 17:43:29 -0800285 [DIV4_ZTR] = DIV4(FRQCRB, 20, 0xdff, 0),
286 [DIV4_ZT] = DIV4(FRQCRB, 16, 0xdff, 0),
287 [DIV4_ZX] = DIV4(FRQCRB, 12, 0xdff, 0),
288 [DIV4_HP] = DIV4(FRQCRB, 4, 0xdff, 0),
Magnus Dammf6d84f42010-12-03 07:22:31 +0000289};
290
291enum { DIV6_VCK1, DIV6_VCK2, DIV6_VCK3, DIV6_ZB1,
292 DIV6_FLCTL, DIV6_SDHI0, DIV6_SDHI1, DIV6_SDHI2,
293 DIV6_FSIA, DIV6_FSIB, DIV6_SUB,
294 DIV6_SPUA, DIV6_SPUV, DIV6_MSU,
295 DIV6_HSI, DIV6_MFG1, DIV6_MFG2,
296 DIV6_DSIT, DIV6_DSI0P, DIV6_DSI1P,
297 DIV6_NR };
298
Kuninori Morimotod4775352011-12-05 22:29:15 -0800299static struct clk *vck_parent[8] = {
300 [0] = &pll1_div2_clk,
301 [1] = &pll2_clk,
302 [2] = &sh73a0_extcki_clk,
303 [3] = &sh73a0_extal2_clk,
304 [4] = &main_div2_clk,
305 [5] = &sh73a0_extalr_clk,
306 [6] = &main_clk,
307};
308
309static struct clk *pll_parent[4] = {
310 [0] = &pll1_div2_clk,
311 [1] = &pll2_clk,
312 [2] = &pll1_div13_clk,
313};
314
315static struct clk *hsi_parent[4] = {
316 [0] = &pll1_div2_clk,
317 [1] = &pll2_clk,
318 [2] = &pll1_div7_clk,
319};
320
321static struct clk *pll_extal2_parent[] = {
322 [0] = &pll1_div2_clk,
323 [1] = &pll2_clk,
324 [2] = &sh73a0_extal2_clk,
325 [3] = &sh73a0_extal2_clk,
326};
327
328static struct clk *dsi_parent[8] = {
329 [0] = &pll1_div2_clk,
330 [1] = &pll2_clk,
331 [2] = &main_clk,
332 [3] = &sh73a0_extal2_clk,
333 [4] = &sh73a0_extcki_clk,
334};
335
Magnus Dammf6d84f42010-12-03 07:22:31 +0000336static struct clk div6_clks[DIV6_NR] = {
Kuninori Morimotod4775352011-12-05 22:29:15 -0800337 [DIV6_VCK1] = SH_CLK_DIV6_EXT(VCLKCR1, 0,
338 vck_parent, ARRAY_SIZE(vck_parent), 12, 3),
339 [DIV6_VCK2] = SH_CLK_DIV6_EXT(VCLKCR2, 0,
340 vck_parent, ARRAY_SIZE(vck_parent), 12, 3),
341 [DIV6_VCK3] = SH_CLK_DIV6_EXT(VCLKCR3, 0,
342 vck_parent, ARRAY_SIZE(vck_parent), 12, 3),
Paul Mundtca371d22012-01-09 11:12:55 +0900343 [DIV6_ZB1] = SH_CLK_DIV6_EXT(ZBCKCR, CLK_ENABLE_ON_INIT,
Kuninori Morimotod4775352011-12-05 22:29:15 -0800344 pll_parent, ARRAY_SIZE(pll_parent), 7, 1),
345 [DIV6_FLCTL] = SH_CLK_DIV6_EXT(FLCKCR, 0,
346 pll_parent, ARRAY_SIZE(pll_parent), 7, 1),
347 [DIV6_SDHI0] = SH_CLK_DIV6_EXT(SD0CKCR, 0,
348 pll_parent, ARRAY_SIZE(pll_parent), 6, 2),
349 [DIV6_SDHI1] = SH_CLK_DIV6_EXT(SD1CKCR, 0,
350 pll_parent, ARRAY_SIZE(pll_parent), 6, 2),
351 [DIV6_SDHI2] = SH_CLK_DIV6_EXT(SD2CKCR, 0,
352 pll_parent, ARRAY_SIZE(pll_parent), 6, 2),
353 [DIV6_FSIA] = SH_CLK_DIV6_EXT(FSIACKCR, 0,
354 pll_parent, ARRAY_SIZE(pll_parent), 6, 1),
355 [DIV6_FSIB] = SH_CLK_DIV6_EXT(FSIBCKCR, 0,
356 pll_parent, ARRAY_SIZE(pll_parent), 6, 1),
357 [DIV6_SUB] = SH_CLK_DIV6_EXT(SUBCKCR, 0,
358 pll_extal2_parent, ARRAY_SIZE(pll_extal2_parent), 6, 2),
359 [DIV6_SPUA] = SH_CLK_DIV6_EXT(SPUACKCR, 0,
360 pll_extal2_parent, ARRAY_SIZE(pll_extal2_parent), 6, 2),
361 [DIV6_SPUV] = SH_CLK_DIV6_EXT(SPUVCKCR, 0,
362 pll_extal2_parent, ARRAY_SIZE(pll_extal2_parent), 6, 2),
363 [DIV6_MSU] = SH_CLK_DIV6_EXT(MSUCKCR, 0,
364 pll_parent, ARRAY_SIZE(pll_parent), 7, 1),
365 [DIV6_HSI] = SH_CLK_DIV6_EXT(HSICKCR, 0,
366 hsi_parent, ARRAY_SIZE(hsi_parent), 6, 2),
367 [DIV6_MFG1] = SH_CLK_DIV6_EXT(MFCK1CR, 0,
368 pll_parent, ARRAY_SIZE(pll_parent), 7, 1),
369 [DIV6_MFG2] = SH_CLK_DIV6_EXT(MFCK2CR, 0,
370 pll_parent, ARRAY_SIZE(pll_parent), 7, 1),
371 [DIV6_DSIT] = SH_CLK_DIV6_EXT(DSITCKCR, 0,
372 pll_parent, ARRAY_SIZE(pll_parent), 7, 1),
373 [DIV6_DSI0P] = SH_CLK_DIV6_EXT(DSI0PCKCR, 0,
374 dsi_parent, ARRAY_SIZE(dsi_parent), 12, 3),
375 [DIV6_DSI1P] = SH_CLK_DIV6_EXT(DSI1PCKCR, 0,
376 dsi_parent, ARRAY_SIZE(dsi_parent), 12, 3),
Magnus Dammf6d84f42010-12-03 07:22:31 +0000377};
378
Kuninori Morimotof5948ba2012-01-22 21:10:02 -0800379/* DSI DIV */
380static unsigned long dsiphy_recalc(struct clk *clk)
381{
382 u32 value;
383
384 value = __raw_readl(clk->mapping->base);
385
386 /* FIXME */
387 if (!(value & 0x000B8000))
388 return clk->parent->rate;
389
390 value &= 0x3f;
391 value += 1;
392
393 if ((value < 12) ||
394 (value > 33)) {
395 pr_err("DSIPHY has wrong value (%d)", value);
396 return 0;
397 }
398
399 return clk->parent->rate / value;
400}
401
402static long dsiphy_round_rate(struct clk *clk, unsigned long rate)
403{
404 return clk_rate_mult_range_round(clk, 12, 33, rate);
405}
406
407static void dsiphy_disable(struct clk *clk)
408{
409 u32 value;
410
411 value = __raw_readl(clk->mapping->base);
412 value &= ~0x000B8000;
413
414 __raw_writel(value , clk->mapping->base);
415}
416
417static int dsiphy_enable(struct clk *clk)
418{
419 u32 value;
420 int multi;
421
422 value = __raw_readl(clk->mapping->base);
423 multi = (value & 0x3f) + 1;
424
425 if ((multi < 12) || (multi > 33))
426 return -EIO;
427
428 __raw_writel(value | 0x000B8000, clk->mapping->base);
429
430 return 0;
431}
432
433static int dsiphy_set_rate(struct clk *clk, unsigned long rate)
434{
435 u32 value;
436 int idx;
437
438 idx = rate / clk->parent->rate;
439 if ((idx < 12) || (idx > 33))
440 return -EINVAL;
441
442 idx += -1;
443
444 value = __raw_readl(clk->mapping->base);
445 value = (value & ~0x3f) + idx;
446
447 __raw_writel(value, clk->mapping->base);
448
449 return 0;
450}
451
Magnus Damm7bcda502012-02-29 22:16:52 +0900452static struct sh_clk_ops dsiphy_clk_ops = {
Kuninori Morimotof5948ba2012-01-22 21:10:02 -0800453 .recalc = dsiphy_recalc,
454 .round_rate = dsiphy_round_rate,
455 .set_rate = dsiphy_set_rate,
456 .enable = dsiphy_enable,
457 .disable = dsiphy_disable,
458};
459
460static struct clk_mapping dsi0phy_clk_mapping = {
461 .phys = DSI0PHYCR,
462 .len = 4,
463};
464
465static struct clk_mapping dsi1phy_clk_mapping = {
466 .phys = DSI1PHYCR,
467 .len = 4,
468};
469
470static struct clk dsi0phy_clk = {
471 .ops = &dsiphy_clk_ops,
472 .parent = &div6_clks[DIV6_DSI0P], /* late install */
473 .mapping = &dsi0phy_clk_mapping,
474};
475
476static struct clk dsi1phy_clk = {
477 .ops = &dsiphy_clk_ops,
478 .parent = &div6_clks[DIV6_DSI1P], /* late install */
479 .mapping = &dsi1phy_clk_mapping,
480};
481
482static struct clk *late_main_clks[] = {
483 &dsi0phy_clk,
484 &dsi1phy_clk,
485};
486
Magnus Dammf6d84f42010-12-03 07:22:31 +0000487enum { MSTP001,
Magnus Dammad054cb2011-01-28 10:04:25 +0000488 MSTP129, MSTP128, MSTP127, MSTP126, MSTP125, MSTP118, MSTP116, MSTP100,
Kuninori Morimoto832290b2012-06-25 03:39:20 -0700489 MSTP219, MSTP218, MSTP217,
Magnus Dammf6d84f42010-12-03 07:22:31 +0000490 MSTP207, MSTP206, MSTP204, MSTP203, MSTP202, MSTP201, MSTP200,
Kuninori Morimoto12a7cfe2012-06-25 03:34:49 -0700491 MSTP331, MSTP329, MSTP328, MSTP325, MSTP323, MSTP322,
Magnus Damm681e1b32011-05-24 10:37:16 +0000492 MSTP314, MSTP313, MSTP312, MSTP311,
Magnus Damm33661c92011-11-22 15:44:58 +0900493 MSTP303, MSTP302, MSTP301, MSTP300,
Kuninori Morimoto696d6e12010-11-24 07:41:14 +0000494 MSTP411, MSTP410, MSTP403,
Magnus Damm6d9598e2010-11-17 10:59:31 +0000495 MSTP_NR };
496
497#define MSTP(_parent, _reg, _bit, _flags) \
498 SH_CLK_MSTP32(_parent, _reg, _bit, _flags)
499
500static struct clk mstp_clks[MSTP_NR] = {
Magnus Dammf6d84f42010-12-03 07:22:31 +0000501 [MSTP001] = MSTP(&div4_clks[DIV4_HP], SMSTPCR0, 1, 0), /* IIC2 */
Magnus Dammad054cb2011-01-28 10:04:25 +0000502 [MSTP129] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 29, 0), /* CEU1 */
503 [MSTP128] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 28, 0), /* CSI2-RX1 */
504 [MSTP127] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 27, 0), /* CEU0 */
505 [MSTP126] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 26, 0), /* CSI2-RX0 */
Magnus Damm5010f3d2010-12-21 08:40:59 +0000506 [MSTP125] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR1, 25, 0), /* TMU0 */
Magnus Damm170c7ab2011-01-20 08:41:03 +0000507 [MSTP118] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 18, 0), /* DSITX0 */
Magnus Dammf6d84f42010-12-03 07:22:31 +0000508 [MSTP116] = MSTP(&div4_clks[DIV4_HP], SMSTPCR1, 16, 0), /* IIC0 */
Magnus Damm170c7ab2011-01-20 08:41:03 +0000509 [MSTP100] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 0, 0), /* LCDC0 */
Magnus Dammf6d84f42010-12-03 07:22:31 +0000510 [MSTP219] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 19, 0), /* SCIFA7 */
Kuninori Morimoto32103c72012-06-20 11:30:25 +0200511 [MSTP218] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 18, 0), /* SY-DMAC */
Kuninori Morimoto832290b2012-06-25 03:39:20 -0700512 [MSTP217] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 17, 0), /* MP-DMAC */
Magnus Dammf6d84f42010-12-03 07:22:31 +0000513 [MSTP207] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 7, 0), /* SCIFA5 */
514 [MSTP206] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 6, 0), /* SCIFB */
515 [MSTP204] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 4, 0), /* SCIFA0 */
516 [MSTP203] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 3, 0), /* SCIFA1 */
517 [MSTP202] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 2, 0), /* SCIFA2 */
518 [MSTP201] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 1, 0), /* SCIFA3 */
519 [MSTP200] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 0, 0), /* SCIFA4 */
520 [MSTP331] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR3, 31, 0), /* SCIFA6 */
Magnus Damm6d9598e2010-11-17 10:59:31 +0000521 [MSTP329] = MSTP(&r_clk, SMSTPCR3, 29, 0), /* CMT10 */
Kuninori Morimotoea7e1a52012-06-12 02:43:40 -0700522 [MSTP328] = MSTP(&div4_clks[DIV4_HP], SMSTPCR3, 28, 0), /*FSI*/
Magnus Damm5a1b70a2011-01-18 08:48:17 +0000523 [MSTP325] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR3, 25, 0), /* IrDA */
Magnus Dammf6d84f42010-12-03 07:22:31 +0000524 [MSTP323] = MSTP(&div4_clks[DIV4_HP], SMSTPCR3, 23, 0), /* IIC1 */
Kuninori Morimoto12a7cfe2012-06-25 03:34:49 -0700525 [MSTP322] = MSTP(&div4_clks[DIV4_HP], SMSTPCR3, 22, 0), /* USB */
Magnus Dammfb66c522011-05-23 05:10:36 +0000526 [MSTP314] = MSTP(&div6_clks[DIV6_SDHI0], SMSTPCR3, 14, 0), /* SDHI0 */
527 [MSTP313] = MSTP(&div6_clks[DIV6_SDHI1], SMSTPCR3, 13, 0), /* SDHI1 */
Takashi YOSHII6bf45a12010-12-22 06:35:30 +0000528 [MSTP312] = MSTP(&div4_clks[DIV4_HP], SMSTPCR3, 12, 0), /* MMCIF0 */
Magnus Dammfb66c522011-05-23 05:10:36 +0000529 [MSTP311] = MSTP(&div6_clks[DIV6_SDHI2], SMSTPCR3, 11, 0), /* SDHI2 */
Magnus Damm33661c92011-11-22 15:44:58 +0900530 [MSTP303] = MSTP(&main_div2_clk, SMSTPCR3, 3, 0), /* TPU1 */
531 [MSTP302] = MSTP(&main_div2_clk, SMSTPCR3, 2, 0), /* TPU2 */
532 [MSTP301] = MSTP(&main_div2_clk, SMSTPCR3, 1, 0), /* TPU3 */
533 [MSTP300] = MSTP(&main_div2_clk, SMSTPCR3, 0, 0), /* TPU4 */
Magnus Dammf6d84f42010-12-03 07:22:31 +0000534 [MSTP411] = MSTP(&div4_clks[DIV4_HP], SMSTPCR4, 11, 0), /* IIC3 */
535 [MSTP410] = MSTP(&div4_clks[DIV4_HP], SMSTPCR4, 10, 0), /* IIC4 */
Magnus Damm019c4ae2010-12-22 06:14:05 +0000536 [MSTP403] = MSTP(&r_clk, SMSTPCR4, 3, 0), /* KEYSC */
Magnus Damm6d9598e2010-11-17 10:59:31 +0000537};
538
Simon Horman48609532012-11-21 22:00:15 +0900539/* The lookups structure below includes duplicate entries for some clocks
540 * with alternate names.
541 * - The traditional name used when a device is initialised with platform data
542 * - The name used when a device is initialised using device tree
543 * The longer-term aim is to remove these duplicates, and indeed the
544 * lookups table entirely, by describing clocks using device tree.
545 */
Magnus Damm6d9598e2010-11-17 10:59:31 +0000546static struct clk_lookup lookups[] = {
Magnus Dammf6d84f42010-12-03 07:22:31 +0000547 /* main clocks */
548 CLKDEV_CON_ID("r_clk", &r_clk),
549
Magnus Damm170c7ab2011-01-20 08:41:03 +0000550 /* DIV6 clocks */
Magnus Dammad054cb2011-01-28 10:04:25 +0000551 CLKDEV_CON_ID("vck1_clk", &div6_clks[DIV6_VCK1]),
552 CLKDEV_CON_ID("vck2_clk", &div6_clks[DIV6_VCK2]),
553 CLKDEV_CON_ID("vck3_clk", &div6_clks[DIV6_VCK3]),
Magnus Dammfb66c522011-05-23 05:10:36 +0000554 CLKDEV_CON_ID("sdhi0_clk", &div6_clks[DIV6_SDHI0]),
555 CLKDEV_CON_ID("sdhi1_clk", &div6_clks[DIV6_SDHI1]),
556 CLKDEV_CON_ID("sdhi2_clk", &div6_clks[DIV6_SDHI2]),
Magnus Damm170c7ab2011-01-20 08:41:03 +0000557 CLKDEV_ICK_ID("dsit_clk", "sh-mipi-dsi.0", &div6_clks[DIV6_DSIT]),
558 CLKDEV_ICK_ID("dsit_clk", "sh-mipi-dsi.1", &div6_clks[DIV6_DSIT]),
Kuninori Morimoto92507412011-11-08 20:33:47 -0800559 CLKDEV_ICK_ID("dsip_clk", "sh-mipi-dsi.0", &div6_clks[DIV6_DSI0P]),
560 CLKDEV_ICK_ID("dsip_clk", "sh-mipi-dsi.1", &div6_clks[DIV6_DSI1P]),
Kuninori Morimotof5948ba2012-01-22 21:10:02 -0800561 CLKDEV_ICK_ID("dsiphy_clk", "sh-mipi-dsi.0", &dsi0phy_clk),
562 CLKDEV_ICK_ID("dsiphy_clk", "sh-mipi-dsi.1", &dsi1phy_clk),
Magnus Damm170c7ab2011-01-20 08:41:03 +0000563
Magnus Damm6d9598e2010-11-17 10:59:31 +0000564 /* MSTP32 clocks */
Kuninori Morimoto696d6e12010-11-24 07:41:14 +0000565 CLKDEV_DEV_ID("i2c-sh_mobile.2", &mstp_clks[MSTP001]), /* I2C2 */
Simon Horman48609532012-11-21 22:00:15 +0900566 CLKDEV_DEV_ID("e6824000.i2c", &mstp_clks[MSTP001]), /* I2C2 */
Magnus Dammad054cb2011-01-28 10:04:25 +0000567 CLKDEV_DEV_ID("sh_mobile_ceu.1", &mstp_clks[MSTP129]), /* CEU1 */
568 CLKDEV_DEV_ID("sh-mobile-csi2.1", &mstp_clks[MSTP128]), /* CSI2-RX1 */
569 CLKDEV_DEV_ID("sh_mobile_ceu.0", &mstp_clks[MSTP127]), /* CEU0 */
570 CLKDEV_DEV_ID("sh-mobile-csi2.0", &mstp_clks[MSTP126]), /* CSI2-RX0 */
Magnus Damm5010f3d2010-12-21 08:40:59 +0000571 CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP125]), /* TMU00 */
572 CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP125]), /* TMU01 */
Magnus Damm170c7ab2011-01-20 08:41:03 +0000573 CLKDEV_DEV_ID("sh-mipi-dsi.0", &mstp_clks[MSTP118]), /* DSITX */
Magnus Dammad054cb2011-01-28 10:04:25 +0000574 CLKDEV_DEV_ID("i2c-sh_mobile.0", &mstp_clks[MSTP116]), /* I2C0 */
Simon Horman48609532012-11-21 22:00:15 +0900575 CLKDEV_DEV_ID("e6820000.i2c", &mstp_clks[MSTP116]), /* I2C0 */
Magnus Dammad054cb2011-01-28 10:04:25 +0000576 CLKDEV_DEV_ID("sh_mobile_lcdc_fb.0", &mstp_clks[MSTP100]), /* LCDC0 */
Magnus Damm6d9598e2010-11-17 10:59:31 +0000577 CLKDEV_DEV_ID("sh-sci.7", &mstp_clks[MSTP219]), /* SCIFA7 */
Kuninori Morimoto32103c72012-06-20 11:30:25 +0200578 CLKDEV_DEV_ID("sh-dma-engine.0", &mstp_clks[MSTP218]), /* SY-DMAC */
Kuninori Morimoto832290b2012-06-25 03:39:20 -0700579 CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[MSTP217]), /* MP-DMAC */
Magnus Damm6d9598e2010-11-17 10:59:31 +0000580 CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP207]), /* SCIFA5 */
581 CLKDEV_DEV_ID("sh-sci.8", &mstp_clks[MSTP206]), /* SCIFB */
582 CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]), /* SCIFA0 */
583 CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP203]), /* SCIFA1 */
584 CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP202]), /* SCIFA2 */
585 CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP201]), /* SCIFA3 */
586 CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP200]), /* SCIFA4 */
587 CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP331]), /* SCIFA6 */
588 CLKDEV_DEV_ID("sh_cmt.10", &mstp_clks[MSTP329]), /* CMT10 */
Kuninori Morimotoea7e1a52012-06-12 02:43:40 -0700589 CLKDEV_DEV_ID("sh_fsi2", &mstp_clks[MSTP328]), /* FSI */
Kuninori Morimotoa33bb8a2011-01-14 11:00:41 +0000590 CLKDEV_DEV_ID("sh_irda.0", &mstp_clks[MSTP325]), /* IrDA */
Yoshii Takashib028f942010-11-19 13:20:45 +0000591 CLKDEV_DEV_ID("i2c-sh_mobile.1", &mstp_clks[MSTP323]), /* I2C1 */
Simon Horman48609532012-11-21 22:00:15 +0900592 CLKDEV_DEV_ID("e6822000.i2c", &mstp_clks[MSTP323]), /* I2C1 */
Kuninori Morimoto12a7cfe2012-06-25 03:34:49 -0700593 CLKDEV_DEV_ID("renesas_usbhs", &mstp_clks[MSTP322]), /* USB */
Magnus Dammfb66c522011-05-23 05:10:36 +0000594 CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP314]), /* SDHI0 */
Guennadi Liakhovetskidf2ddd72013-02-08 19:38:25 +0100595 CLKDEV_DEV_ID("ee100000.sdhi", &mstp_clks[MSTP314]), /* SDHI0 */
Magnus Dammfb66c522011-05-23 05:10:36 +0000596 CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP313]), /* SDHI1 */
Guennadi Liakhovetskidf2ddd72013-02-08 19:38:25 +0100597 CLKDEV_DEV_ID("ee120000.sdhi", &mstp_clks[MSTP313]), /* SDHI1 */
Takashi YOSHII6bf45a12010-12-22 06:35:30 +0000598 CLKDEV_DEV_ID("sh_mmcif.0", &mstp_clks[MSTP312]), /* MMCIF0 */
Simon Horman93301f52012-11-26 18:26:17 +0900599 CLKDEV_DEV_ID("e6bd0000.mmcif", &mstp_clks[MSTP312]), /* MMCIF0 */
Magnus Dammfb66c522011-05-23 05:10:36 +0000600 CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP311]), /* SDHI2 */
Guennadi Liakhovetskidf2ddd72013-02-08 19:38:25 +0100601 CLKDEV_DEV_ID("ee140000.sdhi", &mstp_clks[MSTP311]), /* SDHI2 */
Magnus Damm33661c92011-11-22 15:44:58 +0900602 CLKDEV_DEV_ID("leds-renesas-tpu.12", &mstp_clks[MSTP303]), /* TPU1 */
603 CLKDEV_DEV_ID("leds-renesas-tpu.21", &mstp_clks[MSTP302]), /* TPU2 */
604 CLKDEV_DEV_ID("leds-renesas-tpu.30", &mstp_clks[MSTP301]), /* TPU3 */
605 CLKDEV_DEV_ID("leds-renesas-tpu.41", &mstp_clks[MSTP300]), /* TPU4 */
Yoshii Takashib028f942010-11-19 13:20:45 +0000606 CLKDEV_DEV_ID("i2c-sh_mobile.3", &mstp_clks[MSTP411]), /* I2C3 */
Simon Horman48609532012-11-21 22:00:15 +0900607 CLKDEV_DEV_ID("e6826000.i2c", &mstp_clks[MSTP411]), /* I2C3 */
Yoshii Takashib028f942010-11-19 13:20:45 +0000608 CLKDEV_DEV_ID("i2c-sh_mobile.4", &mstp_clks[MSTP410]), /* I2C4 */
Simon Horman48609532012-11-21 22:00:15 +0900609 CLKDEV_DEV_ID("e6828000.i2c", &mstp_clks[MSTP410]), /* I2C4 */
Magnus Damm019c4ae2010-12-22 06:14:05 +0000610 CLKDEV_DEV_ID("sh_keysc.0", &mstp_clks[MSTP403]), /* KEYSC */
Magnus Damm6d9598e2010-11-17 10:59:31 +0000611};
612
613void __init sh73a0_clock_init(void)
614{
615 int k, ret = 0;
616
Magnus Dammfb66c522011-05-23 05:10:36 +0000617 /* Set SDHI clocks to a known state */
618 __raw_writel(0x108, SD0CKCR);
619 __raw_writel(0x108, SD1CKCR);
620 __raw_writel(0x108, SD2CKCR);
621
Magnus Dammf6d84f42010-12-03 07:22:31 +0000622 /* detect main clock parent */
Kuninori Morimoto86d84082011-08-26 07:27:45 +0000623 switch ((__raw_readl(CKSCR) >> 28) & 0x03) {
Magnus Dammf6d84f42010-12-03 07:22:31 +0000624 case 0:
625 main_clk.parent = &sh73a0_extal1_clk;
626 break;
627 case 1:
628 main_clk.parent = &extal1_div2_clk;
629 break;
630 case 2:
631 main_clk.parent = &sh73a0_extal2_clk;
632 break;
633 case 3:
634 main_clk.parent = &extal2_div2_clk;
635 break;
636 }
637
Magnus Damm6d9598e2010-11-17 10:59:31 +0000638 for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
639 ret = clk_register(main_clks[k]);
640
641 if (!ret)
Magnus Dammf6d84f42010-12-03 07:22:31 +0000642 ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
643
644 if (!ret)
Kuninori Morimotod4775352011-12-05 22:29:15 -0800645 ret = sh_clk_div6_reparent_register(div6_clks, DIV6_NR);
Magnus Dammf6d84f42010-12-03 07:22:31 +0000646
647 if (!ret)
Nobuhiro Iwamatsu64e9de22012-06-27 09:59:00 +0900648 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
Magnus Damm6d9598e2010-11-17 10:59:31 +0000649
Kuninori Morimotof5948ba2012-01-22 21:10:02 -0800650 for (k = 0; !ret && (k < ARRAY_SIZE(late_main_clks)); k++)
651 ret = clk_register(late_main_clks[k]);
652
Magnus Damm6d9598e2010-11-17 10:59:31 +0000653 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
654
655 if (!ret)
Magnus Damm6b6a4c02012-02-29 21:41:30 +0900656 shmobile_clk_init();
Magnus Damm6d9598e2010-11-17 10:59:31 +0000657 else
658 panic("failed to setup sh73a0 clocks\n");
659}