clock-sh7372.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. /*
  2. * SH7372 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; either 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 <mach/common.h>
  24. #include <asm/clkdev.h>
  25. /* SH7372 registers */
  26. #define FRQCRA 0xe6150000
  27. #define FRQCRB 0xe6150004
  28. #define FRQCRC 0xe61500e0
  29. #define FRQCRD 0xe61500e4
  30. #define VCLKCR1 0xe6150008
  31. #define VCLKCR2 0xe615000c
  32. #define VCLKCR3 0xe615001c
  33. #define FMSICKCR 0xe6150010
  34. #define FMSOCKCR 0xe6150014
  35. #define FSIACKCR 0xe6150018
  36. #define FSIBCKCR 0xe6150090
  37. #define SUBCKCR 0xe6150080
  38. #define SPUCKCR 0xe6150084
  39. #define VOUCKCR 0xe6150088
  40. #define HDMICKCR 0xe6150094
  41. #define DSITCKCR 0xe6150060
  42. #define DSI0PCKCR 0xe6150064
  43. #define DSI1PCKCR 0xe6150098
  44. #define PLLC01CR 0xe6150028
  45. #define PLLC2CR 0xe615002c
  46. #define SMSTPCR0 0xe6150130
  47. #define SMSTPCR1 0xe6150134
  48. #define SMSTPCR2 0xe6150138
  49. #define SMSTPCR3 0xe615013c
  50. #define SMSTPCR4 0xe6150140
  51. /* Fixed 32 KHz root clock from EXTALR pin */
  52. static struct clk r_clk = {
  53. .rate = 32768,
  54. };
  55. /*
  56. * 26MHz default rate for the EXTAL1 root input clock.
  57. * If needed, reset this with clk_set_rate() from the platform code.
  58. */
  59. struct clk sh7372_extal1_clk = {
  60. .rate = 26000000,
  61. };
  62. /*
  63. * 48MHz default rate for the EXTAL2 root input clock.
  64. * If needed, reset this with clk_set_rate() from the platform code.
  65. */
  66. struct clk sh7372_extal2_clk = {
  67. .rate = 48000000,
  68. };
  69. /* A fixed divide-by-2 block */
  70. static unsigned long div2_recalc(struct clk *clk)
  71. {
  72. return clk->parent->rate / 2;
  73. }
  74. static struct clk_ops div2_clk_ops = {
  75. .recalc = div2_recalc,
  76. };
  77. /* Divide extal1 by two */
  78. static struct clk extal1_div2_clk = {
  79. .ops = &div2_clk_ops,
  80. .parent = &sh7372_extal1_clk,
  81. };
  82. /* Divide extal2 by two */
  83. static struct clk extal2_div2_clk = {
  84. .ops = &div2_clk_ops,
  85. .parent = &sh7372_extal2_clk,
  86. };
  87. /* Divide extal2 by four */
  88. static struct clk extal2_div4_clk = {
  89. .ops = &div2_clk_ops,
  90. .parent = &extal2_div2_clk,
  91. };
  92. /* PLLC0 and PLLC1 */
  93. static unsigned long pllc01_recalc(struct clk *clk)
  94. {
  95. unsigned long mult = 1;
  96. if (__raw_readl(PLLC01CR) & (1 << 14))
  97. mult = (((__raw_readl(clk->enable_reg) >> 24) & 0x3f) + 1) * 2;
  98. return clk->parent->rate * mult;
  99. }
  100. static struct clk_ops pllc01_clk_ops = {
  101. .recalc = pllc01_recalc,
  102. };
  103. static struct clk pllc0_clk = {
  104. .ops = &pllc01_clk_ops,
  105. .flags = CLK_ENABLE_ON_INIT,
  106. .parent = &extal1_div2_clk,
  107. .enable_reg = (void __iomem *)FRQCRC,
  108. };
  109. static struct clk pllc1_clk = {
  110. .ops = &pllc01_clk_ops,
  111. .flags = CLK_ENABLE_ON_INIT,
  112. .parent = &extal1_div2_clk,
  113. .enable_reg = (void __iomem *)FRQCRA,
  114. };
  115. /* Divide PLLC1 by two */
  116. static struct clk pllc1_div2_clk = {
  117. .ops = &div2_clk_ops,
  118. .parent = &pllc1_clk,
  119. };
  120. /* PLLC2 */
  121. static unsigned long pllc2_recalc(struct clk *clk)
  122. {
  123. unsigned long mult = 1;
  124. if (__raw_readl(PLLC2CR) & (1 << 31))
  125. mult = (((__raw_readl(PLLC2CR) >> 24) & 0x3f) + 1) * 2;
  126. return clk->parent->rate * mult;
  127. }
  128. static struct clk_ops pllc2_clk_ops = {
  129. .recalc = pllc2_recalc,
  130. };
  131. static struct clk pllc2_clk = {
  132. .ops = &pllc2_clk_ops,
  133. .flags = CLK_ENABLE_ON_INIT,
  134. .parent = &extal1_div2_clk,
  135. };
  136. static struct clk *main_clks[] = {
  137. &r_clk,
  138. &sh7372_extal1_clk,
  139. &sh7372_extal2_clk,
  140. &extal1_div2_clk,
  141. &extal2_div2_clk,
  142. &extal2_div4_clk,
  143. &pllc0_clk,
  144. &pllc1_clk,
  145. &pllc1_div2_clk,
  146. &pllc2_clk,
  147. };
  148. static void div4_kick(struct clk *clk)
  149. {
  150. unsigned long value;
  151. /* set KICK bit in FRQCRB to update hardware setting */
  152. value = __raw_readl(FRQCRB);
  153. value |= (1 << 31);
  154. __raw_writel(value, FRQCRB);
  155. }
  156. static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 18,
  157. 24, 32, 36, 48, 0, 72, 96, 0 };
  158. static struct clk_div_mult_table div4_div_mult_table = {
  159. .divisors = divisors,
  160. .nr_divisors = ARRAY_SIZE(divisors),
  161. };
  162. static struct clk_div4_table div4_table = {
  163. .div_mult_table = &div4_div_mult_table,
  164. .kick = div4_kick,
  165. };
  166. enum { DIV4_I, DIV4_ZG, DIV4_B, DIV4_M1, DIV4_CSIR,
  167. DIV4_ZTR, DIV4_ZT, DIV4_ZX, DIV4_HP,
  168. DIV4_ISPB, DIV4_S, DIV4_ZB, DIV4_ZB3, DIV4_CP,
  169. DIV4_DDRP, DIV4_NR };
  170. #define DIV4(_reg, _bit, _mask, _flags) \
  171. SH_CLK_DIV4(&pllc1_clk, _reg, _bit, _mask, _flags)
  172. static struct clk div4_clks[DIV4_NR] = {
  173. [DIV4_I] = DIV4(FRQCRA, 20, 0x6fff, CLK_ENABLE_ON_INIT),
  174. [DIV4_ZG] = DIV4(FRQCRA, 16, 0x6fff, CLK_ENABLE_ON_INIT),
  175. [DIV4_B] = DIV4(FRQCRA, 8, 0x6fff, CLK_ENABLE_ON_INIT),
  176. [DIV4_M1] = DIV4(FRQCRA, 4, 0x6fff, CLK_ENABLE_ON_INIT),
  177. [DIV4_CSIR] = DIV4(FRQCRA, 0, 0x6fff, 0),
  178. [DIV4_ZTR] = DIV4(FRQCRB, 20, 0x6fff, 0),
  179. [DIV4_ZT] = DIV4(FRQCRB, 16, 0x6fff, 0),
  180. [DIV4_ZX] = DIV4(FRQCRB, 12, 0x6fff, 0),
  181. [DIV4_HP] = DIV4(FRQCRB, 4, 0x6fff, 0),
  182. [DIV4_ISPB] = DIV4(FRQCRC, 20, 0x6fff, 0),
  183. [DIV4_S] = DIV4(FRQCRC, 12, 0x6fff, 0),
  184. [DIV4_ZB] = DIV4(FRQCRC, 8, 0x6fff, 0),
  185. [DIV4_ZB3] = DIV4(FRQCRC, 4, 0x6fff, 0),
  186. [DIV4_CP] = DIV4(FRQCRC, 0, 0x6fff, 0),
  187. [DIV4_DDRP] = DIV4(FRQCRD, 0, 0x677c, 0),
  188. };
  189. enum { DIV6_VCK1, DIV6_VCK2, DIV6_VCK3, DIV6_FMSI, DIV6_FMSO,
  190. DIV6_FSIA, DIV6_FSIB, DIV6_SUB, DIV6_SPU,
  191. DIV6_VOU, DIV6_HDMI, DIV6_DSIT, DIV6_DSI0P, DIV6_DSI1P,
  192. DIV6_NR };
  193. static struct clk div6_clks[DIV6_NR] = {
  194. [DIV6_VCK1] = SH_CLK_DIV6(&pllc1_div2_clk, VCLKCR1, 0),
  195. [DIV6_VCK2] = SH_CLK_DIV6(&pllc1_div2_clk, VCLKCR2, 0),
  196. [DIV6_VCK3] = SH_CLK_DIV6(&pllc1_div2_clk, VCLKCR3, 0),
  197. [DIV6_FMSI] = SH_CLK_DIV6(&pllc1_div2_clk, FMSICKCR, 0),
  198. [DIV6_FMSO] = SH_CLK_DIV6(&pllc1_div2_clk, FMSOCKCR, 0),
  199. [DIV6_FSIA] = SH_CLK_DIV6(&pllc1_div2_clk, FSIACKCR, 0),
  200. [DIV6_FSIB] = SH_CLK_DIV6(&pllc1_div2_clk, FSIBCKCR, 0),
  201. [DIV6_SUB] = SH_CLK_DIV6(&sh7372_extal2_clk, SUBCKCR, 0),
  202. [DIV6_SPU] = SH_CLK_DIV6(&pllc1_div2_clk, SPUCKCR, 0),
  203. [DIV6_VOU] = SH_CLK_DIV6(&pllc1_div2_clk, VOUCKCR, 0),
  204. [DIV6_HDMI] = SH_CLK_DIV6(&pllc1_div2_clk, HDMICKCR, 0),
  205. [DIV6_DSIT] = SH_CLK_DIV6(&pllc1_div2_clk, DSITCKCR, 0),
  206. [DIV6_DSI0P] = SH_CLK_DIV6(&pllc1_div2_clk, DSI0PCKCR, 0),
  207. [DIV6_DSI1P] = SH_CLK_DIV6(&pllc1_div2_clk, DSI1PCKCR, 0),
  208. };
  209. enum { MSTP001,
  210. MSTP131, MSTP130,
  211. MSTP129, MSTP128,
  212. MSTP118, MSTP117, MSTP116,
  213. MSTP106, MSTP101, MSTP100,
  214. MSTP223,
  215. MSTP207, MSTP206, MSTP204, MSTP203, MSTP202, MSTP201, MSTP200,
  216. MSTP329, MSTP328, MSTP323, MSTP322, MSTP314, MSTP313, MSTP312,
  217. MSTP415, MSTP410, MSTP411, MSTP406, MSTP403,
  218. MSTP_NR };
  219. #define MSTP(_parent, _reg, _bit, _flags) \
  220. SH_CLK_MSTP32(_parent, _reg, _bit, _flags)
  221. static struct clk mstp_clks[MSTP_NR] = {
  222. [MSTP001] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR0, 1, 0), /* IIC2 */
  223. [MSTP131] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 31, 0), /* VEU3 */
  224. [MSTP130] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 30, 0), /* VEU2 */
  225. [MSTP129] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 29, 0), /* VEU1 */
  226. [MSTP128] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 28, 0), /* VEU0 */
  227. [MSTP118] = MSTP(&div6_clks[DIV4_B], SMSTPCR1, 18, 0), /* DSITX */
  228. [MSTP117] = MSTP(&div6_clks[DIV4_B], SMSTPCR1, 17, 0), /* LCDC1 */
  229. [MSTP116] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR1, 16, 0), /* IIC0 */
  230. [MSTP106] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 6, 0), /* JPU */
  231. [MSTP101] = MSTP(&div4_clks[DIV4_M1], SMSTPCR1, 1, 0), /* VPU */
  232. [MSTP100] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 0, 0), /* LCDC0 */
  233. [MSTP223] = MSTP(&div6_clks[DIV6_SPU], SMSTPCR2, 23, 0), /* SPU2 */
  234. [MSTP207] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 7, 0), /* SCIFA5 */
  235. [MSTP206] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 6, 0), /* SCIFB */
  236. [MSTP204] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 4, 0), /* SCIFA0 */
  237. [MSTP203] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 3, 0), /* SCIFA1 */
  238. [MSTP202] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 2, 0), /* SCIFA2 */
  239. [MSTP201] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 1, 0), /* SCIFA3 */
  240. [MSTP200] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 0, 0), /* SCIFA4 */
  241. [MSTP329] = MSTP(&r_clk, SMSTPCR3, 29, 0), /* CMT10 */
  242. [MSTP328] = MSTP(&div6_clks[DIV6_SPU], SMSTPCR3, 28, CLK_ENABLE_ON_INIT), /* FSIA */
  243. [MSTP323] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR3, 23, 0), /* IIC1 */
  244. [MSTP322] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR3, 22, 0), /* USB0 */
  245. [MSTP314] = MSTP(&div4_clks[DIV4_HP], SMSTPCR3, 14, 0), /* SDHI0 */
  246. [MSTP313] = MSTP(&div4_clks[DIV4_HP], SMSTPCR3, 13, 0), /* SDHI1 */
  247. [MSTP312] = MSTP(&div4_clks[DIV4_HP], SMSTPCR3, 12, 0), /* MMC */
  248. [MSTP415] = MSTP(&div4_clks[DIV4_HP], SMSTPCR4, 15, 0), /* SDHI2 */
  249. [MSTP411] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR4, 11, 0), /* IIC3 */
  250. [MSTP410] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR4, 10, 0), /* IIC4 */
  251. [MSTP406] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR4, 6, 0), /* USB1 */
  252. [MSTP403] = MSTP(&r_clk, SMSTPCR4, 3, 0), /* KEYSC */
  253. };
  254. #define CLKDEV_CON_ID(_id, _clk) { .con_id = _id, .clk = _clk }
  255. #define CLKDEV_DEV_ID(_id, _clk) { .dev_id = _id, .clk = _clk }
  256. static struct clk_lookup lookups[] = {
  257. /* main clocks */
  258. CLKDEV_CON_ID("r_clk", &r_clk),
  259. CLKDEV_CON_ID("extal1", &sh7372_extal1_clk),
  260. CLKDEV_CON_ID("extal2", &sh7372_extal2_clk),
  261. CLKDEV_CON_ID("extal1_div2_clk", &extal1_div2_clk),
  262. CLKDEV_CON_ID("extal2_div2_clk", &extal2_div2_clk),
  263. CLKDEV_CON_ID("extal2_div4_clk", &extal2_div4_clk),
  264. CLKDEV_CON_ID("pllc0_clk", &pllc0_clk),
  265. CLKDEV_CON_ID("pllc1_clk", &pllc1_clk),
  266. CLKDEV_CON_ID("pllc1_div2_clk", &pllc1_div2_clk),
  267. CLKDEV_CON_ID("pllc2_clk", &pllc2_clk),
  268. /* DIV4 clocks */
  269. CLKDEV_CON_ID("i_clk", &div4_clks[DIV4_I]),
  270. CLKDEV_CON_ID("zg_clk", &div4_clks[DIV4_ZG]),
  271. CLKDEV_CON_ID("b_clk", &div4_clks[DIV4_B]),
  272. CLKDEV_CON_ID("m1_clk", &div4_clks[DIV4_M1]),
  273. CLKDEV_CON_ID("csir_clk", &div4_clks[DIV4_CSIR]),
  274. CLKDEV_CON_ID("ztr_clk", &div4_clks[DIV4_ZTR]),
  275. CLKDEV_CON_ID("zt_clk", &div4_clks[DIV4_ZT]),
  276. CLKDEV_CON_ID("zx_clk", &div4_clks[DIV4_ZX]),
  277. CLKDEV_CON_ID("hp_clk", &div4_clks[DIV4_HP]),
  278. CLKDEV_CON_ID("ispb_clk", &div4_clks[DIV4_ISPB]),
  279. CLKDEV_CON_ID("s_clk", &div4_clks[DIV4_S]),
  280. CLKDEV_CON_ID("zb_clk", &div4_clks[DIV4_ZB]),
  281. CLKDEV_CON_ID("zb3_clk", &div4_clks[DIV4_ZB3]),
  282. CLKDEV_CON_ID("cp_clk", &div4_clks[DIV4_CP]),
  283. CLKDEV_CON_ID("ddrp_clk", &div4_clks[DIV4_DDRP]),
  284. /* DIV6 clocks */
  285. CLKDEV_CON_ID("vck1_clk", &div6_clks[DIV6_VCK1]),
  286. CLKDEV_CON_ID("vck2_clk", &div6_clks[DIV6_VCK2]),
  287. CLKDEV_CON_ID("vck3_clk", &div6_clks[DIV6_VCK3]),
  288. CLKDEV_CON_ID("fmsi_clk", &div6_clks[DIV6_FMSI]),
  289. CLKDEV_CON_ID("fmso_clk", &div6_clks[DIV6_FMSO]),
  290. CLKDEV_CON_ID("fsia_clk", &div6_clks[DIV6_FSIA]),
  291. CLKDEV_CON_ID("fsib_clk", &div6_clks[DIV6_FSIB]),
  292. CLKDEV_CON_ID("sub_clk", &div6_clks[DIV6_SUB]),
  293. CLKDEV_CON_ID("spu_clk", &div6_clks[DIV6_SPU]),
  294. CLKDEV_CON_ID("vou_clk", &div6_clks[DIV6_VOU]),
  295. CLKDEV_CON_ID("hdmi_clk", &div6_clks[DIV6_HDMI]),
  296. CLKDEV_CON_ID("dsit_clk", &div6_clks[DIV6_DSIT]),
  297. CLKDEV_CON_ID("dsi0p_clk", &div6_clks[DIV6_DSI0P]),
  298. CLKDEV_CON_ID("dsi1p_clk", &div6_clks[DIV6_DSI1P]),
  299. /* MSTP32 clocks */
  300. CLKDEV_DEV_ID("i2c-sh_mobile.2", &mstp_clks[MSTP001]), /* IIC2 */
  301. CLKDEV_DEV_ID("uio_pdrv_genirq.4", &mstp_clks[MSTP131]), /* VEU3 */
  302. CLKDEV_DEV_ID("uio_pdrv_genirq.3", &mstp_clks[MSTP130]), /* VEU2 */
  303. CLKDEV_DEV_ID("uio_pdrv_genirq.2", &mstp_clks[MSTP129]), /* VEU1 */
  304. CLKDEV_DEV_ID("uio_pdrv_genirq.1", &mstp_clks[MSTP128]), /* VEU0 */
  305. CLKDEV_DEV_ID("sh-mipi-dsi.0", &mstp_clks[MSTP118]), /* DSITX */
  306. CLKDEV_DEV_ID("sh_mobile_lcdc_fb.1", &mstp_clks[MSTP117]), /* LCDC1 */
  307. CLKDEV_DEV_ID("i2c-sh_mobile.0", &mstp_clks[MSTP116]), /* IIC0 */
  308. CLKDEV_DEV_ID("uio_pdrv_genirq.5", &mstp_clks[MSTP106]), /* JPU */
  309. CLKDEV_DEV_ID("uio_pdrv_genirq.0", &mstp_clks[MSTP101]), /* VPU */
  310. CLKDEV_DEV_ID("sh_mobile_lcdc_fb.0", &mstp_clks[MSTP100]), /* LCDC0 */
  311. CLKDEV_DEV_ID("uio_pdrv_genirq.6", &mstp_clks[MSTP223]), /* SPU2DSP0 */
  312. CLKDEV_DEV_ID("uio_pdrv_genirq.7", &mstp_clks[MSTP223]), /* SPU2DSP1 */
  313. CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP207]), /* SCIFA5 */
  314. CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP206]), /* SCIFB */
  315. CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]), /* SCIFA0 */
  316. CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP203]), /* SCIFA1 */
  317. CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP202]), /* SCIFA2 */
  318. CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP201]), /* SCIFA3 */
  319. CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP200]), /* SCIFA4 */
  320. CLKDEV_CON_ID("cmt1", &mstp_clks[MSTP329]), /* CMT10 */
  321. CLKDEV_DEV_ID("sh_fsi", &mstp_clks[MSTP328]), /* FSI */
  322. CLKDEV_DEV_ID("i2c-sh_mobile.1", &mstp_clks[MSTP323]), /* IIC1 */
  323. CLKDEV_DEV_ID("r8a66597_hcd.0", &mstp_clks[MSTP323]), /* USB0 */
  324. CLKDEV_DEV_ID("r8a66597_udc.0", &mstp_clks[MSTP323]), /* USB0 */
  325. CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP314]), /* SDHI0 */
  326. CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP313]), /* SDHI1 */
  327. CLKDEV_DEV_ID("sh_mmcif.0", &mstp_clks[MSTP312]), /* MMC */
  328. CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP415]), /* SDHI2 */
  329. CLKDEV_DEV_ID("i2c-sh_mobile.3", &mstp_clks[MSTP411]), /* IIC3 */
  330. CLKDEV_DEV_ID("i2c-sh_mobile.4", &mstp_clks[MSTP410]), /* IIC4 */
  331. CLKDEV_DEV_ID("r8a66597_hcd.1", &mstp_clks[MSTP406]), /* USB1 */
  332. CLKDEV_DEV_ID("r8a66597_udc.1", &mstp_clks[MSTP406]), /* USB1 */
  333. CLKDEV_DEV_ID("sh_keysc.0", &mstp_clks[MSTP403]), /* KEYSC */
  334. };
  335. void __init sh7372_clock_init(void)
  336. {
  337. int k, ret = 0;
  338. for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
  339. ret = clk_register(main_clks[k]);
  340. if (!ret)
  341. ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
  342. if (!ret)
  343. ret = sh_clk_div6_register(div6_clks, DIV6_NR);
  344. if (!ret)
  345. ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR);
  346. clkdev_add_table(lookups, ARRAY_SIZE(lookups));
  347. if (!ret)
  348. clk_init();
  349. else
  350. panic("failed to setup sh7372 clocks\n");
  351. }