blob: fa8ab2cc91878af5f568b58521b62d3b9340a96e [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.
Magnus Dammf411fad2011-12-14 01:36:12 +090015 */
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070016#include <linux/bitops.h>
Magnus Dammf411fad2011-12-14 01:36:12 +090017#include <linux/init.h>
18#include <linux/kernel.h>
19#include <linux/io.h>
20#include <linux/sh_clk.h>
21#include <linux/clkdev.h>
Simon Hormanf48039a2014-05-15 20:32:02 +090022#include <linux/sh_timer.h>
Geert Uytterhoeven1b553532014-06-20 18:53:05 +020023
Magnus Dammad6ffa02014-06-17 16:47:21 +090024#include "clock.h"
Magnus Dammfd44aa52014-06-17 16:47:37 +090025#include "common.h"
Geert Uytterhoeven1b553532014-06-20 18:53:05 +020026#include "r8a7779.h"
Magnus Dammf411fad2011-12-14 01:36:12 +090027
Kuninori Morimotof0ff5a02013-04-04 00:07:14 -070028/*
29 * MD1 = 1 MD1 = 0
30 * (PLLA = 1500) (PLLA = 1600)
31 * (MHz) (MHz)
32 *------------------------------------------------+--------------------
33 * clkz 1000 (2/3) 800 (1/2)
34 * clkzs 250 (1/6) 200 (1/8)
35 * clki 750 (1/2) 800 (1/2)
36 * clks 250 (1/6) 200 (1/8)
37 * clks1 125 (1/12) 100 (1/16)
38 * clks3 187.5 (1/8) 200 (1/8)
39 * clks4 93.7 (1/16) 100 (1/16)
40 * clkp 62.5 (1/24) 50 (1/32)
41 * clkg 62.5 (1/24) 66.6 (1/24)
42 * clkb, CLKOUT
43 * (MD2 = 0) 62.5 (1/24) 66.6 (1/24)
44 * (MD2 = 1) 41.6 (1/36) 50 (1/32)
45*/
46
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070047#define MD(nr) BIT(nr)
48
Kuninori Morimoto11f93572012-10-15 01:10:28 -070049#define MSTPCR0 IOMEM(0xffc80030)
50#define MSTPCR1 IOMEM(0xffc80034)
51#define MSTPCR3 IOMEM(0xffc8003c)
52#define MSTPSR1 IOMEM(0xffc80044)
Magnus Dammf411fad2011-12-14 01:36:12 +090053
54/* ioremap() through clock mapping mandatory to avoid
55 * collision with ARM coherent DMA virtual memory range.
56 */
57
58static struct clk_mapping cpg_mapping = {
59 .phys = 0xffc80000,
60 .len = 0x80,
61};
62
Kuninori Morimotob5813c72011-12-20 00:52:06 -080063/*
64 * Default rate for the root input clock, reset this with clk_set_rate()
65 * from the platform code.
66 */
67static struct clk plla_clk = {
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070068 /* .rate will be updated on r8a7779_clock_init() */
Kuninori Morimotob5813c72011-12-20 00:52:06 -080069 .mapping = &cpg_mapping,
Magnus Dammf411fad2011-12-14 01:36:12 +090070};
71
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070072/*
73 * clock ratio of these clock will be updated
74 * on r8a7779_clock_init()
75 */
76SH_FIXED_RATIO_CLK_SET(clkz_clk, plla_clk, 1, 1);
77SH_FIXED_RATIO_CLK_SET(clkzs_clk, plla_clk, 1, 1);
78SH_FIXED_RATIO_CLK_SET(clki_clk, plla_clk, 1, 1);
79SH_FIXED_RATIO_CLK_SET(clks_clk, plla_clk, 1, 1);
80SH_FIXED_RATIO_CLK_SET(clks1_clk, plla_clk, 1, 1);
81SH_FIXED_RATIO_CLK_SET(clks3_clk, plla_clk, 1, 1);
82SH_FIXED_RATIO_CLK_SET(clks4_clk, plla_clk, 1, 1);
83SH_FIXED_RATIO_CLK_SET(clkb_clk, plla_clk, 1, 1);
84SH_FIXED_RATIO_CLK_SET(clkout_clk, plla_clk, 1, 1);
85SH_FIXED_RATIO_CLK_SET(clkp_clk, plla_clk, 1, 1);
86SH_FIXED_RATIO_CLK_SET(clkg_clk, plla_clk, 1, 1);
87
Magnus Dammf411fad2011-12-14 01:36:12 +090088static struct clk *main_clks[] = {
Kuninori Morimotob5813c72011-12-20 00:52:06 -080089 &plla_clk,
Kuninori Morimotoec0728d2013-03-27 00:57:38 -070090 &clkz_clk,
91 &clkzs_clk,
92 &clki_clk,
93 &clks_clk,
94 &clks1_clk,
95 &clks3_clk,
96 &clks4_clk,
97 &clkb_clk,
98 &clkout_clk,
99 &clkp_clk,
100 &clkg_clk,
Magnus Dammf411fad2011-12-14 01:36:12 +0900101};
102
Phil Edworthy263510e2012-08-06 13:31:04 +0100103enum { MSTP323, MSTP322, MSTP321, MSTP320,
Vladimir Barinov4714a022013-08-22 17:23:13 -0300104 MSTP120,
Phil Edworthy0f704e122013-04-09 14:35:15 +0000105 MSTP116, MSTP115, MSTP114,
Vladimir Barinov4714a022013-08-22 17:23:13 -0300106 MSTP110, MSTP109, MSTP108,
Phil Edworthyd75bc782013-01-31 02:45:01 +0100107 MSTP103, MSTP101, MSTP100,
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700108 MSTP030,
109 MSTP029, MSTP028, MSTP027, MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
Magnus Dammf411fad2011-12-14 01:36:12 +0900110 MSTP016, MSTP015, MSTP014,
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700111 MSTP007,
Magnus Dammf411fad2011-12-14 01:36:12 +0900112 MSTP_NR };
113
Magnus Dammf411fad2011-12-14 01:36:12 +0900114static struct clk mstp_clks[MSTP_NR] = {
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700115 [MSTP323] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 23, 0), /* SDHI0 */
116 [MSTP322] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 22, 0), /* SDHI1 */
117 [MSTP321] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 21, 0), /* SDHI2 */
118 [MSTP320] = SH_CLK_MSTP32(&clkp_clk, MSTPCR3, 20, 0), /* SDHI3 */
Laurent Pinchart017410f2013-12-14 16:23:52 +0100119 [MSTP120] = SH_CLK_MSTP32_STS(&clks_clk, MSTPCR1, 20, MSTPSR1, 0), /* VIN3 */
120 [MSTP116] = SH_CLK_MSTP32_STS(&clkp_clk, MSTPCR1, 16, MSTPSR1, 0), /* PCIe */
121 [MSTP115] = SH_CLK_MSTP32_STS(&clkp_clk, MSTPCR1, 15, MSTPSR1, 0), /* SATA */
122 [MSTP114] = SH_CLK_MSTP32_STS(&clkp_clk, MSTPCR1, 14, MSTPSR1, 0), /* Ether */
123 [MSTP110] = SH_CLK_MSTP32_STS(&clks_clk, MSTPCR1, 10, MSTPSR1, 0), /* VIN0 */
124 [MSTP109] = SH_CLK_MSTP32_STS(&clks_clk, MSTPCR1, 9, MSTPSR1, 0), /* VIN1 */
125 [MSTP108] = SH_CLK_MSTP32_STS(&clks_clk, MSTPCR1, 8, MSTPSR1, 0), /* VIN2 */
126 [MSTP103] = SH_CLK_MSTP32_STS(&clks_clk, MSTPCR1, 3, MSTPSR1, 0), /* DU */
127 [MSTP101] = SH_CLK_MSTP32_STS(&clkp_clk, MSTPCR1, 1, MSTPSR1, 0), /* USB2 */
128 [MSTP100] = SH_CLK_MSTP32_STS(&clkp_clk, MSTPCR1, 0, MSTPSR1, 0), /* USB0/1 */
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700129 [MSTP030] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 30, 0), /* I2C0 */
130 [MSTP029] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 29, 0), /* I2C1 */
131 [MSTP028] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 28, 0), /* I2C2 */
132 [MSTP027] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 27, 0), /* I2C3 */
133 [MSTP026] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 26, 0), /* SCIF0 */
134 [MSTP025] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 25, 0), /* SCIF1 */
135 [MSTP024] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 24, 0), /* SCIF2 */
136 [MSTP023] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 23, 0), /* SCIF3 */
137 [MSTP022] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 22, 0), /* SCIF4 */
138 [MSTP021] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 21, 0), /* SCIF5 */
139 [MSTP016] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 16, 0), /* TMU0 */
140 [MSTP015] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 15, 0), /* TMU1 */
141 [MSTP014] = SH_CLK_MSTP32(&clkp_clk, MSTPCR0, 14, 0), /* TMU2 */
142 [MSTP007] = SH_CLK_MSTP32(&clks_clk, MSTPCR0, 7, 0), /* HSPI */
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800143};
144
Magnus Dammf411fad2011-12-14 01:36:12 +0900145static struct clk_lookup lookups[] = {
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800146 /* main clocks */
147 CLKDEV_CON_ID("plla_clk", &plla_clk),
Kuninori Morimoto916b1f82011-12-20 00:53:52 -0800148 CLKDEV_CON_ID("clkz_clk", &clkz_clk),
149 CLKDEV_CON_ID("clkzs_clk", &clkzs_clk),
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800150
151 /* DIV4 clocks */
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700152 CLKDEV_CON_ID("shyway_clk", &clks_clk),
153 CLKDEV_CON_ID("bus_clk", &clkout_clk),
154 CLKDEV_CON_ID("shyway4_clk", &clks4_clk),
155 CLKDEV_CON_ID("shyway3_clk", &clks3_clk),
156 CLKDEV_CON_ID("shyway1_clk", &clks1_clk),
157 CLKDEV_CON_ID("peripheral_clk", &clkp_clk),
Kuninori Morimotob5813c72011-12-20 00:52:06 -0800158
Magnus Dammf411fad2011-12-14 01:36:12 +0900159 /* MSTP32 clocks */
Vladimir Barinov4714a022013-08-22 17:23:13 -0300160 CLKDEV_DEV_ID("r8a7779-vin.3", &mstp_clks[MSTP120]), /* VIN3 */
Phil Edworthy0f704e122013-04-09 14:35:15 +0000161 CLKDEV_DEV_ID("rcar-pcie", &mstp_clks[MSTP116]), /* PCIe */
Vladimir Barinova7b98372013-02-27 23:39:14 +0300162 CLKDEV_DEV_ID("sata_rcar", &mstp_clks[MSTP115]), /* SATA */
163 CLKDEV_DEV_ID("fc600000.sata", &mstp_clks[MSTP115]), /* SATA w/DT */
Sergei Shtylyov589ebde2013-06-07 14:05:59 +0000164 CLKDEV_DEV_ID("r8a777x-ether", &mstp_clks[MSTP114]), /* Ether */
Vladimir Barinov4714a022013-08-22 17:23:13 -0300165 CLKDEV_DEV_ID("r8a7779-vin.0", &mstp_clks[MSTP110]), /* VIN0 */
166 CLKDEV_DEV_ID("r8a7779-vin.1", &mstp_clks[MSTP109]), /* VIN1 */
167 CLKDEV_DEV_ID("r8a7779-vin.2", &mstp_clks[MSTP108]), /* VIN2 */
Kuninori Morimoto88419542012-10-29 01:15:00 -0700168 CLKDEV_DEV_ID("ehci-platform.1", &mstp_clks[MSTP101]), /* USB EHCI port2 */
Kuninori Morimoto9d69f5b2012-10-29 01:15:11 -0700169 CLKDEV_DEV_ID("ohci-platform.1", &mstp_clks[MSTP101]), /* USB OHCI port2 */
Kuninori Morimoto88419542012-10-29 01:15:00 -0700170 CLKDEV_DEV_ID("ehci-platform.0", &mstp_clks[MSTP100]), /* USB EHCI port0/1 */
Kuninori Morimoto9d69f5b2012-10-29 01:15:11 -0700171 CLKDEV_DEV_ID("ohci-platform.0", &mstp_clks[MSTP100]), /* USB OHCI port0/1 */
Laurent Pincharte4ae34e2014-04-23 13:15:20 +0200172 CLKDEV_ICK_ID("fck", "sh-tmu.0", &mstp_clks[MSTP016]), /* TMU0 */
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700173 CLKDEV_DEV_ID("i2c-rcar.0", &mstp_clks[MSTP030]), /* I2C0 */
Kuninori Morimotob918b682013-10-03 23:45:03 -0700174 CLKDEV_DEV_ID("ffc70000.i2c", &mstp_clks[MSTP030]), /* I2C0 */
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700175 CLKDEV_DEV_ID("i2c-rcar.1", &mstp_clks[MSTP029]), /* I2C1 */
Kuninori Morimotob918b682013-10-03 23:45:03 -0700176 CLKDEV_DEV_ID("ffc71000.i2c", &mstp_clks[MSTP029]), /* I2C1 */
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700177 CLKDEV_DEV_ID("i2c-rcar.2", &mstp_clks[MSTP028]), /* I2C2 */
Kuninori Morimotob918b682013-10-03 23:45:03 -0700178 CLKDEV_DEV_ID("ffc72000.i2c", &mstp_clks[MSTP028]), /* I2C2 */
Kuninori Morimoto16c40ab2012-10-10 19:56:42 -0700179 CLKDEV_DEV_ID("i2c-rcar.3", &mstp_clks[MSTP027]), /* I2C3 */
Kuninori Morimotob918b682013-10-03 23:45:03 -0700180 CLKDEV_DEV_ID("ffc73000.i2c", &mstp_clks[MSTP027]), /* I2C3 */
Magnus Dammf411fad2011-12-14 01:36:12 +0900181 CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP026]), /* SCIF0 */
182 CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP025]), /* SCIF1 */
183 CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP024]), /* SCIF2 */
184 CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP023]), /* SCIF3 */
185 CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP022]), /* SCIF4 */
186 CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP021]), /* SCIF6 */
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700187 CLKDEV_DEV_ID("sh-hspi.0", &mstp_clks[MSTP007]), /* HSPI0 */
Simon Hormanfee05eb2013-11-26 16:47:10 +0900188 CLKDEV_DEV_ID("fffc7000.spi", &mstp_clks[MSTP007]), /* HSPI0 */
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700189 CLKDEV_DEV_ID("sh-hspi.1", &mstp_clks[MSTP007]), /* HSPI1 */
Simon Hormanfee05eb2013-11-26 16:47:10 +0900190 CLKDEV_DEV_ID("fffc8000.spi", &mstp_clks[MSTP007]), /* HSPI1 */
Kuninori Morimotof92246e2012-10-10 19:56:33 -0700191 CLKDEV_DEV_ID("sh-hspi.2", &mstp_clks[MSTP007]), /* HSPI2 */
Simon Hormanfee05eb2013-11-26 16:47:10 +0900192 CLKDEV_DEV_ID("fffc6000.spi", &mstp_clks[MSTP007]), /* HSPI2 */
Phil Edworthy263510e2012-08-06 13:31:04 +0100193 CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP323]), /* SDHI0 */
Kuninori Morimoto26247052013-10-21 19:36:02 -0700194 CLKDEV_DEV_ID("ffe4c000.sd", &mstp_clks[MSTP323]), /* SDHI0 */
Phil Edworthy263510e2012-08-06 13:31:04 +0100195 CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP322]), /* SDHI1 */
Kuninori Morimoto26247052013-10-21 19:36:02 -0700196 CLKDEV_DEV_ID("ffe4d000.sd", &mstp_clks[MSTP322]), /* SDHI1 */
Phil Edworthy263510e2012-08-06 13:31:04 +0100197 CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP321]), /* SDHI2 */
Kuninori Morimoto26247052013-10-21 19:36:02 -0700198 CLKDEV_DEV_ID("ffe4e000.sd", &mstp_clks[MSTP321]), /* SDHI2 */
Phil Edworthy263510e2012-08-06 13:31:04 +0100199 CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP320]), /* SDHI3 */
Kuninori Morimoto26247052013-10-21 19:36:02 -0700200 CLKDEV_DEV_ID("ffe4f000.sd", &mstp_clks[MSTP320]), /* SDHI3 */
Laurent Pinchartacf47ee2013-08-08 04:25:00 +0200201 CLKDEV_DEV_ID("rcar-du-r8a7779", &mstp_clks[MSTP103]), /* DU */
Magnus Dammf411fad2011-12-14 01:36:12 +0900202};
203
204void __init r8a7779_clock_init(void)
205{
Simon Horman3e05f242014-05-15 20:32:01 +0900206 u32 mode = r8a7779_read_mode_pins();
Magnus Dammf411fad2011-12-14 01:36:12 +0900207 int k, ret = 0;
208
Kuninori Morimotoec0728d2013-03-27 00:57:38 -0700209 if (mode & MD(1)) {
210 plla_clk.rate = 1500000000;
211
212 SH_CLK_SET_RATIO(&clkz_clk_ratio, 2, 3);
213 SH_CLK_SET_RATIO(&clkzs_clk_ratio, 1, 6);
214 SH_CLK_SET_RATIO(&clki_clk_ratio, 1, 2);
215 SH_CLK_SET_RATIO(&clks_clk_ratio, 1, 6);
216 SH_CLK_SET_RATIO(&clks1_clk_ratio, 1, 12);
217 SH_CLK_SET_RATIO(&clks3_clk_ratio, 1, 8);
218 SH_CLK_SET_RATIO(&clks4_clk_ratio, 1, 16);
219 SH_CLK_SET_RATIO(&clkp_clk_ratio, 1, 24);
220 SH_CLK_SET_RATIO(&clkg_clk_ratio, 1, 24);
221 if (mode & MD(2)) {
222 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 36);
223 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 36);
224 } else {
225 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 24);
226 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 24);
227 }
228 } else {
229 plla_clk.rate = 1600000000;
230
231 SH_CLK_SET_RATIO(&clkz_clk_ratio, 1, 2);
232 SH_CLK_SET_RATIO(&clkzs_clk_ratio, 1, 8);
233 SH_CLK_SET_RATIO(&clki_clk_ratio, 1, 2);
234 SH_CLK_SET_RATIO(&clks_clk_ratio, 1, 8);
235 SH_CLK_SET_RATIO(&clks1_clk_ratio, 1, 16);
236 SH_CLK_SET_RATIO(&clks3_clk_ratio, 1, 8);
237 SH_CLK_SET_RATIO(&clks4_clk_ratio, 1, 16);
238 SH_CLK_SET_RATIO(&clkp_clk_ratio, 1, 32);
239 SH_CLK_SET_RATIO(&clkg_clk_ratio, 1, 24);
240 if (mode & MD(2)) {
241 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 32);
242 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 32);
243 } else {
244 SH_CLK_SET_RATIO(&clkb_clk_ratio, 1, 24);
245 SH_CLK_SET_RATIO(&clkout_clk_ratio, 1, 24);
246 }
247 }
248
Magnus Dammf411fad2011-12-14 01:36:12 +0900249 for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
250 ret = clk_register(main_clks[k]);
251
252 if (!ret)
Nobuhiro Iwamatsu64e9de22012-06-27 09:59:00 +0900253 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
Magnus Dammf411fad2011-12-14 01:36:12 +0900254
Magnus Dammf411fad2011-12-14 01:36:12 +0900255 clkdev_add_table(lookups, ARRAY_SIZE(lookups));
256
257 if (!ret)
Magnus Damm6b6a4c02012-02-29 21:41:30 +0900258 shmobile_clk_init();
Magnus Dammf411fad2011-12-14 01:36:12 +0900259 else
260 panic("failed to setup r8a7779 clocks\n");
261}
Simon Hormanf48039a2014-05-15 20:32:02 +0900262
263/* do nothing for !CONFIG_SMP or !CONFIG_HAVE_TWD */
264void __init __weak r8a7779_register_twd(void) { }
265
266void __init r8a7779_earlytimer_init(void)
267{
268 r8a7779_clock_init();
269 r8a7779_register_twd();
270 shmobile_earlytimer_init();
271}