clock-r8a73a4.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. /*
  2. * r8a73a4 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. #define CPG_BASE 0xe6150000
  28. #define CPG_LEN 0x270
  29. #define SMSTPCR2 0xe6150138
  30. #define SMSTPCR5 0xe6150144
  31. #define FRQCRA 0xE6150000
  32. #define FRQCRB 0xE6150004
  33. #define VCLKCR1 0xE6150008
  34. #define VCLKCR2 0xE615000C
  35. #define VCLKCR3 0xE615001C
  36. #define VCLKCR4 0xE6150014
  37. #define VCLKCR5 0xE6150034
  38. #define ZBCKCR 0xE6150010
  39. #define SD0CKCR 0xE6150074
  40. #define SD1CKCR 0xE6150078
  41. #define SD2CKCR 0xE615007C
  42. #define MMC0CKCR 0xE6150240
  43. #define MMC1CKCR 0xE6150244
  44. #define FSIACKCR 0xE6150018
  45. #define FSIBCKCR 0xE6150090
  46. #define MPCKCR 0xe6150080
  47. #define SPUVCKCR 0xE6150094
  48. #define HSICKCR 0xE615026C
  49. #define M4CKCR 0xE6150098
  50. #define PLLECR 0xE61500D0
  51. #define PLL1CR 0xE6150028
  52. #define PLL2CR 0xE615002C
  53. #define PLL2SCR 0xE61501F4
  54. #define PLL2HCR 0xE61501E4
  55. #define CKSCR 0xE61500C0
  56. #define CPG_MAP(o) ((o - CPG_BASE) + cpg_mapping.base)
  57. static struct clk_mapping cpg_mapping = {
  58. .phys = CPG_BASE,
  59. .len = CPG_LEN,
  60. };
  61. static struct clk extalr_clk = {
  62. .rate = 32768,
  63. .mapping = &cpg_mapping,
  64. };
  65. static struct clk extal1_clk = {
  66. .rate = 26000000,
  67. .mapping = &cpg_mapping,
  68. };
  69. static struct clk extal2_clk = {
  70. .rate = 48000000,
  71. .mapping = &cpg_mapping,
  72. };
  73. static struct sh_clk_ops followparent_clk_ops = {
  74. .recalc = followparent_recalc,
  75. };
  76. static struct clk main_clk = {
  77. /* .parent will be set r8a73a4_clock_init */
  78. .ops = &followparent_clk_ops,
  79. };
  80. SH_CLK_RATIO(div2, 1, 2);
  81. SH_CLK_RATIO(div4, 1, 4);
  82. SH_FIXED_RATIO_CLK(main_div2_clk, main_clk, div2);
  83. SH_FIXED_RATIO_CLK(extal1_div2_clk, extal1_clk, div2);
  84. SH_FIXED_RATIO_CLK(extal2_div2_clk, extal2_clk, div2);
  85. SH_FIXED_RATIO_CLK(extal2_div4_clk, extal2_clk, div4);
  86. /* External FSIACK/FSIBCK clock */
  87. static struct clk fsiack_clk = {
  88. };
  89. static struct clk fsibck_clk = {
  90. };
  91. /*
  92. * PLL clocks
  93. */
  94. static struct clk *pll_parent_main[] = {
  95. [0] = &main_clk,
  96. [1] = &main_div2_clk
  97. };
  98. static struct clk *pll_parent_main_extal[8] = {
  99. [0] = &main_div2_clk,
  100. [1] = &extal2_div2_clk,
  101. [3] = &extal2_div4_clk,
  102. [4] = &main_clk,
  103. [5] = &extal2_clk,
  104. };
  105. static unsigned long pll_recalc(struct clk *clk)
  106. {
  107. unsigned long mult = 1;
  108. if (ioread32(CPG_MAP(PLLECR)) & (1 << clk->enable_bit))
  109. mult = (((ioread32(clk->mapped_reg) >> 24) & 0x7f) + 1);
  110. return clk->parent->rate * mult;
  111. }
  112. static int pll_set_parent(struct clk *clk, struct clk *parent)
  113. {
  114. u32 val;
  115. int i, ret;
  116. if (!clk->parent_table || !clk->parent_num)
  117. return -EINVAL;
  118. /* Search the parent */
  119. for (i = 0; i < clk->parent_num; i++)
  120. if (clk->parent_table[i] == parent)
  121. break;
  122. if (i == clk->parent_num)
  123. return -ENODEV;
  124. ret = clk_reparent(clk, parent);
  125. if (ret < 0)
  126. return ret;
  127. val = ioread32(clk->mapped_reg) &
  128. ~(((1 << clk->src_width) - 1) << clk->src_shift);
  129. iowrite32(val | i << clk->src_shift, clk->mapped_reg);
  130. return 0;
  131. }
  132. static struct sh_clk_ops pll_clk_ops = {
  133. .recalc = pll_recalc,
  134. .set_parent = pll_set_parent,
  135. };
  136. #define PLL_CLOCK(name, p, pt, w, s, reg, e) \
  137. static struct clk name = { \
  138. .ops = &pll_clk_ops, \
  139. .flags = CLK_ENABLE_ON_INIT, \
  140. .parent = p, \
  141. .parent_table = pt, \
  142. .parent_num = ARRAY_SIZE(pt), \
  143. .src_width = w, \
  144. .src_shift = s, \
  145. .enable_reg = (void __iomem *)reg, \
  146. .enable_bit = e, \
  147. .mapping = &cpg_mapping, \
  148. }
  149. PLL_CLOCK(pll1_clk, &main_clk, pll_parent_main, 1, 7, PLL1CR, 1);
  150. PLL_CLOCK(pll2_clk, &main_div2_clk, pll_parent_main_extal, 3, 5, PLL2CR, 2);
  151. PLL_CLOCK(pll2s_clk, &main_div2_clk, pll_parent_main_extal, 3, 5, PLL2SCR, 4);
  152. PLL_CLOCK(pll2h_clk, &main_div2_clk, pll_parent_main_extal, 3, 5, PLL2HCR, 5);
  153. SH_FIXED_RATIO_CLK(pll1_div2_clk, pll1_clk, div2);
  154. static struct clk *main_clks[] = {
  155. &extalr_clk,
  156. &extal1_clk,
  157. &extal1_div2_clk,
  158. &extal2_clk,
  159. &extal2_div2_clk,
  160. &extal2_div4_clk,
  161. &main_clk,
  162. &main_div2_clk,
  163. &fsiack_clk,
  164. &fsibck_clk,
  165. &pll1_clk,
  166. &pll1_div2_clk,
  167. &pll2_clk,
  168. &pll2s_clk,
  169. &pll2h_clk,
  170. };
  171. /* DIV4 */
  172. static void div4_kick(struct clk *clk)
  173. {
  174. unsigned long value;
  175. /* set KICK bit in FRQCRB to update hardware setting */
  176. value = ioread32(CPG_MAP(FRQCRB));
  177. value |= (1 << 31);
  178. iowrite32(value, CPG_MAP(FRQCRB));
  179. }
  180. static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 18, 24, 0, 36, 48, 10};
  181. static struct clk_div_mult_table div4_div_mult_table = {
  182. .divisors = divisors,
  183. .nr_divisors = ARRAY_SIZE(divisors),
  184. };
  185. static struct clk_div4_table div4_table = {
  186. .div_mult_table = &div4_div_mult_table,
  187. .kick = div4_kick,
  188. };
  189. enum {
  190. DIV4_I, DIV4_M3, DIV4_B, DIV4_M1, DIV4_M2,
  191. DIV4_ZX, DIV4_ZS, DIV4_HP,
  192. DIV4_NR };
  193. static struct clk div4_clks[DIV4_NR] = {
  194. [DIV4_I] = SH_CLK_DIV4(&pll1_clk, FRQCRA, 20, 0x0dff, CLK_ENABLE_ON_INIT),
  195. [DIV4_M3] = SH_CLK_DIV4(&pll1_clk, FRQCRA, 12, 0x1dff, CLK_ENABLE_ON_INIT),
  196. [DIV4_B] = SH_CLK_DIV4(&pll1_clk, FRQCRA, 8, 0x0dff, CLK_ENABLE_ON_INIT),
  197. [DIV4_M1] = SH_CLK_DIV4(&pll1_clk, FRQCRA, 4, 0x1dff, 0),
  198. [DIV4_M2] = SH_CLK_DIV4(&pll1_clk, FRQCRA, 0, 0x1dff, 0),
  199. [DIV4_ZX] = SH_CLK_DIV4(&pll1_clk, FRQCRB, 12, 0x0dff, 0),
  200. [DIV4_ZS] = SH_CLK_DIV4(&pll1_clk, FRQCRB, 8, 0x0dff, 0),
  201. [DIV4_HP] = SH_CLK_DIV4(&pll1_clk, FRQCRB, 4, 0x0dff, 0),
  202. };
  203. enum {
  204. DIV6_ZB,
  205. DIV6_SDHI0, DIV6_SDHI1, DIV6_SDHI2,
  206. DIV6_MMC0, DIV6_MMC1,
  207. DIV6_VCK1, DIV6_VCK2, DIV6_VCK3, DIV6_VCK4, DIV6_VCK5,
  208. DIV6_FSIA, DIV6_FSIB,
  209. DIV6_MP, DIV6_M4, DIV6_HSI, DIV6_SPUV,
  210. DIV6_NR };
  211. static struct clk *div6_parents[8] = {
  212. [0] = &pll1_div2_clk,
  213. [1] = &pll2s_clk,
  214. [3] = &extal2_clk,
  215. [4] = &main_div2_clk,
  216. [6] = &extalr_clk,
  217. };
  218. static struct clk *fsia_parents[4] = {
  219. [0] = &pll1_div2_clk,
  220. [1] = &pll2s_clk,
  221. [2] = &fsiack_clk,
  222. };
  223. static struct clk *fsib_parents[4] = {
  224. [0] = &pll1_div2_clk,
  225. [1] = &pll2s_clk,
  226. [2] = &fsibck_clk,
  227. };
  228. static struct clk *mp_parents[4] = {
  229. [0] = &pll1_div2_clk,
  230. [1] = &pll2s_clk,
  231. [2] = &extal2_clk,
  232. [3] = &extal2_clk,
  233. };
  234. static struct clk *m4_parents[2] = {
  235. [0] = &pll2s_clk,
  236. };
  237. static struct clk *hsi_parents[4] = {
  238. [0] = &pll2h_clk,
  239. [1] = &pll1_div2_clk,
  240. [3] = &pll2s_clk,
  241. };
  242. /*** FIXME ***
  243. * SH_CLK_DIV6_EXT() macro doesn't care .mapping
  244. * but, it is necessary on R-Car (= ioremap() base CPG)
  245. * The difference between
  246. * SH_CLK_DIV6_EXT() <--> SH_CLK_MAP_DIV6_EXT()
  247. * is only .mapping
  248. */
  249. #define SH_CLK_MAP_DIV6_EXT(_reg, _flags, _parents, \
  250. _num_parents, _src_shift, _src_width) \
  251. { \
  252. .enable_reg = (void __iomem *)_reg, \
  253. .enable_bit = 0, /* unused */ \
  254. .flags = _flags | CLK_MASK_DIV_ON_DISABLE, \
  255. .div_mask = SH_CLK_DIV6_MSK, \
  256. .parent_table = _parents, \
  257. .parent_num = _num_parents, \
  258. .src_shift = _src_shift, \
  259. .src_width = _src_width, \
  260. .mapping = &cpg_mapping, \
  261. }
  262. static struct clk div6_clks[DIV6_NR] = {
  263. [DIV6_ZB] = SH_CLK_MAP_DIV6_EXT(ZBCKCR, CLK_ENABLE_ON_INIT,
  264. div6_parents, 2, 7, 1),
  265. [DIV6_SDHI0] = SH_CLK_MAP_DIV6_EXT(SD0CKCR, 0,
  266. div6_parents, 2, 6, 2),
  267. [DIV6_SDHI1] = SH_CLK_MAP_DIV6_EXT(SD1CKCR, 0,
  268. div6_parents, 2, 6, 2),
  269. [DIV6_SDHI2] = SH_CLK_MAP_DIV6_EXT(SD2CKCR, 0,
  270. div6_parents, 2, 6, 2),
  271. [DIV6_MMC0] = SH_CLK_MAP_DIV6_EXT(MMC0CKCR, 0,
  272. div6_parents, 2, 6, 2),
  273. [DIV6_MMC1] = SH_CLK_MAP_DIV6_EXT(MMC1CKCR, 0,
  274. div6_parents, 2, 6, 2),
  275. [DIV6_VCK1] = SH_CLK_MAP_DIV6_EXT(VCLKCR1, 0, /* didn't care bit[6-7] */
  276. div6_parents, ARRAY_SIZE(div6_parents), 12, 3),
  277. [DIV6_VCK2] = SH_CLK_MAP_DIV6_EXT(VCLKCR2, 0, /* didn't care bit[6-7] */
  278. div6_parents, ARRAY_SIZE(div6_parents), 12, 3),
  279. [DIV6_VCK3] = SH_CLK_MAP_DIV6_EXT(VCLKCR3, 0, /* didn't care bit[6-7] */
  280. div6_parents, ARRAY_SIZE(div6_parents), 12, 3),
  281. [DIV6_VCK4] = SH_CLK_MAP_DIV6_EXT(VCLKCR4, 0, /* didn't care bit[6-7] */
  282. div6_parents, ARRAY_SIZE(div6_parents), 12, 3),
  283. [DIV6_VCK5] = SH_CLK_MAP_DIV6_EXT(VCLKCR5, 0, /* didn't care bit[6-7] */
  284. div6_parents, ARRAY_SIZE(div6_parents), 12, 3),
  285. [DIV6_FSIA] = SH_CLK_MAP_DIV6_EXT(FSIACKCR, 0,
  286. fsia_parents, ARRAY_SIZE(fsia_parents), 6, 2),
  287. [DIV6_FSIB] = SH_CLK_MAP_DIV6_EXT(FSIBCKCR, 0,
  288. fsib_parents, ARRAY_SIZE(fsib_parents), 6, 2),
  289. [DIV6_MP] = SH_CLK_MAP_DIV6_EXT(MPCKCR, 0, /* it needs bit[9-11] control */
  290. mp_parents, ARRAY_SIZE(mp_parents), 6, 2),
  291. /* pll2s will be selected always for M4 */
  292. [DIV6_M4] = SH_CLK_MAP_DIV6_EXT(M4CKCR, 0, /* it needs bit[9] control */
  293. m4_parents, ARRAY_SIZE(m4_parents), 6, 1),
  294. [DIV6_HSI] = SH_CLK_MAP_DIV6_EXT(HSICKCR, 0, /* it needs bit[9] control */
  295. hsi_parents, ARRAY_SIZE(hsi_parents), 6, 2),
  296. [DIV6_SPUV] = SH_CLK_MAP_DIV6_EXT(SPUVCKCR, 0,
  297. mp_parents, ARRAY_SIZE(mp_parents), 6, 2),
  298. };
  299. /* MSTP */
  300. enum {
  301. MSTP217, MSTP216, MSTP207, MSTP206, MSTP204, MSTP203,
  302. MSTP522,
  303. MSTP_NR
  304. };
  305. static struct clk mstp_clks[MSTP_NR] = {
  306. [MSTP204] = SH_CLK_MSTP32(&div6_clks[DIV6_MP], SMSTPCR2, 4, 0), /* SCIFA0 */
  307. [MSTP203] = SH_CLK_MSTP32(&div6_clks[DIV6_MP], SMSTPCR2, 3, 0), /* SCIFA1 */
  308. [MSTP206] = SH_CLK_MSTP32(&div6_clks[DIV6_MP], SMSTPCR2, 6, 0), /* SCIFB0 */
  309. [MSTP207] = SH_CLK_MSTP32(&div6_clks[DIV6_MP], SMSTPCR2, 7, 0), /* SCIFB1 */
  310. [MSTP216] = SH_CLK_MSTP32(&div6_clks[DIV6_MP], SMSTPCR2, 16, 0), /* SCIFB2 */
  311. [MSTP217] = SH_CLK_MSTP32(&div6_clks[DIV6_MP], SMSTPCR2, 17, 0), /* SCIFB3 */
  312. [MSTP522] = SH_CLK_MSTP32(&extal2_clk, SMSTPCR5, 22, 0), /* Thermal */
  313. };
  314. static struct clk_lookup lookups[] = {
  315. /* main clock */
  316. CLKDEV_CON_ID("extal1", &extal1_clk),
  317. CLKDEV_CON_ID("extal1_div2", &extal1_div2_clk),
  318. CLKDEV_CON_ID("extal2", &extal2_clk),
  319. CLKDEV_CON_ID("extal2_div2", &extal2_div2_clk),
  320. CLKDEV_CON_ID("extal2_div4", &extal2_div4_clk),
  321. CLKDEV_CON_ID("fsiack", &fsiack_clk),
  322. CLKDEV_CON_ID("fsibck", &fsibck_clk),
  323. /* pll clock */
  324. CLKDEV_CON_ID("pll1", &pll1_clk),
  325. CLKDEV_CON_ID("pll1_div2", &pll1_div2_clk),
  326. CLKDEV_CON_ID("pll2", &pll2_clk),
  327. CLKDEV_CON_ID("pll2s", &pll2s_clk),
  328. CLKDEV_CON_ID("pll2h", &pll2h_clk),
  329. /* DIV6 */
  330. CLKDEV_CON_ID("zb", &div6_clks[DIV6_ZB]),
  331. CLKDEV_CON_ID("sdhi0", &div6_clks[DIV6_SDHI0]),
  332. CLKDEV_CON_ID("sdhi1", &div6_clks[DIV6_SDHI1]),
  333. CLKDEV_CON_ID("sdhi2", &div6_clks[DIV6_SDHI2]),
  334. CLKDEV_CON_ID("mmc0", &div6_clks[DIV6_MMC0]),
  335. CLKDEV_CON_ID("mmc1", &div6_clks[DIV6_MMC1]),
  336. CLKDEV_CON_ID("vck1", &div6_clks[DIV6_VCK1]),
  337. CLKDEV_CON_ID("vck2", &div6_clks[DIV6_VCK2]),
  338. CLKDEV_CON_ID("vck3", &div6_clks[DIV6_VCK3]),
  339. CLKDEV_CON_ID("vck4", &div6_clks[DIV6_VCK4]),
  340. CLKDEV_CON_ID("vck5", &div6_clks[DIV6_VCK5]),
  341. CLKDEV_CON_ID("fsia", &div6_clks[DIV6_FSIA]),
  342. CLKDEV_CON_ID("fsib", &div6_clks[DIV6_FSIB]),
  343. CLKDEV_CON_ID("mp", &div6_clks[DIV6_MP]),
  344. CLKDEV_CON_ID("m4", &div6_clks[DIV6_M4]),
  345. CLKDEV_CON_ID("hsi", &div6_clks[DIV6_HSI]),
  346. CLKDEV_CON_ID("spuv", &div6_clks[DIV6_SPUV]),
  347. /* MSTP */
  348. CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]),
  349. CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP203]),
  350. CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP206]),
  351. CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP207]),
  352. CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP216]),
  353. CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP217]),
  354. CLKDEV_DEV_ID("rcar_thermal", &mstp_clks[MSTP522]),
  355. /* for DT */
  356. CLKDEV_DEV_ID("e61f0000.thermal", &mstp_clks[MSTP522]),
  357. };
  358. void __init r8a73a4_clock_init(void)
  359. {
  360. void __iomem *reg;
  361. int k, ret = 0;
  362. u32 ckscr;
  363. reg = ioremap_nocache(CKSCR, PAGE_SIZE);
  364. BUG_ON(!reg);
  365. ckscr = ioread32(reg);
  366. iounmap(reg);
  367. switch ((ckscr >> 28) & 0x3) {
  368. case 0:
  369. main_clk.parent = &extal1_clk;
  370. break;
  371. case 1:
  372. main_clk.parent = &extal1_div2_clk;
  373. break;
  374. case 2:
  375. main_clk.parent = &extal2_clk;
  376. break;
  377. case 3:
  378. main_clk.parent = &extal2_div2_clk;
  379. break;
  380. }
  381. for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
  382. ret = clk_register(main_clks[k]);
  383. if (!ret)
  384. ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
  385. if (!ret)
  386. ret = sh_clk_div6_reparent_register(div6_clks, DIV6_NR);
  387. if (!ret)
  388. ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
  389. clkdev_add_table(lookups, ARRAY_SIZE(lookups));
  390. if (!ret)
  391. shmobile_clk_init();
  392. else
  393. panic("failed to setup r8a73a4 clocks\n");
  394. }