clock-r8a7779.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. * r8a7779 clock framework support
  3. *
  4. * Copyright (C) 2011 Renesas Solutions Corp.
  5. * Copyright (C) 2011 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; either 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #include <linux/init.h>
  21. #include <linux/kernel.h>
  22. #include <linux/io.h>
  23. #include <linux/sh_clk.h>
  24. #include <linux/clkdev.h>
  25. #include <mach/common.h>
  26. #define FRQMR 0xffc80014
  27. #define MSTPCR0 0xffc80030
  28. #define MSTPCR1 0xffc80034
  29. #define MSTPCR3 0xffc8003c
  30. #define MSTPSR1 0xffc80044
  31. #define MSTPSR4 0xffc80048
  32. #define MSTPSR6 0xffc8004c
  33. #define MSTPCR4 0xffc80050
  34. #define MSTPCR5 0xffc80054
  35. #define MSTPCR6 0xffc80058
  36. #define MSTPCR7 0xffc80040
  37. /* ioremap() through clock mapping mandatory to avoid
  38. * collision with ARM coherent DMA virtual memory range.
  39. */
  40. static struct clk_mapping cpg_mapping = {
  41. .phys = 0xffc80000,
  42. .len = 0x80,
  43. };
  44. /*
  45. * Default rate for the root input clock, reset this with clk_set_rate()
  46. * from the platform code.
  47. */
  48. static struct clk plla_clk = {
  49. .rate = 1500000000,
  50. .mapping = &cpg_mapping,
  51. };
  52. static struct clk *main_clks[] = {
  53. &plla_clk,
  54. };
  55. static int divisors[] = { 0, 0, 0, 6, 8, 12, 16, 0, 24, 32, 36, 0, 0, 0, 0, 0 };
  56. static struct clk_div_mult_table div4_div_mult_table = {
  57. .divisors = divisors,
  58. .nr_divisors = ARRAY_SIZE(divisors),
  59. };
  60. static struct clk_div4_table div4_table = {
  61. .div_mult_table = &div4_div_mult_table,
  62. };
  63. enum { DIV4_S, DIV4_OUT, DIV4_S4, DIV4_S3, DIV4_S1, DIV4_P, DIV4_NR };
  64. static struct clk div4_clks[DIV4_NR] = {
  65. [DIV4_S] = SH_CLK_DIV4(&plla_clk, FRQMR, 20,
  66. 0x0018, CLK_ENABLE_ON_INIT),
  67. [DIV4_OUT] = SH_CLK_DIV4(&plla_clk, FRQMR, 16,
  68. 0x0700, CLK_ENABLE_ON_INIT),
  69. [DIV4_S4] = SH_CLK_DIV4(&plla_clk, FRQMR, 12,
  70. 0x0040, CLK_ENABLE_ON_INIT),
  71. [DIV4_S3] = SH_CLK_DIV4(&plla_clk, FRQMR, 8,
  72. 0x0010, CLK_ENABLE_ON_INIT),
  73. [DIV4_S1] = SH_CLK_DIV4(&plla_clk, FRQMR, 4,
  74. 0x0060, CLK_ENABLE_ON_INIT),
  75. [DIV4_P] = SH_CLK_DIV4(&plla_clk, FRQMR, 0,
  76. 0x0300, CLK_ENABLE_ON_INIT),
  77. };
  78. enum { MSTP323, MSTP322, MSTP321, MSTP320,
  79. MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
  80. MSTP016, MSTP015, MSTP014,
  81. MSTP_NR };
  82. static struct clk mstp_clks[MSTP_NR] = {
  83. [MSTP323] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 23, 0), /* SDHI0 */
  84. [MSTP322] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 22, 0), /* SDHI1 */
  85. [MSTP321] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 21, 0), /* SDHI2 */
  86. [MSTP320] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 20, 0), /* SDHI3 */
  87. [MSTP026] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 26, 0), /* SCIF0 */
  88. [MSTP025] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 25, 0), /* SCIF1 */
  89. [MSTP024] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 24, 0), /* SCIF2 */
  90. [MSTP023] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 23, 0), /* SCIF3 */
  91. [MSTP022] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 22, 0), /* SCIF4 */
  92. [MSTP021] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 21, 0), /* SCIF5 */
  93. [MSTP016] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 16, 0), /* TMU0 */
  94. [MSTP015] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 15, 0), /* TMU1 */
  95. [MSTP014] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 14, 0), /* TMU2 */
  96. };
  97. static unsigned long mul4_recalc(struct clk *clk)
  98. {
  99. return clk->parent->rate * 4;
  100. }
  101. static struct sh_clk_ops mul4_clk_ops = {
  102. .recalc = mul4_recalc,
  103. };
  104. struct clk clkz_clk = {
  105. .ops = &mul4_clk_ops,
  106. .parent = &div4_clks[DIV4_S],
  107. };
  108. struct clk clkzs_clk = {
  109. /* clks x 4 / 4 = clks */
  110. .parent = &div4_clks[DIV4_S],
  111. };
  112. static struct clk *late_main_clks[] = {
  113. &clkz_clk,
  114. &clkzs_clk,
  115. };
  116. static struct clk_lookup lookups[] = {
  117. /* main clocks */
  118. CLKDEV_CON_ID("plla_clk", &plla_clk),
  119. CLKDEV_CON_ID("clkz_clk", &clkz_clk),
  120. CLKDEV_CON_ID("clkzs_clk", &clkzs_clk),
  121. /* DIV4 clocks */
  122. CLKDEV_CON_ID("shyway_clk", &div4_clks[DIV4_S]),
  123. CLKDEV_CON_ID("bus_clk", &div4_clks[DIV4_OUT]),
  124. CLKDEV_CON_ID("shyway4_clk", &div4_clks[DIV4_S4]),
  125. CLKDEV_CON_ID("shyway3_clk", &div4_clks[DIV4_S3]),
  126. CLKDEV_CON_ID("shyway1_clk", &div4_clks[DIV4_S1]),
  127. CLKDEV_CON_ID("peripheral_clk", &div4_clks[DIV4_P]),
  128. /* MSTP32 clocks */
  129. CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP016]), /* TMU00 */
  130. CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP016]), /* TMU01 */
  131. CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP026]), /* SCIF0 */
  132. CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP025]), /* SCIF1 */
  133. CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP024]), /* SCIF2 */
  134. CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP023]), /* SCIF3 */
  135. CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP022]), /* SCIF4 */
  136. CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP021]), /* SCIF6 */
  137. CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP323]), /* SDHI0 */
  138. CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP322]), /* SDHI1 */
  139. CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP321]), /* SDHI2 */
  140. CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP320]), /* SDHI3 */
  141. };
  142. void __init r8a7779_clock_init(void)
  143. {
  144. int k, ret = 0;
  145. for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
  146. ret = clk_register(main_clks[k]);
  147. if (!ret)
  148. ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
  149. if (!ret)
  150. ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
  151. for (k = 0; !ret && (k < ARRAY_SIZE(late_main_clks)); k++)
  152. ret = clk_register(late_main_clks[k]);
  153. clkdev_add_table(lookups, ARRAY_SIZE(lookups));
  154. if (!ret)
  155. shmobile_clk_init();
  156. else
  157. panic("failed to setup r8a7779 clocks\n");
  158. }