blob: 58f3dcf322fdaa7e63f7cc8694ee738ef11f0fef [file] [log] [blame]
Magnus Damm0468b2d2013-03-28 00:49:34 +09001/*
2 * r8a7790 clock framework support
3 *
4 * Copyright (C) 2013 Renesas Solutions Corp.
5 * Copyright (C) 2013 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; 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20#include <linux/init.h>
21#include <linux/io.h>
22#include <linux/kernel.h>
23#include <linux/sh_clk.h>
24#include <linux/clkdev.h>
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070025#include <mach/clock.h>
Magnus Damm0468b2d2013-03-28 00:49:34 +090026#include <mach/common.h>
Magnus Damm512e53b2013-07-12 01:22:19 +090027#include <mach/r8a7790.h>
Magnus Damm0468b2d2013-03-28 00:49:34 +090028
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070029/*
30 * MD EXTAL PLL0 PLL1 PLL3
31 * 14 13 19 (MHz) *1 *1
32 *---------------------------------------------------
33 * 0 0 0 15 x 1 x172/2 x208/2 x106
34 * 0 0 1 15 x 1 x172/2 x208/2 x88
35 * 0 1 0 20 x 1 x130/2 x156/2 x80
36 * 0 1 1 20 x 1 x130/2 x156/2 x66
37 * 1 0 0 26 / 2 x200/2 x240/2 x122
38 * 1 0 1 26 / 2 x200/2 x240/2 x102
39 * 1 1 0 30 / 2 x172/2 x208/2 x106
40 * 1 1 1 30 / 2 x172/2 x208/2 x88
41 *
42 * *1 : Table 7.6 indicates VCO ouput (PLLx = VCO/2)
43 * see "p1 / 2" on R8A7790_CLOCK_ROOT() below
44 */
45
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +010046#define CPG_BASE 0xe6150000
47#define CPG_LEN 0x1000
Magnus Damm0468b2d2013-03-28 00:49:34 +090048
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +010049#define SMSTPCR1 0xe6150134
50#define SMSTPCR2 0xe6150138
51#define SMSTPCR3 0xe615013c
52#define SMSTPCR5 0xe6150144
53#define SMSTPCR7 0xe615014c
54#define SMSTPCR8 0xe6150990
55#define SMSTPCR9 0xe6150994
56#define SMSTPCR10 0xe6150998
57
58#define MSTPSR1 IOMEM(0xe6150038)
59#define MSTPSR2 IOMEM(0xe6150040)
60#define MSTPSR3 IOMEM(0xe6150048)
61#define MSTPSR5 IOMEM(0xe615003c)
62#define MSTPSR7 IOMEM(0xe61501c4)
63#define MSTPSR8 IOMEM(0xe61509a0)
64#define MSTPSR9 IOMEM(0xe61509a4)
65#define MSTPSR10 IOMEM(0xe61509a8)
Magnus Damm55d9fab2013-03-28 00:49:44 +090066
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -070067#define SDCKCR 0xE6150074
Kuninori Morimoto46632512013-04-12 00:43:09 -070068#define SD2CKCR 0xE6150078
69#define SD3CKCR 0xE615007C
70#define MMC0CKCR 0xE6150240
71#define MMC1CKCR 0xE6150244
72#define SSPCKCR 0xE6150248
73#define SSPRSCKCR 0xE615024C
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070074
Magnus Damm0468b2d2013-03-28 00:49:34 +090075static struct clk_mapping cpg_mapping = {
76 .phys = CPG_BASE,
77 .len = CPG_LEN,
78};
79
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070080static struct clk extal_clk = {
81 /* .rate will be updated on r8a7790_clock_init() */
Magnus Damm55d9fab2013-03-28 00:49:44 +090082 .mapping = &cpg_mapping,
Magnus Damm0468b2d2013-03-28 00:49:34 +090083};
84
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070085static struct sh_clk_ops followparent_clk_ops = {
86 .recalc = followparent_recalc,
Magnus Damm55d9fab2013-03-28 00:49:44 +090087};
88
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070089static struct clk main_clk = {
Simon Horman7d947812013-11-06 13:58:55 +090090 /* .parent will be set r8a7790_clock_init */
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070091 .ops = &followparent_clk_ops,
92};
93
94/*
95 * clock ratio of these clock will be updated
96 * on r8a7790_clock_init()
97 */
98SH_FIXED_RATIO_CLK_SET(pll1_clk, main_clk, 1, 1);
99SH_FIXED_RATIO_CLK_SET(pll3_clk, main_clk, 1, 1);
100SH_FIXED_RATIO_CLK_SET(lb_clk, pll1_clk, 1, 1);
101SH_FIXED_RATIO_CLK_SET(qspi_clk, pll1_clk, 1, 1);
102
103/* fixed ratio clock */
104SH_FIXED_RATIO_CLK_SET(extal_div2_clk, extal_clk, 1, 2);
105SH_FIXED_RATIO_CLK_SET(cp_clk, extal_clk, 1, 2);
106
107SH_FIXED_RATIO_CLK_SET(pll1_div2_clk, pll1_clk, 1, 2);
108SH_FIXED_RATIO_CLK_SET(zg_clk, pll1_clk, 1, 3);
109SH_FIXED_RATIO_CLK_SET(zx_clk, pll1_clk, 1, 3);
110SH_FIXED_RATIO_CLK_SET(zs_clk, pll1_clk, 1, 6);
111SH_FIXED_RATIO_CLK_SET(hp_clk, pll1_clk, 1, 12);
112SH_FIXED_RATIO_CLK_SET(i_clk, pll1_clk, 1, 2);
113SH_FIXED_RATIO_CLK_SET(b_clk, pll1_clk, 1, 12);
114SH_FIXED_RATIO_CLK_SET(p_clk, pll1_clk, 1, 24);
115SH_FIXED_RATIO_CLK_SET(cl_clk, pll1_clk, 1, 48);
116SH_FIXED_RATIO_CLK_SET(m2_clk, pll1_clk, 1, 8);
117SH_FIXED_RATIO_CLK_SET(imp_clk, pll1_clk, 1, 4);
118SH_FIXED_RATIO_CLK_SET(rclk_clk, pll1_clk, 1, (48 * 1024));
119SH_FIXED_RATIO_CLK_SET(oscclk_clk, pll1_clk, 1, (12 * 1024));
120
121SH_FIXED_RATIO_CLK_SET(zb3_clk, pll3_clk, 1, 4);
122SH_FIXED_RATIO_CLK_SET(zb3d2_clk, pll3_clk, 1, 8);
123SH_FIXED_RATIO_CLK_SET(ddr_clk, pll3_clk, 1, 8);
124SH_FIXED_RATIO_CLK_SET(mp_clk, pll1_div2_clk, 1, 15);
125
Magnus Damm55d9fab2013-03-28 00:49:44 +0900126static struct clk *main_clks[] = {
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700127 &extal_clk,
128 &extal_div2_clk,
129 &main_clk,
130 &pll1_clk,
131 &pll1_div2_clk,
132 &pll3_clk,
133 &lb_clk,
134 &qspi_clk,
135 &zg_clk,
136 &zx_clk,
137 &zs_clk,
138 &hp_clk,
139 &i_clk,
140 &b_clk,
Magnus Damm55d9fab2013-03-28 00:49:44 +0900141 &p_clk,
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700142 &cl_clk,
143 &m2_clk,
144 &imp_clk,
145 &rclk_clk,
146 &oscclk_clk,
147 &zb3_clk,
148 &zb3d2_clk,
149 &ddr_clk,
Magnus Damm55d9fab2013-03-28 00:49:44 +0900150 &mp_clk,
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700151 &cp_clk,
Magnus Damm55d9fab2013-03-28 00:49:44 +0900152};
153
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700154/* SDHI (DIV4) clock */
155static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 18, 24, 0, 36, 48, 10 };
156
157static struct clk_div_mult_table div4_div_mult_table = {
158 .divisors = divisors,
159 .nr_divisors = ARRAY_SIZE(divisors),
160};
161
162static struct clk_div4_table div4_table = {
163 .div_mult_table = &div4_div_mult_table,
164};
165
166enum {
167 DIV4_SDH, DIV4_SD0, DIV4_SD1, DIV4_NR
168};
169
Laurent Pinchart72378a42013-04-16 17:16:20 +0200170static struct clk div4_clks[DIV4_NR] = {
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700171 [DIV4_SDH] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 8, 0x0dff, CLK_ENABLE_ON_INIT),
172 [DIV4_SD0] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 4, 0x1de0, CLK_ENABLE_ON_INIT),
173 [DIV4_SD1] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 0, 0x1de0, CLK_ENABLE_ON_INIT),
174};
175
Kuninori Morimoto46632512013-04-12 00:43:09 -0700176/* DIV6 clocks */
177enum {
178 DIV6_SD2, DIV6_SD3,
179 DIV6_MMC0, DIV6_MMC1,
180 DIV6_SSP, DIV6_SSPRS,
181 DIV6_NR
182};
183
184static struct clk div6_clks[DIV6_NR] = {
185 [DIV6_SD2] = SH_CLK_DIV6(&pll1_div2_clk, SD2CKCR, 0),
186 [DIV6_SD3] = SH_CLK_DIV6(&pll1_div2_clk, SD3CKCR, 0),
187 [DIV6_MMC0] = SH_CLK_DIV6(&pll1_div2_clk, MMC0CKCR, 0),
188 [DIV6_MMC1] = SH_CLK_DIV6(&pll1_div2_clk, MMC1CKCR, 0),
189 [DIV6_SSP] = SH_CLK_DIV6(&pll1_div2_clk, SSPCKCR, 0),
190 [DIV6_SSPRS] = SH_CLK_DIV6(&pll1_div2_clk, SSPRSCKCR, 0),
191};
192
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700193/* MSTP */
Laurent Pinchartaa9c1852013-04-24 22:36:01 +0200194enum {
Kuninori Morimotob3cc52e2013-12-01 18:17:18 -0800195 MSTP1015, MSTP1014, MSTP1013, MSTP1012, MSTP1011, MSTP1010,
196 MSTP1009, MSTP1008, MSTP1007, MSTP1006, MSTP1005,
Guennadi Liakhovetski911a6442013-09-26 19:20:57 +0200197 MSTP931, MSTP930, MSTP929, MSTP928,
Hiep Cao Minh3dd3b1c2013-10-22 11:21:11 +0900198 MSTP917,
Simon Horman9b0b9c02013-08-06 16:50:09 +0900199 MSTP813,
Laurent Pinchart9d8907c2013-04-17 11:33:56 +0200200 MSTP726, MSTP725, MSTP724, MSTP723, MSTP722, MSTP721, MSTP720,
Ulrich Hecht729cb822013-05-31 17:57:02 +0200201 MSTP717, MSTP716,
Valentine Barshak65779cb2013-10-10 02:14:46 +0400202 MSTP704,
Simon Hormana4b91be2013-06-26 17:34:34 +0900203 MSTP522,
Kuninori Morimotof5b29472014-01-07 22:08:40 -0800204 MSTP502, MSTP501,
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200205 MSTP315, MSTP314, MSTP313, MSTP312, MSTP311, MSTP305, MSTP304,
Laurent Pinchartaa9c1852013-04-24 22:36:01 +0200206 MSTP216, MSTP207, MSTP206, MSTP204, MSTP203, MSTP202,
Magnus Damm99ade1a2013-06-28 20:27:04 +0900207 MSTP124,
Laurent Pinchartaa9c1852013-04-24 22:36:01 +0200208 MSTP_NR
209};
210
Magnus Damm0468b2d2013-03-28 00:49:34 +0900211static struct clk mstp_clks[MSTP_NR] = {
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100212 [MSTP1015] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 15, MSTPSR10, 0), /* SSI0 */
213 [MSTP1014] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 14, MSTPSR10, 0), /* SSI1 */
214 [MSTP1013] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 13, MSTPSR10, 0), /* SSI2 */
215 [MSTP1012] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 12, MSTPSR10, 0), /* SSI3 */
216 [MSTP1011] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 11, MSTPSR10, 0), /* SSI4 */
217 [MSTP1010] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 10, MSTPSR10, 0), /* SSI5 */
218 [MSTP1009] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 9, MSTPSR10, 0), /* SSI6 */
219 [MSTP1008] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 8, MSTPSR10, 0), /* SSI7 */
220 [MSTP1007] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 7, MSTPSR10, 0), /* SSI8 */
221 [MSTP1006] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 6, MSTPSR10, 0), /* SSI9 */
222 [MSTP1005] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 5, MSTPSR10, 0), /* SSI ALL */
223 [MSTP931] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR9, 31, MSTPSR9, 0), /* I2C0 */
224 [MSTP930] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR9, 30, MSTPSR9, 0), /* I2C1 */
225 [MSTP929] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR9, 29, MSTPSR9, 0), /* I2C2 */
226 [MSTP928] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR9, 28, MSTPSR9, 0), /* I2C3 */
227 [MSTP917] = SH_CLK_MSTP32_STS(&qspi_clk, SMSTPCR9, 17, MSTPSR9, 0), /* QSPI */
228 [MSTP813] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR8, 13, MSTPSR8, 0), /* Ether */
229 [MSTP726] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 26, MSTPSR7, 0), /* LVDS0 */
230 [MSTP725] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 25, MSTPSR7, 0), /* LVDS1 */
231 [MSTP724] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 24, MSTPSR7, 0), /* DU0 */
232 [MSTP723] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 23, MSTPSR7, 0), /* DU1 */
233 [MSTP722] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 22, MSTPSR7, 0), /* DU2 */
234 [MSTP721] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR7, 21, MSTPSR7, 0), /* SCIF0 */
235 [MSTP720] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR7, 20, MSTPSR7, 0), /* SCIF1 */
236 [MSTP717] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR7, 17, MSTPSR7, 0), /* HSCIF0 */
237 [MSTP716] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR7, 16, MSTPSR7, 0), /* HSCIF1 */
238 [MSTP704] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR7, 4, MSTPSR7, 0), /* HSUSB */
239 [MSTP522] = SH_CLK_MSTP32_STS(&extal_clk, SMSTPCR5, 22, MSTPSR5, 0), /* Thermal */
Kuninori Morimotof5b29472014-01-07 22:08:40 -0800240 [MSTP502] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR5, 2, MSTPSR5, 0), /* Audio-DMAC low */
241 [MSTP501] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR5, 1, MSTPSR5, 0), /* Audio-DMAC hi */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100242 [MSTP315] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_MMC0], SMSTPCR3, 15, MSTPSR3, 0), /* MMC0 */
243 [MSTP314] = SH_CLK_MSTP32_STS(&div4_clks[DIV4_SD0], SMSTPCR3, 14, MSTPSR3, 0), /* SDHI0 */
244 [MSTP313] = SH_CLK_MSTP32_STS(&div4_clks[DIV4_SD1], SMSTPCR3, 13, MSTPSR3, 0), /* SDHI1 */
245 [MSTP312] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_SD2], SMSTPCR3, 12, MSTPSR3, 0), /* SDHI2 */
246 [MSTP311] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_SD3], SMSTPCR3, 11, MSTPSR3, 0), /* SDHI3 */
247 [MSTP305] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_MMC1], SMSTPCR3, 5, MSTPSR3, 0), /* MMC1 */
248 [MSTP304] = SH_CLK_MSTP32_STS(&cp_clk, SMSTPCR3, 4, MSTPSR3, 0), /* TPU0 */
249 [MSTP216] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 16, MSTPSR2, 0), /* SCIFB2 */
250 [MSTP207] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 7, MSTPSR2, 0), /* SCIFB1 */
251 [MSTP206] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 6, MSTPSR2, 0), /* SCIFB0 */
252 [MSTP204] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 4, MSTPSR2, 0), /* SCIFA0 */
253 [MSTP203] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 3, MSTPSR2, 0), /* SCIFA1 */
254 [MSTP202] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 2, MSTPSR2, 0), /* SCIFA2 */
255 [MSTP124] = SH_CLK_MSTP32_STS(&rclk_clk, SMSTPCR1, 24, MSTPSR1, 0), /* CMT0 */
Magnus Damm0468b2d2013-03-28 00:49:34 +0900256};
257
258static struct clk_lookup lookups[] = {
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700259
260 /* main clocks */
261 CLKDEV_CON_ID("extal", &extal_clk),
262 CLKDEV_CON_ID("extal_div2", &extal_div2_clk),
263 CLKDEV_CON_ID("main", &main_clk),
264 CLKDEV_CON_ID("pll1", &pll1_clk),
265 CLKDEV_CON_ID("pll1_div2", &pll1_div2_clk),
266 CLKDEV_CON_ID("pll3", &pll3_clk),
267 CLKDEV_CON_ID("zg", &zg_clk),
268 CLKDEV_CON_ID("zx", &zx_clk),
269 CLKDEV_CON_ID("zs", &zs_clk),
270 CLKDEV_CON_ID("hp", &hp_clk),
271 CLKDEV_CON_ID("i", &i_clk),
272 CLKDEV_CON_ID("b", &b_clk),
273 CLKDEV_CON_ID("lb", &lb_clk),
274 CLKDEV_CON_ID("p", &p_clk),
275 CLKDEV_CON_ID("cl", &cl_clk),
276 CLKDEV_CON_ID("m2", &m2_clk),
277 CLKDEV_CON_ID("imp", &imp_clk),
278 CLKDEV_CON_ID("rclk", &rclk_clk),
279 CLKDEV_CON_ID("oscclk", &oscclk_clk),
280 CLKDEV_CON_ID("zb3", &zb3_clk),
281 CLKDEV_CON_ID("zb3d2", &zb3d2_clk),
282 CLKDEV_CON_ID("ddr", &ddr_clk),
283 CLKDEV_CON_ID("mp", &mp_clk),
284 CLKDEV_CON_ID("qspi", &qspi_clk),
285 CLKDEV_CON_ID("cp", &cp_clk),
286
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700287 /* DIV4 */
288 CLKDEV_CON_ID("sdh", &div4_clks[DIV4_SDH]),
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700289
Kuninori Morimoto46632512013-04-12 00:43:09 -0700290 /* DIV6 */
Kuninori Morimoto46632512013-04-12 00:43:09 -0700291 CLKDEV_CON_ID("ssp", &div6_clks[DIV6_SSP]),
292 CLKDEV_CON_ID("ssprs", &div6_clks[DIV6_SSPRS]),
293
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700294 /* MSTP */
Kuninori Morimotob3cc52e2013-12-01 18:17:18 -0800295 CLKDEV_DEV_ID("rcar_sound", &mstp_clks[MSTP1005]),
Magnus Damm55d9fab2013-03-28 00:49:44 +0900296 CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]),
297 CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP203]),
298 CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP206]),
299 CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP207]),
300 CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP216]),
301 CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP202]),
302 CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP721]),
303 CLKDEV_DEV_ID("sh-sci.7", &mstp_clks[MSTP720]),
Ulrich Hecht729cb822013-05-31 17:57:02 +0200304 CLKDEV_DEV_ID("sh-sci.8", &mstp_clks[MSTP717]),
305 CLKDEV_DEV_ID("sh-sci.9", &mstp_clks[MSTP716]),
Guennadi Liakhovetski911a6442013-09-26 19:20:57 +0200306 CLKDEV_DEV_ID("e6508000.i2c", &mstp_clks[MSTP931]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400307 CLKDEV_DEV_ID("i2c-rcar_gen2.0", &mstp_clks[MSTP931]),
Guennadi Liakhovetski911a6442013-09-26 19:20:57 +0200308 CLKDEV_DEV_ID("e6518000.i2c", &mstp_clks[MSTP930]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400309 CLKDEV_DEV_ID("i2c-rcar_gen2.1", &mstp_clks[MSTP930]),
Guennadi Liakhovetski911a6442013-09-26 19:20:57 +0200310 CLKDEV_DEV_ID("e6530000.i2c", &mstp_clks[MSTP929]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400311 CLKDEV_DEV_ID("i2c-rcar_gen2.2", &mstp_clks[MSTP929]),
Guennadi Liakhovetski911a6442013-09-26 19:20:57 +0200312 CLKDEV_DEV_ID("e6540000.i2c", &mstp_clks[MSTP928]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400313 CLKDEV_DEV_ID("i2c-rcar_gen2.3", &mstp_clks[MSTP928]),
Simon Horman9b0b9c02013-08-06 16:50:09 +0900314 CLKDEV_DEV_ID("r8a7790-ether", &mstp_clks[MSTP813]),
Magnus Damm9654fd72013-11-20 16:59:39 +0900315 CLKDEV_DEV_ID("e61f0000.thermal", &mstp_clks[MSTP522]),
Simon Hormana4b91be2013-06-26 17:34:34 +0900316 CLKDEV_DEV_ID("rcar_thermal", &mstp_clks[MSTP522]),
Kuninori Morimotof5b29472014-01-07 22:08:40 -0800317 CLKDEV_DEV_ID("sh-dma-engine.0", &mstp_clks[MSTP502]),
318 CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[MSTP501]),
Kuninori Morimotob718aa42013-10-21 19:36:13 -0700319 CLKDEV_DEV_ID("ee200000.mmc", &mstp_clks[MSTP315]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200320 CLKDEV_DEV_ID("sh_mmcif.0", &mstp_clks[MSTP315]),
Kuninori Morimotob718aa42013-10-21 19:36:13 -0700321 CLKDEV_DEV_ID("ee100000.sd", &mstp_clks[MSTP314]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200322 CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP314]),
Kuninori Morimotob718aa42013-10-21 19:36:13 -0700323 CLKDEV_DEV_ID("ee120000.sd", &mstp_clks[MSTP313]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200324 CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP313]),
Kuninori Morimotob718aa42013-10-21 19:36:13 -0700325 CLKDEV_DEV_ID("ee140000.sd", &mstp_clks[MSTP312]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200326 CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP312]),
Kuninori Morimotob718aa42013-10-21 19:36:13 -0700327 CLKDEV_DEV_ID("ee160000.sd", &mstp_clks[MSTP311]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200328 CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP311]),
Kuninori Morimotob718aa42013-10-21 19:36:13 -0700329 CLKDEV_DEV_ID("ee220000.mmc", &mstp_clks[MSTP305]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200330 CLKDEV_DEV_ID("sh_mmcif.1", &mstp_clks[MSTP305]),
Magnus Damm99ade1a2013-06-28 20:27:04 +0900331 CLKDEV_DEV_ID("sh_cmt.0", &mstp_clks[MSTP124]),
Hiep Cao Minh3dd3b1c2013-10-22 11:21:11 +0900332 CLKDEV_DEV_ID("qspi.0", &mstp_clks[MSTP917]),
Valentine Barshak65779cb2013-10-10 02:14:46 +0400333 CLKDEV_DEV_ID("renesas_usbhs", &mstp_clks[MSTP704]),
Kuninori Morimotoeb7a9172013-11-19 01:05:23 -0800334
335 /* ICK */
Valentine Barshak65779cb2013-10-10 02:14:46 +0400336 CLKDEV_ICK_ID("usbhs", "usb_phy_rcar_gen2", &mstp_clks[MSTP704]),
Kuninori Morimotoeb7a9172013-11-19 01:05:23 -0800337 CLKDEV_ICK_ID("lvds.0", "rcar-du-r8a7790", &mstp_clks[MSTP726]),
338 CLKDEV_ICK_ID("lvds.1", "rcar-du-r8a7790", &mstp_clks[MSTP725]),
339 CLKDEV_ICK_ID("du.0", "rcar-du-r8a7790", &mstp_clks[MSTP724]),
340 CLKDEV_ICK_ID("du.1", "rcar-du-r8a7790", &mstp_clks[MSTP723]),
341 CLKDEV_ICK_ID("du.2", "rcar-du-r8a7790", &mstp_clks[MSTP722]),
Kuninori Morimotob3cc52e2013-12-01 18:17:18 -0800342 CLKDEV_ICK_ID("ssi.0", "rcar_sound", &mstp_clks[MSTP1015]),
343 CLKDEV_ICK_ID("ssi.1", "rcar_sound", &mstp_clks[MSTP1014]),
344 CLKDEV_ICK_ID("ssi.2", "rcar_sound", &mstp_clks[MSTP1013]),
345 CLKDEV_ICK_ID("ssi.3", "rcar_sound", &mstp_clks[MSTP1012]),
346 CLKDEV_ICK_ID("ssi.4", "rcar_sound", &mstp_clks[MSTP1011]),
347 CLKDEV_ICK_ID("ssi.5", "rcar_sound", &mstp_clks[MSTP1010]),
348 CLKDEV_ICK_ID("ssi.6", "rcar_sound", &mstp_clks[MSTP1009]),
349 CLKDEV_ICK_ID("ssi.7", "rcar_sound", &mstp_clks[MSTP1008]),
350 CLKDEV_ICK_ID("ssi.8", "rcar_sound", &mstp_clks[MSTP1007]),
351 CLKDEV_ICK_ID("ssi.9", "rcar_sound", &mstp_clks[MSTP1006]),
Kuninori Morimotoeb7a9172013-11-19 01:05:23 -0800352
Magnus Damm0468b2d2013-03-28 00:49:34 +0900353};
354
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700355#define R8A7790_CLOCK_ROOT(e, m, p0, p1, p30, p31) \
356 extal_clk.rate = e * 1000 * 1000; \
357 main_clk.parent = m; \
358 SH_CLK_SET_RATIO(&pll1_clk_ratio, p1 / 2, 1); \
359 if (mode & MD(19)) \
360 SH_CLK_SET_RATIO(&pll3_clk_ratio, p31, 1); \
361 else \
362 SH_CLK_SET_RATIO(&pll3_clk_ratio, p30, 1)
363
364
Magnus Damm0468b2d2013-03-28 00:49:34 +0900365void __init r8a7790_clock_init(void)
366{
Magnus Damm50c517d2013-09-12 09:32:49 +0900367 u32 mode = rcar_gen2_read_mode_pins();
Magnus Damm0468b2d2013-03-28 00:49:34 +0900368 int k, ret = 0;
369
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700370 switch (mode & (MD(14) | MD(13))) {
371 case 0:
372 R8A7790_CLOCK_ROOT(15, &extal_clk, 172, 208, 106, 88);
373 break;
374 case MD(13):
375 R8A7790_CLOCK_ROOT(20, &extal_clk, 130, 156, 80, 66);
376 break;
377 case MD(14):
Kuninori Morimoto31ac8e42013-11-19 01:04:20 -0800378 R8A7790_CLOCK_ROOT(26 / 2, &extal_div2_clk, 200, 240, 122, 102);
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700379 break;
380 case MD(13) | MD(14):
Kuninori Morimoto31ac8e42013-11-19 01:04:20 -0800381 R8A7790_CLOCK_ROOT(30 / 2, &extal_div2_clk, 172, 208, 106, 88);
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700382 break;
383 }
384
385 if (mode & (MD(18)))
386 SH_CLK_SET_RATIO(&lb_clk_ratio, 1, 36);
387 else
388 SH_CLK_SET_RATIO(&lb_clk_ratio, 1, 24);
389
390 if ((mode & (MD(3) | MD(2) | MD(1))) == MD(2))
391 SH_CLK_SET_RATIO(&qspi_clk_ratio, 1, 16);
392 else
393 SH_CLK_SET_RATIO(&qspi_clk_ratio, 1, 20);
394
Magnus Damm0468b2d2013-03-28 00:49:34 +0900395 for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
396 ret = clk_register(main_clks[k]);
397
398 if (!ret)
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700399 ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
400
401 if (!ret)
Kuninori Morimoto46632512013-04-12 00:43:09 -0700402 ret = sh_clk_div6_register(div6_clks, DIV6_NR);
403
404 if (!ret)
Magnus Damm0468b2d2013-03-28 00:49:34 +0900405 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
406
407 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
408
409 if (!ret)
410 shmobile_clk_init();
411 else
412 panic("failed to setup r8a7790 clocks\n");
413}