clock-r8a7790.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. /*
  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>
  25. #include <mach/clock.h>
  26. #include <mach/common.h>
  27. #include <mach/r8a7790.h>
  28. /*
  29. * MD EXTAL PLL0 PLL1 PLL3
  30. * 14 13 19 (MHz) *1 *1
  31. *---------------------------------------------------
  32. * 0 0 0 15 x 1 x172/2 x208/2 x106
  33. * 0 0 1 15 x 1 x172/2 x208/2 x88
  34. * 0 1 0 20 x 1 x130/2 x156/2 x80
  35. * 0 1 1 20 x 1 x130/2 x156/2 x66
  36. * 1 0 0 26 / 2 x200/2 x240/2 x122
  37. * 1 0 1 26 / 2 x200/2 x240/2 x102
  38. * 1 1 0 30 / 2 x172/2 x208/2 x106
  39. * 1 1 1 30 / 2 x172/2 x208/2 x88
  40. *
  41. * *1 : Table 7.6 indicates VCO ouput (PLLx = VCO/2)
  42. * see "p1 / 2" on R8A7790_CLOCK_ROOT() below
  43. */
  44. #define CPG_BASE 0xe6150000
  45. #define CPG_LEN 0x1000
  46. #define SMSTPCR1 0xe6150134
  47. #define SMSTPCR2 0xe6150138
  48. #define SMSTPCR3 0xe615013c
  49. #define SMSTPCR5 0xe6150144
  50. #define SMSTPCR7 0xe615014c
  51. #define SMSTPCR8 0xe6150990
  52. #define SMSTPCR9 0xe6150994
  53. #define SDCKCR 0xE6150074
  54. #define SD2CKCR 0xE6150078
  55. #define SD3CKCR 0xE615007C
  56. #define MMC0CKCR 0xE6150240
  57. #define MMC1CKCR 0xE6150244
  58. #define SSPCKCR 0xE6150248
  59. #define SSPRSCKCR 0xE615024C
  60. static struct clk_mapping cpg_mapping = {
  61. .phys = CPG_BASE,
  62. .len = CPG_LEN,
  63. };
  64. static struct clk extal_clk = {
  65. /* .rate will be updated on r8a7790_clock_init() */
  66. .mapping = &cpg_mapping,
  67. };
  68. static struct sh_clk_ops followparent_clk_ops = {
  69. .recalc = followparent_recalc,
  70. };
  71. static struct clk main_clk = {
  72. /* .parent will be set r8a73a4_clock_init */
  73. .ops = &followparent_clk_ops,
  74. };
  75. /*
  76. * clock ratio of these clock will be updated
  77. * on r8a7790_clock_init()
  78. */
  79. SH_FIXED_RATIO_CLK_SET(pll1_clk, main_clk, 1, 1);
  80. SH_FIXED_RATIO_CLK_SET(pll3_clk, main_clk, 1, 1);
  81. SH_FIXED_RATIO_CLK_SET(lb_clk, pll1_clk, 1, 1);
  82. SH_FIXED_RATIO_CLK_SET(qspi_clk, pll1_clk, 1, 1);
  83. /* fixed ratio clock */
  84. SH_FIXED_RATIO_CLK_SET(extal_div2_clk, extal_clk, 1, 2);
  85. SH_FIXED_RATIO_CLK_SET(cp_clk, extal_clk, 1, 2);
  86. SH_FIXED_RATIO_CLK_SET(pll1_div2_clk, pll1_clk, 1, 2);
  87. SH_FIXED_RATIO_CLK_SET(zg_clk, pll1_clk, 1, 3);
  88. SH_FIXED_RATIO_CLK_SET(zx_clk, pll1_clk, 1, 3);
  89. SH_FIXED_RATIO_CLK_SET(zs_clk, pll1_clk, 1, 6);
  90. SH_FIXED_RATIO_CLK_SET(hp_clk, pll1_clk, 1, 12);
  91. SH_FIXED_RATIO_CLK_SET(i_clk, pll1_clk, 1, 2);
  92. SH_FIXED_RATIO_CLK_SET(b_clk, pll1_clk, 1, 12);
  93. SH_FIXED_RATIO_CLK_SET(p_clk, pll1_clk, 1, 24);
  94. SH_FIXED_RATIO_CLK_SET(cl_clk, pll1_clk, 1, 48);
  95. SH_FIXED_RATIO_CLK_SET(m2_clk, pll1_clk, 1, 8);
  96. SH_FIXED_RATIO_CLK_SET(imp_clk, pll1_clk, 1, 4);
  97. SH_FIXED_RATIO_CLK_SET(rclk_clk, pll1_clk, 1, (48 * 1024));
  98. SH_FIXED_RATIO_CLK_SET(oscclk_clk, pll1_clk, 1, (12 * 1024));
  99. SH_FIXED_RATIO_CLK_SET(zb3_clk, pll3_clk, 1, 4);
  100. SH_FIXED_RATIO_CLK_SET(zb3d2_clk, pll3_clk, 1, 8);
  101. SH_FIXED_RATIO_CLK_SET(ddr_clk, pll3_clk, 1, 8);
  102. SH_FIXED_RATIO_CLK_SET(mp_clk, pll1_div2_clk, 1, 15);
  103. static struct clk *main_clks[] = {
  104. &extal_clk,
  105. &extal_div2_clk,
  106. &main_clk,
  107. &pll1_clk,
  108. &pll1_div2_clk,
  109. &pll3_clk,
  110. &lb_clk,
  111. &qspi_clk,
  112. &zg_clk,
  113. &zx_clk,
  114. &zs_clk,
  115. &hp_clk,
  116. &i_clk,
  117. &b_clk,
  118. &p_clk,
  119. &cl_clk,
  120. &m2_clk,
  121. &imp_clk,
  122. &rclk_clk,
  123. &oscclk_clk,
  124. &zb3_clk,
  125. &zb3d2_clk,
  126. &ddr_clk,
  127. &mp_clk,
  128. &cp_clk,
  129. };
  130. /* SDHI (DIV4) clock */
  131. static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 18, 24, 0, 36, 48, 10 };
  132. static struct clk_div_mult_table div4_div_mult_table = {
  133. .divisors = divisors,
  134. .nr_divisors = ARRAY_SIZE(divisors),
  135. };
  136. static struct clk_div4_table div4_table = {
  137. .div_mult_table = &div4_div_mult_table,
  138. };
  139. enum {
  140. DIV4_SDH, DIV4_SD0, DIV4_SD1, DIV4_NR
  141. };
  142. static struct clk div4_clks[DIV4_NR] = {
  143. [DIV4_SDH] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 8, 0x0dff, CLK_ENABLE_ON_INIT),
  144. [DIV4_SD0] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 4, 0x1de0, CLK_ENABLE_ON_INIT),
  145. [DIV4_SD1] = SH_CLK_DIV4(&pll1_clk, SDCKCR, 0, 0x1de0, CLK_ENABLE_ON_INIT),
  146. };
  147. /* DIV6 clocks */
  148. enum {
  149. DIV6_SD2, DIV6_SD3,
  150. DIV6_MMC0, DIV6_MMC1,
  151. DIV6_SSP, DIV6_SSPRS,
  152. DIV6_NR
  153. };
  154. static struct clk div6_clks[DIV6_NR] = {
  155. [DIV6_SD2] = SH_CLK_DIV6(&pll1_div2_clk, SD2CKCR, 0),
  156. [DIV6_SD3] = SH_CLK_DIV6(&pll1_div2_clk, SD3CKCR, 0),
  157. [DIV6_MMC0] = SH_CLK_DIV6(&pll1_div2_clk, MMC0CKCR, 0),
  158. [DIV6_MMC1] = SH_CLK_DIV6(&pll1_div2_clk, MMC1CKCR, 0),
  159. [DIV6_SSP] = SH_CLK_DIV6(&pll1_div2_clk, SSPCKCR, 0),
  160. [DIV6_SSPRS] = SH_CLK_DIV6(&pll1_div2_clk, SSPRSCKCR, 0),
  161. };
  162. /* MSTP */
  163. enum {
  164. MSTP931, MSTP930, MSTP929, MSTP928,
  165. MSTP813,
  166. MSTP726, MSTP725, MSTP724, MSTP723, MSTP722, MSTP721, MSTP720,
  167. MSTP717, MSTP716,
  168. MSTP522,
  169. MSTP315, MSTP314, MSTP313, MSTP312, MSTP311, MSTP305, MSTP304,
  170. MSTP216, MSTP207, MSTP206, MSTP204, MSTP203, MSTP202,
  171. MSTP124,
  172. MSTP_NR
  173. };
  174. static struct clk mstp_clks[MSTP_NR] = {
  175. [MSTP931] = SH_CLK_MSTP32(&hp_clk, SMSTPCR9, 31, 0), /* I2C0 */
  176. [MSTP930] = SH_CLK_MSTP32(&hp_clk, SMSTPCR9, 30, 0), /* I2C1 */
  177. [MSTP929] = SH_CLK_MSTP32(&hp_clk, SMSTPCR9, 29, 0), /* I2C2 */
  178. [MSTP928] = SH_CLK_MSTP32(&hp_clk, SMSTPCR9, 28, 0), /* I2C3 */
  179. [MSTP813] = SH_CLK_MSTP32(&p_clk, SMSTPCR8, 13, 0), /* Ether */
  180. [MSTP726] = SH_CLK_MSTP32(&zx_clk, SMSTPCR7, 26, 0), /* LVDS0 */
  181. [MSTP725] = SH_CLK_MSTP32(&zx_clk, SMSTPCR7, 25, 0), /* LVDS1 */
  182. [MSTP724] = SH_CLK_MSTP32(&zx_clk, SMSTPCR7, 24, 0), /* DU0 */
  183. [MSTP723] = SH_CLK_MSTP32(&zx_clk, SMSTPCR7, 23, 0), /* DU1 */
  184. [MSTP722] = SH_CLK_MSTP32(&zx_clk, SMSTPCR7, 22, 0), /* DU2 */
  185. [MSTP721] = SH_CLK_MSTP32(&p_clk, SMSTPCR7, 21, 0), /* SCIF0 */
  186. [MSTP720] = SH_CLK_MSTP32(&p_clk, SMSTPCR7, 20, 0), /* SCIF1 */
  187. [MSTP717] = SH_CLK_MSTP32(&zs_clk, SMSTPCR7, 17, 0), /* HSCIF0 */
  188. [MSTP716] = SH_CLK_MSTP32(&zs_clk, SMSTPCR7, 16, 0), /* HSCIF1 */
  189. [MSTP522] = SH_CLK_MSTP32(&extal_clk, SMSTPCR5, 22, 0), /* Thermal */
  190. [MSTP315] = SH_CLK_MSTP32(&div6_clks[DIV6_MMC0], SMSTPCR3, 15, 0), /* MMC0 */
  191. [MSTP314] = SH_CLK_MSTP32(&div4_clks[DIV4_SD0], SMSTPCR3, 14, 0), /* SDHI0 */
  192. [MSTP313] = SH_CLK_MSTP32(&div4_clks[DIV4_SD1], SMSTPCR3, 13, 0), /* SDHI1 */
  193. [MSTP312] = SH_CLK_MSTP32(&div6_clks[DIV6_SD2], SMSTPCR3, 12, 0), /* SDHI2 */
  194. [MSTP311] = SH_CLK_MSTP32(&div6_clks[DIV6_SD3], SMSTPCR3, 11, 0), /* SDHI3 */
  195. [MSTP305] = SH_CLK_MSTP32(&div6_clks[DIV6_MMC1], SMSTPCR3, 5, 0), /* MMC1 */
  196. [MSTP304] = SH_CLK_MSTP32(&cp_clk, SMSTPCR3, 4, 0), /* TPU0 */
  197. [MSTP216] = SH_CLK_MSTP32(&mp_clk, SMSTPCR2, 16, 0), /* SCIFB2 */
  198. [MSTP207] = SH_CLK_MSTP32(&mp_clk, SMSTPCR2, 7, 0), /* SCIFB1 */
  199. [MSTP206] = SH_CLK_MSTP32(&mp_clk, SMSTPCR2, 6, 0), /* SCIFB0 */
  200. [MSTP204] = SH_CLK_MSTP32(&mp_clk, SMSTPCR2, 4, 0), /* SCIFA0 */
  201. [MSTP203] = SH_CLK_MSTP32(&mp_clk, SMSTPCR2, 3, 0), /* SCIFA1 */
  202. [MSTP202] = SH_CLK_MSTP32(&mp_clk, SMSTPCR2, 2, 0), /* SCIFA2 */
  203. [MSTP124] = SH_CLK_MSTP32(&rclk_clk, SMSTPCR1, 24, 0), /* CMT0 */
  204. };
  205. static struct clk_lookup lookups[] = {
  206. /* main clocks */
  207. CLKDEV_CON_ID("extal", &extal_clk),
  208. CLKDEV_CON_ID("extal_div2", &extal_div2_clk),
  209. CLKDEV_CON_ID("main", &main_clk),
  210. CLKDEV_CON_ID("pll1", &pll1_clk),
  211. CLKDEV_CON_ID("pll1_div2", &pll1_div2_clk),
  212. CLKDEV_CON_ID("pll3", &pll3_clk),
  213. CLKDEV_CON_ID("zg", &zg_clk),
  214. CLKDEV_CON_ID("zx", &zx_clk),
  215. CLKDEV_CON_ID("zs", &zs_clk),
  216. CLKDEV_CON_ID("hp", &hp_clk),
  217. CLKDEV_CON_ID("i", &i_clk),
  218. CLKDEV_CON_ID("b", &b_clk),
  219. CLKDEV_CON_ID("lb", &lb_clk),
  220. CLKDEV_CON_ID("p", &p_clk),
  221. CLKDEV_CON_ID("cl", &cl_clk),
  222. CLKDEV_CON_ID("m2", &m2_clk),
  223. CLKDEV_CON_ID("imp", &imp_clk),
  224. CLKDEV_CON_ID("rclk", &rclk_clk),
  225. CLKDEV_CON_ID("oscclk", &oscclk_clk),
  226. CLKDEV_CON_ID("zb3", &zb3_clk),
  227. CLKDEV_CON_ID("zb3d2", &zb3d2_clk),
  228. CLKDEV_CON_ID("ddr", &ddr_clk),
  229. CLKDEV_CON_ID("mp", &mp_clk),
  230. CLKDEV_CON_ID("qspi", &qspi_clk),
  231. CLKDEV_CON_ID("cp", &cp_clk),
  232. /* DIV4 */
  233. CLKDEV_CON_ID("sdh", &div4_clks[DIV4_SDH]),
  234. /* DIV6 */
  235. CLKDEV_CON_ID("ssp", &div6_clks[DIV6_SSP]),
  236. CLKDEV_CON_ID("ssprs", &div6_clks[DIV6_SSPRS]),
  237. /* MSTP */
  238. CLKDEV_ICK_ID("lvds.0", "rcar-du-r8a7790", &mstp_clks[MSTP726]),
  239. CLKDEV_ICK_ID("lvds.1", "rcar-du-r8a7790", &mstp_clks[MSTP725]),
  240. CLKDEV_ICK_ID("du.0", "rcar-du-r8a7790", &mstp_clks[MSTP724]),
  241. CLKDEV_ICK_ID("du.1", "rcar-du-r8a7790", &mstp_clks[MSTP723]),
  242. CLKDEV_ICK_ID("du.2", "rcar-du-r8a7790", &mstp_clks[MSTP722]),
  243. CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]),
  244. CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP203]),
  245. CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP206]),
  246. CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP207]),
  247. CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP216]),
  248. CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP202]),
  249. CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP721]),
  250. CLKDEV_DEV_ID("sh-sci.7", &mstp_clks[MSTP720]),
  251. CLKDEV_DEV_ID("sh-sci.8", &mstp_clks[MSTP717]),
  252. CLKDEV_DEV_ID("sh-sci.9", &mstp_clks[MSTP716]),
  253. CLKDEV_DEV_ID("e6508000.i2c", &mstp_clks[MSTP931]),
  254. CLKDEV_DEV_ID("e6518000.i2c", &mstp_clks[MSTP930]),
  255. CLKDEV_DEV_ID("e6530000.i2c", &mstp_clks[MSTP929]),
  256. CLKDEV_DEV_ID("e6540000.i2c", &mstp_clks[MSTP928]),
  257. CLKDEV_DEV_ID("r8a7790-ether", &mstp_clks[MSTP813]),
  258. CLKDEV_DEV_ID("rcar_thermal", &mstp_clks[MSTP522]),
  259. CLKDEV_DEV_ID("ee200000.mmcif", &mstp_clks[MSTP315]),
  260. CLKDEV_DEV_ID("sh_mmcif.0", &mstp_clks[MSTP315]),
  261. CLKDEV_DEV_ID("ee100000.sdhi", &mstp_clks[MSTP314]),
  262. CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP314]),
  263. CLKDEV_DEV_ID("ee120000.sdhi", &mstp_clks[MSTP313]),
  264. CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP313]),
  265. CLKDEV_DEV_ID("ee140000.sdhi", &mstp_clks[MSTP312]),
  266. CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP312]),
  267. CLKDEV_DEV_ID("ee160000.sdhi", &mstp_clks[MSTP311]),
  268. CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP311]),
  269. CLKDEV_DEV_ID("ee220000.mmcif", &mstp_clks[MSTP305]),
  270. CLKDEV_DEV_ID("sh_mmcif.1", &mstp_clks[MSTP305]),
  271. CLKDEV_DEV_ID("sh_cmt.0", &mstp_clks[MSTP124]),
  272. };
  273. #define R8A7790_CLOCK_ROOT(e, m, p0, p1, p30, p31) \
  274. extal_clk.rate = e * 1000 * 1000; \
  275. main_clk.parent = m; \
  276. SH_CLK_SET_RATIO(&pll1_clk_ratio, p1 / 2, 1); \
  277. if (mode & MD(19)) \
  278. SH_CLK_SET_RATIO(&pll3_clk_ratio, p31, 1); \
  279. else \
  280. SH_CLK_SET_RATIO(&pll3_clk_ratio, p30, 1)
  281. void __init r8a7790_clock_init(void)
  282. {
  283. u32 mode = rcar_gen2_read_mode_pins();
  284. int k, ret = 0;
  285. switch (mode & (MD(14) | MD(13))) {
  286. case 0:
  287. R8A7790_CLOCK_ROOT(15, &extal_clk, 172, 208, 106, 88);
  288. break;
  289. case MD(13):
  290. R8A7790_CLOCK_ROOT(20, &extal_clk, 130, 156, 80, 66);
  291. break;
  292. case MD(14):
  293. R8A7790_CLOCK_ROOT(26, &extal_div2_clk, 200, 240, 122, 102);
  294. break;
  295. case MD(13) | MD(14):
  296. R8A7790_CLOCK_ROOT(30, &extal_div2_clk, 172, 208, 106, 88);
  297. break;
  298. }
  299. if (mode & (MD(18)))
  300. SH_CLK_SET_RATIO(&lb_clk_ratio, 1, 36);
  301. else
  302. SH_CLK_SET_RATIO(&lb_clk_ratio, 1, 24);
  303. if ((mode & (MD(3) | MD(2) | MD(1))) == MD(2))
  304. SH_CLK_SET_RATIO(&qspi_clk_ratio, 1, 16);
  305. else
  306. SH_CLK_SET_RATIO(&qspi_clk_ratio, 1, 20);
  307. for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
  308. ret = clk_register(main_clks[k]);
  309. if (!ret)
  310. ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
  311. if (!ret)
  312. ret = sh_clk_div6_register(div6_clks, DIV6_NR);
  313. if (!ret)
  314. ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
  315. clkdev_add_table(lookups, ARRAY_SIZE(lookups));
  316. if (!ret)
  317. shmobile_clk_init();
  318. else
  319. panic("failed to setup r8a7790 clocks\n");
  320. }