162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * Copyright 2012 Freescale Semiconductor, Inc.
462306a36Sopenharmony_ci */
562306a36Sopenharmony_ci
662306a36Sopenharmony_ci#include <linux/clk/mxs.h>
762306a36Sopenharmony_ci#include <linux/clkdev.h>
862306a36Sopenharmony_ci#include <linux/clk.h>
962306a36Sopenharmony_ci#include <linux/clk-provider.h>
1062306a36Sopenharmony_ci#include <linux/err.h>
1162306a36Sopenharmony_ci#include <linux/init.h>
1262306a36Sopenharmony_ci#include <linux/io.h>
1362306a36Sopenharmony_ci#include <linux/of.h>
1462306a36Sopenharmony_ci#include <linux/of_address.h>
1562306a36Sopenharmony_ci#include "clk.h"
1662306a36Sopenharmony_ci
1762306a36Sopenharmony_cistatic void __iomem *clkctrl;
1862306a36Sopenharmony_ci#define CLKCTRL clkctrl
1962306a36Sopenharmony_ci
2062306a36Sopenharmony_ci#define PLL0CTRL0		(CLKCTRL + 0x0000)
2162306a36Sopenharmony_ci#define PLL1CTRL0		(CLKCTRL + 0x0020)
2262306a36Sopenharmony_ci#define PLL2CTRL0		(CLKCTRL + 0x0040)
2362306a36Sopenharmony_ci#define CPU			(CLKCTRL + 0x0050)
2462306a36Sopenharmony_ci#define HBUS			(CLKCTRL + 0x0060)
2562306a36Sopenharmony_ci#define XBUS			(CLKCTRL + 0x0070)
2662306a36Sopenharmony_ci#define XTAL			(CLKCTRL + 0x0080)
2762306a36Sopenharmony_ci#define SSP0			(CLKCTRL + 0x0090)
2862306a36Sopenharmony_ci#define SSP1			(CLKCTRL + 0x00a0)
2962306a36Sopenharmony_ci#define SSP2			(CLKCTRL + 0x00b0)
3062306a36Sopenharmony_ci#define SSP3			(CLKCTRL + 0x00c0)
3162306a36Sopenharmony_ci#define GPMI			(CLKCTRL + 0x00d0)
3262306a36Sopenharmony_ci#define SPDIF			(CLKCTRL + 0x00e0)
3362306a36Sopenharmony_ci#define EMI			(CLKCTRL + 0x00f0)
3462306a36Sopenharmony_ci#define SAIF0			(CLKCTRL + 0x0100)
3562306a36Sopenharmony_ci#define SAIF1			(CLKCTRL + 0x0110)
3662306a36Sopenharmony_ci#define LCDIF			(CLKCTRL + 0x0120)
3762306a36Sopenharmony_ci#define ETM			(CLKCTRL + 0x0130)
3862306a36Sopenharmony_ci#define ENET			(CLKCTRL + 0x0140)
3962306a36Sopenharmony_ci#define FLEXCAN			(CLKCTRL + 0x0160)
4062306a36Sopenharmony_ci#define FRAC0			(CLKCTRL + 0x01b0)
4162306a36Sopenharmony_ci#define FRAC1			(CLKCTRL + 0x01c0)
4262306a36Sopenharmony_ci#define CLKSEQ			(CLKCTRL + 0x01d0)
4362306a36Sopenharmony_ci
4462306a36Sopenharmony_ci#define BP_CPU_INTERRUPT_WAIT	12
4562306a36Sopenharmony_ci#define BP_SAIF_DIV_FRAC_EN	16
4662306a36Sopenharmony_ci#define BP_ENET_DIV_TIME	21
4762306a36Sopenharmony_ci#define BP_ENET_SLEEP		31
4862306a36Sopenharmony_ci#define BP_CLKSEQ_BYPASS_SAIF0	0
4962306a36Sopenharmony_ci#define BP_CLKSEQ_BYPASS_SSP0	3
5062306a36Sopenharmony_ci#define BP_FRAC0_IO1FRAC	16
5162306a36Sopenharmony_ci#define BP_FRAC0_IO0FRAC	24
5262306a36Sopenharmony_ci
5362306a36Sopenharmony_cistatic void __iomem *digctrl;
5462306a36Sopenharmony_ci#define DIGCTRL digctrl
5562306a36Sopenharmony_ci#define BP_SAIF_CLKMUX		10
5662306a36Sopenharmony_ci
5762306a36Sopenharmony_ci/*
5862306a36Sopenharmony_ci * HW_SAIF_CLKMUX_SEL:
5962306a36Sopenharmony_ci *  DIRECT(0x0): SAIF0 clock pins selected for SAIF0 input clocks, and SAIF1
6062306a36Sopenharmony_ci *		clock pins selected for SAIF1 input clocks.
6162306a36Sopenharmony_ci *  CROSSINPUT(0x1): SAIF1 clock inputs selected for SAIF0 input clocks, and
6262306a36Sopenharmony_ci *		SAIF0 clock inputs selected for SAIF1 input clocks.
6362306a36Sopenharmony_ci *  EXTMSTR0(0x2): SAIF0 clock pin selected for both SAIF0 and SAIF1 input
6462306a36Sopenharmony_ci *		clocks.
6562306a36Sopenharmony_ci *  EXTMSTR1(0x3): SAIF1 clock pin selected for both SAIF0 and SAIF1 input
6662306a36Sopenharmony_ci *		clocks.
6762306a36Sopenharmony_ci */
6862306a36Sopenharmony_ciint mxs_saif_clkmux_select(unsigned int clkmux)
6962306a36Sopenharmony_ci{
7062306a36Sopenharmony_ci	if (clkmux > 0x3)
7162306a36Sopenharmony_ci		return -EINVAL;
7262306a36Sopenharmony_ci
7362306a36Sopenharmony_ci	writel_relaxed(0x3 << BP_SAIF_CLKMUX, DIGCTRL + CLR);
7462306a36Sopenharmony_ci	writel_relaxed(clkmux << BP_SAIF_CLKMUX, DIGCTRL + SET);
7562306a36Sopenharmony_ci
7662306a36Sopenharmony_ci	return 0;
7762306a36Sopenharmony_ci}
7862306a36Sopenharmony_ci
7962306a36Sopenharmony_cistatic void __init clk_misc_init(void)
8062306a36Sopenharmony_ci{
8162306a36Sopenharmony_ci	u32 val;
8262306a36Sopenharmony_ci
8362306a36Sopenharmony_ci	/* Gate off cpu clock in WFI for power saving */
8462306a36Sopenharmony_ci	writel_relaxed(1 << BP_CPU_INTERRUPT_WAIT, CPU + SET);
8562306a36Sopenharmony_ci
8662306a36Sopenharmony_ci	/* 0 is a bad default value for a divider */
8762306a36Sopenharmony_ci	writel_relaxed(1 << BP_ENET_DIV_TIME, ENET + SET);
8862306a36Sopenharmony_ci
8962306a36Sopenharmony_ci	/* Clear BYPASS for SAIF */
9062306a36Sopenharmony_ci	writel_relaxed(0x3 << BP_CLKSEQ_BYPASS_SAIF0, CLKSEQ + CLR);
9162306a36Sopenharmony_ci
9262306a36Sopenharmony_ci	/* SAIF has to use frac div for functional operation */
9362306a36Sopenharmony_ci	val = readl_relaxed(SAIF0);
9462306a36Sopenharmony_ci	val |= 1 << BP_SAIF_DIV_FRAC_EN;
9562306a36Sopenharmony_ci	writel_relaxed(val, SAIF0);
9662306a36Sopenharmony_ci
9762306a36Sopenharmony_ci	val = readl_relaxed(SAIF1);
9862306a36Sopenharmony_ci	val |= 1 << BP_SAIF_DIV_FRAC_EN;
9962306a36Sopenharmony_ci	writel_relaxed(val, SAIF1);
10062306a36Sopenharmony_ci
10162306a36Sopenharmony_ci	/* Extra fec clock setting */
10262306a36Sopenharmony_ci	val = readl_relaxed(ENET);
10362306a36Sopenharmony_ci	val &= ~(1 << BP_ENET_SLEEP);
10462306a36Sopenharmony_ci	writel_relaxed(val, ENET);
10562306a36Sopenharmony_ci
10662306a36Sopenharmony_ci	/*
10762306a36Sopenharmony_ci	 * Source ssp clock from ref_io than ref_xtal,
10862306a36Sopenharmony_ci	 * as ref_xtal only provides 24 MHz as maximum.
10962306a36Sopenharmony_ci	 */
11062306a36Sopenharmony_ci	writel_relaxed(0xf << BP_CLKSEQ_BYPASS_SSP0, CLKSEQ + CLR);
11162306a36Sopenharmony_ci
11262306a36Sopenharmony_ci	/*
11362306a36Sopenharmony_ci	 * 480 MHz seems too high to be ssp clock source directly,
11462306a36Sopenharmony_ci	 * so set frac0 to get a 288 MHz ref_io0 and ref_io1.
11562306a36Sopenharmony_ci	 */
11662306a36Sopenharmony_ci	val = readl_relaxed(FRAC0);
11762306a36Sopenharmony_ci	val &= ~((0x3f << BP_FRAC0_IO0FRAC) | (0x3f << BP_FRAC0_IO1FRAC));
11862306a36Sopenharmony_ci	val |= (30 << BP_FRAC0_IO0FRAC) | (30 << BP_FRAC0_IO1FRAC);
11962306a36Sopenharmony_ci	writel_relaxed(val, FRAC0);
12062306a36Sopenharmony_ci}
12162306a36Sopenharmony_ci
12262306a36Sopenharmony_cistatic const char *const sel_cpu[]  __initconst = { "ref_cpu", "ref_xtal", };
12362306a36Sopenharmony_cistatic const char *const sel_io0[]  __initconst = { "ref_io0", "ref_xtal", };
12462306a36Sopenharmony_cistatic const char *const sel_io1[]  __initconst = { "ref_io1", "ref_xtal", };
12562306a36Sopenharmony_cistatic const char *const sel_pix[]  __initconst = { "ref_pix", "ref_xtal", };
12662306a36Sopenharmony_cistatic const char *const sel_gpmi[] __initconst = { "ref_gpmi", "ref_xtal", };
12762306a36Sopenharmony_cistatic const char *const sel_pll0[] __initconst = { "pll0", "ref_xtal", };
12862306a36Sopenharmony_cistatic const char *const cpu_sels[] __initconst = { "cpu_pll", "cpu_xtal", };
12962306a36Sopenharmony_cistatic const char *const emi_sels[] __initconst = { "emi_pll", "emi_xtal", };
13062306a36Sopenharmony_cistatic const char *const ptp_sels[] __initconst = { "ref_xtal", "pll0", };
13162306a36Sopenharmony_ci
13262306a36Sopenharmony_cienum imx28_clk {
13362306a36Sopenharmony_ci	ref_xtal, pll0, pll1, pll2, ref_cpu, ref_emi, ref_io0, ref_io1,
13462306a36Sopenharmony_ci	ref_pix, ref_hsadc, ref_gpmi, saif0_sel, saif1_sel, gpmi_sel,
13562306a36Sopenharmony_ci	ssp0_sel, ssp1_sel, ssp2_sel, ssp3_sel, emi_sel, etm_sel,
13662306a36Sopenharmony_ci	lcdif_sel, cpu, ptp_sel, cpu_pll, cpu_xtal, hbus, xbus,
13762306a36Sopenharmony_ci	ssp0_div, ssp1_div, ssp2_div, ssp3_div, gpmi_div, emi_pll,
13862306a36Sopenharmony_ci	emi_xtal, lcdif_div, etm_div, ptp, saif0_div, saif1_div,
13962306a36Sopenharmony_ci	clk32k_div, rtc, lradc, spdif_div, clk32k, pwm, uart, ssp0,
14062306a36Sopenharmony_ci	ssp1, ssp2, ssp3, gpmi, spdif, emi, saif0, saif1, lcdif, etm,
14162306a36Sopenharmony_ci	fec, can0, can1, usb0, usb1, usb0_phy, usb1_phy, enet_out,
14262306a36Sopenharmony_ci	clk_max
14362306a36Sopenharmony_ci};
14462306a36Sopenharmony_ci
14562306a36Sopenharmony_cistatic struct clk *clks[clk_max];
14662306a36Sopenharmony_cistatic struct clk_onecell_data clk_data;
14762306a36Sopenharmony_ci
14862306a36Sopenharmony_cistatic enum imx28_clk clks_init_on[] __initdata = {
14962306a36Sopenharmony_ci	cpu, hbus, xbus, emi, uart,
15062306a36Sopenharmony_ci};
15162306a36Sopenharmony_ci
15262306a36Sopenharmony_cistatic void __init mx28_clocks_init(struct device_node *np)
15362306a36Sopenharmony_ci{
15462306a36Sopenharmony_ci	struct device_node *dcnp;
15562306a36Sopenharmony_ci	u32 i;
15662306a36Sopenharmony_ci
15762306a36Sopenharmony_ci	dcnp = of_find_compatible_node(NULL, NULL, "fsl,imx28-digctl");
15862306a36Sopenharmony_ci	digctrl = of_iomap(dcnp, 0);
15962306a36Sopenharmony_ci	WARN_ON(!digctrl);
16062306a36Sopenharmony_ci	of_node_put(dcnp);
16162306a36Sopenharmony_ci
16262306a36Sopenharmony_ci	clkctrl = of_iomap(np, 0);
16362306a36Sopenharmony_ci	WARN_ON(!clkctrl);
16462306a36Sopenharmony_ci
16562306a36Sopenharmony_ci	clk_misc_init();
16662306a36Sopenharmony_ci
16762306a36Sopenharmony_ci	clks[ref_xtal] = mxs_clk_fixed("ref_xtal", 24000000);
16862306a36Sopenharmony_ci	clks[pll0] = mxs_clk_pll("pll0", "ref_xtal", PLL0CTRL0, 17, 480000000);
16962306a36Sopenharmony_ci	clks[pll1] = mxs_clk_pll("pll1", "ref_xtal", PLL1CTRL0, 17, 480000000);
17062306a36Sopenharmony_ci	clks[pll2] = mxs_clk_pll("pll2", "ref_xtal", PLL2CTRL0, 23, 50000000);
17162306a36Sopenharmony_ci	clks[ref_cpu] = mxs_clk_ref("ref_cpu", "pll0", FRAC0, 0);
17262306a36Sopenharmony_ci	clks[ref_emi] = mxs_clk_ref("ref_emi", "pll0", FRAC0, 1);
17362306a36Sopenharmony_ci	clks[ref_io1] = mxs_clk_ref("ref_io1", "pll0", FRAC0, 2);
17462306a36Sopenharmony_ci	clks[ref_io0] = mxs_clk_ref("ref_io0", "pll0", FRAC0, 3);
17562306a36Sopenharmony_ci	clks[ref_pix] = mxs_clk_ref("ref_pix", "pll0", FRAC1, 0);
17662306a36Sopenharmony_ci	clks[ref_hsadc] = mxs_clk_ref("ref_hsadc", "pll0", FRAC1, 1);
17762306a36Sopenharmony_ci	clks[ref_gpmi] = mxs_clk_ref("ref_gpmi", "pll0", FRAC1, 2);
17862306a36Sopenharmony_ci	clks[saif0_sel] = mxs_clk_mux("saif0_sel", CLKSEQ, 0, 1, sel_pll0, ARRAY_SIZE(sel_pll0));
17962306a36Sopenharmony_ci	clks[saif1_sel] = mxs_clk_mux("saif1_sel", CLKSEQ, 1, 1, sel_pll0, ARRAY_SIZE(sel_pll0));
18062306a36Sopenharmony_ci	clks[gpmi_sel] = mxs_clk_mux("gpmi_sel", CLKSEQ, 2, 1, sel_gpmi, ARRAY_SIZE(sel_gpmi));
18162306a36Sopenharmony_ci	clks[ssp0_sel] = mxs_clk_mux("ssp0_sel", CLKSEQ, 3, 1, sel_io0, ARRAY_SIZE(sel_io0));
18262306a36Sopenharmony_ci	clks[ssp1_sel] = mxs_clk_mux("ssp1_sel", CLKSEQ, 4, 1, sel_io0, ARRAY_SIZE(sel_io0));
18362306a36Sopenharmony_ci	clks[ssp2_sel] = mxs_clk_mux("ssp2_sel", CLKSEQ, 5, 1, sel_io1, ARRAY_SIZE(sel_io1));
18462306a36Sopenharmony_ci	clks[ssp3_sel] = mxs_clk_mux("ssp3_sel", CLKSEQ, 6, 1, sel_io1, ARRAY_SIZE(sel_io1));
18562306a36Sopenharmony_ci	clks[emi_sel] = mxs_clk_mux("emi_sel", CLKSEQ, 7, 1, emi_sels, ARRAY_SIZE(emi_sels));
18662306a36Sopenharmony_ci	clks[etm_sel] = mxs_clk_mux("etm_sel", CLKSEQ, 8, 1, sel_cpu, ARRAY_SIZE(sel_cpu));
18762306a36Sopenharmony_ci	clks[lcdif_sel] = mxs_clk_mux("lcdif_sel", CLKSEQ, 14, 1, sel_pix, ARRAY_SIZE(sel_pix));
18862306a36Sopenharmony_ci	clks[cpu] = mxs_clk_mux("cpu", CLKSEQ, 18, 1, cpu_sels, ARRAY_SIZE(cpu_sels));
18962306a36Sopenharmony_ci	clks[ptp_sel] = mxs_clk_mux("ptp_sel", ENET, 19, 1, ptp_sels, ARRAY_SIZE(ptp_sels));
19062306a36Sopenharmony_ci	clks[cpu_pll] = mxs_clk_div("cpu_pll", "ref_cpu", CPU, 0, 6, 28);
19162306a36Sopenharmony_ci	clks[cpu_xtal] = mxs_clk_div("cpu_xtal", "ref_xtal", CPU, 16, 10, 29);
19262306a36Sopenharmony_ci	clks[hbus] = mxs_clk_div("hbus", "cpu", HBUS, 0, 5, 31);
19362306a36Sopenharmony_ci	clks[xbus] = mxs_clk_div("xbus", "ref_xtal", XBUS, 0, 10, 31);
19462306a36Sopenharmony_ci	clks[ssp0_div] = mxs_clk_div("ssp0_div", "ssp0_sel", SSP0, 0, 9, 29);
19562306a36Sopenharmony_ci	clks[ssp1_div] = mxs_clk_div("ssp1_div", "ssp1_sel", SSP1, 0, 9, 29);
19662306a36Sopenharmony_ci	clks[ssp2_div] = mxs_clk_div("ssp2_div", "ssp2_sel", SSP2, 0, 9, 29);
19762306a36Sopenharmony_ci	clks[ssp3_div] = mxs_clk_div("ssp3_div", "ssp3_sel", SSP3, 0, 9, 29);
19862306a36Sopenharmony_ci	clks[gpmi_div] = mxs_clk_div("gpmi_div", "gpmi_sel", GPMI, 0, 10, 29);
19962306a36Sopenharmony_ci	clks[emi_pll] = mxs_clk_div("emi_pll", "ref_emi", EMI, 0, 6, 28);
20062306a36Sopenharmony_ci	clks[emi_xtal] = mxs_clk_div("emi_xtal", "ref_xtal", EMI, 8, 4, 29);
20162306a36Sopenharmony_ci	clks[lcdif_div] = mxs_clk_div("lcdif_div", "lcdif_sel", LCDIF, 0, 13, 29);
20262306a36Sopenharmony_ci	clks[etm_div] = mxs_clk_div("etm_div", "etm_sel", ETM, 0, 7, 29);
20362306a36Sopenharmony_ci	clks[ptp] = mxs_clk_div("ptp", "ptp_sel", ENET, 21, 6, 27);
20462306a36Sopenharmony_ci	clks[saif0_div] = mxs_clk_frac("saif0_div", "saif0_sel", SAIF0, 0, 16, 29);
20562306a36Sopenharmony_ci	clks[saif1_div] = mxs_clk_frac("saif1_div", "saif1_sel", SAIF1, 0, 16, 29);
20662306a36Sopenharmony_ci	clks[clk32k_div] = mxs_clk_fixed_factor("clk32k_div", "ref_xtal", 1, 750);
20762306a36Sopenharmony_ci	clks[rtc] = mxs_clk_fixed_factor("rtc", "ref_xtal", 1, 768);
20862306a36Sopenharmony_ci	clks[lradc] = mxs_clk_fixed_factor("lradc", "clk32k", 1, 16);
20962306a36Sopenharmony_ci	clks[spdif_div] = mxs_clk_fixed_factor("spdif_div", "pll0", 1, 4);
21062306a36Sopenharmony_ci	clks[clk32k] = mxs_clk_gate("clk32k", "clk32k_div", XTAL, 26);
21162306a36Sopenharmony_ci	clks[pwm] = mxs_clk_gate("pwm", "ref_xtal", XTAL, 29);
21262306a36Sopenharmony_ci	clks[uart] = mxs_clk_gate("uart", "ref_xtal", XTAL, 31);
21362306a36Sopenharmony_ci	clks[ssp0] = mxs_clk_gate("ssp0", "ssp0_div", SSP0, 31);
21462306a36Sopenharmony_ci	clks[ssp1] = mxs_clk_gate("ssp1", "ssp1_div", SSP1, 31);
21562306a36Sopenharmony_ci	clks[ssp2] = mxs_clk_gate("ssp2", "ssp2_div", SSP2, 31);
21662306a36Sopenharmony_ci	clks[ssp3] = mxs_clk_gate("ssp3", "ssp3_div", SSP3, 31);
21762306a36Sopenharmony_ci	clks[gpmi] = mxs_clk_gate("gpmi", "gpmi_div", GPMI, 31);
21862306a36Sopenharmony_ci	clks[spdif] = mxs_clk_gate("spdif", "spdif_div", SPDIF, 31);
21962306a36Sopenharmony_ci	clks[emi] = mxs_clk_gate("emi", "emi_sel", EMI, 31);
22062306a36Sopenharmony_ci	clks[saif0] = mxs_clk_gate("saif0", "saif0_div", SAIF0, 31);
22162306a36Sopenharmony_ci	clks[saif1] = mxs_clk_gate("saif1", "saif1_div", SAIF1, 31);
22262306a36Sopenharmony_ci	clks[lcdif] = mxs_clk_gate("lcdif", "lcdif_div", LCDIF, 31);
22362306a36Sopenharmony_ci	clks[etm] = mxs_clk_gate("etm", "etm_div", ETM, 31);
22462306a36Sopenharmony_ci	clks[fec] = mxs_clk_gate("fec", "hbus", ENET, 30);
22562306a36Sopenharmony_ci	clks[can0] = mxs_clk_gate("can0", "ref_xtal", FLEXCAN, 30);
22662306a36Sopenharmony_ci	clks[can1] = mxs_clk_gate("can1", "ref_xtal", FLEXCAN, 28);
22762306a36Sopenharmony_ci	clks[usb0] = mxs_clk_gate("usb0", "usb0_phy", DIGCTRL, 2);
22862306a36Sopenharmony_ci	clks[usb1] = mxs_clk_gate("usb1", "usb1_phy", DIGCTRL, 16);
22962306a36Sopenharmony_ci	clks[usb0_phy] = clk_register_gate(NULL, "usb0_phy", "pll0", 0, PLL0CTRL0, 18, 0, &mxs_lock);
23062306a36Sopenharmony_ci	clks[usb1_phy] = clk_register_gate(NULL, "usb1_phy", "pll1", 0, PLL1CTRL0, 18, 0, &mxs_lock);
23162306a36Sopenharmony_ci	clks[enet_out] = clk_register_gate(NULL, "enet_out", "pll2", 0, ENET, 18, 0, &mxs_lock);
23262306a36Sopenharmony_ci
23362306a36Sopenharmony_ci	for (i = 0; i < ARRAY_SIZE(clks); i++)
23462306a36Sopenharmony_ci		if (IS_ERR(clks[i])) {
23562306a36Sopenharmony_ci			pr_err("i.MX28 clk %d: register failed with %ld\n",
23662306a36Sopenharmony_ci				i, PTR_ERR(clks[i]));
23762306a36Sopenharmony_ci			return;
23862306a36Sopenharmony_ci		}
23962306a36Sopenharmony_ci
24062306a36Sopenharmony_ci	clk_data.clks = clks;
24162306a36Sopenharmony_ci	clk_data.clk_num = ARRAY_SIZE(clks);
24262306a36Sopenharmony_ci	of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data);
24362306a36Sopenharmony_ci
24462306a36Sopenharmony_ci	clk_register_clkdev(clks[enet_out], NULL, "enet_out");
24562306a36Sopenharmony_ci
24662306a36Sopenharmony_ci	for (i = 0; i < ARRAY_SIZE(clks_init_on); i++)
24762306a36Sopenharmony_ci		clk_prepare_enable(clks[clks_init_on[i]]);
24862306a36Sopenharmony_ci}
24962306a36Sopenharmony_ciCLK_OF_DECLARE(imx28_clkctrl, "fsl,imx28-clkctrl", mx28_clocks_init);
250