xref: /openbmc/linux/drivers/clk/imx/clk-pll14xx.c (revision d77461a6)
18646d4dcSBai Ping // SPDX-License-Identifier: GPL-2.0
28646d4dcSBai Ping /*
38646d4dcSBai Ping  * Copyright 2017-2018 NXP.
48646d4dcSBai Ping  */
58646d4dcSBai Ping 
67d6b5e4fSAnson Huang #include <linux/bits.h>
78646d4dcSBai Ping #include <linux/clk-provider.h>
88646d4dcSBai Ping #include <linux/err.h>
9870ed5e2SAnson Huang #include <linux/export.h>
108646d4dcSBai Ping #include <linux/io.h>
118646d4dcSBai Ping #include <linux/iopoll.h>
128646d4dcSBai Ping #include <linux/slab.h>
138646d4dcSBai Ping #include <linux/jiffies.h>
148646d4dcSBai Ping 
158646d4dcSBai Ping #include "clk.h"
168646d4dcSBai Ping 
178646d4dcSBai Ping #define GNRL_CTL	0x0
18485b4ff5SSascha Hauer #define DIV_CTL0	0x4
19485b4ff5SSascha Hauer #define DIV_CTL1	0x8
208646d4dcSBai Ping #define LOCK_STATUS	BIT(31)
218646d4dcSBai Ping #define LOCK_SEL_MASK	BIT(29)
228646d4dcSBai Ping #define CLKE_MASK	BIT(11)
238646d4dcSBai Ping #define RST_MASK	BIT(9)
248646d4dcSBai Ping #define BYPASS_MASK	BIT(4)
258646d4dcSBai Ping #define MDIV_SHIFT	12
268646d4dcSBai Ping #define MDIV_MASK	GENMASK(21, 12)
278646d4dcSBai Ping #define PDIV_SHIFT	4
288646d4dcSBai Ping #define PDIV_MASK	GENMASK(9, 4)
298646d4dcSBai Ping #define SDIV_SHIFT	0
308646d4dcSBai Ping #define SDIV_MASK	GENMASK(2, 0)
318646d4dcSBai Ping #define KDIV_SHIFT	0
328646d4dcSBai Ping #define KDIV_MASK	GENMASK(15, 0)
338646d4dcSBai Ping 
348646d4dcSBai Ping #define LOCK_TIMEOUT_US		10000
358646d4dcSBai Ping 
368646d4dcSBai Ping struct clk_pll14xx {
378646d4dcSBai Ping 	struct clk_hw			hw;
388646d4dcSBai Ping 	void __iomem			*base;
398646d4dcSBai Ping 	enum imx_pll14xx_type		type;
408646d4dcSBai Ping 	const struct imx_pll14xx_rate_table *rate_table;
418646d4dcSBai Ping 	int rate_count;
428646d4dcSBai Ping };
438646d4dcSBai Ping 
448646d4dcSBai Ping #define to_clk_pll14xx(_hw) container_of(_hw, struct clk_pll14xx, hw)
458646d4dcSBai Ping 
468f2d3c17SYueHaibing static const struct imx_pll14xx_rate_table imx_pll1416x_tbl[] = {
4743cdaa15SAnson Huang 	PLL_1416X_RATE(1800000000U, 225, 3, 0),
4843cdaa15SAnson Huang 	PLL_1416X_RATE(1600000000U, 200, 3, 0),
490ae4fbc6SAnson Huang 	PLL_1416X_RATE(1500000000U, 375, 3, 1),
500ae4fbc6SAnson Huang 	PLL_1416X_RATE(1400000000U, 350, 3, 1),
5143cdaa15SAnson Huang 	PLL_1416X_RATE(1200000000U, 300, 3, 1),
5243cdaa15SAnson Huang 	PLL_1416X_RATE(1000000000U, 250, 3, 1),
5343cdaa15SAnson Huang 	PLL_1416X_RATE(800000000U,  200, 3, 1),
5443cdaa15SAnson Huang 	PLL_1416X_RATE(750000000U,  250, 2, 2),
5543cdaa15SAnson Huang 	PLL_1416X_RATE(700000000U,  350, 3, 2),
5643cdaa15SAnson Huang 	PLL_1416X_RATE(600000000U,  300, 3, 2),
5743cdaa15SAnson Huang };
5843cdaa15SAnson Huang 
598f2d3c17SYueHaibing static const struct imx_pll14xx_rate_table imx_pll1443x_tbl[] = {
6057795654SAnson Huang 	PLL_1443X_RATE(1039500000U, 173, 2, 1, 16384),
6143cdaa15SAnson Huang 	PLL_1443X_RATE(650000000U, 325, 3, 2, 0),
6243cdaa15SAnson Huang 	PLL_1443X_RATE(594000000U, 198, 2, 2, 0),
6357795654SAnson Huang 	PLL_1443X_RATE(519750000U, 173, 2, 2, 16384),
6443cdaa15SAnson Huang 	PLL_1443X_RATE(393216000U, 262, 2, 3, 9437),
6543cdaa15SAnson Huang 	PLL_1443X_RATE(361267200U, 361, 3, 3, 17511),
6643cdaa15SAnson Huang };
6743cdaa15SAnson Huang 
6843cdaa15SAnson Huang struct imx_pll14xx_clk imx_1443x_pll = {
6943cdaa15SAnson Huang 	.type = PLL_1443X,
7043cdaa15SAnson Huang 	.rate_table = imx_pll1443x_tbl,
7143cdaa15SAnson Huang 	.rate_count = ARRAY_SIZE(imx_pll1443x_tbl),
7243cdaa15SAnson Huang };
73870ed5e2SAnson Huang EXPORT_SYMBOL_GPL(imx_1443x_pll);
7443cdaa15SAnson Huang 
75e18f6471SLeonard Crestez struct imx_pll14xx_clk imx_1443x_dram_pll = {
76e18f6471SLeonard Crestez 	.type = PLL_1443X,
77e18f6471SLeonard Crestez 	.rate_table = imx_pll1443x_tbl,
78e18f6471SLeonard Crestez 	.rate_count = ARRAY_SIZE(imx_pll1443x_tbl),
79e18f6471SLeonard Crestez 	.flags = CLK_GET_RATE_NOCACHE,
80e18f6471SLeonard Crestez };
81870ed5e2SAnson Huang EXPORT_SYMBOL_GPL(imx_1443x_dram_pll);
82e18f6471SLeonard Crestez 
8343cdaa15SAnson Huang struct imx_pll14xx_clk imx_1416x_pll = {
8443cdaa15SAnson Huang 	.type = PLL_1416X,
8543cdaa15SAnson Huang 	.rate_table = imx_pll1416x_tbl,
8643cdaa15SAnson Huang 	.rate_count = ARRAY_SIZE(imx_pll1416x_tbl),
8743cdaa15SAnson Huang };
88870ed5e2SAnson Huang EXPORT_SYMBOL_GPL(imx_1416x_pll);
8943cdaa15SAnson Huang 
908646d4dcSBai Ping static const struct imx_pll14xx_rate_table *imx_get_pll_settings(
918646d4dcSBai Ping 		struct clk_pll14xx *pll, unsigned long rate)
928646d4dcSBai Ping {
938646d4dcSBai Ping 	const struct imx_pll14xx_rate_table *rate_table = pll->rate_table;
948646d4dcSBai Ping 	int i;
958646d4dcSBai Ping 
968646d4dcSBai Ping 	for (i = 0; i < pll->rate_count; i++)
978646d4dcSBai Ping 		if (rate == rate_table[i].rate)
988646d4dcSBai Ping 			return &rate_table[i];
998646d4dcSBai Ping 
1008646d4dcSBai Ping 	return NULL;
1018646d4dcSBai Ping }
1028646d4dcSBai Ping 
1038646d4dcSBai Ping static long clk_pll14xx_round_rate(struct clk_hw *hw, unsigned long rate,
1048646d4dcSBai Ping 			unsigned long *prate)
1058646d4dcSBai Ping {
1068646d4dcSBai Ping 	struct clk_pll14xx *pll = to_clk_pll14xx(hw);
1078646d4dcSBai Ping 	const struct imx_pll14xx_rate_table *rate_table = pll->rate_table;
1088646d4dcSBai Ping 	int i;
1098646d4dcSBai Ping 
1108646d4dcSBai Ping 	/* Assumming rate_table is in descending order */
1118646d4dcSBai Ping 	for (i = 0; i < pll->rate_count; i++)
1128646d4dcSBai Ping 		if (rate >= rate_table[i].rate)
1138646d4dcSBai Ping 			return rate_table[i].rate;
1148646d4dcSBai Ping 
1158646d4dcSBai Ping 	/* return minimum supported value */
1168646d4dcSBai Ping 	return rate_table[i - 1].rate;
1178646d4dcSBai Ping }
1188646d4dcSBai Ping 
1198646d4dcSBai Ping static unsigned long clk_pll1416x_recalc_rate(struct clk_hw *hw,
1208646d4dcSBai Ping 						  unsigned long parent_rate)
1218646d4dcSBai Ping {
1228646d4dcSBai Ping 	struct clk_pll14xx *pll = to_clk_pll14xx(hw);
123a3c9e13fSPeng Fan 	u32 mdiv, pdiv, sdiv, pll_div;
1248646d4dcSBai Ping 	u64 fvco = parent_rate;
1258646d4dcSBai Ping 
126485b4ff5SSascha Hauer 	pll_div = readl_relaxed(pll->base + DIV_CTL0);
1278646d4dcSBai Ping 	mdiv = (pll_div & MDIV_MASK) >> MDIV_SHIFT;
1288646d4dcSBai Ping 	pdiv = (pll_div & PDIV_MASK) >> PDIV_SHIFT;
1298646d4dcSBai Ping 	sdiv = (pll_div & SDIV_MASK) >> SDIV_SHIFT;
1308646d4dcSBai Ping 
1318646d4dcSBai Ping 	fvco *= mdiv;
1328646d4dcSBai Ping 	do_div(fvco, pdiv << sdiv);
1338646d4dcSBai Ping 
1348646d4dcSBai Ping 	return fvco;
1358646d4dcSBai Ping }
1368646d4dcSBai Ping 
1378646d4dcSBai Ping static unsigned long clk_pll1443x_recalc_rate(struct clk_hw *hw,
1388646d4dcSBai Ping 						  unsigned long parent_rate)
1398646d4dcSBai Ping {
1408646d4dcSBai Ping 	struct clk_pll14xx *pll = to_clk_pll14xx(hw);
141a3c9e13fSPeng Fan 	u32 mdiv, pdiv, sdiv, pll_div_ctl0, pll_div_ctl1;
1428646d4dcSBai Ping 	short int kdiv;
1438646d4dcSBai Ping 	u64 fvco = parent_rate;
1448646d4dcSBai Ping 
145485b4ff5SSascha Hauer 	pll_div_ctl0 = readl_relaxed(pll->base + DIV_CTL0);
146485b4ff5SSascha Hauer 	pll_div_ctl1 = readl_relaxed(pll->base + DIV_CTL1);
1478646d4dcSBai Ping 	mdiv = (pll_div_ctl0 & MDIV_MASK) >> MDIV_SHIFT;
1488646d4dcSBai Ping 	pdiv = (pll_div_ctl0 & PDIV_MASK) >> PDIV_SHIFT;
1498646d4dcSBai Ping 	sdiv = (pll_div_ctl0 & SDIV_MASK) >> SDIV_SHIFT;
1508646d4dcSBai Ping 	kdiv = pll_div_ctl1 & KDIV_MASK;
1518646d4dcSBai Ping 
1528646d4dcSBai Ping 	/* fvco = (m * 65536 + k) * Fin / (p * 65536) */
1538646d4dcSBai Ping 	fvco *= (mdiv * 65536 + kdiv);
1548646d4dcSBai Ping 	pdiv *= 65536;
1558646d4dcSBai Ping 
1568646d4dcSBai Ping 	do_div(fvco, pdiv << sdiv);
1578646d4dcSBai Ping 
1588646d4dcSBai Ping 	return fvco;
1598646d4dcSBai Ping }
1608646d4dcSBai Ping 
161094234fcSLeonard Crestez static inline bool clk_pll14xx_mp_change(const struct imx_pll14xx_rate_table *rate,
1628646d4dcSBai Ping 					  u32 pll_div)
1638646d4dcSBai Ping {
1648646d4dcSBai Ping 	u32 old_mdiv, old_pdiv;
1658646d4dcSBai Ping 
166094234fcSLeonard Crestez 	old_mdiv = (pll_div & MDIV_MASK) >> MDIV_SHIFT;
167094234fcSLeonard Crestez 	old_pdiv = (pll_div & PDIV_MASK) >> PDIV_SHIFT;
1688646d4dcSBai Ping 
1698646d4dcSBai Ping 	return rate->mdiv != old_mdiv || rate->pdiv != old_pdiv;
1708646d4dcSBai Ping }
1718646d4dcSBai Ping 
1728646d4dcSBai Ping static int clk_pll14xx_wait_lock(struct clk_pll14xx *pll)
1738646d4dcSBai Ping {
1748646d4dcSBai Ping 	u32 val;
1758646d4dcSBai Ping 
176485b4ff5SSascha Hauer 	return readl_poll_timeout(pll->base + GNRL_CTL, val, val & LOCK_STATUS, 0,
1778646d4dcSBai Ping 			LOCK_TIMEOUT_US);
1788646d4dcSBai Ping }
1798646d4dcSBai Ping 
1808646d4dcSBai Ping static int clk_pll1416x_set_rate(struct clk_hw *hw, unsigned long drate,
1818646d4dcSBai Ping 				 unsigned long prate)
1828646d4dcSBai Ping {
1838646d4dcSBai Ping 	struct clk_pll14xx *pll = to_clk_pll14xx(hw);
1848646d4dcSBai Ping 	const struct imx_pll14xx_rate_table *rate;
1858646d4dcSBai Ping 	u32 tmp, div_val;
1868646d4dcSBai Ping 	int ret;
1878646d4dcSBai Ping 
1888646d4dcSBai Ping 	rate = imx_get_pll_settings(pll, drate);
1898646d4dcSBai Ping 	if (!rate) {
1908646d4dcSBai Ping 		pr_err("%s: Invalid rate : %lu for pll clk %s\n", __func__,
1918646d4dcSBai Ping 		       drate, clk_hw_get_name(hw));
1928646d4dcSBai Ping 		return -EINVAL;
1938646d4dcSBai Ping 	}
1948646d4dcSBai Ping 
195485b4ff5SSascha Hauer 	tmp = readl_relaxed(pll->base + DIV_CTL0);
1968646d4dcSBai Ping 
197094234fcSLeonard Crestez 	if (!clk_pll14xx_mp_change(rate, tmp)) {
198*d77461a6SSascha Hauer 		tmp &= ~SDIV_MASK;
1998646d4dcSBai Ping 		tmp |= rate->sdiv << SDIV_SHIFT;
200485b4ff5SSascha Hauer 		writel_relaxed(tmp, pll->base + DIV_CTL0);
2018646d4dcSBai Ping 
2028646d4dcSBai Ping 		return 0;
2038646d4dcSBai Ping 	}
2048646d4dcSBai Ping 
2058646d4dcSBai Ping 	/* Bypass clock and set lock to pll output lock */
206485b4ff5SSascha Hauer 	tmp = readl_relaxed(pll->base + GNRL_CTL);
2078646d4dcSBai Ping 	tmp |= LOCK_SEL_MASK;
208485b4ff5SSascha Hauer 	writel_relaxed(tmp, pll->base + GNRL_CTL);
2098646d4dcSBai Ping 
2108646d4dcSBai Ping 	/* Enable RST */
2118646d4dcSBai Ping 	tmp &= ~RST_MASK;
212485b4ff5SSascha Hauer 	writel_relaxed(tmp, pll->base + GNRL_CTL);
2138646d4dcSBai Ping 
214dee1bc9cSPeng Fan 	/* Enable BYPASS */
215dee1bc9cSPeng Fan 	tmp |= BYPASS_MASK;
216485b4ff5SSascha Hauer 	writel(tmp, pll->base + GNRL_CTL);
217dee1bc9cSPeng Fan 
2188646d4dcSBai Ping 	div_val = (rate->mdiv << MDIV_SHIFT) | (rate->pdiv << PDIV_SHIFT) |
2198646d4dcSBai Ping 		(rate->sdiv << SDIV_SHIFT);
220485b4ff5SSascha Hauer 	writel_relaxed(div_val, pll->base + DIV_CTL0);
2218646d4dcSBai Ping 
2228646d4dcSBai Ping 	/*
2238646d4dcSBai Ping 	 * According to SPEC, t3 - t2 need to be greater than
2248646d4dcSBai Ping 	 * 1us and 1/FREF, respectively.
2258646d4dcSBai Ping 	 * FREF is FIN / Prediv, the prediv is [1, 63], so choose
2268646d4dcSBai Ping 	 * 3us.
2278646d4dcSBai Ping 	 */
2288646d4dcSBai Ping 	udelay(3);
2298646d4dcSBai Ping 
2308646d4dcSBai Ping 	/* Disable RST */
2318646d4dcSBai Ping 	tmp |= RST_MASK;
232485b4ff5SSascha Hauer 	writel_relaxed(tmp, pll->base + GNRL_CTL);
2338646d4dcSBai Ping 
2348646d4dcSBai Ping 	/* Wait Lock */
2358646d4dcSBai Ping 	ret = clk_pll14xx_wait_lock(pll);
2368646d4dcSBai Ping 	if (ret)
2378646d4dcSBai Ping 		return ret;
2388646d4dcSBai Ping 
2398646d4dcSBai Ping 	/* Bypass */
2408646d4dcSBai Ping 	tmp &= ~BYPASS_MASK;
241485b4ff5SSascha Hauer 	writel_relaxed(tmp, pll->base + GNRL_CTL);
2428646d4dcSBai Ping 
2438646d4dcSBai Ping 	return 0;
2448646d4dcSBai Ping }
2458646d4dcSBai Ping 
2468646d4dcSBai Ping static int clk_pll1443x_set_rate(struct clk_hw *hw, unsigned long drate,
2478646d4dcSBai Ping 				 unsigned long prate)
2488646d4dcSBai Ping {
2498646d4dcSBai Ping 	struct clk_pll14xx *pll = to_clk_pll14xx(hw);
2508646d4dcSBai Ping 	const struct imx_pll14xx_rate_table *rate;
2518646d4dcSBai Ping 	u32 tmp, div_val;
2528646d4dcSBai Ping 	int ret;
2538646d4dcSBai Ping 
2548646d4dcSBai Ping 	rate = imx_get_pll_settings(pll, drate);
2558646d4dcSBai Ping 	if (!rate) {
2568646d4dcSBai Ping 		pr_err("%s: Invalid rate : %lu for pll clk %s\n", __func__,
2578646d4dcSBai Ping 			drate, clk_hw_get_name(hw));
2588646d4dcSBai Ping 		return -EINVAL;
2598646d4dcSBai Ping 	}
2608646d4dcSBai Ping 
261485b4ff5SSascha Hauer 	tmp = readl_relaxed(pll->base + DIV_CTL0);
2628646d4dcSBai Ping 
263094234fcSLeonard Crestez 	if (!clk_pll14xx_mp_change(rate, tmp)) {
264*d77461a6SSascha Hauer 		tmp &= ~SDIV_MASK;
2658646d4dcSBai Ping 		tmp |= rate->sdiv << SDIV_SHIFT;
266485b4ff5SSascha Hauer 		writel_relaxed(tmp, pll->base + DIV_CTL0);
2678646d4dcSBai Ping 
268094234fcSLeonard Crestez 		tmp = rate->kdiv << KDIV_SHIFT;
269485b4ff5SSascha Hauer 		writel_relaxed(tmp, pll->base + DIV_CTL1);
270094234fcSLeonard Crestez 
2718646d4dcSBai Ping 		return 0;
2728646d4dcSBai Ping 	}
2738646d4dcSBai Ping 
2748646d4dcSBai Ping 	/* Enable RST */
275485b4ff5SSascha Hauer 	tmp = readl_relaxed(pll->base + GNRL_CTL);
2768646d4dcSBai Ping 	tmp &= ~RST_MASK;
277485b4ff5SSascha Hauer 	writel_relaxed(tmp, pll->base + GNRL_CTL);
2788646d4dcSBai Ping 
279dee1bc9cSPeng Fan 	/* Enable BYPASS */
280dee1bc9cSPeng Fan 	tmp |= BYPASS_MASK;
281485b4ff5SSascha Hauer 	writel_relaxed(tmp, pll->base + GNRL_CTL);
282dee1bc9cSPeng Fan 
2838646d4dcSBai Ping 	div_val = (rate->mdiv << MDIV_SHIFT) | (rate->pdiv << PDIV_SHIFT) |
2848646d4dcSBai Ping 		(rate->sdiv << SDIV_SHIFT);
285485b4ff5SSascha Hauer 	writel_relaxed(div_val, pll->base + DIV_CTL0);
286485b4ff5SSascha Hauer 	writel_relaxed(rate->kdiv << KDIV_SHIFT, pll->base + DIV_CTL1);
2878646d4dcSBai Ping 
2888646d4dcSBai Ping 	/*
2898646d4dcSBai Ping 	 * According to SPEC, t3 - t2 need to be greater than
2908646d4dcSBai Ping 	 * 1us and 1/FREF, respectively.
2918646d4dcSBai Ping 	 * FREF is FIN / Prediv, the prediv is [1, 63], so choose
2928646d4dcSBai Ping 	 * 3us.
2938646d4dcSBai Ping 	 */
2948646d4dcSBai Ping 	udelay(3);
2958646d4dcSBai Ping 
2968646d4dcSBai Ping 	/* Disable RST */
2978646d4dcSBai Ping 	tmp |= RST_MASK;
298485b4ff5SSascha Hauer 	writel_relaxed(tmp, pll->base + GNRL_CTL);
2998646d4dcSBai Ping 
3008646d4dcSBai Ping 	/* Wait Lock*/
3018646d4dcSBai Ping 	ret = clk_pll14xx_wait_lock(pll);
3028646d4dcSBai Ping 	if (ret)
3038646d4dcSBai Ping 		return ret;
3048646d4dcSBai Ping 
3058646d4dcSBai Ping 	/* Bypass */
3068646d4dcSBai Ping 	tmp &= ~BYPASS_MASK;
307485b4ff5SSascha Hauer 	writel_relaxed(tmp, pll->base + GNRL_CTL);
3088646d4dcSBai Ping 
3098646d4dcSBai Ping 	return 0;
3108646d4dcSBai Ping }
3118646d4dcSBai Ping 
3128646d4dcSBai Ping static int clk_pll14xx_prepare(struct clk_hw *hw)
3138646d4dcSBai Ping {
3148646d4dcSBai Ping 	struct clk_pll14xx *pll = to_clk_pll14xx(hw);
3158646d4dcSBai Ping 	u32 val;
316dee1bc9cSPeng Fan 	int ret;
3178646d4dcSBai Ping 
3188646d4dcSBai Ping 	/*
3198646d4dcSBai Ping 	 * RESETB = 1 from 0, PLL starts its normal
3208646d4dcSBai Ping 	 * operation after lock time
3218646d4dcSBai Ping 	 */
3228646d4dcSBai Ping 	val = readl_relaxed(pll->base + GNRL_CTL);
323dee1bc9cSPeng Fan 	if (val & RST_MASK)
324dee1bc9cSPeng Fan 		return 0;
325dee1bc9cSPeng Fan 	val |= BYPASS_MASK;
326dee1bc9cSPeng Fan 	writel_relaxed(val, pll->base + GNRL_CTL);
3278646d4dcSBai Ping 	val |= RST_MASK;
3288646d4dcSBai Ping 	writel_relaxed(val, pll->base + GNRL_CTL);
3298646d4dcSBai Ping 
330dee1bc9cSPeng Fan 	ret = clk_pll14xx_wait_lock(pll);
331dee1bc9cSPeng Fan 	if (ret)
332dee1bc9cSPeng Fan 		return ret;
333dee1bc9cSPeng Fan 
334dee1bc9cSPeng Fan 	val &= ~BYPASS_MASK;
335dee1bc9cSPeng Fan 	writel_relaxed(val, pll->base + GNRL_CTL);
336dee1bc9cSPeng Fan 
337dee1bc9cSPeng Fan 	return 0;
3388646d4dcSBai Ping }
3398646d4dcSBai Ping 
3408646d4dcSBai Ping static int clk_pll14xx_is_prepared(struct clk_hw *hw)
3418646d4dcSBai Ping {
3428646d4dcSBai Ping 	struct clk_pll14xx *pll = to_clk_pll14xx(hw);
3438646d4dcSBai Ping 	u32 val;
3448646d4dcSBai Ping 
3458646d4dcSBai Ping 	val = readl_relaxed(pll->base + GNRL_CTL);
3468646d4dcSBai Ping 
3478646d4dcSBai Ping 	return (val & RST_MASK) ? 1 : 0;
3488646d4dcSBai Ping }
3498646d4dcSBai Ping 
3508646d4dcSBai Ping static void clk_pll14xx_unprepare(struct clk_hw *hw)
3518646d4dcSBai Ping {
3528646d4dcSBai Ping 	struct clk_pll14xx *pll = to_clk_pll14xx(hw);
3538646d4dcSBai Ping 	u32 val;
3548646d4dcSBai Ping 
3558646d4dcSBai Ping 	/*
3568646d4dcSBai Ping 	 * Set RST to 0, power down mode is enabled and
3578646d4dcSBai Ping 	 * every digital block is reset
3588646d4dcSBai Ping 	 */
3598646d4dcSBai Ping 	val = readl_relaxed(pll->base + GNRL_CTL);
3608646d4dcSBai Ping 	val &= ~RST_MASK;
3618646d4dcSBai Ping 	writel_relaxed(val, pll->base + GNRL_CTL);
3628646d4dcSBai Ping }
3638646d4dcSBai Ping 
3648646d4dcSBai Ping static const struct clk_ops clk_pll1416x_ops = {
3658646d4dcSBai Ping 	.prepare	= clk_pll14xx_prepare,
3668646d4dcSBai Ping 	.unprepare	= clk_pll14xx_unprepare,
3678646d4dcSBai Ping 	.is_prepared	= clk_pll14xx_is_prepared,
3688646d4dcSBai Ping 	.recalc_rate	= clk_pll1416x_recalc_rate,
3698646d4dcSBai Ping 	.round_rate	= clk_pll14xx_round_rate,
3708646d4dcSBai Ping 	.set_rate	= clk_pll1416x_set_rate,
3718646d4dcSBai Ping };
3728646d4dcSBai Ping 
3738646d4dcSBai Ping static const struct clk_ops clk_pll1416x_min_ops = {
3748646d4dcSBai Ping 	.recalc_rate	= clk_pll1416x_recalc_rate,
3758646d4dcSBai Ping };
3768646d4dcSBai Ping 
3778646d4dcSBai Ping static const struct clk_ops clk_pll1443x_ops = {
3788646d4dcSBai Ping 	.prepare	= clk_pll14xx_prepare,
3798646d4dcSBai Ping 	.unprepare	= clk_pll14xx_unprepare,
3808646d4dcSBai Ping 	.is_prepared	= clk_pll14xx_is_prepared,
3818646d4dcSBai Ping 	.recalc_rate	= clk_pll1443x_recalc_rate,
3828646d4dcSBai Ping 	.round_rate	= clk_pll14xx_round_rate,
3838646d4dcSBai Ping 	.set_rate	= clk_pll1443x_set_rate,
3848646d4dcSBai Ping };
3858646d4dcSBai Ping 
38655a8b3cdSAbel Vesa struct clk_hw *imx_dev_clk_hw_pll14xx(struct device *dev, const char *name,
38755a8b3cdSAbel Vesa 				const char *parent_name, void __iomem *base,
3888646d4dcSBai Ping 				const struct imx_pll14xx_clk *pll_clk)
3898646d4dcSBai Ping {
3908646d4dcSBai Ping 	struct clk_pll14xx *pll;
39110c34b50SPeng Fan 	struct clk_hw *hw;
3928646d4dcSBai Ping 	struct clk_init_data init;
39310c34b50SPeng Fan 	int ret;
394a9aa8306SPeng Fan 	u32 val;
3958646d4dcSBai Ping 
3968646d4dcSBai Ping 	pll = kzalloc(sizeof(*pll), GFP_KERNEL);
3978646d4dcSBai Ping 	if (!pll)
3988646d4dcSBai Ping 		return ERR_PTR(-ENOMEM);
3998646d4dcSBai Ping 
4008646d4dcSBai Ping 	init.name = name;
4018646d4dcSBai Ping 	init.flags = pll_clk->flags;
4028646d4dcSBai Ping 	init.parent_names = &parent_name;
4038646d4dcSBai Ping 	init.num_parents = 1;
4048646d4dcSBai Ping 
4058646d4dcSBai Ping 	switch (pll_clk->type) {
4068646d4dcSBai Ping 	case PLL_1416X:
407f89b9e1bSLeonard Crestez 		if (!pll_clk->rate_table)
4088646d4dcSBai Ping 			init.ops = &clk_pll1416x_min_ops;
4098646d4dcSBai Ping 		else
4108646d4dcSBai Ping 			init.ops = &clk_pll1416x_ops;
4118646d4dcSBai Ping 		break;
4128646d4dcSBai Ping 	case PLL_1443X:
4138646d4dcSBai Ping 		init.ops = &clk_pll1443x_ops;
4148646d4dcSBai Ping 		break;
4158646d4dcSBai Ping 	default:
4168646d4dcSBai Ping 		pr_err("%s: Unknown pll type for pll clk %s\n",
4178646d4dcSBai Ping 		       __func__, name);
418530cf8d4SAnson Huang 		kfree(pll);
419530cf8d4SAnson Huang 		return ERR_PTR(-EINVAL);
4208404c661STom Rix 	}
4218646d4dcSBai Ping 
4228646d4dcSBai Ping 	pll->base = base;
4238646d4dcSBai Ping 	pll->hw.init = &init;
4248646d4dcSBai Ping 	pll->type = pll_clk->type;
4258646d4dcSBai Ping 	pll->rate_table = pll_clk->rate_table;
4268646d4dcSBai Ping 	pll->rate_count = pll_clk->rate_count;
4278646d4dcSBai Ping 
428a9aa8306SPeng Fan 	val = readl_relaxed(pll->base + GNRL_CTL);
429a9aa8306SPeng Fan 	val &= ~BYPASS_MASK;
430a9aa8306SPeng Fan 	writel_relaxed(val, pll->base + GNRL_CTL);
431a9aa8306SPeng Fan 
43210c34b50SPeng Fan 	hw = &pll->hw;
43310c34b50SPeng Fan 
43455a8b3cdSAbel Vesa 	ret = clk_hw_register(dev, hw);
43510c34b50SPeng Fan 	if (ret) {
43610c34b50SPeng Fan 		pr_err("%s: failed to register pll %s %d\n",
43710c34b50SPeng Fan 			__func__, name, ret);
4388646d4dcSBai Ping 		kfree(pll);
43910c34b50SPeng Fan 		return ERR_PTR(ret);
4408646d4dcSBai Ping 	}
4418646d4dcSBai Ping 
44210c34b50SPeng Fan 	return hw;
4438646d4dcSBai Ping }
444870ed5e2SAnson Huang EXPORT_SYMBOL_GPL(imx_dev_clk_hw_pll14xx);
445