blob: 10340f5becbb32400d6f481c8484be3fba54e891 [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 */
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070020#include <linux/bitops.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090021#include <linux/init.h>
22#include <linux/kernel.h>
23#include <linux/io.h>
24#include <linux/sh_clk.h>
25#include <linux/clkdev.h>
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070026#include <mach/clock.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090027#include <mach/common.h>
28
Kuninori Morimotof0ff5a02013-04-04 00:07:14 -070029/*
30 * MD1 = 1 MD1 = 0
31 * (PLLA = 1500) (PLLA = 1600)
32 * (MHz) (MHz)
33 *------------------------------------------------+--------------------
34 * clkz 1000 (2/3) 800 (1/2)
35 * clkzs 250 (1/6) 200 (1/8)
36 * clki 750 (1/2) 800 (1/2)
37 * clks 250 (1/6) 200 (1/8)
38 * clks1 125 (1/12) 100 (1/16)
39 * clks3 187.5 (1/8) 200 (1/8)
40 * clks4 93.7 (1/16) 100 (1/16)
41 * clkp 62.5 (1/24) 50 (1/32)
42 * clkg 62.5 (1/24) 66.6 (1/24)
43 * clkb, CLKOUT
44 * (MD2 = 0) 62.5 (1/24) 66.6 (1/24)
45 * (MD2 = 1) 41.6 (1/36) 50 (1/32)
46*/
47
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070048#define MD(nr) BIT(nr)
49
Kuninori Morimoto11f93572012-10-15 01:10:28 -070050#define FRQMR IOMEM(0xffc80014)
51#define MSTPCR0 IOMEM(0xffc80030)
52#define MSTPCR1 IOMEM(0xffc80034)
53#define MSTPCR3 IOMEM(0xffc8003c)
54#define MSTPSR1 IOMEM(0xffc80044)
55#define MSTPSR4 IOMEM(0xffc80048)
56#define MSTPSR6 IOMEM(0xffc8004c)
57#define MSTPCR4 IOMEM(0xffc80050)
58#define MSTPCR5 IOMEM(0xffc80054)
59#define MSTPCR6 IOMEM(0xffc80058)
60#define MSTPCR7 IOMEM(0xffc80040)
Magnus Dammf411fad2011-12-14 01:36:12 +090061
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070062#define MODEMR 0xffcc0020
63
64
Magnus Dammf411fad2011-12-14 01:36:12 +090065/* ioremap() through clock mapping mandatory to avoid
66 * collision with ARM coherent DMA virtual memory range.
67 */
68
69static struct clk_mapping cpg_mapping = {
70 .phys = 0xffc80000,
71 .len = 0x80,
72};
73
Kuninori Morimotob5813c72011-12-20 00:52:06 -080074/*
75 * Default rate for the root input clock, reset this with clk_set_rate()
76 * from the platform code.
77 */
78static struct clk plla_clk = {
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070079 /* .rate will be updated on r8a7779_clock_init() */
Kuninori Morimotob5813c72011-12-20 00:52:06 -080080 .mapping = &cpg_mapping,
Magnus Dammf411fad2011-12-14 01:36:12 +090081};
82
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070083/*
84 * clock ratio of these clock will be updated
85 * on r8a7779_clock_init()
86 */
87SH_FIXED_RATIO_CLK_SET(clkz_clk, plla_clk, 1, 1);
88SH_FIXED_RATIO_CLK_SET(clkzs_clk, plla_clk, 1, 1);
89SH_FIXED_RATIO_CLK_SET(clki_clk, plla_clk, 1, 1);
90SH_FIXED_RATIO_CLK_SET(clks_clk, plla_clk, 1, 1);
91SH_FIXED_RATIO_CLK_SET(clks1_clk, plla_clk, 1, 1);
92SH_FIXED_RATIO_CLK_SET(clks3_clk, plla_clk, 1, 1);
93SH_FIXED_RATIO_CLK_SET(clks4_clk, plla_clk, 1, 1);
94SH_FIXED_RATIO_CLK_SET(clkb_clk, plla_clk, 1, 1);
95SH_FIXED_RATIO_CLK_SET(clkout_clk, plla_clk, 1, 1);
96SH_FIXED_RATIO_CLK_SET(clkp_clk, plla_clk, 1, 1);
97SH_FIXED_RATIO_CLK_SET(clkg_clk, plla_clk, 1, 1);
98
Magnus Dammf411fad2011-12-14 01:36:12 +090099static struct clk *main_clks[] = {
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800100 &plla_clk,
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700101 &clkz_clk,
102 &clkzs_clk,
103 &clki_clk,
104 &clks_clk,
105 &clks1_clk,
106 &clks3_clk,
107 &clks4_clk,
108 &clkb_clk,
109 &clkout_clk,
110 &clkp_clk,
111 &clkg_clk,
Magnus Dammf411fad2011-12-14 01:36:12 +0900112};
113
Phil Edworthy263510e2012-08-06 13:31:04 +0100114enum { MSTP323, MSTP322, MSTP321, MSTP320,
Phil Edworthy0f704e122013-04-09 14:35:15 +0000115 MSTP116, MSTP115, MSTP114,
Phil Edworthyd75bc782013-01-31 02:45:01 +0100116 MSTP103, MSTP101, MSTP100,
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700117 MSTP030,
118 MSTP029, MSTP028, MSTP027, MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
Magnus Dammf411fad2011-12-14 01:36:12 +0900119 MSTP016, MSTP015, MSTP014,
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700120 MSTP007,
Magnus Dammf411fad2011-12-14 01:36:12 +0900121 MSTP_NR };
122
Magnus Dammf411fad2011-12-14 01:36:12 +0900123static struct clk mstp_clks[MSTP_NR] = {
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700124 [MSTP323] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 23, 0), /* SDHI0 */
125 [MSTP322] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 22, 0), /* SDHI1 */
126 [MSTP321] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 21, 0), /* SDHI2 */
127 [MSTP320] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 20, 0), /* SDHI3 */
Phil Edworthy0f704e122013-04-09 14:35:15 +0000128 [MSTP116] = SH_CLK_MSTP32(&clkp_clk, MSTPCR1, 16, 0), /* PCIe */
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700129 [MSTP115] = SH_CLK_MSTP32(&clkp_clk, MSTPCR1, 15, 0), /* SATA */
Sergei Shtylyovdace48d2013-04-04 18:53:50 +0000130 [MSTP114] = SH_CLK_MSTP32(&clkp_clk, MSTPCR1, 14, 0), /* Ether */
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700131 [MSTP103] = SH_CLK_MSTP32(&clks_clk, MSTPCR1, 3, 0), /* DU */
132 [MSTP101] = SH_CLK_MSTP32(&clkp_clk, MSTPCR1, 1, 0), /* USB2 */
133 [MSTP100] = SH_CLK_MSTP32(&clkp_clk, MSTPCR1, 0, 0), /* USB0/1 */
134 [MSTP030] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 30, 0), /* I2C0 */
135 [MSTP029] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 29, 0), /* I2C1 */
136 [MSTP028] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 28, 0), /* I2C2 */
137 [MSTP027] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 27, 0), /* I2C3 */
138 [MSTP026] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 26, 0), /* SCIF0 */
139 [MSTP025] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 25, 0), /* SCIF1 */
140 [MSTP024] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 24, 0), /* SCIF2 */
141 [MSTP023] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 23, 0), /* SCIF3 */
142 [MSTP022] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 22, 0), /* SCIF4 */
143 [MSTP021] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 21, 0), /* SCIF5 */
144 [MSTP016] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 16, 0), /* TMU0 */
145 [MSTP015] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 15, 0), /* TMU1 */
146 [MSTP014] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 14, 0), /* TMU2 */
147 [MSTP007] = SH_CLK_MSTP32(&clks_clk, MSTPCR0, 7, 0), /* HSPI */
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800148};
149
Magnus Dammf411fad2011-12-14 01:36:12 +0900150static struct clk_lookup lookups[] = {
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800151 /* main clocks */
152 CLKDEV_CON_ID("plla_clk", &plla_clk),
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800153 CLKDEV_CON_ID("clkz_clk", &clkz_clk),
154 CLKDEV_CON_ID("clkzs_clk", &clkzs_clk),
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800155
156 /* DIV4 clocks */
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700157 CLKDEV_CON_ID("shyway_clk", &clks_clk),
158 CLKDEV_CON_ID("bus_clk", &clkout_clk),
159 CLKDEV_CON_ID("shyway4_clk", &clks4_clk),
160 CLKDEV_CON_ID("shyway3_clk", &clks3_clk),
161 CLKDEV_CON_ID("shyway1_clk", &clks1_clk),
162 CLKDEV_CON_ID("peripheral_clk", &clkp_clk),
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800163
Magnus Dammf411fad2011-12-14 01:36:12 +0900164 /* MSTP32 clocks */
Phil Edworthy0f704e122013-04-09 14:35:15 +0000165 CLKDEV_DEV_ID("rcar-pcie", &mstp_clks[MSTP116]), /* PCIe */
Vladimir Barinova7b98372013-02-27 23:39:14 +0300166 CLKDEV_DEV_ID("sata_rcar", &mstp_clks[MSTP115]), /* SATA */
167 CLKDEV_DEV_ID("fc600000.sata", &mstp_clks[MSTP115]), /* SATA w/DT */
Sergei Shtylyov589ebde2013-06-07 14:05:59 +0000168 CLKDEV_DEV_ID("r8a777x-ether", &mstp_clks[MSTP114]), /* Ether */
Kuninori Morimoto88419542012-10-29 01:15:00 -0700169 CLKDEV_DEV_ID("ehci-platform.1", &mstp_clks[MSTP101]), /* USB EHCI port2 */
Kuninori Morimoto9d69f5b2012-10-29 01:15:11 -0700170 CLKDEV_DEV_ID("ohci-platform.1", &mstp_clks[MSTP101]), /* USB OHCI port2 */
Kuninori Morimoto88419542012-10-29 01:15:00 -0700171 CLKDEV_DEV_ID("ehci-platform.0", &mstp_clks[MSTP100]), /* USB EHCI port0/1 */
Kuninori Morimoto9d69f5b2012-10-29 01:15:11 -0700172 CLKDEV_DEV_ID("ohci-platform.0", &mstp_clks[MSTP100]), /* USB OHCI port0/1 */
Magnus Dammf411fad2011-12-14 01:36:12 +0900173 CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP016]), /* TMU00 */
Simon Hormanf9047302013-02-15 22:32:02 +0900174 CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP016]), /* TMU01 */
175 CLKDEV_DEV_ID("sh_tmu.2", &mstp_clks[MSTP016]), /* TMU02 */
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700176 CLKDEV_DEV_ID("i2c-rcar.0", &mstp_clks[MSTP030]), /* I2C0 */
177 CLKDEV_DEV_ID("i2c-rcar.1", &mstp_clks[MSTP029]), /* I2C1 */
178 CLKDEV_DEV_ID("i2c-rcar.2", &mstp_clks[MSTP028]), /* I2C2 */
179 CLKDEV_DEV_ID("i2c-rcar.3", &mstp_clks[MSTP027]), /* I2C3 */
Magnus Dammf411fad2011-12-14 01:36:12 +0900180 CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP026]), /* SCIF0 */
181 CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP025]), /* SCIF1 */
182 CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP024]), /* SCIF2 */
183 CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP023]), /* SCIF3 */
184 CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP022]), /* SCIF4 */
185 CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP021]), /* SCIF6 */
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700186 CLKDEV_DEV_ID("sh-hspi.0", &mstp_clks[MSTP007]), /* HSPI0 */
187 CLKDEV_DEV_ID("sh-hspi.1", &mstp_clks[MSTP007]), /* HSPI1 */
188 CLKDEV_DEV_ID("sh-hspi.2", &mstp_clks[MSTP007]), /* HSPI2 */
Phil Edworthy263510e2012-08-06 13:31:04 +0100189 CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP323]), /* SDHI0 */
190 CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP322]), /* SDHI1 */
191 CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP321]), /* SDHI2 */
192 CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP320]), /* SDHI3 */
Phil Edworthyd75bc782013-01-31 02:45:01 +0100193 CLKDEV_DEV_ID("rcar-du.0", &mstp_clks[MSTP103]), /* DU */
Magnus Dammf411fad2011-12-14 01:36:12 +0900194};
195
196void __init r8a7779_clock_init(void)
197{
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700198 void __iomem *modemr = ioremap_nocache(MODEMR, PAGE_SIZE);
199 u32 mode;
Magnus Dammf411fad2011-12-14 01:36:12 +0900200 int k, ret = 0;
201
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700202 BUG_ON(!modemr);
203 mode = ioread32(modemr);
204 iounmap(modemr);
205
206 if (mode & MD(1)) {
207 plla_clk.rate = 1500000000;
208
209 SH_CLK_SET_RATIO(&clkz_clk_ratio, 2, 3);
210 SH_CLK_SET_RATIO(&clkzs_clk_ratio, 1, 6);
211 SH_CLK_SET_RATIO(&clki_clk_ratio, 1, 2);
212 SH_CLK_SET_RATIO(&clks_clk_ratio, 1, 6);
213 SH_CLK_SET_RATIO(&clks1_clk_ratio, 1, 12);
214 SH_CLK_SET_RATIO(&clks3_clk_ratio, 1, 8);
215 SH_CLK_SET_RATIO(&clks4_clk_ratio, 1, 16);
216 SH_CLK_SET_RATIO(&clkp_clk_ratio, 1, 24);
217 SH_CLK_SET_RATIO(&clkg_clk_ratio, 1, 24);
218 if (mode & MD(2)) {
219 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 36);
220 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 36);
221 } else {
222 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 24);
223 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 24);
224 }
225 } else {
226 plla_clk.rate = 1600000000;
227
228 SH_CLK_SET_RATIO(&clkz_clk_ratio, 1, 2);
229 SH_CLK_SET_RATIO(&clkzs_clk_ratio, 1, 8);
230 SH_CLK_SET_RATIO(&clki_clk_ratio, 1, 2);
231 SH_CLK_SET_RATIO(&clks_clk_ratio, 1, 8);
232 SH_CLK_SET_RATIO(&clks1_clk_ratio, 1, 16);
233 SH_CLK_SET_RATIO(&clks3_clk_ratio, 1, 8);
234 SH_CLK_SET_RATIO(&clks4_clk_ratio, 1, 16);
235 SH_CLK_SET_RATIO(&clkp_clk_ratio, 1, 32);
236 SH_CLK_SET_RATIO(&clkg_clk_ratio, 1, 24);
237 if (mode & MD(2)) {
238 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 32);
239 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 32);
240 } else {
241 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 24);
242 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 24);
243 }
244 }
245
Magnus Dammf411fad2011-12-14 01:36:12 +0900246 for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
247 ret = clk_register(main_clks[k]);
248
249 if (!ret)
Nobuhiro Iwamatsu64e9de22012-06-27 09:59:00 +0900250 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
Magnus Dammf411fad2011-12-14 01:36:12 +0900251
Magnus Dammf411fad2011-12-14 01:36:12 +0900252 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
253
254 if (!ret)
Magnus Damm6b6a4c02012-02-29 21:41:30 +0900255 shmobile_clk_init();
Magnus Dammf411fad2011-12-14 01:36:12 +0900256 else
257 panic("failed to setup r8a7779 clocks\n");
258}