clock-sh7367.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. /*
  2. * SH7367 clock framework support
  3. *
  4. * Copyright (C) 2010 Magnus Damm
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; version 2 of the License.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #include <linux/init.h>
  20. #include <linux/kernel.h>
  21. #include <linux/io.h>
  22. #include <linux/sh_clk.h>
  23. #include <linux/clkdev.h>
  24. #include <mach/common.h>
  25. /* SH7367 registers */
  26. #define RTFRQCR 0xe6150000
  27. #define SYFRQCR 0xe6150004
  28. #define CMFRQCR 0xe61500E0
  29. #define VCLKCR1 0xe6150008
  30. #define VCLKCR2 0xe615000C
  31. #define VCLKCR3 0xe615001C
  32. #define SCLKACR 0xe6150010
  33. #define SCLKBCR 0xe6150014
  34. #define SUBUSBCKCR 0xe6158080
  35. #define SPUCKCR 0xe6150084
  36. #define MSUCKCR 0xe6150088
  37. #define MVI3CKCR 0xe6150090
  38. #define VOUCKCR 0xe6150094
  39. #define MFCK1CR 0xe6150098
  40. #define MFCK2CR 0xe615009C
  41. #define PLLC1CR 0xe6150028
  42. #define PLLC2CR 0xe615002C
  43. #define RTMSTPCR0 0xe6158030
  44. #define RTMSTPCR2 0xe6158038
  45. #define SYMSTPCR0 0xe6158040
  46. #define SYMSTPCR2 0xe6158048
  47. #define CMMSTPCR0 0xe615804c
  48. /* Fixed 32 KHz root clock from EXTALR pin */
  49. static struct clk r_clk = {
  50. .rate = 32768,
  51. };
  52. /*
  53. * 26MHz default rate for the EXTALB1 root input clock.
  54. * If needed, reset this with clk_set_rate() from the platform code.
  55. */
  56. struct clk sh7367_extalb1_clk = {
  57. .rate = 26666666,
  58. };
  59. /*
  60. * 48MHz default rate for the EXTAL2 root input clock.
  61. * If needed, reset this with clk_set_rate() from the platform code.
  62. */
  63. struct clk sh7367_extal2_clk = {
  64. .rate = 48000000,
  65. };
  66. /* A fixed divide-by-2 block */
  67. static unsigned long div2_recalc(struct clk *clk)
  68. {
  69. return clk->parent->rate / 2;
  70. }
  71. static struct clk_ops div2_clk_ops = {
  72. .recalc = div2_recalc,
  73. };
  74. /* Divide extalb1 by two */
  75. static struct clk extalb1_div2_clk = {
  76. .ops = &div2_clk_ops,
  77. .parent = &sh7367_extalb1_clk,
  78. };
  79. /* Divide extal2 by two */
  80. static struct clk extal2_div2_clk = {
  81. .ops = &div2_clk_ops,
  82. .parent = &sh7367_extal2_clk,
  83. };
  84. /* PLLC1 */
  85. static unsigned long pllc1_recalc(struct clk *clk)
  86. {
  87. unsigned long mult = 1;
  88. if (__raw_readl(PLLC1CR) & (1 << 14))
  89. mult = (((__raw_readl(RTFRQCR) >> 24) & 0x3f) + 1) * 2;
  90. return clk->parent->rate * mult;
  91. }
  92. static struct clk_ops pllc1_clk_ops = {
  93. .recalc = pllc1_recalc,
  94. };
  95. static struct clk pllc1_clk = {
  96. .ops = &pllc1_clk_ops,
  97. .flags = CLK_ENABLE_ON_INIT,
  98. .parent = &extalb1_div2_clk,
  99. };
  100. /* Divide PLLC1 by two */
  101. static struct clk pllc1_div2_clk = {
  102. .ops = &div2_clk_ops,
  103. .parent = &pllc1_clk,
  104. };
  105. /* PLLC2 */
  106. static unsigned long pllc2_recalc(struct clk *clk)
  107. {
  108. unsigned long mult = 1;
  109. if (__raw_readl(PLLC2CR) & (1 << 31))
  110. mult = (((__raw_readl(PLLC2CR) >> 24) & 0x3f) + 1) * 2;
  111. return clk->parent->rate * mult;
  112. }
  113. static struct clk_ops pllc2_clk_ops = {
  114. .recalc = pllc2_recalc,
  115. };
  116. static struct clk pllc2_clk = {
  117. .ops = &pllc2_clk_ops,
  118. .flags = CLK_ENABLE_ON_INIT,
  119. .parent = &extalb1_div2_clk,
  120. };
  121. static struct clk *main_clks[] = {
  122. &r_clk,
  123. &sh7367_extalb1_clk,
  124. &sh7367_extal2_clk,
  125. &extalb1_div2_clk,
  126. &extal2_div2_clk,
  127. &pllc1_clk,
  128. &pllc1_div2_clk,
  129. &pllc2_clk,
  130. };
  131. static void div4_kick(struct clk *clk)
  132. {
  133. unsigned long value;
  134. /* set KICK bit in SYFRQCR to update hardware setting */
  135. value = __raw_readl(SYFRQCR);
  136. value |= (1 << 31);
  137. __raw_writel(value, SYFRQCR);
  138. }
  139. static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 18,
  140. 24, 32, 36, 48, 0, 72, 0, 0 };
  141. static struct clk_div_mult_table div4_div_mult_table = {
  142. .divisors = divisors,
  143. .nr_divisors = ARRAY_SIZE(divisors),
  144. };
  145. static struct clk_div4_table div4_table = {
  146. .div_mult_table = &div4_div_mult_table,
  147. .kick = div4_kick,
  148. };
  149. enum { DIV4_I, DIV4_G, DIV4_S, DIV4_B,
  150. DIV4_ZX, DIV4_ZT, DIV4_Z, DIV4_ZD, DIV4_HP,
  151. DIV4_ZS, DIV4_ZB, DIV4_ZB3, DIV4_CP, DIV4_NR };
  152. #define DIV4(_reg, _bit, _mask, _flags) \
  153. SH_CLK_DIV4(&pllc1_clk, _reg, _bit, _mask, _flags)
  154. static struct clk div4_clks[DIV4_NR] = {
  155. [DIV4_I] = DIV4(RTFRQCR, 20, 0x6fff, CLK_ENABLE_ON_INIT),
  156. [DIV4_G] = DIV4(RTFRQCR, 16, 0x6fff, CLK_ENABLE_ON_INIT),
  157. [DIV4_S] = DIV4(RTFRQCR, 12, 0x6fff, CLK_ENABLE_ON_INIT),
  158. [DIV4_B] = DIV4(RTFRQCR, 8, 0x6fff, CLK_ENABLE_ON_INIT),
  159. [DIV4_ZX] = DIV4(SYFRQCR, 20, 0x6fff, 0),
  160. [DIV4_ZT] = DIV4(SYFRQCR, 16, 0x6fff, 0),
  161. [DIV4_Z] = DIV4(SYFRQCR, 12, 0x6fff, 0),
  162. [DIV4_ZD] = DIV4(SYFRQCR, 8, 0x6fff, 0),
  163. [DIV4_HP] = DIV4(SYFRQCR, 4, 0x6fff, 0),
  164. [DIV4_ZS] = DIV4(CMFRQCR, 12, 0x6fff, 0),
  165. [DIV4_ZB] = DIV4(CMFRQCR, 8, 0x6fff, 0),
  166. [DIV4_ZB3] = DIV4(CMFRQCR, 4, 0x6fff, 0),
  167. [DIV4_CP] = DIV4(CMFRQCR, 0, 0x6fff, 0),
  168. };
  169. enum { DIV6_SUB, DIV6_SIUA, DIV6_SIUB, DIV6_MSU, DIV6_SPU,
  170. DIV6_MVI3, DIV6_MF1, DIV6_MF2,
  171. DIV6_VCK1, DIV6_VCK2, DIV6_VCK3, DIV6_VOU,
  172. DIV6_NR };
  173. static struct clk div6_clks[DIV6_NR] = {
  174. [DIV6_SUB] = SH_CLK_DIV6(&sh7367_extal2_clk, SUBUSBCKCR, 0),
  175. [DIV6_SIUA] = SH_CLK_DIV6(&pllc1_div2_clk, SCLKACR, 0),
  176. [DIV6_SIUB] = SH_CLK_DIV6(&pllc1_div2_clk, SCLKBCR, 0),
  177. [DIV6_MSU] = SH_CLK_DIV6(&pllc1_div2_clk, MSUCKCR, 0),
  178. [DIV6_SPU] = SH_CLK_DIV6(&pllc1_div2_clk, SPUCKCR, 0),
  179. [DIV6_MVI3] = SH_CLK_DIV6(&pllc1_div2_clk, MVI3CKCR, 0),
  180. [DIV6_MF1] = SH_CLK_DIV6(&pllc1_div2_clk, MFCK1CR, 0),
  181. [DIV6_MF2] = SH_CLK_DIV6(&pllc1_div2_clk, MFCK2CR, 0),
  182. [DIV6_VCK1] = SH_CLK_DIV6(&pllc1_div2_clk, VCLKCR1, 0),
  183. [DIV6_VCK2] = SH_CLK_DIV6(&pllc1_div2_clk, VCLKCR2, 0),
  184. [DIV6_VCK3] = SH_CLK_DIV6(&pllc1_div2_clk, VCLKCR3, 0),
  185. [DIV6_VOU] = SH_CLK_DIV6(&pllc1_div2_clk, VOUCKCR, 0),
  186. };
  187. enum { RTMSTP001,
  188. RTMSTP231, RTMSTP230, RTMSTP229, RTMSTP228, RTMSTP226,
  189. RTMSTP216, RTMSTP206, RTMSTP205, RTMSTP201,
  190. SYMSTP023, SYMSTP007, SYMSTP006, SYMSTP004,
  191. SYMSTP003, SYMSTP002, SYMSTP001, SYMSTP000,
  192. SYMSTP231, SYMSTP229, SYMSTP225, SYMSTP223, SYMSTP222,
  193. SYMSTP215, SYMSTP214, SYMSTP213, SYMSTP211,
  194. CMMSTP003,
  195. MSTP_NR };
  196. #define MSTP(_parent, _reg, _bit, _flags) \
  197. SH_CLK_MSTP32(_parent, _reg, _bit, _flags)
  198. static struct clk mstp_clks[MSTP_NR] = {
  199. [RTMSTP001] = MSTP(&div6_clks[DIV6_SUB], RTMSTPCR0, 1, 0), /* IIC2 */
  200. [RTMSTP231] = MSTP(&div4_clks[DIV4_B], RTMSTPCR2, 31, 0), /* VEU3 */
  201. [RTMSTP230] = MSTP(&div4_clks[DIV4_B], RTMSTPCR2, 30, 0), /* VEU2 */
  202. [RTMSTP229] = MSTP(&div4_clks[DIV4_B], RTMSTPCR2, 29, 0), /* VEU1 */
  203. [RTMSTP228] = MSTP(&div4_clks[DIV4_B], RTMSTPCR2, 28, 0), /* VEU0 */
  204. [RTMSTP226] = MSTP(&div4_clks[DIV4_B], RTMSTPCR2, 26, 0), /* VEU2H */
  205. [RTMSTP216] = MSTP(&div6_clks[DIV6_SUB], RTMSTPCR2, 16, 0), /* IIC0 */
  206. [RTMSTP206] = MSTP(&div4_clks[DIV4_B], RTMSTPCR2, 6, 0), /* JPU */
  207. [RTMSTP205] = MSTP(&div6_clks[DIV6_VOU], RTMSTPCR2, 5, 0), /* VOU */
  208. [RTMSTP201] = MSTP(&div4_clks[DIV4_B], RTMSTPCR2, 1, 0), /* VPU */
  209. [SYMSTP023] = MSTP(&div6_clks[DIV6_SPU], SYMSTPCR0, 23, 0), /* SPU1 */
  210. [SYMSTP007] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR0, 7, 0), /* SCIFA5 */
  211. [SYMSTP006] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR0, 6, 0), /* SCIFB */
  212. [SYMSTP004] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR0, 4, 0), /* SCIFA0 */
  213. [SYMSTP003] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR0, 3, 0), /* SCIFA1 */
  214. [SYMSTP002] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR0, 2, 0), /* SCIFA2 */
  215. [SYMSTP001] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR0, 1, 0), /* SCIFA3 */
  216. [SYMSTP000] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR0, 0, 0), /* SCIFA4 */
  217. [SYMSTP231] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR2, 31, 0), /* SIU */
  218. [SYMSTP229] = MSTP(&r_clk, SYMSTPCR2, 29, 0), /* CMT10 */
  219. [SYMSTP225] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR2, 25, 0), /* IRDA */
  220. [SYMSTP223] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR2, 23, 0), /* IIC1 */
  221. [SYMSTP222] = MSTP(&div6_clks[DIV6_SUB], SYMSTPCR2, 22, 0), /* USBHS */
  222. [SYMSTP215] = MSTP(&div4_clks[DIV4_HP], SYMSTPCR2, 15, 0), /* FLCTL */
  223. [SYMSTP214] = MSTP(&div4_clks[DIV4_HP], SYMSTPCR2, 14, 0), /* SDHI0 */
  224. [SYMSTP213] = MSTP(&div4_clks[DIV4_HP], SYMSTPCR2, 13, 0), /* SDHI1 */
  225. [SYMSTP211] = MSTP(&div4_clks[DIV4_HP], SYMSTPCR2, 11, 0), /* SDHI2 */
  226. [CMMSTP003] = MSTP(&r_clk, CMMSTPCR0, 3, 0), /* KEYSC */
  227. };
  228. #define CLKDEV_CON_ID(_id, _clk) { .con_id = _id, .clk = _clk }
  229. #define CLKDEV_DEV_ID(_id, _clk) { .dev_id = _id, .clk = _clk }
  230. static struct clk_lookup lookups[] = {
  231. /* main clocks */
  232. CLKDEV_CON_ID("r_clk", &r_clk),
  233. CLKDEV_CON_ID("extalb1", &sh7367_extalb1_clk),
  234. CLKDEV_CON_ID("extal2", &sh7367_extal2_clk),
  235. CLKDEV_CON_ID("extalb1_div2_clk", &extalb1_div2_clk),
  236. CLKDEV_CON_ID("extal2_div2_clk", &extal2_div2_clk),
  237. CLKDEV_CON_ID("pllc1_clk", &pllc1_clk),
  238. CLKDEV_CON_ID("pllc1_div2_clk", &pllc1_div2_clk),
  239. CLKDEV_CON_ID("pllc2_clk", &pllc2_clk),
  240. /* DIV4 clocks */
  241. CLKDEV_CON_ID("i_clk", &div4_clks[DIV4_I]),
  242. CLKDEV_CON_ID("g_clk", &div4_clks[DIV4_G]),
  243. CLKDEV_CON_ID("b_clk", &div4_clks[DIV4_B]),
  244. CLKDEV_CON_ID("zx_clk", &div4_clks[DIV4_ZX]),
  245. CLKDEV_CON_ID("zt_clk", &div4_clks[DIV4_ZT]),
  246. CLKDEV_CON_ID("z_clk", &div4_clks[DIV4_Z]),
  247. CLKDEV_CON_ID("zd_clk", &div4_clks[DIV4_ZD]),
  248. CLKDEV_CON_ID("hp_clk", &div4_clks[DIV4_HP]),
  249. CLKDEV_CON_ID("zs_clk", &div4_clks[DIV4_ZS]),
  250. CLKDEV_CON_ID("zb_clk", &div4_clks[DIV4_ZB]),
  251. CLKDEV_CON_ID("zb3_clk", &div4_clks[DIV4_ZB3]),
  252. CLKDEV_CON_ID("cp_clk", &div4_clks[DIV4_CP]),
  253. /* DIV6 clocks */
  254. CLKDEV_CON_ID("sub_clk", &div6_clks[DIV6_SUB]),
  255. CLKDEV_CON_ID("siua_clk", &div6_clks[DIV6_SIUA]),
  256. CLKDEV_CON_ID("siub_clk", &div6_clks[DIV6_SIUB]),
  257. CLKDEV_CON_ID("msu_clk", &div6_clks[DIV6_MSU]),
  258. CLKDEV_CON_ID("spu_clk", &div6_clks[DIV6_SPU]),
  259. CLKDEV_CON_ID("mvi3_clk", &div6_clks[DIV6_MVI3]),
  260. CLKDEV_CON_ID("mf1_clk", &div6_clks[DIV6_MF1]),
  261. CLKDEV_CON_ID("mf2_clk", &div6_clks[DIV6_MF2]),
  262. CLKDEV_CON_ID("vck1_clk", &div6_clks[DIV6_VCK1]),
  263. CLKDEV_CON_ID("vck2_clk", &div6_clks[DIV6_VCK2]),
  264. CLKDEV_CON_ID("vck3_clk", &div6_clks[DIV6_VCK3]),
  265. CLKDEV_CON_ID("vou_clk", &div6_clks[DIV6_VOU]),
  266. /* MSTP32 clocks */
  267. CLKDEV_DEV_ID("i2c-sh_mobile.2", &mstp_clks[RTMSTP001]), /* IIC2 */
  268. CLKDEV_DEV_ID("uio_pdrv_genirq.4", &mstp_clks[RTMSTP231]), /* VEU3 */
  269. CLKDEV_DEV_ID("uio_pdrv_genirq.3", &mstp_clks[RTMSTP230]), /* VEU2 */
  270. CLKDEV_DEV_ID("uio_pdrv_genirq.2", &mstp_clks[RTMSTP229]), /* VEU1 */
  271. CLKDEV_DEV_ID("uio_pdrv_genirq.1", &mstp_clks[RTMSTP228]), /* VEU0 */
  272. CLKDEV_DEV_ID("uio_pdrv_genirq.5", &mstp_clks[RTMSTP226]), /* VEU2H */
  273. CLKDEV_DEV_ID("i2c-sh_mobile.0", &mstp_clks[RTMSTP216]), /* IIC0 */
  274. CLKDEV_DEV_ID("uio_pdrv_genirq.6", &mstp_clks[RTMSTP206]), /* JPU */
  275. CLKDEV_DEV_ID("sh-vou", &mstp_clks[RTMSTP205]), /* VOU */
  276. CLKDEV_DEV_ID("uio_pdrv_genirq.0", &mstp_clks[RTMSTP201]), /* VPU */
  277. CLKDEV_DEV_ID("uio_pdrv_genirq.7", &mstp_clks[SYMSTP023]), /* SPU1 */
  278. CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[SYMSTP007]), /* SCIFA5 */
  279. CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[SYMSTP006]), /* SCIFB */
  280. CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[SYMSTP004]), /* SCIFA0 */
  281. CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[SYMSTP003]), /* SCIFA1 */
  282. CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[SYMSTP002]), /* SCIFA2 */
  283. CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[SYMSTP001]), /* SCIFA3 */
  284. CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[SYMSTP000]), /* SCIFA4 */
  285. CLKDEV_DEV_ID("sh_siu", &mstp_clks[SYMSTP231]), /* SIU */
  286. CLKDEV_DEV_ID("sh_cmt.10", &mstp_clks[SYMSTP229]), /* CMT10 */
  287. CLKDEV_DEV_ID("sh_irda", &mstp_clks[SYMSTP225]), /* IRDA */
  288. CLKDEV_DEV_ID("i2c-sh_mobile.1", &mstp_clks[SYMSTP223]), /* IIC1 */
  289. CLKDEV_DEV_ID("r8a66597_hcd.0", &mstp_clks[SYMSTP222]), /* USBHS */
  290. CLKDEV_DEV_ID("r8a66597_udc.0", &mstp_clks[SYMSTP222]), /* USBHS */
  291. CLKDEV_DEV_ID("sh_flctl", &mstp_clks[SYMSTP215]), /* FLCTL */
  292. CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[SYMSTP214]), /* SDHI0 */
  293. CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[SYMSTP213]), /* SDHI1 */
  294. CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[SYMSTP211]), /* SDHI2 */
  295. CLKDEV_DEV_ID("sh_keysc.0", &mstp_clks[CMMSTP003]), /* KEYSC */
  296. };
  297. void __init sh7367_clock_init(void)
  298. {
  299. int k, ret = 0;
  300. for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
  301. ret = clk_register(main_clks[k]);
  302. if (!ret)
  303. ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
  304. if (!ret)
  305. ret = sh_clk_div6_register(div6_clks, DIV6_NR);
  306. if (!ret)
  307. ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR);
  308. clkdev_add_table(lookups, ARRAY_SIZE(lookups));
  309. if (!ret)
  310. clk_init();
  311. else
  312. panic("failed to setup sh7367 clocks\n");
  313. }