blob: c2c1895b9846638037b2bcaa275a4462454d50d2 [file] [log] [blame]
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -07001/*
2 * r8a7778 clock framework support
3 *
4 * Copyright (C) 2013 Renesas Solutions Corp.
5 * Copyright (C) 2013 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * based on r8a7779
8 *
9 * Copyright (C) 2011 Renesas Solutions Corp.
10 * Copyright (C) 2011 Magnus Damm
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -070026/*
27 * MD MD MD MD PLLA PLLB EXTAL clki clkz
28 * 19 18 12 11 (HMz) (MHz) (MHz)
29 *----------------------------------------------------------------------------
30 * 1 0 0 0 x21 x21 38.00 800 800
31 * 1 0 0 1 x24 x24 33.33 800 800
32 * 1 0 1 0 x28 x28 28.50 800 800
33 * 1 0 1 1 x32 x32 25.00 800 800
34 * 1 1 0 1 x24 x21 33.33 800 700
35 * 1 1 1 0 x28 x21 28.50 800 600
36 * 1 1 1 1 x32 x24 25.00 800 600
37 */
38
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -070039#include <linux/io.h>
40#include <linux/sh_clk.h>
41#include <linux/clkdev.h>
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -070042#include <mach/clock.h>
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -070043#include <mach/common.h>
44
45#define MSTPCR0 IOMEM(0xffc80030)
46#define MSTPCR1 IOMEM(0xffc80034)
47#define MSTPCR3 IOMEM(0xffc8003c)
48#define MSTPSR1 IOMEM(0xffc80044)
49#define MSTPSR4 IOMEM(0xffc80048)
50#define MSTPSR6 IOMEM(0xffc8004c)
51#define MSTPCR4 IOMEM(0xffc80050)
52#define MSTPCR5 IOMEM(0xffc80054)
53#define MSTPCR6 IOMEM(0xffc80058)
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -070054#define MODEMR 0xFFCC0020
55
56#define MD(nr) BIT(nr)
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -070057
58/* ioremap() through clock mapping mandatory to avoid
59 * collision with ARM coherent DMA virtual memory range.
60 */
61
62static struct clk_mapping cpg_mapping = {
63 .phys = 0xffc80000,
64 .len = 0x80,
65};
66
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -070067static struct clk extal_clk = {
68 /* .rate will be updated on r8a7778_clock_init() */
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -070069 .mapping = &cpg_mapping,
70};
71
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -070072/*
73 * clock ratio of these clock will be updated
74 * on r8a7778_clock_init()
75 */
76SH_FIXED_RATIO_CLK_SET(plla_clk, extal_clk, 1, 1);
77SH_FIXED_RATIO_CLK_SET(pllb_clk, extal_clk, 1, 1);
78SH_FIXED_RATIO_CLK_SET(i_clk, plla_clk, 1, 1);
79SH_FIXED_RATIO_CLK_SET(s_clk, plla_clk, 1, 1);
80SH_FIXED_RATIO_CLK_SET(s1_clk, plla_clk, 1, 1);
81SH_FIXED_RATIO_CLK_SET(s3_clk, plla_clk, 1, 1);
82SH_FIXED_RATIO_CLK_SET(s4_clk, plla_clk, 1, 1);
83SH_FIXED_RATIO_CLK_SET(b_clk, plla_clk, 1, 1);
84SH_FIXED_RATIO_CLK_SET(out_clk, plla_clk, 1, 1);
85SH_FIXED_RATIO_CLK_SET(p_clk, plla_clk, 1, 1);
86SH_FIXED_RATIO_CLK_SET(g_clk, plla_clk, 1, 1);
87SH_FIXED_RATIO_CLK_SET(z_clk, pllb_clk, 1, 1);
88
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -070089static struct clk *main_clks[] = {
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -070090 &extal_clk,
91 &plla_clk,
92 &pllb_clk,
93 &i_clk,
94 &s_clk,
95 &s1_clk,
96 &s3_clk,
97 &s4_clk,
98 &b_clk,
99 &out_clk,
100 &p_clk,
101 &g_clk,
102 &z_clk,
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -0700103};
104
105enum {
Kuninori Morimoto1189b1c2013-04-16 22:17:04 -0700106 MSTP323, MSTP322, MSTP321,
Sergei Shtylyov52421912013-04-04 18:55:46 +0000107 MSTP114,
Kuninori Morimotob6bb9a62013-06-03 22:10:24 -0700108 MSTP030,
109 MSTP029, MSTP028, MSTP027, MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -0700110 MSTP016, MSTP015,
Kuninori Morimoto3dd691e2013-06-03 22:11:24 -0700111 MSTP007,
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -0700112 MSTP_NR };
113
114static struct clk mstp_clks[MSTP_NR] = {
Kuninori Morimoto1189b1c2013-04-16 22:17:04 -0700115 [MSTP323] = SH_CLK_MSTP32(&p_clk, MSTPCR3, 23, 0), /* SDHI0 */
116 [MSTP322] = SH_CLK_MSTP32(&p_clk, MSTPCR3, 22, 0), /* SDHI1 */
117 [MSTP321] = SH_CLK_MSTP32(&p_clk, MSTPCR3, 21, 0), /* SDHI2 */
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -0700118 [MSTP114] = SH_CLK_MSTP32(&p_clk, MSTPCR1, 14, 0), /* Ether */
Kuninori Morimotob6bb9a62013-06-03 22:10:24 -0700119 [MSTP030] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 30, 0), /* I2C0 */
120 [MSTP029] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 29, 0), /* I2C1 */
121 [MSTP028] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 28, 0), /* I2C2 */
122 [MSTP027] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 27, 0), /* I2C3 */
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -0700123 [MSTP026] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 26, 0), /* SCIF0 */
124 [MSTP025] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 25, 0), /* SCIF1 */
125 [MSTP024] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 24, 0), /* SCIF2 */
126 [MSTP023] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 23, 0), /* SCIF3 */
127 [MSTP022] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 22, 0), /* SCIF4 */
128 [MSTP021] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 21, 0), /* SCIF5 */
129 [MSTP016] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 16, 0), /* TMU0 */
130 [MSTP015] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 15, 0), /* TMU1 */
Kuninori Morimoto3dd691e2013-06-03 22:11:24 -0700131 [MSTP007] = SH_CLK_MSTP32(&p_clk, MSTPCR0, 7, 0), /* HSPI */
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -0700132};
133
134static struct clk_lookup lookups[] = {
Kuninori Morimotob6bb9a62013-06-03 22:10:24 -0700135 /* main */
Kuninori Morimoto3dd691e2013-06-03 22:11:24 -0700136 CLKDEV_CON_ID("shyway_clk", &s_clk),
Kuninori Morimotob6bb9a62013-06-03 22:10:24 -0700137 CLKDEV_CON_ID("peripheral_clk", &p_clk),
138
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -0700139 /* MSTP32 clocks */
Kuninori Morimoto1189b1c2013-04-16 22:17:04 -0700140 CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP323]), /* SDHI0 */
141 CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP322]), /* SDHI1 */
142 CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP321]), /* SDHI2 */
Sergei Shtylyov52421912013-04-04 18:55:46 +0000143 CLKDEV_DEV_ID("sh-eth", &mstp_clks[MSTP114]), /* Ether */
Kuninori Morimotob6bb9a62013-06-03 22:10:24 -0700144 CLKDEV_DEV_ID("i2c-rcar.0", &mstp_clks[MSTP030]), /* I2C0 */
145 CLKDEV_DEV_ID("i2c-rcar.1", &mstp_clks[MSTP029]), /* I2C1 */
146 CLKDEV_DEV_ID("i2c-rcar.2", &mstp_clks[MSTP028]), /* I2C2 */
147 CLKDEV_DEV_ID("i2c-rcar.3", &mstp_clks[MSTP027]), /* I2C3 */
Kuninori Morimotodb331fc2013-03-21 03:02:38 -0700148 CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP026]), /* SCIF0 */
149 CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP025]), /* SCIF1 */
150 CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP024]), /* SCIF2 */
151 CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP023]), /* SCIF3 */
152 CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP022]), /* SCIF4 */
153 CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP021]), /* SCIF6 */
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -0700154 CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP016]), /* TMU00 */
155 CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP015]), /* TMU01 */
Kuninori Morimoto3dd691e2013-06-03 22:11:24 -0700156 CLKDEV_DEV_ID("sh-hspi.0", &mstp_clks[MSTP007]), /* HSPI0 */
157 CLKDEV_DEV_ID("sh-hspi.1", &mstp_clks[MSTP007]), /* HSPI1 */
158 CLKDEV_DEV_ID("sh-hspi.2", &mstp_clks[MSTP007]), /* HSPI2 */
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -0700159};
160
161void __init r8a7778_clock_init(void)
162{
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -0700163 void __iomem *modemr = ioremap_nocache(MODEMR, PAGE_SIZE);
164 u32 mode;
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -0700165 int k, ret = 0;
166
Kuninori Morimoto08b93ec2013-04-12 01:13:14 -0700167 BUG_ON(!modemr);
168 mode = ioread32(modemr);
169 iounmap(modemr);
170
171 switch (mode & (MD(19) | MD(18) | MD(12) | MD(11))) {
172 case MD(19):
173 extal_clk.rate = 38000000;
174 SH_CLK_SET_RATIO(&plla_clk_ratio, 21, 1);
175 SH_CLK_SET_RATIO(&pllb_clk_ratio, 21, 1);
176 break;
177 case MD(19) | MD(11):
178 extal_clk.rate = 33333333;
179 SH_CLK_SET_RATIO(&plla_clk_ratio, 24, 1);
180 SH_CLK_SET_RATIO(&pllb_clk_ratio, 24, 1);
181 break;
182 case MD(19) | MD(12):
183 extal_clk.rate = 28500000;
184 SH_CLK_SET_RATIO(&plla_clk_ratio, 28, 1);
185 SH_CLK_SET_RATIO(&pllb_clk_ratio, 28, 1);
186 break;
187 case MD(19) | MD(12) | MD(11):
188 extal_clk.rate = 25000000;
189 SH_CLK_SET_RATIO(&plla_clk_ratio, 32, 1);
190 SH_CLK_SET_RATIO(&pllb_clk_ratio, 32, 1);
191 break;
192 case MD(19) | MD(18) | MD(11):
193 extal_clk.rate = 33333333;
194 SH_CLK_SET_RATIO(&plla_clk_ratio, 24, 1);
195 SH_CLK_SET_RATIO(&pllb_clk_ratio, 21, 1);
196 break;
197 case MD(19) | MD(18) | MD(12):
198 extal_clk.rate = 28500000;
199 SH_CLK_SET_RATIO(&plla_clk_ratio, 28, 1);
200 SH_CLK_SET_RATIO(&pllb_clk_ratio, 21, 1);
201 break;
202 case MD(19) | MD(18) | MD(12) | MD(11):
203 extal_clk.rate = 25000000;
204 SH_CLK_SET_RATIO(&plla_clk_ratio, 32, 1);
205 SH_CLK_SET_RATIO(&pllb_clk_ratio, 24, 1);
206 break;
207 default:
208 BUG();
209 }
210
211 if (mode & MD(1)) {
212 SH_CLK_SET_RATIO(&i_clk_ratio, 1, 1);
213 SH_CLK_SET_RATIO(&s_clk_ratio, 1, 3);
214 SH_CLK_SET_RATIO(&s1_clk_ratio, 1, 6);
215 SH_CLK_SET_RATIO(&s3_clk_ratio, 1, 4);
216 SH_CLK_SET_RATIO(&s4_clk_ratio, 1, 8);
217 SH_CLK_SET_RATIO(&p_clk_ratio, 1, 12);
218 SH_CLK_SET_RATIO(&g_clk_ratio, 1, 12);
219 if (mode & MD(2)) {
220 SH_CLK_SET_RATIO(&b_clk_ratio, 1, 18);
221 SH_CLK_SET_RATIO(&out_clk_ratio, 1, 18);
222 } else {
223 SH_CLK_SET_RATIO(&b_clk_ratio, 1, 12);
224 SH_CLK_SET_RATIO(&out_clk_ratio, 1, 12);
225 }
226 } else {
227 SH_CLK_SET_RATIO(&i_clk_ratio, 1, 1);
228 SH_CLK_SET_RATIO(&s_clk_ratio, 1, 4);
229 SH_CLK_SET_RATIO(&s1_clk_ratio, 1, 8);
230 SH_CLK_SET_RATIO(&s3_clk_ratio, 1, 4);
231 SH_CLK_SET_RATIO(&s4_clk_ratio, 1, 8);
232 SH_CLK_SET_RATIO(&p_clk_ratio, 1, 16);
233 SH_CLK_SET_RATIO(&g_clk_ratio, 1, 12);
234 if (mode & MD(2)) {
235 SH_CLK_SET_RATIO(&b_clk_ratio, 1, 16);
236 SH_CLK_SET_RATIO(&out_clk_ratio, 1, 16);
237 } else {
238 SH_CLK_SET_RATIO(&b_clk_ratio, 1, 12);
239 SH_CLK_SET_RATIO(&out_clk_ratio, 1, 12);
240 }
241 }
242
Kuninori Morimotoccb7cc72013-03-21 03:01:36 -0700243 for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
244 ret = clk_register(main_clks[k]);
245
246 if (!ret)
247 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
248
249 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
250
251 if (!ret)
252 shmobile_clk_init();
253 else
254 panic("failed to setup r8a7778 clocks\n");
255}