18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Copyright (c) 2017 Rockchip Electronics Co. Ltd.
48c2ecf20Sopenharmony_ci * Author: Elaine <zhangqing@rock-chips.com>
58c2ecf20Sopenharmony_ci */
68c2ecf20Sopenharmony_ci
78c2ecf20Sopenharmony_ci#include <linux/clk-provider.h>
88c2ecf20Sopenharmony_ci#include <linux/io.h>
98c2ecf20Sopenharmony_ci#include <linux/of.h>
108c2ecf20Sopenharmony_ci#include <linux/of_address.h>
118c2ecf20Sopenharmony_ci#include <linux/syscore_ops.h>
128c2ecf20Sopenharmony_ci#include <dt-bindings/clock/rk3128-cru.h>
138c2ecf20Sopenharmony_ci#include "clk.h"
148c2ecf20Sopenharmony_ci
158c2ecf20Sopenharmony_ci#define RK3128_GRF_SOC_STATUS0	0x14c
168c2ecf20Sopenharmony_ci
178c2ecf20Sopenharmony_cienum rk3128_plls {
188c2ecf20Sopenharmony_ci	apll, dpll, cpll, gpll,
198c2ecf20Sopenharmony_ci};
208c2ecf20Sopenharmony_ci
218c2ecf20Sopenharmony_cistatic struct rockchip_pll_rate_table rk3128_pll_rates[] = {
228c2ecf20Sopenharmony_ci	/* _mhz, _refdiv, _fbdiv, _postdiv1, _postdiv2, _dsmpd, _frac */
238c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1608000000, 1, 67, 1, 1, 1, 0),
248c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1584000000, 1, 66, 1, 1, 1, 0),
258c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1560000000, 1, 65, 1, 1, 1, 0),
268c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1536000000, 1, 64, 1, 1, 1, 0),
278c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1512000000, 1, 63, 1, 1, 1, 0),
288c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1488000000, 1, 62, 1, 1, 1, 0),
298c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1464000000, 1, 61, 1, 1, 1, 0),
308c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1440000000, 1, 60, 1, 1, 1, 0),
318c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1416000000, 1, 59, 1, 1, 1, 0),
328c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1392000000, 1, 58, 1, 1, 1, 0),
338c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1368000000, 1, 57, 1, 1, 1, 0),
348c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1344000000, 1, 56, 1, 1, 1, 0),
358c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1320000000, 1, 55, 1, 1, 1, 0),
368c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1296000000, 1, 54, 1, 1, 1, 0),
378c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1272000000, 1, 53, 1, 1, 1, 0),
388c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1248000000, 1, 52, 1, 1, 1, 0),
398c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1200000000, 1, 50, 1, 1, 1, 0),
408c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1188000000, 2, 99, 1, 1, 1, 0),
418c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1104000000, 1, 46, 1, 1, 1, 0),
428c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1100000000, 12, 550, 1, 1, 1, 0),
438c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1008000000, 1, 84, 2, 1, 1, 0),
448c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(1000000000, 6, 500, 2, 1, 1, 0),
458c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(984000000, 1, 82, 2, 1, 1, 0),
468c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(960000000, 1, 80, 2, 1, 1, 0),
478c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(936000000, 1, 78, 2, 1, 1, 0),
488c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(912000000, 1, 76, 2, 1, 1, 0),
498c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(900000000, 4, 300, 2, 1, 1, 0),
508c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(888000000, 1, 74, 2, 1, 1, 0),
518c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(864000000, 1, 72, 2, 1, 1, 0),
528c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(840000000, 1, 70, 2, 1, 1, 0),
538c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(816000000, 1, 68, 2, 1, 1, 0),
548c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(800000000, 6, 400, 2, 1, 1, 0),
558c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(700000000, 6, 350, 2, 1, 1, 0),
568c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(696000000, 1, 58, 2, 1, 1, 0),
578c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(600000000, 1, 75, 3, 1, 1, 0),
588c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(594000000, 2, 99, 2, 1, 1, 0),
598c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(504000000, 1, 63, 3, 1, 1, 0),
608c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(500000000, 6, 250, 2, 1, 1, 0),
618c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(408000000, 1, 68, 2, 2, 1, 0),
628c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(312000000, 1, 52, 2, 2, 1, 0),
638c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(216000000, 1, 72, 4, 2, 1, 0),
648c2ecf20Sopenharmony_ci	RK3036_PLL_RATE(96000000, 1, 64, 4, 4, 1, 0),
658c2ecf20Sopenharmony_ci	{ /* sentinel */ },
668c2ecf20Sopenharmony_ci};
678c2ecf20Sopenharmony_ci
688c2ecf20Sopenharmony_ci#define RK3128_DIV_CPU_MASK		0x1f
698c2ecf20Sopenharmony_ci#define RK3128_DIV_CPU_SHIFT		8
708c2ecf20Sopenharmony_ci
718c2ecf20Sopenharmony_ci#define RK3128_DIV_PERI_MASK		0xf
728c2ecf20Sopenharmony_ci#define RK3128_DIV_PERI_SHIFT		0
738c2ecf20Sopenharmony_ci#define RK3128_DIV_ACLK_MASK		0x7
748c2ecf20Sopenharmony_ci#define RK3128_DIV_ACLK_SHIFT		4
758c2ecf20Sopenharmony_ci#define RK3128_DIV_HCLK_MASK		0x3
768c2ecf20Sopenharmony_ci#define RK3128_DIV_HCLK_SHIFT		8
778c2ecf20Sopenharmony_ci#define RK3128_DIV_PCLK_MASK		0x7
788c2ecf20Sopenharmony_ci#define RK3128_DIV_PCLK_SHIFT		12
798c2ecf20Sopenharmony_ci
808c2ecf20Sopenharmony_ci#define RK3128_CLKSEL1(_core_aclk_div, _pclk_dbg_div)			\
818c2ecf20Sopenharmony_ci{									\
828c2ecf20Sopenharmony_ci	.reg = RK2928_CLKSEL_CON(1),					\
838c2ecf20Sopenharmony_ci	.val = HIWORD_UPDATE(_pclk_dbg_div, RK3128_DIV_PERI_MASK,	\
848c2ecf20Sopenharmony_ci			     RK3128_DIV_PERI_SHIFT) |			\
858c2ecf20Sopenharmony_ci	       HIWORD_UPDATE(_core_aclk_div, RK3128_DIV_ACLK_MASK,	\
868c2ecf20Sopenharmony_ci			     RK3128_DIV_ACLK_SHIFT),			\
878c2ecf20Sopenharmony_ci}
888c2ecf20Sopenharmony_ci
898c2ecf20Sopenharmony_ci#define RK3128_CPUCLK_RATE(_prate, _core_aclk_div, _pclk_dbg_div)	\
908c2ecf20Sopenharmony_ci{									\
918c2ecf20Sopenharmony_ci	.prate = _prate,						\
928c2ecf20Sopenharmony_ci	.divs = {							\
938c2ecf20Sopenharmony_ci		RK3128_CLKSEL1(_core_aclk_div, _pclk_dbg_div),		\
948c2ecf20Sopenharmony_ci	},								\
958c2ecf20Sopenharmony_ci}
968c2ecf20Sopenharmony_ci
978c2ecf20Sopenharmony_cistatic struct rockchip_cpuclk_rate_table rk3128_cpuclk_rates[] __initdata = {
988c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1800000000, 1, 7),
998c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1704000000, 1, 7),
1008c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1608000000, 1, 7),
1018c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1512000000, 1, 7),
1028c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1488000000, 1, 5),
1038c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1416000000, 1, 5),
1048c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1392000000, 1, 5),
1058c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1296000000, 1, 5),
1068c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1200000000, 1, 5),
1078c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1104000000, 1, 5),
1088c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(1008000000, 1, 5),
1098c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(912000000, 1, 5),
1108c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(816000000, 1, 3),
1118c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(696000000, 1, 3),
1128c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(600000000, 1, 3),
1138c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(408000000, 1, 1),
1148c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(312000000, 1, 1),
1158c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(216000000,  1, 1),
1168c2ecf20Sopenharmony_ci	RK3128_CPUCLK_RATE(96000000, 1, 1),
1178c2ecf20Sopenharmony_ci};
1188c2ecf20Sopenharmony_ci
1198c2ecf20Sopenharmony_cistatic const struct rockchip_cpuclk_reg_data rk3128_cpuclk_data = {
1208c2ecf20Sopenharmony_ci	.core_reg = RK2928_CLKSEL_CON(0),
1218c2ecf20Sopenharmony_ci	.div_core_shift = 0,
1228c2ecf20Sopenharmony_ci	.div_core_mask = 0x1f,
1238c2ecf20Sopenharmony_ci	.mux_core_alt = 1,
1248c2ecf20Sopenharmony_ci	.mux_core_main = 0,
1258c2ecf20Sopenharmony_ci	.mux_core_shift = 7,
1268c2ecf20Sopenharmony_ci	.mux_core_mask = 0x1,
1278c2ecf20Sopenharmony_ci};
1288c2ecf20Sopenharmony_ci
1298c2ecf20Sopenharmony_ciPNAME(mux_pll_p)		= { "clk_24m", "xin24m" };
1308c2ecf20Sopenharmony_ci
1318c2ecf20Sopenharmony_ciPNAME(mux_ddrphy_p)		= { "dpll_ddr", "gpll_div2_ddr" };
1328c2ecf20Sopenharmony_ciPNAME(mux_armclk_p)		= { "apll_core", "gpll_div2_core" };
1338c2ecf20Sopenharmony_ciPNAME(mux_usb480m_p)		= { "usb480m_phy", "xin24m" };
1348c2ecf20Sopenharmony_ciPNAME(mux_aclk_cpu_src_p)	= { "cpll", "gpll", "gpll_div2", "gpll_div3" };
1358c2ecf20Sopenharmony_ci
1368c2ecf20Sopenharmony_ciPNAME(mux_pll_src_5plls_p)	= { "cpll", "gpll", "gpll_div2", "gpll_div3", "usb480m" };
1378c2ecf20Sopenharmony_ciPNAME(mux_pll_src_4plls_p)	= { "cpll", "gpll", "gpll_div2", "usb480m" };
1388c2ecf20Sopenharmony_ciPNAME(mux_pll_src_3plls_p)	= { "cpll", "gpll", "gpll_div2" };
1398c2ecf20Sopenharmony_ci
1408c2ecf20Sopenharmony_ciPNAME(mux_aclk_peri_src_p)	= { "gpll_peri", "cpll_peri", "gpll_div2_peri", "gpll_div3_peri" };
1418c2ecf20Sopenharmony_ciPNAME(mux_mmc_src_p)		= { "cpll", "gpll", "gpll_div2", "xin24m" };
1428c2ecf20Sopenharmony_ciPNAME(mux_clk_cif_out_src_p)		= { "clk_cif_src", "xin24m" };
1438c2ecf20Sopenharmony_ciPNAME(mux_sclk_vop_src_p)	= { "cpll", "gpll", "gpll_div2", "gpll_div3" };
1448c2ecf20Sopenharmony_ci
1458c2ecf20Sopenharmony_ciPNAME(mux_i2s0_p)		= { "i2s0_src", "i2s0_frac", "ext_i2s", "xin12m" };
1468c2ecf20Sopenharmony_ciPNAME(mux_i2s1_pre_p)		= { "i2s1_src", "i2s1_frac", "ext_i2s", "xin12m" };
1478c2ecf20Sopenharmony_ciPNAME(mux_i2s_out_p)		= { "i2s1_pre", "xin12m" };
1488c2ecf20Sopenharmony_ciPNAME(mux_sclk_spdif_p)		= { "sclk_spdif_src", "spdif_frac", "xin12m" };
1498c2ecf20Sopenharmony_ci
1508c2ecf20Sopenharmony_ciPNAME(mux_uart0_p)		= { "uart0_src", "uart0_frac", "xin24m" };
1518c2ecf20Sopenharmony_ciPNAME(mux_uart1_p)		= { "uart1_src", "uart1_frac", "xin24m" };
1528c2ecf20Sopenharmony_ciPNAME(mux_uart2_p)		= { "uart2_src", "uart2_frac", "xin24m" };
1538c2ecf20Sopenharmony_ci
1548c2ecf20Sopenharmony_ciPNAME(mux_sclk_gmac_p)	= { "sclk_gmac_src", "gmac_clkin" };
1558c2ecf20Sopenharmony_ciPNAME(mux_sclk_sfc_src_p)	= { "cpll", "gpll", "gpll_div2", "xin24m" };
1568c2ecf20Sopenharmony_ci
1578c2ecf20Sopenharmony_cistatic struct rockchip_pll_clock rk3128_pll_clks[] __initdata = {
1588c2ecf20Sopenharmony_ci	[apll] = PLL(pll_rk3036, PLL_APLL, "apll", mux_pll_p, 0, RK2928_PLL_CON(0),
1598c2ecf20Sopenharmony_ci		     RK2928_MODE_CON, 0, 1, 0, rk3128_pll_rates),
1608c2ecf20Sopenharmony_ci	[dpll] = PLL(pll_rk3036, PLL_DPLL, "dpll", mux_pll_p, 0, RK2928_PLL_CON(4),
1618c2ecf20Sopenharmony_ci		     RK2928_MODE_CON, 4, 0, 0, NULL),
1628c2ecf20Sopenharmony_ci	[cpll] = PLL(pll_rk3036, PLL_CPLL, "cpll", mux_pll_p, 0, RK2928_PLL_CON(8),
1638c2ecf20Sopenharmony_ci		     RK2928_MODE_CON, 8, 2, 0, rk3128_pll_rates),
1648c2ecf20Sopenharmony_ci	[gpll] = PLL(pll_rk3036, PLL_GPLL, "gpll", mux_pll_p, 0, RK2928_PLL_CON(12),
1658c2ecf20Sopenharmony_ci		     RK2928_MODE_CON, 12, 3, ROCKCHIP_PLL_SYNC_RATE, rk3128_pll_rates),
1668c2ecf20Sopenharmony_ci};
1678c2ecf20Sopenharmony_ci
1688c2ecf20Sopenharmony_ci#define MFLAGS CLK_MUX_HIWORD_MASK
1698c2ecf20Sopenharmony_ci#define DFLAGS CLK_DIVIDER_HIWORD_MASK
1708c2ecf20Sopenharmony_ci#define GFLAGS (CLK_GATE_HIWORD_MASK | CLK_GATE_SET_TO_DISABLE)
1718c2ecf20Sopenharmony_ci
1728c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3128_i2s0_fracmux __initdata =
1738c2ecf20Sopenharmony_ci	MUX(0, "i2s0_pre", mux_i2s0_p, CLK_SET_RATE_PARENT,
1748c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(9), 8, 2, MFLAGS);
1758c2ecf20Sopenharmony_ci
1768c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3128_i2s1_fracmux __initdata =
1778c2ecf20Sopenharmony_ci	MUX(0, "i2s1_pre", mux_i2s1_pre_p, CLK_SET_RATE_PARENT,
1788c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(3), 8, 2, MFLAGS);
1798c2ecf20Sopenharmony_ci
1808c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3128_spdif_fracmux __initdata =
1818c2ecf20Sopenharmony_ci	MUX(SCLK_SPDIF, "sclk_spdif", mux_sclk_spdif_p, CLK_SET_RATE_PARENT,
1828c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(6), 8, 2, MFLAGS);
1838c2ecf20Sopenharmony_ci
1848c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3128_uart0_fracmux __initdata =
1858c2ecf20Sopenharmony_ci	MUX(SCLK_UART0, "sclk_uart0", mux_uart0_p, CLK_SET_RATE_PARENT,
1868c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(13), 8, 2, MFLAGS);
1878c2ecf20Sopenharmony_ci
1888c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3128_uart1_fracmux __initdata =
1898c2ecf20Sopenharmony_ci	MUX(SCLK_UART1, "sclk_uart1", mux_uart1_p, CLK_SET_RATE_PARENT,
1908c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(14), 8, 2, MFLAGS);
1918c2ecf20Sopenharmony_ci
1928c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3128_uart2_fracmux __initdata =
1938c2ecf20Sopenharmony_ci	MUX(SCLK_UART2, "sclk_uart2", mux_uart2_p, CLK_SET_RATE_PARENT,
1948c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(15), 8, 2, MFLAGS);
1958c2ecf20Sopenharmony_ci
1968c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch common_clk_branches[] __initdata = {
1978c2ecf20Sopenharmony_ci	/*
1988c2ecf20Sopenharmony_ci	 * Clock-Architecture Diagram 1
1998c2ecf20Sopenharmony_ci	 */
2008c2ecf20Sopenharmony_ci
2018c2ecf20Sopenharmony_ci	FACTOR(PLL_GPLL_DIV2, "gpll_div2", "gpll", 0, 1, 2),
2028c2ecf20Sopenharmony_ci	FACTOR(PLL_GPLL_DIV3, "gpll_div3", "gpll", 0, 1, 3),
2038c2ecf20Sopenharmony_ci
2048c2ecf20Sopenharmony_ci	DIV(0, "clk_24m", "xin24m", CLK_IGNORE_UNUSED,
2058c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(4), 8, 5, DFLAGS),
2068c2ecf20Sopenharmony_ci
2078c2ecf20Sopenharmony_ci	/* PD_DDR */
2088c2ecf20Sopenharmony_ci	GATE(0, "dpll_ddr", "dpll", CLK_IGNORE_UNUSED,
2098c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 2, GFLAGS),
2108c2ecf20Sopenharmony_ci	GATE(0, "gpll_div2_ddr", "gpll_div2", CLK_IGNORE_UNUSED,
2118c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 2, GFLAGS),
2128c2ecf20Sopenharmony_ci	COMPOSITE_NOGATE(0, "ddrphy2x", mux_ddrphy_p, CLK_IGNORE_UNUSED,
2138c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(26), 8, 2, MFLAGS, 0, 2, DFLAGS | CLK_DIVIDER_POWER_OF_TWO),
2148c2ecf20Sopenharmony_ci	FACTOR(SCLK_DDRC, "clk_ddrc", "ddrphy2x", 0, 1, 2),
2158c2ecf20Sopenharmony_ci	FACTOR(0, "clk_ddrphy", "ddrphy2x", 0, 1, 2),
2168c2ecf20Sopenharmony_ci
2178c2ecf20Sopenharmony_ci	/* PD_CORE */
2188c2ecf20Sopenharmony_ci	GATE(0, "apll_core", "apll", CLK_IGNORE_UNUSED,
2198c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 6, GFLAGS),
2208c2ecf20Sopenharmony_ci	GATE(0, "gpll_div2_core", "gpll_div2", CLK_IGNORE_UNUSED,
2218c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 6, GFLAGS),
2228c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(0, "pclk_dbg", "armclk", CLK_IGNORE_UNUSED,
2238c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(1), 0, 4, DFLAGS | CLK_DIVIDER_READ_ONLY,
2248c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 0, GFLAGS),
2258c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(0, "armcore", "armclk", CLK_IGNORE_UNUSED,
2268c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(1), 4, 3, DFLAGS | CLK_DIVIDER_READ_ONLY,
2278c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 7, GFLAGS),
2288c2ecf20Sopenharmony_ci
2298c2ecf20Sopenharmony_ci	/* PD_MISC */
2308c2ecf20Sopenharmony_ci	MUX(SCLK_USB480M, "usb480m", mux_usb480m_p, CLK_SET_RATE_PARENT,
2318c2ecf20Sopenharmony_ci			RK2928_MISC_CON, 15, 1, MFLAGS),
2328c2ecf20Sopenharmony_ci
2338c2ecf20Sopenharmony_ci	/* PD_CPU */
2348c2ecf20Sopenharmony_ci	COMPOSITE(0, "aclk_cpu_src", mux_aclk_cpu_src_p, 0,
2358c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(0), 13, 2, MFLAGS, 8, 5, DFLAGS,
2368c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 1, GFLAGS),
2378c2ecf20Sopenharmony_ci	GATE(ACLK_CPU, "aclk_cpu", "aclk_cpu_src", 0,
2388c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 3, GFLAGS),
2398c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(HCLK_CPU, "hclk_cpu", "aclk_cpu_src", 0,
2408c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(1), 8, 2, DFLAGS,
2418c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 4, GFLAGS),
2428c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(PCLK_CPU, "pclk_cpu", "aclk_cpu_src", 0,
2438c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(1), 12, 2, DFLAGS,
2448c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 5, GFLAGS),
2458c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(SCLK_CRYPTO, "clk_crypto", "aclk_cpu_src", 0,
2468c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(24), 0, 2, DFLAGS,
2478c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 12, GFLAGS),
2488c2ecf20Sopenharmony_ci
2498c2ecf20Sopenharmony_ci	/* PD_VIDEO */
2508c2ecf20Sopenharmony_ci	COMPOSITE(ACLK_VEPU, "aclk_vepu", mux_pll_src_5plls_p, 0,
2518c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(32), 5, 3, MFLAGS, 0, 5, DFLAGS,
2528c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 9, GFLAGS),
2538c2ecf20Sopenharmony_ci	FACTOR(HCLK_VEPU, "hclk_vepu", "aclk_vepu", 0, 1, 4),
2548c2ecf20Sopenharmony_ci
2558c2ecf20Sopenharmony_ci	COMPOSITE(ACLK_VDPU, "aclk_vdpu", mux_pll_src_5plls_p, 0,
2568c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(32), 13, 3, MFLAGS, 8, 5, DFLAGS,
2578c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 11, GFLAGS),
2588c2ecf20Sopenharmony_ci	FACTOR_GATE(HCLK_VDPU, "hclk_vdpu", "aclk_vdpu", 0, 1, 4,
2598c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 12, GFLAGS),
2608c2ecf20Sopenharmony_ci
2618c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_HEVC_CORE, "sclk_hevc_core", mux_pll_src_5plls_p, 0,
2628c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(34), 13, 3, MFLAGS, 8, 5, DFLAGS,
2638c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 10, GFLAGS),
2648c2ecf20Sopenharmony_ci
2658c2ecf20Sopenharmony_ci	/* PD_VIO */
2668c2ecf20Sopenharmony_ci	COMPOSITE(ACLK_VIO0, "aclk_vio0", mux_pll_src_5plls_p, 0,
2678c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(31), 5, 3, MFLAGS, 0, 5, DFLAGS,
2688c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 0, GFLAGS),
2698c2ecf20Sopenharmony_ci	COMPOSITE(ACLK_VIO1, "aclk_vio1", mux_pll_src_5plls_p, 0,
2708c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(31), 13, 3, MFLAGS, 8, 5, DFLAGS,
2718c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 4, GFLAGS),
2728c2ecf20Sopenharmony_ci	COMPOSITE(HCLK_VIO, "hclk_vio", mux_pll_src_4plls_p, 0,
2738c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(30), 14, 2, MFLAGS, 8, 5, DFLAGS,
2748c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 11, GFLAGS),
2758c2ecf20Sopenharmony_ci
2768c2ecf20Sopenharmony_ci	/* PD_PERI */
2778c2ecf20Sopenharmony_ci	GATE(0, "gpll_peri", "gpll", CLK_IGNORE_UNUSED,
2788c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 0, GFLAGS),
2798c2ecf20Sopenharmony_ci	GATE(0, "cpll_peri", "cpll", CLK_IGNORE_UNUSED,
2808c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 0, GFLAGS),
2818c2ecf20Sopenharmony_ci	GATE(0, "gpll_div2_peri", "gpll_div2", CLK_IGNORE_UNUSED,
2828c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 0, GFLAGS),
2838c2ecf20Sopenharmony_ci	GATE(0, "gpll_div3_peri", "gpll_div3", CLK_IGNORE_UNUSED,
2848c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 0, GFLAGS),
2858c2ecf20Sopenharmony_ci	COMPOSITE_NOGATE(0, "aclk_peri_src", mux_aclk_peri_src_p, 0,
2868c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(10), 14, 2, MFLAGS, 0, 5, DFLAGS),
2878c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(PCLK_PERI, "pclk_peri", "aclk_peri_src", 0,
2888c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(10), 12, 2, DFLAGS | CLK_DIVIDER_POWER_OF_TWO,
2898c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 3, GFLAGS),
2908c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(HCLK_PERI, "hclk_peri", "aclk_peri_src", 0,
2918c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(10), 8, 2, DFLAGS | CLK_DIVIDER_POWER_OF_TWO,
2928c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 2, GFLAGS),
2938c2ecf20Sopenharmony_ci	GATE(ACLK_PERI, "aclk_peri", "aclk_peri_src", 0,
2948c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 1, GFLAGS),
2958c2ecf20Sopenharmony_ci
2968c2ecf20Sopenharmony_ci	GATE(SCLK_TIMER0, "sclk_timer0", "xin24m", 0,
2978c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 3, GFLAGS),
2988c2ecf20Sopenharmony_ci	GATE(SCLK_TIMER1, "sclk_timer1", "xin24m", 0,
2998c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 4, GFLAGS),
3008c2ecf20Sopenharmony_ci	GATE(SCLK_TIMER2, "sclk_timer2", "xin24m", 0,
3018c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 5, GFLAGS),
3028c2ecf20Sopenharmony_ci	GATE(SCLK_TIMER3, "sclk_timer3", "xin24m", 0,
3038c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 6, GFLAGS),
3048c2ecf20Sopenharmony_ci	GATE(SCLK_TIMER4, "sclk_timer4", "xin24m", 0,
3058c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 7, GFLAGS),
3068c2ecf20Sopenharmony_ci	GATE(SCLK_TIMER5, "sclk_timer5", "xin24m", 0,
3078c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 8, GFLAGS),
3088c2ecf20Sopenharmony_ci
3098c2ecf20Sopenharmony_ci	GATE(SCLK_PVTM_CORE, "clk_pvtm_core", "xin24m", 0,
3108c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 0, GFLAGS),
3118c2ecf20Sopenharmony_ci	GATE(SCLK_PVTM_GPU, "clk_pvtm_gpu", "xin24m", 0,
3128c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 1, GFLAGS),
3138c2ecf20Sopenharmony_ci	GATE(SCLK_PVTM_FUNC, "clk_pvtm_func", "xin24m", 0,
3148c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 2, GFLAGS),
3158c2ecf20Sopenharmony_ci	GATE(SCLK_MIPI_24M, "clk_mipi_24m", "xin24m", CLK_IGNORE_UNUSED,
3168c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 15, GFLAGS),
3178c2ecf20Sopenharmony_ci
3188c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_SDMMC, "sclk_sdmmc0", mux_mmc_src_p, 0,
3198c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(11), 6, 2, MFLAGS, 0, 6, DFLAGS,
3208c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 11, GFLAGS),
3218c2ecf20Sopenharmony_ci
3228c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_SDIO, "sclk_sdio", mux_mmc_src_p, 0,
3238c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(12), 6, 2, MFLAGS, 0, 6, DFLAGS,
3248c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 13, GFLAGS),
3258c2ecf20Sopenharmony_ci
3268c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_EMMC, "sclk_emmc", mux_mmc_src_p, 0,
3278c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(12), 14, 2, MFLAGS, 8, 6, DFLAGS,
3288c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 14, GFLAGS),
3298c2ecf20Sopenharmony_ci
3308c2ecf20Sopenharmony_ci	DIV(SCLK_PVTM, "clk_pvtm", "clk_pvtm_func", 0,
3318c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(2), 0, 7, DFLAGS),
3328c2ecf20Sopenharmony_ci
3338c2ecf20Sopenharmony_ci	/*
3348c2ecf20Sopenharmony_ci	 * Clock-Architecture Diagram 2
3358c2ecf20Sopenharmony_ci	 */
3368c2ecf20Sopenharmony_ci	COMPOSITE(DCLK_VOP, "dclk_vop", mux_sclk_vop_src_p, 0,
3378c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(27), 0, 2, MFLAGS, 8, 8, DFLAGS,
3388c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 1, GFLAGS),
3398c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_VOP, "sclk_vop", mux_sclk_vop_src_p, 0,
3408c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(28), 0, 2, MFLAGS, 8, 8, DFLAGS,
3418c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 2, GFLAGS),
3428c2ecf20Sopenharmony_ci	COMPOSITE(DCLK_EBC, "dclk_ebc", mux_pll_src_3plls_p, 0,
3438c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(23), 0, 2, MFLAGS, 8, 8, DFLAGS,
3448c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 4, GFLAGS),
3458c2ecf20Sopenharmony_ci
3468c2ecf20Sopenharmony_ci	FACTOR(0, "xin12m", "xin24m", 0, 1, 2),
3478c2ecf20Sopenharmony_ci
3488c2ecf20Sopenharmony_ci	COMPOSITE_NODIV(SCLK_CIF_SRC, "sclk_cif_src", mux_pll_src_4plls_p, 0,
3498c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(29), 0, 2, MFLAGS,
3508c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 7, GFLAGS),
3518c2ecf20Sopenharmony_ci	MUX(SCLK_CIF_OUT_SRC, "sclk_cif_out_src", mux_clk_cif_out_src_p, 0,
3528c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(13), 14, 2, MFLAGS),
3538c2ecf20Sopenharmony_ci	DIV(SCLK_CIF_OUT, "sclk_cif_out", "sclk_cif_out_src", 0,
3548c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(29), 2, 5, DFLAGS),
3558c2ecf20Sopenharmony_ci
3568c2ecf20Sopenharmony_ci	COMPOSITE(0, "i2s0_src", mux_pll_src_3plls_p, 0,
3578c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(9), 14, 2, MFLAGS, 0, 7, DFLAGS,
3588c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(4), 4, GFLAGS),
3598c2ecf20Sopenharmony_ci	COMPOSITE_FRACMUX(0, "i2s0_frac", "i2s0_src", CLK_SET_RATE_PARENT,
3608c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(8), 0,
3618c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(4), 5, GFLAGS,
3628c2ecf20Sopenharmony_ci			&rk3128_i2s0_fracmux),
3638c2ecf20Sopenharmony_ci	GATE(SCLK_I2S0, "sclk_i2s0", "i2s0_pre", CLK_SET_RATE_PARENT,
3648c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(4), 6, GFLAGS),
3658c2ecf20Sopenharmony_ci
3668c2ecf20Sopenharmony_ci	COMPOSITE(0, "i2s1_src", mux_pll_src_3plls_p, 0,
3678c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(3), 14, 2, MFLAGS, 0, 7, DFLAGS,
3688c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 9, GFLAGS),
3698c2ecf20Sopenharmony_ci	COMPOSITE_FRACMUX(0, "i2s1_frac", "i2s1_src", CLK_SET_RATE_PARENT,
3708c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(7), 0,
3718c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 10, GFLAGS,
3728c2ecf20Sopenharmony_ci			&rk3128_i2s1_fracmux),
3738c2ecf20Sopenharmony_ci	GATE(SCLK_I2S1, "sclk_i2s1", "i2s1_pre", CLK_SET_RATE_PARENT,
3748c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 14, GFLAGS),
3758c2ecf20Sopenharmony_ci	COMPOSITE_NODIV(SCLK_I2S_OUT, "i2s_out", mux_i2s_out_p, 0,
3768c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(3), 12, 1, MFLAGS,
3778c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(0), 13, GFLAGS),
3788c2ecf20Sopenharmony_ci
3798c2ecf20Sopenharmony_ci	COMPOSITE(0, "sclk_spdif_src", mux_pll_src_3plls_p, 0,
3808c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(6), 14, 2, MFLAGS, 0, 7, DFLAGS,
3818c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 10, GFLAGS),
3828c2ecf20Sopenharmony_ci	COMPOSITE_FRACMUX(0, "spdif_frac", "sclk_spdif_src", CLK_SET_RATE_PARENT,
3838c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(20), 0,
3848c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 12, GFLAGS,
3858c2ecf20Sopenharmony_ci			&rk3128_spdif_fracmux),
3868c2ecf20Sopenharmony_ci
3878c2ecf20Sopenharmony_ci	GATE(0, "jtag", "ext_jtag", CLK_IGNORE_UNUSED,
3888c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 3, GFLAGS),
3898c2ecf20Sopenharmony_ci
3908c2ecf20Sopenharmony_ci	GATE(SCLK_OTGPHY0, "sclk_otgphy0", "xin12m", 0,
3918c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 5, GFLAGS),
3928c2ecf20Sopenharmony_ci	GATE(SCLK_OTGPHY1, "sclk_otgphy1", "xin12m", 0,
3938c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 6, GFLAGS),
3948c2ecf20Sopenharmony_ci
3958c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(SCLK_SARADC, "sclk_saradc", "xin24m", 0,
3968c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(24), 8, 8, DFLAGS,
3978c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 8, GFLAGS),
3988c2ecf20Sopenharmony_ci
3998c2ecf20Sopenharmony_ci	COMPOSITE(ACLK_GPU, "aclk_gpu", mux_pll_src_5plls_p, 0,
4008c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(34), 5, 3, MFLAGS, 0, 5, DFLAGS,
4018c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 13, GFLAGS),
4028c2ecf20Sopenharmony_ci
4038c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_SPI0, "sclk_spi0", mux_pll_src_3plls_p, 0,
4048c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(25), 8, 2, MFLAGS, 0, 7, DFLAGS,
4058c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 9, GFLAGS),
4068c2ecf20Sopenharmony_ci
4078c2ecf20Sopenharmony_ci	/* PD_UART */
4088c2ecf20Sopenharmony_ci	COMPOSITE(0, "uart0_src", mux_pll_src_4plls_p, 0,
4098c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(13), 12, 2, MFLAGS, 0, 7, DFLAGS,
4108c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 8, GFLAGS),
4118c2ecf20Sopenharmony_ci	MUX(0, "uart12_src", mux_pll_src_4plls_p, 0,
4128c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(13), 14, 2, MFLAGS),
4138c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(0, "uart1_src", "uart12_src", 0,
4148c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(14), 0, 7, DFLAGS,
4158c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 10, GFLAGS),
4168c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(0, "uart2_src", "uart12_src", 0,
4178c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(15), 0, 7, DFLAGS,
4188c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 13, GFLAGS),
4198c2ecf20Sopenharmony_ci	COMPOSITE_FRACMUX(0, "uart0_frac", "uart0_src", CLK_SET_RATE_PARENT,
4208c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(17), 0,
4218c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 9, GFLAGS,
4228c2ecf20Sopenharmony_ci			&rk3128_uart0_fracmux),
4238c2ecf20Sopenharmony_ci	COMPOSITE_FRACMUX(0, "uart1_frac", "uart1_src", CLK_SET_RATE_PARENT,
4248c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(18), 0,
4258c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 11, GFLAGS,
4268c2ecf20Sopenharmony_ci			&rk3128_uart1_fracmux),
4278c2ecf20Sopenharmony_ci	COMPOSITE_FRACMUX(0, "uart2_frac", "uart2_src", CLK_SET_RATE_PARENT,
4288c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(19), 0,
4298c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 13, GFLAGS,
4308c2ecf20Sopenharmony_ci			&rk3128_uart2_fracmux),
4318c2ecf20Sopenharmony_ci
4328c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_MAC_SRC, "sclk_gmac_src", mux_pll_src_3plls_p, 0,
4338c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(5), 6, 2, MFLAGS, 0, 5, DFLAGS,
4348c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 7, GFLAGS),
4358c2ecf20Sopenharmony_ci	MUX(SCLK_MAC, "sclk_gmac", mux_sclk_gmac_p, 0,
4368c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(5), 15, 1, MFLAGS),
4378c2ecf20Sopenharmony_ci	GATE(SCLK_MAC_REFOUT, "sclk_mac_refout", "sclk_gmac", 0,
4388c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 5, GFLAGS),
4398c2ecf20Sopenharmony_ci	GATE(SCLK_MAC_REF, "sclk_mac_ref", "sclk_gmac", 0,
4408c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 4, GFLAGS),
4418c2ecf20Sopenharmony_ci	GATE(SCLK_MAC_RX, "sclk_mac_rx", "sclk_gmac", 0,
4428c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 6, GFLAGS),
4438c2ecf20Sopenharmony_ci	GATE(SCLK_MAC_TX, "sclk_mac_tx", "sclk_gmac", 0,
4448c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(2), 7, GFLAGS),
4458c2ecf20Sopenharmony_ci
4468c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_TSP, "sclk_tsp", mux_pll_src_3plls_p, 0,
4478c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(4), 6, 2, MFLAGS, 0, 5, DFLAGS,
4488c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 14, GFLAGS),
4498c2ecf20Sopenharmony_ci
4508c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_NANDC, "sclk_nandc", mux_pll_src_3plls_p, 0,
4518c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(2), 14, 2, MFLAGS, 8, 5, DFLAGS,
4528c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(10), 15, GFLAGS),
4538c2ecf20Sopenharmony_ci
4548c2ecf20Sopenharmony_ci	COMPOSITE_NOMUX(PCLK_PMU_PRE, "pclk_pmu_pre", "cpll", 0,
4558c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(29), 8, 6, DFLAGS,
4568c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(1), 0, GFLAGS),
4578c2ecf20Sopenharmony_ci
4588c2ecf20Sopenharmony_ci	/*
4598c2ecf20Sopenharmony_ci	 * Clock-Architecture Diagram 3
4608c2ecf20Sopenharmony_ci	 */
4618c2ecf20Sopenharmony_ci
4628c2ecf20Sopenharmony_ci	/* PD_VOP */
4638c2ecf20Sopenharmony_ci	GATE(ACLK_LCDC0, "aclk_lcdc0", "aclk_vio0", 0, RK2928_CLKGATE_CON(6), 0, GFLAGS),
4648c2ecf20Sopenharmony_ci	GATE(ACLK_CIF, "aclk_cif", "aclk_vio0", 0, RK2928_CLKGATE_CON(6), 5, GFLAGS),
4658c2ecf20Sopenharmony_ci	GATE(ACLK_RGA, "aclk_rga", "aclk_vio0", 0, RK2928_CLKGATE_CON(6), 11, GFLAGS),
4668c2ecf20Sopenharmony_ci	GATE(0, "aclk_vio0_niu", "aclk_vio0", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(6), 13, GFLAGS),
4678c2ecf20Sopenharmony_ci
4688c2ecf20Sopenharmony_ci	GATE(ACLK_IEP, "aclk_iep", "aclk_vio1", 0, RK2928_CLKGATE_CON(9), 8, GFLAGS),
4698c2ecf20Sopenharmony_ci	GATE(0, "aclk_vio1_niu", "aclk_vio1", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 10, GFLAGS),
4708c2ecf20Sopenharmony_ci
4718c2ecf20Sopenharmony_ci	GATE(HCLK_VIO_H2P, "hclk_vio_h2p", "hclk_vio", 0, RK2928_CLKGATE_CON(9), 5, GFLAGS),
4728c2ecf20Sopenharmony_ci	GATE(PCLK_MIPI, "pclk_mipi", "hclk_vio", 0, RK2928_CLKGATE_CON(9), 6, GFLAGS),
4738c2ecf20Sopenharmony_ci	GATE(HCLK_RGA, "hclk_rga", "hclk_vio", 0, RK2928_CLKGATE_CON(6), 10, GFLAGS),
4748c2ecf20Sopenharmony_ci	GATE(HCLK_LCDC0, "hclk_lcdc0", "hclk_vio", 0, RK2928_CLKGATE_CON(6), 1, GFLAGS),
4758c2ecf20Sopenharmony_ci	GATE(HCLK_IEP, "hclk_iep", "hclk_vio", 0, RK2928_CLKGATE_CON(9), 7, GFLAGS),
4768c2ecf20Sopenharmony_ci	GATE(0, "hclk_vio_niu", "hclk_vio", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(6), 12, GFLAGS),
4778c2ecf20Sopenharmony_ci	GATE(HCLK_CIF, "hclk_cif", "hclk_vio", 0, RK2928_CLKGATE_CON(6), 4, GFLAGS),
4788c2ecf20Sopenharmony_ci	GATE(HCLK_EBC, "hclk_ebc", "hclk_vio", 0, RK2928_CLKGATE_CON(9), 9, GFLAGS),
4798c2ecf20Sopenharmony_ci
4808c2ecf20Sopenharmony_ci	/* PD_PERI */
4818c2ecf20Sopenharmony_ci	GATE(0, "aclk_peri_axi", "aclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 3, GFLAGS),
4828c2ecf20Sopenharmony_ci	GATE(ACLK_GMAC, "aclk_gmac", "aclk_peri", 0, RK2928_CLKGATE_CON(10), 10, GFLAGS),
4838c2ecf20Sopenharmony_ci	GATE(ACLK_DMAC, "aclk_dmac", "aclk_peri", 0, RK2928_CLKGATE_CON(5), 1, GFLAGS),
4848c2ecf20Sopenharmony_ci	GATE(0, "aclk_peri_niu", "aclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 15, GFLAGS),
4858c2ecf20Sopenharmony_ci	GATE(0, "aclk_cpu_to_peri", "aclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 2, GFLAGS),
4868c2ecf20Sopenharmony_ci
4878c2ecf20Sopenharmony_ci	GATE(HCLK_I2S_8CH, "hclk_i2s_8ch", "hclk_peri", 0, RK2928_CLKGATE_CON(7), 4, GFLAGS),
4888c2ecf20Sopenharmony_ci	GATE(0, "hclk_peri_matrix", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 0, GFLAGS),
4898c2ecf20Sopenharmony_ci	GATE(HCLK_I2S_2CH, "hclk_i2s_2ch", "hclk_peri", 0, RK2928_CLKGATE_CON(7), 2, GFLAGS),
4908c2ecf20Sopenharmony_ci	GATE(0, "hclk_usb_peri", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 13, GFLAGS),
4918c2ecf20Sopenharmony_ci	GATE(HCLK_HOST2, "hclk_host2", "hclk_peri", 0, RK2928_CLKGATE_CON(7), 3, GFLAGS),
4928c2ecf20Sopenharmony_ci	GATE(HCLK_OTG, "hclk_otg", "hclk_peri", 0, RK2928_CLKGATE_CON(5), 13, GFLAGS),
4938c2ecf20Sopenharmony_ci	GATE(0, "hclk_peri_ahb", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 14, GFLAGS),
4948c2ecf20Sopenharmony_ci	GATE(HCLK_SPDIF, "hclk_spdif", "hclk_peri", 0, RK2928_CLKGATE_CON(10), 9, GFLAGS),
4958c2ecf20Sopenharmony_ci	GATE(HCLK_TSP, "hclk_tsp", "hclk_peri", 0, RK2928_CLKGATE_CON(10), 12, GFLAGS),
4968c2ecf20Sopenharmony_ci	GATE(HCLK_SDMMC, "hclk_sdmmc", "hclk_peri", 0, RK2928_CLKGATE_CON(5), 10, GFLAGS),
4978c2ecf20Sopenharmony_ci	GATE(HCLK_SDIO, "hclk_sdio", "hclk_peri", 0, RK2928_CLKGATE_CON(5), 11, GFLAGS),
4988c2ecf20Sopenharmony_ci	GATE(HCLK_EMMC, "hclk_emmc", "hclk_peri", 0, RK2928_CLKGATE_CON(7), 0, GFLAGS),
4998c2ecf20Sopenharmony_ci	GATE(0, "hclk_emmc_peri", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(3), 6, GFLAGS),
5008c2ecf20Sopenharmony_ci	GATE(HCLK_NANDC, "hclk_nandc", "hclk_peri", 0, RK2928_CLKGATE_CON(5), 9, GFLAGS),
5018c2ecf20Sopenharmony_ci	GATE(HCLK_USBHOST, "hclk_usbhost", "hclk_peri", 0, RK2928_CLKGATE_CON(10), 14, GFLAGS),
5028c2ecf20Sopenharmony_ci
5038c2ecf20Sopenharmony_ci	GATE(PCLK_SIM_CARD, "pclk_sim_card", "pclk_peri", 0, RK2928_CLKGATE_CON(9), 12, GFLAGS),
5048c2ecf20Sopenharmony_ci	GATE(PCLK_GMAC, "pclk_gmac", "pclk_peri", 0, RK2928_CLKGATE_CON(10), 11, GFLAGS),
5058c2ecf20Sopenharmony_ci	GATE(0, "pclk_peri_axi", "pclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 1, GFLAGS),
5068c2ecf20Sopenharmony_ci	GATE(PCLK_SPI0, "pclk_spi0", "pclk_peri", 0, RK2928_CLKGATE_CON(7), 12, GFLAGS),
5078c2ecf20Sopenharmony_ci	GATE(PCLK_UART0, "pclk_uart0", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 0, GFLAGS),
5088c2ecf20Sopenharmony_ci	GATE(PCLK_UART1, "pclk_uart1", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 1, GFLAGS),
5098c2ecf20Sopenharmony_ci	GATE(PCLK_UART2, "pclk_uart2", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 2, GFLAGS),
5108c2ecf20Sopenharmony_ci	GATE(PCLK_PWM, "pclk_pwm", "pclk_peri", 0, RK2928_CLKGATE_CON(7), 10, GFLAGS),
5118c2ecf20Sopenharmony_ci	GATE(PCLK_WDT, "pclk_wdt", "pclk_peri", 0, RK2928_CLKGATE_CON(7), 15, GFLAGS),
5128c2ecf20Sopenharmony_ci	GATE(PCLK_I2C0, "pclk_i2c0", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 4, GFLAGS),
5138c2ecf20Sopenharmony_ci	GATE(PCLK_I2C1, "pclk_i2c1", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 5, GFLAGS),
5148c2ecf20Sopenharmony_ci	GATE(PCLK_I2C2, "pclk_i2c2", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 6, GFLAGS),
5158c2ecf20Sopenharmony_ci	GATE(PCLK_I2C3, "pclk_i2c3", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 7, GFLAGS),
5168c2ecf20Sopenharmony_ci	GATE(PCLK_SARADC, "pclk_saradc", "pclk_peri", 0, RK2928_CLKGATE_CON(7), 14, GFLAGS),
5178c2ecf20Sopenharmony_ci	GATE(PCLK_EFUSE, "pclk_efuse", "pclk_peri", 0, RK2928_CLKGATE_CON(5), 2, GFLAGS),
5188c2ecf20Sopenharmony_ci	GATE(PCLK_TIMER, "pclk_timer", "pclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(7), 7, GFLAGS),
5198c2ecf20Sopenharmony_ci	GATE(PCLK_GPIO0, "pclk_gpio0", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 9, GFLAGS),
5208c2ecf20Sopenharmony_ci	GATE(PCLK_GPIO1, "pclk_gpio1", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 10, GFLAGS),
5218c2ecf20Sopenharmony_ci	GATE(PCLK_GPIO2, "pclk_gpio2", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 11, GFLAGS),
5228c2ecf20Sopenharmony_ci	GATE(PCLK_GPIO3, "pclk_gpio3", "pclk_peri", 0, RK2928_CLKGATE_CON(8), 12, GFLAGS),
5238c2ecf20Sopenharmony_ci
5248c2ecf20Sopenharmony_ci	/* PD_BUS */
5258c2ecf20Sopenharmony_ci	GATE(0, "aclk_initmem", "aclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 12, GFLAGS),
5268c2ecf20Sopenharmony_ci	GATE(0, "aclk_strc_sys", "aclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(4), 10, GFLAGS),
5278c2ecf20Sopenharmony_ci
5288c2ecf20Sopenharmony_ci	GATE(0, "hclk_rom", "hclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(5), 6, GFLAGS),
5298c2ecf20Sopenharmony_ci	GATE(HCLK_CRYPTO, "hclk_crypto", "hclk_cpu", 0, RK2928_CLKGATE_CON(3), 5, GFLAGS),
5308c2ecf20Sopenharmony_ci
5318c2ecf20Sopenharmony_ci	GATE(PCLK_ACODEC, "pclk_acodec", "pclk_cpu", 0, RK2928_CLKGATE_CON(5), 14, GFLAGS),
5328c2ecf20Sopenharmony_ci	GATE(0, "pclk_ddrupctl", "pclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(5), 7, GFLAGS),
5338c2ecf20Sopenharmony_ci	GATE(0, "pclk_grf", "pclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(5), 4, GFLAGS),
5348c2ecf20Sopenharmony_ci	GATE(0, "pclk_mipiphy", "pclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(5), 0, GFLAGS),
5358c2ecf20Sopenharmony_ci
5368c2ecf20Sopenharmony_ci	GATE(0, "pclk_pmu", "pclk_pmu_pre", 0, RK2928_CLKGATE_CON(9), 2, GFLAGS),
5378c2ecf20Sopenharmony_ci	GATE(0, "pclk_pmu_niu", "pclk_pmu_pre", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 3, GFLAGS),
5388c2ecf20Sopenharmony_ci
5398c2ecf20Sopenharmony_ci	/* PD_MMC */
5408c2ecf20Sopenharmony_ci	MMC(SCLK_SDMMC_DRV,    "sdmmc_drv",    "sclk_sdmmc", RK3228_SDMMC_CON0, 1),
5418c2ecf20Sopenharmony_ci	MMC(SCLK_SDMMC_SAMPLE, "sdmmc_sample", "sclk_sdmmc", RK3228_SDMMC_CON1, 0),
5428c2ecf20Sopenharmony_ci
5438c2ecf20Sopenharmony_ci	MMC(SCLK_SDIO_DRV,     "sdio_drv",     "sclk_sdio",  RK3228_SDIO_CON0,  1),
5448c2ecf20Sopenharmony_ci	MMC(SCLK_SDIO_SAMPLE,  "sdio_sample",  "sclk_sdio",  RK3228_SDIO_CON1,  0),
5458c2ecf20Sopenharmony_ci
5468c2ecf20Sopenharmony_ci	MMC(SCLK_EMMC_DRV,     "emmc_drv",     "sclk_emmc",  RK3228_EMMC_CON0,  1),
5478c2ecf20Sopenharmony_ci	MMC(SCLK_EMMC_SAMPLE,  "emmc_sample",  "sclk_emmc",  RK3228_EMMC_CON1,  0),
5488c2ecf20Sopenharmony_ci};
5498c2ecf20Sopenharmony_ci
5508c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3126_clk_branches[] __initdata = {
5518c2ecf20Sopenharmony_ci	GATE(0, "pclk_stimer", "pclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(3), 15, GFLAGS),
5528c2ecf20Sopenharmony_ci	GATE(0, "pclk_s_efuse", "pclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(3), 14, GFLAGS),
5538c2ecf20Sopenharmony_ci	GATE(0, "pclk_sgrf", "pclk_cpu", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(3), 8, GFLAGS),
5548c2ecf20Sopenharmony_ci};
5558c2ecf20Sopenharmony_ci
5568c2ecf20Sopenharmony_cistatic struct rockchip_clk_branch rk3128_clk_branches[] __initdata = {
5578c2ecf20Sopenharmony_ci	COMPOSITE(SCLK_SFC, "sclk_sfc", mux_sclk_sfc_src_p, 0,
5588c2ecf20Sopenharmony_ci			RK2928_CLKSEL_CON(11), 14, 2, MFLAGS, 8, 5, DFLAGS,
5598c2ecf20Sopenharmony_ci			RK2928_CLKGATE_CON(3), 15, GFLAGS),
5608c2ecf20Sopenharmony_ci
5618c2ecf20Sopenharmony_ci	GATE(HCLK_GPS, "hclk_gps", "aclk_peri", 0, RK2928_CLKGATE_CON(3), 14, GFLAGS),
5628c2ecf20Sopenharmony_ci	GATE(PCLK_HDMI, "pclk_hdmi", "pclk_cpu", 0, RK2928_CLKGATE_CON(3), 8, GFLAGS),
5638c2ecf20Sopenharmony_ci};
5648c2ecf20Sopenharmony_ci
5658c2ecf20Sopenharmony_cistatic const char *const rk3128_critical_clocks[] __initconst = {
5668c2ecf20Sopenharmony_ci	"aclk_cpu",
5678c2ecf20Sopenharmony_ci	"hclk_cpu",
5688c2ecf20Sopenharmony_ci	"pclk_cpu",
5698c2ecf20Sopenharmony_ci	"aclk_peri",
5708c2ecf20Sopenharmony_ci	"hclk_peri",
5718c2ecf20Sopenharmony_ci	"pclk_peri",
5728c2ecf20Sopenharmony_ci	"pclk_pmu",
5738c2ecf20Sopenharmony_ci	"sclk_timer5",
5748c2ecf20Sopenharmony_ci};
5758c2ecf20Sopenharmony_ci
5768c2ecf20Sopenharmony_cistatic struct rockchip_clk_provider *__init rk3128_common_clk_init(struct device_node *np)
5778c2ecf20Sopenharmony_ci{
5788c2ecf20Sopenharmony_ci	struct rockchip_clk_provider *ctx;
5798c2ecf20Sopenharmony_ci	void __iomem *reg_base;
5808c2ecf20Sopenharmony_ci
5818c2ecf20Sopenharmony_ci	reg_base = of_iomap(np, 0);
5828c2ecf20Sopenharmony_ci	if (!reg_base) {
5838c2ecf20Sopenharmony_ci		pr_err("%s: could not map cru region\n", __func__);
5848c2ecf20Sopenharmony_ci		return ERR_PTR(-ENOMEM);
5858c2ecf20Sopenharmony_ci	}
5868c2ecf20Sopenharmony_ci
5878c2ecf20Sopenharmony_ci	ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS);
5888c2ecf20Sopenharmony_ci	if (IS_ERR(ctx)) {
5898c2ecf20Sopenharmony_ci		pr_err("%s: rockchip clk init failed\n", __func__);
5908c2ecf20Sopenharmony_ci		iounmap(reg_base);
5918c2ecf20Sopenharmony_ci		return ERR_PTR(-ENOMEM);
5928c2ecf20Sopenharmony_ci	}
5938c2ecf20Sopenharmony_ci
5948c2ecf20Sopenharmony_ci	rockchip_clk_register_plls(ctx, rk3128_pll_clks,
5958c2ecf20Sopenharmony_ci				   ARRAY_SIZE(rk3128_pll_clks),
5968c2ecf20Sopenharmony_ci				   RK3128_GRF_SOC_STATUS0);
5978c2ecf20Sopenharmony_ci	rockchip_clk_register_branches(ctx, common_clk_branches,
5988c2ecf20Sopenharmony_ci				  ARRAY_SIZE(common_clk_branches));
5998c2ecf20Sopenharmony_ci
6008c2ecf20Sopenharmony_ci	rockchip_clk_register_armclk(ctx, ARMCLK, "armclk",
6018c2ecf20Sopenharmony_ci			mux_armclk_p, ARRAY_SIZE(mux_armclk_p),
6028c2ecf20Sopenharmony_ci			&rk3128_cpuclk_data, rk3128_cpuclk_rates,
6038c2ecf20Sopenharmony_ci			ARRAY_SIZE(rk3128_cpuclk_rates));
6048c2ecf20Sopenharmony_ci
6058c2ecf20Sopenharmony_ci	rockchip_register_softrst(np, 9, reg_base + RK2928_SOFTRST_CON(0),
6068c2ecf20Sopenharmony_ci				  ROCKCHIP_SOFTRST_HIWORD_MASK);
6078c2ecf20Sopenharmony_ci
6088c2ecf20Sopenharmony_ci	rockchip_register_restart_notifier(ctx, RK2928_GLB_SRST_FST, NULL);
6098c2ecf20Sopenharmony_ci
6108c2ecf20Sopenharmony_ci	return ctx;
6118c2ecf20Sopenharmony_ci}
6128c2ecf20Sopenharmony_ci
6138c2ecf20Sopenharmony_cistatic void __init rk3126_clk_init(struct device_node *np)
6148c2ecf20Sopenharmony_ci{
6158c2ecf20Sopenharmony_ci	struct rockchip_clk_provider *ctx;
6168c2ecf20Sopenharmony_ci
6178c2ecf20Sopenharmony_ci	ctx = rk3128_common_clk_init(np);
6188c2ecf20Sopenharmony_ci	if (IS_ERR(ctx))
6198c2ecf20Sopenharmony_ci		return;
6208c2ecf20Sopenharmony_ci
6218c2ecf20Sopenharmony_ci	rockchip_clk_register_branches(ctx, rk3126_clk_branches,
6228c2ecf20Sopenharmony_ci				       ARRAY_SIZE(rk3126_clk_branches));
6238c2ecf20Sopenharmony_ci	rockchip_clk_protect_critical(rk3128_critical_clocks,
6248c2ecf20Sopenharmony_ci				      ARRAY_SIZE(rk3128_critical_clocks));
6258c2ecf20Sopenharmony_ci
6268c2ecf20Sopenharmony_ci	rockchip_clk_of_add_provider(np, ctx);
6278c2ecf20Sopenharmony_ci}
6288c2ecf20Sopenharmony_ci
6298c2ecf20Sopenharmony_ciCLK_OF_DECLARE(rk3126_cru, "rockchip,rk3126-cru", rk3126_clk_init);
6308c2ecf20Sopenharmony_ci
6318c2ecf20Sopenharmony_cistatic void __init rk3128_clk_init(struct device_node *np)
6328c2ecf20Sopenharmony_ci{
6338c2ecf20Sopenharmony_ci	struct rockchip_clk_provider *ctx;
6348c2ecf20Sopenharmony_ci
6358c2ecf20Sopenharmony_ci	ctx = rk3128_common_clk_init(np);
6368c2ecf20Sopenharmony_ci	if (IS_ERR(ctx))
6378c2ecf20Sopenharmony_ci		return;
6388c2ecf20Sopenharmony_ci
6398c2ecf20Sopenharmony_ci	rockchip_clk_register_branches(ctx, rk3128_clk_branches,
6408c2ecf20Sopenharmony_ci				       ARRAY_SIZE(rk3128_clk_branches));
6418c2ecf20Sopenharmony_ci	rockchip_clk_protect_critical(rk3128_critical_clocks,
6428c2ecf20Sopenharmony_ci				      ARRAY_SIZE(rk3128_critical_clocks));
6438c2ecf20Sopenharmony_ci
6448c2ecf20Sopenharmony_ci	rockchip_clk_of_add_provider(np, ctx);
6458c2ecf20Sopenharmony_ci}
6468c2ecf20Sopenharmony_ci
6478c2ecf20Sopenharmony_ciCLK_OF_DECLARE(rk3128_cru, "rockchip,rk3128-cru", rk3128_clk_init);
648