clk-imx31.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Copyright (C) 2012 Sascha Hauer <[email protected]>
  4. */
  5. #include <linux/module.h>
  6. #include <linux/clk.h>
  7. #include <linux/clkdev.h>
  8. #include <linux/io.h>
  9. #include <linux/err.h>
  10. #include <linux/of.h>
  11. #include <linux/of_address.h>
  12. #include <soc/imx/revision.h>
  13. #include <soc/imx/timer.h>
  14. #include <asm/irq.h>
  15. #include "clk.h"
  16. #define MX31_CCM_BASE_ADDR 0x53f80000
  17. #define MX31_GPT1_BASE_ADDR 0x53f90000
  18. #define MX31_INT_GPT (NR_IRQS_LEGACY + 29)
  19. #define MXC_CCM_CCMR 0x00
  20. #define MXC_CCM_PDR0 0x04
  21. #define MXC_CCM_PDR1 0x08
  22. #define MXC_CCM_MPCTL 0x10
  23. #define MXC_CCM_UPCTL 0x14
  24. #define MXC_CCM_SRPCTL 0x18
  25. #define MXC_CCM_CGR0 0x20
  26. #define MXC_CCM_CGR1 0x24
  27. #define MXC_CCM_CGR2 0x28
  28. #define MXC_CCM_PMCR0 0x5c
  29. static const char *mcu_main_sel[] = { "spll", "mpll", };
  30. static const char *per_sel[] = { "per_div", "ipg", };
  31. static const char *csi_sel[] = { "upll", "spll", };
  32. static const char *fir_sel[] = { "mcu_main", "upll", "spll" };
  33. enum mx31_clks {
  34. dummy, ckih, ckil, mpll, spll, upll, mcu_main, hsp, ahb, nfc, ipg,
  35. per_div, per, csi, fir, csi_div, usb_div_pre, usb_div_post, fir_div_pre,
  36. fir_div_post, sdhc1_gate, sdhc2_gate, gpt_gate, epit1_gate, epit2_gate,
  37. iim_gate, ata_gate, sdma_gate, cspi3_gate, rng_gate, uart1_gate,
  38. uart2_gate, ssi1_gate, i2c1_gate, i2c2_gate, i2c3_gate, hantro_gate,
  39. mstick1_gate, mstick2_gate, csi_gate, rtc_gate, wdog_gate, pwm_gate,
  40. sim_gate, ect_gate, usb_gate, kpp_gate, ipu_gate, uart3_gate,
  41. uart4_gate, uart5_gate, owire_gate, ssi2_gate, cspi1_gate, cspi2_gate,
  42. gacc_gate, emi_gate, rtic_gate, firi_gate, clk_max
  43. };
  44. static struct clk *clk[clk_max];
  45. static struct clk_onecell_data clk_data;
  46. static void __init _mx31_clocks_init(void __iomem *base, unsigned long fref)
  47. {
  48. clk[dummy] = imx_clk_fixed("dummy", 0);
  49. clk[ckih] = imx_clk_fixed("ckih", fref);
  50. clk[ckil] = imx_clk_fixed("ckil", 32768);
  51. clk[mpll] = imx_clk_pllv1(IMX_PLLV1_IMX31, "mpll", "ckih", base + MXC_CCM_MPCTL);
  52. clk[spll] = imx_clk_pllv1(IMX_PLLV1_IMX31, "spll", "ckih", base + MXC_CCM_SRPCTL);
  53. clk[upll] = imx_clk_pllv1(IMX_PLLV1_IMX31, "upll", "ckih", base + MXC_CCM_UPCTL);
  54. clk[mcu_main] = imx_clk_mux("mcu_main", base + MXC_CCM_PMCR0, 31, 1, mcu_main_sel, ARRAY_SIZE(mcu_main_sel));
  55. clk[hsp] = imx_clk_divider("hsp", "mcu_main", base + MXC_CCM_PDR0, 11, 3);
  56. clk[ahb] = imx_clk_divider("ahb", "mcu_main", base + MXC_CCM_PDR0, 3, 3);
  57. clk[nfc] = imx_clk_divider("nfc", "ahb", base + MXC_CCM_PDR0, 8, 3);
  58. clk[ipg] = imx_clk_divider("ipg", "ahb", base + MXC_CCM_PDR0, 6, 2);
  59. clk[per_div] = imx_clk_divider("per_div", "upll", base + MXC_CCM_PDR0, 16, 5);
  60. clk[per] = imx_clk_mux("per", base + MXC_CCM_CCMR, 24, 1, per_sel, ARRAY_SIZE(per_sel));
  61. clk[csi] = imx_clk_mux("csi_sel", base + MXC_CCM_CCMR, 25, 1, csi_sel, ARRAY_SIZE(csi_sel));
  62. clk[fir] = imx_clk_mux("fir_sel", base + MXC_CCM_CCMR, 11, 2, fir_sel, ARRAY_SIZE(fir_sel));
  63. clk[csi_div] = imx_clk_divider("csi_div", "csi_sel", base + MXC_CCM_PDR0, 23, 9);
  64. clk[usb_div_pre] = imx_clk_divider("usb_div_pre", "upll", base + MXC_CCM_PDR1, 30, 2);
  65. clk[usb_div_post] = imx_clk_divider("usb_div_post", "usb_div_pre", base + MXC_CCM_PDR1, 27, 3);
  66. clk[fir_div_pre] = imx_clk_divider("fir_div_pre", "fir_sel", base + MXC_CCM_PDR1, 24, 3);
  67. clk[fir_div_post] = imx_clk_divider("fir_div_post", "fir_div_pre", base + MXC_CCM_PDR1, 23, 6);
  68. clk[sdhc1_gate] = imx_clk_gate2("sdhc1_gate", "per", base + MXC_CCM_CGR0, 0);
  69. clk[sdhc2_gate] = imx_clk_gate2("sdhc2_gate", "per", base + MXC_CCM_CGR0, 2);
  70. clk[gpt_gate] = imx_clk_gate2("gpt_gate", "per", base + MXC_CCM_CGR0, 4);
  71. clk[epit1_gate] = imx_clk_gate2("epit1_gate", "per", base + MXC_CCM_CGR0, 6);
  72. clk[epit2_gate] = imx_clk_gate2("epit2_gate", "per", base + MXC_CCM_CGR0, 8);
  73. clk[iim_gate] = imx_clk_gate2("iim_gate", "ipg", base + MXC_CCM_CGR0, 10);
  74. clk[ata_gate] = imx_clk_gate2("ata_gate", "ipg", base + MXC_CCM_CGR0, 12);
  75. clk[sdma_gate] = imx_clk_gate2("sdma_gate", "ahb", base + MXC_CCM_CGR0, 14);
  76. clk[cspi3_gate] = imx_clk_gate2("cspi3_gate", "ipg", base + MXC_CCM_CGR0, 16);
  77. clk[rng_gate] = imx_clk_gate2("rng_gate", "ipg", base + MXC_CCM_CGR0, 18);
  78. clk[uart1_gate] = imx_clk_gate2("uart1_gate", "per", base + MXC_CCM_CGR0, 20);
  79. clk[uart2_gate] = imx_clk_gate2("uart2_gate", "per", base + MXC_CCM_CGR0, 22);
  80. clk[ssi1_gate] = imx_clk_gate2("ssi1_gate", "spll", base + MXC_CCM_CGR0, 24);
  81. clk[i2c1_gate] = imx_clk_gate2("i2c1_gate", "per", base + MXC_CCM_CGR0, 26);
  82. clk[i2c2_gate] = imx_clk_gate2("i2c2_gate", "per", base + MXC_CCM_CGR0, 28);
  83. clk[i2c3_gate] = imx_clk_gate2("i2c3_gate", "per", base + MXC_CCM_CGR0, 30);
  84. clk[hantro_gate] = imx_clk_gate2("hantro_gate", "per", base + MXC_CCM_CGR1, 0);
  85. clk[mstick1_gate] = imx_clk_gate2("mstick1_gate", "per", base + MXC_CCM_CGR1, 2);
  86. clk[mstick2_gate] = imx_clk_gate2("mstick2_gate", "per", base + MXC_CCM_CGR1, 4);
  87. clk[csi_gate] = imx_clk_gate2("csi_gate", "csi_div", base + MXC_CCM_CGR1, 6);
  88. clk[rtc_gate] = imx_clk_gate2("rtc_gate", "ipg", base + MXC_CCM_CGR1, 8);
  89. clk[wdog_gate] = imx_clk_gate2("wdog_gate", "ipg", base + MXC_CCM_CGR1, 10);
  90. clk[pwm_gate] = imx_clk_gate2("pwm_gate", "per", base + MXC_CCM_CGR1, 12);
  91. clk[sim_gate] = imx_clk_gate2("sim_gate", "per", base + MXC_CCM_CGR1, 14);
  92. clk[ect_gate] = imx_clk_gate2("ect_gate", "per", base + MXC_CCM_CGR1, 16);
  93. clk[usb_gate] = imx_clk_gate2("usb_gate", "ahb", base + MXC_CCM_CGR1, 18);
  94. clk[kpp_gate] = imx_clk_gate2("kpp_gate", "ipg", base + MXC_CCM_CGR1, 20);
  95. clk[ipu_gate] = imx_clk_gate2("ipu_gate", "hsp", base + MXC_CCM_CGR1, 22);
  96. clk[uart3_gate] = imx_clk_gate2("uart3_gate", "per", base + MXC_CCM_CGR1, 24);
  97. clk[uart4_gate] = imx_clk_gate2("uart4_gate", "per", base + MXC_CCM_CGR1, 26);
  98. clk[uart5_gate] = imx_clk_gate2("uart5_gate", "per", base + MXC_CCM_CGR1, 28);
  99. clk[owire_gate] = imx_clk_gate2("owire_gate", "per", base + MXC_CCM_CGR1, 30);
  100. clk[ssi2_gate] = imx_clk_gate2("ssi2_gate", "spll", base + MXC_CCM_CGR2, 0);
  101. clk[cspi1_gate] = imx_clk_gate2("cspi1_gate", "ipg", base + MXC_CCM_CGR2, 2);
  102. clk[cspi2_gate] = imx_clk_gate2("cspi2_gate", "ipg", base + MXC_CCM_CGR2, 4);
  103. clk[gacc_gate] = imx_clk_gate2("gacc_gate", "per", base + MXC_CCM_CGR2, 6);
  104. clk[emi_gate] = imx_clk_gate2("emi_gate", "ahb", base + MXC_CCM_CGR2, 8);
  105. clk[rtic_gate] = imx_clk_gate2("rtic_gate", "ahb", base + MXC_CCM_CGR2, 10);
  106. clk[firi_gate] = imx_clk_gate2("firi_gate", "upll", base+MXC_CCM_CGR2, 12);
  107. imx_check_clocks(clk, ARRAY_SIZE(clk));
  108. clk_set_parent(clk[csi], clk[upll]);
  109. clk_prepare_enable(clk[emi_gate]);
  110. clk_prepare_enable(clk[iim_gate]);
  111. mx31_revision();
  112. clk_disable_unprepare(clk[iim_gate]);
  113. }
  114. static void __init mx31_clocks_init_dt(struct device_node *np)
  115. {
  116. struct device_node *osc_np;
  117. u32 fref = 26000000; /* default */
  118. void __iomem *ccm;
  119. for_each_compatible_node(osc_np, NULL, "fixed-clock") {
  120. if (!of_device_is_compatible(osc_np, "fsl,imx-osc26m"))
  121. continue;
  122. if (!of_property_read_u32(osc_np, "clock-frequency", &fref)) {
  123. of_node_put(osc_np);
  124. break;
  125. }
  126. }
  127. ccm = of_iomap(np, 0);
  128. if (!ccm)
  129. panic("%s: failed to map registers\n", __func__);
  130. _mx31_clocks_init(ccm, fref);
  131. clk_data.clks = clk;
  132. clk_data.clk_num = ARRAY_SIZE(clk);
  133. of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data);
  134. }
  135. CLK_OF_DECLARE(imx31_ccm, "fsl,imx31-ccm", mx31_clocks_init_dt);