blob: f62265200592f2915ec01dec37f420afb2495f2e [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>
Geert Uytterhoevenfccae892014-06-20 18:53:06 +020025
Magnus Dammad6ffa02014-06-17 16:47:21 +090026#include "clock.h"
Magnus Dammfd44aa52014-06-17 16:47:37 +090027#include "common.h"
Geert Uytterhoevenfccae892014-06-20 18:53:06 +020028#include "r8a7790.h"
Magnus Damm62872982014-06-17 16:48:01 +090029#include "rcar-gen2.h"
Magnus Damm0468b2d2013-03-28 00:49:34 +090030
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070031/*
32 * MD EXTAL PLL0 PLL1 PLL3
33 * 14 13 19 (MHz) *1 *1
34 *---------------------------------------------------
35 * 0 0 0 15 x 1 x172/2 x208/2 x106
36 * 0 0 1 15 x 1 x172/2 x208/2 x88
37 * 0 1 0 20 x 1 x130/2 x156/2 x80
38 * 0 1 1 20 x 1 x130/2 x156/2 x66
39 * 1 0 0 26 / 2 x200/2 x240/2 x122
40 * 1 0 1 26 / 2 x200/2 x240/2 x102
41 * 1 1 0 30 / 2 x172/2 x208/2 x106
42 * 1 1 1 30 / 2 x172/2 x208/2 x88
43 *
44 * *1 : Table 7.6 indicates VCO ouput (PLLx = VCO/2)
45 * see "p1 / 2" on R8A7790_CLOCK_ROOT() below
46 */
47
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +010048#define CPG_BASE 0xe6150000
49#define CPG_LEN 0x1000
Magnus Damm0468b2d2013-03-28 00:49:34 +090050
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +010051#define SMSTPCR1 0xe6150134
52#define SMSTPCR2 0xe6150138
53#define SMSTPCR3 0xe615013c
54#define SMSTPCR5 0xe6150144
55#define SMSTPCR7 0xe615014c
56#define SMSTPCR8 0xe6150990
57#define SMSTPCR9 0xe6150994
58#define SMSTPCR10 0xe6150998
59
60#define MSTPSR1 IOMEM(0xe6150038)
61#define MSTPSR2 IOMEM(0xe6150040)
62#define MSTPSR3 IOMEM(0xe6150048)
63#define MSTPSR5 IOMEM(0xe615003c)
64#define MSTPSR7 IOMEM(0xe61501c4)
65#define MSTPSR8 IOMEM(0xe61509a0)
66#define MSTPSR9 IOMEM(0xe61509a4)
67#define MSTPSR10 IOMEM(0xe61509a8)
Magnus Damm55d9fab2013-03-28 00:49:44 +090068
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -070069#define SDCKCR 0xE6150074
Kuninori Morimoto46632512013-04-12 00:43:09 -070070#define SD2CKCR 0xE6150078
Shinobu Ueharaa926a122014-10-30 14:57:56 +090071#define SD3CKCR 0xE615026C
Kuninori Morimoto46632512013-04-12 00:43:09 -070072#define MMC0CKCR 0xE6150240
73#define MMC1CKCR 0xE6150244
74#define SSPCKCR 0xE6150248
75#define SSPRSCKCR 0xE615024C
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070076
Magnus Damm0468b2d2013-03-28 00:49:34 +090077static struct clk_mapping cpg_mapping = {
78 .phys = CPG_BASE,
79 .len = CPG_LEN,
80};
81
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070082static struct clk extal_clk = {
83 /* .rate will be updated on r8a7790_clock_init() */
Magnus Damm55d9fab2013-03-28 00:49:44 +090084 .mapping = &cpg_mapping,
Magnus Damm0468b2d2013-03-28 00:49:34 +090085};
86
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070087static struct sh_clk_ops followparent_clk_ops = {
88 .recalc = followparent_recalc,
Magnus Damm55d9fab2013-03-28 00:49:44 +090089};
90
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070091static struct clk main_clk = {
Simon Horman7d947812013-11-06 13:58:55 +090092 /* .parent will be set r8a7790_clock_init */
Kuninori Morimoto8d100c02013-04-12 00:42:22 -070093 .ops = &followparent_clk_ops,
94};
95
Kuninori Morimotoc7c2ec32014-01-13 18:25:39 -080096static struct clk audio_clk_a = {
97};
98
99static struct clk audio_clk_b = {
100};
101
102static struct clk audio_clk_c = {
103};
104
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700105/*
106 * clock ratio of these clock will be updated
107 * on r8a7790_clock_init()
108 */
109SH_FIXED_RATIO_CLK_SET(pll1_clk, main_clk, 1, 1);
110SH_FIXED_RATIO_CLK_SET(pll3_clk, main_clk, 1, 1);
111SH_FIXED_RATIO_CLK_SET(lb_clk, pll1_clk, 1, 1);
112SH_FIXED_RATIO_CLK_SET(qspi_clk, pll1_clk, 1, 1);
113
114/* fixed ratio clock */
115SH_FIXED_RATIO_CLK_SET(extal_div2_clk, extal_clk, 1, 2);
116SH_FIXED_RATIO_CLK_SET(cp_clk, extal_clk, 1, 2);
117
118SH_FIXED_RATIO_CLK_SET(pll1_div2_clk, pll1_clk, 1, 2);
119SH_FIXED_RATIO_CLK_SET(zg_clk, pll1_clk, 1, 3);
120SH_FIXED_RATIO_CLK_SET(zx_clk, pll1_clk, 1, 3);
121SH_FIXED_RATIO_CLK_SET(zs_clk, pll1_clk, 1, 6);
122SH_FIXED_RATIO_CLK_SET(hp_clk, pll1_clk, 1, 12);
123SH_FIXED_RATIO_CLK_SET(i_clk, pll1_clk, 1, 2);
124SH_FIXED_RATIO_CLK_SET(b_clk, pll1_clk, 1, 12);
125SH_FIXED_RATIO_CLK_SET(p_clk, pll1_clk, 1, 24);
126SH_FIXED_RATIO_CLK_SET(cl_clk, pll1_clk, 1, 48);
127SH_FIXED_RATIO_CLK_SET(m2_clk, pll1_clk, 1, 8);
128SH_FIXED_RATIO_CLK_SET(imp_clk, pll1_clk, 1, 4);
129SH_FIXED_RATIO_CLK_SET(rclk_clk, pll1_clk, 1, (48 * 1024));
130SH_FIXED_RATIO_CLK_SET(oscclk_clk, pll1_clk, 1, (12 * 1024));
131
132SH_FIXED_RATIO_CLK_SET(zb3_clk, pll3_clk, 1, 4);
133SH_FIXED_RATIO_CLK_SET(zb3d2_clk, pll3_clk, 1, 8);
134SH_FIXED_RATIO_CLK_SET(ddr_clk, pll3_clk, 1, 8);
135SH_FIXED_RATIO_CLK_SET(mp_clk, pll1_div2_clk, 1, 15);
136
Magnus Damm55d9fab2013-03-28 00:49:44 +0900137static struct clk *main_clks[] = {
Kuninori Morimotoc7c2ec32014-01-13 18:25:39 -0800138 &audio_clk_a,
139 &audio_clk_b,
140 &audio_clk_c,
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700141 &extal_clk,
142 &extal_div2_clk,
143 &main_clk,
144 &pll1_clk,
145 &pll1_div2_clk,
146 &pll3_clk,
147 &lb_clk,
148 &qspi_clk,
149 &zg_clk,
150 &zx_clk,
151 &zs_clk,
152 &hp_clk,
153 &i_clk,
154 &b_clk,
Magnus Damm55d9fab2013-03-28 00:49:44 +0900155 &p_clk,
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700156 &cl_clk,
157 &m2_clk,
158 &imp_clk,
159 &rclk_clk,
160 &oscclk_clk,
161 &zb3_clk,
162 &zb3d2_clk,
163 &ddr_clk,
Magnus Damm55d9fab2013-03-28 00:49:44 +0900164 &mp_clk,
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700165 &cp_clk,
Magnus Damm55d9fab2013-03-28 00:49:44 +0900166};
167
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700168/* SDHI (DIV4) clock */
169static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 18, 24, 0, 36, 48, 10 };
170
171static struct clk_div_mult_table div4_div_mult_table = {
172 .divisors = divisors,
173 .nr_divisors = ARRAY_SIZE(divisors),
174};
175
176static struct clk_div4_table div4_table = {
177 .div_mult_table = &div4_div_mult_table,
178};
179
180enum {
181 DIV4_SDH, DIV4_SD0, DIV4_SD1, DIV4_NR
182};
183
Laurent Pinchart72378a42013-04-16 17:16:20 +0200184static struct clk div4_clks[DIV4_NR] = {
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700185 [DIV4_SDH] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 8, 0x0dff, CLK_ENABLE_ON_INIT),
Kuninori Morimoto4fb12fe2014-08-05 18:24:30 -0700186 [DIV4_SD0] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 4, 0x1df0, CLK_ENABLE_ON_INIT),
187 [DIV4_SD1] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 0, 0x1df0, CLK_ENABLE_ON_INIT),
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700188};
189
Kuninori Morimoto46632512013-04-12 00:43:09 -0700190/* DIV6 clocks */
191enum {
192 DIV6_SD2, DIV6_SD3,
193 DIV6_MMC0, DIV6_MMC1,
194 DIV6_SSP, DIV6_SSPRS,
195 DIV6_NR
196};
197
198static struct clk div6_clks[DIV6_NR] = {
199 [DIV6_SD2] = SH_CLK_DIV6(&pll1_div2_clk, SD2CKCR, 0),
200 [DIV6_SD3] = SH_CLK_DIV6(&pll1_div2_clk, SD3CKCR, 0),
201 [DIV6_MMC0] = SH_CLK_DIV6(&pll1_div2_clk, MMC0CKCR, 0),
202 [DIV6_MMC1] = SH_CLK_DIV6(&pll1_div2_clk, MMC1CKCR, 0),
203 [DIV6_SSP] = SH_CLK_DIV6(&pll1_div2_clk, SSPCKCR, 0),
204 [DIV6_SSPRS] = SH_CLK_DIV6(&pll1_div2_clk, SSPRSCKCR, 0),
205};
206
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700207/* MSTP */
Laurent Pinchartaa9c1852013-04-24 22:36:01 +0200208enum {
Kuninori Morimoto9ced1d472014-02-18 19:28:11 -0800209 MSTP1017, /* parent of SCU */
210
211 MSTP1031, MSTP1030,
212 MSTP1029, MSTP1028, MSTP1027, MSTP1026, MSTP1025, MSTP1024, MSTP1023, MSTP1022,
Kuninori Morimotob3cc52e2013-12-01 18:17:18 -0800213 MSTP1015, MSTP1014, MSTP1013, MSTP1012, MSTP1011, MSTP1010,
214 MSTP1009, MSTP1008, MSTP1007, MSTP1006, MSTP1005,
Guennadi Liakhovetski911a6442013-09-26 19:20:57 +0200215 MSTP931, MSTP930, MSTP929, MSTP928,
Hiep Cao Minh3dd3b1c2013-10-22 11:21:11 +0900216 MSTP917,
Valentine Barshak64b7f9a2014-01-08 20:31:25 +0400217 MSTP815, MSTP814,
Simon Horman9b0b9c02013-08-06 16:50:09 +0900218 MSTP813,
Valentine Barshakb89dfdf2014-01-08 20:31:23 +0400219 MSTP811, MSTP810, MSTP809, MSTP808,
Laurent Pinchart9d8907c2013-04-17 11:33:56 +0200220 MSTP726, MSTP725, MSTP724, MSTP723, MSTP722, MSTP721, MSTP720,
Ulrich Hecht729cb822013-05-31 17:57:02 +0200221 MSTP717, MSTP716,
Valentine Barshak012a7062014-01-25 02:28:48 +0400222 MSTP704, MSTP703,
Simon Hormana4b91be2013-06-26 17:34:34 +0900223 MSTP522,
Kuninori Morimotof5b29472014-01-07 22:08:40 -0800224 MSTP502, MSTP501,
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200225 MSTP315, MSTP314, MSTP313, MSTP312, MSTP311, MSTP305, MSTP304,
Laurent Pinchartaa9c1852013-04-24 22:36:01 +0200226 MSTP216, MSTP207, MSTP206, MSTP204, MSTP203, MSTP202,
Magnus Damm99ade1a2013-06-28 20:27:04 +0900227 MSTP124,
Laurent Pinchartaa9c1852013-04-24 22:36:01 +0200228 MSTP_NR
229};
230
Magnus Damm0468b2d2013-03-28 00:49:34 +0900231static struct clk mstp_clks[MSTP_NR] = {
Kuninori Morimoto9ced1d472014-02-18 19:28:11 -0800232 [MSTP1031] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 31, MSTPSR10, 0), /* SCU0 */
233 [MSTP1030] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 30, MSTPSR10, 0), /* SCU1 */
234 [MSTP1029] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 29, MSTPSR10, 0), /* SCU2 */
235 [MSTP1028] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 28, MSTPSR10, 0), /* SCU3 */
236 [MSTP1027] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 27, MSTPSR10, 0), /* SCU4 */
237 [MSTP1026] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 26, MSTPSR10, 0), /* SCU5 */
238 [MSTP1025] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 25, MSTPSR10, 0), /* SCU6 */
239 [MSTP1024] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 24, MSTPSR10, 0), /* SCU7 */
240 [MSTP1023] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 23, MSTPSR10, 0), /* SCU8 */
241 [MSTP1022] = SH_CLK_MSTP32_STS(&mstp_clks[MSTP1017], SMSTPCR10, 22, MSTPSR10, 0), /* SCU9 */
242 [MSTP1017] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 17, MSTPSR10, 0), /* SCU */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100243 [MSTP1015] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 15, MSTPSR10, 0), /* SSI0 */
244 [MSTP1014] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 14, MSTPSR10, 0), /* SSI1 */
245 [MSTP1013] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 13, MSTPSR10, 0), /* SSI2 */
246 [MSTP1012] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 12, MSTPSR10, 0), /* SSI3 */
247 [MSTP1011] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 11, MSTPSR10, 0), /* SSI4 */
248 [MSTP1010] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 10, MSTPSR10, 0), /* SSI5 */
249 [MSTP1009] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 9, MSTPSR10, 0), /* SSI6 */
250 [MSTP1008] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 8, MSTPSR10, 0), /* SSI7 */
251 [MSTP1007] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 7, MSTPSR10, 0), /* SSI8 */
252 [MSTP1006] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 6, MSTPSR10, 0), /* SSI9 */
253 [MSTP1005] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR10, 5, MSTPSR10, 0), /* SSI ALL */
Laurent Pinchartab077bf2014-04-01 13:02:15 +0200254 [MSTP931] = SH_CLK_MSTP32_STS(&hp_clk, SMSTPCR9, 31, MSTPSR9, 0), /* I2C0 */
255 [MSTP930] = SH_CLK_MSTP32_STS(&hp_clk, SMSTPCR9, 30, MSTPSR9, 0), /* I2C1 */
256 [MSTP929] = SH_CLK_MSTP32_STS(&hp_clk, SMSTPCR9, 29, MSTPSR9, 0), /* I2C2 */
257 [MSTP928] = SH_CLK_MSTP32_STS(&hp_clk, SMSTPCR9, 28, MSTPSR9, 0), /* I2C3 */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100258 [MSTP917] = SH_CLK_MSTP32_STS(&qspi_clk, SMSTPCR9, 17, MSTPSR9, 0), /* QSPI */
Valentine Barshak64b7f9a2014-01-08 20:31:25 +0400259 [MSTP815] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR8, 15, MSTPSR8, 0), /* SATA0 */
260 [MSTP814] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR8, 14, MSTPSR8, 0), /* SATA1 */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100261 [MSTP813] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR8, 13, MSTPSR8, 0), /* Ether */
Valentine Barshakb89dfdf2014-01-08 20:31:23 +0400262 [MSTP811] = SH_CLK_MSTP32_STS(&zg_clk, SMSTPCR8, 11, MSTPSR8, 0), /* VIN0 */
263 [MSTP810] = SH_CLK_MSTP32_STS(&zg_clk, SMSTPCR8, 10, MSTPSR8, 0), /* VIN1 */
264 [MSTP809] = SH_CLK_MSTP32_STS(&zg_clk, SMSTPCR8, 9, MSTPSR8, 0), /* VIN2 */
265 [MSTP808] = SH_CLK_MSTP32_STS(&zg_clk, SMSTPCR8, 8, MSTPSR8, 0), /* VIN3 */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100266 [MSTP726] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 26, MSTPSR7, 0), /* LVDS0 */
267 [MSTP725] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 25, MSTPSR7, 0), /* LVDS1 */
268 [MSTP724] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 24, MSTPSR7, 0), /* DU0 */
269 [MSTP723] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 23, MSTPSR7, 0), /* DU1 */
270 [MSTP722] = SH_CLK_MSTP32_STS(&zx_clk, SMSTPCR7, 22, MSTPSR7, 0), /* DU2 */
271 [MSTP721] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR7, 21, MSTPSR7, 0), /* SCIF0 */
272 [MSTP720] = SH_CLK_MSTP32_STS(&p_clk, SMSTPCR7, 20, MSTPSR7, 0), /* SCIF1 */
273 [MSTP717] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR7, 17, MSTPSR7, 0), /* HSCIF0 */
274 [MSTP716] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR7, 16, MSTPSR7, 0), /* HSCIF1 */
275 [MSTP704] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR7, 4, MSTPSR7, 0), /* HSUSB */
Valentine Barshak012a7062014-01-25 02:28:48 +0400276 [MSTP703] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR7, 3, MSTPSR7, 0), /* EHCI */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100277 [MSTP522] = SH_CLK_MSTP32_STS(&extal_clk, SMSTPCR5, 22, MSTPSR5, 0), /* Thermal */
Kuninori Morimotof5b29472014-01-07 22:08:40 -0800278 [MSTP502] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR5, 2, MSTPSR5, 0), /* Audio-DMAC low */
279 [MSTP501] = SH_CLK_MSTP32_STS(&zs_clk, SMSTPCR5, 1, MSTPSR5, 0), /* Audio-DMAC hi */
Shinya Kuribayashicb9ec3a2013-12-14 16:23:53 +0100280 [MSTP315] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_MMC0], SMSTPCR3, 15, MSTPSR3, 0), /* MMC0 */
281 [MSTP314] = SH_CLK_MSTP32_STS(&div4_clks[DIV4_SD0], SMSTPCR3, 14, MSTPSR3, 0), /* SDHI0 */
282 [MSTP313] = SH_CLK_MSTP32_STS(&div4_clks[DIV4_SD1], SMSTPCR3, 13, MSTPSR3, 0), /* SDHI1 */
283 [MSTP312] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_SD2], SMSTPCR3, 12, MSTPSR3, 0), /* SDHI2 */
284 [MSTP311] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_SD3], SMSTPCR3, 11, MSTPSR3, 0), /* SDHI3 */
285 [MSTP305] = SH_CLK_MSTP32_STS(&div6_clks[DIV6_MMC1], SMSTPCR3, 5, MSTPSR3, 0), /* MMC1 */
286 [MSTP304] = SH_CLK_MSTP32_STS(&cp_clk, SMSTPCR3, 4, MSTPSR3, 0), /* TPU0 */
287 [MSTP216] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 16, MSTPSR2, 0), /* SCIFB2 */
288 [MSTP207] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 7, MSTPSR2, 0), /* SCIFB1 */
289 [MSTP206] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 6, MSTPSR2, 0), /* SCIFB0 */
290 [MSTP204] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 4, MSTPSR2, 0), /* SCIFA0 */
291 [MSTP203] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 3, MSTPSR2, 0), /* SCIFA1 */
292 [MSTP202] = SH_CLK_MSTP32_STS(&mp_clk, SMSTPCR2, 2, MSTPSR2, 0), /* SCIFA2 */
293 [MSTP124] = SH_CLK_MSTP32_STS(&rclk_clk, SMSTPCR1, 24, MSTPSR1, 0), /* CMT0 */
Magnus Damm0468b2d2013-03-28 00:49:34 +0900294};
295
296static struct clk_lookup lookups[] = {
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700297
298 /* main clocks */
299 CLKDEV_CON_ID("extal", &extal_clk),
300 CLKDEV_CON_ID("extal_div2", &extal_div2_clk),
301 CLKDEV_CON_ID("main", &main_clk),
302 CLKDEV_CON_ID("pll1", &pll1_clk),
303 CLKDEV_CON_ID("pll1_div2", &pll1_div2_clk),
304 CLKDEV_CON_ID("pll3", &pll3_clk),
305 CLKDEV_CON_ID("zg", &zg_clk),
306 CLKDEV_CON_ID("zx", &zx_clk),
307 CLKDEV_CON_ID("zs", &zs_clk),
308 CLKDEV_CON_ID("hp", &hp_clk),
309 CLKDEV_CON_ID("i", &i_clk),
310 CLKDEV_CON_ID("b", &b_clk),
311 CLKDEV_CON_ID("lb", &lb_clk),
312 CLKDEV_CON_ID("p", &p_clk),
313 CLKDEV_CON_ID("cl", &cl_clk),
314 CLKDEV_CON_ID("m2", &m2_clk),
315 CLKDEV_CON_ID("imp", &imp_clk),
316 CLKDEV_CON_ID("rclk", &rclk_clk),
317 CLKDEV_CON_ID("oscclk", &oscclk_clk),
318 CLKDEV_CON_ID("zb3", &zb3_clk),
319 CLKDEV_CON_ID("zb3d2", &zb3d2_clk),
320 CLKDEV_CON_ID("ddr", &ddr_clk),
321 CLKDEV_CON_ID("mp", &mp_clk),
322 CLKDEV_CON_ID("qspi", &qspi_clk),
323 CLKDEV_CON_ID("cp", &cp_clk),
324
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700325 /* DIV4 */
326 CLKDEV_CON_ID("sdh", &div4_clks[DIV4_SDH]),
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700327
Kuninori Morimoto46632512013-04-12 00:43:09 -0700328 /* DIV6 */
Kuninori Morimoto46632512013-04-12 00:43:09 -0700329 CLKDEV_CON_ID("ssp", &div6_clks[DIV6_SSP]),
330 CLKDEV_CON_ID("ssprs", &div6_clks[DIV6_SSPRS]),
331
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700332 /* MSTP */
Kuninori Morimotob3cc52e2013-12-01 18:17:18 -0800333 CLKDEV_DEV_ID("rcar_sound", &mstp_clks[MSTP1005]),
Magnus Damm55d9fab2013-03-28 00:49:44 +0900334 CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]),
335 CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP203]),
336 CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP206]),
337 CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP207]),
338 CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP216]),
339 CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP202]),
340 CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP721]),
341 CLKDEV_DEV_ID("sh-sci.7", &mstp_clks[MSTP720]),
Ulrich Hecht729cb822013-05-31 17:57:02 +0200342 CLKDEV_DEV_ID("sh-sci.8", &mstp_clks[MSTP717]),
343 CLKDEV_DEV_ID("sh-sci.9", &mstp_clks[MSTP716]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400344 CLKDEV_DEV_ID("i2c-rcar_gen2.0", &mstp_clks[MSTP931]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400345 CLKDEV_DEV_ID("i2c-rcar_gen2.1", &mstp_clks[MSTP930]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400346 CLKDEV_DEV_ID("i2c-rcar_gen2.2", &mstp_clks[MSTP929]),
Valentine Barshakdb455c72013-12-27 14:58:08 +0400347 CLKDEV_DEV_ID("i2c-rcar_gen2.3", &mstp_clks[MSTP928]),
Simon Horman9b0b9c02013-08-06 16:50:09 +0900348 CLKDEV_DEV_ID("r8a7790-ether", &mstp_clks[MSTP813]),
Valentine Barshakb89dfdf2014-01-08 20:31:23 +0400349 CLKDEV_DEV_ID("r8a7790-vin.0", &mstp_clks[MSTP811]),
350 CLKDEV_DEV_ID("r8a7790-vin.1", &mstp_clks[MSTP810]),
351 CLKDEV_DEV_ID("r8a7790-vin.2", &mstp_clks[MSTP809]),
352 CLKDEV_DEV_ID("r8a7790-vin.3", &mstp_clks[MSTP808]),
Simon Hormana4b91be2013-06-26 17:34:34 +0900353 CLKDEV_DEV_ID("rcar_thermal", &mstp_clks[MSTP522]),
Kuninori Morimotof5b29472014-01-07 22:08:40 -0800354 CLKDEV_DEV_ID("sh-dma-engine.0", &mstp_clks[MSTP502]),
355 CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[MSTP501]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200356 CLKDEV_DEV_ID("sh_mmcif.0", &mstp_clks[MSTP315]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200357 CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP314]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200358 CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP313]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200359 CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP312]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200360 CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP311]),
Guennadi Liakhovetski018222f2013-05-17 16:55:15 +0200361 CLKDEV_DEV_ID("sh_mmcif.1", &mstp_clks[MSTP305]),
Hiep Cao Minh3dd3b1c2013-10-22 11:21:11 +0900362 CLKDEV_DEV_ID("qspi.0", &mstp_clks[MSTP917]),
Valentine Barshak65779cb2013-10-10 02:14:46 +0400363 CLKDEV_DEV_ID("renesas_usbhs", &mstp_clks[MSTP704]),
Valentine Barshak012a7062014-01-25 02:28:48 +0400364 CLKDEV_DEV_ID("pci-rcar-gen2.0", &mstp_clks[MSTP703]),
365 CLKDEV_DEV_ID("pci-rcar-gen2.1", &mstp_clks[MSTP703]),
366 CLKDEV_DEV_ID("pci-rcar-gen2.2", &mstp_clks[MSTP703]),
Valentine Barshak64b7f9a2014-01-08 20:31:25 +0400367 CLKDEV_DEV_ID("sata-r8a7790.0", &mstp_clks[MSTP815]),
368 CLKDEV_DEV_ID("sata-r8a7790.1", &mstp_clks[MSTP814]),
Kuninori Morimotoeb7a9172013-11-19 01:05:23 -0800369
370 /* ICK */
Laurent Pinchart711ee6c2014-04-23 13:15:13 +0200371 CLKDEV_ICK_ID("fck", "sh-cmt-48-gen2.0", &mstp_clks[MSTP124]),
Valentine Barshak65779cb2013-10-10 02:14:46 +0400372 CLKDEV_ICK_ID("usbhs", "usb_phy_rcar_gen2", &mstp_clks[MSTP704]),
Kuninori Morimotoeb7a9172013-11-19 01:05:23 -0800373 CLKDEV_ICK_ID("lvds.0", "rcar-du-r8a7790", &mstp_clks[MSTP726]),
374 CLKDEV_ICK_ID("lvds.1", "rcar-du-r8a7790", &mstp_clks[MSTP725]),
375 CLKDEV_ICK_ID("du.0", "rcar-du-r8a7790", &mstp_clks[MSTP724]),
376 CLKDEV_ICK_ID("du.1", "rcar-du-r8a7790", &mstp_clks[MSTP723]),
377 CLKDEV_ICK_ID("du.2", "rcar-du-r8a7790", &mstp_clks[MSTP722]),
Kuninori Morimotoc7c2ec32014-01-13 18:25:39 -0800378 CLKDEV_ICK_ID("clk_a", "rcar_sound", &audio_clk_a),
379 CLKDEV_ICK_ID("clk_b", "rcar_sound", &audio_clk_b),
380 CLKDEV_ICK_ID("clk_c", "rcar_sound", &audio_clk_c),
381 CLKDEV_ICK_ID("clk_i", "rcar_sound", &m2_clk),
Kuninori Morimoto932616e2014-04-13 17:56:50 -0700382 CLKDEV_ICK_ID("src.0", "rcar_sound", &mstp_clks[MSTP1031]),
383 CLKDEV_ICK_ID("src.1", "rcar_sound", &mstp_clks[MSTP1030]),
384 CLKDEV_ICK_ID("src.2", "rcar_sound", &mstp_clks[MSTP1029]),
385 CLKDEV_ICK_ID("src.3", "rcar_sound", &mstp_clks[MSTP1028]),
386 CLKDEV_ICK_ID("src.4", "rcar_sound", &mstp_clks[MSTP1027]),
387 CLKDEV_ICK_ID("src.5", "rcar_sound", &mstp_clks[MSTP1026]),
388 CLKDEV_ICK_ID("src.6", "rcar_sound", &mstp_clks[MSTP1025]),
389 CLKDEV_ICK_ID("src.7", "rcar_sound", &mstp_clks[MSTP1024]),
390 CLKDEV_ICK_ID("src.8", "rcar_sound", &mstp_clks[MSTP1023]),
391 CLKDEV_ICK_ID("src.9", "rcar_sound", &mstp_clks[MSTP1022]),
Kuninori Morimotob3cc52e2013-12-01 18:17:18 -0800392 CLKDEV_ICK_ID("ssi.0", "rcar_sound", &mstp_clks[MSTP1015]),
393 CLKDEV_ICK_ID("ssi.1", "rcar_sound", &mstp_clks[MSTP1014]),
394 CLKDEV_ICK_ID("ssi.2", "rcar_sound", &mstp_clks[MSTP1013]),
395 CLKDEV_ICK_ID("ssi.3", "rcar_sound", &mstp_clks[MSTP1012]),
396 CLKDEV_ICK_ID("ssi.4", "rcar_sound", &mstp_clks[MSTP1011]),
397 CLKDEV_ICK_ID("ssi.5", "rcar_sound", &mstp_clks[MSTP1010]),
398 CLKDEV_ICK_ID("ssi.6", "rcar_sound", &mstp_clks[MSTP1009]),
399 CLKDEV_ICK_ID("ssi.7", "rcar_sound", &mstp_clks[MSTP1008]),
400 CLKDEV_ICK_ID("ssi.8", "rcar_sound", &mstp_clks[MSTP1007]),
401 CLKDEV_ICK_ID("ssi.9", "rcar_sound", &mstp_clks[MSTP1006]),
Kuninori Morimotoeb7a9172013-11-19 01:05:23 -0800402
Magnus Damm0468b2d2013-03-28 00:49:34 +0900403};
404
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700405#define R8A7790_CLOCK_ROOT(e, m, p0, p1, p30, p31) \
406 extal_clk.rate = e * 1000 * 1000; \
407 main_clk.parent = m; \
408 SH_CLK_SET_RATIO(&pll1_clk_ratio, p1 / 2, 1); \
409 if (mode & MD(19)) \
410 SH_CLK_SET_RATIO(&pll3_clk_ratio, p31, 1); \
411 else \
412 SH_CLK_SET_RATIO(&pll3_clk_ratio, p30, 1)
413
414
Magnus Damm0468b2d2013-03-28 00:49:34 +0900415void __init r8a7790_clock_init(void)
416{
Magnus Damm50c517d2013-09-12 09:32:49 +0900417 u32 mode = rcar_gen2_read_mode_pins();
Magnus Damm0468b2d2013-03-28 00:49:34 +0900418 int k, ret = 0;
419
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700420 switch (mode & (MD(14) | MD(13))) {
421 case 0:
422 R8A7790_CLOCK_ROOT(15, &extal_clk, 172, 208, 106, 88);
423 break;
424 case MD(13):
425 R8A7790_CLOCK_ROOT(20, &extal_clk, 130, 156, 80, 66);
426 break;
427 case MD(14):
Kuninori Morimoto31ac8e42013-11-19 01:04:20 -0800428 R8A7790_CLOCK_ROOT(26 / 2, &extal_div2_clk, 200, 240, 122, 102);
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700429 break;
430 case MD(13) | MD(14):
Kuninori Morimoto31ac8e42013-11-19 01:04:20 -0800431 R8A7790_CLOCK_ROOT(30 / 2, &extal_div2_clk, 172, 208, 106, 88);
Kuninori Morimoto8d100c02013-04-12 00:42:22 -0700432 break;
433 }
434
435 if (mode & (MD(18)))
436 SH_CLK_SET_RATIO(&lb_clk_ratio, 1, 36);
437 else
438 SH_CLK_SET_RATIO(&lb_clk_ratio, 1, 24);
439
440 if ((mode & (MD(3) | MD(2) | MD(1))) == MD(2))
441 SH_CLK_SET_RATIO(&qspi_clk_ratio, 1, 16);
442 else
443 SH_CLK_SET_RATIO(&qspi_clk_ratio, 1, 20);
444
Magnus Damm0468b2d2013-03-28 00:49:34 +0900445 for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
446 ret = clk_register(main_clks[k]);
447
448 if (!ret)
Kuninori Morimoto9f13ee62013-04-12 00:42:52 -0700449 ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
450
451 if (!ret)
Kuninori Morimoto46632512013-04-12 00:43:09 -0700452 ret = sh_clk_div6_register(div6_clks, DIV6_NR);
453
454 if (!ret)
Magnus Damm0468b2d2013-03-28 00:49:34 +0900455 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
456
457 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
458
459 if (!ret)
460 shmobile_clk_init();
461 else
462 panic("failed to setup r8a7790 clocks\n");
463}