clock-r8a7791.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * r8a7791 clock framework support
  3. *
  4. * Copyright (C) 2013 Renesas Electronics Corporation
  5. * Copyright (C) 2013 Renesas Solutions Corp.
  6. * Copyright (C) 2013 Magnus Damm
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; version 2 of the License.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <linux/init.h>
  22. #include <linux/io.h>
  23. #include <linux/kernel.h>
  24. #include <linux/sh_clk.h>
  25. #include <linux/clkdev.h>
  26. #include <mach/clock.h>
  27. #include <mach/common.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 R8A7791_CLOCK_ROOT() below
  43. */
  44. #define MD(nr) (1 << nr)
  45. #define CPG_BASE 0xe6150000
  46. #define CPG_LEN 0x1000
  47. #define SMSTPCR1 0xE6150134
  48. #define SMSTPCR2 0xe6150138
  49. #define SMSTPCR3 0xE615013C
  50. #define SMSTPCR5 0xE6150144
  51. #define SMSTPCR7 0xe615014c
  52. #define SMSTPCR8 0xE6150990
  53. #define SMSTPCR9 0xE6150994
  54. #define SMSTPCR10 0xE6150998
  55. #define MODEMR 0xE6160060
  56. #define SDCKCR 0xE6150074
  57. #define SD2CKCR 0xE6150078
  58. #define SD3CKCR 0xE615007C
  59. #define MMC0CKCR 0xE6150240
  60. #define MMC1CKCR 0xE6150244
  61. #define SSPCKCR 0xE6150248
  62. #define SSPRSCKCR 0xE615024C
  63. static struct clk_mapping cpg_mapping = {
  64. .phys = CPG_BASE,
  65. .len = CPG_LEN,
  66. };
  67. static struct clk extal_clk = {
  68. /* .rate will be updated on r8a7791_clock_init() */
  69. .mapping = &cpg_mapping,
  70. };
  71. static struct sh_clk_ops followparent_clk_ops = {
  72. .recalc = followparent_recalc,
  73. };
  74. static struct clk main_clk = {
  75. /* .parent will be set r8a73a4_clock_init */
  76. .ops = &followparent_clk_ops,
  77. };
  78. /*
  79. * clock ratio of these clock will be updated
  80. * on r8a7791_clock_init()
  81. */
  82. SH_FIXED_RATIO_CLK_SET(pll1_clk, main_clk, 1, 1);
  83. SH_FIXED_RATIO_CLK_SET(pll3_clk, main_clk, 1, 1);
  84. /* fixed ratio clock */
  85. SH_FIXED_RATIO_CLK_SET(extal_div2_clk, extal_clk, 1, 2);
  86. SH_FIXED_RATIO_CLK_SET(cp_clk, extal_clk, 1, 2);
  87. SH_FIXED_RATIO_CLK_SET(pll1_div2_clk, pll1_clk, 1, 2);
  88. SH_FIXED_RATIO_CLK_SET(hp_clk, pll1_clk, 1, 12);
  89. SH_FIXED_RATIO_CLK_SET(p_clk, pll1_clk, 1, 24);
  90. SH_FIXED_RATIO_CLK_SET(mp_clk, pll1_div2_clk, 1, 15);
  91. static struct clk *main_clks[] = {
  92. &extal_clk,
  93. &extal_div2_clk,
  94. &main_clk,
  95. &pll1_clk,
  96. &pll1_div2_clk,
  97. &pll3_clk,
  98. &hp_clk,
  99. &p_clk,
  100. &mp_clk,
  101. &cp_clk,
  102. };
  103. /* MSTP */
  104. enum {
  105. MSTP721, MSTP720,
  106. /* MSTP216, MSTP207, MSTP206, MSTP204, MSTP203, MSTP202,*/
  107. MSTP_NR
  108. };
  109. static struct clk mstp_clks[MSTP_NR] = {
  110. [MSTP721] = SH_CLK_MSTP32(&p_clk, SMSTPCR7, 21, 0), /* SCIF0 */
  111. [MSTP720] = SH_CLK_MSTP32(&p_clk, SMSTPCR7, 20, 0), /* SCIF1 */
  112. };
  113. static struct clk_lookup lookups[] = {
  114. /* main clocks */
  115. CLKDEV_CON_ID("extal", &extal_clk),
  116. CLKDEV_CON_ID("extal_div2", &extal_div2_clk),
  117. CLKDEV_CON_ID("main", &main_clk),
  118. CLKDEV_CON_ID("pll1", &pll1_clk),
  119. CLKDEV_CON_ID("pll1_div2", &pll1_div2_clk),
  120. CLKDEV_CON_ID("pll3", &pll3_clk),
  121. CLKDEV_CON_ID("hp", &hp_clk),
  122. CLKDEV_CON_ID("p", &p_clk),
  123. CLKDEV_CON_ID("mp", &mp_clk),
  124. CLKDEV_CON_ID("cp", &cp_clk),
  125. CLKDEV_CON_ID("peripheral_clk", &hp_clk),
  126. };
  127. #define R8A7791_CLOCK_ROOT(e, m, p0, p1, p30, p31) \
  128. extal_clk.rate = e * 1000 * 1000; \
  129. main_clk.parent = m; \
  130. SH_CLK_SET_RATIO(&pll1_clk_ratio, p1 / 2, 1); \
  131. if (mode & MD(19)) \
  132. SH_CLK_SET_RATIO(&pll3_clk_ratio, p31, 1); \
  133. else \
  134. SH_CLK_SET_RATIO(&pll3_clk_ratio, p30, 1)
  135. void __init r8a7791_clock_init(void)
  136. {
  137. void __iomem *modemr = ioremap_nocache(MODEMR, PAGE_SIZE);
  138. u32 mode;
  139. int k, ret = 0;
  140. BUG_ON(!modemr);
  141. mode = ioread32(modemr);
  142. iounmap(modemr);
  143. switch (mode & (MD(14) | MD(13))) {
  144. case 0:
  145. R8A7791_CLOCK_ROOT(15, &extal_clk, 172, 208, 106, 88);
  146. break;
  147. case MD(13):
  148. R8A7791_CLOCK_ROOT(20, &extal_clk, 130, 156, 80, 66);
  149. break;
  150. case MD(14):
  151. R8A7791_CLOCK_ROOT(26, &extal_div2_clk, 200, 240, 122, 102);
  152. break;
  153. case MD(13) | MD(14):
  154. R8A7791_CLOCK_ROOT(30, &extal_div2_clk, 172, 208, 106, 88);
  155. break;
  156. }
  157. for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
  158. ret = clk_register(main_clks[k]);
  159. if (!ret)
  160. ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
  161. clkdev_add_table(lookups, ARRAY_SIZE(lookups));
  162. if (!ret)
  163. shmobile_clk_init();
  164. else
  165. goto epanic;
  166. return;
  167. epanic:
  168. panic("failed to setup r8a7791 clocks\n");
  169. }