clock.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /*
  2. * Copyright (C) 2009 by Sascha Hauer, Pengutronix
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version 2
  7. * of the License, or (at your option) any later version.
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16. * MA 02110-1301, USA.
  17. */
  18. #include <linux/kernel.h>
  19. #include <linux/init.h>
  20. #include <linux/list.h>
  21. #include <linux/clk.h>
  22. #include <linux/io.h>
  23. #include <asm/clkdev.h>
  24. #include <mach/clock.h>
  25. #include <mach/hardware.h>
  26. #include <mach/common.h>
  27. #include <mach/mx25.h>
  28. #define CRM_BASE MX25_IO_ADDRESS(MX25_CRM_BASE_ADDR)
  29. #define CCM_MPCTL 0x00
  30. #define CCM_UPCTL 0x04
  31. #define CCM_CCTL 0x08
  32. #define CCM_CGCR0 0x0C
  33. #define CCM_CGCR1 0x10
  34. #define CCM_CGCR2 0x14
  35. #define CCM_PCDR0 0x18
  36. #define CCM_PCDR1 0x1C
  37. #define CCM_PCDR2 0x20
  38. #define CCM_PCDR3 0x24
  39. #define CCM_RCSR 0x28
  40. #define CCM_CRDR 0x2C
  41. #define CCM_DCVR0 0x30
  42. #define CCM_DCVR1 0x34
  43. #define CCM_DCVR2 0x38
  44. #define CCM_DCVR3 0x3c
  45. #define CCM_LTR0 0x40
  46. #define CCM_LTR1 0x44
  47. #define CCM_LTR2 0x48
  48. #define CCM_LTR3 0x4c
  49. static unsigned long get_rate_mpll(void)
  50. {
  51. ulong mpctl = __raw_readl(CRM_BASE + CCM_MPCTL);
  52. return mxc_decode_pll(mpctl, 24000000);
  53. }
  54. static unsigned long get_rate_upll(void)
  55. {
  56. ulong mpctl = __raw_readl(CRM_BASE + CCM_UPCTL);
  57. return mxc_decode_pll(mpctl, 24000000);
  58. }
  59. unsigned long get_rate_arm(struct clk *clk)
  60. {
  61. unsigned long cctl = readl(CRM_BASE + CCM_CCTL);
  62. unsigned long rate = get_rate_mpll();
  63. if (cctl & (1 << 14))
  64. rate = (rate * 3) >> 1;
  65. return rate / ((cctl >> 30) + 1);
  66. }
  67. static unsigned long get_rate_ahb(struct clk *clk)
  68. {
  69. unsigned long cctl = readl(CRM_BASE + CCM_CCTL);
  70. return get_rate_arm(NULL) / (((cctl >> 28) & 0x3) + 1);
  71. }
  72. static unsigned long get_rate_ipg(struct clk *clk)
  73. {
  74. return get_rate_ahb(NULL) >> 1;
  75. }
  76. static unsigned long get_rate_per(int per)
  77. {
  78. unsigned long ofs = (per & 0x3) * 8;
  79. unsigned long reg = per & ~0x3;
  80. unsigned long val = (readl(CRM_BASE + CCM_PCDR0 + reg) >> ofs) & 0x3f;
  81. unsigned long fref;
  82. if (readl(CRM_BASE + 0x64) & (1 << per))
  83. fref = get_rate_upll();
  84. else
  85. fref = get_rate_ipg(NULL);
  86. return fref / (val + 1);
  87. }
  88. static unsigned long get_rate_uart(struct clk *clk)
  89. {
  90. return get_rate_per(15);
  91. }
  92. static unsigned long get_rate_ssi2(struct clk *clk)
  93. {
  94. return get_rate_per(14);
  95. }
  96. static unsigned long get_rate_ssi1(struct clk *clk)
  97. {
  98. return get_rate_per(13);
  99. }
  100. static unsigned long get_rate_i2c(struct clk *clk)
  101. {
  102. return get_rate_per(6);
  103. }
  104. static unsigned long get_rate_nfc(struct clk *clk)
  105. {
  106. return get_rate_per(8);
  107. }
  108. static unsigned long get_rate_gpt(struct clk *clk)
  109. {
  110. return get_rate_per(5);
  111. }
  112. static unsigned long get_rate_lcdc(struct clk *clk)
  113. {
  114. return get_rate_per(7);
  115. }
  116. static unsigned long get_rate_otg(struct clk *clk)
  117. {
  118. unsigned long cctl = readl(CRM_BASE + CCM_CCTL);
  119. unsigned long rate = get_rate_upll();
  120. return (cctl & (1 << 23)) ? 0 : rate / ((0x3F & (cctl >> 16)) + 1);
  121. }
  122. static int clk_cgcr_enable(struct clk *clk)
  123. {
  124. u32 reg;
  125. reg = __raw_readl(clk->enable_reg);
  126. reg |= 1 << clk->enable_shift;
  127. __raw_writel(reg, clk->enable_reg);
  128. return 0;
  129. }
  130. static void clk_cgcr_disable(struct clk *clk)
  131. {
  132. u32 reg;
  133. reg = __raw_readl(clk->enable_reg);
  134. reg &= ~(1 << clk->enable_shift);
  135. __raw_writel(reg, clk->enable_reg);
  136. }
  137. #define DEFINE_CLOCK(name, i, er, es, gr, sr, s) \
  138. static struct clk name = { \
  139. .id = i, \
  140. .enable_reg = CRM_BASE + er, \
  141. .enable_shift = es, \
  142. .get_rate = gr, \
  143. .set_rate = sr, \
  144. .enable = clk_cgcr_enable, \
  145. .disable = clk_cgcr_disable, \
  146. .secondary = s, \
  147. }
  148. DEFINE_CLOCK(gpt_clk, 0, CCM_CGCR0, 5, get_rate_gpt, NULL, NULL);
  149. DEFINE_CLOCK(uart_per_clk, 0, CCM_CGCR0, 15, get_rate_uart, NULL, NULL);
  150. DEFINE_CLOCK(ssi1_per_clk, 0, CCM_CGCR0, 13, get_rate_ipg, NULL, NULL);
  151. DEFINE_CLOCK(ssi2_per_clk, 0, CCM_CGCR0, 14, get_rate_ipg, NULL, NULL);
  152. DEFINE_CLOCK(cspi1_clk, 0, CCM_CGCR1, 5, get_rate_ipg, NULL, NULL);
  153. DEFINE_CLOCK(cspi2_clk, 0, CCM_CGCR1, 6, get_rate_ipg, NULL, NULL);
  154. DEFINE_CLOCK(cspi3_clk, 0, CCM_CGCR1, 7, get_rate_ipg, NULL, NULL);
  155. DEFINE_CLOCK(fec_ahb_clk, 0, CCM_CGCR0, 23, NULL, NULL, NULL);
  156. DEFINE_CLOCK(lcdc_ahb_clk, 0, CCM_CGCR0, 24, NULL, NULL, NULL);
  157. DEFINE_CLOCK(lcdc_per_clk, 0, CCM_CGCR0, 7, NULL, NULL, &lcdc_ahb_clk);
  158. DEFINE_CLOCK(uart1_clk, 0, CCM_CGCR2, 14, get_rate_uart, NULL, &uart_per_clk);
  159. DEFINE_CLOCK(uart2_clk, 0, CCM_CGCR2, 15, get_rate_uart, NULL, &uart_per_clk);
  160. DEFINE_CLOCK(uart3_clk, 0, CCM_CGCR2, 16, get_rate_uart, NULL, &uart_per_clk);
  161. DEFINE_CLOCK(uart4_clk, 0, CCM_CGCR2, 17, get_rate_uart, NULL, &uart_per_clk);
  162. DEFINE_CLOCK(uart5_clk, 0, CCM_CGCR2, 18, get_rate_uart, NULL, &uart_per_clk);
  163. DEFINE_CLOCK(nfc_clk, 0, CCM_CGCR0, 8, get_rate_nfc, NULL, NULL);
  164. DEFINE_CLOCK(usbotg_clk, 0, CCM_CGCR0, 28, get_rate_otg, NULL, NULL);
  165. DEFINE_CLOCK(pwm1_clk, 0, CCM_CGCR1, 31, get_rate_ipg, NULL, NULL);
  166. DEFINE_CLOCK(pwm2_clk, 0, CCM_CGCR2, 0, get_rate_ipg, NULL, NULL);
  167. DEFINE_CLOCK(pwm3_clk, 0, CCM_CGCR2, 1, get_rate_ipg, NULL, NULL);
  168. DEFINE_CLOCK(pwm4_clk, 0, CCM_CGCR2, 2, get_rate_ipg, NULL, NULL);
  169. DEFINE_CLOCK(kpp_clk, 0, CCM_CGCR1, 28, get_rate_ipg, NULL, NULL);
  170. DEFINE_CLOCK(tsc_clk, 0, CCM_CGCR2, 13, get_rate_ipg, NULL, NULL);
  171. DEFINE_CLOCK(i2c_clk, 0, CCM_CGCR0, 6, get_rate_i2c, NULL, NULL);
  172. DEFINE_CLOCK(fec_clk, 0, CCM_CGCR1, 15, get_rate_ipg, NULL, &fec_ahb_clk);
  173. DEFINE_CLOCK(dryice_clk, 0, CCM_CGCR1, 8, get_rate_ipg, NULL, NULL);
  174. DEFINE_CLOCK(lcdc_clk, 0, CCM_CGCR1, 29, get_rate_lcdc, NULL, &lcdc_per_clk);
  175. DEFINE_CLOCK(wdt_clk, 0, CCM_CGCR2, 19, get_rate_ipg, NULL, NULL);
  176. DEFINE_CLOCK(ssi1_clk, 0, CCM_CGCR2, 11, get_rate_ssi1, NULL, &ssi1_per_clk);
  177. DEFINE_CLOCK(ssi2_clk, 1, CCM_CGCR2, 12, get_rate_ssi2, NULL, &ssi2_per_clk);
  178. DEFINE_CLOCK(audmux_clk, 0, CCM_CGCR1, 0, NULL, NULL, NULL);
  179. #define _REGISTER_CLOCK(d, n, c) \
  180. { \
  181. .dev_id = d, \
  182. .con_id = n, \
  183. .clk = &c, \
  184. },
  185. static struct clk_lookup lookups[] = {
  186. _REGISTER_CLOCK("imx-uart.0", NULL, uart1_clk)
  187. _REGISTER_CLOCK("imx-uart.1", NULL, uart2_clk)
  188. _REGISTER_CLOCK("imx-uart.2", NULL, uart3_clk)
  189. _REGISTER_CLOCK("imx-uart.3", NULL, uart4_clk)
  190. _REGISTER_CLOCK("imx-uart.4", NULL, uart5_clk)
  191. _REGISTER_CLOCK("mxc-ehci.0", "usb", usbotg_clk)
  192. _REGISTER_CLOCK("mxc-ehci.1", "usb", usbotg_clk)
  193. _REGISTER_CLOCK("mxc-ehci.2", "usb", usbotg_clk)
  194. _REGISTER_CLOCK("fsl-usb2-udc", "usb", usbotg_clk)
  195. _REGISTER_CLOCK("mxc_nand.0", NULL, nfc_clk)
  196. _REGISTER_CLOCK("spi_imx.0", NULL, cspi1_clk)
  197. _REGISTER_CLOCK("spi_imx.1", NULL, cspi2_clk)
  198. _REGISTER_CLOCK("spi_imx.2", NULL, cspi3_clk)
  199. _REGISTER_CLOCK("mxc_pwm.0", NULL, pwm1_clk)
  200. _REGISTER_CLOCK("mxc_pwm.1", NULL, pwm2_clk)
  201. _REGISTER_CLOCK("mxc_pwm.2", NULL, pwm3_clk)
  202. _REGISTER_CLOCK("mxc_pwm.3", NULL, pwm4_clk)
  203. _REGISTER_CLOCK("imx-keypad", NULL, kpp_clk)
  204. _REGISTER_CLOCK("mx25-adc", NULL, tsc_clk)
  205. _REGISTER_CLOCK("imx-i2c.0", NULL, i2c_clk)
  206. _REGISTER_CLOCK("imx-i2c.1", NULL, i2c_clk)
  207. _REGISTER_CLOCK("imx-i2c.2", NULL, i2c_clk)
  208. _REGISTER_CLOCK("fec.0", NULL, fec_clk)
  209. _REGISTER_CLOCK("imxdi_rtc.0", NULL, dryice_clk)
  210. _REGISTER_CLOCK("imx-fb.0", NULL, lcdc_clk)
  211. _REGISTER_CLOCK("imx-wdt.0", NULL, wdt_clk)
  212. _REGISTER_CLOCK("imx-ssi.0", NULL, ssi1_clk)
  213. _REGISTER_CLOCK("imx-ssi.1", NULL, ssi2_clk)
  214. _REGISTER_CLOCK(NULL, "audmux", audmux_clk)
  215. };
  216. int __init mx25_clocks_init(void)
  217. {
  218. clkdev_add_table(lookups, ARRAY_SIZE(lookups));
  219. /* Turn off all clocks except the ones we need to survive, namely:
  220. * EMI, GPIO1-3 (CCM_CGCR1[18:16]), GPT1, IOMUXC (CCM_CGCR1[27]), IIM,
  221. * SCC
  222. */
  223. __raw_writel((1 << 19), CRM_BASE + CCM_CGCR0);
  224. __raw_writel((0xf << 16) | (3 << 26), CRM_BASE + CCM_CGCR1);
  225. __raw_writel((1 << 5), CRM_BASE + CCM_CGCR2);
  226. /* Clock source for lcdc is upll */
  227. __raw_writel(__raw_readl(CRM_BASE+0x64) | (1 << 7), CRM_BASE + 0x64);
  228. mxc_timer_init(&gpt_clk, MX25_IO_ADDRESS(MX25_GPT1_BASE_ADDR), 54);
  229. return 0;
  230. }