blob: 7d86bfbb5b065323bd4496c4f4ae0101a40450d7 [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 Morimotoec0728d2013-03-27 00:57:38 -070029#define MD(nr) BIT(nr)
30
Kuninori Morimoto11f93572012-10-15 01:10:28 -070031#define FRQMR IOMEM(0xffc80014)
32#define MSTPCR0 IOMEM(0xffc80030)
33#define MSTPCR1 IOMEM(0xffc80034)
34#define MSTPCR3 IOMEM(0xffc8003c)
35#define MSTPSR1 IOMEM(0xffc80044)
36#define MSTPSR4 IOMEM(0xffc80048)
37#define MSTPSR6 IOMEM(0xffc8004c)
38#define MSTPCR4 IOMEM(0xffc80050)
39#define MSTPCR5 IOMEM(0xffc80054)
40#define MSTPCR6 IOMEM(0xffc80058)
41#define MSTPCR7 IOMEM(0xffc80040)
Magnus Dammf411fad2011-12-14 01:36:12 +090042
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070043#define MODEMR 0xffcc0020
44
45
Magnus Dammf411fad2011-12-14 01:36:12 +090046/* ioremap() through clock mapping mandatory to avoid
47 * collision with ARM coherent DMA virtual memory range.
48 */
49
50static struct clk_mapping cpg_mapping = {
51 .phys = 0xffc80000,
52 .len = 0x80,
53};
54
Kuninori Morimotob5813c72011-12-20 00:52:06 -080055/*
56 * Default rate for the root input clock, reset this with clk_set_rate()
57 * from the platform code.
58 */
59static struct clk plla_clk = {
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070060 /* .rate will be updated on r8a7779_clock_init() */
Kuninori Morimotob5813c72011-12-20 00:52:06 -080061 .mapping = &cpg_mapping,
Magnus Dammf411fad2011-12-14 01:36:12 +090062};
63
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070064/*
65 * clock ratio of these clock will be updated
66 * on r8a7779_clock_init()
67 */
68SH_FIXED_RATIO_CLK_SET(clkz_clk, plla_clk, 1, 1);
69SH_FIXED_RATIO_CLK_SET(clkzs_clk, plla_clk, 1, 1);
70SH_FIXED_RATIO_CLK_SET(clki_clk, plla_clk, 1, 1);
71SH_FIXED_RATIO_CLK_SET(clks_clk, plla_clk, 1, 1);
72SH_FIXED_RATIO_CLK_SET(clks1_clk, plla_clk, 1, 1);
73SH_FIXED_RATIO_CLK_SET(clks3_clk, plla_clk, 1, 1);
74SH_FIXED_RATIO_CLK_SET(clks4_clk, plla_clk, 1, 1);
75SH_FIXED_RATIO_CLK_SET(clkb_clk, plla_clk, 1, 1);
76SH_FIXED_RATIO_CLK_SET(clkout_clk, plla_clk, 1, 1);
77SH_FIXED_RATIO_CLK_SET(clkp_clk, plla_clk, 1, 1);
78SH_FIXED_RATIO_CLK_SET(clkg_clk, plla_clk, 1, 1);
79
Magnus Dammf411fad2011-12-14 01:36:12 +090080static struct clk *main_clks[] = {
Kuninori Morimotob5813c72011-12-20 00:52:06 -080081 &plla_clk,
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070082 &clkz_clk,
83 &clkzs_clk,
84 &clki_clk,
85 &clks_clk,
86 &clks1_clk,
87 &clks3_clk,
88 &clks4_clk,
89 &clkb_clk,
90 &clkout_clk,
91 &clkp_clk,
92 &clkg_clk,
Magnus Dammf411fad2011-12-14 01:36:12 +090093};
94
Phil Edworthy263510e2012-08-06 13:31:04 +010095enum { MSTP323, MSTP322, MSTP321, MSTP320,
Vladimir Barinova7b98372013-02-27 23:39:14 +030096 MSTP115,
Phil Edworthyd75bc782013-01-31 02:45:01 +010097 MSTP103, MSTP101, MSTP100,
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -070098 MSTP030,
99 MSTP029, MSTP028, MSTP027, MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
Magnus Dammf411fad2011-12-14 01:36:12 +0900100 MSTP016, MSTP015, MSTP014,
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700101 MSTP007,
Magnus Dammf411fad2011-12-14 01:36:12 +0900102 MSTP_NR };
103
Magnus Dammf411fad2011-12-14 01:36:12 +0900104static struct clk mstp_clks[MSTP_NR] = {
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700105 [MSTP323] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 23, 0), /* SDHI0 */
106 [MSTP322] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 22, 0), /* SDHI1 */
107 [MSTP321] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 21, 0), /* SDHI2 */
108 [MSTP320] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 20, 0), /* SDHI3 */
109 [MSTP115] = SH_CLK_MSTP32(&clkp_clk, MSTPCR1, 15, 0), /* SATA */
110 [MSTP103] = SH_CLK_MSTP32(&clks_clk, MSTPCR1, 3, 0), /* DU */
111 [MSTP101] = SH_CLK_MSTP32(&clkp_clk, MSTPCR1, 1, 0), /* USB2 */
112 [MSTP100] = SH_CLK_MSTP32(&clkp_clk, MSTPCR1, 0, 0), /* USB0/1 */
113 [MSTP030] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 30, 0), /* I2C0 */
114 [MSTP029] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 29, 0), /* I2C1 */
115 [MSTP028] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 28, 0), /* I2C2 */
116 [MSTP027] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 27, 0), /* I2C3 */
117 [MSTP026] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 26, 0), /* SCIF0 */
118 [MSTP025] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 25, 0), /* SCIF1 */
119 [MSTP024] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 24, 0), /* SCIF2 */
120 [MSTP023] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 23, 0), /* SCIF3 */
121 [MSTP022] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 22, 0), /* SCIF4 */
122 [MSTP021] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 21, 0), /* SCIF5 */
123 [MSTP016] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 16, 0), /* TMU0 */
124 [MSTP015] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 15, 0), /* TMU1 */
125 [MSTP014] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 14, 0), /* TMU2 */
126 [MSTP007] = SH_CLK_MSTP32(&clks_clk, MSTPCR0, 7, 0), /* HSPI */
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800127};
128
Magnus Dammf411fad2011-12-14 01:36:12 +0900129static struct clk_lookup lookups[] = {
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800130 /* main clocks */
131 CLKDEV_CON_ID("plla_clk", &plla_clk),
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800132 CLKDEV_CON_ID("clkz_clk", &clkz_clk),
133 CLKDEV_CON_ID("clkzs_clk", &clkzs_clk),
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800134
135 /* DIV4 clocks */
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700136 CLKDEV_CON_ID("shyway_clk", &clks_clk),
137 CLKDEV_CON_ID("bus_clk", &clkout_clk),
138 CLKDEV_CON_ID("shyway4_clk", &clks4_clk),
139 CLKDEV_CON_ID("shyway3_clk", &clks3_clk),
140 CLKDEV_CON_ID("shyway1_clk", &clks1_clk),
141 CLKDEV_CON_ID("peripheral_clk", &clkp_clk),
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800142
Magnus Dammf411fad2011-12-14 01:36:12 +0900143 /* MSTP32 clocks */
Vladimir Barinova7b98372013-02-27 23:39:14 +0300144 CLKDEV_DEV_ID("sata_rcar", &mstp_clks[MSTP115]), /* SATA */
145 CLKDEV_DEV_ID("fc600000.sata", &mstp_clks[MSTP115]), /* SATA w/DT */
Kuninori Morimoto88419542012-10-29 01:15:00 -0700146 CLKDEV_DEV_ID("ehci-platform.1", &mstp_clks[MSTP101]), /* USB EHCI port2 */
Kuninori Morimoto9d69f5b2012-10-29 01:15:11 -0700147 CLKDEV_DEV_ID("ohci-platform.1", &mstp_clks[MSTP101]), /* USB OHCI port2 */
Kuninori Morimoto88419542012-10-29 01:15:00 -0700148 CLKDEV_DEV_ID("ehci-platform.0", &mstp_clks[MSTP100]), /* USB EHCI port0/1 */
Kuninori Morimoto9d69f5b2012-10-29 01:15:11 -0700149 CLKDEV_DEV_ID("ohci-platform.0", &mstp_clks[MSTP100]), /* USB OHCI port0/1 */
Magnus Dammf411fad2011-12-14 01:36:12 +0900150 CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP016]), /* TMU00 */
Simon Hormanf9047302013-02-15 22:32:02 +0900151 CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP016]), /* TMU01 */
152 CLKDEV_DEV_ID("sh_tmu.2", &mstp_clks[MSTP016]), /* TMU02 */
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700153 CLKDEV_DEV_ID("i2c-rcar.0", &mstp_clks[MSTP030]), /* I2C0 */
154 CLKDEV_DEV_ID("i2c-rcar.1", &mstp_clks[MSTP029]), /* I2C1 */
155 CLKDEV_DEV_ID("i2c-rcar.2", &mstp_clks[MSTP028]), /* I2C2 */
156 CLKDEV_DEV_ID("i2c-rcar.3", &mstp_clks[MSTP027]), /* I2C3 */
Magnus Dammf411fad2011-12-14 01:36:12 +0900157 CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP026]), /* SCIF0 */
158 CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP025]), /* SCIF1 */
159 CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP024]), /* SCIF2 */
160 CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP023]), /* SCIF3 */
161 CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP022]), /* SCIF4 */
162 CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP021]), /* SCIF6 */
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700163 CLKDEV_DEV_ID("sh-hspi.0", &mstp_clks[MSTP007]), /* HSPI0 */
164 CLKDEV_DEV_ID("sh-hspi.1", &mstp_clks[MSTP007]), /* HSPI1 */
165 CLKDEV_DEV_ID("sh-hspi.2", &mstp_clks[MSTP007]), /* HSPI2 */
Phil Edworthy263510e2012-08-06 13:31:04 +0100166 CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP323]), /* SDHI0 */
167 CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP322]), /* SDHI1 */
168 CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP321]), /* SDHI2 */
169 CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP320]), /* SDHI3 */
Phil Edworthyd75bc782013-01-31 02:45:01 +0100170 CLKDEV_DEV_ID("rcar-du.0", &mstp_clks[MSTP103]), /* DU */
Magnus Dammf411fad2011-12-14 01:36:12 +0900171};
172
173void __init r8a7779_clock_init(void)
174{
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700175 void __iomem *modemr = ioremap_nocache(MODEMR, PAGE_SIZE);
176 u32 mode;
Magnus Dammf411fad2011-12-14 01:36:12 +0900177 int k, ret = 0;
178
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700179 BUG_ON(!modemr);
180 mode = ioread32(modemr);
181 iounmap(modemr);
182
183 if (mode & MD(1)) {
184 plla_clk.rate = 1500000000;
185
186 SH_CLK_SET_RATIO(&clkz_clk_ratio, 2, 3);
187 SH_CLK_SET_RATIO(&clkzs_clk_ratio, 1, 6);
188 SH_CLK_SET_RATIO(&clki_clk_ratio, 1, 2);
189 SH_CLK_SET_RATIO(&clks_clk_ratio, 1, 6);
190 SH_CLK_SET_RATIO(&clks1_clk_ratio, 1, 12);
191 SH_CLK_SET_RATIO(&clks3_clk_ratio, 1, 8);
192 SH_CLK_SET_RATIO(&clks4_clk_ratio, 1, 16);
193 SH_CLK_SET_RATIO(&clkp_clk_ratio, 1, 24);
194 SH_CLK_SET_RATIO(&clkg_clk_ratio, 1, 24);
195 if (mode & MD(2)) {
196 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 36);
197 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 36);
198 } else {
199 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 24);
200 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 24);
201 }
202 } else {
203 plla_clk.rate = 1600000000;
204
205 SH_CLK_SET_RATIO(&clkz_clk_ratio, 1, 2);
206 SH_CLK_SET_RATIO(&clkzs_clk_ratio, 1, 8);
207 SH_CLK_SET_RATIO(&clki_clk_ratio, 1, 2);
208 SH_CLK_SET_RATIO(&clks_clk_ratio, 1, 8);
209 SH_CLK_SET_RATIO(&clks1_clk_ratio, 1, 16);
210 SH_CLK_SET_RATIO(&clks3_clk_ratio, 1, 8);
211 SH_CLK_SET_RATIO(&clks4_clk_ratio, 1, 16);
212 SH_CLK_SET_RATIO(&clkp_clk_ratio, 1, 32);
213 SH_CLK_SET_RATIO(&clkg_clk_ratio, 1, 24);
214 if (mode & MD(2)) {
215 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 32);
216 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 32);
217 } else {
218 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 24);
219 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 24);
220 }
221 }
222
Magnus Dammf411fad2011-12-14 01:36:12 +0900223 for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
224 ret = clk_register(main_clks[k]);
225
226 if (!ret)
Nobuhiro Iwamatsu64e9de22012-06-27 09:59:00 +0900227 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
Magnus Dammf411fad2011-12-14 01:36:12 +0900228
Magnus Dammf411fad2011-12-14 01:36:12 +0900229 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
230
231 if (!ret)
Magnus Damm6b6a4c02012-02-29 21:41:30 +0900232 shmobile_clk_init();
Magnus Dammf411fad2011-12-14 01:36:12 +0900233 else
234 panic("failed to setup r8a7779 clocks\n");
235}