clk-imx6q.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. /*
  2. * Copyright 2011-2013 Freescale Semiconductor, Inc.
  3. * Copyright 2011 Linaro Ltd.
  4. *
  5. * The code contained herein is licensed under the GNU General Public
  6. * License. You may obtain a copy of the GNU General Public License
  7. * Version 2 or later at the following locations:
  8. *
  9. * http://www.opensource.org/licenses/gpl-license.html
  10. * http://www.gnu.org/copyleft/gpl.html
  11. */
  12. #include <linux/init.h>
  13. #include <linux/types.h>
  14. #include <linux/clk.h>
  15. #include <linux/clkdev.h>
  16. #include <linux/delay.h>
  17. #include <linux/err.h>
  18. #include <linux/io.h>
  19. #include <linux/of.h>
  20. #include <linux/of_address.h>
  21. #include <linux/of_irq.h>
  22. #include "clk.h"
  23. #include "common.h"
  24. #include "hardware.h"
  25. #define CCR 0x0
  26. #define BM_CCR_WB_COUNT (0x7 << 16)
  27. #define BM_CCR_RBC_BYPASS_COUNT (0x3f << 21)
  28. #define BM_CCR_RBC_EN (0x1 << 27)
  29. #define CCGR0 0x68
  30. #define CCGR1 0x6c
  31. #define CCGR2 0x70
  32. #define CCGR3 0x74
  33. #define CCGR4 0x78
  34. #define CCGR5 0x7c
  35. #define CCGR6 0x80
  36. #define CCGR7 0x84
  37. #define CLPCR 0x54
  38. #define BP_CLPCR_LPM 0
  39. #define BM_CLPCR_LPM (0x3 << 0)
  40. #define BM_CLPCR_BYPASS_PMIC_READY (0x1 << 2)
  41. #define BM_CLPCR_ARM_CLK_DIS_ON_LPM (0x1 << 5)
  42. #define BM_CLPCR_SBYOS (0x1 << 6)
  43. #define BM_CLPCR_DIS_REF_OSC (0x1 << 7)
  44. #define BM_CLPCR_VSTBY (0x1 << 8)
  45. #define BP_CLPCR_STBY_COUNT 9
  46. #define BM_CLPCR_STBY_COUNT (0x3 << 9)
  47. #define BM_CLPCR_COSC_PWRDOWN (0x1 << 11)
  48. #define BM_CLPCR_WB_PER_AT_LPM (0x1 << 16)
  49. #define BM_CLPCR_WB_CORE_AT_LPM (0x1 << 17)
  50. #define BM_CLPCR_BYP_MMDC_CH0_LPM_HS (0x1 << 19)
  51. #define BM_CLPCR_BYP_MMDC_CH1_LPM_HS (0x1 << 21)
  52. #define BM_CLPCR_MASK_CORE0_WFI (0x1 << 22)
  53. #define BM_CLPCR_MASK_CORE1_WFI (0x1 << 23)
  54. #define BM_CLPCR_MASK_CORE2_WFI (0x1 << 24)
  55. #define BM_CLPCR_MASK_CORE3_WFI (0x1 << 25)
  56. #define BM_CLPCR_MASK_SCU_IDLE (0x1 << 26)
  57. #define BM_CLPCR_MASK_L2CC_IDLE (0x1 << 27)
  58. #define CGPR 0x64
  59. #define BM_CGPR_CHICKEN_BIT (0x1 << 17)
  60. static void __iomem *ccm_base;
  61. void imx6q_set_chicken_bit(void)
  62. {
  63. u32 val = readl_relaxed(ccm_base + CGPR);
  64. val |= BM_CGPR_CHICKEN_BIT;
  65. writel_relaxed(val, ccm_base + CGPR);
  66. }
  67. static void imx6q_enable_rbc(bool enable)
  68. {
  69. u32 val;
  70. static bool last_rbc_mode;
  71. if (last_rbc_mode == enable)
  72. return;
  73. /*
  74. * need to mask all interrupts in GPC before
  75. * operating RBC configurations
  76. */
  77. imx_gpc_mask_all();
  78. /* configure RBC enable bit */
  79. val = readl_relaxed(ccm_base + CCR);
  80. val &= ~BM_CCR_RBC_EN;
  81. val |= enable ? BM_CCR_RBC_EN : 0;
  82. writel_relaxed(val, ccm_base + CCR);
  83. /* configure RBC count */
  84. val = readl_relaxed(ccm_base + CCR);
  85. val &= ~BM_CCR_RBC_BYPASS_COUNT;
  86. val |= enable ? BM_CCR_RBC_BYPASS_COUNT : 0;
  87. writel(val, ccm_base + CCR);
  88. /*
  89. * need to delay at least 2 cycles of CKIL(32K)
  90. * due to hardware design requirement, which is
  91. * ~61us, here we use 65us for safe
  92. */
  93. udelay(65);
  94. /* restore GPC interrupt mask settings */
  95. imx_gpc_restore_all();
  96. last_rbc_mode = enable;
  97. }
  98. static void imx6q_enable_wb(bool enable)
  99. {
  100. u32 val;
  101. static bool last_wb_mode;
  102. if (last_wb_mode == enable)
  103. return;
  104. /* configure well bias enable bit */
  105. val = readl_relaxed(ccm_base + CLPCR);
  106. val &= ~BM_CLPCR_WB_PER_AT_LPM;
  107. val |= enable ? BM_CLPCR_WB_PER_AT_LPM : 0;
  108. writel_relaxed(val, ccm_base + CLPCR);
  109. /* configure well bias count */
  110. val = readl_relaxed(ccm_base + CCR);
  111. val &= ~BM_CCR_WB_COUNT;
  112. val |= enable ? BM_CCR_WB_COUNT : 0;
  113. writel_relaxed(val, ccm_base + CCR);
  114. last_wb_mode = enable;
  115. }
  116. int imx6q_set_lpm(enum mxc_cpu_pwr_mode mode)
  117. {
  118. u32 val = readl_relaxed(ccm_base + CLPCR);
  119. val &= ~BM_CLPCR_LPM;
  120. switch (mode) {
  121. case WAIT_CLOCKED:
  122. imx6q_enable_wb(false);
  123. imx6q_enable_rbc(false);
  124. break;
  125. case WAIT_UNCLOCKED:
  126. val |= 0x1 << BP_CLPCR_LPM;
  127. val |= BM_CLPCR_ARM_CLK_DIS_ON_LPM;
  128. break;
  129. case STOP_POWER_ON:
  130. val |= 0x2 << BP_CLPCR_LPM;
  131. break;
  132. case WAIT_UNCLOCKED_POWER_OFF:
  133. val |= 0x1 << BP_CLPCR_LPM;
  134. val &= ~BM_CLPCR_VSTBY;
  135. val &= ~BM_CLPCR_SBYOS;
  136. break;
  137. case STOP_POWER_OFF:
  138. val |= 0x2 << BP_CLPCR_LPM;
  139. val |= 0x3 << BP_CLPCR_STBY_COUNT;
  140. val |= BM_CLPCR_VSTBY;
  141. val |= BM_CLPCR_SBYOS;
  142. imx6q_enable_wb(true);
  143. imx6q_enable_rbc(true);
  144. break;
  145. default:
  146. return -EINVAL;
  147. }
  148. writel_relaxed(val, ccm_base + CLPCR);
  149. return 0;
  150. }
  151. static const char *step_sels[] = { "osc", "pll2_pfd2_396m", };
  152. static const char *pll1_sw_sels[] = { "pll1_sys", "step", };
  153. static const char *periph_pre_sels[] = { "pll2_bus", "pll2_pfd2_396m", "pll2_pfd0_352m", "pll2_198m", };
  154. static const char *periph_clk2_sels[] = { "pll3_usb_otg", "osc", "osc", "dummy", };
  155. static const char *periph2_clk2_sels[] = { "pll3_usb_otg", "pll2_bus", };
  156. static const char *periph_sels[] = { "periph_pre", "periph_clk2", };
  157. static const char *periph2_sels[] = { "periph2_pre", "periph2_clk2", };
  158. static const char *axi_sels[] = { "periph", "pll2_pfd2_396m", "periph", "pll3_pfd1_540m", };
  159. static const char *audio_sels[] = { "pll4_post_div", "pll3_pfd2_508m", "pll3_pfd3_454m", "pll3_usb_otg", };
  160. static const char *gpu_axi_sels[] = { "axi", "ahb", };
  161. static const char *gpu2d_core_sels[] = { "axi", "pll3_usb_otg", "pll2_pfd0_352m", "pll2_pfd2_396m", };
  162. static const char *gpu3d_core_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll2_pfd1_594m", "pll2_pfd2_396m", };
  163. static const char *gpu3d_shader_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll2_pfd1_594m", "pll3_pfd0_720m", };
  164. static const char *ipu_sels[] = { "mmdc_ch0_axi", "pll2_pfd2_396m", "pll3_120m", "pll3_pfd1_540m", };
  165. static const char *ldb_di_sels[] = { "pll5_video_div", "pll2_pfd0_352m", "pll2_pfd2_396m", "mmdc_ch1_axi", "pll3_usb_otg", };
  166. static const char *ipu_di_pre_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll5_video_div", "pll2_pfd0_352m", "pll2_pfd2_396m", "pll3_pfd1_540m", };
  167. static const char *ipu1_di0_sels[] = { "ipu1_di0_pre", "dummy", "dummy", "ldb_di0", "ldb_di1", };
  168. static const char *ipu1_di1_sels[] = { "ipu1_di1_pre", "dummy", "dummy", "ldb_di0", "ldb_di1", };
  169. static const char *ipu2_di0_sels[] = { "ipu2_di0_pre", "dummy", "dummy", "ldb_di0", "ldb_di1", };
  170. static const char *ipu2_di1_sels[] = { "ipu2_di1_pre", "dummy", "dummy", "ldb_di0", "ldb_di1", };
  171. static const char *hsi_tx_sels[] = { "pll3_120m", "pll2_pfd2_396m", };
  172. static const char *pcie_axi_sels[] = { "axi", "ahb", };
  173. static const char *ssi_sels[] = { "pll3_pfd2_508m", "pll3_pfd3_454m", "pll4_post_div", };
  174. static const char *usdhc_sels[] = { "pll2_pfd2_396m", "pll2_pfd0_352m", };
  175. static const char *enfc_sels[] = { "pll2_pfd0_352m", "pll2_bus", "pll3_usb_otg", "pll2_pfd2_396m", };
  176. static const char *emi_sels[] = { "pll2_pfd2_396m", "pll3_usb_otg", "axi", "pll2_pfd0_352m", };
  177. static const char *emi_slow_sels[] = { "axi", "pll3_usb_otg", "pll2_pfd2_396m", "pll2_pfd0_352m", };
  178. static const char *vdo_axi_sels[] = { "axi", "ahb", };
  179. static const char *vpu_axi_sels[] = { "axi", "pll2_pfd2_396m", "pll2_pfd0_352m", };
  180. static const char *cko1_sels[] = { "pll3_usb_otg", "pll2_bus", "pll1_sys", "pll5_video_div",
  181. "dummy", "axi", "enfc", "ipu1_di0", "ipu1_di1", "ipu2_di0",
  182. "ipu2_di1", "ahb", "ipg", "ipg_per", "ckil", "pll4_post_div", };
  183. enum mx6q_clks {
  184. dummy, ckil, ckih, osc, pll2_pfd0_352m, pll2_pfd1_594m, pll2_pfd2_396m,
  185. pll3_pfd0_720m, pll3_pfd1_540m, pll3_pfd2_508m, pll3_pfd3_454m,
  186. pll2_198m, pll3_120m, pll3_80m, pll3_60m, twd, step, pll1_sw,
  187. periph_pre, periph2_pre, periph_clk2_sel, periph2_clk2_sel, axi_sel,
  188. esai_sel, asrc_sel, spdif_sel, gpu2d_axi, gpu3d_axi, gpu2d_core_sel,
  189. gpu3d_core_sel, gpu3d_shader_sel, ipu1_sel, ipu2_sel, ldb_di0_sel,
  190. ldb_di1_sel, ipu1_di0_pre_sel, ipu1_di1_pre_sel, ipu2_di0_pre_sel,
  191. ipu2_di1_pre_sel, ipu1_di0_sel, ipu1_di1_sel, ipu2_di0_sel,
  192. ipu2_di1_sel, hsi_tx_sel, pcie_axi_sel, ssi1_sel, ssi2_sel, ssi3_sel,
  193. usdhc1_sel, usdhc2_sel, usdhc3_sel, usdhc4_sel, enfc_sel, emi_sel,
  194. emi_slow_sel, vdo_axi_sel, vpu_axi_sel, cko1_sel, periph, periph2,
  195. periph_clk2, periph2_clk2, ipg, ipg_per, esai_pred, esai_podf,
  196. asrc_pred, asrc_podf, spdif_pred, spdif_podf, can_root, ecspi_root,
  197. gpu2d_core_podf, gpu3d_core_podf, gpu3d_shader, ipu1_podf, ipu2_podf,
  198. ldb_di0_podf, ldb_di1_podf, ipu1_di0_pre, ipu1_di1_pre, ipu2_di0_pre,
  199. ipu2_di1_pre, hsi_tx_podf, ssi1_pred, ssi1_podf, ssi2_pred, ssi2_podf,
  200. ssi3_pred, ssi3_podf, uart_serial_podf, usdhc1_podf, usdhc2_podf,
  201. usdhc3_podf, usdhc4_podf, enfc_pred, enfc_podf, emi_podf,
  202. emi_slow_podf, vpu_axi_podf, cko1_podf, axi, mmdc_ch0_axi_podf,
  203. mmdc_ch1_axi_podf, arm, ahb, apbh_dma, asrc, can1_ipg, can1_serial,
  204. can2_ipg, can2_serial, ecspi1, ecspi2, ecspi3, ecspi4, ecspi5, enet,
  205. esai, gpt_ipg, gpt_ipg_per, gpu2d_core, gpu3d_core, hdmi_iahb,
  206. hdmi_isfr, i2c1, i2c2, i2c3, iim, enfc, ipu1, ipu1_di0, ipu1_di1, ipu2,
  207. ipu2_di0, ldb_di0, ldb_di1, ipu2_di1, hsi_tx, mlb, mmdc_ch0_axi,
  208. mmdc_ch1_axi, ocram, openvg_axi, pcie_axi, pwm1, pwm2, pwm3, pwm4, per1_bch,
  209. gpmi_bch_apb, gpmi_bch, gpmi_io, gpmi_apb, sata, sdma, spba, ssi1,
  210. ssi2, ssi3, uart_ipg, uart_serial, usboh3, usdhc1, usdhc2, usdhc3,
  211. usdhc4, vdo_axi, vpu_axi, cko1, pll1_sys, pll2_bus, pll3_usb_otg,
  212. pll4_audio, pll5_video, pll8_mlb, pll7_usb_host, pll6_enet, ssi1_ipg,
  213. ssi2_ipg, ssi3_ipg, rom, usbphy1, usbphy2, ldb_di0_div_3_5, ldb_di1_div_3_5,
  214. sata_ref, sata_ref_100m, pcie_ref, pcie_ref_125m, enet_ref, usbphy1_gate,
  215. usbphy2_gate, pll4_post_div, pll5_post_div, pll5_video_div, eim_slow, clk_max
  216. };
  217. static struct clk *clk[clk_max];
  218. static struct clk_onecell_data clk_data;
  219. static enum mx6q_clks const clks_init_on[] __initconst = {
  220. mmdc_ch0_axi, rom, pll1_sys,
  221. };
  222. static struct clk_div_table clk_enet_ref_table[] = {
  223. { .val = 0, .div = 20, },
  224. { .val = 1, .div = 10, },
  225. { .val = 2, .div = 5, },
  226. { .val = 3, .div = 4, },
  227. };
  228. static struct clk_div_table post_div_table[] = {
  229. { .val = 2, .div = 1, },
  230. { .val = 1, .div = 2, },
  231. { .val = 0, .div = 4, },
  232. { }
  233. };
  234. static struct clk_div_table video_div_table[] = {
  235. { .val = 0, .div = 1, },
  236. { .val = 1, .div = 2, },
  237. { .val = 2, .div = 1, },
  238. { .val = 3, .div = 4, },
  239. { }
  240. };
  241. static void __init imx6q_clocks_init(struct device_node *ccm_node)
  242. {
  243. struct device_node *np;
  244. void __iomem *base;
  245. int i, irq;
  246. clk[dummy] = imx_clk_fixed("dummy", 0);
  247. clk[ckil] = imx_obtain_fixed_clock("ckil", 0);
  248. clk[ckih] = imx_obtain_fixed_clock("ckih1", 0);
  249. clk[osc] = imx_obtain_fixed_clock("osc", 0);
  250. np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
  251. base = of_iomap(np, 0);
  252. WARN_ON(!base);
  253. /* Audio/video PLL post dividers do not work on i.MX6q revision 1.0 */
  254. if (cpu_is_imx6q() && imx6q_revision() == IMX_CHIP_REVISION_1_0) {
  255. post_div_table[1].div = 1;
  256. post_div_table[2].div = 1;
  257. video_div_table[1].div = 1;
  258. video_div_table[2].div = 1;
  259. };
  260. /* type name parent_name base div_mask */
  261. clk[pll1_sys] = imx_clk_pllv3(IMX_PLLV3_SYS, "pll1_sys", "osc", base, 0x7f);
  262. clk[pll2_bus] = imx_clk_pllv3(IMX_PLLV3_GENERIC, "pll2_bus", "osc", base + 0x30, 0x1);
  263. clk[pll3_usb_otg] = imx_clk_pllv3(IMX_PLLV3_USB, "pll3_usb_otg", "osc", base + 0x10, 0x3);
  264. clk[pll4_audio] = imx_clk_pllv3(IMX_PLLV3_AV, "pll4_audio", "osc", base + 0x70, 0x7f);
  265. clk[pll5_video] = imx_clk_pllv3(IMX_PLLV3_AV, "pll5_video", "osc", base + 0xa0, 0x7f);
  266. clk[pll6_enet] = imx_clk_pllv3(IMX_PLLV3_ENET, "pll6_enet", "osc", base + 0xe0, 0x3);
  267. clk[pll7_usb_host] = imx_clk_pllv3(IMX_PLLV3_USB, "pll7_usb_host","osc", base + 0x20, 0x3);
  268. /*
  269. * Bit 20 is the reserved and read-only bit, we do this only for:
  270. * - Do nothing for usbphy clk_enable/disable
  271. * - Keep refcount when do usbphy clk_enable/disable, in that case,
  272. * the clk framework may need to enable/disable usbphy's parent
  273. */
  274. clk[usbphy1] = imx_clk_gate("usbphy1", "pll3_usb_otg", base + 0x10, 20);
  275. clk[usbphy2] = imx_clk_gate("usbphy2", "pll7_usb_host", base + 0x20, 20);
  276. /*
  277. * usbphy*_gate needs to be on after system boots up, and software
  278. * never needs to control it anymore.
  279. */
  280. clk[usbphy1_gate] = imx_clk_gate("usbphy1_gate", "dummy", base + 0x10, 6);
  281. clk[usbphy2_gate] = imx_clk_gate("usbphy2_gate", "dummy", base + 0x20, 6);
  282. clk[sata_ref] = imx_clk_fixed_factor("sata_ref", "pll6_enet", 1, 5);
  283. clk[pcie_ref] = imx_clk_fixed_factor("pcie_ref", "pll6_enet", 1, 4);
  284. clk[sata_ref_100m] = imx_clk_gate("sata_ref_100m", "sata_ref", base + 0xe0, 20);
  285. clk[pcie_ref_125m] = imx_clk_gate("pcie_ref_125m", "pcie_ref", base + 0xe0, 19);
  286. clk[enet_ref] = clk_register_divider_table(NULL, "enet_ref", "pll6_enet", 0,
  287. base + 0xe0, 0, 2, 0, clk_enet_ref_table,
  288. &imx_ccm_lock);
  289. /* name parent_name reg idx */
  290. clk[pll2_pfd0_352m] = imx_clk_pfd("pll2_pfd0_352m", "pll2_bus", base + 0x100, 0);
  291. clk[pll2_pfd1_594m] = imx_clk_pfd("pll2_pfd1_594m", "pll2_bus", base + 0x100, 1);
  292. clk[pll2_pfd2_396m] = imx_clk_pfd("pll2_pfd2_396m", "pll2_bus", base + 0x100, 2);
  293. clk[pll3_pfd0_720m] = imx_clk_pfd("pll3_pfd0_720m", "pll3_usb_otg", base + 0xf0, 0);
  294. clk[pll3_pfd1_540m] = imx_clk_pfd("pll3_pfd1_540m", "pll3_usb_otg", base + 0xf0, 1);
  295. clk[pll3_pfd2_508m] = imx_clk_pfd("pll3_pfd2_508m", "pll3_usb_otg", base + 0xf0, 2);
  296. clk[pll3_pfd3_454m] = imx_clk_pfd("pll3_pfd3_454m", "pll3_usb_otg", base + 0xf0, 3);
  297. /* name parent_name mult div */
  298. clk[pll2_198m] = imx_clk_fixed_factor("pll2_198m", "pll2_pfd2_396m", 1, 2);
  299. clk[pll3_120m] = imx_clk_fixed_factor("pll3_120m", "pll3_usb_otg", 1, 4);
  300. clk[pll3_80m] = imx_clk_fixed_factor("pll3_80m", "pll3_usb_otg", 1, 6);
  301. clk[pll3_60m] = imx_clk_fixed_factor("pll3_60m", "pll3_usb_otg", 1, 8);
  302. clk[twd] = imx_clk_fixed_factor("twd", "arm", 1, 2);
  303. clk[pll4_post_div] = clk_register_divider_table(NULL, "pll4_post_div", "pll4_audio", CLK_SET_RATE_PARENT, base + 0x70, 19, 2, 0, post_div_table, &imx_ccm_lock);
  304. clk[pll5_post_div] = clk_register_divider_table(NULL, "pll5_post_div", "pll5_video", CLK_SET_RATE_PARENT, base + 0xa0, 19, 2, 0, post_div_table, &imx_ccm_lock);
  305. clk[pll5_video_div] = clk_register_divider_table(NULL, "pll5_video_div", "pll5_post_div", CLK_SET_RATE_PARENT, base + 0x170, 30, 2, 0, video_div_table, &imx_ccm_lock);
  306. np = ccm_node;
  307. base = of_iomap(np, 0);
  308. WARN_ON(!base);
  309. ccm_base = base;
  310. /* name reg shift width parent_names num_parents */
  311. clk[step] = imx_clk_mux("step", base + 0xc, 8, 1, step_sels, ARRAY_SIZE(step_sels));
  312. clk[pll1_sw] = imx_clk_mux("pll1_sw", base + 0xc, 2, 1, pll1_sw_sels, ARRAY_SIZE(pll1_sw_sels));
  313. clk[periph_pre] = imx_clk_mux("periph_pre", base + 0x18, 18, 2, periph_pre_sels, ARRAY_SIZE(periph_pre_sels));
  314. clk[periph2_pre] = imx_clk_mux("periph2_pre", base + 0x18, 21, 2, periph_pre_sels, ARRAY_SIZE(periph_pre_sels));
  315. clk[periph_clk2_sel] = imx_clk_mux("periph_clk2_sel", base + 0x18, 12, 2, periph_clk2_sels, ARRAY_SIZE(periph_clk2_sels));
  316. clk[periph2_clk2_sel] = imx_clk_mux("periph2_clk2_sel", base + 0x18, 20, 1, periph2_clk2_sels, ARRAY_SIZE(periph2_clk2_sels));
  317. clk[axi_sel] = imx_clk_mux("axi_sel", base + 0x14, 6, 2, axi_sels, ARRAY_SIZE(axi_sels));
  318. clk[esai_sel] = imx_clk_mux("esai_sel", base + 0x20, 19, 2, audio_sels, ARRAY_SIZE(audio_sels));
  319. clk[asrc_sel] = imx_clk_mux("asrc_sel", base + 0x30, 7, 2, audio_sels, ARRAY_SIZE(audio_sels));
  320. clk[spdif_sel] = imx_clk_mux("spdif_sel", base + 0x30, 20, 2, audio_sels, ARRAY_SIZE(audio_sels));
  321. clk[gpu2d_axi] = imx_clk_mux("gpu2d_axi", base + 0x18, 0, 1, gpu_axi_sels, ARRAY_SIZE(gpu_axi_sels));
  322. clk[gpu3d_axi] = imx_clk_mux("gpu3d_axi", base + 0x18, 1, 1, gpu_axi_sels, ARRAY_SIZE(gpu_axi_sels));
  323. clk[gpu2d_core_sel] = imx_clk_mux("gpu2d_core_sel", base + 0x18, 16, 2, gpu2d_core_sels, ARRAY_SIZE(gpu2d_core_sels));
  324. clk[gpu3d_core_sel] = imx_clk_mux("gpu3d_core_sel", base + 0x18, 4, 2, gpu3d_core_sels, ARRAY_SIZE(gpu3d_core_sels));
  325. clk[gpu3d_shader_sel] = imx_clk_mux("gpu3d_shader_sel", base + 0x18, 8, 2, gpu3d_shader_sels, ARRAY_SIZE(gpu3d_shader_sels));
  326. clk[ipu1_sel] = imx_clk_mux("ipu1_sel", base + 0x3c, 9, 2, ipu_sels, ARRAY_SIZE(ipu_sels));
  327. clk[ipu2_sel] = imx_clk_mux("ipu2_sel", base + 0x3c, 14, 2, ipu_sels, ARRAY_SIZE(ipu_sels));
  328. clk[ldb_di0_sel] = imx_clk_mux_flags("ldb_di0_sel", base + 0x2c, 9, 3, ldb_di_sels, ARRAY_SIZE(ldb_di_sels), CLK_SET_RATE_PARENT);
  329. clk[ldb_di1_sel] = imx_clk_mux_flags("ldb_di1_sel", base + 0x2c, 12, 3, ldb_di_sels, ARRAY_SIZE(ldb_di_sels), CLK_SET_RATE_PARENT);
  330. clk[ipu1_di0_pre_sel] = imx_clk_mux("ipu1_di0_pre_sel", base + 0x34, 6, 3, ipu_di_pre_sels, ARRAY_SIZE(ipu_di_pre_sels));
  331. clk[ipu1_di1_pre_sel] = imx_clk_mux("ipu1_di1_pre_sel", base + 0x34, 15, 3, ipu_di_pre_sels, ARRAY_SIZE(ipu_di_pre_sels));
  332. clk[ipu2_di0_pre_sel] = imx_clk_mux("ipu2_di0_pre_sel", base + 0x38, 6, 3, ipu_di_pre_sels, ARRAY_SIZE(ipu_di_pre_sels));
  333. clk[ipu2_di1_pre_sel] = imx_clk_mux("ipu2_di1_pre_sel", base + 0x38, 15, 3, ipu_di_pre_sels, ARRAY_SIZE(ipu_di_pre_sels));
  334. clk[ipu1_di0_sel] = imx_clk_mux("ipu1_di0_sel", base + 0x34, 0, 3, ipu1_di0_sels, ARRAY_SIZE(ipu1_di0_sels));
  335. clk[ipu1_di1_sel] = imx_clk_mux("ipu1_di1_sel", base + 0x34, 9, 3, ipu1_di1_sels, ARRAY_SIZE(ipu1_di1_sels));
  336. clk[ipu2_di0_sel] = imx_clk_mux("ipu2_di0_sel", base + 0x38, 0, 3, ipu2_di0_sels, ARRAY_SIZE(ipu2_di0_sels));
  337. clk[ipu2_di1_sel] = imx_clk_mux("ipu2_di1_sel", base + 0x38, 9, 3, ipu2_di1_sels, ARRAY_SIZE(ipu2_di1_sels));
  338. clk[hsi_tx_sel] = imx_clk_mux("hsi_tx_sel", base + 0x30, 28, 1, hsi_tx_sels, ARRAY_SIZE(hsi_tx_sels));
  339. clk[pcie_axi_sel] = imx_clk_mux("pcie_axi_sel", base + 0x18, 10, 1, pcie_axi_sels, ARRAY_SIZE(pcie_axi_sels));
  340. clk[ssi1_sel] = imx_clk_mux("ssi1_sel", base + 0x1c, 10, 2, ssi_sels, ARRAY_SIZE(ssi_sels));
  341. clk[ssi2_sel] = imx_clk_mux("ssi2_sel", base + 0x1c, 12, 2, ssi_sels, ARRAY_SIZE(ssi_sels));
  342. clk[ssi3_sel] = imx_clk_mux("ssi3_sel", base + 0x1c, 14, 2, ssi_sels, ARRAY_SIZE(ssi_sels));
  343. clk[usdhc1_sel] = imx_clk_mux("usdhc1_sel", base + 0x1c, 16, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels));
  344. clk[usdhc2_sel] = imx_clk_mux("usdhc2_sel", base + 0x1c, 17, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels));
  345. clk[usdhc3_sel] = imx_clk_mux("usdhc3_sel", base + 0x1c, 18, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels));
  346. clk[usdhc4_sel] = imx_clk_mux("usdhc4_sel", base + 0x1c, 19, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels));
  347. clk[enfc_sel] = imx_clk_mux("enfc_sel", base + 0x2c, 16, 2, enfc_sels, ARRAY_SIZE(enfc_sels));
  348. clk[emi_sel] = imx_clk_mux("emi_sel", base + 0x1c, 27, 2, emi_sels, ARRAY_SIZE(emi_sels));
  349. clk[emi_slow_sel] = imx_clk_mux("emi_slow_sel", base + 0x1c, 29, 2, emi_slow_sels, ARRAY_SIZE(emi_slow_sels));
  350. clk[vdo_axi_sel] = imx_clk_mux("vdo_axi_sel", base + 0x18, 11, 1, vdo_axi_sels, ARRAY_SIZE(vdo_axi_sels));
  351. clk[vpu_axi_sel] = imx_clk_mux("vpu_axi_sel", base + 0x18, 14, 2, vpu_axi_sels, ARRAY_SIZE(vpu_axi_sels));
  352. clk[cko1_sel] = imx_clk_mux("cko1_sel", base + 0x60, 0, 4, cko1_sels, ARRAY_SIZE(cko1_sels));
  353. /* name reg shift width busy: reg, shift parent_names num_parents */
  354. clk[periph] = imx_clk_busy_mux("periph", base + 0x14, 25, 1, base + 0x48, 5, periph_sels, ARRAY_SIZE(periph_sels));
  355. clk[periph2] = imx_clk_busy_mux("periph2", base + 0x14, 26, 1, base + 0x48, 3, periph2_sels, ARRAY_SIZE(periph2_sels));
  356. /* name parent_name reg shift width */
  357. clk[periph_clk2] = imx_clk_divider("periph_clk2", "periph_clk2_sel", base + 0x14, 27, 3);
  358. clk[periph2_clk2] = imx_clk_divider("periph2_clk2", "periph2_clk2_sel", base + 0x14, 0, 3);
  359. clk[ipg] = imx_clk_divider("ipg", "ahb", base + 0x14, 8, 2);
  360. clk[ipg_per] = imx_clk_divider("ipg_per", "ipg", base + 0x1c, 0, 6);
  361. clk[esai_pred] = imx_clk_divider("esai_pred", "esai_sel", base + 0x28, 9, 3);
  362. clk[esai_podf] = imx_clk_divider("esai_podf", "esai_pred", base + 0x28, 25, 3);
  363. clk[asrc_pred] = imx_clk_divider("asrc_pred", "asrc_sel", base + 0x30, 12, 3);
  364. clk[asrc_podf] = imx_clk_divider("asrc_podf", "asrc_pred", base + 0x30, 9, 3);
  365. clk[spdif_pred] = imx_clk_divider("spdif_pred", "spdif_sel", base + 0x30, 25, 3);
  366. clk[spdif_podf] = imx_clk_divider("spdif_podf", "spdif_pred", base + 0x30, 22, 3);
  367. clk[can_root] = imx_clk_divider("can_root", "pll3_usb_otg", base + 0x20, 2, 6);
  368. clk[ecspi_root] = imx_clk_divider("ecspi_root", "pll3_60m", base + 0x38, 19, 6);
  369. clk[gpu2d_core_podf] = imx_clk_divider("gpu2d_core_podf", "gpu2d_core_sel", base + 0x18, 23, 3);
  370. clk[gpu3d_core_podf] = imx_clk_divider("gpu3d_core_podf", "gpu3d_core_sel", base + 0x18, 26, 3);
  371. clk[gpu3d_shader] = imx_clk_divider("gpu3d_shader", "gpu3d_shader_sel", base + 0x18, 29, 3);
  372. clk[ipu1_podf] = imx_clk_divider("ipu1_podf", "ipu1_sel", base + 0x3c, 11, 3);
  373. clk[ipu2_podf] = imx_clk_divider("ipu2_podf", "ipu2_sel", base + 0x3c, 16, 3);
  374. clk[ldb_di0_div_3_5] = imx_clk_fixed_factor("ldb_di0_div_3_5", "ldb_di0_sel", 2, 7);
  375. clk[ldb_di0_podf] = imx_clk_divider_flags("ldb_di0_podf", "ldb_di0_div_3_5", base + 0x20, 10, 1, 0);
  376. clk[ldb_di1_div_3_5] = imx_clk_fixed_factor("ldb_di1_div_3_5", "ldb_di1_sel", 2, 7);
  377. clk[ldb_di1_podf] = imx_clk_divider_flags("ldb_di1_podf", "ldb_di1_div_3_5", base + 0x20, 11, 1, 0);
  378. clk[ipu1_di0_pre] = imx_clk_divider("ipu1_di0_pre", "ipu1_di0_pre_sel", base + 0x34, 3, 3);
  379. clk[ipu1_di1_pre] = imx_clk_divider("ipu1_di1_pre", "ipu1_di1_pre_sel", base + 0x34, 12, 3);
  380. clk[ipu2_di0_pre] = imx_clk_divider("ipu2_di0_pre", "ipu2_di0_pre_sel", base + 0x38, 3, 3);
  381. clk[ipu2_di1_pre] = imx_clk_divider("ipu2_di1_pre", "ipu2_di1_pre_sel", base + 0x38, 12, 3);
  382. clk[hsi_tx_podf] = imx_clk_divider("hsi_tx_podf", "hsi_tx_sel", base + 0x30, 29, 3);
  383. clk[ssi1_pred] = imx_clk_divider("ssi1_pred", "ssi1_sel", base + 0x28, 6, 3);
  384. clk[ssi1_podf] = imx_clk_divider("ssi1_podf", "ssi1_pred", base + 0x28, 0, 6);
  385. clk[ssi2_pred] = imx_clk_divider("ssi2_pred", "ssi2_sel", base + 0x2c, 6, 3);
  386. clk[ssi2_podf] = imx_clk_divider("ssi2_podf", "ssi2_pred", base + 0x2c, 0, 6);
  387. clk[ssi3_pred] = imx_clk_divider("ssi3_pred", "ssi3_sel", base + 0x28, 22, 3);
  388. clk[ssi3_podf] = imx_clk_divider("ssi3_podf", "ssi3_pred", base + 0x28, 16, 6);
  389. clk[uart_serial_podf] = imx_clk_divider("uart_serial_podf", "pll3_80m", base + 0x24, 0, 6);
  390. clk[usdhc1_podf] = imx_clk_divider("usdhc1_podf", "usdhc1_sel", base + 0x24, 11, 3);
  391. clk[usdhc2_podf] = imx_clk_divider("usdhc2_podf", "usdhc2_sel", base + 0x24, 16, 3);
  392. clk[usdhc3_podf] = imx_clk_divider("usdhc3_podf", "usdhc3_sel", base + 0x24, 19, 3);
  393. clk[usdhc4_podf] = imx_clk_divider("usdhc4_podf", "usdhc4_sel", base + 0x24, 22, 3);
  394. clk[enfc_pred] = imx_clk_divider("enfc_pred", "enfc_sel", base + 0x2c, 18, 3);
  395. clk[enfc_podf] = imx_clk_divider("enfc_podf", "enfc_pred", base + 0x2c, 21, 6);
  396. clk[emi_podf] = imx_clk_divider("emi_podf", "emi_sel", base + 0x1c, 20, 3);
  397. clk[emi_slow_podf] = imx_clk_divider("emi_slow_podf", "emi_slow_sel", base + 0x1c, 23, 3);
  398. clk[vpu_axi_podf] = imx_clk_divider("vpu_axi_podf", "vpu_axi_sel", base + 0x24, 25, 3);
  399. clk[cko1_podf] = imx_clk_divider("cko1_podf", "cko1_sel", base + 0x60, 4, 3);
  400. /* name parent_name reg shift width busy: reg, shift */
  401. clk[axi] = imx_clk_busy_divider("axi", "axi_sel", base + 0x14, 16, 3, base + 0x48, 0);
  402. clk[mmdc_ch0_axi_podf] = imx_clk_busy_divider("mmdc_ch0_axi_podf", "periph", base + 0x14, 19, 3, base + 0x48, 4);
  403. clk[mmdc_ch1_axi_podf] = imx_clk_busy_divider("mmdc_ch1_axi_podf", "periph2", base + 0x14, 3, 3, base + 0x48, 2);
  404. clk[arm] = imx_clk_busy_divider("arm", "pll1_sw", base + 0x10, 0, 3, base + 0x48, 16);
  405. clk[ahb] = imx_clk_busy_divider("ahb", "periph", base + 0x14, 10, 3, base + 0x48, 1);
  406. /* name parent_name reg shift */
  407. clk[apbh_dma] = imx_clk_gate2("apbh_dma", "usdhc3", base + 0x68, 4);
  408. clk[asrc] = imx_clk_gate2("asrc", "asrc_podf", base + 0x68, 6);
  409. clk[can1_ipg] = imx_clk_gate2("can1_ipg", "ipg", base + 0x68, 14);
  410. clk[can1_serial] = imx_clk_gate2("can1_serial", "can_root", base + 0x68, 16);
  411. clk[can2_ipg] = imx_clk_gate2("can2_ipg", "ipg", base + 0x68, 18);
  412. clk[can2_serial] = imx_clk_gate2("can2_serial", "can_root", base + 0x68, 20);
  413. clk[ecspi1] = imx_clk_gate2("ecspi1", "ecspi_root", base + 0x6c, 0);
  414. clk[ecspi2] = imx_clk_gate2("ecspi2", "ecspi_root", base + 0x6c, 2);
  415. clk[ecspi3] = imx_clk_gate2("ecspi3", "ecspi_root", base + 0x6c, 4);
  416. clk[ecspi4] = imx_clk_gate2("ecspi4", "ecspi_root", base + 0x6c, 6);
  417. clk[ecspi5] = imx_clk_gate2("ecspi5", "ecspi_root", base + 0x6c, 8);
  418. clk[enet] = imx_clk_gate2("enet", "ipg", base + 0x6c, 10);
  419. clk[esai] = imx_clk_gate2("esai", "esai_podf", base + 0x6c, 16);
  420. clk[gpt_ipg] = imx_clk_gate2("gpt_ipg", "ipg", base + 0x6c, 20);
  421. clk[gpt_ipg_per] = imx_clk_gate2("gpt_ipg_per", "ipg_per", base + 0x6c, 22);
  422. if (cpu_is_imx6dl())
  423. /*
  424. * The multiplexer and divider of imx6q clock gpu3d_shader get
  425. * redefined/reused as gpu2d_core_sel and gpu2d_core_podf on imx6dl.
  426. */
  427. clk[gpu2d_core] = imx_clk_gate2("gpu2d_core", "gpu3d_shader", base + 0x6c, 24);
  428. else
  429. clk[gpu2d_core] = imx_clk_gate2("gpu2d_core", "gpu2d_core_podf", base + 0x6c, 24);
  430. clk[gpu3d_core] = imx_clk_gate2("gpu3d_core", "gpu3d_core_podf", base + 0x6c, 26);
  431. clk[hdmi_iahb] = imx_clk_gate2("hdmi_iahb", "ahb", base + 0x70, 0);
  432. clk[hdmi_isfr] = imx_clk_gate2("hdmi_isfr", "pll3_pfd1_540m", base + 0x70, 4);
  433. clk[i2c1] = imx_clk_gate2("i2c1", "ipg_per", base + 0x70, 6);
  434. clk[i2c2] = imx_clk_gate2("i2c2", "ipg_per", base + 0x70, 8);
  435. clk[i2c3] = imx_clk_gate2("i2c3", "ipg_per", base + 0x70, 10);
  436. clk[iim] = imx_clk_gate2("iim", "ipg", base + 0x70, 12);
  437. clk[enfc] = imx_clk_gate2("enfc", "enfc_podf", base + 0x70, 14);
  438. clk[ipu1] = imx_clk_gate2("ipu1", "ipu1_podf", base + 0x74, 0);
  439. clk[ipu1_di0] = imx_clk_gate2("ipu1_di0", "ipu1_di0_sel", base + 0x74, 2);
  440. clk[ipu1_di1] = imx_clk_gate2("ipu1_di1", "ipu1_di1_sel", base + 0x74, 4);
  441. clk[ipu2] = imx_clk_gate2("ipu2", "ipu2_podf", base + 0x74, 6);
  442. clk[ipu2_di0] = imx_clk_gate2("ipu2_di0", "ipu2_di0_sel", base + 0x74, 8);
  443. clk[ldb_di0] = imx_clk_gate2("ldb_di0", "ldb_di0_podf", base + 0x74, 12);
  444. clk[ldb_di1] = imx_clk_gate2("ldb_di1", "ldb_di1_podf", base + 0x74, 14);
  445. clk[ipu2_di1] = imx_clk_gate2("ipu2_di1", "ipu2_di1_sel", base + 0x74, 10);
  446. clk[hsi_tx] = imx_clk_gate2("hsi_tx", "hsi_tx_podf", base + 0x74, 16);
  447. if (cpu_is_imx6dl())
  448. /*
  449. * The multiplexer and divider of the imx6q clock gpu2d get
  450. * redefined/reused as mlb_sys_sel and mlb_sys_clk_podf on imx6dl.
  451. */
  452. clk[mlb] = imx_clk_gate2("mlb", "gpu2d_core_podf", base + 0x74, 18);
  453. else
  454. clk[mlb] = imx_clk_gate2("mlb", "axi", base + 0x74, 18);
  455. clk[mmdc_ch0_axi] = imx_clk_gate2("mmdc_ch0_axi", "mmdc_ch0_axi_podf", base + 0x74, 20);
  456. clk[mmdc_ch1_axi] = imx_clk_gate2("mmdc_ch1_axi", "mmdc_ch1_axi_podf", base + 0x74, 22);
  457. clk[ocram] = imx_clk_gate2("ocram", "ahb", base + 0x74, 28);
  458. clk[openvg_axi] = imx_clk_gate2("openvg_axi", "axi", base + 0x74, 30);
  459. clk[pcie_axi] = imx_clk_gate2("pcie_axi", "pcie_axi_sel", base + 0x78, 0);
  460. clk[per1_bch] = imx_clk_gate2("per1_bch", "usdhc3", base + 0x78, 12);
  461. clk[pwm1] = imx_clk_gate2("pwm1", "ipg_per", base + 0x78, 16);
  462. clk[pwm2] = imx_clk_gate2("pwm2", "ipg_per", base + 0x78, 18);
  463. clk[pwm3] = imx_clk_gate2("pwm3", "ipg_per", base + 0x78, 20);
  464. clk[pwm4] = imx_clk_gate2("pwm4", "ipg_per", base + 0x78, 22);
  465. clk[gpmi_bch_apb] = imx_clk_gate2("gpmi_bch_apb", "usdhc3", base + 0x78, 24);
  466. clk[gpmi_bch] = imx_clk_gate2("gpmi_bch", "usdhc4", base + 0x78, 26);
  467. clk[gpmi_io] = imx_clk_gate2("gpmi_io", "enfc", base + 0x78, 28);
  468. clk[gpmi_apb] = imx_clk_gate2("gpmi_apb", "usdhc3", base + 0x78, 30);
  469. clk[rom] = imx_clk_gate2("rom", "ahb", base + 0x7c, 0);
  470. clk[sata] = imx_clk_gate2("sata", "ipg", base + 0x7c, 4);
  471. clk[sdma] = imx_clk_gate2("sdma", "ahb", base + 0x7c, 6);
  472. clk[spba] = imx_clk_gate2("spba", "ipg", base + 0x7c, 12);
  473. clk[ssi1_ipg] = imx_clk_gate2("ssi1_ipg", "ipg", base + 0x7c, 18);
  474. clk[ssi2_ipg] = imx_clk_gate2("ssi2_ipg", "ipg", base + 0x7c, 20);
  475. clk[ssi3_ipg] = imx_clk_gate2("ssi3_ipg", "ipg", base + 0x7c, 22);
  476. clk[uart_ipg] = imx_clk_gate2("uart_ipg", "ipg", base + 0x7c, 24);
  477. clk[uart_serial] = imx_clk_gate2("uart_serial", "uart_serial_podf", base + 0x7c, 26);
  478. clk[usboh3] = imx_clk_gate2("usboh3", "ipg", base + 0x80, 0);
  479. clk[usdhc1] = imx_clk_gate2("usdhc1", "usdhc1_podf", base + 0x80, 2);
  480. clk[usdhc2] = imx_clk_gate2("usdhc2", "usdhc2_podf", base + 0x80, 4);
  481. clk[usdhc3] = imx_clk_gate2("usdhc3", "usdhc3_podf", base + 0x80, 6);
  482. clk[usdhc4] = imx_clk_gate2("usdhc4", "usdhc4_podf", base + 0x80, 8);
  483. clk[eim_slow] = imx_clk_gate2("eim_slow", "emi_slow_podf", base + 0x80, 10);
  484. clk[vdo_axi] = imx_clk_gate2("vdo_axi", "vdo_axi_sel", base + 0x80, 12);
  485. clk[vpu_axi] = imx_clk_gate2("vpu_axi", "vpu_axi_podf", base + 0x80, 14);
  486. clk[cko1] = imx_clk_gate("cko1", "cko1_podf", base + 0x60, 7);
  487. for (i = 0; i < ARRAY_SIZE(clk); i++)
  488. if (IS_ERR(clk[i]))
  489. pr_err("i.MX6q clk %d: register failed with %ld\n",
  490. i, PTR_ERR(clk[i]));
  491. clk_data.clks = clk;
  492. clk_data.clk_num = ARRAY_SIZE(clk);
  493. of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data);
  494. clk_register_clkdev(clk[gpt_ipg], "ipg", "imx-gpt.0");
  495. clk_register_clkdev(clk[gpt_ipg_per], "per", "imx-gpt.0");
  496. clk_register_clkdev(clk[cko1_sel], "cko1_sel", NULL);
  497. clk_register_clkdev(clk[ahb], "ahb", NULL);
  498. clk_register_clkdev(clk[cko1], "cko1", NULL);
  499. clk_register_clkdev(clk[arm], NULL, "cpu0");
  500. clk_register_clkdev(clk[pll4_post_div], "pll4_post_div", NULL);
  501. clk_register_clkdev(clk[pll4_audio], "pll4_audio", NULL);
  502. if (imx6q_revision() != IMX_CHIP_REVISION_1_0) {
  503. clk_set_parent(clk[ldb_di0_sel], clk[pll5_video_div]);
  504. clk_set_parent(clk[ldb_di1_sel], clk[pll5_video_div]);
  505. }
  506. /*
  507. * The gpmi needs 100MHz frequency in the EDO/Sync mode,
  508. * We can not get the 100MHz from the pll2_pfd0_352m.
  509. * So choose pll2_pfd2_396m as enfc_sel's parent.
  510. */
  511. clk_set_parent(clk[enfc_sel], clk[pll2_pfd2_396m]);
  512. for (i = 0; i < ARRAY_SIZE(clks_init_on); i++)
  513. clk_prepare_enable(clk[clks_init_on[i]]);
  514. if (IS_ENABLED(CONFIG_USB_MXS_PHY)) {
  515. clk_prepare_enable(clk[usbphy1_gate]);
  516. clk_prepare_enable(clk[usbphy2_gate]);
  517. }
  518. /* Set initial power mode */
  519. imx6q_set_lpm(WAIT_CLOCKED);
  520. np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-gpt");
  521. base = of_iomap(np, 0);
  522. WARN_ON(!base);
  523. irq = irq_of_parse_and_map(np, 0);
  524. mxc_timer_init(base, irq);
  525. }
  526. CLK_OF_DECLARE(imx6q, "fsl,imx6q-ccm", imx6q_clocks_init);