blob: d9edeaf6600706a875cf5cf156010059dcf4eb49 [file] [log] [blame]
Magnus Dammf411fad2011-12-14 01:36:12 +09001/*
2 * r8a7779 clock framework support
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Copyright (C) 2011 Magnus Damm
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#include <linux/init.h>
21#include <linux/kernel.h>
22#include <linux/io.h>
23#include <linux/sh_clk.h>
24#include <linux/clkdev.h>
25#include <mach/common.h>
26
Kuninori Morimoto11f93572012-10-15 01:10:28 -070027#define FRQMR IOMEM(0xffc80014)
28#define MSTPCR0 IOMEM(0xffc80030)
29#define MSTPCR1 IOMEM(0xffc80034)
30#define MSTPCR3 IOMEM(0xffc8003c)
31#define MSTPSR1 IOMEM(0xffc80044)
32#define MSTPSR4 IOMEM(0xffc80048)
33#define MSTPSR6 IOMEM(0xffc8004c)
34#define MSTPCR4 IOMEM(0xffc80050)
35#define MSTPCR5 IOMEM(0xffc80054)
36#define MSTPCR6 IOMEM(0xffc80058)
37#define MSTPCR7 IOMEM(0xffc80040)
Magnus Dammf411fad2011-12-14 01:36:12 +090038
39/* ioremap() through clock mapping mandatory to avoid
40 * collision with ARM coherent DMA virtual memory range.
41 */
42
43static struct clk_mapping cpg_mapping = {
44 .phys = 0xffc80000,
45 .len = 0x80,
46};
47
Kuninori Morimotob5813c72011-12-20 00:52:06 -080048/*
49 * Default rate for the root input clock, reset this with clk_set_rate()
50 * from the platform code.
51 */
52static struct clk plla_clk = {
53 .rate = 1500000000,
54 .mapping = &cpg_mapping,
Magnus Dammf411fad2011-12-14 01:36:12 +090055};
56
57static struct clk *main_clks[] = {
Kuninori Morimotob5813c72011-12-20 00:52:06 -080058 &plla_clk,
59};
60
61static int divisors[] = { 0, 0, 0, 6, 8, 12, 16, 0, 24, 32, 36, 0, 0, 0, 0, 0 };
62
63static struct clk_div_mult_table div4_div_mult_table = {
64 .divisors = divisors,
65 .nr_divisors = ARRAY_SIZE(divisors),
66};
67
68static struct clk_div4_table div4_table = {
69 .div_mult_table = &div4_div_mult_table,
70};
71
72enum { DIV4_S, DIV4_OUT, DIV4_S4, DIV4_S3, DIV4_S1, DIV4_P, DIV4_NR };
73
74static struct clk div4_clks[DIV4_NR] = {
75 [DIV4_S] = SH_CLK_DIV4(&plla_clk, FRQMR, 20,
76 0x0018, CLK_ENABLE_ON_INIT),
77 [DIV4_OUT] = SH_CLK_DIV4(&plla_clk, FRQMR, 16,
78 0x0700, CLK_ENABLE_ON_INIT),
79 [DIV4_S4] = SH_CLK_DIV4(&plla_clk, FRQMR, 12,
80 0x0040, CLK_ENABLE_ON_INIT),
81 [DIV4_S3] = SH_CLK_DIV4(&plla_clk, FRQMR, 8,
82 0x0010, CLK_ENABLE_ON_INIT),
83 [DIV4_S1] = SH_CLK_DIV4(&plla_clk, FRQMR, 4,
84 0x0060, CLK_ENABLE_ON_INIT),
85 [DIV4_P] = SH_CLK_DIV4(&plla_clk, FRQMR, 0,
86 0x0300, CLK_ENABLE_ON_INIT),
Magnus Dammf411fad2011-12-14 01:36:12 +090087};
88
Phil Edworthy263510e2012-08-06 13:31:04 +010089enum { MSTP323, MSTP322, MSTP321, MSTP320,
Vladimir Barinova7b98372013-02-27 23:39:14 +030090 MSTP115,
Phil Edworthyd75bc782013-01-31 02:45:01 +010091 MSTP103, MSTP101, MSTP100,
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -070092 MSTP030,
93 MSTP029, MSTP028, MSTP027, MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
Magnus Dammf411fad2011-12-14 01:36:12 +090094 MSTP016, MSTP015, MSTP014,
Kuninori Morimotof92246e2012-10-10 19:56:33 -070095 MSTP007,
Magnus Dammf411fad2011-12-14 01:36:12 +090096 MSTP_NR };
97
Magnus Dammf411fad2011-12-14 01:36:12 +090098static struct clk mstp_clks[MSTP_NR] = {
Phil Edworthy263510e2012-08-06 13:31:04 +010099 [MSTP323] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 23, 0), /* SDHI0 */
100 [MSTP322] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 22, 0), /* SDHI1 */
101 [MSTP321] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 21, 0), /* SDHI2 */
102 [MSTP320] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 20, 0), /* SDHI3 */
Vladimir Barinova7b98372013-02-27 23:39:14 +0300103 [MSTP115] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 15, 0), /* SATA */
Phil Edworthyd75bc782013-01-31 02:45:01 +0100104 [MSTP103] = SH_CLK_MSTP32(&div4_clks[DIV4_S], MSTPCR1, 3, 0), /* DU */
Kuninori Morimoto88419542012-10-29 01:15:00 -0700105 [MSTP101] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 1, 0), /* USB2 */
106 [MSTP100] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR1, 0, 0), /* USB0/1 */
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700107 [MSTP030] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 30, 0), /* I2C0 */
108 [MSTP029] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 29, 0), /* I2C1 */
109 [MSTP028] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 28, 0), /* I2C2 */
110 [MSTP027] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 27, 0), /* I2C3 */
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800111 [MSTP026] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 26, 0), /* SCIF0 */
112 [MSTP025] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 25, 0), /* SCIF1 */
113 [MSTP024] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 24, 0), /* SCIF2 */
114 [MSTP023] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 23, 0), /* SCIF3 */
115 [MSTP022] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 22, 0), /* SCIF4 */
116 [MSTP021] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 21, 0), /* SCIF5 */
117 [MSTP016] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 16, 0), /* TMU0 */
118 [MSTP015] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 15, 0), /* TMU1 */
119 [MSTP014] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 14, 0), /* TMU2 */
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700120 [MSTP007] = SH_CLK_MSTP32(&div4_clks[DIV4_S], MSTPCR0, 7, 0), /* HSPI */
Magnus Dammf411fad2011-12-14 01:36:12 +0900121};
122
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800123static unsigned long mul4_recalc(struct clk *clk)
124{
125 return clk->parent->rate * 4;
126}
127
Magnus Dammae8d1942012-02-29 22:17:08 +0900128static struct sh_clk_ops mul4_clk_ops = {
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800129 .recalc = mul4_recalc,
130};
131
132struct clk clkz_clk = {
133 .ops = &mul4_clk_ops,
134 .parent = &div4_clks[DIV4_S],
135};
136
137struct clk clkzs_clk = {
138 /* clks x 4 / 4 = clks */
139 .parent = &div4_clks[DIV4_S],
140};
141
142static struct clk *late_main_clks[] = {
143 &clkz_clk,
144 &clkzs_clk,
145};
146
Magnus Dammf411fad2011-12-14 01:36:12 +0900147static struct clk_lookup lookups[] = {
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800148 /* main clocks */
149 CLKDEV_CON_ID("plla_clk", &plla_clk),
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800150 CLKDEV_CON_ID("clkz_clk", &clkz_clk),
151 CLKDEV_CON_ID("clkzs_clk", &clkzs_clk),
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800152
153 /* DIV4 clocks */
154 CLKDEV_CON_ID("shyway_clk", &div4_clks[DIV4_S]),
155 CLKDEV_CON_ID("bus_clk", &div4_clks[DIV4_OUT]),
156 CLKDEV_CON_ID("shyway4_clk", &div4_clks[DIV4_S4]),
157 CLKDEV_CON_ID("shyway3_clk", &div4_clks[DIV4_S3]),
158 CLKDEV_CON_ID("shyway1_clk", &div4_clks[DIV4_S1]),
159 CLKDEV_CON_ID("peripheral_clk", &div4_clks[DIV4_P]),
160
Magnus Dammf411fad2011-12-14 01:36:12 +0900161 /* MSTP32 clocks */
Vladimir Barinova7b98372013-02-27 23:39:14 +0300162 CLKDEV_DEV_ID("sata_rcar", &mstp_clks[MSTP115]), /* SATA */
163 CLKDEV_DEV_ID("fc600000.sata", &mstp_clks[MSTP115]), /* SATA w/DT */
Kuninori Morimoto88419542012-10-29 01:15:00 -0700164 CLKDEV_DEV_ID("ehci-platform.1", &mstp_clks[MSTP101]), /* USB EHCI port2 */
Kuninori Morimoto9d69f5b2012-10-29 01:15:11 -0700165 CLKDEV_DEV_ID("ohci-platform.1", &mstp_clks[MSTP101]), /* USB OHCI port2 */
Kuninori Morimoto88419542012-10-29 01:15:00 -0700166 CLKDEV_DEV_ID("ehci-platform.0", &mstp_clks[MSTP100]), /* USB EHCI port0/1 */
Kuninori Morimoto9d69f5b2012-10-29 01:15:11 -0700167 CLKDEV_DEV_ID("ohci-platform.0", &mstp_clks[MSTP100]), /* USB OHCI port0/1 */
Magnus Dammf411fad2011-12-14 01:36:12 +0900168 CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP016]), /* TMU00 */
Simon Hormanf9047302013-02-15 22:32:02 +0900169 CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP016]), /* TMU01 */
170 CLKDEV_DEV_ID("sh_tmu.2", &mstp_clks[MSTP016]), /* TMU02 */
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700171 CLKDEV_DEV_ID("i2c-rcar.0", &mstp_clks[MSTP030]), /* I2C0 */
172 CLKDEV_DEV_ID("i2c-rcar.1", &mstp_clks[MSTP029]), /* I2C1 */
173 CLKDEV_DEV_ID("i2c-rcar.2", &mstp_clks[MSTP028]), /* I2C2 */
174 CLKDEV_DEV_ID("i2c-rcar.3", &mstp_clks[MSTP027]), /* I2C3 */
Magnus Dammf411fad2011-12-14 01:36:12 +0900175 CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP026]), /* SCIF0 */
176 CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP025]), /* SCIF1 */
177 CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP024]), /* SCIF2 */
178 CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP023]), /* SCIF3 */
179 CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP022]), /* SCIF4 */
180 CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP021]), /* SCIF6 */
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700181 CLKDEV_DEV_ID("sh-hspi.0", &mstp_clks[MSTP007]), /* HSPI0 */
182 CLKDEV_DEV_ID("sh-hspi.1", &mstp_clks[MSTP007]), /* HSPI1 */
183 CLKDEV_DEV_ID("sh-hspi.2", &mstp_clks[MSTP007]), /* HSPI2 */
Phil Edworthy263510e2012-08-06 13:31:04 +0100184 CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP323]), /* SDHI0 */
185 CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP322]), /* SDHI1 */
186 CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP321]), /* SDHI2 */
187 CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP320]), /* SDHI3 */
Phil Edworthyd75bc782013-01-31 02:45:01 +0100188 CLKDEV_DEV_ID("rcar-du.0", &mstp_clks[MSTP103]), /* DU */
Magnus Dammf411fad2011-12-14 01:36:12 +0900189};
190
191void __init r8a7779_clock_init(void)
192{
193 int k, ret = 0;
194
195 for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
196 ret = clk_register(main_clks[k]);
197
198 if (!ret)
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800199 ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
200
201 if (!ret)
Nobuhiro Iwamatsu64e9de22012-06-27 09:59:00 +0900202 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
Magnus Dammf411fad2011-12-14 01:36:12 +0900203
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800204 for (k = 0; !ret && (k < ARRAY_SIZE(late_main_clks)); k++)
205 ret = clk_register(late_main_clks[k]);
206
Magnus Dammf411fad2011-12-14 01:36:12 +0900207 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
208
209 if (!ret)
Magnus Damm6b6a4c02012-02-29 21:41:30 +0900210 shmobile_clk_init();
Magnus Dammf411fad2011-12-14 01:36:12 +0900211 else
212 panic("failed to setup r8a7779 clocks\n");
213}