18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright (C) 2016 Freescale Semiconductor, Inc. 48c2ecf20Sopenharmony_ci * Copyright 2017-2018 NXP. 58c2ecf20Sopenharmony_ci */ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci#include <dt-bindings/clock/imx6sll-clock.h> 88c2ecf20Sopenharmony_ci#include <linux/clk.h> 98c2ecf20Sopenharmony_ci#include <linux/clkdev.h> 108c2ecf20Sopenharmony_ci#include <linux/clk-provider.h> 118c2ecf20Sopenharmony_ci#include <linux/err.h> 128c2ecf20Sopenharmony_ci#include <linux/init.h> 138c2ecf20Sopenharmony_ci#include <linux/io.h> 148c2ecf20Sopenharmony_ci#include <linux/of.h> 158c2ecf20Sopenharmony_ci#include <linux/of_address.h> 168c2ecf20Sopenharmony_ci 178c2ecf20Sopenharmony_ci#include "clk.h" 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_ci#define CCM_ANALOG_PLL_BYPASS (0x1 << 16) 208c2ecf20Sopenharmony_ci#define xPLL_CLR(offset) (offset + 0x8) 218c2ecf20Sopenharmony_ci 228c2ecf20Sopenharmony_cistatic const char *pll_bypass_src_sels[] = { "osc", "dummy", }; 238c2ecf20Sopenharmony_cistatic const char *pll1_bypass_sels[] = { "pll1", "pll1_bypass_src", }; 248c2ecf20Sopenharmony_cistatic const char *pll2_bypass_sels[] = { "pll2", "pll2_bypass_src", }; 258c2ecf20Sopenharmony_cistatic const char *pll3_bypass_sels[] = { "pll3", "pll3_bypass_src", }; 268c2ecf20Sopenharmony_cistatic const char *pll4_bypass_sels[] = { "pll4", "pll4_bypass_src", }; 278c2ecf20Sopenharmony_cistatic const char *pll5_bypass_sels[] = { "pll5", "pll5_bypass_src", }; 288c2ecf20Sopenharmony_cistatic const char *pll6_bypass_sels[] = { "pll6", "pll6_bypass_src", }; 298c2ecf20Sopenharmony_cistatic const char *pll7_bypass_sels[] = { "pll7", "pll7_bypass_src", }; 308c2ecf20Sopenharmony_cistatic const char *step_sels[] = { "osc", "pll2_pfd2_396m", }; 318c2ecf20Sopenharmony_cistatic const char *pll1_sw_sels[] = { "pll1_sys", "step", }; 328c2ecf20Sopenharmony_cistatic const char *axi_alt_sels[] = { "pll2_pfd2_396m", "pll3_pfd1_540m", }; 338c2ecf20Sopenharmony_cistatic const char *axi_sels[] = {"periph", "axi_alt_sel", }; 348c2ecf20Sopenharmony_cistatic const char *periph_pre_sels[] = { "pll2_bus", "pll2_pfd2_396m", "pll2_pfd0_352m", "pll2_198m", }; 358c2ecf20Sopenharmony_cistatic const char *periph2_pre_sels[] = { "pll2_bus", "pll2_pfd2_396m", "pll2_pfd0_352m", "pll4_audio_div", }; 368c2ecf20Sopenharmony_cistatic const char *periph_clk2_sels[] = { "pll3_usb_otg", "osc", "osc", }; 378c2ecf20Sopenharmony_cistatic const char *periph2_clk2_sels[] = { "pll3_usb_otg", "osc", }; 388c2ecf20Sopenharmony_cistatic const char *periph_sels[] = { "periph_pre", "periph_clk2", }; 398c2ecf20Sopenharmony_cistatic const char *periph2_sels[] = { "periph2_pre", "periph2_clk2", }; 408c2ecf20Sopenharmony_cistatic const char *usdhc_sels[] = { "pll2_pfd2_396m", "pll2_pfd0_352m", }; 418c2ecf20Sopenharmony_cistatic const char *ssi_sels[] = {"pll3_pfd2_508m", "pll3_pfd3_454m", "pll4_audio_div", "dummy",}; 428c2ecf20Sopenharmony_cistatic const char *spdif_sels[] = { "pll4_audio_div", "pll3_pfd2_508m", "pll5_video_div", "pll3_usb_otg", }; 438c2ecf20Sopenharmony_cistatic const char *ldb_di0_div_sels[] = { "ldb_di0_div_3_5", "ldb_di0_div_7", }; 448c2ecf20Sopenharmony_cistatic const char *ldb_di1_div_sels[] = { "ldb_di1_div_3_5", "ldb_di1_div_7", }; 458c2ecf20Sopenharmony_cistatic const char *ldb_di0_sels[] = { "pll5_video_div", "pll2_pfd0_352m", "pll2_pfd2_396m", "pll2_pfd3_594m", "pll2_pfd1_594m", "pll3_pfd3_454m", }; 468c2ecf20Sopenharmony_cistatic const char *ldb_di1_sels[] = { "pll3_usb_otg", "pll2_pfd0_352m", "pll2_pfd2_396m", "pll2_bus", "pll3_pfd3_454m", "pll3_pfd2_508m", }; 478c2ecf20Sopenharmony_cistatic const char *lcdif_pre_sels[] = { "pll2_bus", "pll3_pfd3_454m", "pll5_video_div", "pll2_pfd0_352m", "pll2_pfd1_594m", "pll3_pfd1_540m", }; 488c2ecf20Sopenharmony_cistatic const char *ecspi_sels[] = { "pll3_60m", "osc", }; 498c2ecf20Sopenharmony_cistatic const char *uart_sels[] = { "pll3_80m", "osc", }; 508c2ecf20Sopenharmony_cistatic const char *perclk_sels[] = { "ipg", "osc", }; 518c2ecf20Sopenharmony_cistatic const char *lcdif_sels[] = { "lcdif_podf", "ipp_di0", "ipp_di1", "ldb_di0", "ldb_di1", }; 528c2ecf20Sopenharmony_ci 538c2ecf20Sopenharmony_cistatic const char *epdc_pre_sels[] = { "pll2_bus", "pll3_usb_otg", "pll5_video_div", "pll2_pfd0_352m", "pll2_pfd2_396m", "pll3_pfd2_508m", }; 548c2ecf20Sopenharmony_cistatic const char *epdc_sels[] = { "epdc_podf", "ipp_di0", "ipp_di1", "ldb_di0", "ldb_di1", }; 558c2ecf20Sopenharmony_ci 568c2ecf20Sopenharmony_cistatic struct clk_hw **hws; 578c2ecf20Sopenharmony_cistatic struct clk_hw_onecell_data *clk_hw_data; 588c2ecf20Sopenharmony_ci 598c2ecf20Sopenharmony_cistatic const struct clk_div_table post_div_table[] = { 608c2ecf20Sopenharmony_ci { .val = 2, .div = 1, }, 618c2ecf20Sopenharmony_ci { .val = 1, .div = 2, }, 628c2ecf20Sopenharmony_ci { .val = 0, .div = 4, }, 638c2ecf20Sopenharmony_ci { } 648c2ecf20Sopenharmony_ci}; 658c2ecf20Sopenharmony_ci 668c2ecf20Sopenharmony_cistatic const struct clk_div_table video_div_table[] = { 678c2ecf20Sopenharmony_ci { .val = 0, .div = 1, }, 688c2ecf20Sopenharmony_ci { .val = 1, .div = 2, }, 698c2ecf20Sopenharmony_ci { .val = 2, .div = 1, }, 708c2ecf20Sopenharmony_ci { .val = 3, .div = 4, }, 718c2ecf20Sopenharmony_ci { } 728c2ecf20Sopenharmony_ci}; 738c2ecf20Sopenharmony_ci 748c2ecf20Sopenharmony_cistatic u32 share_count_audio; 758c2ecf20Sopenharmony_cistatic u32 share_count_ssi1; 768c2ecf20Sopenharmony_cistatic u32 share_count_ssi2; 778c2ecf20Sopenharmony_cistatic u32 share_count_ssi3; 788c2ecf20Sopenharmony_ci 798c2ecf20Sopenharmony_cistatic void __init imx6sll_clocks_init(struct device_node *ccm_node) 808c2ecf20Sopenharmony_ci{ 818c2ecf20Sopenharmony_ci struct device_node *np; 828c2ecf20Sopenharmony_ci void __iomem *base; 838c2ecf20Sopenharmony_ci 848c2ecf20Sopenharmony_ci clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, 858c2ecf20Sopenharmony_ci IMX6SLL_CLK_END), GFP_KERNEL); 868c2ecf20Sopenharmony_ci if (WARN_ON(!clk_hw_data)) 878c2ecf20Sopenharmony_ci return; 888c2ecf20Sopenharmony_ci 898c2ecf20Sopenharmony_ci clk_hw_data->num = IMX6SLL_CLK_END; 908c2ecf20Sopenharmony_ci hws = clk_hw_data->hws; 918c2ecf20Sopenharmony_ci 928c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_DUMMY] = imx_clk_hw_fixed("dummy", 0); 938c2ecf20Sopenharmony_ci 948c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_CKIL] = imx_obtain_fixed_clk_hw(ccm_node, "ckil"); 958c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_OSC] = imx_obtain_fixed_clk_hw(ccm_node, "osc"); 968c2ecf20Sopenharmony_ci 978c2ecf20Sopenharmony_ci /* ipp_di clock is external input */ 988c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_IPP_DI0] = imx_obtain_fixed_clk_hw(ccm_node, "ipp_di0"); 998c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_IPP_DI1] = imx_obtain_fixed_clk_hw(ccm_node, "ipp_di1"); 1008c2ecf20Sopenharmony_ci 1018c2ecf20Sopenharmony_ci np = of_find_compatible_node(NULL, NULL, "fsl,imx6sll-anatop"); 1028c2ecf20Sopenharmony_ci base = of_iomap(np, 0); 1038c2ecf20Sopenharmony_ci of_node_put(np); 1048c2ecf20Sopenharmony_ci WARN_ON(!base); 1058c2ecf20Sopenharmony_ci 1068c2ecf20Sopenharmony_ci /* Do not bypass PLLs initially */ 1078c2ecf20Sopenharmony_ci writel_relaxed(CCM_ANALOG_PLL_BYPASS, base + xPLL_CLR(0x0)); 1088c2ecf20Sopenharmony_ci writel_relaxed(CCM_ANALOG_PLL_BYPASS, base + xPLL_CLR(0x10)); 1098c2ecf20Sopenharmony_ci writel_relaxed(CCM_ANALOG_PLL_BYPASS, base + xPLL_CLR(0x20)); 1108c2ecf20Sopenharmony_ci writel_relaxed(CCM_ANALOG_PLL_BYPASS, base + xPLL_CLR(0x30)); 1118c2ecf20Sopenharmony_ci writel_relaxed(CCM_ANALOG_PLL_BYPASS, base + xPLL_CLR(0x70)); 1128c2ecf20Sopenharmony_ci writel_relaxed(CCM_ANALOG_PLL_BYPASS, base + xPLL_CLR(0xa0)); 1138c2ecf20Sopenharmony_ci writel_relaxed(CCM_ANALOG_PLL_BYPASS, base + xPLL_CLR(0xe0)); 1148c2ecf20Sopenharmony_ci 1158c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL1_BYPASS_SRC] = imx_clk_hw_mux("pll1_bypass_src", base + 0x00, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 1168c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL2_BYPASS_SRC] = imx_clk_hw_mux("pll2_bypass_src", base + 0x30, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 1178c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL3_BYPASS_SRC] = imx_clk_hw_mux("pll3_bypass_src", base + 0x10, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 1188c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL4_BYPASS_SRC] = imx_clk_hw_mux("pll4_bypass_src", base + 0x70, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 1198c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL5_BYPASS_SRC] = imx_clk_hw_mux("pll5_bypass_src", base + 0xa0, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 1208c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL6_BYPASS_SRC] = imx_clk_hw_mux("pll6_bypass_src", base + 0xe0, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 1218c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL7_BYPASS_SRC] = imx_clk_hw_mux("pll7_bypass_src", base + 0x20, 14, 1, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 1228c2ecf20Sopenharmony_ci 1238c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL1] = imx_clk_hw_pllv3(IMX_PLLV3_SYS, "pll1", "pll1_bypass_src", base + 0x00, 0x7f); 1248c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL2] = imx_clk_hw_pllv3(IMX_PLLV3_GENERIC, "pll2", "pll2_bypass_src", base + 0x30, 0x1); 1258c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL3] = imx_clk_hw_pllv3(IMX_PLLV3_USB, "pll3", "pll3_bypass_src", base + 0x10, 0x3); 1268c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL4] = imx_clk_hw_pllv3(IMX_PLLV3_AV, "pll4", "pll4_bypass_src", base + 0x70, 0x7f); 1278c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL5] = imx_clk_hw_pllv3(IMX_PLLV3_AV, "pll5", "pll5_bypass_src", base + 0xa0, 0x7f); 1288c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL6] = imx_clk_hw_pllv3(IMX_PLLV3_ENET, "pll6", "pll6_bypass_src", base + 0xe0, 0x3); 1298c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL7] = imx_clk_hw_pllv3(IMX_PLLV3_USB, "pll7", "pll7_bypass_src", base + 0x20, 0x3); 1308c2ecf20Sopenharmony_ci 1318c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL1_BYPASS] = imx_clk_hw_mux_flags("pll1_bypass", base + 0x00, 16, 1, pll1_bypass_sels, ARRAY_SIZE(pll1_bypass_sels), CLK_SET_RATE_PARENT); 1328c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL2_BYPASS] = imx_clk_hw_mux_flags("pll2_bypass", base + 0x30, 16, 1, pll2_bypass_sels, ARRAY_SIZE(pll2_bypass_sels), CLK_SET_RATE_PARENT); 1338c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL3_BYPASS] = imx_clk_hw_mux_flags("pll3_bypass", base + 0x10, 16, 1, pll3_bypass_sels, ARRAY_SIZE(pll3_bypass_sels), CLK_SET_RATE_PARENT); 1348c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL4_BYPASS] = imx_clk_hw_mux_flags("pll4_bypass", base + 0x70, 16, 1, pll4_bypass_sels, ARRAY_SIZE(pll4_bypass_sels), CLK_SET_RATE_PARENT); 1358c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL5_BYPASS] = imx_clk_hw_mux_flags("pll5_bypass", base + 0xa0, 16, 1, pll5_bypass_sels, ARRAY_SIZE(pll5_bypass_sels), CLK_SET_RATE_PARENT); 1368c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL6_BYPASS] = imx_clk_hw_mux_flags("pll6_bypass", base + 0xe0, 16, 1, pll6_bypass_sels, ARRAY_SIZE(pll6_bypass_sels), CLK_SET_RATE_PARENT); 1378c2ecf20Sopenharmony_ci hws[IMX6SLL_PLL7_BYPASS] = imx_clk_hw_mux_flags("pll7_bypass", base + 0x20, 16, 1, pll7_bypass_sels, ARRAY_SIZE(pll7_bypass_sels), CLK_SET_RATE_PARENT); 1388c2ecf20Sopenharmony_ci 1398c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL1_SYS] = imx_clk_hw_fixed_factor("pll1_sys", "pll1_bypass", 1, 1); 1408c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL2_BUS] = imx_clk_hw_gate("pll2_bus", "pll2_bypass", base + 0x30, 13); 1418c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL3_USB_OTG] = imx_clk_hw_gate("pll3_usb_otg", "pll3_bypass", base + 0x10, 13); 1428c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL4_AUDIO] = imx_clk_hw_gate("pll4_audio", "pll4_bypass", base + 0x70, 13); 1438c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL5_VIDEO] = imx_clk_hw_gate("pll5_video", "pll5_bypass", base + 0xa0, 13); 1448c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL6_ENET] = imx_clk_hw_gate("pll6_enet", "pll6_bypass", base + 0xe0, 13); 1458c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL7_USB_HOST] = imx_clk_hw_gate("pll7_usb_host", "pll7_bypass", base + 0x20, 13); 1468c2ecf20Sopenharmony_ci 1478c2ecf20Sopenharmony_ci /* 1488c2ecf20Sopenharmony_ci * Bit 20 is the reserved and read-only bit, we do this only for: 1498c2ecf20Sopenharmony_ci * - Do nothing for usbphy clk_enable/disable 1508c2ecf20Sopenharmony_ci * - Keep refcount when do usbphy clk_enable/disable, in that case, 1518c2ecf20Sopenharmony_ci * the clk framework many need to enable/disable usbphy's parent 1528c2ecf20Sopenharmony_ci */ 1538c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USBPHY1] = imx_clk_hw_gate("usbphy1", "pll3_usb_otg", base + 0x10, 20); 1548c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USBPHY2] = imx_clk_hw_gate("usbphy2", "pll7_usb_host", base + 0x20, 20); 1558c2ecf20Sopenharmony_ci 1568c2ecf20Sopenharmony_ci /* 1578c2ecf20Sopenharmony_ci * usbphy*_gate needs to be on after system boots up, and software 1588c2ecf20Sopenharmony_ci * never needs to control it anymore. 1598c2ecf20Sopenharmony_ci */ 1608c2ecf20Sopenharmony_ci if (IS_ENABLED(CONFIG_USB_MXS_PHY)) { 1618c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USBPHY1_GATE] = imx_clk_hw_gate_flags("usbphy1_gate", "dummy", base + 0x10, 6, CLK_IS_CRITICAL); 1628c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USBPHY2_GATE] = imx_clk_hw_gate_flags("usbphy2_gate", "dummy", base + 0x20, 6, CLK_IS_CRITICAL); 1638c2ecf20Sopenharmony_ci } 1648c2ecf20Sopenharmony_ci 1658c2ecf20Sopenharmony_ci /* name parent_name reg idx */ 1668c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL2_PFD0] = imx_clk_hw_pfd("pll2_pfd0_352m", "pll2_bus", base + 0x100, 0); 1678c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL2_PFD1] = imx_clk_hw_pfd("pll2_pfd1_594m", "pll2_bus", base + 0x100, 1); 1688c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL2_PFD2] = imx_clk_hw_pfd("pll2_pfd2_396m", "pll2_bus", base + 0x100, 2); 1698c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL2_PFD3] = imx_clk_hw_pfd("pll2_pfd3_594m", "pll2_bus", base + 0x100, 3); 1708c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL3_PFD0] = imx_clk_hw_pfd("pll3_pfd0_720m", "pll3_usb_otg", base + 0xf0, 0); 1718c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL3_PFD1] = imx_clk_hw_pfd("pll3_pfd1_540m", "pll3_usb_otg", base + 0xf0, 1); 1728c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL3_PFD2] = imx_clk_hw_pfd("pll3_pfd2_508m", "pll3_usb_otg", base + 0xf0, 2); 1738c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL3_PFD3] = imx_clk_hw_pfd("pll3_pfd3_454m", "pll3_usb_otg", base + 0xf0, 3); 1748c2ecf20Sopenharmony_ci 1758c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL4_POST_DIV] = clk_hw_register_divider_table(NULL, "pll4_post_div", "pll4_audio", 1768c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT | CLK_SET_RATE_GATE, base + 0x70, 19, 2, 0, post_div_table, &imx_ccm_lock); 1778c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL4_AUDIO_DIV] = clk_hw_register_divider(NULL, "pll4_audio_div", "pll4_post_div", 1788c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT | CLK_SET_RATE_GATE, base + 0x170, 15, 1, 0, &imx_ccm_lock); 1798c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL5_POST_DIV] = clk_hw_register_divider_table(NULL, "pll5_post_div", "pll5_video", 1808c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT | CLK_SET_RATE_GATE, base + 0xa0, 19, 2, 0, post_div_table, &imx_ccm_lock); 1818c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL5_VIDEO_DIV] = clk_hw_register_divider_table(NULL, "pll5_video_div", "pll5_post_div", 1828c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT | CLK_SET_RATE_GATE, base + 0x170, 30, 2, 0, video_div_table, &imx_ccm_lock); 1838c2ecf20Sopenharmony_ci 1848c2ecf20Sopenharmony_ci /* name parent_name mult div */ 1858c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL2_198M] = imx_clk_hw_fixed_factor("pll2_198m", "pll2_pfd2_396m", 1, 2); 1868c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL3_120M] = imx_clk_hw_fixed_factor("pll3_120m", "pll3_usb_otg", 1, 4); 1878c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL3_80M] = imx_clk_hw_fixed_factor("pll3_80m", "pll3_usb_otg", 1, 6); 1888c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL3_60M] = imx_clk_hw_fixed_factor("pll3_60m", "pll3_usb_otg", 1, 8); 1898c2ecf20Sopenharmony_ci 1908c2ecf20Sopenharmony_ci np = ccm_node; 1918c2ecf20Sopenharmony_ci base = of_iomap(np, 0); 1928c2ecf20Sopenharmony_ci WARN_ON(!base); 1938c2ecf20Sopenharmony_ci 1948c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_STEP] = imx_clk_hw_mux("step", base + 0x0c, 8, 1, step_sels, ARRAY_SIZE(step_sels)); 1958c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PLL1_SW] = imx_clk_hw_mux_flags("pll1_sw", base + 0x0c, 2, 1, pll1_sw_sels, ARRAY_SIZE(pll1_sw_sels), 0); 1968c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_AXI_ALT_SEL] = imx_clk_hw_mux("axi_alt_sel", base + 0x14, 7, 1, axi_alt_sels, ARRAY_SIZE(axi_alt_sels)); 1978c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_AXI_SEL] = imx_clk_hw_mux_flags("axi_sel", base + 0x14, 6, 1, axi_sels, ARRAY_SIZE(axi_sels), 0); 1988c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERIPH_PRE] = imx_clk_hw_mux("periph_pre", base + 0x18, 18, 2, periph_pre_sels, ARRAY_SIZE(periph_pre_sels)); 1998c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERIPH2_PRE] = imx_clk_hw_mux("periph2_pre", base + 0x18, 21, 2, periph2_pre_sels, ARRAY_SIZE(periph2_pre_sels)); 2008c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERIPH_CLK2_SEL] = imx_clk_hw_mux("periph_clk2_sel", base + 0x18, 12, 2, periph_clk2_sels, ARRAY_SIZE(periph_clk2_sels)); 2018c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERIPH2_CLK2_SEL] = imx_clk_hw_mux("periph2_clk2_sel", base + 0x18, 20, 1, periph2_clk2_sels, ARRAY_SIZE(periph2_clk2_sels)); 2028c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USDHC1_SEL] = imx_clk_hw_mux("usdhc1_sel", base + 0x1c, 16, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels)); 2038c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USDHC2_SEL] = imx_clk_hw_mux("usdhc2_sel", base + 0x1c, 17, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels)); 2048c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USDHC3_SEL] = imx_clk_hw_mux("usdhc3_sel", base + 0x1c, 18, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels)); 2058c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI1_SEL] = imx_clk_hw_mux("ssi1_sel", base + 0x1c, 10, 2, ssi_sels, ARRAY_SIZE(ssi_sels)); 2068c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI2_SEL] = imx_clk_hw_mux("ssi2_sel", base + 0x1c, 12, 2, ssi_sels, ARRAY_SIZE(ssi_sels)); 2078c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI3_SEL] = imx_clk_hw_mux("ssi3_sel", base + 0x1c, 14, 2, ssi_sels, ARRAY_SIZE(ssi_sels)); 2088c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERCLK_SEL] = imx_clk_hw_mux("perclk_sel", base + 0x1c, 6, 1, perclk_sels, ARRAY_SIZE(perclk_sels)); 2098c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART_SEL] = imx_clk_hw_mux("uart_sel", base + 0x24, 6, 1, uart_sels, ARRAY_SIZE(uart_sels)); 2108c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SPDIF_SEL] = imx_clk_hw_mux("spdif_sel", base + 0x30, 20, 2, spdif_sels, ARRAY_SIZE(spdif_sels)); 2118c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EXTERN_AUDIO_SEL] = imx_clk_hw_mux("extern_audio_sel", base + 0x30, 7, 2, spdif_sels, ARRAY_SIZE(spdif_sels)); 2128c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EPDC_PRE_SEL] = imx_clk_hw_mux("epdc_pre_sel", base + 0x34, 15, 3, epdc_pre_sels, ARRAY_SIZE(epdc_pre_sels)); 2138c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EPDC_SEL] = imx_clk_hw_mux("epdc_sel", base + 0x34, 9, 3, epdc_sels, ARRAY_SIZE(epdc_sels)); 2148c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_ECSPI_SEL] = imx_clk_hw_mux("ecspi_sel", base + 0x38, 18, 1, ecspi_sels, ARRAY_SIZE(ecspi_sels)); 2158c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LCDIF_PRE_SEL] = imx_clk_hw_mux("lcdif_pre_sel", base + 0x38, 15, 3, lcdif_pre_sels, ARRAY_SIZE(lcdif_pre_sels)); 2168c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LCDIF_SEL] = imx_clk_hw_mux("lcdif_sel", base + 0x38, 9, 3, lcdif_sels, ARRAY_SIZE(lcdif_sels)); 2178c2ecf20Sopenharmony_ci 2188c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERIPH] = imx_clk_hw_busy_mux("periph", base + 0x14, 25, 1, base + 0x48, 5, periph_sels, ARRAY_SIZE(periph_sels)); 2198c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERIPH2] = imx_clk_hw_busy_mux("periph2", base + 0x14, 26, 1, base + 0x48, 3, periph2_sels, ARRAY_SIZE(periph2_sels)); 2208c2ecf20Sopenharmony_ci 2218c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERIPH_CLK2] = imx_clk_hw_divider("periph_clk2", "periph_clk2_sel", base + 0x14, 27, 3); 2228c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERIPH2_CLK2] = imx_clk_hw_divider("periph2_clk2", "periph2_clk2_sel", base + 0x14, 0, 3); 2238c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_IPG] = imx_clk_hw_divider("ipg", "ahb", base + 0x14, 8, 2); 2248c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LCDIF_PODF] = imx_clk_hw_divider("lcdif_podf", "lcdif_pred", base + 0x18, 23, 3); 2258c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PERCLK] = imx_clk_hw_divider("perclk", "perclk_sel", base + 0x1c, 0, 6); 2268c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USDHC3_PODF] = imx_clk_hw_divider("usdhc3_podf", "usdhc3_sel", base + 0x24, 19, 3); 2278c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USDHC2_PODF] = imx_clk_hw_divider("usdhc2_podf", "usdhc2_sel", base + 0x24, 16, 3); 2288c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USDHC1_PODF] = imx_clk_hw_divider("usdhc1_podf", "usdhc1_sel", base + 0x24, 11, 3); 2298c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART_PODF] = imx_clk_hw_divider("uart_podf", "uart_sel", base + 0x24, 0, 6); 2308c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI3_PRED] = imx_clk_hw_divider("ssi3_pred", "ssi3_sel", base + 0x28, 22, 3); 2318c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI3_PODF] = imx_clk_hw_divider("ssi3_podf", "ssi3_pred", base + 0x28, 16, 6); 2328c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI1_PRED] = imx_clk_hw_divider("ssi1_pred", "ssi1_sel", base + 0x28, 6, 3); 2338c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI1_PODF] = imx_clk_hw_divider("ssi1_podf", "ssi1_pred", base + 0x28, 0, 6); 2348c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI2_PRED] = imx_clk_hw_divider("ssi2_pred", "ssi2_sel", base + 0x2c, 6, 3); 2358c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI2_PODF] = imx_clk_hw_divider("ssi2_podf", "ssi2_pred", base + 0x2c, 0, 6); 2368c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SPDIF_PRED] = imx_clk_hw_divider("spdif_pred", "spdif_sel", base + 0x30, 25, 3); 2378c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SPDIF_PODF] = imx_clk_hw_divider("spdif_podf", "spdif_pred", base + 0x30, 22, 3); 2388c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EXTERN_AUDIO_PRED] = imx_clk_hw_divider("extern_audio_pred", "extern_audio_sel", base + 0x30, 12, 3); 2398c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EXTERN_AUDIO_PODF] = imx_clk_hw_divider("extern_audio_podf", "extern_audio_pred", base + 0x30, 9, 3); 2408c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EPDC_PODF] = imx_clk_hw_divider("epdc_podf", "epdc_pre_sel", base + 0x34, 12, 3); 2418c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_ECSPI_PODF] = imx_clk_hw_divider("ecspi_podf", "ecspi_sel", base + 0x38, 19, 6); 2428c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LCDIF_PRED] = imx_clk_hw_divider("lcdif_pred", "lcdif_pre_sel", base + 0x38, 12, 3); 2438c2ecf20Sopenharmony_ci 2448c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_ARM] = imx_clk_hw_busy_divider("arm", "pll1_sw", base + 0x10, 0, 3, base + 0x48, 16); 2458c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_MMDC_PODF] = imx_clk_hw_busy_divider("mmdc_podf", "periph2", base + 0x14, 3, 3, base + 0x48, 2); 2468c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_AXI_PODF] = imx_clk_hw_busy_divider("axi", "axi_sel", base + 0x14, 16, 3, base + 0x48, 0); 2478c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_AHB] = imx_clk_hw_busy_divider("ahb", "periph", base + 0x14, 10, 3, base + 0x48, 1); 2488c2ecf20Sopenharmony_ci 2498c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LDB_DI0_DIV_3_5] = imx_clk_hw_fixed_factor("ldb_di0_div_3_5", "ldb_di0_sel", 2, 7); 2508c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LDB_DI0_DIV_7] = imx_clk_hw_fixed_factor("ldb_di0_div_7", "ldb_di0_sel", 1, 7); 2518c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LDB_DI1_DIV_3_5] = imx_clk_hw_fixed_factor("ldb_di1_div_3_5", "ldb_di1_sel", 2, 7); 2528c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LDB_DI1_DIV_7] = imx_clk_hw_fixed_factor("ldb_di1_div_7", "ldb_di1_sel", 1, 7); 2538c2ecf20Sopenharmony_ci 2548c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LDB_DI0_SEL] = imx_clk_hw_mux("ldb_di0_sel", base + 0x2c, 9, 3, ldb_di0_sels, ARRAY_SIZE(ldb_di0_sels)); 2558c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LDB_DI1_SEL] = imx_clk_hw_mux("ldb_di1_sel", base + 0x1c, 7, 3, ldb_di1_sels, ARRAY_SIZE(ldb_di1_sels)); 2568c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LDB_DI0_DIV_SEL] = imx_clk_hw_mux("ldb_di0_div_sel", base + 0x20, 10, 1, ldb_di0_div_sels, ARRAY_SIZE(ldb_di0_div_sels)); 2578c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LDB_DI1_DIV_SEL] = imx_clk_hw_mux("ldb_di1_div_sel", base + 0x20, 10, 1, ldb_di1_div_sels, ARRAY_SIZE(ldb_di1_div_sels)); 2588c2ecf20Sopenharmony_ci 2598c2ecf20Sopenharmony_ci /* CCGR0 */ 2608c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_AIPSTZ1] = imx_clk_hw_gate2_flags("aips_tz1", "ahb", base + 0x68, 0, CLK_IS_CRITICAL); 2618c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_AIPSTZ2] = imx_clk_hw_gate2_flags("aips_tz2", "ahb", base + 0x68, 2, CLK_IS_CRITICAL); 2628c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_DCP] = imx_clk_hw_gate2("dcp", "ahb", base + 0x68, 10); 2638c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART2_IPG] = imx_clk_hw_gate2("uart2_ipg", "ipg", base + 0x68, 28); 2648c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART2_SERIAL] = imx_clk_hw_gate2("uart2_serial", "uart_podf", base + 0x68, 28); 2658c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_GPIO2] = imx_clk_hw_gate2("gpio2", "ipg", base + 0x68, 30); 2668c2ecf20Sopenharmony_ci 2678c2ecf20Sopenharmony_ci /* CCGR1 */ 2688c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_ECSPI1] = imx_clk_hw_gate2("ecspi1", "ecspi_podf", base + 0x6c, 0); 2698c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_ECSPI2] = imx_clk_hw_gate2("ecspi2", "ecspi_podf", base + 0x6c, 2); 2708c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_ECSPI3] = imx_clk_hw_gate2("ecspi3", "ecspi_podf", base + 0x6c, 4); 2718c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_ECSPI4] = imx_clk_hw_gate2("ecspi4", "ecspi_podf", base + 0x6c, 6); 2728c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART3_IPG] = imx_clk_hw_gate2("uart3_ipg", "ipg", base + 0x6c, 10); 2738c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART3_SERIAL] = imx_clk_hw_gate2("uart3_serial", "uart_podf", base + 0x6c, 10); 2748c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EPIT1] = imx_clk_hw_gate2("epit1", "perclk", base + 0x6c, 12); 2758c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EPIT2] = imx_clk_hw_gate2("epit2", "perclk", base + 0x6c, 14); 2768c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_GPT_BUS] = imx_clk_hw_gate2("gpt1_bus", "perclk", base + 0x6c, 20); 2778c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_GPT_SERIAL] = imx_clk_hw_gate2("gpt1_serial", "perclk", base + 0x6c, 22); 2788c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART4_IPG] = imx_clk_hw_gate2("uart4_ipg", "ipg", base + 0x6c, 24); 2798c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART4_SERIAL] = imx_clk_hw_gate2("uart4_serial", "uart_podf", base + 0x6c, 24); 2808c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_GPIO1] = imx_clk_hw_gate2("gpio1", "ipg", base + 0x6c, 26); 2818c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_GPIO5] = imx_clk_hw_gate2("gpio5", "ipg", base + 0x6c, 30); 2828c2ecf20Sopenharmony_ci 2838c2ecf20Sopenharmony_ci /* CCGR2 */ 2848c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_GPIO6] = imx_clk_hw_gate2("gpio6", "ipg", base + 0x70, 0); 2858c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_CSI] = imx_clk_hw_gate2("csi", "axi", base + 0x70, 2); 2868c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_I2C1] = imx_clk_hw_gate2("i2c1", "perclk", base + 0x70, 6); 2878c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_I2C2] = imx_clk_hw_gate2("i2c2", "perclk", base + 0x70, 8); 2888c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_I2C3] = imx_clk_hw_gate2("i2c3", "perclk", base + 0x70, 10); 2898c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_OCOTP] = imx_clk_hw_gate2("ocotp", "ipg", base + 0x70, 12); 2908c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_GPIO3] = imx_clk_hw_gate2("gpio3", "ipg", base + 0x70, 26); 2918c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LCDIF_APB] = imx_clk_hw_gate2("lcdif_apb", "axi", base + 0x70, 28); 2928c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PXP] = imx_clk_hw_gate2("pxp", "axi", base + 0x70, 30); 2938c2ecf20Sopenharmony_ci 2948c2ecf20Sopenharmony_ci /* CCGR3 */ 2958c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART5_IPG] = imx_clk_hw_gate2("uart5_ipg", "ipg", base + 0x74, 2); 2968c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART5_SERIAL] = imx_clk_hw_gate2("uart5_serial", "uart_podf", base + 0x74, 2); 2978c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EPDC_AXI] = imx_clk_hw_gate2("epdc_aclk", "axi", base + 0x74, 4); 2988c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EPDC_PIX] = imx_clk_hw_gate2("epdc_pix", "epdc_podf", base + 0x74, 4); 2998c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_LCDIF_PIX] = imx_clk_hw_gate2("lcdif_pix", "lcdif_podf", base + 0x74, 10); 3008c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_GPIO4] = imx_clk_hw_gate2("gpio4", "ipg", base + 0x74, 12); 3018c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_WDOG1] = imx_clk_hw_gate2("wdog1", "ipg", base + 0x74, 16); 3028c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_MMDC_P0_FAST] = imx_clk_hw_gate_flags("mmdc_p0_fast", "mmdc_podf", base + 0x74, 20, CLK_IS_CRITICAL); 3038c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_MMDC_P0_IPG] = imx_clk_hw_gate2_flags("mmdc_p0_ipg", "ipg", base + 0x74, 24, CLK_IS_CRITICAL); 3048c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_MMDC_P1_IPG] = imx_clk_hw_gate2_flags("mmdc_p1_ipg", "ipg", base + 0x74, 26, CLK_IS_CRITICAL); 3058c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_OCRAM] = imx_clk_hw_gate_flags("ocram", "ahb", base + 0x74, 28, CLK_IS_CRITICAL); 3068c2ecf20Sopenharmony_ci 3078c2ecf20Sopenharmony_ci /* CCGR4 */ 3088c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PWM1] = imx_clk_hw_gate2("pwm1", "perclk", base + 0x78, 16); 3098c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PWM2] = imx_clk_hw_gate2("pwm2", "perclk", base + 0x78, 18); 3108c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PWM3] = imx_clk_hw_gate2("pwm3", "perclk", base + 0x78, 20); 3118c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_PWM4] = imx_clk_hw_gate2("pwm4", "perclk", base + 0x78, 22); 3128c2ecf20Sopenharmony_ci 3138c2ecf20Sopenharmony_ci /* CCGR5 */ 3148c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_ROM] = imx_clk_hw_gate2_flags("rom", "ahb", base + 0x7c, 0, CLK_IS_CRITICAL); 3158c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SDMA] = imx_clk_hw_gate2("sdma", "ahb", base + 0x7c, 6); 3168c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_WDOG2] = imx_clk_hw_gate2("wdog2", "ipg", base + 0x7c, 10); 3178c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SPBA] = imx_clk_hw_gate2("spba", "ipg", base + 0x7c, 12); 3188c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_EXTERN_AUDIO] = imx_clk_hw_gate2_shared("extern_audio", "extern_audio_podf", base + 0x7c, 14, &share_count_audio); 3198c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SPDIF] = imx_clk_hw_gate2_shared("spdif", "spdif_podf", base + 0x7c, 14, &share_count_audio); 3208c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SPDIF_GCLK] = imx_clk_hw_gate2_shared("spdif_gclk", "ipg", base + 0x7c, 14, &share_count_audio); 3218c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI1] = imx_clk_hw_gate2_shared("ssi1", "ssi1_podf", base + 0x7c, 18, &share_count_ssi1); 3228c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI1_IPG] = imx_clk_hw_gate2_shared("ssi1_ipg", "ipg", base + 0x7c, 18, &share_count_ssi1); 3238c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI2] = imx_clk_hw_gate2_shared("ssi2", "ssi2_podf", base + 0x7c, 20, &share_count_ssi2); 3248c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI2_IPG] = imx_clk_hw_gate2_shared("ssi2_ipg", "ipg", base + 0x7c, 20, &share_count_ssi2); 3258c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI3] = imx_clk_hw_gate2_shared("ssi3", "ssi3_podf", base + 0x7c, 22, &share_count_ssi3); 3268c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_SSI3_IPG] = imx_clk_hw_gate2_shared("ssi3_ipg", "ipg", base + 0x7c, 22, &share_count_ssi3); 3278c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART1_IPG] = imx_clk_hw_gate2("uart1_ipg", "ipg", base + 0x7c, 24); 3288c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_UART1_SERIAL] = imx_clk_hw_gate2("uart1_serial", "uart_podf", base + 0x7c, 24); 3298c2ecf20Sopenharmony_ci 3308c2ecf20Sopenharmony_ci /* CCGR6 */ 3318c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USBOH3] = imx_clk_hw_gate2("usboh3", "ipg", base + 0x80, 0); 3328c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USDHC1] = imx_clk_hw_gate2("usdhc1", "usdhc1_podf", base + 0x80, 2); 3338c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USDHC2] = imx_clk_hw_gate2("usdhc2", "usdhc2_podf", base + 0x80, 4); 3348c2ecf20Sopenharmony_ci hws[IMX6SLL_CLK_USDHC3] = imx_clk_hw_gate2("usdhc3", "usdhc3_podf", base + 0x80, 6); 3358c2ecf20Sopenharmony_ci 3368c2ecf20Sopenharmony_ci /* mask handshake of mmdc */ 3378c2ecf20Sopenharmony_ci imx_mmdc_mask_handshake(base, 0); 3388c2ecf20Sopenharmony_ci 3398c2ecf20Sopenharmony_ci imx_check_clk_hws(hws, IMX6SLL_CLK_END); 3408c2ecf20Sopenharmony_ci 3418c2ecf20Sopenharmony_ci of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_hw_data); 3428c2ecf20Sopenharmony_ci 3438c2ecf20Sopenharmony_ci imx_register_uart_clocks(5); 3448c2ecf20Sopenharmony_ci 3458c2ecf20Sopenharmony_ci /* Lower the AHB clock rate before changing the clock source. */ 3468c2ecf20Sopenharmony_ci clk_set_rate(hws[IMX6SLL_CLK_AHB]->clk, 99000000); 3478c2ecf20Sopenharmony_ci 3488c2ecf20Sopenharmony_ci /* Change periph_pre clock to pll2_bus to adjust AXI rate to 264MHz */ 3498c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6SLL_CLK_PERIPH_CLK2_SEL]->clk, hws[IMX6SLL_CLK_PLL3_USB_OTG]->clk); 3508c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6SLL_CLK_PERIPH]->clk, hws[IMX6SLL_CLK_PERIPH_CLK2]->clk); 3518c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6SLL_CLK_PERIPH_PRE]->clk, hws[IMX6SLL_CLK_PLL2_BUS]->clk); 3528c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6SLL_CLK_PERIPH]->clk, hws[IMX6SLL_CLK_PERIPH_PRE]->clk); 3538c2ecf20Sopenharmony_ci 3548c2ecf20Sopenharmony_ci clk_set_rate(hws[IMX6SLL_CLK_AHB]->clk, 132000000); 3558c2ecf20Sopenharmony_ci} 3568c2ecf20Sopenharmony_ciCLK_OF_DECLARE_DRIVER(imx6sll, "fsl,imx6sll-ccm", imx6sll_clocks_init); 357