blob: c62bfe76a17e6189a146cc01cf6798d44d99b0e8 [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
Kuninori Morimotoc7c2ec32014-01-13 18:25:39 -080094static struct clk audio_clk_a = {
95};
96
97static struct clk audio_clk_b = {
98};
99
100static struct clk audio_clk_c = {
101};
102
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700103/*
104 * clock ratio of these clock will be updated
105 * on r8a7790_clock_init()
106 */
107SH_FIXED_RATIO_CLK_SET(pll1_clk, main_clk, 1, 1);
108SH_FIXED_RATIO_CLK_SET(pll3_clk, main_clk, 1, 1);
109SH_FIXED_RATIO_CLK_SET(lb_clk, pll1_clk, 1, 1);
110SH_FIXED_RATIO_CLK_SET(qspi_clk, pll1_clk, 1, 1);
111
112/* fixed ratio clock */
113SH_FIXED_RATIO_CLK_SET(extal_div2_clk, extal_clk, 1, 2);
114SH_FIXED_RATIO_CLK_SET(cp_clk, extal_clk, 1, 2);
115
116SH_FIXED_RATIO_CLK_SET(pll1_div2_clk, pll1_clk, 1, 2);
117SH_FIXED_RATIO_CLK_SET(zg_clk, pll1_clk, 1, 3);
118SH_FIXED_RATIO_CLK_SET(zx_clk, pll1_clk, 1, 3);
119SH_FIXED_RATIO_CLK_SET(zs_clk, pll1_clk, 1, 6);
120SH_FIXED_RATIO_CLK_SET(hp_clk, pll1_clk, 1, 12);
121SH_FIXED_RATIO_CLK_SET(i_clk, pll1_clk, 1, 2);
122SH_FIXED_RATIO_CLK_SET(b_clk, pll1_clk, 1, 12);
123SH_FIXED_RATIO_CLK_SET(p_clk, pll1_clk, 1, 24);
124SH_FIXED_RATIO_CLK_SET(cl_clk, pll1_clk, 1, 48);
125SH_FIXED_RATIO_CLK_SET(m2_clk, pll1_clk, 1, 8);
126SH_FIXED_RATIO_CLK_SET(imp_clk, pll1_clk, 1, 4);
127SH_FIXED_RATIO_CLK_SET(rclk_clk, pll1_clk, 1, (48 * 1024));
128SH_FIXED_RATIO_CLK_SET(oscclk_clk, pll1_clk, 1, (12 * 1024));
129
130SH_FIXED_RATIO_CLK_SET(zb3_clk, pll3_clk, 1, 4);
131SH_FIXED_RATIO_CLK_SET(zb3d2_clk, pll3_clk, 1, 8);
132SH_FIXED_RATIO_CLK_SET(ddr_clk, pll3_clk, 1, 8);
133SH_FIXED_RATIO_CLK_SET(mp_clk, pll1_div2_clk, 1, 15);
134
Magnus Damm55d9fab2013-03-28 00:49:44 +0900135static struct clk *main_clks[] = {
Kuninori Morimotoc7c2ec32014-01-13 18:25:39 -0800136 &audio_clk_a,
137 &audio_clk_b,
138 &audio_clk_c,
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700139 &extal_clk,
140 &extal_div2_clk,
141 &main_clk,
142 &pll1_clk,
143 &pll1_div2_clk,
144 &pll3_clk,
145 &lb_clk,
146 &qspi_clk,
147 &zg_clk,
148 &zx_clk,
149 &zs_clk,
150 &hp_clk,
151 &i_clk,
152 &b_clk,
Magnus Damm55d9fab2013-03-28 00:49:44 +0900153 &p_clk,
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700154 &cl_clk,
155 &m2_clk,
156 &imp_clk,
157 &rclk_clk,
158 &oscclk_clk,
159 &zb3_clk,
160 &zb3d2_clk,
161 &ddr_clk,
Magnus Damm55d9fab2013-03-28 00:49:44 +0900162 &mp_clk,
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700163 &cp_clk,
Magnus Damm55d9fab2013-03-28 00:49:44 +0900164};
165
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700166/* SDHI (DIV4) clock */
167static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 18, 24, 0, 36, 48, 10 };
168
169static struct clk_div_mult_table div4_div_mult_table = {
170 .divisors = divisors,
171 .nr_divisors = ARRAY_SIZE(divisors),
172};
173
174static struct clk_div4_table div4_table = {
175 .div_mult_table = &div4_div_mult_table,
176};
177
178enum {
179 DIV4_SDH, DIV4_SD0, DIV4_SD1, DIV4_NR
180};
181
Laurent Pinchart72378a42013-04-16 17:16:20 +0200182static struct clk div4_clks[DIV4_NR] = {
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700183 [DIV4_SDH] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 8, 0x0dff, CLK_ENABLE_ON_INIT),
Kuninori Morimoto4fb12fe2014-08-05 18:24:30 -0700184 [DIV4_SD0] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 4, 0x1df0, CLK_ENABLE_ON_INIT),
185 [DIV4_SD1] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 0, 0x1df0, CLK_ENABLE_ON_INIT),
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700186};
187
Kuninori Morimoto46632512013-04-12 00:43:09 -0700188/* DIV6 clocks */
189enum {
190 DIV6_SD2, DIV6_SD3,
191 DIV6_MMC0, DIV6_MMC1,
192 DIV6_SSP, DIV6_SSPRS,
193 DIV6_NR
194};
195
196static struct clk div6_clks[DIV6_NR] = {
197 [DIV6_SD2] = SH_CLK_DIV6(&pll1_div2_clk, SD2CKCR, 0),
198 [DIV6_SD3] = SH_CLK_DIV6(&pll1_div2_clk, SD3CKCR, 0),
199 [DIV6_MMC0] = SH_CLK_DIV6(&pll1_div2_clk, MMC0CKCR, 0),
200 [DIV6_MMC1] = SH_CLK_DIV6(&pll1_div2_clk, MMC1CKCR, 0),
201 [DIV6_SSP] = SH_CLK_DIV6(&pll1_div2_clk, SSPCKCR, 0),
202 [DIV6_SSPRS] = SH_CLK_DIV6(&pll1_div2_clk, SSPRSCKCR, 0),
203};
204
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700205/* MSTP */
Laurent Pinchartaa9c1852013-04-24 22:36:01 +0200206enum {
Kuninori Morimoto9ced1d472014-02-18 19:28:11 -0800207 MSTP1017, /* parent of SCU */
208
209 MSTP1031, MSTP1030,
210 MSTP1029, MSTP1028, MSTP1027, MSTP1026, MSTP1025, MSTP1024, MSTP1023, MSTP1022,
Kuninori Morimotob3cc52e2013-12-01 18:17:18 -0800211 MSTP1015, MSTP1014, MSTP1013, MSTP1012, MSTP1011, MSTP1010,
212 MSTP1009, MSTP1008, MSTP1007, MSTP1006, MSTP1005,
Guennadi Liakhovetski911a6442013-09-26 19:20:57 +0200213 MSTP931, MSTP930, MSTP929, MSTP928,
Hiep Cao Minh3dd3b1c2013-10-22 11:21:11 +0900214 MSTP917,
Valentine Barshak64b7f9a2014-01-08 20:31:25 +0400215 MSTP815, MSTP814,
Simon Horman9b0b9c02013-08-06 16:50:09 +0900216 MSTP813,
Valentine Barshakb89dfdf2014-01-08 20:31:23 +0400217 MSTP811, MSTP810, MSTP809, MSTP808,
Laurent Pinchart9d8907c2013-04-17 11:33:56 +0200218 MSTP726, MSTP725, MSTP724, MSTP723, MSTP722, MSTP721, MSTP720,
Ulrich Hecht729cb822013-05-31 17:57:02 +0200219 MSTP717, MSTP716,
Valentine Barshak012a7062014-01-25 02:28:48 +0400220 MSTP704, MSTP703,
Simon Hormana4b91be2013-06-26 17:34:34 +0900221 MSTP522,
Kuninori Morimotof5b29472014-01-07 22:08:40 -0800222 MSTP502, MSTP501,
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200223 MSTP315, MSTP314, MSTP313, MSTP312, MSTP311, MSTP305, MSTP304,
Laurent Pinchartaa9c1852013-04-24 22:36:01 +0200224 MSTP216, MSTP207, MSTP206, MSTP204, MSTP203, MSTP202,
Magnus Damm99ade1a2013-06-28 20:27:04 +0900225 MSTP124,
Laurent Pinchartaa9c1852013-04-24 22:36:01 +0200226 MSTP_NR
227};
228
Magnus Damm0468b2d2013-03-28 00:49:34 +0900229static struct clk mstp_clks[MSTP_NR] = {
Kuninori Morimoto9ced1d472014-02-18 19:28:11 -0800230 [MSTP1031] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 31, MSTPSR10, 0), /* SCU0 */
231 [MSTP1030] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 30, MSTPSR10, 0), /* SCU1 */
232 [MSTP1029] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 29, MSTPSR10, 0), /* SCU2 */
233 [MSTP1028] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 28, MSTPSR10, 0), /* SCU3 */
234 [MSTP1027] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 27, MSTPSR10, 0), /* SCU4 */
235 [MSTP1026] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 26, MSTPSR10, 0), /* SCU5 */
236 [MSTP1025] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 25, MSTPSR10, 0), /* SCU6 */
237 [MSTP1024] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 24, MSTPSR10, 0), /* SCU7 */
238 [MSTP1023] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 23, MSTPSR10, 0), /* SCU8 */
239 [MSTP1022] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 22, MSTPSR10, 0), /* SCU9 */
240 [MSTP1017] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 17, MSTPSR10, 0), /* SCU */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100241 [MSTP1015] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 15, MSTPSR10, 0), /* SSI0 */
242 [MSTP1014] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 14, MSTPSR10, 0), /* SSI1 */
243 [MSTP1013] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 13, MSTPSR10, 0), /* SSI2 */
244 [MSTP1012] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 12, MSTPSR10, 0), /* SSI3 */
245 [MSTP1011] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 11, MSTPSR10, 0), /* SSI4 */
246 [MSTP1010] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 10, MSTPSR10, 0), /* SSI5 */
247 [MSTP1009] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 9, MSTPSR10, 0), /* SSI6 */
248 [MSTP1008] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 8, MSTPSR10, 0), /* SSI7 */
249 [MSTP1007] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 7, MSTPSR10, 0), /* SSI8 */
250 [MSTP1006] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 6, MSTPSR10, 0), /* SSI9 */
251 [MSTP1005] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 5, MSTPSR10, 0), /* SSI ALL */
Laurent Pinchartab077bf2014-04-01 13:02:15 +0200252 [MSTP931] = SH_CLK_MSTP32_STS(&hp_clk, SMSTPCR9, 31, MSTPSR9, 0), /* I2C0 */
253 [MSTP930] = SH_CLK_MSTP32_STS(&hp_clk, SMSTPCR9, 30, MSTPSR9, 0), /* I2C1 */
254 [MSTP929] = SH_CLK_MSTP32_STS(&hp_clk, SMSTPCR9, 29, MSTPSR9, 0), /* I2C2 */
255 [MSTP928] = SH_CLK_MSTP32_STS(&hp_clk, SMSTPCR9, 28, MSTPSR9, 0), /* I2C3 */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100256 [MSTP917] = SH_CLK_MSTP32_STS(&qspi_clk, SMSTPCR9, 17, MSTPSR9, 0), /* QSPI */
Valentine Barshak64b7f9a2014-01-08 20:31:25 +0400257 [MSTP815] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR8, 15, MSTPSR8, 0), /* SATA0 */
258 [MSTP814] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR8, 14, MSTPSR8, 0), /* SATA1 */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100259 [MSTP813] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR8, 13, MSTPSR8, 0), /* Ether */
Valentine Barshakb89dfdf2014-01-08 20:31:23 +0400260 [MSTP811] = SH_CLK_MSTP32_STS(&zg_clk, SMSTPCR8, 11, MSTPSR8, 0), /* VIN0 */
261 [MSTP810] = SH_CLK_MSTP32_STS(&zg_clk, SMSTPCR8, 10, MSTPSR8, 0), /* VIN1 */
262 [MSTP809] = SH_CLK_MSTP32_STS(&zg_clk, SMSTPCR8, 9, MSTPSR8, 0), /* VIN2 */
263 [MSTP808] = SH_CLK_MSTP32_STS(&zg_clk, SMSTPCR8, 8, MSTPSR8, 0), /* VIN3 */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100264 [MSTP726] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 26, MSTPSR7, 0), /* LVDS0 */
265 [MSTP725] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 25, MSTPSR7, 0), /* LVDS1 */
266 [MSTP724] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 24, MSTPSR7, 0), /* DU0 */
267 [MSTP723] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 23, MSTPSR7, 0), /* DU1 */
268 [MSTP722] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 22, MSTPSR7, 0), /* DU2 */
269 [MSTP721] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR7, 21, MSTPSR7, 0), /* SCIF0 */
270 [MSTP720] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR7, 20, MSTPSR7, 0), /* SCIF1 */
271 [MSTP717] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR7, 17, MSTPSR7, 0), /* HSCIF0 */
272 [MSTP716] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR7, 16, MSTPSR7, 0), /* HSCIF1 */
273 [MSTP704] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR7, 4, MSTPSR7, 0), /* HSUSB */
Valentine Barshak012a7062014-01-25 02:28:48 +0400274 [MSTP703] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR7, 3, MSTPSR7, 0), /* EHCI */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100275 [MSTP522] = SH_CLK_MSTP32_STS(&extal_clk, SMSTPCR5, 22, MSTPSR5, 0), /* Thermal */
Kuninori Morimotof5b29472014-01-07 22:08:40 -0800276 [MSTP502] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR5, 2, MSTPSR5, 0), /* Audio-DMAC low */
277 [MSTP501] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR5, 1, MSTPSR5, 0), /* Audio-DMAC hi */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100278 [MSTP315] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_MMC0], SMSTPCR3, 15, MSTPSR3, 0), /* MMC0 */
279 [MSTP314] = SH_CLK_MSTP32_STS(&div4_clks[DIV4_SD0], SMSTPCR3, 14, MSTPSR3, 0), /* SDHI0 */
280 [MSTP313] = SH_CLK_MSTP32_STS(&div4_clks[DIV4_SD1], SMSTPCR3, 13, MSTPSR3, 0), /* SDHI1 */
281 [MSTP312] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_SD2], SMSTPCR3, 12, MSTPSR3, 0), /* SDHI2 */
282 [MSTP311] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_SD3], SMSTPCR3, 11, MSTPSR3, 0), /* SDHI3 */
283 [MSTP305] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_MMC1], SMSTPCR3, 5, MSTPSR3, 0), /* MMC1 */
284 [MSTP304] = SH_CLK_MSTP32_STS(&cp_clk, SMSTPCR3, 4, MSTPSR3, 0), /* TPU0 */
285 [MSTP216] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 16, MSTPSR2, 0), /* SCIFB2 */
286 [MSTP207] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 7, MSTPSR2, 0), /* SCIFB1 */
287 [MSTP206] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 6, MSTPSR2, 0), /* SCIFB0 */
288 [MSTP204] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 4, MSTPSR2, 0), /* SCIFA0 */
289 [MSTP203] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 3, MSTPSR2, 0), /* SCIFA1 */
290 [MSTP202] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 2, MSTPSR2, 0), /* SCIFA2 */
291 [MSTP124] = SH_CLK_MSTP32_STS(&rclk_clk, SMSTPCR1, 24, MSTPSR1, 0), /* CMT0 */
Magnus Damm0468b2d2013-03-28 00:49:34 +0900292};
293
294static struct clk_lookup lookups[] = {
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700295
296 /* main clocks */
297 CLKDEV_CON_ID("extal", &extal_clk),
298 CLKDEV_CON_ID("extal_div2", &extal_div2_clk),
299 CLKDEV_CON_ID("main", &main_clk),
300 CLKDEV_CON_ID("pll1", &pll1_clk),
301 CLKDEV_CON_ID("pll1_div2", &pll1_div2_clk),
302 CLKDEV_CON_ID("pll3", &pll3_clk),
303 CLKDEV_CON_ID("zg", &zg_clk),
304 CLKDEV_CON_ID("zx", &zx_clk),
305 CLKDEV_CON_ID("zs", &zs_clk),
306 CLKDEV_CON_ID("hp", &hp_clk),
307 CLKDEV_CON_ID("i", &i_clk),
308 CLKDEV_CON_ID("b", &b_clk),
309 CLKDEV_CON_ID("lb", &lb_clk),
310 CLKDEV_CON_ID("p", &p_clk),
311 CLKDEV_CON_ID("cl", &cl_clk),
312 CLKDEV_CON_ID("m2", &m2_clk),
313 CLKDEV_CON_ID("imp", &imp_clk),
314 CLKDEV_CON_ID("rclk", &rclk_clk),
315 CLKDEV_CON_ID("oscclk", &oscclk_clk),
316 CLKDEV_CON_ID("zb3", &zb3_clk),
317 CLKDEV_CON_ID("zb3d2", &zb3d2_clk),
318 CLKDEV_CON_ID("ddr", &ddr_clk),
319 CLKDEV_CON_ID("mp", &mp_clk),
320 CLKDEV_CON_ID("qspi", &qspi_clk),
321 CLKDEV_CON_ID("cp", &cp_clk),
322
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700323 /* DIV4 */
324 CLKDEV_CON_ID("sdh", &div4_clks[DIV4_SDH]),
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700325
Kuninori Morimoto46632512013-04-12 00:43:09 -0700326 /* DIV6 */
Kuninori Morimoto46632512013-04-12 00:43:09 -0700327 CLKDEV_CON_ID("ssp", &div6_clks[DIV6_SSP]),
328 CLKDEV_CON_ID("ssprs", &div6_clks[DIV6_SSPRS]),
329
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700330 /* MSTP */
Kuninori Morimotob3cc52e2013-12-01 18:17:18 -0800331 CLKDEV_DEV_ID("rcar_sound", &mstp_clks[MSTP1005]),
Magnus Damm55d9fab2013-03-28 00:49:44 +0900332 CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]),
333 CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP203]),
334 CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP206]),
335 CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP207]),
336 CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP216]),
337 CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP202]),
338 CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP721]),
339 CLKDEV_DEV_ID("sh-sci.7", &mstp_clks[MSTP720]),
Ulrich Hecht729cb822013-05-31 17:57:02 +0200340 CLKDEV_DEV_ID("sh-sci.8", &mstp_clks[MSTP717]),
341 CLKDEV_DEV_ID("sh-sci.9", &mstp_clks[MSTP716]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400342 CLKDEV_DEV_ID("i2c-rcar_gen2.0", &mstp_clks[MSTP931]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400343 CLKDEV_DEV_ID("i2c-rcar_gen2.1", &mstp_clks[MSTP930]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400344 CLKDEV_DEV_ID("i2c-rcar_gen2.2", &mstp_clks[MSTP929]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400345 CLKDEV_DEV_ID("i2c-rcar_gen2.3", &mstp_clks[MSTP928]),
Simon Horman9b0b9c02013-08-06 16:50:09 +0900346 CLKDEV_DEV_ID("r8a7790-ether", &mstp_clks[MSTP813]),
Valentine Barshakb89dfdf2014-01-08 20:31:23 +0400347 CLKDEV_DEV_ID("r8a7790-vin.0", &mstp_clks[MSTP811]),
348 CLKDEV_DEV_ID("r8a7790-vin.1", &mstp_clks[MSTP810]),
349 CLKDEV_DEV_ID("r8a7790-vin.2", &mstp_clks[MSTP809]),
350 CLKDEV_DEV_ID("r8a7790-vin.3", &mstp_clks[MSTP808]),
Simon Hormana4b91be2013-06-26 17:34:34 +0900351 CLKDEV_DEV_ID("rcar_thermal", &mstp_clks[MSTP522]),
Kuninori Morimotof5b29472014-01-07 22:08:40 -0800352 CLKDEV_DEV_ID("sh-dma-engine.0", &mstp_clks[MSTP502]),
353 CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[MSTP501]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200354 CLKDEV_DEV_ID("sh_mmcif.0", &mstp_clks[MSTP315]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200355 CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP314]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200356 CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP313]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200357 CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP312]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200358 CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP311]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200359 CLKDEV_DEV_ID("sh_mmcif.1", &mstp_clks[MSTP305]),
Hiep Cao Minh3dd3b1c2013-10-22 11:21:11 +0900360 CLKDEV_DEV_ID("qspi.0", &mstp_clks[MSTP917]),
Valentine Barshak65779cb2013-10-10 02:14:46 +0400361 CLKDEV_DEV_ID("renesas_usbhs", &mstp_clks[MSTP704]),
Valentine Barshak012a7062014-01-25 02:28:48 +0400362 CLKDEV_DEV_ID("pci-rcar-gen2.0", &mstp_clks[MSTP703]),
363 CLKDEV_DEV_ID("pci-rcar-gen2.1", &mstp_clks[MSTP703]),
364 CLKDEV_DEV_ID("pci-rcar-gen2.2", &mstp_clks[MSTP703]),
Valentine Barshak64b7f9a2014-01-08 20:31:25 +0400365 CLKDEV_DEV_ID("sata-r8a7790.0", &mstp_clks[MSTP815]),
366 CLKDEV_DEV_ID("sata-r8a7790.1", &mstp_clks[MSTP814]),
Kuninori Morimotoeb7a9172013-11-19 01:05:23 -0800367
368 /* ICK */
Laurent Pinchart711ee6c2014-04-23 13:15:13 +0200369 CLKDEV_ICK_ID("fck", "sh-cmt-48-gen2.0", &mstp_clks[MSTP124]),
Valentine Barshak65779cb2013-10-10 02:14:46 +0400370 CLKDEV_ICK_ID("usbhs", "usb_phy_rcar_gen2", &mstp_clks[MSTP704]),
Kuninori Morimotoeb7a9172013-11-19 01:05:23 -0800371 CLKDEV_ICK_ID("lvds.0", "rcar-du-r8a7790", &mstp_clks[MSTP726]),
372 CLKDEV_ICK_ID("lvds.1", "rcar-du-r8a7790", &mstp_clks[MSTP725]),
373 CLKDEV_ICK_ID("du.0", "rcar-du-r8a7790", &mstp_clks[MSTP724]),
374 CLKDEV_ICK_ID("du.1", "rcar-du-r8a7790", &mstp_clks[MSTP723]),
375 CLKDEV_ICK_ID("du.2", "rcar-du-r8a7790", &mstp_clks[MSTP722]),
Kuninori Morimotoc7c2ec32014-01-13 18:25:39 -0800376 CLKDEV_ICK_ID("clk_a", "rcar_sound", &audio_clk_a),
377 CLKDEV_ICK_ID("clk_b", "rcar_sound", &audio_clk_b),
378 CLKDEV_ICK_ID("clk_c", "rcar_sound", &audio_clk_c),
379 CLKDEV_ICK_ID("clk_i", "rcar_sound", &m2_clk),
Kuninori Morimoto932616e2014-04-13 17:56:50 -0700380 CLKDEV_ICK_ID("src.0", "rcar_sound", &mstp_clks[MSTP1031]),
381 CLKDEV_ICK_ID("src.1", "rcar_sound", &mstp_clks[MSTP1030]),
382 CLKDEV_ICK_ID("src.2", "rcar_sound", &mstp_clks[MSTP1029]),
383 CLKDEV_ICK_ID("src.3", "rcar_sound", &mstp_clks[MSTP1028]),
384 CLKDEV_ICK_ID("src.4", "rcar_sound", &mstp_clks[MSTP1027]),
385 CLKDEV_ICK_ID("src.5", "rcar_sound", &mstp_clks[MSTP1026]),
386 CLKDEV_ICK_ID("src.6", "rcar_sound", &mstp_clks[MSTP1025]),
387 CLKDEV_ICK_ID("src.7", "rcar_sound", &mstp_clks[MSTP1024]),
388 CLKDEV_ICK_ID("src.8", "rcar_sound", &mstp_clks[MSTP1023]),
389 CLKDEV_ICK_ID("src.9", "rcar_sound", &mstp_clks[MSTP1022]),
Kuninori Morimotob3cc52e2013-12-01 18:17:18 -0800390 CLKDEV_ICK_ID("ssi.0", "rcar_sound", &mstp_clks[MSTP1015]),
391 CLKDEV_ICK_ID("ssi.1", "rcar_sound", &mstp_clks[MSTP1014]),
392 CLKDEV_ICK_ID("ssi.2", "rcar_sound", &mstp_clks[MSTP1013]),
393 CLKDEV_ICK_ID("ssi.3", "rcar_sound", &mstp_clks[MSTP1012]),
394 CLKDEV_ICK_ID("ssi.4", "rcar_sound", &mstp_clks[MSTP1011]),
395 CLKDEV_ICK_ID("ssi.5", "rcar_sound", &mstp_clks[MSTP1010]),
396 CLKDEV_ICK_ID("ssi.6", "rcar_sound", &mstp_clks[MSTP1009]),
397 CLKDEV_ICK_ID("ssi.7", "rcar_sound", &mstp_clks[MSTP1008]),
398 CLKDEV_ICK_ID("ssi.8", "rcar_sound", &mstp_clks[MSTP1007]),
399 CLKDEV_ICK_ID("ssi.9", "rcar_sound", &mstp_clks[MSTP1006]),
Kuninori Morimotoeb7a9172013-11-19 01:05:23 -0800400
Magnus Damm0468b2d2013-03-28 00:49:34 +0900401};
402
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700403#define R8A7790_CLOCK_ROOT(e, m, p0, p1, p30, p31) \
404 extal_clk.rate = e * 1000 * 1000; \
405 main_clk.parent = m; \
406 SH_CLK_SET_RATIO(&pll1_clk_ratio, p1 / 2, 1); \
407 if (mode & MD(19)) \
408 SH_CLK_SET_RATIO(&pll3_clk_ratio, p31, 1); \
409 else \
410 SH_CLK_SET_RATIO(&pll3_clk_ratio, p30, 1)
411
412
Magnus Damm0468b2d2013-03-28 00:49:34 +0900413void __init r8a7790_clock_init(void)
414{
Magnus Damm50c517d2013-09-12 09:32:49 +0900415 u32 mode = rcar_gen2_read_mode_pins();
Magnus Damm0468b2d2013-03-28 00:49:34 +0900416 int k, ret = 0;
417
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700418 switch (mode & (MD(14) | MD(13))) {
419 case 0:
420 R8A7790_CLOCK_ROOT(15, &extal_clk, 172, 208, 106, 88);
421 break;
422 case MD(13):
423 R8A7790_CLOCK_ROOT(20, &extal_clk, 130, 156, 80, 66);
424 break;
425 case MD(14):
Kuninori Morimoto31ac8e42013-11-19 01:04:20 -0800426 R8A7790_CLOCK_ROOT(26 / 2, &extal_div2_clk, 200, 240, 122, 102);
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700427 break;
428 case MD(13) | MD(14):
Kuninori Morimoto31ac8e42013-11-19 01:04:20 -0800429 R8A7790_CLOCK_ROOT(30 / 2, &extal_div2_clk, 172, 208, 106, 88);
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700430 break;
431 }
432
433 if (mode & (MD(18)))
434 SH_CLK_SET_RATIO(&lb_clk_ratio, 1, 36);
435 else
436 SH_CLK_SET_RATIO(&lb_clk_ratio, 1, 24);
437
438 if ((mode & (MD(3) | MD(2) | MD(1))) == MD(2))
439 SH_CLK_SET_RATIO(&qspi_clk_ratio, 1, 16);
440 else
441 SH_CLK_SET_RATIO(&qspi_clk_ratio, 1, 20);
442
Magnus Damm0468b2d2013-03-28 00:49:34 +0900443 for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
444 ret = clk_register(main_clks[k]);
445
446 if (!ret)
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700447 ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
448
449 if (!ret)
Kuninori Morimoto46632512013-04-12 00:43:09 -0700450 ret = sh_clk_div6_register(div6_clks, DIV6_NR);
451
452 if (!ret)
Magnus Damm0468b2d2013-03-28 00:49:34 +0900453 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
454
455 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
456
457 if (!ret)
458 shmobile_clk_init();
459 else
460 panic("failed to setup r8a7790 clocks\n");
461}