18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright (c) 2014 MundoReader S.L. 48c2ecf20Sopenharmony_ci * Author: Heiko Stuebner <heiko@sntech.de> 58c2ecf20Sopenharmony_ci * 68c2ecf20Sopenharmony_ci * Copyright (c) 2015 Rockchip Electronics Co. Ltd. 78c2ecf20Sopenharmony_ci * Author: Xing Zheng <zhengxing@rock-chips.com> 88c2ecf20Sopenharmony_ci */ 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci#include <linux/clk-provider.h> 118c2ecf20Sopenharmony_ci#include <linux/io.h> 128c2ecf20Sopenharmony_ci#include <linux/of.h> 138c2ecf20Sopenharmony_ci#include <linux/of_address.h> 148c2ecf20Sopenharmony_ci#include <linux/syscore_ops.h> 158c2ecf20Sopenharmony_ci#include <dt-bindings/clock/rk3036-cru.h> 168c2ecf20Sopenharmony_ci#include "clk.h" 178c2ecf20Sopenharmony_ci 188c2ecf20Sopenharmony_ci#define RK3036_GRF_SOC_STATUS0 0x14c 198c2ecf20Sopenharmony_ci 208c2ecf20Sopenharmony_cienum rk3036_plls { 218c2ecf20Sopenharmony_ci apll, dpll, gpll, 228c2ecf20Sopenharmony_ci}; 238c2ecf20Sopenharmony_ci 248c2ecf20Sopenharmony_cistatic struct rockchip_pll_rate_table rk3036_pll_rates[] = { 258c2ecf20Sopenharmony_ci /* _mhz, _refdiv, _fbdiv, _postdiv1, _postdiv2, _dsmpd, _frac */ 268c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1608000000, 1, 67, 1, 1, 1, 0), 278c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1584000000, 1, 66, 1, 1, 1, 0), 288c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1560000000, 1, 65, 1, 1, 1, 0), 298c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1536000000, 1, 64, 1, 1, 1, 0), 308c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1512000000, 1, 63, 1, 1, 1, 0), 318c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1488000000, 1, 62, 1, 1, 1, 0), 328c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1464000000, 1, 61, 1, 1, 1, 0), 338c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1440000000, 1, 60, 1, 1, 1, 0), 348c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1416000000, 1, 59, 1, 1, 1, 0), 358c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1392000000, 1, 58, 1, 1, 1, 0), 368c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1368000000, 1, 57, 1, 1, 1, 0), 378c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1344000000, 1, 56, 1, 1, 1, 0), 388c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1320000000, 1, 55, 1, 1, 1, 0), 398c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1296000000, 1, 54, 1, 1, 1, 0), 408c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1272000000, 1, 53, 1, 1, 1, 0), 418c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1248000000, 1, 52, 1, 1, 1, 0), 428c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1200000000, 1, 50, 1, 1, 1, 0), 438c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1188000000, 2, 99, 1, 1, 1, 0), 448c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1104000000, 1, 46, 1, 1, 1, 0), 458c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1100000000, 12, 550, 1, 1, 1, 0), 468c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1008000000, 1, 84, 2, 1, 1, 0), 478c2ecf20Sopenharmony_ci RK3036_PLL_RATE(1000000000, 6, 500, 2, 1, 1, 0), 488c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 984000000, 1, 82, 2, 1, 1, 0), 498c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 960000000, 1, 80, 2, 1, 1, 0), 508c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 936000000, 1, 78, 2, 1, 1, 0), 518c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 912000000, 1, 76, 2, 1, 1, 0), 528c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 900000000, 4, 300, 2, 1, 1, 0), 538c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 888000000, 1, 74, 2, 1, 1, 0), 548c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 864000000, 1, 72, 2, 1, 1, 0), 558c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 840000000, 1, 70, 2, 1, 1, 0), 568c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 816000000, 1, 68, 2, 1, 1, 0), 578c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 800000000, 6, 400, 2, 1, 1, 0), 588c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 700000000, 6, 350, 2, 1, 1, 0), 598c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 696000000, 1, 58, 2, 1, 1, 0), 608c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 600000000, 1, 75, 3, 1, 1, 0), 618c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 594000000, 2, 99, 2, 1, 1, 0), 628c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 504000000, 1, 63, 3, 1, 1, 0), 638c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 500000000, 6, 250, 2, 1, 1, 0), 648c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 408000000, 1, 68, 2, 2, 1, 0), 658c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 312000000, 1, 52, 2, 2, 1, 0), 668c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 216000000, 1, 72, 4, 2, 1, 0), 678c2ecf20Sopenharmony_ci RK3036_PLL_RATE( 96000000, 1, 64, 4, 4, 1, 0), 688c2ecf20Sopenharmony_ci { /* sentinel */ }, 698c2ecf20Sopenharmony_ci}; 708c2ecf20Sopenharmony_ci 718c2ecf20Sopenharmony_ci#define RK3036_DIV_CPU_MASK 0x1f 728c2ecf20Sopenharmony_ci#define RK3036_DIV_CPU_SHIFT 8 738c2ecf20Sopenharmony_ci 748c2ecf20Sopenharmony_ci#define RK3036_DIV_PERI_MASK 0xf 758c2ecf20Sopenharmony_ci#define RK3036_DIV_PERI_SHIFT 0 768c2ecf20Sopenharmony_ci#define RK3036_DIV_ACLK_MASK 0x7 778c2ecf20Sopenharmony_ci#define RK3036_DIV_ACLK_SHIFT 4 788c2ecf20Sopenharmony_ci#define RK3036_DIV_HCLK_MASK 0x3 798c2ecf20Sopenharmony_ci#define RK3036_DIV_HCLK_SHIFT 8 808c2ecf20Sopenharmony_ci#define RK3036_DIV_PCLK_MASK 0x7 818c2ecf20Sopenharmony_ci#define RK3036_DIV_PCLK_SHIFT 12 828c2ecf20Sopenharmony_ci 838c2ecf20Sopenharmony_ci#define RK3036_CLKSEL1(_core_periph_div) \ 848c2ecf20Sopenharmony_ci { \ 858c2ecf20Sopenharmony_ci .reg = RK2928_CLKSEL_CON(1), \ 868c2ecf20Sopenharmony_ci .val = HIWORD_UPDATE(_core_periph_div, RK3036_DIV_PERI_MASK, \ 878c2ecf20Sopenharmony_ci RK3036_DIV_PERI_SHIFT) \ 888c2ecf20Sopenharmony_ci } 898c2ecf20Sopenharmony_ci 908c2ecf20Sopenharmony_ci#define RK3036_CPUCLK_RATE(_prate, _core_periph_div) \ 918c2ecf20Sopenharmony_ci { \ 928c2ecf20Sopenharmony_ci .prate = _prate, \ 938c2ecf20Sopenharmony_ci .divs = { \ 948c2ecf20Sopenharmony_ci RK3036_CLKSEL1(_core_periph_div), \ 958c2ecf20Sopenharmony_ci }, \ 968c2ecf20Sopenharmony_ci } 978c2ecf20Sopenharmony_ci 988c2ecf20Sopenharmony_cistatic struct rockchip_cpuclk_rate_table rk3036_cpuclk_rates[] __initdata = { 998c2ecf20Sopenharmony_ci RK3036_CPUCLK_RATE(816000000, 4), 1008c2ecf20Sopenharmony_ci RK3036_CPUCLK_RATE(600000000, 4), 1018c2ecf20Sopenharmony_ci RK3036_CPUCLK_RATE(312000000, 4), 1028c2ecf20Sopenharmony_ci}; 1038c2ecf20Sopenharmony_ci 1048c2ecf20Sopenharmony_cistatic const struct rockchip_cpuclk_reg_data rk3036_cpuclk_data = { 1058c2ecf20Sopenharmony_ci .core_reg = RK2928_CLKSEL_CON(0), 1068c2ecf20Sopenharmony_ci .div_core_shift = 0, 1078c2ecf20Sopenharmony_ci .div_core_mask = 0x1f, 1088c2ecf20Sopenharmony_ci .mux_core_alt = 1, 1098c2ecf20Sopenharmony_ci .mux_core_main = 0, 1108c2ecf20Sopenharmony_ci .mux_core_shift = 7, 1118c2ecf20Sopenharmony_ci .mux_core_mask = 0x1, 1128c2ecf20Sopenharmony_ci}; 1138c2ecf20Sopenharmony_ci 1148c2ecf20Sopenharmony_ciPNAME(mux_pll_p) = { "xin24m", "xin24m" }; 1158c2ecf20Sopenharmony_ci 1168c2ecf20Sopenharmony_ciPNAME(mux_armclk_p) = { "apll", "gpll_armclk" }; 1178c2ecf20Sopenharmony_ciPNAME(mux_busclk_p) = { "apll", "dpll_cpu", "gpll_cpu" }; 1188c2ecf20Sopenharmony_ciPNAME(mux_ddrphy_p) = { "dpll_ddr", "gpll_ddr" }; 1198c2ecf20Sopenharmony_ciPNAME(mux_pll_src_3plls_p) = { "apll", "dpll", "gpll" }; 1208c2ecf20Sopenharmony_ciPNAME(mux_timer_p) = { "xin24m", "pclk_peri_src" }; 1218c2ecf20Sopenharmony_ci 1228c2ecf20Sopenharmony_ciPNAME(mux_pll_src_apll_dpll_gpll_usb480m_p) = { "apll", "dpll", "gpll", "usb480m" }; 1238c2ecf20Sopenharmony_ci 1248c2ecf20Sopenharmony_ciPNAME(mux_mmc_src_p) = { "apll", "dpll", "gpll", "xin24m" }; 1258c2ecf20Sopenharmony_ciPNAME(mux_i2s_pre_p) = { "i2s_src", "i2s_frac", "ext_i2s", "xin12m" }; 1268c2ecf20Sopenharmony_ciPNAME(mux_i2s_clkout_p) = { "i2s_pre", "xin12m" }; 1278c2ecf20Sopenharmony_ciPNAME(mux_spdif_p) = { "spdif_src", "spdif_frac", "xin12m" }; 1288c2ecf20Sopenharmony_ciPNAME(mux_uart0_p) = { "uart0_src", "uart0_frac", "xin24m" }; 1298c2ecf20Sopenharmony_ciPNAME(mux_uart1_p) = { "uart1_src", "uart1_frac", "xin24m" }; 1308c2ecf20Sopenharmony_ciPNAME(mux_uart2_p) = { "uart2_src", "uart2_frac", "xin24m" }; 1318c2ecf20Sopenharmony_ciPNAME(mux_mac_p) = { "mac_pll_src", "rmii_clkin" }; 1328c2ecf20Sopenharmony_ciPNAME(mux_dclk_p) = { "dclk_lcdc", "dclk_cru" }; 1338c2ecf20Sopenharmony_ci 1348c2ecf20Sopenharmony_cistatic struct rockchip_pll_clock rk3036_pll_clks[] __initdata = { 1358c2ecf20Sopenharmony_ci [apll] = PLL(pll_rk3036, PLL_APLL, "apll", mux_pll_p, 0, RK2928_PLL_CON(0), 1368c2ecf20Sopenharmony_ci RK2928_MODE_CON, 0, 5, 0, rk3036_pll_rates), 1378c2ecf20Sopenharmony_ci [dpll] = PLL(pll_rk3036, PLL_DPLL, "dpll", mux_pll_p, 0, RK2928_PLL_CON(4), 1388c2ecf20Sopenharmony_ci RK2928_MODE_CON, 4, 4, 0, NULL), 1398c2ecf20Sopenharmony_ci [gpll] = PLL(pll_rk3036, PLL_GPLL, "gpll", mux_pll_p, 0, RK2928_PLL_CON(12), 1408c2ecf20Sopenharmony_ci RK2928_MODE_CON, 12, 6, ROCKCHIP_PLL_SYNC_RATE, rk3036_pll_rates), 1418c2ecf20Sopenharmony_ci}; 1428c2ecf20Sopenharmony_ci 1438c2ecf20Sopenharmony_ci#define MFLAGS CLK_MUX_HIWORD_MASK 1448c2ecf20Sopenharmony_ci#define DFLAGS CLK_DIVIDER_HIWORD_MASK 1458c2ecf20Sopenharmony_ci#define GFLAGS (CLK_GATE_HIWORD_MASK | CLK_GATE_SET_TO_DISABLE) 1468c2ecf20Sopenharmony_ci 1478c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3036_uart0_fracmux __initdata = 1488c2ecf20Sopenharmony_ci MUX(SCLK_UART0, "sclk_uart0", mux_uart0_p, CLK_SET_RATE_PARENT, 1498c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(13), 8, 2, MFLAGS); 1508c2ecf20Sopenharmony_ci 1518c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3036_uart1_fracmux __initdata = 1528c2ecf20Sopenharmony_ci MUX(SCLK_UART1, "sclk_uart1", mux_uart1_p, CLK_SET_RATE_PARENT, 1538c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(14), 8, 2, MFLAGS); 1548c2ecf20Sopenharmony_ci 1558c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3036_uart2_fracmux __initdata = 1568c2ecf20Sopenharmony_ci MUX(SCLK_UART2, "sclk_uart2", mux_uart2_p, CLK_SET_RATE_PARENT, 1578c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(15), 8, 2, MFLAGS); 1588c2ecf20Sopenharmony_ci 1598c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3036_i2s_fracmux __initdata = 1608c2ecf20Sopenharmony_ci MUX(0, "i2s_pre", mux_i2s_pre_p, CLK_SET_RATE_PARENT, 1618c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(3), 8, 2, MFLAGS); 1628c2ecf20Sopenharmony_ci 1638c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3036_spdif_fracmux __initdata = 1648c2ecf20Sopenharmony_ci MUX(SCLK_SPDIF, "sclk_spdif", mux_spdif_p, 0, 1658c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(5), 8, 2, MFLAGS); 1668c2ecf20Sopenharmony_ci 1678c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3036_clk_branches[] __initdata = { 1688c2ecf20Sopenharmony_ci /* 1698c2ecf20Sopenharmony_ci * Clock-Architecture Diagram 1 1708c2ecf20Sopenharmony_ci */ 1718c2ecf20Sopenharmony_ci 1728c2ecf20Sopenharmony_ci GATE(0, "gpll_armclk", "gpll", CLK_IGNORE_UNUSED, 1738c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 6, GFLAGS), 1748c2ecf20Sopenharmony_ci 1758c2ecf20Sopenharmony_ci FACTOR(0, "xin12m", "xin24m", 0, 1, 2), 1768c2ecf20Sopenharmony_ci 1778c2ecf20Sopenharmony_ci /* 1788c2ecf20Sopenharmony_ci * Clock-Architecture Diagram 2 1798c2ecf20Sopenharmony_ci */ 1808c2ecf20Sopenharmony_ci 1818c2ecf20Sopenharmony_ci GATE(0, "dpll_ddr", "dpll", CLK_IGNORE_UNUSED, 1828c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 2, GFLAGS), 1838c2ecf20Sopenharmony_ci GATE(0, "gpll_ddr", "gpll", CLK_IGNORE_UNUSED, 1848c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 8, GFLAGS), 1858c2ecf20Sopenharmony_ci COMPOSITE_NOGATE(0, "ddrphy2x", mux_ddrphy_p, CLK_IGNORE_UNUSED, 1868c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(26), 8, 1, MFLAGS, 0, 2, DFLAGS | CLK_DIVIDER_POWER_OF_TWO), 1878c2ecf20Sopenharmony_ci FACTOR(0, "ddrphy", "ddrphy2x", 0, 1, 2), 1888c2ecf20Sopenharmony_ci 1898c2ecf20Sopenharmony_ci COMPOSITE_NOMUX(0, "pclk_dbg", "armclk", CLK_IGNORE_UNUSED, 1908c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(1), 0, 4, DFLAGS | CLK_DIVIDER_READ_ONLY, 1918c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 7, GFLAGS), 1928c2ecf20Sopenharmony_ci COMPOSITE_NOMUX(0, "aclk_core_pre", "armclk", CLK_IGNORE_UNUSED, 1938c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(1), 4, 3, DFLAGS | CLK_DIVIDER_READ_ONLY, 1948c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 7, GFLAGS), 1958c2ecf20Sopenharmony_ci 1968c2ecf20Sopenharmony_ci GATE(0, "dpll_cpu", "dpll", 0, RK2928_CLKGATE_CON(10), 8, GFLAGS), 1978c2ecf20Sopenharmony_ci GATE(0, "gpll_cpu", "gpll", 0, RK2928_CLKGATE_CON(0), 1, GFLAGS), 1988c2ecf20Sopenharmony_ci COMPOSITE_NOGATE(0, "aclk_cpu_src", mux_busclk_p, 0, 1998c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(0), 14, 2, MFLAGS, 8, 5, DFLAGS), 2008c2ecf20Sopenharmony_ci GATE(ACLK_CPU, "aclk_cpu", "aclk_cpu_src", CLK_IGNORE_UNUSED, 2018c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 3, GFLAGS), 2028c2ecf20Sopenharmony_ci COMPOSITE_NOMUX(PCLK_CPU, "pclk_cpu", "aclk_cpu_src", CLK_IGNORE_UNUSED, 2038c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(1), 12, 3, DFLAGS | CLK_DIVIDER_READ_ONLY, 2048c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 5, GFLAGS), 2058c2ecf20Sopenharmony_ci COMPOSITE_NOMUX(HCLK_CPU, "hclk_cpu", "aclk_cpu_src", CLK_IGNORE_UNUSED, 2068c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(1), 8, 2, DFLAGS | CLK_DIVIDER_READ_ONLY, 2078c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 4, GFLAGS), 2088c2ecf20Sopenharmony_ci 2098c2ecf20Sopenharmony_ci COMPOSITE(0, "aclk_peri_src", mux_pll_src_3plls_p, 0, 2108c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(10), 14, 2, MFLAGS, 0, 5, DFLAGS, 2118c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 0, GFLAGS), 2128c2ecf20Sopenharmony_ci 2138c2ecf20Sopenharmony_ci GATE(ACLK_PERI, "aclk_peri", "aclk_peri_src", 0, 2148c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 1, GFLAGS), 2158c2ecf20Sopenharmony_ci DIV(0, "pclk_peri_src", "aclk_peri_src", CLK_IGNORE_UNUSED, 2168c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(10), 12, 2, DFLAGS | CLK_DIVIDER_POWER_OF_TWO), 2178c2ecf20Sopenharmony_ci GATE(PCLK_PERI, "pclk_peri", "pclk_peri_src", 0, 2188c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 3, GFLAGS), 2198c2ecf20Sopenharmony_ci DIV(0, "hclk_peri_src", "aclk_peri_src", CLK_IGNORE_UNUSED, 2208c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(10), 8, 2, DFLAGS | CLK_DIVIDER_POWER_OF_TWO), 2218c2ecf20Sopenharmony_ci GATE(HCLK_PERI, "hclk_peri", "hclk_peri_src", 0, 2228c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 2, GFLAGS), 2238c2ecf20Sopenharmony_ci 2248c2ecf20Sopenharmony_ci COMPOSITE_NODIV(SCLK_TIMER0, "sclk_timer0", mux_timer_p, CLK_IGNORE_UNUSED, 2258c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(2), 4, 1, MFLAGS, 2268c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 0, GFLAGS), 2278c2ecf20Sopenharmony_ci COMPOSITE_NODIV(SCLK_TIMER1, "sclk_timer1", mux_timer_p, CLK_IGNORE_UNUSED, 2288c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(2), 5, 1, MFLAGS, 2298c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 1, GFLAGS), 2308c2ecf20Sopenharmony_ci COMPOSITE_NODIV(SCLK_TIMER2, "sclk_timer2", mux_timer_p, CLK_IGNORE_UNUSED, 2318c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(2), 6, 1, MFLAGS, 2328c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 4, GFLAGS), 2338c2ecf20Sopenharmony_ci COMPOSITE_NODIV(SCLK_TIMER3, "sclk_timer3", mux_timer_p, CLK_IGNORE_UNUSED, 2348c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(2), 7, 1, MFLAGS, 2358c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 5, GFLAGS), 2368c2ecf20Sopenharmony_ci 2378c2ecf20Sopenharmony_ci MUX(0, "uart_pll_clk", mux_pll_src_apll_dpll_gpll_usb480m_p, 0, 2388c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(13), 10, 2, MFLAGS), 2398c2ecf20Sopenharmony_ci COMPOSITE_NOMUX(0, "uart0_src", "uart_pll_clk", 0, 2408c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(13), 0, 7, DFLAGS, 2418c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 8, GFLAGS), 2428c2ecf20Sopenharmony_ci COMPOSITE_NOMUX(0, "uart1_src", "uart_pll_clk", 0, 2438c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(14), 0, 7, DFLAGS, 2448c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 10, GFLAGS), 2458c2ecf20Sopenharmony_ci COMPOSITE_NOMUX(0, "uart2_src", "uart_pll_clk", 0, 2468c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(15), 0, 7, DFLAGS, 2478c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 12, GFLAGS), 2488c2ecf20Sopenharmony_ci COMPOSITE_FRACMUX(0, "uart0_frac", "uart0_src", CLK_SET_RATE_PARENT, 2498c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(17), 0, 2508c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 9, GFLAGS, 2518c2ecf20Sopenharmony_ci &rk3036_uart0_fracmux), 2528c2ecf20Sopenharmony_ci COMPOSITE_FRACMUX(0, "uart1_frac", "uart1_src", CLK_SET_RATE_PARENT, 2538c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(18), 0, 2548c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 11, GFLAGS, 2558c2ecf20Sopenharmony_ci &rk3036_uart1_fracmux), 2568c2ecf20Sopenharmony_ci COMPOSITE_FRACMUX(0, "uart2_frac", "uart2_src", CLK_SET_RATE_PARENT, 2578c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(19), 0, 2588c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 13, GFLAGS, 2598c2ecf20Sopenharmony_ci &rk3036_uart2_fracmux), 2608c2ecf20Sopenharmony_ci 2618c2ecf20Sopenharmony_ci COMPOSITE(0, "aclk_vcodec", mux_pll_src_3plls_p, 0, 2628c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(32), 14, 2, MFLAGS, 8, 5, DFLAGS, 2638c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(3), 11, GFLAGS), 2648c2ecf20Sopenharmony_ci FACTOR_GATE(HCLK_VCODEC, "hclk_vcodec", "aclk_vcodec", 0, 1, 4, 2658c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(3), 12, GFLAGS), 2668c2ecf20Sopenharmony_ci 2678c2ecf20Sopenharmony_ci COMPOSITE(0, "aclk_hvec", mux_pll_src_3plls_p, 0, 2688c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(20), 0, 2, MFLAGS, 2, 5, DFLAGS, 2698c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(10), 6, GFLAGS), 2708c2ecf20Sopenharmony_ci 2718c2ecf20Sopenharmony_ci COMPOSITE(0, "aclk_disp1_pre", mux_pll_src_3plls_p, 0, 2728c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(31), 14, 2, MFLAGS, 8, 5, DFLAGS, 2738c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 4, GFLAGS), 2748c2ecf20Sopenharmony_ci COMPOSITE(0, "hclk_disp_pre", mux_pll_src_3plls_p, 0, 2758c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(30), 14, 2, MFLAGS, 8, 5, DFLAGS, 2768c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 11, GFLAGS), 2778c2ecf20Sopenharmony_ci COMPOSITE(SCLK_LCDC, "dclk_lcdc", mux_pll_src_3plls_p, 0, 2788c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(28), 0, 2, MFLAGS, 8, 8, DFLAGS, 2798c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(3), 2, GFLAGS), 2808c2ecf20Sopenharmony_ci 2818c2ecf20Sopenharmony_ci COMPOSITE_NODIV(0, "sclk_sdmmc_src", mux_mmc_src_p, 0, 2828c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(12), 8, 2, MFLAGS, 2838c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 11, GFLAGS), 2848c2ecf20Sopenharmony_ci DIV(SCLK_SDMMC, "sclk_sdmmc", "sclk_sdmmc_src", 0, 2858c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(11), 0, 7, DFLAGS), 2868c2ecf20Sopenharmony_ci 2878c2ecf20Sopenharmony_ci COMPOSITE_NODIV(0, "sclk_sdio_src", mux_mmc_src_p, 0, 2888c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(12), 10, 2, MFLAGS, 2898c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 13, GFLAGS), 2908c2ecf20Sopenharmony_ci DIV(SCLK_SDIO, "sclk_sdio", "sclk_sdio_src", 0, 2918c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(11), 8, 7, DFLAGS), 2928c2ecf20Sopenharmony_ci 2938c2ecf20Sopenharmony_ci COMPOSITE(SCLK_EMMC, "sclk_emmc", mux_mmc_src_p, 0, 2948c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(12), 12, 2, MFLAGS, 0, 7, DFLAGS, 2958c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 14, GFLAGS), 2968c2ecf20Sopenharmony_ci 2978c2ecf20Sopenharmony_ci MMC(SCLK_SDMMC_DRV, "sdmmc_drv", "sclk_sdmmc", RK3036_SDMMC_CON0, 1), 2988c2ecf20Sopenharmony_ci MMC(SCLK_SDMMC_SAMPLE, "sdmmc_sample", "sclk_sdmmc", RK3036_SDMMC_CON1, 0), 2998c2ecf20Sopenharmony_ci 3008c2ecf20Sopenharmony_ci MMC(SCLK_SDIO_DRV, "sdio_drv", "sclk_sdio", RK3036_SDIO_CON0, 1), 3018c2ecf20Sopenharmony_ci MMC(SCLK_SDIO_SAMPLE, "sdio_sample", "sclk_sdio", RK3036_SDIO_CON1, 0), 3028c2ecf20Sopenharmony_ci 3038c2ecf20Sopenharmony_ci MMC(SCLK_EMMC_DRV, "emmc_drv", "sclk_emmc", RK3036_EMMC_CON0, 1), 3048c2ecf20Sopenharmony_ci MMC(SCLK_EMMC_SAMPLE, "emmc_sample", "sclk_emmc", RK3036_EMMC_CON1, 0), 3058c2ecf20Sopenharmony_ci 3068c2ecf20Sopenharmony_ci COMPOSITE(0, "i2s_src", mux_pll_src_3plls_p, 0, 3078c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(3), 14, 2, MFLAGS, 0, 7, DFLAGS, 3088c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 9, GFLAGS), 3098c2ecf20Sopenharmony_ci COMPOSITE_FRACMUX(0, "i2s_frac", "i2s_src", CLK_SET_RATE_PARENT, 3108c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(7), 0, 3118c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 10, GFLAGS, 3128c2ecf20Sopenharmony_ci &rk3036_i2s_fracmux), 3138c2ecf20Sopenharmony_ci COMPOSITE_NODIV(SCLK_I2S_OUT, "i2s_clkout", mux_i2s_clkout_p, 0, 3148c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(3), 12, 1, MFLAGS, 3158c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 13, GFLAGS), 3168c2ecf20Sopenharmony_ci GATE(SCLK_I2S, "sclk_i2s", "i2s_pre", CLK_SET_RATE_PARENT, 3178c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(0), 14, GFLAGS), 3188c2ecf20Sopenharmony_ci 3198c2ecf20Sopenharmony_ci COMPOSITE(0, "spdif_src", mux_pll_src_3plls_p, 0, 3208c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(5), 10, 2, MFLAGS, 0, 7, DFLAGS, 3218c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 10, GFLAGS), 3228c2ecf20Sopenharmony_ci COMPOSITE_FRACMUX(0, "spdif_frac", "spdif_src", 0, 3238c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(9), 0, 3248c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 12, GFLAGS, 3258c2ecf20Sopenharmony_ci &rk3036_spdif_fracmux), 3268c2ecf20Sopenharmony_ci 3278c2ecf20Sopenharmony_ci GATE(SCLK_OTGPHY0, "sclk_otgphy0", "xin12m", CLK_IGNORE_UNUSED, 3288c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(1), 5, GFLAGS), 3298c2ecf20Sopenharmony_ci 3308c2ecf20Sopenharmony_ci COMPOSITE(SCLK_GPU, "sclk_gpu", mux_pll_src_3plls_p, 0, 3318c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(34), 8, 2, MFLAGS, 0, 5, DFLAGS, 3328c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(3), 13, GFLAGS), 3338c2ecf20Sopenharmony_ci 3348c2ecf20Sopenharmony_ci COMPOSITE(SCLK_SPI, "sclk_spi", mux_pll_src_3plls_p, 0, 3358c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(25), 8, 2, MFLAGS, 0, 7, DFLAGS, 3368c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 9, GFLAGS), 3378c2ecf20Sopenharmony_ci 3388c2ecf20Sopenharmony_ci COMPOSITE(SCLK_NANDC, "sclk_nandc", mux_pll_src_3plls_p, 0, 3398c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(16), 8, 2, MFLAGS, 10, 5, DFLAGS, 3408c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(10), 4, GFLAGS), 3418c2ecf20Sopenharmony_ci 3428c2ecf20Sopenharmony_ci COMPOSITE(SCLK_SFC, "sclk_sfc", mux_pll_src_apll_dpll_gpll_usb480m_p, 0, 3438c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(16), 0, 2, MFLAGS, 2, 5, DFLAGS, 3448c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(10), 5, GFLAGS), 3458c2ecf20Sopenharmony_ci 3468c2ecf20Sopenharmony_ci COMPOSITE_NOGATE(SCLK_MACPLL, "mac_pll_src", mux_pll_src_3plls_p, CLK_SET_RATE_NO_REPARENT, 3478c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(21), 0, 2, MFLAGS, 9, 5, DFLAGS), 3488c2ecf20Sopenharmony_ci MUX(SCLK_MACREF, "mac_clk_ref", mux_mac_p, CLK_SET_RATE_PARENT, 3498c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(21), 3, 1, MFLAGS), 3508c2ecf20Sopenharmony_ci 3518c2ecf20Sopenharmony_ci COMPOSITE_NOMUX(SCLK_MAC, "mac_clk", "mac_clk_ref", 0, 3528c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(21), 4, 5, DFLAGS, 3538c2ecf20Sopenharmony_ci RK2928_CLKGATE_CON(2), 6, GFLAGS), 3548c2ecf20Sopenharmony_ci FACTOR(0, "sclk_macref_out", "hclk_peri_src", 0, 1, 2), 3558c2ecf20Sopenharmony_ci 3568c2ecf20Sopenharmony_ci MUX(SCLK_HDMI, "dclk_hdmi", mux_dclk_p, 0, 3578c2ecf20Sopenharmony_ci RK2928_CLKSEL_CON(31), 0, 1, MFLAGS), 3588c2ecf20Sopenharmony_ci 3598c2ecf20Sopenharmony_ci /* 3608c2ecf20Sopenharmony_ci * Clock-Architecture Diagram 3 3618c2ecf20Sopenharmony_ci */ 3628c2ecf20Sopenharmony_ci 3638c2ecf20Sopenharmony_ci /* aclk_cpu gates */ 3648c2ecf20Sopenharmony_ci GATE(0, "sclk_intmem", "aclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 12, GFLAGS), 3658c2ecf20Sopenharmony_ci GATE(0, "aclk_strc_sys", "aclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 10, GFLAGS), 3668c2ecf20Sopenharmony_ci 3678c2ecf20Sopenharmony_ci /* hclk_cpu gates */ 3688c2ecf20Sopenharmony_ci GATE(HCLK_ROM, "hclk_rom", "hclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(5), 6, GFLAGS), 3698c2ecf20Sopenharmony_ci 3708c2ecf20Sopenharmony_ci /* pclk_cpu gates */ 3718c2ecf20Sopenharmony_ci GATE(PCLK_GRF, "pclk_grf", "pclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(5), 4, GFLAGS), 3728c2ecf20Sopenharmony_ci GATE(PCLK_DDRUPCTL, "pclk_ddrupctl", "pclk_cpu", 0, RK2928_CLKGATE_CON(5), 7, GFLAGS), 3738c2ecf20Sopenharmony_ci GATE(PCLK_ACODEC, "pclk_acodec", "pclk_cpu", 0, RK2928_CLKGATE_CON(5), 14, GFLAGS), 3748c2ecf20Sopenharmony_ci GATE(PCLK_HDMI, "pclk_hdmi", "pclk_cpu", 0, RK2928_CLKGATE_CON(3), 8, GFLAGS), 3758c2ecf20Sopenharmony_ci 3768c2ecf20Sopenharmony_ci /* aclk_vio gates */ 3778c2ecf20Sopenharmony_ci GATE(ACLK_VIO, "aclk_vio", "aclk_disp1_pre", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(6), 13, GFLAGS), 3788c2ecf20Sopenharmony_ci GATE(ACLK_LCDC, "aclk_lcdc", "aclk_disp1_pre", 0, RK2928_CLKGATE_CON(9), 6, GFLAGS), 3798c2ecf20Sopenharmony_ci 3808c2ecf20Sopenharmony_ci GATE(HCLK_VIO_BUS, "hclk_vio_bus", "hclk_disp_pre", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(6), 12, GFLAGS), 3818c2ecf20Sopenharmony_ci GATE(HCLK_LCDC, "hclk_lcdc", "hclk_disp_pre", 0, RK2928_CLKGATE_CON(9), 5, GFLAGS), 3828c2ecf20Sopenharmony_ci 3838c2ecf20Sopenharmony_ci 3848c2ecf20Sopenharmony_ci /* xin24m gates */ 3858c2ecf20Sopenharmony_ci GATE(SCLK_PVTM_CORE, "sclk_pvtm_core", "xin24m", 0, RK2928_CLKGATE_CON(10), 0, GFLAGS), 3868c2ecf20Sopenharmony_ci GATE(SCLK_PVTM_GPU, "sclk_pvtm_gpu", "xin24m", 0, RK2928_CLKGATE_CON(10), 1, GFLAGS), 3878c2ecf20Sopenharmony_ci 3888c2ecf20Sopenharmony_ci /* aclk_peri gates */ 3898c2ecf20Sopenharmony_ci GATE(0, "aclk_peri_axi_matrix", "aclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 3, GFLAGS), 3908c2ecf20Sopenharmony_ci GATE(0, "aclk_cpu_peri", "aclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 2, GFLAGS), 3918c2ecf20Sopenharmony_ci GATE(ACLK_DMAC2, "aclk_dmac2", "aclk_peri", 0, RK2928_CLKGATE_CON(5), 1, GFLAGS), 3928c2ecf20Sopenharmony_ci GATE(0, "aclk_peri_niu", "aclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 15, GFLAGS), 3938c2ecf20Sopenharmony_ci 3948c2ecf20Sopenharmony_ci /* hclk_peri gates */ 3958c2ecf20Sopenharmony_ci GATE(0, "hclk_peri_matrix", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 0, GFLAGS), 3968c2ecf20Sopenharmony_ci GATE(0, "hclk_usb_peri", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 13, GFLAGS), 3978c2ecf20Sopenharmony_ci GATE(0, "hclk_peri_arbi", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 14, GFLAGS), 3988c2ecf20Sopenharmony_ci GATE(HCLK_NANDC, "hclk_nandc", "hclk_peri", 0, RK2928_CLKGATE_CON(5), 9, GFLAGS), 3998c2ecf20Sopenharmony_ci GATE(HCLK_SDMMC, "hclk_sdmmc", "hclk_peri", 0, RK2928_CLKGATE_CON(5), 10, GFLAGS), 4008c2ecf20Sopenharmony_ci GATE(HCLK_SDIO, "hclk_sdio", "hclk_peri", 0, RK2928_CLKGATE_CON(5), 11, GFLAGS), 4018c2ecf20Sopenharmony_ci GATE(HCLK_EMMC, "hclk_emmc", "hclk_peri", 0, RK2928_CLKGATE_CON(7), 0, GFLAGS), 4028c2ecf20Sopenharmony_ci GATE(HCLK_OTG0, "hclk_otg0", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(5), 13, GFLAGS), 4038c2ecf20Sopenharmony_ci GATE(HCLK_OTG1, "hclk_otg1", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(7), 3, GFLAGS), 4048c2ecf20Sopenharmony_ci GATE(HCLK_I2S, "hclk_i2s", "hclk_peri", 0, RK2928_CLKGATE_CON(7), 2, GFLAGS), 4058c2ecf20Sopenharmony_ci GATE(0, "hclk_sfc", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(3), 14, GFLAGS), 4068c2ecf20Sopenharmony_ci GATE(HCLK_MAC, "hclk_mac", "hclk_peri", 0, RK2928_CLKGATE_CON(3), 5, GFLAGS), 4078c2ecf20Sopenharmony_ci 4088c2ecf20Sopenharmony_ci /* pclk_peri gates */ 4098c2ecf20Sopenharmony_ci GATE(0, "pclk_peri_matrix", "pclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 1, GFLAGS), 4108c2ecf20Sopenharmony_ci GATE(0, "pclk_efuse", "pclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(5), 2, GFLAGS), 4118c2ecf20Sopenharmony_ci GATE(PCLK_TIMER, "pclk_timer", "pclk_peri", 0, RK2928_CLKGATE_CON(7), 7, GFLAGS), 4128c2ecf20Sopenharmony_ci GATE(PCLK_PWM, "pclk_pwm", "pclk_peri", 0, RK2928_CLKGATE_CON(7), 10, GFLAGS), 4138c2ecf20Sopenharmony_ci GATE(PCLK_SPI, "pclk_spi", "pclk_peri", 0, RK2928_CLKGATE_CON(7), 12, GFLAGS), 4148c2ecf20Sopenharmony_ci GATE(PCLK_WDT, "pclk_wdt", "pclk_peri", 0, RK2928_CLKGATE_CON(7), 15, GFLAGS), 4158c2ecf20Sopenharmony_ci GATE(PCLK_UART0, "pclk_uart0", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 0, GFLAGS), 4168c2ecf20Sopenharmony_ci GATE(PCLK_UART1, "pclk_uart1", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 1, GFLAGS), 4178c2ecf20Sopenharmony_ci GATE(PCLK_UART2, "pclk_uart2", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 2, GFLAGS), 4188c2ecf20Sopenharmony_ci GATE(PCLK_I2C0, "pclk_i2c0", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 4, GFLAGS), 4198c2ecf20Sopenharmony_ci GATE(PCLK_I2C1, "pclk_i2c1", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 5, GFLAGS), 4208c2ecf20Sopenharmony_ci GATE(PCLK_I2C2, "pclk_i2c2", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 6, GFLAGS), 4218c2ecf20Sopenharmony_ci GATE(PCLK_GPIO0, "pclk_gpio0", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 9, GFLAGS), 4228c2ecf20Sopenharmony_ci GATE(PCLK_GPIO1, "pclk_gpio1", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 10, GFLAGS), 4238c2ecf20Sopenharmony_ci GATE(PCLK_GPIO2, "pclk_gpio2", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 11, GFLAGS), 4248c2ecf20Sopenharmony_ci}; 4258c2ecf20Sopenharmony_ci 4268c2ecf20Sopenharmony_cistatic const char *const rk3036_critical_clocks[] __initconst = { 4278c2ecf20Sopenharmony_ci "aclk_cpu", 4288c2ecf20Sopenharmony_ci "aclk_peri", 4298c2ecf20Sopenharmony_ci "hclk_peri", 4308c2ecf20Sopenharmony_ci "pclk_peri", 4318c2ecf20Sopenharmony_ci "pclk_ddrupctl", 4328c2ecf20Sopenharmony_ci}; 4338c2ecf20Sopenharmony_ci 4348c2ecf20Sopenharmony_cistatic void __init rk3036_clk_init(struct device_node *np) 4358c2ecf20Sopenharmony_ci{ 4368c2ecf20Sopenharmony_ci struct rockchip_clk_provider *ctx; 4378c2ecf20Sopenharmony_ci void __iomem *reg_base; 4388c2ecf20Sopenharmony_ci struct clk *clk; 4398c2ecf20Sopenharmony_ci 4408c2ecf20Sopenharmony_ci reg_base = of_iomap(np, 0); 4418c2ecf20Sopenharmony_ci if (!reg_base) { 4428c2ecf20Sopenharmony_ci pr_err("%s: could not map cru region\n", __func__); 4438c2ecf20Sopenharmony_ci return; 4448c2ecf20Sopenharmony_ci } 4458c2ecf20Sopenharmony_ci 4468c2ecf20Sopenharmony_ci /* 4478c2ecf20Sopenharmony_ci * Make uart_pll_clk a child of the gpll, as all other sources are 4488c2ecf20Sopenharmony_ci * not that usable / stable. 4498c2ecf20Sopenharmony_ci */ 4508c2ecf20Sopenharmony_ci writel_relaxed(HIWORD_UPDATE(0x2, 0x3, 10), 4518c2ecf20Sopenharmony_ci reg_base + RK2928_CLKSEL_CON(13)); 4528c2ecf20Sopenharmony_ci 4538c2ecf20Sopenharmony_ci ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS); 4548c2ecf20Sopenharmony_ci if (IS_ERR(ctx)) { 4558c2ecf20Sopenharmony_ci pr_err("%s: rockchip clk init failed\n", __func__); 4568c2ecf20Sopenharmony_ci iounmap(reg_base); 4578c2ecf20Sopenharmony_ci return; 4588c2ecf20Sopenharmony_ci } 4598c2ecf20Sopenharmony_ci 4608c2ecf20Sopenharmony_ci clk = clk_register_fixed_factor(NULL, "usb480m", "xin24m", 0, 20, 1); 4618c2ecf20Sopenharmony_ci if (IS_ERR(clk)) 4628c2ecf20Sopenharmony_ci pr_warn("%s: could not register clock usb480m: %ld\n", 4638c2ecf20Sopenharmony_ci __func__, PTR_ERR(clk)); 4648c2ecf20Sopenharmony_ci 4658c2ecf20Sopenharmony_ci rockchip_clk_register_plls(ctx, rk3036_pll_clks, 4668c2ecf20Sopenharmony_ci ARRAY_SIZE(rk3036_pll_clks), 4678c2ecf20Sopenharmony_ci RK3036_GRF_SOC_STATUS0); 4688c2ecf20Sopenharmony_ci rockchip_clk_register_branches(ctx, rk3036_clk_branches, 4698c2ecf20Sopenharmony_ci ARRAY_SIZE(rk3036_clk_branches)); 4708c2ecf20Sopenharmony_ci rockchip_clk_protect_critical(rk3036_critical_clocks, 4718c2ecf20Sopenharmony_ci ARRAY_SIZE(rk3036_critical_clocks)); 4728c2ecf20Sopenharmony_ci 4738c2ecf20Sopenharmony_ci rockchip_clk_register_armclk(ctx, ARMCLK, "armclk", 4748c2ecf20Sopenharmony_ci mux_armclk_p, ARRAY_SIZE(mux_armclk_p), 4758c2ecf20Sopenharmony_ci &rk3036_cpuclk_data, rk3036_cpuclk_rates, 4768c2ecf20Sopenharmony_ci ARRAY_SIZE(rk3036_cpuclk_rates)); 4778c2ecf20Sopenharmony_ci 4788c2ecf20Sopenharmony_ci rockchip_register_softrst(np, 9, reg_base + RK2928_SOFTRST_CON(0), 4798c2ecf20Sopenharmony_ci ROCKCHIP_SOFTRST_HIWORD_MASK); 4808c2ecf20Sopenharmony_ci 4818c2ecf20Sopenharmony_ci rockchip_register_restart_notifier(ctx, RK2928_GLB_SRST_FST, NULL); 4828c2ecf20Sopenharmony_ci 4838c2ecf20Sopenharmony_ci rockchip_clk_of_add_provider(np, ctx); 4848c2ecf20Sopenharmony_ci} 4858c2ecf20Sopenharmony_ciCLK_OF_DECLARE(rk3036_cru, "rockchip,rk3036-cru", rk3036_clk_init); 486