clock-sh7269.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * arch/sh/kernel/cpu/sh2a/clock-sh7269.c
  4. *
  5. * SH7269 clock framework support
  6. *
  7. * Copyright (C) 2012 Phil Edworthy
  8. */
  9. #include <linux/init.h>
  10. #include <linux/kernel.h>
  11. #include <linux/io.h>
  12. #include <linux/clkdev.h>
  13. #include <asm/clock.h>
  14. /* SH7269 registers */
  15. #define FRQCR 0xfffe0010
  16. #define STBCR3 0xfffe0408
  17. #define STBCR4 0xfffe040c
  18. #define STBCR5 0xfffe0410
  19. #define STBCR6 0xfffe0414
  20. #define STBCR7 0xfffe0418
  21. #define PLL_RATE 20
  22. /* Fixed 32 KHz root clock for RTC */
  23. static struct clk r_clk = {
  24. .rate = 32768,
  25. };
  26. /*
  27. * Default rate for the root input clock, reset this with clk_set_rate()
  28. * from the platform code.
  29. */
  30. static struct clk extal_clk = {
  31. .rate = 13340000,
  32. };
  33. static unsigned long pll_recalc(struct clk *clk)
  34. {
  35. return clk->parent->rate * PLL_RATE;
  36. }
  37. static struct sh_clk_ops pll_clk_ops = {
  38. .recalc = pll_recalc,
  39. };
  40. static struct clk pll_clk = {
  41. .ops = &pll_clk_ops,
  42. .parent = &extal_clk,
  43. .flags = CLK_ENABLE_ON_INIT,
  44. };
  45. static unsigned long peripheral0_recalc(struct clk *clk)
  46. {
  47. return clk->parent->rate / 8;
  48. }
  49. static struct sh_clk_ops peripheral0_clk_ops = {
  50. .recalc = peripheral0_recalc,
  51. };
  52. static struct clk peripheral0_clk = {
  53. .ops = &peripheral0_clk_ops,
  54. .parent = &pll_clk,
  55. .flags = CLK_ENABLE_ON_INIT,
  56. };
  57. static unsigned long peripheral1_recalc(struct clk *clk)
  58. {
  59. return clk->parent->rate / 4;
  60. }
  61. static struct sh_clk_ops peripheral1_clk_ops = {
  62. .recalc = peripheral1_recalc,
  63. };
  64. static struct clk peripheral1_clk = {
  65. .ops = &peripheral1_clk_ops,
  66. .parent = &pll_clk,
  67. .flags = CLK_ENABLE_ON_INIT,
  68. };
  69. struct clk *main_clks[] = {
  70. &r_clk,
  71. &extal_clk,
  72. &pll_clk,
  73. &peripheral0_clk,
  74. &peripheral1_clk,
  75. };
  76. static int div2[] = { 1, 2, 0, 4 };
  77. static struct clk_div_mult_table div4_div_mult_table = {
  78. .divisors = div2,
  79. .nr_divisors = ARRAY_SIZE(div2),
  80. };
  81. static struct clk_div4_table div4_table = {
  82. .div_mult_table = &div4_div_mult_table,
  83. };
  84. enum { DIV4_I, DIV4_B,
  85. DIV4_NR };
  86. #define DIV4(_reg, _bit, _mask, _flags) \
  87. SH_CLK_DIV4(&pll_clk, _reg, _bit, _mask, _flags)
  88. /* The mask field specifies the div2 entries that are valid */
  89. struct clk div4_clks[DIV4_NR] = {
  90. [DIV4_I] = DIV4(FRQCR, 8, 0xB, CLK_ENABLE_REG_16BIT
  91. | CLK_ENABLE_ON_INIT),
  92. [DIV4_B] = DIV4(FRQCR, 4, 0xA, CLK_ENABLE_REG_16BIT
  93. | CLK_ENABLE_ON_INIT),
  94. };
  95. enum { MSTP72,
  96. MSTP60,
  97. MSTP47, MSTP46, MSTP45, MSTP44, MSTP43, MSTP42, MSTP41, MSTP40,
  98. MSTP35, MSTP32, MSTP30,
  99. MSTP_NR };
  100. static struct clk mstp_clks[MSTP_NR] = {
  101. [MSTP72] = SH_CLK_MSTP8(&peripheral0_clk, STBCR7, 2, 0), /* CMT */
  102. [MSTP60] = SH_CLK_MSTP8(&peripheral1_clk, STBCR6, 0, 0), /* USB */
  103. [MSTP47] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 7, 0), /* SCIF0 */
  104. [MSTP46] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 6, 0), /* SCIF1 */
  105. [MSTP45] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 5, 0), /* SCIF2 */
  106. [MSTP44] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 4, 0), /* SCIF3 */
  107. [MSTP43] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 3, 0), /* SCIF4 */
  108. [MSTP42] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 2, 0), /* SCIF5 */
  109. [MSTP41] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 1, 0), /* SCIF6 */
  110. [MSTP40] = SH_CLK_MSTP8(&peripheral1_clk, STBCR4, 0, 0), /* SCIF7 */
  111. [MSTP35] = SH_CLK_MSTP8(&peripheral0_clk, STBCR3, 5, 0), /* MTU2 */
  112. [MSTP32] = SH_CLK_MSTP8(&peripheral1_clk, STBCR3, 2, 0), /* ADC */
  113. [MSTP30] = SH_CLK_MSTP8(&r_clk, STBCR3, 0, 0), /* RTC */
  114. };
  115. static struct clk_lookup lookups[] = {
  116. /* main clocks */
  117. CLKDEV_CON_ID("rclk", &r_clk),
  118. CLKDEV_CON_ID("extal", &extal_clk),
  119. CLKDEV_CON_ID("pll_clk", &pll_clk),
  120. CLKDEV_CON_ID("peripheral_clk", &peripheral1_clk),
  121. /* DIV4 clocks */
  122. CLKDEV_CON_ID("cpu_clk", &div4_clks[DIV4_I]),
  123. CLKDEV_CON_ID("bus_clk", &div4_clks[DIV4_B]),
  124. /* MSTP clocks */
  125. CLKDEV_ICK_ID("fck", "sh-sci.0", &mstp_clks[MSTP47]),
  126. CLKDEV_ICK_ID("fck", "sh-sci.1", &mstp_clks[MSTP46]),
  127. CLKDEV_ICK_ID("fck", "sh-sci.2", &mstp_clks[MSTP45]),
  128. CLKDEV_ICK_ID("fck", "sh-sci.3", &mstp_clks[MSTP44]),
  129. CLKDEV_ICK_ID("fck", "sh-sci.4", &mstp_clks[MSTP43]),
  130. CLKDEV_ICK_ID("fck", "sh-sci.5", &mstp_clks[MSTP42]),
  131. CLKDEV_ICK_ID("fck", "sh-sci.6", &mstp_clks[MSTP41]),
  132. CLKDEV_ICK_ID("fck", "sh-sci.7", &mstp_clks[MSTP40]),
  133. CLKDEV_ICK_ID("fck", "sh-cmt-16.0", &mstp_clks[MSTP72]),
  134. CLKDEV_CON_ID("usb0", &mstp_clks[MSTP60]),
  135. CLKDEV_ICK_ID("fck", "sh-mtu2", &mstp_clks[MSTP35]),
  136. CLKDEV_CON_ID("adc0", &mstp_clks[MSTP32]),
  137. CLKDEV_CON_ID("rtc0", &mstp_clks[MSTP30]),
  138. };
  139. int __init arch_clk_init(void)
  140. {
  141. int k, ret = 0;
  142. for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
  143. ret = clk_register(main_clks[k]);
  144. clkdev_add_table(lookups, ARRAY_SIZE(lookups));
  145. if (!ret)
  146. ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
  147. if (!ret)
  148. ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
  149. return ret;
  150. }