18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright 2011-2013 Freescale Semiconductor, Inc. 48c2ecf20Sopenharmony_ci * Copyright 2011 Linaro Ltd. 58c2ecf20Sopenharmony_ci */ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci#include <linux/init.h> 88c2ecf20Sopenharmony_ci#include <linux/types.h> 98c2ecf20Sopenharmony_ci#include <linux/bits.h> 108c2ecf20Sopenharmony_ci#include <linux/clk.h> 118c2ecf20Sopenharmony_ci#include <linux/clkdev.h> 128c2ecf20Sopenharmony_ci#include <linux/clk-provider.h> 138c2ecf20Sopenharmony_ci#include <linux/err.h> 148c2ecf20Sopenharmony_ci#include <linux/io.h> 158c2ecf20Sopenharmony_ci#include <linux/of.h> 168c2ecf20Sopenharmony_ci#include <linux/of_address.h> 178c2ecf20Sopenharmony_ci#include <linux/of_irq.h> 188c2ecf20Sopenharmony_ci#include <soc/imx/revision.h> 198c2ecf20Sopenharmony_ci#include <dt-bindings/clock/imx6qdl-clock.h> 208c2ecf20Sopenharmony_ci 218c2ecf20Sopenharmony_ci#include "clk.h" 228c2ecf20Sopenharmony_ci 238c2ecf20Sopenharmony_cistatic const char *step_sels[] = { "osc", "pll2_pfd2_396m", }; 248c2ecf20Sopenharmony_cistatic const char *pll1_sw_sels[] = { "pll1_sys", "step", }; 258c2ecf20Sopenharmony_cistatic const char *periph_pre_sels[] = { "pll2_bus", "pll2_pfd2_396m", "pll2_pfd0_352m", "pll2_198m", }; 268c2ecf20Sopenharmony_cistatic const char *periph_clk2_sels[] = { "pll3_usb_otg", "osc", "osc", "dummy", }; 278c2ecf20Sopenharmony_cistatic const char *periph2_clk2_sels[] = { "pll3_usb_otg", "pll2_bus", }; 288c2ecf20Sopenharmony_cistatic const char *periph_sels[] = { "periph_pre", "periph_clk2", }; 298c2ecf20Sopenharmony_cistatic const char *periph2_sels[] = { "periph2_pre", "periph2_clk2", }; 308c2ecf20Sopenharmony_cistatic const char *axi_sels[] = { "periph", "pll2_pfd2_396m", "periph", "pll3_pfd1_540m", }; 318c2ecf20Sopenharmony_cistatic const char *audio_sels[] = { "pll4_audio_div", "pll3_pfd2_508m", "pll3_pfd3_454m", "pll3_usb_otg", }; 328c2ecf20Sopenharmony_cistatic const char *gpu_axi_sels[] = { "axi", "ahb", }; 338c2ecf20Sopenharmony_cistatic const char *pre_axi_sels[] = { "axi", "ahb", }; 348c2ecf20Sopenharmony_cistatic const char *gpu2d_core_sels[] = { "axi", "pll3_usb_otg", "pll2_pfd0_352m", "pll2_pfd2_396m", }; 358c2ecf20Sopenharmony_cistatic const char *gpu2d_core_sels_2[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll2_pfd1_594m", "pll3_pfd0_720m",}; 368c2ecf20Sopenharmony_cistatic const char *gpu3d_core_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll2_pfd1_594m", "pll2_pfd2_396m", }; 378c2ecf20Sopenharmony_cistatic const char *gpu3d_shader_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll2_pfd1_594m", "pll3_pfd0_720m", }; 388c2ecf20Sopenharmony_cistatic const char *ipu_sels[] = { "mmdc_ch0_axi", "pll2_pfd2_396m", "pll3_120m", "pll3_pfd1_540m", }; 398c2ecf20Sopenharmony_cistatic const char *ldb_di_sels[] = { "pll5_video_div", "pll2_pfd0_352m", "pll2_pfd2_396m", "mmdc_ch1_axi", "pll3_usb_otg", }; 408c2ecf20Sopenharmony_cistatic const char *ipu_di_pre_sels[] = { "mmdc_ch0_axi", "pll3_usb_otg", "pll5_video_div", "pll2_pfd0_352m", "pll2_pfd2_396m", "pll3_pfd1_540m", }; 418c2ecf20Sopenharmony_cistatic const char *ipu1_di0_sels[] = { "ipu1_di0_pre", "dummy", "dummy", "ldb_di0", "ldb_di1", }; 428c2ecf20Sopenharmony_cistatic const char *ipu1_di1_sels[] = { "ipu1_di1_pre", "dummy", "dummy", "ldb_di0", "ldb_di1", }; 438c2ecf20Sopenharmony_cistatic const char *ipu2_di0_sels[] = { "ipu2_di0_pre", "dummy", "dummy", "ldb_di0", "ldb_di1", }; 448c2ecf20Sopenharmony_cistatic const char *ipu2_di1_sels[] = { "ipu2_di1_pre", "dummy", "dummy", "ldb_di0", "ldb_di1", }; 458c2ecf20Sopenharmony_cistatic const char *ipu1_di0_sels_2[] = { "ipu1_di0_pre", "dummy", "dummy", "ldb_di0_podf", "ldb_di1_podf", }; 468c2ecf20Sopenharmony_cistatic const char *ipu1_di1_sels_2[] = { "ipu1_di1_pre", "dummy", "dummy", "ldb_di0_podf", "ldb_di1_podf", }; 478c2ecf20Sopenharmony_cistatic const char *ipu2_di0_sels_2[] = { "ipu2_di0_pre", "dummy", "dummy", "ldb_di0_podf", "ldb_di1_podf", }; 488c2ecf20Sopenharmony_cistatic const char *ipu2_di1_sels_2[] = { "ipu2_di1_pre", "dummy", "dummy", "ldb_di0_podf", "ldb_di1_podf", }; 498c2ecf20Sopenharmony_cistatic const char *hsi_tx_sels[] = { "pll3_120m", "pll2_pfd2_396m", }; 508c2ecf20Sopenharmony_cistatic const char *pcie_axi_sels[] = { "axi", "ahb", }; 518c2ecf20Sopenharmony_cistatic const char *ssi_sels[] = { "pll3_pfd2_508m", "pll3_pfd3_454m", "pll4_audio_div", }; 528c2ecf20Sopenharmony_cistatic const char *usdhc_sels[] = { "pll2_pfd2_396m", "pll2_pfd0_352m", }; 538c2ecf20Sopenharmony_cistatic const char *enfc_sels[] = { "pll2_pfd0_352m", "pll2_bus", "pll3_usb_otg", "pll2_pfd2_396m", }; 548c2ecf20Sopenharmony_cistatic const char *enfc_sels_2[] = {"pll2_pfd0_352m", "pll2_bus", "pll3_usb_otg", "pll2_pfd2_396m", "pll3_pfd3_454m", "dummy", }; 558c2ecf20Sopenharmony_cistatic const char *eim_sels[] = { "pll2_pfd2_396m", "pll3_usb_otg", "axi", "pll2_pfd0_352m", }; 568c2ecf20Sopenharmony_cistatic const char *eim_slow_sels[] = { "axi", "pll3_usb_otg", "pll2_pfd2_396m", "pll2_pfd0_352m", }; 578c2ecf20Sopenharmony_cistatic const char *vdo_axi_sels[] = { "axi", "ahb", }; 588c2ecf20Sopenharmony_cistatic const char *vpu_axi_sels[] = { "axi", "pll2_pfd2_396m", "pll2_pfd0_352m", }; 598c2ecf20Sopenharmony_cistatic const char *uart_sels[] = { "pll3_80m", "osc", }; 608c2ecf20Sopenharmony_cistatic const char *ipg_per_sels[] = { "ipg", "osc", }; 618c2ecf20Sopenharmony_cistatic const char *ecspi_sels[] = { "pll3_60m", "osc", }; 628c2ecf20Sopenharmony_cistatic const char *can_sels[] = { "pll3_60m", "osc", "pll3_80m", }; 638c2ecf20Sopenharmony_cistatic const char *cko1_sels[] = { "pll3_usb_otg", "pll2_bus", "pll1_sys", "pll5_video_div", 648c2ecf20Sopenharmony_ci "video_27m", "axi", "enfc", "ipu1_di0", "ipu1_di1", "ipu2_di0", 658c2ecf20Sopenharmony_ci "ipu2_di1", "ahb", "ipg", "ipg_per", "ckil", "pll4_audio_div", }; 668c2ecf20Sopenharmony_cistatic const char *cko2_sels[] = { 678c2ecf20Sopenharmony_ci "mmdc_ch0_axi", "mmdc_ch1_axi", "usdhc4", "usdhc1", 688c2ecf20Sopenharmony_ci "gpu2d_axi", "dummy", "ecspi_root", "gpu3d_axi", 698c2ecf20Sopenharmony_ci "usdhc3", "dummy", "arm", "ipu1", 708c2ecf20Sopenharmony_ci "ipu2", "vdo_axi", "osc", "gpu2d_core", 718c2ecf20Sopenharmony_ci "gpu3d_core", "usdhc2", "ssi1", "ssi2", 728c2ecf20Sopenharmony_ci "ssi3", "gpu3d_shader", "vpu_axi", "can_root", 738c2ecf20Sopenharmony_ci "ldb_di0", "ldb_di1", "esai_extal", "eim_slow", 748c2ecf20Sopenharmony_ci "uart_serial", "spdif", "asrc", "hsi_tx", 758c2ecf20Sopenharmony_ci}; 768c2ecf20Sopenharmony_cistatic const char *cko_sels[] = { "cko1", "cko2", }; 778c2ecf20Sopenharmony_cistatic const char *lvds_sels[] = { 788c2ecf20Sopenharmony_ci "dummy", "dummy", "dummy", "dummy", "dummy", "dummy", 798c2ecf20Sopenharmony_ci "pll4_audio", "pll5_video", "pll8_mlb", "enet_ref", 808c2ecf20Sopenharmony_ci "pcie_ref_125m", "sata_ref_100m", "usbphy1", "usbphy2", 818c2ecf20Sopenharmony_ci "dummy", "dummy", "dummy", "dummy", "osc", 828c2ecf20Sopenharmony_ci}; 838c2ecf20Sopenharmony_cistatic const char *pll_bypass_src_sels[] = { "osc", "lvds1_in", "lvds2_in", "dummy", }; 848c2ecf20Sopenharmony_cistatic const char *pll1_bypass_sels[] = { "pll1", "pll1_bypass_src", }; 858c2ecf20Sopenharmony_cistatic const char *pll2_bypass_sels[] = { "pll2", "pll2_bypass_src", }; 868c2ecf20Sopenharmony_cistatic const char *pll3_bypass_sels[] = { "pll3", "pll3_bypass_src", }; 878c2ecf20Sopenharmony_cistatic const char *pll4_bypass_sels[] = { "pll4", "pll4_bypass_src", }; 888c2ecf20Sopenharmony_cistatic const char *pll5_bypass_sels[] = { "pll5", "pll5_bypass_src", }; 898c2ecf20Sopenharmony_cistatic const char *pll6_bypass_sels[] = { "pll6", "pll6_bypass_src", }; 908c2ecf20Sopenharmony_cistatic const char *pll7_bypass_sels[] = { "pll7", "pll7_bypass_src", }; 918c2ecf20Sopenharmony_ci 928c2ecf20Sopenharmony_cistatic struct clk_hw **hws; 938c2ecf20Sopenharmony_cistatic struct clk_hw_onecell_data *clk_hw_data; 948c2ecf20Sopenharmony_ci 958c2ecf20Sopenharmony_cistatic struct clk_div_table clk_enet_ref_table[] = { 968c2ecf20Sopenharmony_ci { .val = 0, .div = 20, }, 978c2ecf20Sopenharmony_ci { .val = 1, .div = 10, }, 988c2ecf20Sopenharmony_ci { .val = 2, .div = 5, }, 998c2ecf20Sopenharmony_ci { .val = 3, .div = 4, }, 1008c2ecf20Sopenharmony_ci { /* sentinel */ } 1018c2ecf20Sopenharmony_ci}; 1028c2ecf20Sopenharmony_ci 1038c2ecf20Sopenharmony_cistatic struct clk_div_table post_div_table[] = { 1048c2ecf20Sopenharmony_ci { .val = 2, .div = 1, }, 1058c2ecf20Sopenharmony_ci { .val = 1, .div = 2, }, 1068c2ecf20Sopenharmony_ci { .val = 0, .div = 4, }, 1078c2ecf20Sopenharmony_ci { /* sentinel */ } 1088c2ecf20Sopenharmony_ci}; 1098c2ecf20Sopenharmony_ci 1108c2ecf20Sopenharmony_cistatic struct clk_div_table video_div_table[] = { 1118c2ecf20Sopenharmony_ci { .val = 0, .div = 1, }, 1128c2ecf20Sopenharmony_ci { .val = 1, .div = 2, }, 1138c2ecf20Sopenharmony_ci { .val = 2, .div = 1, }, 1148c2ecf20Sopenharmony_ci { .val = 3, .div = 4, }, 1158c2ecf20Sopenharmony_ci { /* sentinel */ } 1168c2ecf20Sopenharmony_ci}; 1178c2ecf20Sopenharmony_ci 1188c2ecf20Sopenharmony_cistatic unsigned int share_count_esai; 1198c2ecf20Sopenharmony_cistatic unsigned int share_count_asrc; 1208c2ecf20Sopenharmony_cistatic unsigned int share_count_ssi1; 1218c2ecf20Sopenharmony_cistatic unsigned int share_count_ssi2; 1228c2ecf20Sopenharmony_cistatic unsigned int share_count_ssi3; 1238c2ecf20Sopenharmony_cistatic unsigned int share_count_mipi_core_cfg; 1248c2ecf20Sopenharmony_cistatic unsigned int share_count_spdif; 1258c2ecf20Sopenharmony_cistatic unsigned int share_count_prg0; 1268c2ecf20Sopenharmony_cistatic unsigned int share_count_prg1; 1278c2ecf20Sopenharmony_ci 1288c2ecf20Sopenharmony_cistatic inline int clk_on_imx6q(void) 1298c2ecf20Sopenharmony_ci{ 1308c2ecf20Sopenharmony_ci return of_machine_is_compatible("fsl,imx6q"); 1318c2ecf20Sopenharmony_ci} 1328c2ecf20Sopenharmony_ci 1338c2ecf20Sopenharmony_cistatic inline int clk_on_imx6qp(void) 1348c2ecf20Sopenharmony_ci{ 1358c2ecf20Sopenharmony_ci return of_machine_is_compatible("fsl,imx6qp"); 1368c2ecf20Sopenharmony_ci} 1378c2ecf20Sopenharmony_ci 1388c2ecf20Sopenharmony_cistatic inline int clk_on_imx6dl(void) 1398c2ecf20Sopenharmony_ci{ 1408c2ecf20Sopenharmony_ci return of_machine_is_compatible("fsl,imx6dl"); 1418c2ecf20Sopenharmony_ci} 1428c2ecf20Sopenharmony_ci 1438c2ecf20Sopenharmony_cistatic int ldb_di_sel_by_clock_id(int clock_id) 1448c2ecf20Sopenharmony_ci{ 1458c2ecf20Sopenharmony_ci switch (clock_id) { 1468c2ecf20Sopenharmony_ci case IMX6QDL_CLK_PLL5_VIDEO_DIV: 1478c2ecf20Sopenharmony_ci if (clk_on_imx6q() && 1488c2ecf20Sopenharmony_ci imx_get_soc_revision() == IMX_CHIP_REVISION_1_0) 1498c2ecf20Sopenharmony_ci return -ENOENT; 1508c2ecf20Sopenharmony_ci return 0; 1518c2ecf20Sopenharmony_ci case IMX6QDL_CLK_PLL2_PFD0_352M: 1528c2ecf20Sopenharmony_ci return 1; 1538c2ecf20Sopenharmony_ci case IMX6QDL_CLK_PLL2_PFD2_396M: 1548c2ecf20Sopenharmony_ci return 2; 1558c2ecf20Sopenharmony_ci case IMX6QDL_CLK_MMDC_CH1_AXI: 1568c2ecf20Sopenharmony_ci return 3; 1578c2ecf20Sopenharmony_ci case IMX6QDL_CLK_PLL3_USB_OTG: 1588c2ecf20Sopenharmony_ci return 4; 1598c2ecf20Sopenharmony_ci default: 1608c2ecf20Sopenharmony_ci return -ENOENT; 1618c2ecf20Sopenharmony_ci } 1628c2ecf20Sopenharmony_ci} 1638c2ecf20Sopenharmony_ci 1648c2ecf20Sopenharmony_cistatic void of_assigned_ldb_sels(struct device_node *node, 1658c2ecf20Sopenharmony_ci unsigned int *ldb_di0_sel, 1668c2ecf20Sopenharmony_ci unsigned int *ldb_di1_sel) 1678c2ecf20Sopenharmony_ci{ 1688c2ecf20Sopenharmony_ci struct of_phandle_args clkspec; 1698c2ecf20Sopenharmony_ci int index, rc, num_parents; 1708c2ecf20Sopenharmony_ci int parent, child, sel; 1718c2ecf20Sopenharmony_ci 1728c2ecf20Sopenharmony_ci num_parents = of_count_phandle_with_args(node, "assigned-clock-parents", 1738c2ecf20Sopenharmony_ci "#clock-cells"); 1748c2ecf20Sopenharmony_ci for (index = 0; index < num_parents; index++) { 1758c2ecf20Sopenharmony_ci rc = of_parse_phandle_with_args(node, "assigned-clock-parents", 1768c2ecf20Sopenharmony_ci "#clock-cells", index, &clkspec); 1778c2ecf20Sopenharmony_ci if (rc < 0) { 1788c2ecf20Sopenharmony_ci /* skip empty (null) phandles */ 1798c2ecf20Sopenharmony_ci if (rc == -ENOENT) 1808c2ecf20Sopenharmony_ci continue; 1818c2ecf20Sopenharmony_ci else 1828c2ecf20Sopenharmony_ci return; 1838c2ecf20Sopenharmony_ci } 1848c2ecf20Sopenharmony_ci if (clkspec.np != node || clkspec.args[0] >= IMX6QDL_CLK_END) { 1858c2ecf20Sopenharmony_ci pr_err("ccm: parent clock %d not in ccm\n", index); 1868c2ecf20Sopenharmony_ci return; 1878c2ecf20Sopenharmony_ci } 1888c2ecf20Sopenharmony_ci parent = clkspec.args[0]; 1898c2ecf20Sopenharmony_ci 1908c2ecf20Sopenharmony_ci rc = of_parse_phandle_with_args(node, "assigned-clocks", 1918c2ecf20Sopenharmony_ci "#clock-cells", index, &clkspec); 1928c2ecf20Sopenharmony_ci if (rc < 0) 1938c2ecf20Sopenharmony_ci return; 1948c2ecf20Sopenharmony_ci if (clkspec.np != node || clkspec.args[0] >= IMX6QDL_CLK_END) { 1958c2ecf20Sopenharmony_ci pr_err("ccm: child clock %d not in ccm\n", index); 1968c2ecf20Sopenharmony_ci return; 1978c2ecf20Sopenharmony_ci } 1988c2ecf20Sopenharmony_ci child = clkspec.args[0]; 1998c2ecf20Sopenharmony_ci 2008c2ecf20Sopenharmony_ci if (child != IMX6QDL_CLK_LDB_DI0_SEL && 2018c2ecf20Sopenharmony_ci child != IMX6QDL_CLK_LDB_DI1_SEL) 2028c2ecf20Sopenharmony_ci continue; 2038c2ecf20Sopenharmony_ci 2048c2ecf20Sopenharmony_ci sel = ldb_di_sel_by_clock_id(parent); 2058c2ecf20Sopenharmony_ci if (sel < 0) { 2068c2ecf20Sopenharmony_ci pr_err("ccm: invalid ldb_di%d parent clock: %d\n", 2078c2ecf20Sopenharmony_ci child == IMX6QDL_CLK_LDB_DI1_SEL, parent); 2088c2ecf20Sopenharmony_ci continue; 2098c2ecf20Sopenharmony_ci } 2108c2ecf20Sopenharmony_ci 2118c2ecf20Sopenharmony_ci if (child == IMX6QDL_CLK_LDB_DI0_SEL) 2128c2ecf20Sopenharmony_ci *ldb_di0_sel = sel; 2138c2ecf20Sopenharmony_ci if (child == IMX6QDL_CLK_LDB_DI1_SEL) 2148c2ecf20Sopenharmony_ci *ldb_di1_sel = sel; 2158c2ecf20Sopenharmony_ci } 2168c2ecf20Sopenharmony_ci} 2178c2ecf20Sopenharmony_ci 2188c2ecf20Sopenharmony_cistatic bool pll6_bypassed(struct device_node *node) 2198c2ecf20Sopenharmony_ci{ 2208c2ecf20Sopenharmony_ci int index, ret, num_clocks; 2218c2ecf20Sopenharmony_ci struct of_phandle_args clkspec; 2228c2ecf20Sopenharmony_ci 2238c2ecf20Sopenharmony_ci num_clocks = of_count_phandle_with_args(node, "assigned-clocks", 2248c2ecf20Sopenharmony_ci "#clock-cells"); 2258c2ecf20Sopenharmony_ci if (num_clocks < 0) 2268c2ecf20Sopenharmony_ci return false; 2278c2ecf20Sopenharmony_ci 2288c2ecf20Sopenharmony_ci for (index = 0; index < num_clocks; index++) { 2298c2ecf20Sopenharmony_ci ret = of_parse_phandle_with_args(node, "assigned-clocks", 2308c2ecf20Sopenharmony_ci "#clock-cells", index, 2318c2ecf20Sopenharmony_ci &clkspec); 2328c2ecf20Sopenharmony_ci if (ret < 0) 2338c2ecf20Sopenharmony_ci return false; 2348c2ecf20Sopenharmony_ci 2358c2ecf20Sopenharmony_ci if (clkspec.np == node && 2368c2ecf20Sopenharmony_ci clkspec.args[0] == IMX6QDL_PLL6_BYPASS) 2378c2ecf20Sopenharmony_ci break; 2388c2ecf20Sopenharmony_ci } 2398c2ecf20Sopenharmony_ci 2408c2ecf20Sopenharmony_ci /* PLL6 bypass is not part of the assigned clock list */ 2418c2ecf20Sopenharmony_ci if (index == num_clocks) 2428c2ecf20Sopenharmony_ci return false; 2438c2ecf20Sopenharmony_ci 2448c2ecf20Sopenharmony_ci ret = of_parse_phandle_with_args(node, "assigned-clock-parents", 2458c2ecf20Sopenharmony_ci "#clock-cells", index, &clkspec); 2468c2ecf20Sopenharmony_ci 2478c2ecf20Sopenharmony_ci if (clkspec.args[0] != IMX6QDL_CLK_PLL6) 2488c2ecf20Sopenharmony_ci return true; 2498c2ecf20Sopenharmony_ci 2508c2ecf20Sopenharmony_ci return false; 2518c2ecf20Sopenharmony_ci} 2528c2ecf20Sopenharmony_ci 2538c2ecf20Sopenharmony_ci#define CCM_CCSR 0x0c 2548c2ecf20Sopenharmony_ci#define CCM_CS2CDR 0x2c 2558c2ecf20Sopenharmony_ci 2568c2ecf20Sopenharmony_ci#define CCSR_PLL3_SW_CLK_SEL BIT(0) 2578c2ecf20Sopenharmony_ci 2588c2ecf20Sopenharmony_ci#define CS2CDR_LDB_DI0_CLK_SEL_SHIFT 9 2598c2ecf20Sopenharmony_ci#define CS2CDR_LDB_DI1_CLK_SEL_SHIFT 12 2608c2ecf20Sopenharmony_ci 2618c2ecf20Sopenharmony_ci/* 2628c2ecf20Sopenharmony_ci * The only way to disable the MMDC_CH1 clock is to move it to pll3_sw_clk 2638c2ecf20Sopenharmony_ci * via periph2_clk2_sel and then to disable pll3_sw_clk by selecting the 2648c2ecf20Sopenharmony_ci * bypass clock source, since there is no CG bit for mmdc_ch1. 2658c2ecf20Sopenharmony_ci */ 2668c2ecf20Sopenharmony_cistatic void mmdc_ch1_disable(void __iomem *ccm_base) 2678c2ecf20Sopenharmony_ci{ 2688c2ecf20Sopenharmony_ci unsigned int reg; 2698c2ecf20Sopenharmony_ci 2708c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_PERIPH2_CLK2_SEL]->clk, 2718c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_USB_OTG]->clk); 2728c2ecf20Sopenharmony_ci 2738c2ecf20Sopenharmony_ci /* Disable pll3_sw_clk by selecting the bypass clock source */ 2748c2ecf20Sopenharmony_ci reg = readl_relaxed(ccm_base + CCM_CCSR); 2758c2ecf20Sopenharmony_ci reg |= CCSR_PLL3_SW_CLK_SEL; 2768c2ecf20Sopenharmony_ci writel_relaxed(reg, ccm_base + CCM_CCSR); 2778c2ecf20Sopenharmony_ci} 2788c2ecf20Sopenharmony_ci 2798c2ecf20Sopenharmony_cistatic void mmdc_ch1_reenable(void __iomem *ccm_base) 2808c2ecf20Sopenharmony_ci{ 2818c2ecf20Sopenharmony_ci unsigned int reg; 2828c2ecf20Sopenharmony_ci 2838c2ecf20Sopenharmony_ci /* Enable pll3_sw_clk by disabling the bypass */ 2848c2ecf20Sopenharmony_ci reg = readl_relaxed(ccm_base + CCM_CCSR); 2858c2ecf20Sopenharmony_ci reg &= ~CCSR_PLL3_SW_CLK_SEL; 2868c2ecf20Sopenharmony_ci writel_relaxed(reg, ccm_base + CCM_CCSR); 2878c2ecf20Sopenharmony_ci} 2888c2ecf20Sopenharmony_ci 2898c2ecf20Sopenharmony_ci/* 2908c2ecf20Sopenharmony_ci * We have to follow a strict procedure when changing the LDB clock source, 2918c2ecf20Sopenharmony_ci * otherwise we risk introducing a glitch that can lock up the LDB divider. 2928c2ecf20Sopenharmony_ci * Things to keep in mind: 2938c2ecf20Sopenharmony_ci * 2948c2ecf20Sopenharmony_ci * 1. The current and new parent clock inputs to the mux must be disabled. 2958c2ecf20Sopenharmony_ci * 2. The default clock input for ldb_di0/1_clk_sel is mmdc_ch1_axi, which 2968c2ecf20Sopenharmony_ci * has no CG bit. 2978c2ecf20Sopenharmony_ci * 3. pll2_pfd2_396m can not be gated if it is used as memory clock. 2988c2ecf20Sopenharmony_ci * 4. In the RTL implementation of the LDB_DI_CLK_SEL muxes the top four 2998c2ecf20Sopenharmony_ci * options are in one mux and the PLL3 option along with three unused 3008c2ecf20Sopenharmony_ci * inputs is in a second mux. There is a third mux with two inputs used 3018c2ecf20Sopenharmony_ci * to decide between the first and second 4-port mux: 3028c2ecf20Sopenharmony_ci * 3038c2ecf20Sopenharmony_ci * pll5_video_div 0 --|\ 3048c2ecf20Sopenharmony_ci * pll2_pfd0_352m 1 --| |_ 3058c2ecf20Sopenharmony_ci * pll2_pfd2_396m 2 --| | `-|\ 3068c2ecf20Sopenharmony_ci * mmdc_ch1_axi 3 --|/ | | 3078c2ecf20Sopenharmony_ci * | |-- 3088c2ecf20Sopenharmony_ci * pll3_usb_otg 4 --|\ | | 3098c2ecf20Sopenharmony_ci * 5 --| |_,-|/ 3108c2ecf20Sopenharmony_ci * 6 --| | 3118c2ecf20Sopenharmony_ci * 7 --|/ 3128c2ecf20Sopenharmony_ci * 3138c2ecf20Sopenharmony_ci * The ldb_di0/1_clk_sel[1:0] bits control both 4-port muxes at the same time. 3148c2ecf20Sopenharmony_ci * The ldb_di0/1_clk_sel[2] bit controls the 2-port mux. The code below 3158c2ecf20Sopenharmony_ci * switches the parent to the bottom mux first and then manipulates the top 3168c2ecf20Sopenharmony_ci * mux to ensure that no glitch will enter the divider. 3178c2ecf20Sopenharmony_ci */ 3188c2ecf20Sopenharmony_cistatic void init_ldb_clks(struct device_node *np, void __iomem *ccm_base) 3198c2ecf20Sopenharmony_ci{ 3208c2ecf20Sopenharmony_ci unsigned int reg; 3218c2ecf20Sopenharmony_ci unsigned int sel[2][4]; 3228c2ecf20Sopenharmony_ci int i; 3238c2ecf20Sopenharmony_ci 3248c2ecf20Sopenharmony_ci reg = readl_relaxed(ccm_base + CCM_CS2CDR); 3258c2ecf20Sopenharmony_ci sel[0][0] = (reg >> CS2CDR_LDB_DI0_CLK_SEL_SHIFT) & 7; 3268c2ecf20Sopenharmony_ci sel[1][0] = (reg >> CS2CDR_LDB_DI1_CLK_SEL_SHIFT) & 7; 3278c2ecf20Sopenharmony_ci 3288c2ecf20Sopenharmony_ci sel[0][3] = sel[0][2] = sel[0][1] = sel[0][0]; 3298c2ecf20Sopenharmony_ci sel[1][3] = sel[1][2] = sel[1][1] = sel[1][0]; 3308c2ecf20Sopenharmony_ci 3318c2ecf20Sopenharmony_ci of_assigned_ldb_sels(np, &sel[0][3], &sel[1][3]); 3328c2ecf20Sopenharmony_ci 3338c2ecf20Sopenharmony_ci for (i = 0; i < 2; i++) { 3348c2ecf20Sopenharmony_ci /* Warn if a glitch might have been introduced already */ 3358c2ecf20Sopenharmony_ci if (sel[i][0] != 3) { 3368c2ecf20Sopenharmony_ci pr_warn("ccm: ldb_di%d_sel already changed from reset value: %d\n", 3378c2ecf20Sopenharmony_ci i, sel[i][0]); 3388c2ecf20Sopenharmony_ci } 3398c2ecf20Sopenharmony_ci 3408c2ecf20Sopenharmony_ci if (sel[i][0] == sel[i][3]) 3418c2ecf20Sopenharmony_ci continue; 3428c2ecf20Sopenharmony_ci 3438c2ecf20Sopenharmony_ci /* Only switch to or from pll2_pfd2_396m if it is disabled */ 3448c2ecf20Sopenharmony_ci if ((sel[i][0] == 2 || sel[i][3] == 2) && 3458c2ecf20Sopenharmony_ci (clk_get_parent(hws[IMX6QDL_CLK_PERIPH_PRE]->clk) == 3468c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_PFD2_396M]->clk)) { 3478c2ecf20Sopenharmony_ci pr_err("ccm: ldb_di%d_sel: couldn't disable pll2_pfd2_396m\n", 3488c2ecf20Sopenharmony_ci i); 3498c2ecf20Sopenharmony_ci sel[i][3] = sel[i][2] = sel[i][1] = sel[i][0]; 3508c2ecf20Sopenharmony_ci continue; 3518c2ecf20Sopenharmony_ci } 3528c2ecf20Sopenharmony_ci 3538c2ecf20Sopenharmony_ci /* First switch to the bottom mux */ 3548c2ecf20Sopenharmony_ci sel[i][1] = sel[i][0] | 4; 3558c2ecf20Sopenharmony_ci 3568c2ecf20Sopenharmony_ci /* Then configure the top mux before switching back to it */ 3578c2ecf20Sopenharmony_ci sel[i][2] = sel[i][3] | 4; 3588c2ecf20Sopenharmony_ci 3598c2ecf20Sopenharmony_ci pr_debug("ccm: switching ldb_di%d_sel: %d->%d->%d->%d\n", i, 3608c2ecf20Sopenharmony_ci sel[i][0], sel[i][1], sel[i][2], sel[i][3]); 3618c2ecf20Sopenharmony_ci } 3628c2ecf20Sopenharmony_ci 3638c2ecf20Sopenharmony_ci if (sel[0][0] == sel[0][3] && sel[1][0] == sel[1][3]) 3648c2ecf20Sopenharmony_ci return; 3658c2ecf20Sopenharmony_ci 3668c2ecf20Sopenharmony_ci mmdc_ch1_disable(ccm_base); 3678c2ecf20Sopenharmony_ci 3688c2ecf20Sopenharmony_ci for (i = 1; i < 4; i++) { 3698c2ecf20Sopenharmony_ci reg = readl_relaxed(ccm_base + CCM_CS2CDR); 3708c2ecf20Sopenharmony_ci reg &= ~((7 << CS2CDR_LDB_DI0_CLK_SEL_SHIFT) | 3718c2ecf20Sopenharmony_ci (7 << CS2CDR_LDB_DI1_CLK_SEL_SHIFT)); 3728c2ecf20Sopenharmony_ci reg |= ((sel[0][i] << CS2CDR_LDB_DI0_CLK_SEL_SHIFT) | 3738c2ecf20Sopenharmony_ci (sel[1][i] << CS2CDR_LDB_DI1_CLK_SEL_SHIFT)); 3748c2ecf20Sopenharmony_ci writel_relaxed(reg, ccm_base + CCM_CS2CDR); 3758c2ecf20Sopenharmony_ci } 3768c2ecf20Sopenharmony_ci 3778c2ecf20Sopenharmony_ci mmdc_ch1_reenable(ccm_base); 3788c2ecf20Sopenharmony_ci} 3798c2ecf20Sopenharmony_ci 3808c2ecf20Sopenharmony_ci#define CCM_ANALOG_PLL_VIDEO 0xa0 3818c2ecf20Sopenharmony_ci#define CCM_ANALOG_PFD_480 0xf0 3828c2ecf20Sopenharmony_ci#define CCM_ANALOG_PFD_528 0x100 3838c2ecf20Sopenharmony_ci 3848c2ecf20Sopenharmony_ci#define PLL_ENABLE BIT(13) 3858c2ecf20Sopenharmony_ci 3868c2ecf20Sopenharmony_ci#define PFD0_CLKGATE BIT(7) 3878c2ecf20Sopenharmony_ci#define PFD1_CLKGATE BIT(15) 3888c2ecf20Sopenharmony_ci#define PFD2_CLKGATE BIT(23) 3898c2ecf20Sopenharmony_ci#define PFD3_CLKGATE BIT(31) 3908c2ecf20Sopenharmony_ci 3918c2ecf20Sopenharmony_cistatic void disable_anatop_clocks(void __iomem *anatop_base) 3928c2ecf20Sopenharmony_ci{ 3938c2ecf20Sopenharmony_ci unsigned int reg; 3948c2ecf20Sopenharmony_ci 3958c2ecf20Sopenharmony_ci /* Make sure PLL2 PFDs 0-2 are gated */ 3968c2ecf20Sopenharmony_ci reg = readl_relaxed(anatop_base + CCM_ANALOG_PFD_528); 3978c2ecf20Sopenharmony_ci /* Cannot gate PFD2 if pll2_pfd2_396m is the parent of MMDC clock */ 3988c2ecf20Sopenharmony_ci if (clk_get_parent(hws[IMX6QDL_CLK_PERIPH_PRE]->clk) == 3998c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_PFD2_396M]->clk) 4008c2ecf20Sopenharmony_ci reg |= PFD0_CLKGATE | PFD1_CLKGATE; 4018c2ecf20Sopenharmony_ci else 4028c2ecf20Sopenharmony_ci reg |= PFD0_CLKGATE | PFD1_CLKGATE | PFD2_CLKGATE; 4038c2ecf20Sopenharmony_ci writel_relaxed(reg, anatop_base + CCM_ANALOG_PFD_528); 4048c2ecf20Sopenharmony_ci 4058c2ecf20Sopenharmony_ci /* Make sure PLL3 PFDs 0-3 are gated */ 4068c2ecf20Sopenharmony_ci reg = readl_relaxed(anatop_base + CCM_ANALOG_PFD_480); 4078c2ecf20Sopenharmony_ci reg |= PFD0_CLKGATE | PFD1_CLKGATE | PFD2_CLKGATE | PFD3_CLKGATE; 4088c2ecf20Sopenharmony_ci writel_relaxed(reg, anatop_base + CCM_ANALOG_PFD_480); 4098c2ecf20Sopenharmony_ci 4108c2ecf20Sopenharmony_ci /* Make sure PLL5 is disabled */ 4118c2ecf20Sopenharmony_ci reg = readl_relaxed(anatop_base + CCM_ANALOG_PLL_VIDEO); 4128c2ecf20Sopenharmony_ci reg &= ~PLL_ENABLE; 4138c2ecf20Sopenharmony_ci writel_relaxed(reg, anatop_base + CCM_ANALOG_PLL_VIDEO); 4148c2ecf20Sopenharmony_ci} 4158c2ecf20Sopenharmony_ci 4168c2ecf20Sopenharmony_cistatic struct clk_hw * __init imx6q_obtain_fixed_clk_hw(struct device_node *np, 4178c2ecf20Sopenharmony_ci const char *name, 4188c2ecf20Sopenharmony_ci unsigned long rate) 4198c2ecf20Sopenharmony_ci{ 4208c2ecf20Sopenharmony_ci struct clk *clk = of_clk_get_by_name(np, name); 4218c2ecf20Sopenharmony_ci struct clk_hw *hw; 4228c2ecf20Sopenharmony_ci 4238c2ecf20Sopenharmony_ci if (IS_ERR(clk)) 4248c2ecf20Sopenharmony_ci hw = imx_obtain_fixed_clock_hw(name, rate); 4258c2ecf20Sopenharmony_ci else 4268c2ecf20Sopenharmony_ci hw = __clk_get_hw(clk); 4278c2ecf20Sopenharmony_ci 4288c2ecf20Sopenharmony_ci return hw; 4298c2ecf20Sopenharmony_ci} 4308c2ecf20Sopenharmony_ci 4318c2ecf20Sopenharmony_cistatic void __init imx6q_clocks_init(struct device_node *ccm_node) 4328c2ecf20Sopenharmony_ci{ 4338c2ecf20Sopenharmony_ci struct device_node *np; 4348c2ecf20Sopenharmony_ci void __iomem *anatop_base, *base; 4358c2ecf20Sopenharmony_ci int ret; 4368c2ecf20Sopenharmony_ci 4378c2ecf20Sopenharmony_ci clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, 4388c2ecf20Sopenharmony_ci IMX6QDL_CLK_END), GFP_KERNEL); 4398c2ecf20Sopenharmony_ci if (WARN_ON(!clk_hw_data)) 4408c2ecf20Sopenharmony_ci return; 4418c2ecf20Sopenharmony_ci 4428c2ecf20Sopenharmony_ci clk_hw_data->num = IMX6QDL_CLK_END; 4438c2ecf20Sopenharmony_ci hws = clk_hw_data->hws; 4448c2ecf20Sopenharmony_ci 4458c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_DUMMY] = imx_clk_hw_fixed("dummy", 0); 4468c2ecf20Sopenharmony_ci 4478c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CKIL] = imx6q_obtain_fixed_clk_hw(ccm_node, "ckil", 0); 4488c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CKIH] = imx6q_obtain_fixed_clk_hw(ccm_node, "ckih1", 0); 4498c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_OSC] = imx6q_obtain_fixed_clk_hw(ccm_node, "osc", 0); 4508c2ecf20Sopenharmony_ci 4518c2ecf20Sopenharmony_ci /* Clock source from external clock via CLK1/2 PADs */ 4528c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ANACLK1] = imx6q_obtain_fixed_clk_hw(ccm_node, "anaclk1", 0); 4538c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ANACLK2] = imx6q_obtain_fixed_clk_hw(ccm_node, "anaclk2", 0); 4548c2ecf20Sopenharmony_ci 4558c2ecf20Sopenharmony_ci np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop"); 4568c2ecf20Sopenharmony_ci anatop_base = base = of_iomap(np, 0); 4578c2ecf20Sopenharmony_ci WARN_ON(!base); 4588c2ecf20Sopenharmony_ci of_node_put(np); 4598c2ecf20Sopenharmony_ci 4608c2ecf20Sopenharmony_ci /* Audio/video PLL post dividers do not work on i.MX6q revision 1.0 */ 4618c2ecf20Sopenharmony_ci if (clk_on_imx6q() && imx_get_soc_revision() == IMX_CHIP_REVISION_1_0) { 4628c2ecf20Sopenharmony_ci post_div_table[1].div = 1; 4638c2ecf20Sopenharmony_ci post_div_table[2].div = 1; 4648c2ecf20Sopenharmony_ci video_div_table[1].div = 1; 4658c2ecf20Sopenharmony_ci video_div_table[3].div = 1; 4668c2ecf20Sopenharmony_ci } 4678c2ecf20Sopenharmony_ci 4688c2ecf20Sopenharmony_ci hws[IMX6QDL_PLL1_BYPASS_SRC] = imx_clk_hw_mux("pll1_bypass_src", base + 0x00, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 4698c2ecf20Sopenharmony_ci hws[IMX6QDL_PLL2_BYPASS_SRC] = imx_clk_hw_mux("pll2_bypass_src", base + 0x30, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 4708c2ecf20Sopenharmony_ci hws[IMX6QDL_PLL3_BYPASS_SRC] = imx_clk_hw_mux("pll3_bypass_src", base + 0x10, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 4718c2ecf20Sopenharmony_ci hws[IMX6QDL_PLL4_BYPASS_SRC] = imx_clk_hw_mux("pll4_bypass_src", base + 0x70, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 4728c2ecf20Sopenharmony_ci hws[IMX6QDL_PLL5_BYPASS_SRC] = imx_clk_hw_mux("pll5_bypass_src", base + 0xa0, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 4738c2ecf20Sopenharmony_ci hws[IMX6QDL_PLL6_BYPASS_SRC] = imx_clk_hw_mux("pll6_bypass_src", base + 0xe0, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 4748c2ecf20Sopenharmony_ci hws[IMX6QDL_PLL7_BYPASS_SRC] = imx_clk_hw_mux("pll7_bypass_src", base + 0x20, 14, 2, pll_bypass_src_sels, ARRAY_SIZE(pll_bypass_src_sels)); 4758c2ecf20Sopenharmony_ci 4768c2ecf20Sopenharmony_ci /* type name parent_name base div_mask */ 4778c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL1] = imx_clk_hw_pllv3(IMX_PLLV3_SYS, "pll1", "osc", base + 0x00, 0x7f); 4788c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2] = imx_clk_hw_pllv3(IMX_PLLV3_GENERIC, "pll2", "osc", base + 0x30, 0x1); 4798c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3] = imx_clk_hw_pllv3(IMX_PLLV3_USB, "pll3", "osc", base + 0x10, 0x3); 4808c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL4] = imx_clk_hw_pllv3(IMX_PLLV3_AV, "pll4", "osc", base + 0x70, 0x7f); 4818c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL5] = imx_clk_hw_pllv3(IMX_PLLV3_AV, "pll5", "osc", base + 0xa0, 0x7f); 4828c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL6] = imx_clk_hw_pllv3(IMX_PLLV3_ENET, "pll6", "osc", base + 0xe0, 0x3); 4838c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL7] = imx_clk_hw_pllv3(IMX_PLLV3_USB, "pll7", "osc", base + 0x20, 0x3); 4848c2ecf20Sopenharmony_ci 4858c2ecf20Sopenharmony_ci hws[IMX6QDL_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); 4868c2ecf20Sopenharmony_ci hws[IMX6QDL_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); 4878c2ecf20Sopenharmony_ci hws[IMX6QDL_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); 4888c2ecf20Sopenharmony_ci hws[IMX6QDL_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); 4898c2ecf20Sopenharmony_ci hws[IMX6QDL_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); 4908c2ecf20Sopenharmony_ci hws[IMX6QDL_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); 4918c2ecf20Sopenharmony_ci hws[IMX6QDL_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); 4928c2ecf20Sopenharmony_ci 4938c2ecf20Sopenharmony_ci /* Do not bypass PLLs initially */ 4948c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_PLL1_BYPASS]->clk, hws[IMX6QDL_CLK_PLL1]->clk); 4958c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_PLL2_BYPASS]->clk, hws[IMX6QDL_CLK_PLL2]->clk); 4968c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_PLL3_BYPASS]->clk, hws[IMX6QDL_CLK_PLL3]->clk); 4978c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_PLL4_BYPASS]->clk, hws[IMX6QDL_CLK_PLL4]->clk); 4988c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_PLL5_BYPASS]->clk, hws[IMX6QDL_CLK_PLL5]->clk); 4998c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_PLL6_BYPASS]->clk, hws[IMX6QDL_CLK_PLL6]->clk); 5008c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_PLL7_BYPASS]->clk, hws[IMX6QDL_CLK_PLL7]->clk); 5018c2ecf20Sopenharmony_ci 5028c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL1_SYS] = imx_clk_hw_gate("pll1_sys", "pll1_bypass", base + 0x00, 13); 5038c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_BUS] = imx_clk_hw_gate("pll2_bus", "pll2_bypass", base + 0x30, 13); 5048c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_USB_OTG] = imx_clk_hw_gate("pll3_usb_otg", "pll3_bypass", base + 0x10, 13); 5058c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL4_AUDIO] = imx_clk_hw_gate("pll4_audio", "pll4_bypass", base + 0x70, 13); 5068c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL5_VIDEO] = imx_clk_hw_gate("pll5_video", "pll5_bypass", base + 0xa0, 13); 5078c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL6_ENET] = imx_clk_hw_gate("pll6_enet", "pll6_bypass", base + 0xe0, 13); 5088c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL7_USB_HOST] = imx_clk_hw_gate("pll7_usb_host", "pll7_bypass", base + 0x20, 13); 5098c2ecf20Sopenharmony_ci 5108c2ecf20Sopenharmony_ci /* 5118c2ecf20Sopenharmony_ci * Bit 20 is the reserved and read-only bit, we do this only for: 5128c2ecf20Sopenharmony_ci * - Do nothing for usbphy clk_enable/disable 5138c2ecf20Sopenharmony_ci * - Keep refcount when do usbphy clk_enable/disable, in that case, 5148c2ecf20Sopenharmony_ci * the clk framework may need to enable/disable usbphy's parent 5158c2ecf20Sopenharmony_ci */ 5168c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USBPHY1] = imx_clk_hw_gate("usbphy1", "pll3_usb_otg", base + 0x10, 20); 5178c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USBPHY2] = imx_clk_hw_gate("usbphy2", "pll7_usb_host", base + 0x20, 20); 5188c2ecf20Sopenharmony_ci 5198c2ecf20Sopenharmony_ci /* 5208c2ecf20Sopenharmony_ci * usbphy*_gate needs to be on after system boots up, and software 5218c2ecf20Sopenharmony_ci * never needs to control it anymore. 5228c2ecf20Sopenharmony_ci */ 5238c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USBPHY1_GATE] = imx_clk_hw_gate("usbphy1_gate", "dummy", base + 0x10, 6); 5248c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USBPHY2_GATE] = imx_clk_hw_gate("usbphy2_gate", "dummy", base + 0x20, 6); 5258c2ecf20Sopenharmony_ci 5268c2ecf20Sopenharmony_ci /* 5278c2ecf20Sopenharmony_ci * The ENET PLL is special in that is has multiple outputs with 5288c2ecf20Sopenharmony_ci * different post-dividers that are all affected by the single bypass 5298c2ecf20Sopenharmony_ci * bit, so a single mux bit affects 3 independent branches of the clock 5308c2ecf20Sopenharmony_ci * tree. There is no good way to model this in the clock framework and 5318c2ecf20Sopenharmony_ci * dynamically changing the bypass bit, will yield unexpected results. 5328c2ecf20Sopenharmony_ci * So we treat any configuration that bypasses the ENET PLL as 5338c2ecf20Sopenharmony_ci * essentially static with the divider ratios reflecting the bypass 5348c2ecf20Sopenharmony_ci * status. 5358c2ecf20Sopenharmony_ci * 5368c2ecf20Sopenharmony_ci */ 5378c2ecf20Sopenharmony_ci if (!pll6_bypassed(ccm_node)) { 5388c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SATA_REF] = imx_clk_hw_fixed_factor("sata_ref", "pll6_enet", 1, 5); 5398c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PCIE_REF] = imx_clk_hw_fixed_factor("pcie_ref", "pll6_enet", 1, 4); 5408c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ENET_REF] = clk_hw_register_divider_table(NULL, "enet_ref", "pll6_enet", 0, 5418c2ecf20Sopenharmony_ci base + 0xe0, 0, 2, 0, clk_enet_ref_table, 5428c2ecf20Sopenharmony_ci &imx_ccm_lock); 5438c2ecf20Sopenharmony_ci } else { 5448c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SATA_REF] = imx_clk_hw_fixed_factor("sata_ref", "pll6_enet", 1, 1); 5458c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PCIE_REF] = imx_clk_hw_fixed_factor("pcie_ref", "pll6_enet", 1, 1); 5468c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ENET_REF] = imx_clk_hw_fixed_factor("enet_ref", "pll6_enet", 1, 1); 5478c2ecf20Sopenharmony_ci } 5488c2ecf20Sopenharmony_ci 5498c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SATA_REF_100M] = imx_clk_hw_gate("sata_ref_100m", "sata_ref", base + 0xe0, 20); 5508c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PCIE_REF_125M] = imx_clk_hw_gate("pcie_ref_125m", "pcie_ref", base + 0xe0, 19); 5518c2ecf20Sopenharmony_ci 5528c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LVDS1_SEL] = imx_clk_hw_mux("lvds1_sel", base + 0x160, 0, 5, lvds_sels, ARRAY_SIZE(lvds_sels)); 5538c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LVDS2_SEL] = imx_clk_hw_mux("lvds2_sel", base + 0x160, 5, 5, lvds_sels, ARRAY_SIZE(lvds_sels)); 5548c2ecf20Sopenharmony_ci 5558c2ecf20Sopenharmony_ci /* 5568c2ecf20Sopenharmony_ci * lvds1_gate and lvds2_gate are pseudo-gates. Both can be 5578c2ecf20Sopenharmony_ci * independently configured as clock inputs or outputs. We treat 5588c2ecf20Sopenharmony_ci * the "output_enable" bit as a gate, even though it's really just 5598c2ecf20Sopenharmony_ci * enabling clock output. Initially the gate bits are cleared, as 5608c2ecf20Sopenharmony_ci * otherwise the exclusive configuration gets locked in the setup done 5618c2ecf20Sopenharmony_ci * by software running before the clock driver, with no way to change 5628c2ecf20Sopenharmony_ci * it. 5638c2ecf20Sopenharmony_ci */ 5648c2ecf20Sopenharmony_ci writel(readl(base + 0x160) & ~0x3c00, base + 0x160); 5658c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LVDS1_GATE] = imx_clk_hw_gate_exclusive("lvds1_gate", "lvds1_sel", base + 0x160, 10, BIT(12)); 5668c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LVDS2_GATE] = imx_clk_hw_gate_exclusive("lvds2_gate", "lvds2_sel", base + 0x160, 11, BIT(13)); 5678c2ecf20Sopenharmony_ci 5688c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LVDS1_IN] = imx_clk_hw_gate_exclusive("lvds1_in", "anaclk1", base + 0x160, 12, BIT(10)); 5698c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LVDS2_IN] = imx_clk_hw_gate_exclusive("lvds2_in", "anaclk2", base + 0x160, 13, BIT(11)); 5708c2ecf20Sopenharmony_ci 5718c2ecf20Sopenharmony_ci /* name parent_name reg idx */ 5728c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_PFD0_352M] = imx_clk_hw_pfd("pll2_pfd0_352m", "pll2_bus", base + 0x100, 0); 5738c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_PFD1_594M] = imx_clk_hw_pfd("pll2_pfd1_594m", "pll2_bus", base + 0x100, 1); 5748c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_PFD2_396M] = imx_clk_hw_pfd("pll2_pfd2_396m", "pll2_bus", base + 0x100, 2); 5758c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_PFD0_720M] = imx_clk_hw_pfd("pll3_pfd0_720m", "pll3_usb_otg", base + 0xf0, 0); 5768c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_PFD1_540M] = imx_clk_hw_pfd("pll3_pfd1_540m", "pll3_usb_otg", base + 0xf0, 1); 5778c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_PFD2_508M] = imx_clk_hw_pfd("pll3_pfd2_508m", "pll3_usb_otg", base + 0xf0, 2); 5788c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_PFD3_454M] = imx_clk_hw_pfd("pll3_pfd3_454m", "pll3_usb_otg", base + 0xf0, 3); 5798c2ecf20Sopenharmony_ci 5808c2ecf20Sopenharmony_ci /* name parent_name mult div */ 5818c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_198M] = imx_clk_hw_fixed_factor("pll2_198m", "pll2_pfd2_396m", 1, 2); 5828c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_120M] = imx_clk_hw_fixed_factor("pll3_120m", "pll3_usb_otg", 1, 4); 5838c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_80M] = imx_clk_hw_fixed_factor("pll3_80m", "pll3_usb_otg", 1, 6); 5848c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_60M] = imx_clk_hw_fixed_factor("pll3_60m", "pll3_usb_otg", 1, 8); 5858c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_TWD] = imx_clk_hw_fixed_factor("twd", "arm", 1, 2); 5868c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPT_3M] = imx_clk_hw_fixed_factor("gpt_3m", "osc", 1, 8); 5878c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_VIDEO_27M] = imx_clk_hw_fixed_factor("video_27m", "pll3_pfd1_540m", 1, 20); 5888c2ecf20Sopenharmony_ci if (clk_on_imx6dl() || clk_on_imx6qp()) { 5898c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU2D_AXI] = imx_clk_hw_fixed_factor("gpu2d_axi", "mmdc_ch0_axi_podf", 1, 1); 5908c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU3D_AXI] = imx_clk_hw_fixed_factor("gpu3d_axi", "mmdc_ch0_axi_podf", 1, 1); 5918c2ecf20Sopenharmony_ci } 5928c2ecf20Sopenharmony_ci 5938c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL4_POST_DIV] = clk_hw_register_divider_table(NULL, "pll4_post_div", "pll4_audio", CLK_SET_RATE_PARENT, base + 0x70, 19, 2, 0, post_div_table, &imx_ccm_lock); 5948c2ecf20Sopenharmony_ci if (clk_on_imx6q() || clk_on_imx6qp()) 5958c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL4_AUDIO_DIV] = imx_clk_hw_fixed_factor("pll4_audio_div", "pll4_post_div", 1, 1); 5968c2ecf20Sopenharmony_ci else 5978c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL4_AUDIO_DIV] = clk_hw_register_divider(NULL, "pll4_audio_div", "pll4_post_div", CLK_SET_RATE_PARENT, base + 0x170, 15, 1, 0, &imx_ccm_lock); 5988c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL5_POST_DIV] = clk_hw_register_divider_table(NULL, "pll5_post_div", "pll5_video", CLK_SET_RATE_PARENT, base + 0xa0, 19, 2, 0, post_div_table, &imx_ccm_lock); 5998c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL5_VIDEO_DIV] = clk_hw_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); 6008c2ecf20Sopenharmony_ci 6018c2ecf20Sopenharmony_ci np = ccm_node; 6028c2ecf20Sopenharmony_ci base = of_iomap(np, 0); 6038c2ecf20Sopenharmony_ci WARN_ON(!base); 6048c2ecf20Sopenharmony_ci 6058c2ecf20Sopenharmony_ci /* name reg shift width parent_names num_parents */ 6068c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_STEP] = imx_clk_hw_mux("step", base + 0xc, 8, 1, step_sels, ARRAY_SIZE(step_sels)); 6078c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL1_SW] = imx_clk_hw_mux("pll1_sw", base + 0xc, 2, 1, pll1_sw_sels, ARRAY_SIZE(pll1_sw_sels)); 6088c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PERIPH_PRE] = imx_clk_hw_mux("periph_pre", base + 0x18, 18, 2, periph_pre_sels, ARRAY_SIZE(periph_pre_sels)); 6098c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PERIPH2_PRE] = imx_clk_hw_mux("periph2_pre", base + 0x18, 21, 2, periph_pre_sels, ARRAY_SIZE(periph_pre_sels)); 6108c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PERIPH_CLK2_SEL] = imx_clk_hw_mux("periph_clk2_sel", base + 0x18, 12, 2, periph_clk2_sels, ARRAY_SIZE(periph_clk2_sels)); 6118c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PERIPH2_CLK2_SEL] = imx_clk_hw_mux("periph2_clk2_sel", base + 0x18, 20, 1, periph2_clk2_sels, ARRAY_SIZE(periph2_clk2_sels)); 6128c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_AXI_SEL] = imx_clk_hw_mux("axi_sel", base + 0x14, 6, 2, axi_sels, ARRAY_SIZE(axi_sels)); 6138c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ESAI_SEL] = imx_clk_hw_mux("esai_sel", base + 0x20, 19, 2, audio_sels, ARRAY_SIZE(audio_sels)); 6148c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ASRC_SEL] = imx_clk_hw_mux("asrc_sel", base + 0x30, 7, 2, audio_sels, ARRAY_SIZE(audio_sels)); 6158c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SPDIF_SEL] = imx_clk_hw_mux("spdif_sel", base + 0x30, 20, 2, audio_sels, ARRAY_SIZE(audio_sels)); 6168c2ecf20Sopenharmony_ci if (clk_on_imx6q()) { 6178c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU2D_AXI] = imx_clk_hw_mux("gpu2d_axi", base + 0x18, 0, 1, gpu_axi_sels, ARRAY_SIZE(gpu_axi_sels)); 6188c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU3D_AXI] = imx_clk_hw_mux("gpu3d_axi", base + 0x18, 1, 1, gpu_axi_sels, ARRAY_SIZE(gpu_axi_sels)); 6198c2ecf20Sopenharmony_ci } 6208c2ecf20Sopenharmony_ci if (clk_on_imx6qp()) { 6218c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAN_SEL] = imx_clk_hw_mux("can_sel", base + 0x20, 8, 2, can_sels, ARRAY_SIZE(can_sels)); 6228c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ECSPI_SEL] = imx_clk_hw_mux("ecspi_sel", base + 0x38, 18, 1, ecspi_sels, ARRAY_SIZE(ecspi_sels)); 6238c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPG_PER_SEL] = imx_clk_hw_mux("ipg_per_sel", base + 0x1c, 6, 1, ipg_per_sels, ARRAY_SIZE(ipg_per_sels)); 6248c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_UART_SEL] = imx_clk_hw_mux("uart_sel", base + 0x24, 6, 1, uart_sels, ARRAY_SIZE(uart_sels)); 6258c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU2D_CORE_SEL] = imx_clk_hw_mux("gpu2d_core_sel", base + 0x18, 16, 2, gpu2d_core_sels_2, ARRAY_SIZE(gpu2d_core_sels_2)); 6268c2ecf20Sopenharmony_ci } else if (clk_on_imx6dl()) { 6278c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MLB_SEL] = imx_clk_hw_mux("mlb_sel", base + 0x18, 16, 2, gpu2d_core_sels, ARRAY_SIZE(gpu2d_core_sels)); 6288c2ecf20Sopenharmony_ci } else { 6298c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU2D_CORE_SEL] = imx_clk_hw_mux("gpu2d_core_sel", base + 0x18, 16, 2, gpu2d_core_sels, ARRAY_SIZE(gpu2d_core_sels)); 6308c2ecf20Sopenharmony_ci } 6318c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU3D_CORE_SEL] = imx_clk_hw_mux("gpu3d_core_sel", base + 0x18, 4, 2, gpu3d_core_sels, ARRAY_SIZE(gpu3d_core_sels)); 6328c2ecf20Sopenharmony_ci if (clk_on_imx6dl()) 6338c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU2D_CORE_SEL] = imx_clk_hw_mux("gpu2d_core_sel", base + 0x18, 8, 2, gpu3d_shader_sels, ARRAY_SIZE(gpu3d_shader_sels)); 6348c2ecf20Sopenharmony_ci else 6358c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU3D_SHADER_SEL] = imx_clk_hw_mux("gpu3d_shader_sel", base + 0x18, 8, 2, gpu3d_shader_sels, ARRAY_SIZE(gpu3d_shader_sels)); 6368c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_SEL] = imx_clk_hw_mux("ipu1_sel", base + 0x3c, 9, 2, ipu_sels, ARRAY_SIZE(ipu_sels)); 6378c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_SEL] = imx_clk_hw_mux("ipu2_sel", base + 0x3c, 14, 2, ipu_sels, ARRAY_SIZE(ipu_sels)); 6388c2ecf20Sopenharmony_ci 6398c2ecf20Sopenharmony_ci disable_anatop_clocks(anatop_base); 6408c2ecf20Sopenharmony_ci 6418c2ecf20Sopenharmony_ci imx_mmdc_mask_handshake(base, 1); 6428c2ecf20Sopenharmony_ci 6438c2ecf20Sopenharmony_ci if (clk_on_imx6qp()) { 6448c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI0_SEL] = imx_clk_hw_mux_flags("ldb_di0_sel", base + 0x2c, 9, 3, ldb_di_sels, ARRAY_SIZE(ldb_di_sels), CLK_SET_RATE_PARENT); 6458c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI1_SEL] = imx_clk_hw_mux_flags("ldb_di1_sel", base + 0x2c, 12, 3, ldb_di_sels, ARRAY_SIZE(ldb_di_sels), CLK_SET_RATE_PARENT); 6468c2ecf20Sopenharmony_ci } else { 6478c2ecf20Sopenharmony_ci /* 6488c2ecf20Sopenharmony_ci * The LDB_DI0/1_SEL muxes are registered read-only due to a hardware 6498c2ecf20Sopenharmony_ci * bug. Set the muxes to the requested values before registering the 6508c2ecf20Sopenharmony_ci * ldb_di_sel clocks. 6518c2ecf20Sopenharmony_ci */ 6528c2ecf20Sopenharmony_ci init_ldb_clks(np, base); 6538c2ecf20Sopenharmony_ci 6548c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI0_SEL] = imx_clk_hw_mux_ldb("ldb_di0_sel", base + 0x2c, 9, 3, ldb_di_sels, ARRAY_SIZE(ldb_di_sels)); 6558c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI1_SEL] = imx_clk_hw_mux_ldb("ldb_di1_sel", base + 0x2c, 12, 3, ldb_di_sels, ARRAY_SIZE(ldb_di_sels)); 6568c2ecf20Sopenharmony_ci } 6578c2ecf20Sopenharmony_ci 6588c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI0_PRE_SEL] = imx_clk_hw_mux_flags("ipu1_di0_pre_sel", base + 0x34, 6, 3, ipu_di_pre_sels, ARRAY_SIZE(ipu_di_pre_sels), CLK_SET_RATE_PARENT); 6598c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI1_PRE_SEL] = imx_clk_hw_mux_flags("ipu1_di1_pre_sel", base + 0x34, 15, 3, ipu_di_pre_sels, ARRAY_SIZE(ipu_di_pre_sels), CLK_SET_RATE_PARENT); 6608c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI0_PRE_SEL] = imx_clk_hw_mux_flags("ipu2_di0_pre_sel", base + 0x38, 6, 3, ipu_di_pre_sels, ARRAY_SIZE(ipu_di_pre_sels), CLK_SET_RATE_PARENT); 6618c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI1_PRE_SEL] = imx_clk_hw_mux_flags("ipu2_di1_pre_sel", base + 0x38, 15, 3, ipu_di_pre_sels, ARRAY_SIZE(ipu_di_pre_sels), CLK_SET_RATE_PARENT); 6628c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_HSI_TX_SEL] = imx_clk_hw_mux("hsi_tx_sel", base + 0x30, 28, 1, hsi_tx_sels, ARRAY_SIZE(hsi_tx_sels)); 6638c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PCIE_AXI_SEL] = imx_clk_hw_mux("pcie_axi_sel", base + 0x18, 10, 1, pcie_axi_sels, ARRAY_SIZE(pcie_axi_sels)); 6648c2ecf20Sopenharmony_ci 6658c2ecf20Sopenharmony_ci if (clk_on_imx6qp()) { 6668c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI0_SEL] = imx_clk_hw_mux_flags("ipu1_di0_sel", base + 0x34, 0, 3, ipu1_di0_sels_2, ARRAY_SIZE(ipu1_di0_sels_2), CLK_SET_RATE_PARENT); 6678c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI1_SEL] = imx_clk_hw_mux_flags("ipu1_di1_sel", base + 0x34, 9, 3, ipu1_di1_sels_2, ARRAY_SIZE(ipu1_di1_sels_2), CLK_SET_RATE_PARENT); 6688c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI0_SEL] = imx_clk_hw_mux_flags("ipu2_di0_sel", base + 0x38, 0, 3, ipu2_di0_sels_2, ARRAY_SIZE(ipu2_di0_sels_2), CLK_SET_RATE_PARENT); 6698c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI1_SEL] = imx_clk_hw_mux_flags("ipu2_di1_sel", base + 0x38, 9, 3, ipu2_di1_sels_2, ARRAY_SIZE(ipu2_di1_sels_2), CLK_SET_RATE_PARENT); 6708c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI1_SEL] = imx_clk_hw_mux("ssi1_sel", base + 0x1c, 10, 2, ssi_sels, ARRAY_SIZE(ssi_sels)); 6718c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI2_SEL] = imx_clk_hw_mux("ssi2_sel", base + 0x1c, 12, 2, ssi_sels, ARRAY_SIZE(ssi_sels)); 6728c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI3_SEL] = imx_clk_hw_mux("ssi3_sel", base + 0x1c, 14, 2, ssi_sels, ARRAY_SIZE(ssi_sels)); 6738c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC1_SEL] = imx_clk_hw_mux("usdhc1_sel", base + 0x1c, 16, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels)); 6748c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC2_SEL] = imx_clk_hw_mux("usdhc2_sel", base + 0x1c, 17, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels)); 6758c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC3_SEL] = imx_clk_hw_mux("usdhc3_sel", base + 0x1c, 18, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels)); 6768c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC4_SEL] = imx_clk_hw_mux("usdhc4_sel", base + 0x1c, 19, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels)); 6778c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ENFC_SEL] = imx_clk_hw_mux("enfc_sel", base + 0x2c, 15, 3, enfc_sels_2, ARRAY_SIZE(enfc_sels_2)); 6788c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EIM_SEL] = imx_clk_hw_mux("eim_sel", base + 0x1c, 27, 2, eim_sels, ARRAY_SIZE(eim_sels)); 6798c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EIM_SLOW_SEL] = imx_clk_hw_mux("eim_slow_sel", base + 0x1c, 29, 2, eim_slow_sels, ARRAY_SIZE(eim_slow_sels)); 6808c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PRE_AXI] = imx_clk_hw_mux("pre_axi", base + 0x18, 1, 1, pre_axi_sels, ARRAY_SIZE(pre_axi_sels)); 6818c2ecf20Sopenharmony_ci } else { 6828c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI0_SEL] = imx_clk_hw_mux_flags("ipu1_di0_sel", base + 0x34, 0, 3, ipu1_di0_sels, ARRAY_SIZE(ipu1_di0_sels), CLK_SET_RATE_PARENT); 6838c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI1_SEL] = imx_clk_hw_mux_flags("ipu1_di1_sel", base + 0x34, 9, 3, ipu1_di1_sels, ARRAY_SIZE(ipu1_di1_sels), CLK_SET_RATE_PARENT); 6848c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI0_SEL] = imx_clk_hw_mux_flags("ipu2_di0_sel", base + 0x38, 0, 3, ipu2_di0_sels, ARRAY_SIZE(ipu2_di0_sels), CLK_SET_RATE_PARENT); 6858c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI1_SEL] = imx_clk_hw_mux_flags("ipu2_di1_sel", base + 0x38, 9, 3, ipu2_di1_sels, ARRAY_SIZE(ipu2_di1_sels), CLK_SET_RATE_PARENT); 6868c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI1_SEL] = imx_clk_hw_fixup_mux("ssi1_sel", base + 0x1c, 10, 2, ssi_sels, ARRAY_SIZE(ssi_sels), imx_cscmr1_fixup); 6878c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI2_SEL] = imx_clk_hw_fixup_mux("ssi2_sel", base + 0x1c, 12, 2, ssi_sels, ARRAY_SIZE(ssi_sels), imx_cscmr1_fixup); 6888c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI3_SEL] = imx_clk_hw_fixup_mux("ssi3_sel", base + 0x1c, 14, 2, ssi_sels, ARRAY_SIZE(ssi_sels), imx_cscmr1_fixup); 6898c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC1_SEL] = imx_clk_hw_fixup_mux("usdhc1_sel", base + 0x1c, 16, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels), imx_cscmr1_fixup); 6908c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC2_SEL] = imx_clk_hw_fixup_mux("usdhc2_sel", base + 0x1c, 17, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels), imx_cscmr1_fixup); 6918c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC3_SEL] = imx_clk_hw_fixup_mux("usdhc3_sel", base + 0x1c, 18, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels), imx_cscmr1_fixup); 6928c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC4_SEL] = imx_clk_hw_fixup_mux("usdhc4_sel", base + 0x1c, 19, 1, usdhc_sels, ARRAY_SIZE(usdhc_sels), imx_cscmr1_fixup); 6938c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ENFC_SEL] = imx_clk_hw_mux("enfc_sel", base + 0x2c, 16, 2, enfc_sels, ARRAY_SIZE(enfc_sels)); 6948c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EIM_SEL] = imx_clk_hw_fixup_mux("eim_sel", base + 0x1c, 27, 2, eim_sels, ARRAY_SIZE(eim_sels), imx_cscmr1_fixup); 6958c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EIM_SLOW_SEL] = imx_clk_hw_fixup_mux("eim_slow_sel", base + 0x1c, 29, 2, eim_slow_sels, ARRAY_SIZE(eim_slow_sels), imx_cscmr1_fixup); 6968c2ecf20Sopenharmony_ci } 6978c2ecf20Sopenharmony_ci 6988c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_VDO_AXI_SEL] = imx_clk_hw_mux("vdo_axi_sel", base + 0x18, 11, 1, vdo_axi_sels, ARRAY_SIZE(vdo_axi_sels)); 6998c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_VPU_AXI_SEL] = imx_clk_hw_mux("vpu_axi_sel", base + 0x18, 14, 2, vpu_axi_sels, ARRAY_SIZE(vpu_axi_sels)); 7008c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CKO1_SEL] = imx_clk_hw_mux("cko1_sel", base + 0x60, 0, 4, cko1_sels, ARRAY_SIZE(cko1_sels)); 7018c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CKO2_SEL] = imx_clk_hw_mux("cko2_sel", base + 0x60, 16, 5, cko2_sels, ARRAY_SIZE(cko2_sels)); 7028c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CKO] = imx_clk_hw_mux("cko", base + 0x60, 8, 1, cko_sels, ARRAY_SIZE(cko_sels)); 7038c2ecf20Sopenharmony_ci 7048c2ecf20Sopenharmony_ci /* name reg shift width busy: reg, shift parent_names num_parents */ 7058c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PERIPH] = imx_clk_hw_busy_mux("periph", base + 0x14, 25, 1, base + 0x48, 5, periph_sels, ARRAY_SIZE(periph_sels)); 7068c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PERIPH2] = imx_clk_hw_busy_mux("periph2", base + 0x14, 26, 1, base + 0x48, 3, periph2_sels, ARRAY_SIZE(periph2_sels)); 7078c2ecf20Sopenharmony_ci 7088c2ecf20Sopenharmony_ci /* name parent_name reg shift width */ 7098c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PERIPH_CLK2] = imx_clk_hw_divider("periph_clk2", "periph_clk2_sel", base + 0x14, 27, 3); 7108c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PERIPH2_CLK2] = imx_clk_hw_divider("periph2_clk2", "periph2_clk2_sel", base + 0x14, 0, 3); 7118c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPG] = imx_clk_hw_divider("ipg", "ahb", base + 0x14, 8, 2); 7128c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ESAI_PRED] = imx_clk_hw_divider("esai_pred", "esai_sel", base + 0x28, 9, 3); 7138c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ESAI_PODF] = imx_clk_hw_divider("esai_podf", "esai_pred", base + 0x28, 25, 3); 7148c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ASRC_PRED] = imx_clk_hw_divider("asrc_pred", "asrc_sel", base + 0x30, 12, 3); 7158c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ASRC_PODF] = imx_clk_hw_divider("asrc_podf", "asrc_pred", base + 0x30, 9, 3); 7168c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SPDIF_PRED] = imx_clk_hw_divider("spdif_pred", "spdif_sel", base + 0x30, 25, 3); 7178c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SPDIF_PODF] = imx_clk_hw_divider("spdif_podf", "spdif_pred", base + 0x30, 22, 3); 7188c2ecf20Sopenharmony_ci 7198c2ecf20Sopenharmony_ci if (clk_on_imx6qp()) { 7208c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPG_PER] = imx_clk_hw_divider("ipg_per", "ipg_per_sel", base + 0x1c, 0, 6); 7218c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ECSPI_ROOT] = imx_clk_hw_divider("ecspi_root", "ecspi_sel", base + 0x38, 19, 6); 7228c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAN_ROOT] = imx_clk_hw_divider("can_root", "can_sel", base + 0x20, 2, 6); 7238c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_UART_SERIAL_PODF] = imx_clk_hw_divider("uart_serial_podf", "uart_sel", base + 0x24, 0, 6); 7248c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI0_DIV_3_5] = imx_clk_hw_fixed_factor("ldb_di0_div_3_5", "ldb_di0", 2, 7); 7258c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI1_DIV_3_5] = imx_clk_hw_fixed_factor("ldb_di1_div_3_5", "ldb_di1", 2, 7); 7268c2ecf20Sopenharmony_ci } else { 7278c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ECSPI_ROOT] = imx_clk_hw_divider("ecspi_root", "pll3_60m", base + 0x38, 19, 6); 7288c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAN_ROOT] = imx_clk_hw_divider("can_root", "pll3_60m", base + 0x20, 2, 6); 7298c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPG_PER] = imx_clk_hw_fixup_divider("ipg_per", "ipg", base + 0x1c, 0, 6, imx_cscmr1_fixup); 7308c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_UART_SERIAL_PODF] = imx_clk_hw_divider("uart_serial_podf", "pll3_80m", base + 0x24, 0, 6); 7318c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI0_DIV_3_5] = imx_clk_hw_fixed_factor("ldb_di0_div_3_5", "ldb_di0_sel", 2, 7); 7328c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI1_DIV_3_5] = imx_clk_hw_fixed_factor("ldb_di1_div_3_5", "ldb_di1_sel", 2, 7); 7338c2ecf20Sopenharmony_ci } 7348c2ecf20Sopenharmony_ci 7358c2ecf20Sopenharmony_ci if (clk_on_imx6dl()) 7368c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MLB_PODF] = imx_clk_hw_divider("mlb_podf", "mlb_sel", base + 0x18, 23, 3); 7378c2ecf20Sopenharmony_ci else 7388c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU2D_CORE_PODF] = imx_clk_hw_divider("gpu2d_core_podf", "gpu2d_core_sel", base + 0x18, 23, 3); 7398c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU3D_CORE_PODF] = imx_clk_hw_divider("gpu3d_core_podf", "gpu3d_core_sel", base + 0x18, 26, 3); 7408c2ecf20Sopenharmony_ci if (clk_on_imx6dl()) 7418c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU2D_CORE_PODF] = imx_clk_hw_divider("gpu2d_core_podf", "gpu2d_core_sel", base + 0x18, 29, 3); 7428c2ecf20Sopenharmony_ci else 7438c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU3D_SHADER] = imx_clk_hw_divider("gpu3d_shader", "gpu3d_shader_sel", base + 0x18, 29, 3); 7448c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_PODF] = imx_clk_hw_divider("ipu1_podf", "ipu1_sel", base + 0x3c, 11, 3); 7458c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_PODF] = imx_clk_hw_divider("ipu2_podf", "ipu2_sel", base + 0x3c, 16, 3); 7468c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI0_PODF] = imx_clk_hw_divider_flags("ldb_di0_podf", "ldb_di0_div_3_5", base + 0x20, 10, 1, 0); 7478c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI1_PODF] = imx_clk_hw_divider_flags("ldb_di1_podf", "ldb_di1_div_3_5", base + 0x20, 11, 1, 0); 7488c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI0_PRE] = imx_clk_hw_divider("ipu1_di0_pre", "ipu1_di0_pre_sel", base + 0x34, 3, 3); 7498c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI1_PRE] = imx_clk_hw_divider("ipu1_di1_pre", "ipu1_di1_pre_sel", base + 0x34, 12, 3); 7508c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI0_PRE] = imx_clk_hw_divider("ipu2_di0_pre", "ipu2_di0_pre_sel", base + 0x38, 3, 3); 7518c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI1_PRE] = imx_clk_hw_divider("ipu2_di1_pre", "ipu2_di1_pre_sel", base + 0x38, 12, 3); 7528c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_HSI_TX_PODF] = imx_clk_hw_divider("hsi_tx_podf", "hsi_tx_sel", base + 0x30, 29, 3); 7538c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI1_PRED] = imx_clk_hw_divider("ssi1_pred", "ssi1_sel", base + 0x28, 6, 3); 7548c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI1_PODF] = imx_clk_hw_divider("ssi1_podf", "ssi1_pred", base + 0x28, 0, 6); 7558c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI2_PRED] = imx_clk_hw_divider("ssi2_pred", "ssi2_sel", base + 0x2c, 6, 3); 7568c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI2_PODF] = imx_clk_hw_divider("ssi2_podf", "ssi2_pred", base + 0x2c, 0, 6); 7578c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI3_PRED] = imx_clk_hw_divider("ssi3_pred", "ssi3_sel", base + 0x28, 22, 3); 7588c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI3_PODF] = imx_clk_hw_divider("ssi3_podf", "ssi3_pred", base + 0x28, 16, 6); 7598c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC1_PODF] = imx_clk_hw_divider("usdhc1_podf", "usdhc1_sel", base + 0x24, 11, 3); 7608c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC2_PODF] = imx_clk_hw_divider("usdhc2_podf", "usdhc2_sel", base + 0x24, 16, 3); 7618c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC3_PODF] = imx_clk_hw_divider("usdhc3_podf", "usdhc3_sel", base + 0x24, 19, 3); 7628c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC4_PODF] = imx_clk_hw_divider("usdhc4_podf", "usdhc4_sel", base + 0x24, 22, 3); 7638c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ENFC_PRED] = imx_clk_hw_divider("enfc_pred", "enfc_sel", base + 0x2c, 18, 3); 7648c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ENFC_PODF] = imx_clk_hw_divider("enfc_podf", "enfc_pred", base + 0x2c, 21, 6); 7658c2ecf20Sopenharmony_ci if (clk_on_imx6qp()) { 7668c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EIM_PODF] = imx_clk_hw_divider("eim_podf", "eim_sel", base + 0x1c, 20, 3); 7678c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EIM_SLOW_PODF] = imx_clk_hw_divider("eim_slow_podf", "eim_slow_sel", base + 0x1c, 23, 3); 7688c2ecf20Sopenharmony_ci } else { 7698c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EIM_PODF] = imx_clk_hw_fixup_divider("eim_podf", "eim_sel", base + 0x1c, 20, 3, imx_cscmr1_fixup); 7708c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EIM_SLOW_PODF] = imx_clk_hw_fixup_divider("eim_slow_podf", "eim_slow_sel", base + 0x1c, 23, 3, imx_cscmr1_fixup); 7718c2ecf20Sopenharmony_ci } 7728c2ecf20Sopenharmony_ci 7738c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_VPU_AXI_PODF] = imx_clk_hw_divider("vpu_axi_podf", "vpu_axi_sel", base + 0x24, 25, 3); 7748c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CKO1_PODF] = imx_clk_hw_divider("cko1_podf", "cko1_sel", base + 0x60, 4, 3); 7758c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CKO2_PODF] = imx_clk_hw_divider("cko2_podf", "cko2_sel", base + 0x60, 21, 3); 7768c2ecf20Sopenharmony_ci 7778c2ecf20Sopenharmony_ci /* name parent_name reg shift width busy: reg, shift */ 7788c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_AXI] = imx_clk_hw_busy_divider("axi", "axi_sel", base + 0x14, 16, 3, base + 0x48, 0); 7798c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MMDC_CH0_AXI_PODF] = imx_clk_hw_busy_divider("mmdc_ch0_axi_podf", "periph", base + 0x14, 19, 3, base + 0x48, 4); 7808c2ecf20Sopenharmony_ci if (clk_on_imx6qp()) { 7818c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MMDC_CH1_AXI_CG] = imx_clk_hw_gate("mmdc_ch1_axi_cg", "periph2", base + 0x4, 18); 7828c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MMDC_CH1_AXI_PODF] = imx_clk_hw_busy_divider("mmdc_ch1_axi_podf", "mmdc_ch1_axi_cg", base + 0x14, 3, 3, base + 0x48, 2); 7838c2ecf20Sopenharmony_ci } else { 7848c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MMDC_CH1_AXI_PODF] = imx_clk_hw_busy_divider("mmdc_ch1_axi_podf", "periph2", base + 0x14, 3, 3, base + 0x48, 2); 7858c2ecf20Sopenharmony_ci } 7868c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ARM] = imx_clk_hw_busy_divider("arm", "pll1_sw", base + 0x10, 0, 3, base + 0x48, 16); 7878c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_AHB] = imx_clk_hw_busy_divider("ahb", "periph", base + 0x14, 10, 3, base + 0x48, 1); 7888c2ecf20Sopenharmony_ci 7898c2ecf20Sopenharmony_ci /* name parent_name reg shift */ 7908c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_APBH_DMA] = imx_clk_hw_gate2("apbh_dma", "usdhc3", base + 0x68, 4); 7918c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ASRC] = imx_clk_hw_gate2_shared("asrc", "asrc_podf", base + 0x68, 6, &share_count_asrc); 7928c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ASRC_IPG] = imx_clk_hw_gate2_shared("asrc_ipg", "ahb", base + 0x68, 6, &share_count_asrc); 7938c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ASRC_MEM] = imx_clk_hw_gate2_shared("asrc_mem", "ahb", base + 0x68, 6, &share_count_asrc); 7948c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAAM_MEM] = imx_clk_hw_gate2("caam_mem", "ahb", base + 0x68, 8); 7958c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAAM_ACLK] = imx_clk_hw_gate2("caam_aclk", "ahb", base + 0x68, 10); 7968c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAAM_IPG] = imx_clk_hw_gate2("caam_ipg", "ipg", base + 0x68, 12); 7978c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAN1_IPG] = imx_clk_hw_gate2("can1_ipg", "ipg", base + 0x68, 14); 7988c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAN1_SERIAL] = imx_clk_hw_gate2("can1_serial", "can_root", base + 0x68, 16); 7998c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAN2_IPG] = imx_clk_hw_gate2("can2_ipg", "ipg", base + 0x68, 18); 8008c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CAN2_SERIAL] = imx_clk_hw_gate2("can2_serial", "can_root", base + 0x68, 20); 8018c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_DCIC1] = imx_clk_hw_gate2("dcic1", "ipu1_podf", base + 0x68, 24); 8028c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_DCIC2] = imx_clk_hw_gate2("dcic2", "ipu2_podf", base + 0x68, 26); 8038c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ECSPI1] = imx_clk_hw_gate2("ecspi1", "ecspi_root", base + 0x6c, 0); 8048c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ECSPI2] = imx_clk_hw_gate2("ecspi2", "ecspi_root", base + 0x6c, 2); 8058c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ECSPI3] = imx_clk_hw_gate2("ecspi3", "ecspi_root", base + 0x6c, 4); 8068c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ECSPI4] = imx_clk_hw_gate2("ecspi4", "ecspi_root", base + 0x6c, 6); 8078c2ecf20Sopenharmony_ci if (clk_on_imx6dl()) 8088c2ecf20Sopenharmony_ci hws[IMX6DL_CLK_I2C4] = imx_clk_hw_gate2("i2c4", "ipg_per", base + 0x6c, 8); 8098c2ecf20Sopenharmony_ci else 8108c2ecf20Sopenharmony_ci hws[IMX6Q_CLK_ECSPI5] = imx_clk_hw_gate2("ecspi5", "ecspi_root", base + 0x6c, 8); 8118c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ENET] = imx_clk_hw_gate2("enet", "ipg", base + 0x6c, 10); 8128c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EPIT1] = imx_clk_hw_gate2("epit1", "ipg", base + 0x6c, 12); 8138c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EPIT2] = imx_clk_hw_gate2("epit2", "ipg", base + 0x6c, 14); 8148c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ESAI_EXTAL] = imx_clk_hw_gate2_shared("esai_extal", "esai_podf", base + 0x6c, 16, &share_count_esai); 8158c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ESAI_IPG] = imx_clk_hw_gate2_shared("esai_ipg", "ahb", base + 0x6c, 16, &share_count_esai); 8168c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ESAI_MEM] = imx_clk_hw_gate2_shared("esai_mem", "ahb", base + 0x6c, 16, &share_count_esai); 8178c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPT_IPG] = imx_clk_hw_gate2("gpt_ipg", "ipg", base + 0x6c, 20); 8188c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPT_IPG_PER] = imx_clk_hw_gate2("gpt_ipg_per", "ipg_per", base + 0x6c, 22); 8198c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU2D_CORE] = imx_clk_hw_gate2("gpu2d_core", "gpu2d_core_podf", base + 0x6c, 24); 8208c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPU3D_CORE] = imx_clk_hw_gate2("gpu3d_core", "gpu3d_core_podf", base + 0x6c, 26); 8218c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_HDMI_IAHB] = imx_clk_hw_gate2("hdmi_iahb", "ahb", base + 0x70, 0); 8228c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_HDMI_ISFR] = imx_clk_hw_gate2("hdmi_isfr", "mipi_core_cfg", base + 0x70, 4); 8238c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_I2C1] = imx_clk_hw_gate2("i2c1", "ipg_per", base + 0x70, 6); 8248c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_I2C2] = imx_clk_hw_gate2("i2c2", "ipg_per", base + 0x70, 8); 8258c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_I2C3] = imx_clk_hw_gate2("i2c3", "ipg_per", base + 0x70, 10); 8268c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IIM] = imx_clk_hw_gate2("iim", "ipg", base + 0x70, 12); 8278c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ENFC] = imx_clk_hw_gate2("enfc", "enfc_podf", base + 0x70, 14); 8288c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_VDOA] = imx_clk_hw_gate2("vdoa", "vdo_axi", base + 0x70, 26); 8298c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1] = imx_clk_hw_gate2("ipu1", "ipu1_podf", base + 0x74, 0); 8308c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI0] = imx_clk_hw_gate2("ipu1_di0", "ipu1_di0_sel", base + 0x74, 2); 8318c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU1_DI1] = imx_clk_hw_gate2("ipu1_di1", "ipu1_di1_sel", base + 0x74, 4); 8328c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2] = imx_clk_hw_gate2("ipu2", "ipu2_podf", base + 0x74, 6); 8338c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI0] = imx_clk_hw_gate2("ipu2_di0", "ipu2_di0_sel", base + 0x74, 8); 8348c2ecf20Sopenharmony_ci if (clk_on_imx6qp()) { 8358c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI0] = imx_clk_hw_gate2("ldb_di0", "ldb_di0_sel", base + 0x74, 12); 8368c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI1] = imx_clk_hw_gate2("ldb_di1", "ldb_di1_sel", base + 0x74, 14); 8378c2ecf20Sopenharmony_ci } else { 8388c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI0] = imx_clk_hw_gate2("ldb_di0", "ldb_di0_podf", base + 0x74, 12); 8398c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_LDB_DI1] = imx_clk_hw_gate2("ldb_di1", "ldb_di1_podf", base + 0x74, 14); 8408c2ecf20Sopenharmony_ci } 8418c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_IPU2_DI1] = imx_clk_hw_gate2("ipu2_di1", "ipu2_di1_sel", base + 0x74, 10); 8428c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_HSI_TX] = imx_clk_hw_gate2_shared("hsi_tx", "hsi_tx_podf", base + 0x74, 16, &share_count_mipi_core_cfg); 8438c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MIPI_CORE_CFG] = imx_clk_hw_gate2_shared("mipi_core_cfg", "video_27m", base + 0x74, 16, &share_count_mipi_core_cfg); 8448c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MIPI_IPG] = imx_clk_hw_gate2_shared("mipi_ipg", "ipg", base + 0x74, 16, &share_count_mipi_core_cfg); 8458c2ecf20Sopenharmony_ci 8468c2ecf20Sopenharmony_ci if (clk_on_imx6dl()) 8478c2ecf20Sopenharmony_ci /* 8488c2ecf20Sopenharmony_ci * The multiplexer and divider of the imx6q clock gpu2d get 8498c2ecf20Sopenharmony_ci * redefined/reused as mlb_sys_sel and mlb_sys_clk_podf on imx6dl. 8508c2ecf20Sopenharmony_ci */ 8518c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MLB] = imx_clk_hw_gate2("mlb", "mlb_podf", base + 0x74, 18); 8528c2ecf20Sopenharmony_ci else 8538c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MLB] = imx_clk_hw_gate2("mlb", "axi", base + 0x74, 18); 8548c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MMDC_CH0_AXI] = imx_clk_hw_gate2_flags("mmdc_ch0_axi", "mmdc_ch0_axi_podf", base + 0x74, 20, CLK_IS_CRITICAL); 8558c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MMDC_CH1_AXI] = imx_clk_hw_gate2("mmdc_ch1_axi", "mmdc_ch1_axi_podf", base + 0x74, 22); 8568c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MMDC_P0_IPG] = imx_clk_hw_gate2_flags("mmdc_p0_ipg", "ipg", base + 0x74, 24, CLK_IS_CRITICAL); 8578c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_OCRAM] = imx_clk_hw_gate2("ocram", "ahb", base + 0x74, 28); 8588c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_OPENVG_AXI] = imx_clk_hw_gate2("openvg_axi", "axi", base + 0x74, 30); 8598c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PCIE_AXI] = imx_clk_hw_gate2("pcie_axi", "pcie_axi_sel", base + 0x78, 0); 8608c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PER1_BCH] = imx_clk_hw_gate2("per1_bch", "usdhc3", base + 0x78, 12); 8618c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PWM1] = imx_clk_hw_gate2("pwm1", "ipg_per", base + 0x78, 16); 8628c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PWM2] = imx_clk_hw_gate2("pwm2", "ipg_per", base + 0x78, 18); 8638c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PWM3] = imx_clk_hw_gate2("pwm3", "ipg_per", base + 0x78, 20); 8648c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PWM4] = imx_clk_hw_gate2("pwm4", "ipg_per", base + 0x78, 22); 8658c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPMI_BCH_APB] = imx_clk_hw_gate2("gpmi_bch_apb", "usdhc3", base + 0x78, 24); 8668c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPMI_BCH] = imx_clk_hw_gate2("gpmi_bch", "usdhc4", base + 0x78, 26); 8678c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPMI_IO] = imx_clk_hw_gate2("gpmi_io", "enfc", base + 0x78, 28); 8688c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPMI_APB] = imx_clk_hw_gate2("gpmi_apb", "usdhc3", base + 0x78, 30); 8698c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_ROM] = imx_clk_hw_gate2_flags("rom", "ahb", base + 0x7c, 0, CLK_IS_CRITICAL); 8708c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SATA] = imx_clk_hw_gate2("sata", "ahb", base + 0x7c, 4); 8718c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SDMA] = imx_clk_hw_gate2("sdma", "ahb", base + 0x7c, 6); 8728c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SPBA] = imx_clk_hw_gate2("spba", "ipg", base + 0x7c, 12); 8738c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SPDIF] = imx_clk_hw_gate2_shared("spdif", "spdif_podf", base + 0x7c, 14, &share_count_spdif); 8748c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SPDIF_GCLK] = imx_clk_hw_gate2_shared("spdif_gclk", "ipg", base + 0x7c, 14, &share_count_spdif); 8758c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI1_IPG] = imx_clk_hw_gate2_shared("ssi1_ipg", "ipg", base + 0x7c, 18, &share_count_ssi1); 8768c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI2_IPG] = imx_clk_hw_gate2_shared("ssi2_ipg", "ipg", base + 0x7c, 20, &share_count_ssi2); 8778c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI3_IPG] = imx_clk_hw_gate2_shared("ssi3_ipg", "ipg", base + 0x7c, 22, &share_count_ssi3); 8788c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI1] = imx_clk_hw_gate2_shared("ssi1", "ssi1_podf", base + 0x7c, 18, &share_count_ssi1); 8798c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI2] = imx_clk_hw_gate2_shared("ssi2", "ssi2_podf", base + 0x7c, 20, &share_count_ssi2); 8808c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_SSI3] = imx_clk_hw_gate2_shared("ssi3", "ssi3_podf", base + 0x7c, 22, &share_count_ssi3); 8818c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_UART_IPG] = imx_clk_hw_gate2("uart_ipg", "ipg", base + 0x7c, 24); 8828c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_UART_SERIAL] = imx_clk_hw_gate2("uart_serial", "uart_serial_podf", base + 0x7c, 26); 8838c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USBOH3] = imx_clk_hw_gate2("usboh3", "ipg", base + 0x80, 0); 8848c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC1] = imx_clk_hw_gate2("usdhc1", "usdhc1_podf", base + 0x80, 2); 8858c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC2] = imx_clk_hw_gate2("usdhc2", "usdhc2_podf", base + 0x80, 4); 8868c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC3] = imx_clk_hw_gate2("usdhc3", "usdhc3_podf", base + 0x80, 6); 8878c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_USDHC4] = imx_clk_hw_gate2("usdhc4", "usdhc4_podf", base + 0x80, 8); 8888c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_EIM_SLOW] = imx_clk_hw_gate2("eim_slow", "eim_slow_podf", base + 0x80, 10); 8898c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_VDO_AXI] = imx_clk_hw_gate2("vdo_axi", "vdo_axi_sel", base + 0x80, 12); 8908c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_VPU_AXI] = imx_clk_hw_gate2("vpu_axi", "vpu_axi_podf", base + 0x80, 14); 8918c2ecf20Sopenharmony_ci if (clk_on_imx6qp()) { 8928c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PRE0] = imx_clk_hw_gate2("pre0", "pre_axi", base + 0x80, 16); 8938c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PRE1] = imx_clk_hw_gate2("pre1", "pre_axi", base + 0x80, 18); 8948c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PRE2] = imx_clk_hw_gate2("pre2", "pre_axi", base + 0x80, 20); 8958c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PRE3] = imx_clk_hw_gate2("pre3", "pre_axi", base + 0x80, 22); 8968c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PRG0_AXI] = imx_clk_hw_gate2_shared("prg0_axi", "ipu1_podf", base + 0x80, 24, &share_count_prg0); 8978c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PRG1_AXI] = imx_clk_hw_gate2_shared("prg1_axi", "ipu2_podf", base + 0x80, 26, &share_count_prg1); 8988c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PRG0_APB] = imx_clk_hw_gate2_shared("prg0_apb", "ipg", base + 0x80, 24, &share_count_prg0); 8998c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PRG1_APB] = imx_clk_hw_gate2_shared("prg1_apb", "ipg", base + 0x80, 26, &share_count_prg1); 9008c2ecf20Sopenharmony_ci } 9018c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CKO1] = imx_clk_hw_gate("cko1", "cko1_podf", base + 0x60, 7); 9028c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_CKO2] = imx_clk_hw_gate("cko2", "cko2_podf", base + 0x60, 24); 9038c2ecf20Sopenharmony_ci 9048c2ecf20Sopenharmony_ci /* 9058c2ecf20Sopenharmony_ci * The gpt_3m clock is not available on i.MX6Q TO1.0. Let's point it 9068c2ecf20Sopenharmony_ci * to clock gpt_ipg_per to ease the gpt driver code. 9078c2ecf20Sopenharmony_ci */ 9088c2ecf20Sopenharmony_ci if (clk_on_imx6q() && imx_get_soc_revision() == IMX_CHIP_REVISION_1_0) 9098c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_GPT_3M] = hws[IMX6QDL_CLK_GPT_IPG_PER]; 9108c2ecf20Sopenharmony_ci 9118c2ecf20Sopenharmony_ci imx_check_clk_hws(hws, IMX6QDL_CLK_END); 9128c2ecf20Sopenharmony_ci 9138c2ecf20Sopenharmony_ci of_clk_add_hw_provider(np, of_clk_hw_onecell_get, clk_hw_data); 9148c2ecf20Sopenharmony_ci 9158c2ecf20Sopenharmony_ci clk_hw_register_clkdev(hws[IMX6QDL_CLK_ENET_REF], "enet_ref", NULL); 9168c2ecf20Sopenharmony_ci 9178c2ecf20Sopenharmony_ci clk_set_rate(hws[IMX6QDL_CLK_PLL3_PFD1_540M]->clk, 540000000); 9188c2ecf20Sopenharmony_ci if (clk_on_imx6dl()) 9198c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_IPU1_SEL]->clk, hws[IMX6QDL_CLK_PLL3_PFD1_540M]->clk); 9208c2ecf20Sopenharmony_ci 9218c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_IPU1_DI0_PRE_SEL]->clk, hws[IMX6QDL_CLK_PLL5_VIDEO_DIV]->clk); 9228c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_IPU1_DI1_PRE_SEL]->clk, hws[IMX6QDL_CLK_PLL5_VIDEO_DIV]->clk); 9238c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_IPU2_DI0_PRE_SEL]->clk, hws[IMX6QDL_CLK_PLL5_VIDEO_DIV]->clk); 9248c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_IPU2_DI1_PRE_SEL]->clk, hws[IMX6QDL_CLK_PLL5_VIDEO_DIV]->clk); 9258c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_IPU1_DI0_SEL]->clk, hws[IMX6QDL_CLK_IPU1_DI0_PRE]->clk); 9268c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_IPU1_DI1_SEL]->clk, hws[IMX6QDL_CLK_IPU1_DI1_PRE]->clk); 9278c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_IPU2_DI0_SEL]->clk, hws[IMX6QDL_CLK_IPU2_DI0_PRE]->clk); 9288c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_IPU2_DI1_SEL]->clk, hws[IMX6QDL_CLK_IPU2_DI1_PRE]->clk); 9298c2ecf20Sopenharmony_ci 9308c2ecf20Sopenharmony_ci /* 9318c2ecf20Sopenharmony_ci * The gpmi needs 100MHz frequency in the EDO/Sync mode, 9328c2ecf20Sopenharmony_ci * We can not get the 100MHz from the pll2_pfd0_352m. 9338c2ecf20Sopenharmony_ci * So choose pll2_pfd2_396m as enfc_sel's parent. 9348c2ecf20Sopenharmony_ci */ 9358c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_ENFC_SEL]->clk, hws[IMX6QDL_CLK_PLL2_PFD2_396M]->clk); 9368c2ecf20Sopenharmony_ci 9378c2ecf20Sopenharmony_ci if (IS_ENABLED(CONFIG_USB_MXS_PHY)) { 9388c2ecf20Sopenharmony_ci clk_prepare_enable(hws[IMX6QDL_CLK_USBPHY1_GATE]->clk); 9398c2ecf20Sopenharmony_ci clk_prepare_enable(hws[IMX6QDL_CLK_USBPHY2_GATE]->clk); 9408c2ecf20Sopenharmony_ci } 9418c2ecf20Sopenharmony_ci 9428c2ecf20Sopenharmony_ci /* 9438c2ecf20Sopenharmony_ci * Let's initially set up CLKO with OSC24M, since this configuration 9448c2ecf20Sopenharmony_ci * is widely used by imx6q board designs to clock audio codec. 9458c2ecf20Sopenharmony_ci */ 9468c2ecf20Sopenharmony_ci ret = clk_set_parent(hws[IMX6QDL_CLK_CKO2_SEL]->clk, hws[IMX6QDL_CLK_OSC]->clk); 9478c2ecf20Sopenharmony_ci if (!ret) 9488c2ecf20Sopenharmony_ci ret = clk_set_parent(hws[IMX6QDL_CLK_CKO]->clk, hws[IMX6QDL_CLK_CKO2]->clk); 9498c2ecf20Sopenharmony_ci if (ret) 9508c2ecf20Sopenharmony_ci pr_warn("failed to set up CLKO: %d\n", ret); 9518c2ecf20Sopenharmony_ci 9528c2ecf20Sopenharmony_ci /* Audio-related clocks configuration */ 9538c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_SPDIF_SEL]->clk, hws[IMX6QDL_CLK_PLL3_PFD3_454M]->clk); 9548c2ecf20Sopenharmony_ci 9558c2ecf20Sopenharmony_ci /* All existing boards with PCIe use LVDS1 */ 9568c2ecf20Sopenharmony_ci if (IS_ENABLED(CONFIG_PCI_IMX6)) 9578c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_LVDS1_SEL]->clk, hws[IMX6QDL_CLK_SATA_REF_100M]->clk); 9588c2ecf20Sopenharmony_ci 9598c2ecf20Sopenharmony_ci /* 9608c2ecf20Sopenharmony_ci * Initialize the GPU clock muxes, so that the maximum specified clock 9618c2ecf20Sopenharmony_ci * rates for the respective SoC are not exceeded. 9628c2ecf20Sopenharmony_ci */ 9638c2ecf20Sopenharmony_ci if (clk_on_imx6dl()) { 9648c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_GPU3D_CORE_SEL]->clk, 9658c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_PFD1_594M]->clk); 9668c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_GPU2D_CORE_SEL]->clk, 9678c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_PFD1_594M]->clk); 9688c2ecf20Sopenharmony_ci } else if (clk_on_imx6q()) { 9698c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_GPU3D_CORE_SEL]->clk, 9708c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_MMDC_CH0_AXI]->clk); 9718c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_GPU3D_SHADER_SEL]->clk, 9728c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL2_PFD1_594M]->clk); 9738c2ecf20Sopenharmony_ci clk_set_parent(hws[IMX6QDL_CLK_GPU2D_CORE_SEL]->clk, 9748c2ecf20Sopenharmony_ci hws[IMX6QDL_CLK_PLL3_USB_OTG]->clk); 9758c2ecf20Sopenharmony_ci } 9768c2ecf20Sopenharmony_ci 9778c2ecf20Sopenharmony_ci imx_register_uart_clocks(2); 9788c2ecf20Sopenharmony_ci} 9798c2ecf20Sopenharmony_ciCLK_OF_DECLARE(imx6q, "fsl,imx6q-ccm", imx6q_clocks_init); 980