xref: /openbmc/linux/drivers/clk/rockchip/clk.c (revision 62e59c4e69b3cdbad67e3c2d49e4df4cfe1679e3)
1a245fecbSHeiko Stübner /*
2a245fecbSHeiko Stübner  * Copyright (c) 2014 MundoReader S.L.
3a245fecbSHeiko Stübner  * Author: Heiko Stuebner <heiko@sntech.de>
4a245fecbSHeiko Stübner  *
5ef1d9feeSXing Zheng  * Copyright (c) 2016 Rockchip Electronics Co. Ltd.
6ef1d9feeSXing Zheng  * Author: Xing Zheng <zhengxing@rock-chips.com>
7ef1d9feeSXing Zheng  *
8a245fecbSHeiko Stübner  * based on
9a245fecbSHeiko Stübner  *
10a245fecbSHeiko Stübner  * samsung/clk.c
11a245fecbSHeiko Stübner  * Copyright (c) 2013 Samsung Electronics Co., Ltd.
12a245fecbSHeiko Stübner  * Copyright (c) 2013 Linaro Ltd.
13a245fecbSHeiko Stübner  * Author: Thomas Abraham <thomas.ab@samsung.com>
14a245fecbSHeiko Stübner  *
15a245fecbSHeiko Stübner  * This program is free software; you can redistribute it and/or modify
16a245fecbSHeiko Stübner  * it under the terms of the GNU General Public License as published by
17a245fecbSHeiko Stübner  * the Free Software Foundation; either version 2 of the License, or
18a245fecbSHeiko Stübner  * (at your option) any later version.
19a245fecbSHeiko Stübner  *
20a245fecbSHeiko Stübner  * This program is distributed in the hope that it will be useful,
21a245fecbSHeiko Stübner  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22a245fecbSHeiko Stübner  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23a245fecbSHeiko Stübner  * GNU General Public License for more details.
24a245fecbSHeiko Stübner  */
25a245fecbSHeiko Stübner 
26a245fecbSHeiko Stübner #include <linux/slab.h>
27a245fecbSHeiko Stübner #include <linux/clk.h>
28a245fecbSHeiko Stübner #include <linux/clk-provider.h>
29*62e59c4eSStephen Boyd #include <linux/io.h>
3090c59025SHeiko Stübner #include <linux/mfd/syscon.h>
3190c59025SHeiko Stübner #include <linux/regmap.h>
326f1294b5SHeiko Stübner #include <linux/reboot.h>
335d890c2dSElaine Zhang #include <linux/rational.h>
34a245fecbSHeiko Stübner #include "clk.h"
35a245fecbSHeiko Stübner 
36a245fecbSHeiko Stübner /**
37a245fecbSHeiko Stübner  * Register a clock branch.
38a245fecbSHeiko Stübner  * Most clock branches have a form like
39a245fecbSHeiko Stübner  *
40a245fecbSHeiko Stübner  * src1 --|--\
41a245fecbSHeiko Stübner  *        |M |--[GATE]-[DIV]-
42a245fecbSHeiko Stübner  * src2 --|--/
43a245fecbSHeiko Stübner  *
44a245fecbSHeiko Stübner  * sometimes without one of those components.
45a245fecbSHeiko Stübner  */
461a4b1819SHeiko Stübner static struct clk *rockchip_clk_register_branch(const char *name,
4703ae1747SHeiko Stuebner 		const char *const *parent_names, u8 num_parents,
4803ae1747SHeiko Stuebner 		void __iomem *base,
49a245fecbSHeiko Stübner 		int muxdiv_offset, u8 mux_shift, u8 mux_width, u8 mux_flags,
501f55660fSFinley Xiao 		int div_offset, u8 div_shift, u8 div_width, u8 div_flags,
51a245fecbSHeiko Stübner 		struct clk_div_table *div_table, int gate_offset,
52a245fecbSHeiko Stübner 		u8 gate_shift, u8 gate_flags, unsigned long flags,
53a245fecbSHeiko Stübner 		spinlock_t *lock)
54a245fecbSHeiko Stübner {
55a245fecbSHeiko Stübner 	struct clk *clk;
56a245fecbSHeiko Stübner 	struct clk_mux *mux = NULL;
57a245fecbSHeiko Stübner 	struct clk_gate *gate = NULL;
58a245fecbSHeiko Stübner 	struct clk_divider *div = NULL;
59a245fecbSHeiko Stübner 	const struct clk_ops *mux_ops = NULL, *div_ops = NULL,
60a245fecbSHeiko Stübner 			     *gate_ops = NULL;
61fd3cbbfbSShawn Lin 	int ret;
62a245fecbSHeiko Stübner 
63a245fecbSHeiko Stübner 	if (num_parents > 1) {
64a245fecbSHeiko Stübner 		mux = kzalloc(sizeof(*mux), GFP_KERNEL);
65a245fecbSHeiko Stübner 		if (!mux)
66a245fecbSHeiko Stübner 			return ERR_PTR(-ENOMEM);
67a245fecbSHeiko Stübner 
68a245fecbSHeiko Stübner 		mux->reg = base + muxdiv_offset;
69a245fecbSHeiko Stübner 		mux->shift = mux_shift;
70a245fecbSHeiko Stübner 		mux->mask = BIT(mux_width) - 1;
71a245fecbSHeiko Stübner 		mux->flags = mux_flags;
72a245fecbSHeiko Stübner 		mux->lock = lock;
73a245fecbSHeiko Stübner 		mux_ops = (mux_flags & CLK_MUX_READ_ONLY) ? &clk_mux_ro_ops
74a245fecbSHeiko Stübner 							: &clk_mux_ops;
75a245fecbSHeiko Stübner 	}
76a245fecbSHeiko Stübner 
77a245fecbSHeiko Stübner 	if (gate_offset >= 0) {
78a245fecbSHeiko Stübner 		gate = kzalloc(sizeof(*gate), GFP_KERNEL);
79fd3cbbfbSShawn Lin 		if (!gate) {
80fd3cbbfbSShawn Lin 			ret = -ENOMEM;
812467b674SShawn Lin 			goto err_gate;
82fd3cbbfbSShawn Lin 		}
83a245fecbSHeiko Stübner 
84a245fecbSHeiko Stübner 		gate->flags = gate_flags;
85a245fecbSHeiko Stübner 		gate->reg = base + gate_offset;
86a245fecbSHeiko Stübner 		gate->bit_idx = gate_shift;
87a245fecbSHeiko Stübner 		gate->lock = lock;
88a245fecbSHeiko Stübner 		gate_ops = &clk_gate_ops;
89a245fecbSHeiko Stübner 	}
90a245fecbSHeiko Stübner 
91a245fecbSHeiko Stübner 	if (div_width > 0) {
92a245fecbSHeiko Stübner 		div = kzalloc(sizeof(*div), GFP_KERNEL);
93fd3cbbfbSShawn Lin 		if (!div) {
94fd3cbbfbSShawn Lin 			ret = -ENOMEM;
952467b674SShawn Lin 			goto err_div;
96fd3cbbfbSShawn Lin 		}
97a245fecbSHeiko Stübner 
98a245fecbSHeiko Stübner 		div->flags = div_flags;
991f55660fSFinley Xiao 		if (div_offset)
1001f55660fSFinley Xiao 			div->reg = base + div_offset;
1011f55660fSFinley Xiao 		else
102a245fecbSHeiko Stübner 			div->reg = base + muxdiv_offset;
103a245fecbSHeiko Stübner 		div->shift = div_shift;
104a245fecbSHeiko Stübner 		div->width = div_width;
105a245fecbSHeiko Stübner 		div->lock = lock;
106a245fecbSHeiko Stübner 		div->table = div_table;
10750359819SHeiko Stuebner 		div_ops = (div_flags & CLK_DIVIDER_READ_ONLY)
10850359819SHeiko Stuebner 						? &clk_divider_ro_ops
10950359819SHeiko Stuebner 						: &clk_divider_ops;
110a245fecbSHeiko Stübner 	}
111a245fecbSHeiko Stübner 
112a245fecbSHeiko Stübner 	clk = clk_register_composite(NULL, name, parent_names, num_parents,
113a245fecbSHeiko Stübner 				     mux ? &mux->hw : NULL, mux_ops,
114a245fecbSHeiko Stübner 				     div ? &div->hw : NULL, div_ops,
115a245fecbSHeiko Stübner 				     gate ? &gate->hw : NULL, gate_ops,
116a245fecbSHeiko Stübner 				     flags);
117a245fecbSHeiko Stübner 
118fd3cbbfbSShawn Lin 	if (IS_ERR(clk)) {
119fd3cbbfbSShawn Lin 		ret = PTR_ERR(clk);
120fd3cbbfbSShawn Lin 		goto err_composite;
121fd3cbbfbSShawn Lin 	}
122fd3cbbfbSShawn Lin 
123a245fecbSHeiko Stübner 	return clk;
124fd3cbbfbSShawn Lin err_composite:
125fd3cbbfbSShawn Lin 	kfree(div);
1262467b674SShawn Lin err_div:
1272467b674SShawn Lin 	kfree(gate);
1282467b674SShawn Lin err_gate:
1292467b674SShawn Lin 	kfree(mux);
130fd3cbbfbSShawn Lin 	return ERR_PTR(ret);
131a245fecbSHeiko Stübner }
132a245fecbSHeiko Stübner 
1338ca1ca8fSHeiko Stuebner struct rockchip_clk_frac {
1348ca1ca8fSHeiko Stuebner 	struct notifier_block			clk_nb;
1358ca1ca8fSHeiko Stuebner 	struct clk_fractional_divider		div;
1368ca1ca8fSHeiko Stuebner 	struct clk_gate				gate;
1378ca1ca8fSHeiko Stuebner 
1388ca1ca8fSHeiko Stuebner 	struct clk_mux				mux;
1398ca1ca8fSHeiko Stuebner 	const struct clk_ops			*mux_ops;
1408ca1ca8fSHeiko Stuebner 	int					mux_frac_idx;
1418ca1ca8fSHeiko Stuebner 
1428ca1ca8fSHeiko Stuebner 	bool					rate_change_remuxed;
1438ca1ca8fSHeiko Stuebner 	int					rate_change_idx;
1448ca1ca8fSHeiko Stuebner };
1458ca1ca8fSHeiko Stuebner 
1468ca1ca8fSHeiko Stuebner #define to_rockchip_clk_frac_nb(nb) \
1478ca1ca8fSHeiko Stuebner 			container_of(nb, struct rockchip_clk_frac, clk_nb)
1488ca1ca8fSHeiko Stuebner 
1498ca1ca8fSHeiko Stuebner static int rockchip_clk_frac_notifier_cb(struct notifier_block *nb,
1508ca1ca8fSHeiko Stuebner 					 unsigned long event, void *data)
1518ca1ca8fSHeiko Stuebner {
1528ca1ca8fSHeiko Stuebner 	struct clk_notifier_data *ndata = data;
1538ca1ca8fSHeiko Stuebner 	struct rockchip_clk_frac *frac = to_rockchip_clk_frac_nb(nb);
1548ca1ca8fSHeiko Stuebner 	struct clk_mux *frac_mux = &frac->mux;
1558ca1ca8fSHeiko Stuebner 	int ret = 0;
1568ca1ca8fSHeiko Stuebner 
1578ca1ca8fSHeiko Stuebner 	pr_debug("%s: event %lu, old_rate %lu, new_rate: %lu\n",
1588ca1ca8fSHeiko Stuebner 		 __func__, event, ndata->old_rate, ndata->new_rate);
1598ca1ca8fSHeiko Stuebner 	if (event == PRE_RATE_CHANGE) {
16003ae1747SHeiko Stuebner 		frac->rate_change_idx =
16103ae1747SHeiko Stuebner 				frac->mux_ops->get_parent(&frac_mux->hw);
1628ca1ca8fSHeiko Stuebner 		if (frac->rate_change_idx != frac->mux_frac_idx) {
16303ae1747SHeiko Stuebner 			frac->mux_ops->set_parent(&frac_mux->hw,
16403ae1747SHeiko Stuebner 						  frac->mux_frac_idx);
1658ca1ca8fSHeiko Stuebner 			frac->rate_change_remuxed = 1;
1668ca1ca8fSHeiko Stuebner 		}
1678ca1ca8fSHeiko Stuebner 	} else if (event == POST_RATE_CHANGE) {
1688ca1ca8fSHeiko Stuebner 		/*
1698ca1ca8fSHeiko Stuebner 		 * The POST_RATE_CHANGE notifier runs directly after the
1708ca1ca8fSHeiko Stuebner 		 * divider clock is set in clk_change_rate, so we'll have
1718ca1ca8fSHeiko Stuebner 		 * remuxed back to the original parent before clk_change_rate
1728ca1ca8fSHeiko Stuebner 		 * reaches the mux itself.
1738ca1ca8fSHeiko Stuebner 		 */
1748ca1ca8fSHeiko Stuebner 		if (frac->rate_change_remuxed) {
17503ae1747SHeiko Stuebner 			frac->mux_ops->set_parent(&frac_mux->hw,
17603ae1747SHeiko Stuebner 						  frac->rate_change_idx);
1778ca1ca8fSHeiko Stuebner 			frac->rate_change_remuxed = 0;
1788ca1ca8fSHeiko Stuebner 		}
1798ca1ca8fSHeiko Stuebner 	}
1808ca1ca8fSHeiko Stuebner 
1818ca1ca8fSHeiko Stuebner 	return notifier_from_errno(ret);
1828ca1ca8fSHeiko Stuebner }
1838ca1ca8fSHeiko Stuebner 
1845d890c2dSElaine Zhang /**
1855d890c2dSElaine Zhang  * fractional divider must set that denominator is 20 times larger than
1865d890c2dSElaine Zhang  * numerator to generate precise clock frequency.
1875d890c2dSElaine Zhang  */
1881dfcfa72SStephen Boyd static void rockchip_fractional_approximation(struct clk_hw *hw,
1895d890c2dSElaine Zhang 		unsigned long rate, unsigned long *parent_rate,
1905d890c2dSElaine Zhang 		unsigned long *m, unsigned long *n)
1915d890c2dSElaine Zhang {
1925d890c2dSElaine Zhang 	struct clk_fractional_divider *fd = to_clk_fd(hw);
1935d890c2dSElaine Zhang 	unsigned long p_rate, p_parent_rate;
1945d890c2dSElaine Zhang 	struct clk_hw *p_parent;
1955d890c2dSElaine Zhang 	unsigned long scale;
1965d890c2dSElaine Zhang 
1975d890c2dSElaine Zhang 	p_rate = clk_hw_get_rate(clk_hw_get_parent(hw));
1985d890c2dSElaine Zhang 	if ((rate * 20 > p_rate) && (p_rate % rate != 0)) {
1995d890c2dSElaine Zhang 		p_parent = clk_hw_get_parent(clk_hw_get_parent(hw));
2005d890c2dSElaine Zhang 		p_parent_rate = clk_hw_get_rate(p_parent);
2015d890c2dSElaine Zhang 		*parent_rate = p_parent_rate;
2025d890c2dSElaine Zhang 	}
2035d890c2dSElaine Zhang 
2045d890c2dSElaine Zhang 	/*
2055d890c2dSElaine Zhang 	 * Get rate closer to *parent_rate to guarantee there is no overflow
2065d890c2dSElaine Zhang 	 * for m and n. In the result it will be the nearest rate left shifted
2075d890c2dSElaine Zhang 	 * by (scale - fd->nwidth) bits.
2085d890c2dSElaine Zhang 	 */
2095d890c2dSElaine Zhang 	scale = fls_long(*parent_rate / rate - 1);
2105d890c2dSElaine Zhang 	if (scale > fd->nwidth)
2115d890c2dSElaine Zhang 		rate <<= scale - fd->nwidth;
2125d890c2dSElaine Zhang 
2135d890c2dSElaine Zhang 	rational_best_approximation(rate, *parent_rate,
2145d890c2dSElaine Zhang 			GENMASK(fd->mwidth - 1, 0), GENMASK(fd->nwidth - 1, 0),
2155d890c2dSElaine Zhang 			m, n);
2165d890c2dSElaine Zhang }
2175d890c2dSElaine Zhang 
218ef1d9feeSXing Zheng static struct clk *rockchip_clk_register_frac_branch(
219ef1d9feeSXing Zheng 		struct rockchip_clk_provider *ctx, const char *name,
2204a1caed3SUwe Kleine-König 		const char *const *parent_names, u8 num_parents,
2214a1caed3SUwe Kleine-König 		void __iomem *base, int muxdiv_offset, u8 div_flags,
222b2155a71SHeiko Stübner 		int gate_offset, u8 gate_shift, u8 gate_flags,
2238ca1ca8fSHeiko Stuebner 		unsigned long flags, struct rockchip_clk_branch *child,
2248ca1ca8fSHeiko Stuebner 		spinlock_t *lock)
225b2155a71SHeiko Stübner {
2268ca1ca8fSHeiko Stuebner 	struct rockchip_clk_frac *frac;
227b2155a71SHeiko Stübner 	struct clk *clk;
228b2155a71SHeiko Stübner 	struct clk_gate *gate = NULL;
229b2155a71SHeiko Stübner 	struct clk_fractional_divider *div = NULL;
230b2155a71SHeiko Stübner 	const struct clk_ops *div_ops = NULL, *gate_ops = NULL;
231b2155a71SHeiko Stübner 
2328ca1ca8fSHeiko Stuebner 	if (muxdiv_offset < 0)
2338ca1ca8fSHeiko Stuebner 		return ERR_PTR(-EINVAL);
2348ca1ca8fSHeiko Stuebner 
2358ca1ca8fSHeiko Stuebner 	if (child && child->branch_type != branch_mux) {
2368ca1ca8fSHeiko Stuebner 		pr_err("%s: fractional child clock for %s can only be a mux\n",
2378ca1ca8fSHeiko Stuebner 		       __func__, name);
2388ca1ca8fSHeiko Stuebner 		return ERR_PTR(-EINVAL);
2398ca1ca8fSHeiko Stuebner 	}
2408ca1ca8fSHeiko Stuebner 
2418ca1ca8fSHeiko Stuebner 	frac = kzalloc(sizeof(*frac), GFP_KERNEL);
2428ca1ca8fSHeiko Stuebner 	if (!frac)
243b2155a71SHeiko Stübner 		return ERR_PTR(-ENOMEM);
244b2155a71SHeiko Stübner 
2458ca1ca8fSHeiko Stuebner 	if (gate_offset >= 0) {
2468ca1ca8fSHeiko Stuebner 		gate = &frac->gate;
247b2155a71SHeiko Stübner 		gate->flags = gate_flags;
248b2155a71SHeiko Stübner 		gate->reg = base + gate_offset;
249b2155a71SHeiko Stübner 		gate->bit_idx = gate_shift;
250b2155a71SHeiko Stübner 		gate->lock = lock;
251b2155a71SHeiko Stübner 		gate_ops = &clk_gate_ops;
252b2155a71SHeiko Stübner 	}
253b2155a71SHeiko Stübner 
2548ca1ca8fSHeiko Stuebner 	div = &frac->div;
255b2155a71SHeiko Stübner 	div->flags = div_flags;
256b2155a71SHeiko Stübner 	div->reg = base + muxdiv_offset;
257b2155a71SHeiko Stübner 	div->mshift = 16;
2585d49a6e1SAndy Shevchenko 	div->mwidth = 16;
2595d49a6e1SAndy Shevchenko 	div->mmask = GENMASK(div->mwidth - 1, 0) << div->mshift;
260b2155a71SHeiko Stübner 	div->nshift = 0;
2615d49a6e1SAndy Shevchenko 	div->nwidth = 16;
2625d49a6e1SAndy Shevchenko 	div->nmask = GENMASK(div->nwidth - 1, 0) << div->nshift;
263b2155a71SHeiko Stübner 	div->lock = lock;
2645d890c2dSElaine Zhang 	div->approximation = rockchip_fractional_approximation;
265b2155a71SHeiko Stübner 	div_ops = &clk_fractional_divider_ops;
266b2155a71SHeiko Stübner 
267b2155a71SHeiko Stübner 	clk = clk_register_composite(NULL, name, parent_names, num_parents,
268b2155a71SHeiko Stübner 				     NULL, NULL,
269b2155a71SHeiko Stübner 				     &div->hw, div_ops,
270b2155a71SHeiko Stübner 				     gate ? &gate->hw : NULL, gate_ops,
2718ca1ca8fSHeiko Stuebner 				     flags | CLK_SET_RATE_UNGATE);
2728ca1ca8fSHeiko Stuebner 	if (IS_ERR(clk)) {
2738ca1ca8fSHeiko Stuebner 		kfree(frac);
2748ca1ca8fSHeiko Stuebner 		return clk;
2758ca1ca8fSHeiko Stuebner 	}
2768ca1ca8fSHeiko Stuebner 
2778ca1ca8fSHeiko Stuebner 	if (child) {
2788ca1ca8fSHeiko Stuebner 		struct clk_mux *frac_mux = &frac->mux;
2798ca1ca8fSHeiko Stuebner 		struct clk_init_data init;
2808ca1ca8fSHeiko Stuebner 		struct clk *mux_clk;
281a425702fSYisheng Xie 		int ret;
2828ca1ca8fSHeiko Stuebner 
283a425702fSYisheng Xie 		frac->mux_frac_idx = match_string(child->parent_names,
284a425702fSYisheng Xie 						  child->num_parents, name);
2858ca1ca8fSHeiko Stuebner 		frac->mux_ops = &clk_mux_ops;
2868ca1ca8fSHeiko Stuebner 		frac->clk_nb.notifier_call = rockchip_clk_frac_notifier_cb;
2878ca1ca8fSHeiko Stuebner 
2888ca1ca8fSHeiko Stuebner 		frac_mux->reg = base + child->muxdiv_offset;
2898ca1ca8fSHeiko Stuebner 		frac_mux->shift = child->mux_shift;
2908ca1ca8fSHeiko Stuebner 		frac_mux->mask = BIT(child->mux_width) - 1;
2918ca1ca8fSHeiko Stuebner 		frac_mux->flags = child->mux_flags;
2928ca1ca8fSHeiko Stuebner 		frac_mux->lock = lock;
2938ca1ca8fSHeiko Stuebner 		frac_mux->hw.init = &init;
2948ca1ca8fSHeiko Stuebner 
2958ca1ca8fSHeiko Stuebner 		init.name = child->name;
2968ca1ca8fSHeiko Stuebner 		init.flags = child->flags | CLK_SET_RATE_PARENT;
2978ca1ca8fSHeiko Stuebner 		init.ops = frac->mux_ops;
2988ca1ca8fSHeiko Stuebner 		init.parent_names = child->parent_names;
2998ca1ca8fSHeiko Stuebner 		init.num_parents = child->num_parents;
3008ca1ca8fSHeiko Stuebner 
3018ca1ca8fSHeiko Stuebner 		mux_clk = clk_register(NULL, &frac_mux->hw);
302fd3cbbfbSShawn Lin 		if (IS_ERR(mux_clk)) {
303fd3cbbfbSShawn Lin 			kfree(frac);
3048ca1ca8fSHeiko Stuebner 			return clk;
305fd3cbbfbSShawn Lin 		}
3068ca1ca8fSHeiko Stuebner 
307ef1d9feeSXing Zheng 		rockchip_clk_add_lookup(ctx, mux_clk, child->id);
3088ca1ca8fSHeiko Stuebner 
3098ca1ca8fSHeiko Stuebner 		/* notifier on the fraction divider to catch rate changes */
3108ca1ca8fSHeiko Stuebner 		if (frac->mux_frac_idx >= 0) {
311a425702fSYisheng Xie 			pr_debug("%s: found fractional parent in mux at pos %d\n",
312a425702fSYisheng Xie 				 __func__, frac->mux_frac_idx);
3138ca1ca8fSHeiko Stuebner 			ret = clk_notifier_register(clk, &frac->clk_nb);
3148ca1ca8fSHeiko Stuebner 			if (ret)
3158ca1ca8fSHeiko Stuebner 				pr_err("%s: failed to register clock notifier for %s\n",
3168ca1ca8fSHeiko Stuebner 						__func__, name);
3178ca1ca8fSHeiko Stuebner 		} else {
3188ca1ca8fSHeiko Stuebner 			pr_warn("%s: could not find %s as parent of %s, rate changes may not work\n",
3198ca1ca8fSHeiko Stuebner 				__func__, name, child->name);
3208ca1ca8fSHeiko Stuebner 		}
3218ca1ca8fSHeiko Stuebner 	}
322b2155a71SHeiko Stübner 
323b2155a71SHeiko Stübner 	return clk;
324b2155a71SHeiko Stübner }
325b2155a71SHeiko Stübner 
32629a30c26SHeiko Stuebner static struct clk *rockchip_clk_register_factor_branch(const char *name,
32729a30c26SHeiko Stuebner 		const char *const *parent_names, u8 num_parents,
32829a30c26SHeiko Stuebner 		void __iomem *base, unsigned int mult, unsigned int div,
32929a30c26SHeiko Stuebner 		int gate_offset, u8 gate_shift, u8 gate_flags,
33029a30c26SHeiko Stuebner 		unsigned long flags, spinlock_t *lock)
33129a30c26SHeiko Stuebner {
33229a30c26SHeiko Stuebner 	struct clk *clk;
33329a30c26SHeiko Stuebner 	struct clk_gate *gate = NULL;
33429a30c26SHeiko Stuebner 	struct clk_fixed_factor *fix = NULL;
33529a30c26SHeiko Stuebner 
33629a30c26SHeiko Stuebner 	/* without gate, register a simple factor clock */
33729a30c26SHeiko Stuebner 	if (gate_offset == 0) {
33829a30c26SHeiko Stuebner 		return clk_register_fixed_factor(NULL, name,
33929a30c26SHeiko Stuebner 				parent_names[0], flags, mult,
34029a30c26SHeiko Stuebner 				div);
34129a30c26SHeiko Stuebner 	}
34229a30c26SHeiko Stuebner 
34329a30c26SHeiko Stuebner 	gate = kzalloc(sizeof(*gate), GFP_KERNEL);
34429a30c26SHeiko Stuebner 	if (!gate)
34529a30c26SHeiko Stuebner 		return ERR_PTR(-ENOMEM);
34629a30c26SHeiko Stuebner 
34729a30c26SHeiko Stuebner 	gate->flags = gate_flags;
34829a30c26SHeiko Stuebner 	gate->reg = base + gate_offset;
34929a30c26SHeiko Stuebner 	gate->bit_idx = gate_shift;
35029a30c26SHeiko Stuebner 	gate->lock = lock;
35129a30c26SHeiko Stuebner 
35229a30c26SHeiko Stuebner 	fix = kzalloc(sizeof(*fix), GFP_KERNEL);
35329a30c26SHeiko Stuebner 	if (!fix) {
35429a30c26SHeiko Stuebner 		kfree(gate);
35529a30c26SHeiko Stuebner 		return ERR_PTR(-ENOMEM);
35629a30c26SHeiko Stuebner 	}
35729a30c26SHeiko Stuebner 
35829a30c26SHeiko Stuebner 	fix->mult = mult;
35929a30c26SHeiko Stuebner 	fix->div = div;
36029a30c26SHeiko Stuebner 
36129a30c26SHeiko Stuebner 	clk = clk_register_composite(NULL, name, parent_names, num_parents,
36229a30c26SHeiko Stuebner 				     NULL, NULL,
36329a30c26SHeiko Stuebner 				     &fix->hw, &clk_fixed_factor_ops,
36429a30c26SHeiko Stuebner 				     &gate->hw, &clk_gate_ops, flags);
36529a30c26SHeiko Stuebner 	if (IS_ERR(clk)) {
36629a30c26SHeiko Stuebner 		kfree(fix);
36729a30c26SHeiko Stuebner 		kfree(gate);
36829a30c26SHeiko Stuebner 	}
36929a30c26SHeiko Stuebner 
37029a30c26SHeiko Stuebner 	return clk;
37129a30c26SHeiko Stuebner }
37229a30c26SHeiko Stuebner 
373ef1d9feeSXing Zheng struct rockchip_clk_provider * __init rockchip_clk_init(struct device_node *np,
374ef1d9feeSXing Zheng 			void __iomem *base, unsigned long nr_clks)
375a245fecbSHeiko Stübner {
376ef1d9feeSXing Zheng 	struct rockchip_clk_provider *ctx;
377ef1d9feeSXing Zheng 	struct clk **clk_table;
378ef1d9feeSXing Zheng 	int i;
379ef1d9feeSXing Zheng 
380ef1d9feeSXing Zheng 	ctx = kzalloc(sizeof(struct rockchip_clk_provider), GFP_KERNEL);
38103ae1747SHeiko Stuebner 	if (!ctx)
382ef1d9feeSXing Zheng 		return ERR_PTR(-ENOMEM);
383a245fecbSHeiko Stübner 
384a245fecbSHeiko Stübner 	clk_table = kcalloc(nr_clks, sizeof(struct clk *), GFP_KERNEL);
38503ae1747SHeiko Stuebner 	if (!clk_table)
386ef1d9feeSXing Zheng 		goto err_free;
387a245fecbSHeiko Stübner 
388ef1d9feeSXing Zheng 	for (i = 0; i < nr_clks; ++i)
389ef1d9feeSXing Zheng 		clk_table[i] = ERR_PTR(-ENOENT);
390ef1d9feeSXing Zheng 
391ef1d9feeSXing Zheng 	ctx->reg_base = base;
392ef1d9feeSXing Zheng 	ctx->clk_data.clks = clk_table;
393ef1d9feeSXing Zheng 	ctx->clk_data.clk_num = nr_clks;
394ef1d9feeSXing Zheng 	ctx->cru_node = np;
395ef1d9feeSXing Zheng 	spin_lock_init(&ctx->lock);
396ef1d9feeSXing Zheng 
3976f339dc2SHeiko Stuebner 	ctx->grf = syscon_regmap_lookup_by_phandle(ctx->cru_node,
3986f339dc2SHeiko Stuebner 						   "rockchip,grf");
3996f339dc2SHeiko Stuebner 
400ef1d9feeSXing Zheng 	return ctx;
401ef1d9feeSXing Zheng 
402ef1d9feeSXing Zheng err_free:
403ef1d9feeSXing Zheng 	kfree(ctx);
404ef1d9feeSXing Zheng 	return ERR_PTR(-ENOMEM);
405ef1d9feeSXing Zheng }
406ef1d9feeSXing Zheng 
407ef1d9feeSXing Zheng void __init rockchip_clk_of_add_provider(struct device_node *np,
408ef1d9feeSXing Zheng 				struct rockchip_clk_provider *ctx)
40990c59025SHeiko Stübner {
410ef1d9feeSXing Zheng 	if (of_clk_add_provider(np, of_clk_src_onecell_get,
411ef1d9feeSXing Zheng 				&ctx->clk_data))
412ef1d9feeSXing Zheng 		pr_err("%s: could not register clk provider\n", __func__);
413ef1d9feeSXing Zheng }
41490c59025SHeiko Stübner 
415ef1d9feeSXing Zheng void rockchip_clk_add_lookup(struct rockchip_clk_provider *ctx,
416ef1d9feeSXing Zheng 			     struct clk *clk, unsigned int id)
417ef1d9feeSXing Zheng {
418ef1d9feeSXing Zheng 	if (ctx->clk_data.clks && id)
419ef1d9feeSXing Zheng 		ctx->clk_data.clks[id] = clk;
420ef1d9feeSXing Zheng }
421ef1d9feeSXing Zheng 
422ef1d9feeSXing Zheng void __init rockchip_clk_register_plls(struct rockchip_clk_provider *ctx,
423ef1d9feeSXing Zheng 				struct rockchip_pll_clock *list,
42490c59025SHeiko Stübner 				unsigned int nr_pll, int grf_lock_offset)
42590c59025SHeiko Stübner {
42690c59025SHeiko Stübner 	struct clk *clk;
42790c59025SHeiko Stübner 	int idx;
42890c59025SHeiko Stübner 
42990c59025SHeiko Stübner 	for (idx = 0; idx < nr_pll; idx++, list++) {
430ef1d9feeSXing Zheng 		clk = rockchip_clk_register_pll(ctx, list->type, list->name,
43190c59025SHeiko Stübner 				list->parent_names, list->num_parents,
432ef1d9feeSXing Zheng 				list->con_offset, grf_lock_offset,
43390c59025SHeiko Stübner 				list->lock_shift, list->mode_offset,
4344f8a7c54SHeiko Stuebner 				list->mode_shift, list->rate_table,
435e6cebc72SHeiko Stübner 				list->flags, list->pll_flags);
43690c59025SHeiko Stübner 		if (IS_ERR(clk)) {
43790c59025SHeiko Stübner 			pr_err("%s: failed to register clock %s\n", __func__,
43890c59025SHeiko Stübner 				list->name);
43990c59025SHeiko Stübner 			continue;
44090c59025SHeiko Stübner 		}
44190c59025SHeiko Stübner 
442ef1d9feeSXing Zheng 		rockchip_clk_add_lookup(ctx, clk, list->id);
44390c59025SHeiko Stübner 	}
44490c59025SHeiko Stübner }
44590c59025SHeiko Stübner 
446a245fecbSHeiko Stübner void __init rockchip_clk_register_branches(
447ef1d9feeSXing Zheng 				      struct rockchip_clk_provider *ctx,
448a245fecbSHeiko Stübner 				      struct rockchip_clk_branch *list,
449a245fecbSHeiko Stübner 				      unsigned int nr_clk)
450a245fecbSHeiko Stübner {
451a245fecbSHeiko Stübner 	struct clk *clk = NULL;
452a245fecbSHeiko Stübner 	unsigned int idx;
453a245fecbSHeiko Stübner 	unsigned long flags;
454a245fecbSHeiko Stübner 
455a245fecbSHeiko Stübner 	for (idx = 0; idx < nr_clk; idx++, list++) {
456a245fecbSHeiko Stübner 		flags = list->flags;
457a245fecbSHeiko Stübner 
458a245fecbSHeiko Stübner 		/* catch simple muxes */
459a245fecbSHeiko Stübner 		switch (list->branch_type) {
460a245fecbSHeiko Stübner 		case branch_mux:
461a245fecbSHeiko Stübner 			clk = clk_register_mux(NULL, list->name,
462a245fecbSHeiko Stübner 				list->parent_names, list->num_parents,
463ef1d9feeSXing Zheng 				flags, ctx->reg_base + list->muxdiv_offset,
464a245fecbSHeiko Stübner 				list->mux_shift, list->mux_width,
465ef1d9feeSXing Zheng 				list->mux_flags, &ctx->lock);
466a245fecbSHeiko Stübner 			break;
467cb1d9f6dSHeiko Stuebner 		case branch_muxgrf:
468cb1d9f6dSHeiko Stuebner 			clk = rockchip_clk_register_muxgrf(list->name,
469cb1d9f6dSHeiko Stuebner 				list->parent_names, list->num_parents,
470cb1d9f6dSHeiko Stuebner 				flags, ctx->grf, list->muxdiv_offset,
471cb1d9f6dSHeiko Stuebner 				list->mux_shift, list->mux_width,
472cb1d9f6dSHeiko Stuebner 				list->mux_flags);
473cb1d9f6dSHeiko Stuebner 			break;
474a245fecbSHeiko Stübner 		case branch_divider:
475a245fecbSHeiko Stübner 			if (list->div_table)
476a245fecbSHeiko Stübner 				clk = clk_register_divider_table(NULL,
477a245fecbSHeiko Stübner 					list->name, list->parent_names[0],
47803ae1747SHeiko Stuebner 					flags,
47903ae1747SHeiko Stuebner 					ctx->reg_base + list->muxdiv_offset,
480a245fecbSHeiko Stübner 					list->div_shift, list->div_width,
481a245fecbSHeiko Stübner 					list->div_flags, list->div_table,
482ef1d9feeSXing Zheng 					&ctx->lock);
483a245fecbSHeiko Stübner 			else
484a245fecbSHeiko Stübner 				clk = clk_register_divider(NULL, list->name,
485a245fecbSHeiko Stübner 					list->parent_names[0], flags,
486ef1d9feeSXing Zheng 					ctx->reg_base + list->muxdiv_offset,
487a245fecbSHeiko Stübner 					list->div_shift, list->div_width,
488ef1d9feeSXing Zheng 					list->div_flags, &ctx->lock);
489a245fecbSHeiko Stübner 			break;
490a245fecbSHeiko Stübner 		case branch_fraction_divider:
491ef1d9feeSXing Zheng 			clk = rockchip_clk_register_frac_branch(ctx, list->name,
492b2155a71SHeiko Stübner 				list->parent_names, list->num_parents,
49303ae1747SHeiko Stuebner 				ctx->reg_base, list->muxdiv_offset,
49403ae1747SHeiko Stuebner 				list->div_flags,
495b2155a71SHeiko Stübner 				list->gate_offset, list->gate_shift,
4968ca1ca8fSHeiko Stuebner 				list->gate_flags, flags, list->child,
497ef1d9feeSXing Zheng 				&ctx->lock);
498a245fecbSHeiko Stübner 			break;
499956060a5SElaine Zhang 		case branch_half_divider:
500956060a5SElaine Zhang 			clk = rockchip_clk_register_halfdiv(list->name,
501956060a5SElaine Zhang 				list->parent_names, list->num_parents,
502956060a5SElaine Zhang 				ctx->reg_base, list->muxdiv_offset,
503956060a5SElaine Zhang 				list->mux_shift, list->mux_width,
504956060a5SElaine Zhang 				list->mux_flags, list->div_shift,
505956060a5SElaine Zhang 				list->div_width, list->div_flags,
506956060a5SElaine Zhang 				list->gate_offset, list->gate_shift,
507956060a5SElaine Zhang 				list->gate_flags, flags, &ctx->lock);
508956060a5SElaine Zhang 			break;
509a245fecbSHeiko Stübner 		case branch_gate:
510a245fecbSHeiko Stübner 			flags |= CLK_SET_RATE_PARENT;
511a245fecbSHeiko Stübner 
512a245fecbSHeiko Stübner 			clk = clk_register_gate(NULL, list->name,
513a245fecbSHeiko Stübner 				list->parent_names[0], flags,
514ef1d9feeSXing Zheng 				ctx->reg_base + list->gate_offset,
515ef1d9feeSXing Zheng 				list->gate_shift, list->gate_flags, &ctx->lock);
516a245fecbSHeiko Stübner 			break;
517a245fecbSHeiko Stübner 		case branch_composite:
518a245fecbSHeiko Stübner 			clk = rockchip_clk_register_branch(list->name,
519a245fecbSHeiko Stübner 				list->parent_names, list->num_parents,
52003ae1747SHeiko Stuebner 				ctx->reg_base, list->muxdiv_offset,
52103ae1747SHeiko Stuebner 				list->mux_shift,
522a245fecbSHeiko Stübner 				list->mux_width, list->mux_flags,
5231f55660fSFinley Xiao 				list->div_offset, list->div_shift, list->div_width,
524a245fecbSHeiko Stübner 				list->div_flags, list->div_table,
525a245fecbSHeiko Stübner 				list->gate_offset, list->gate_shift,
526ef1d9feeSXing Zheng 				list->gate_flags, flags, &ctx->lock);
527a245fecbSHeiko Stübner 			break;
52889bf26cbSAlexandru M Stan 		case branch_mmc:
52989bf26cbSAlexandru M Stan 			clk = rockchip_clk_register_mmc(
53089bf26cbSAlexandru M Stan 				list->name,
53189bf26cbSAlexandru M Stan 				list->parent_names, list->num_parents,
532ef1d9feeSXing Zheng 				ctx->reg_base + list->muxdiv_offset,
53389bf26cbSAlexandru M Stan 				list->div_shift
53489bf26cbSAlexandru M Stan 			);
53589bf26cbSAlexandru M Stan 			break;
5368a76f443SHeiko Stuebner 		case branch_inverter:
5378a76f443SHeiko Stuebner 			clk = rockchip_clk_register_inverter(
5388a76f443SHeiko Stuebner 				list->name, list->parent_names,
5398a76f443SHeiko Stuebner 				list->num_parents,
540ef1d9feeSXing Zheng 				ctx->reg_base + list->muxdiv_offset,
541ef1d9feeSXing Zheng 				list->div_shift, list->div_flags, &ctx->lock);
5428a76f443SHeiko Stuebner 			break;
54329a30c26SHeiko Stuebner 		case branch_factor:
54429a30c26SHeiko Stuebner 			clk = rockchip_clk_register_factor_branch(
54529a30c26SHeiko Stuebner 				list->name, list->parent_names,
546ef1d9feeSXing Zheng 				list->num_parents, ctx->reg_base,
54729a30c26SHeiko Stuebner 				list->div_shift, list->div_width,
54829a30c26SHeiko Stuebner 				list->gate_offset, list->gate_shift,
549ef1d9feeSXing Zheng 				list->gate_flags, flags, &ctx->lock);
55029a30c26SHeiko Stuebner 			break;
551a4f182bfSLin Huang 		case branch_ddrclk:
552a4f182bfSLin Huang 			clk = rockchip_clk_register_ddrclk(
553a4f182bfSLin Huang 				list->name, list->flags,
554a4f182bfSLin Huang 				list->parent_names, list->num_parents,
555a4f182bfSLin Huang 				list->muxdiv_offset, list->mux_shift,
556a4f182bfSLin Huang 				list->mux_width, list->div_shift,
557a4f182bfSLin Huang 				list->div_width, list->div_flags,
558a4f182bfSLin Huang 				ctx->reg_base, &ctx->lock);
559a4f182bfSLin Huang 			break;
560a245fecbSHeiko Stübner 		}
561a245fecbSHeiko Stübner 
562a245fecbSHeiko Stübner 		/* none of the cases above matched */
563a245fecbSHeiko Stübner 		if (!clk) {
564a245fecbSHeiko Stübner 			pr_err("%s: unknown clock type %d\n",
565a245fecbSHeiko Stübner 			       __func__, list->branch_type);
566a245fecbSHeiko Stübner 			continue;
567a245fecbSHeiko Stübner 		}
568a245fecbSHeiko Stübner 
569a245fecbSHeiko Stübner 		if (IS_ERR(clk)) {
570a245fecbSHeiko Stübner 			pr_err("%s: failed to register clock %s: %ld\n",
571a245fecbSHeiko Stübner 			       __func__, list->name, PTR_ERR(clk));
572a245fecbSHeiko Stübner 			continue;
573a245fecbSHeiko Stübner 		}
574a245fecbSHeiko Stübner 
575ef1d9feeSXing Zheng 		rockchip_clk_add_lookup(ctx, clk, list->id);
576a245fecbSHeiko Stübner 	}
577a245fecbSHeiko Stübner }
578fe94f974SHeiko Stübner 
579ef1d9feeSXing Zheng void __init rockchip_clk_register_armclk(struct rockchip_clk_provider *ctx,
580ef1d9feeSXing Zheng 			unsigned int lookup_id,
5814a1caed3SUwe Kleine-König 			const char *name, const char *const *parent_names,
582f6fba5f6SHeiko Stuebner 			u8 num_parents,
583f6fba5f6SHeiko Stuebner 			const struct rockchip_cpuclk_reg_data *reg_data,
584f6fba5f6SHeiko Stuebner 			const struct rockchip_cpuclk_rate_table *rates,
585f6fba5f6SHeiko Stuebner 			int nrates)
586f6fba5f6SHeiko Stuebner {
587f6fba5f6SHeiko Stuebner 	struct clk *clk;
588f6fba5f6SHeiko Stuebner 
589f6fba5f6SHeiko Stuebner 	clk = rockchip_clk_register_cpuclk(name, parent_names, num_parents,
59003ae1747SHeiko Stuebner 					   reg_data, rates, nrates,
59103ae1747SHeiko Stuebner 					   ctx->reg_base, &ctx->lock);
592f6fba5f6SHeiko Stuebner 	if (IS_ERR(clk)) {
593f6fba5f6SHeiko Stuebner 		pr_err("%s: failed to register clock %s: %ld\n",
594f6fba5f6SHeiko Stuebner 		       __func__, name, PTR_ERR(clk));
595f6fba5f6SHeiko Stuebner 		return;
596f6fba5f6SHeiko Stuebner 	}
597f6fba5f6SHeiko Stuebner 
598ef1d9feeSXing Zheng 	rockchip_clk_add_lookup(ctx, clk, lookup_id);
599f6fba5f6SHeiko Stuebner }
600f6fba5f6SHeiko Stuebner 
601692d8328SUwe Kleine-König void __init rockchip_clk_protect_critical(const char *const clocks[],
602692d8328SUwe Kleine-König 					  int nclocks)
603fe94f974SHeiko Stübner {
604fe94f974SHeiko Stübner 	int i;
605fe94f974SHeiko Stübner 
606fe94f974SHeiko Stübner 	/* Protect the clocks that needs to stay on */
607fe94f974SHeiko Stübner 	for (i = 0; i < nclocks; i++) {
608fe94f974SHeiko Stübner 		struct clk *clk = __clk_lookup(clocks[i]);
609fe94f974SHeiko Stübner 
610fe94f974SHeiko Stübner 		if (clk)
611fe94f974SHeiko Stübner 			clk_prepare_enable(clk);
612fe94f974SHeiko Stübner 	}
613fe94f974SHeiko Stübner }
6146f1294b5SHeiko Stübner 
615ef1d9feeSXing Zheng static void __iomem *rst_base;
6166f1294b5SHeiko Stübner static unsigned int reg_restart;
617dfff24bdSHeiko Stuebner static void (*cb_restart)(void);
6186f1294b5SHeiko Stübner static int rockchip_restart_notify(struct notifier_block *this,
6196f1294b5SHeiko Stübner 				   unsigned long mode, void *cmd)
6206f1294b5SHeiko Stübner {
621dfff24bdSHeiko Stuebner 	if (cb_restart)
622dfff24bdSHeiko Stuebner 		cb_restart();
623dfff24bdSHeiko Stuebner 
624ef1d9feeSXing Zheng 	writel(0xfdb9, rst_base + reg_restart);
6256f1294b5SHeiko Stübner 	return NOTIFY_DONE;
6266f1294b5SHeiko Stübner }
6276f1294b5SHeiko Stübner 
6286f1294b5SHeiko Stübner static struct notifier_block rockchip_restart_handler = {
6296f1294b5SHeiko Stübner 	.notifier_call = rockchip_restart_notify,
6306f1294b5SHeiko Stübner 	.priority = 128,
6316f1294b5SHeiko Stübner };
6326f1294b5SHeiko Stübner 
63303ae1747SHeiko Stuebner void __init
63403ae1747SHeiko Stuebner rockchip_register_restart_notifier(struct rockchip_clk_provider *ctx,
63503ae1747SHeiko Stuebner 					       unsigned int reg,
63603ae1747SHeiko Stuebner 					       void (*cb)(void))
6376f1294b5SHeiko Stübner {
6386f1294b5SHeiko Stübner 	int ret;
6396f1294b5SHeiko Stübner 
640ef1d9feeSXing Zheng 	rst_base = ctx->reg_base;
6416f1294b5SHeiko Stübner 	reg_restart = reg;
642dfff24bdSHeiko Stuebner 	cb_restart = cb;
6436f1294b5SHeiko Stübner 	ret = register_restart_handler(&rockchip_restart_handler);
6446f1294b5SHeiko Stübner 	if (ret)
6456f1294b5SHeiko Stübner 		pr_err("%s: cannot register restart handler, %d\n",
6466f1294b5SHeiko Stübner 		       __func__, ret);
6476f1294b5SHeiko Stübner }
648