xref: /openbmc/linux/drivers/clk/rockchip/clk.c (revision fd3cbbfb76a422a5b0f85649b677477a308866db)
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>
2990c59025SHeiko Stübner #include <linux/mfd/syscon.h>
3090c59025SHeiko Stübner #include <linux/regmap.h>
316f1294b5SHeiko Stübner #include <linux/reboot.h>
325d890c2dSElaine Zhang #include <linux/rational.h>
33a245fecbSHeiko Stübner #include "clk.h"
34a245fecbSHeiko Stübner 
35a245fecbSHeiko Stübner /**
36a245fecbSHeiko Stübner  * Register a clock branch.
37a245fecbSHeiko Stübner  * Most clock branches have a form like
38a245fecbSHeiko Stübner  *
39a245fecbSHeiko Stübner  * src1 --|--\
40a245fecbSHeiko Stübner  *        |M |--[GATE]-[DIV]-
41a245fecbSHeiko Stübner  * src2 --|--/
42a245fecbSHeiko Stübner  *
43a245fecbSHeiko Stübner  * sometimes without one of those components.
44a245fecbSHeiko Stübner  */
451a4b1819SHeiko Stübner static struct clk *rockchip_clk_register_branch(const char *name,
4603ae1747SHeiko Stuebner 		const char *const *parent_names, u8 num_parents,
4703ae1747SHeiko Stuebner 		void __iomem *base,
48a245fecbSHeiko Stübner 		int muxdiv_offset, u8 mux_shift, u8 mux_width, u8 mux_flags,
49a245fecbSHeiko Stübner 		u8 div_shift, u8 div_width, u8 div_flags,
50a245fecbSHeiko Stübner 		struct clk_div_table *div_table, int gate_offset,
51a245fecbSHeiko Stübner 		u8 gate_shift, u8 gate_flags, unsigned long flags,
52a245fecbSHeiko Stübner 		spinlock_t *lock)
53a245fecbSHeiko Stübner {
54a245fecbSHeiko Stübner 	struct clk *clk;
55a245fecbSHeiko Stübner 	struct clk_mux *mux = NULL;
56a245fecbSHeiko Stübner 	struct clk_gate *gate = NULL;
57a245fecbSHeiko Stübner 	struct clk_divider *div = NULL;
58a245fecbSHeiko Stübner 	const struct clk_ops *mux_ops = NULL, *div_ops = NULL,
59a245fecbSHeiko Stübner 			     *gate_ops = NULL;
60*fd3cbbfbSShawn Lin 	int ret;
61a245fecbSHeiko Stübner 
62a245fecbSHeiko Stübner 	if (num_parents > 1) {
63a245fecbSHeiko Stübner 		mux = kzalloc(sizeof(*mux), GFP_KERNEL);
64a245fecbSHeiko Stübner 		if (!mux)
65a245fecbSHeiko Stübner 			return ERR_PTR(-ENOMEM);
66a245fecbSHeiko Stübner 
67a245fecbSHeiko Stübner 		mux->reg = base + muxdiv_offset;
68a245fecbSHeiko Stübner 		mux->shift = mux_shift;
69a245fecbSHeiko Stübner 		mux->mask = BIT(mux_width) - 1;
70a245fecbSHeiko Stübner 		mux->flags = mux_flags;
71a245fecbSHeiko Stübner 		mux->lock = lock;
72a245fecbSHeiko Stübner 		mux_ops = (mux_flags & CLK_MUX_READ_ONLY) ? &clk_mux_ro_ops
73a245fecbSHeiko Stübner 							: &clk_mux_ops;
74a245fecbSHeiko Stübner 	}
75a245fecbSHeiko Stübner 
76a245fecbSHeiko Stübner 	if (gate_offset >= 0) {
77a245fecbSHeiko Stübner 		gate = kzalloc(sizeof(*gate), GFP_KERNEL);
78*fd3cbbfbSShawn Lin 		if (!gate) {
79*fd3cbbfbSShawn Lin 			ret = -ENOMEM;
802467b674SShawn Lin 			goto err_gate;
81*fd3cbbfbSShawn Lin 		}
82a245fecbSHeiko Stübner 
83a245fecbSHeiko Stübner 		gate->flags = gate_flags;
84a245fecbSHeiko Stübner 		gate->reg = base + gate_offset;
85a245fecbSHeiko Stübner 		gate->bit_idx = gate_shift;
86a245fecbSHeiko Stübner 		gate->lock = lock;
87a245fecbSHeiko Stübner 		gate_ops = &clk_gate_ops;
88a245fecbSHeiko Stübner 	}
89a245fecbSHeiko Stübner 
90a245fecbSHeiko Stübner 	if (div_width > 0) {
91a245fecbSHeiko Stübner 		div = kzalloc(sizeof(*div), GFP_KERNEL);
92*fd3cbbfbSShawn Lin 		if (!div) {
93*fd3cbbfbSShawn Lin 			ret = -ENOMEM;
942467b674SShawn Lin 			goto err_div;
95*fd3cbbfbSShawn Lin 		}
96a245fecbSHeiko Stübner 
97a245fecbSHeiko Stübner 		div->flags = div_flags;
98a245fecbSHeiko Stübner 		div->reg = base + muxdiv_offset;
99a245fecbSHeiko Stübner 		div->shift = div_shift;
100a245fecbSHeiko Stübner 		div->width = div_width;
101a245fecbSHeiko Stübner 		div->lock = lock;
102a245fecbSHeiko Stübner 		div->table = div_table;
10350359819SHeiko Stuebner 		div_ops = (div_flags & CLK_DIVIDER_READ_ONLY)
10450359819SHeiko Stuebner 						? &clk_divider_ro_ops
10550359819SHeiko Stuebner 						: &clk_divider_ops;
106a245fecbSHeiko Stübner 	}
107a245fecbSHeiko Stübner 
108a245fecbSHeiko Stübner 	clk = clk_register_composite(NULL, name, parent_names, num_parents,
109a245fecbSHeiko Stübner 				     mux ? &mux->hw : NULL, mux_ops,
110a245fecbSHeiko Stübner 				     div ? &div->hw : NULL, div_ops,
111a245fecbSHeiko Stübner 				     gate ? &gate->hw : NULL, gate_ops,
112a245fecbSHeiko Stübner 				     flags);
113a245fecbSHeiko Stübner 
114*fd3cbbfbSShawn Lin 	if (IS_ERR(clk)) {
115*fd3cbbfbSShawn Lin 		ret = PTR_ERR(clk);
116*fd3cbbfbSShawn Lin 		goto err_composite;
117*fd3cbbfbSShawn Lin 	}
118*fd3cbbfbSShawn Lin 
119a245fecbSHeiko Stübner 	return clk;
120*fd3cbbfbSShawn Lin err_composite:
121*fd3cbbfbSShawn Lin 	kfree(div);
1222467b674SShawn Lin err_div:
1232467b674SShawn Lin 	kfree(gate);
1242467b674SShawn Lin err_gate:
1252467b674SShawn Lin 	kfree(mux);
126*fd3cbbfbSShawn Lin 	return ERR_PTR(ret);
127a245fecbSHeiko Stübner }
128a245fecbSHeiko Stübner 
1298ca1ca8fSHeiko Stuebner struct rockchip_clk_frac {
1308ca1ca8fSHeiko Stuebner 	struct notifier_block			clk_nb;
1318ca1ca8fSHeiko Stuebner 	struct clk_fractional_divider		div;
1328ca1ca8fSHeiko Stuebner 	struct clk_gate				gate;
1338ca1ca8fSHeiko Stuebner 
1348ca1ca8fSHeiko Stuebner 	struct clk_mux				mux;
1358ca1ca8fSHeiko Stuebner 	const struct clk_ops			*mux_ops;
1368ca1ca8fSHeiko Stuebner 	int					mux_frac_idx;
1378ca1ca8fSHeiko Stuebner 
1388ca1ca8fSHeiko Stuebner 	bool					rate_change_remuxed;
1398ca1ca8fSHeiko Stuebner 	int					rate_change_idx;
1408ca1ca8fSHeiko Stuebner };
1418ca1ca8fSHeiko Stuebner 
1428ca1ca8fSHeiko Stuebner #define to_rockchip_clk_frac_nb(nb) \
1438ca1ca8fSHeiko Stuebner 			container_of(nb, struct rockchip_clk_frac, clk_nb)
1448ca1ca8fSHeiko Stuebner 
1458ca1ca8fSHeiko Stuebner static int rockchip_clk_frac_notifier_cb(struct notifier_block *nb,
1468ca1ca8fSHeiko Stuebner 					 unsigned long event, void *data)
1478ca1ca8fSHeiko Stuebner {
1488ca1ca8fSHeiko Stuebner 	struct clk_notifier_data *ndata = data;
1498ca1ca8fSHeiko Stuebner 	struct rockchip_clk_frac *frac = to_rockchip_clk_frac_nb(nb);
1508ca1ca8fSHeiko Stuebner 	struct clk_mux *frac_mux = &frac->mux;
1518ca1ca8fSHeiko Stuebner 	int ret = 0;
1528ca1ca8fSHeiko Stuebner 
1538ca1ca8fSHeiko Stuebner 	pr_debug("%s: event %lu, old_rate %lu, new_rate: %lu\n",
1548ca1ca8fSHeiko Stuebner 		 __func__, event, ndata->old_rate, ndata->new_rate);
1558ca1ca8fSHeiko Stuebner 	if (event == PRE_RATE_CHANGE) {
15603ae1747SHeiko Stuebner 		frac->rate_change_idx =
15703ae1747SHeiko Stuebner 				frac->mux_ops->get_parent(&frac_mux->hw);
1588ca1ca8fSHeiko Stuebner 		if (frac->rate_change_idx != frac->mux_frac_idx) {
15903ae1747SHeiko Stuebner 			frac->mux_ops->set_parent(&frac_mux->hw,
16003ae1747SHeiko Stuebner 						  frac->mux_frac_idx);
1618ca1ca8fSHeiko Stuebner 			frac->rate_change_remuxed = 1;
1628ca1ca8fSHeiko Stuebner 		}
1638ca1ca8fSHeiko Stuebner 	} else if (event == POST_RATE_CHANGE) {
1648ca1ca8fSHeiko Stuebner 		/*
1658ca1ca8fSHeiko Stuebner 		 * The POST_RATE_CHANGE notifier runs directly after the
1668ca1ca8fSHeiko Stuebner 		 * divider clock is set in clk_change_rate, so we'll have
1678ca1ca8fSHeiko Stuebner 		 * remuxed back to the original parent before clk_change_rate
1688ca1ca8fSHeiko Stuebner 		 * reaches the mux itself.
1698ca1ca8fSHeiko Stuebner 		 */
1708ca1ca8fSHeiko Stuebner 		if (frac->rate_change_remuxed) {
17103ae1747SHeiko Stuebner 			frac->mux_ops->set_parent(&frac_mux->hw,
17203ae1747SHeiko Stuebner 						  frac->rate_change_idx);
1738ca1ca8fSHeiko Stuebner 			frac->rate_change_remuxed = 0;
1748ca1ca8fSHeiko Stuebner 		}
1758ca1ca8fSHeiko Stuebner 	}
1768ca1ca8fSHeiko Stuebner 
1778ca1ca8fSHeiko Stuebner 	return notifier_from_errno(ret);
1788ca1ca8fSHeiko Stuebner }
1798ca1ca8fSHeiko Stuebner 
1805d890c2dSElaine Zhang /**
1815d890c2dSElaine Zhang  * fractional divider must set that denominator is 20 times larger than
1825d890c2dSElaine Zhang  * numerator to generate precise clock frequency.
1835d890c2dSElaine Zhang  */
1841dfcfa72SStephen Boyd static void rockchip_fractional_approximation(struct clk_hw *hw,
1855d890c2dSElaine Zhang 		unsigned long rate, unsigned long *parent_rate,
1865d890c2dSElaine Zhang 		unsigned long *m, unsigned long *n)
1875d890c2dSElaine Zhang {
1885d890c2dSElaine Zhang 	struct clk_fractional_divider *fd = to_clk_fd(hw);
1895d890c2dSElaine Zhang 	unsigned long p_rate, p_parent_rate;
1905d890c2dSElaine Zhang 	struct clk_hw *p_parent;
1915d890c2dSElaine Zhang 	unsigned long scale;
1925d890c2dSElaine Zhang 
1935d890c2dSElaine Zhang 	p_rate = clk_hw_get_rate(clk_hw_get_parent(hw));
1945d890c2dSElaine Zhang 	if ((rate * 20 > p_rate) && (p_rate % rate != 0)) {
1955d890c2dSElaine Zhang 		p_parent = clk_hw_get_parent(clk_hw_get_parent(hw));
1965d890c2dSElaine Zhang 		p_parent_rate = clk_hw_get_rate(p_parent);
1975d890c2dSElaine Zhang 		*parent_rate = p_parent_rate;
1985d890c2dSElaine Zhang 	}
1995d890c2dSElaine Zhang 
2005d890c2dSElaine Zhang 	/*
2015d890c2dSElaine Zhang 	 * Get rate closer to *parent_rate to guarantee there is no overflow
2025d890c2dSElaine Zhang 	 * for m and n. In the result it will be the nearest rate left shifted
2035d890c2dSElaine Zhang 	 * by (scale - fd->nwidth) bits.
2045d890c2dSElaine Zhang 	 */
2055d890c2dSElaine Zhang 	scale = fls_long(*parent_rate / rate - 1);
2065d890c2dSElaine Zhang 	if (scale > fd->nwidth)
2075d890c2dSElaine Zhang 		rate <<= scale - fd->nwidth;
2085d890c2dSElaine Zhang 
2095d890c2dSElaine Zhang 	rational_best_approximation(rate, *parent_rate,
2105d890c2dSElaine Zhang 			GENMASK(fd->mwidth - 1, 0), GENMASK(fd->nwidth - 1, 0),
2115d890c2dSElaine Zhang 			m, n);
2125d890c2dSElaine Zhang }
2135d890c2dSElaine Zhang 
214ef1d9feeSXing Zheng static struct clk *rockchip_clk_register_frac_branch(
215ef1d9feeSXing Zheng 		struct rockchip_clk_provider *ctx, const char *name,
2164a1caed3SUwe Kleine-König 		const char *const *parent_names, u8 num_parents,
2174a1caed3SUwe Kleine-König 		void __iomem *base, int muxdiv_offset, u8 div_flags,
218b2155a71SHeiko Stübner 		int gate_offset, u8 gate_shift, u8 gate_flags,
2198ca1ca8fSHeiko Stuebner 		unsigned long flags, struct rockchip_clk_branch *child,
2208ca1ca8fSHeiko Stuebner 		spinlock_t *lock)
221b2155a71SHeiko Stübner {
2228ca1ca8fSHeiko Stuebner 	struct rockchip_clk_frac *frac;
223b2155a71SHeiko Stübner 	struct clk *clk;
224b2155a71SHeiko Stübner 	struct clk_gate *gate = NULL;
225b2155a71SHeiko Stübner 	struct clk_fractional_divider *div = NULL;
226b2155a71SHeiko Stübner 	const struct clk_ops *div_ops = NULL, *gate_ops = NULL;
227b2155a71SHeiko Stübner 
2288ca1ca8fSHeiko Stuebner 	if (muxdiv_offset < 0)
2298ca1ca8fSHeiko Stuebner 		return ERR_PTR(-EINVAL);
2308ca1ca8fSHeiko Stuebner 
2318ca1ca8fSHeiko Stuebner 	if (child && child->branch_type != branch_mux) {
2328ca1ca8fSHeiko Stuebner 		pr_err("%s: fractional child clock for %s can only be a mux\n",
2338ca1ca8fSHeiko Stuebner 		       __func__, name);
2348ca1ca8fSHeiko Stuebner 		return ERR_PTR(-EINVAL);
2358ca1ca8fSHeiko Stuebner 	}
2368ca1ca8fSHeiko Stuebner 
2378ca1ca8fSHeiko Stuebner 	frac = kzalloc(sizeof(*frac), GFP_KERNEL);
2388ca1ca8fSHeiko Stuebner 	if (!frac)
239b2155a71SHeiko Stübner 		return ERR_PTR(-ENOMEM);
240b2155a71SHeiko Stübner 
2418ca1ca8fSHeiko Stuebner 	if (gate_offset >= 0) {
2428ca1ca8fSHeiko Stuebner 		gate = &frac->gate;
243b2155a71SHeiko Stübner 		gate->flags = gate_flags;
244b2155a71SHeiko Stübner 		gate->reg = base + gate_offset;
245b2155a71SHeiko Stübner 		gate->bit_idx = gate_shift;
246b2155a71SHeiko Stübner 		gate->lock = lock;
247b2155a71SHeiko Stübner 		gate_ops = &clk_gate_ops;
248b2155a71SHeiko Stübner 	}
249b2155a71SHeiko Stübner 
2508ca1ca8fSHeiko Stuebner 	div = &frac->div;
251b2155a71SHeiko Stübner 	div->flags = div_flags;
252b2155a71SHeiko Stübner 	div->reg = base + muxdiv_offset;
253b2155a71SHeiko Stübner 	div->mshift = 16;
2545d49a6e1SAndy Shevchenko 	div->mwidth = 16;
2555d49a6e1SAndy Shevchenko 	div->mmask = GENMASK(div->mwidth - 1, 0) << div->mshift;
256b2155a71SHeiko Stübner 	div->nshift = 0;
2575d49a6e1SAndy Shevchenko 	div->nwidth = 16;
2585d49a6e1SAndy Shevchenko 	div->nmask = GENMASK(div->nwidth - 1, 0) << div->nshift;
259b2155a71SHeiko Stübner 	div->lock = lock;
2605d890c2dSElaine Zhang 	div->approximation = rockchip_fractional_approximation;
261b2155a71SHeiko Stübner 	div_ops = &clk_fractional_divider_ops;
262b2155a71SHeiko Stübner 
263b2155a71SHeiko Stübner 	clk = clk_register_composite(NULL, name, parent_names, num_parents,
264b2155a71SHeiko Stübner 				     NULL, NULL,
265b2155a71SHeiko Stübner 				     &div->hw, div_ops,
266b2155a71SHeiko Stübner 				     gate ? &gate->hw : NULL, gate_ops,
2678ca1ca8fSHeiko Stuebner 				     flags | CLK_SET_RATE_UNGATE);
2688ca1ca8fSHeiko Stuebner 	if (IS_ERR(clk)) {
2698ca1ca8fSHeiko Stuebner 		kfree(frac);
2708ca1ca8fSHeiko Stuebner 		return clk;
2718ca1ca8fSHeiko Stuebner 	}
2728ca1ca8fSHeiko Stuebner 
2738ca1ca8fSHeiko Stuebner 	if (child) {
2748ca1ca8fSHeiko Stuebner 		struct clk_mux *frac_mux = &frac->mux;
2758ca1ca8fSHeiko Stuebner 		struct clk_init_data init;
2768ca1ca8fSHeiko Stuebner 		struct clk *mux_clk;
2778ca1ca8fSHeiko Stuebner 		int i, ret;
2788ca1ca8fSHeiko Stuebner 
2798ca1ca8fSHeiko Stuebner 		frac->mux_frac_idx = -1;
2808ca1ca8fSHeiko Stuebner 		for (i = 0; i < child->num_parents; i++) {
2818ca1ca8fSHeiko Stuebner 			if (!strcmp(name, child->parent_names[i])) {
2828ca1ca8fSHeiko Stuebner 				pr_debug("%s: found fractional parent in mux at pos %d\n",
2838ca1ca8fSHeiko Stuebner 					 __func__, i);
2848ca1ca8fSHeiko Stuebner 				frac->mux_frac_idx = i;
2858ca1ca8fSHeiko Stuebner 				break;
2868ca1ca8fSHeiko Stuebner 			}
2878ca1ca8fSHeiko Stuebner 		}
2888ca1ca8fSHeiko Stuebner 
2898ca1ca8fSHeiko Stuebner 		frac->mux_ops = &clk_mux_ops;
2908ca1ca8fSHeiko Stuebner 		frac->clk_nb.notifier_call = rockchip_clk_frac_notifier_cb;
2918ca1ca8fSHeiko Stuebner 
2928ca1ca8fSHeiko Stuebner 		frac_mux->reg = base + child->muxdiv_offset;
2938ca1ca8fSHeiko Stuebner 		frac_mux->shift = child->mux_shift;
2948ca1ca8fSHeiko Stuebner 		frac_mux->mask = BIT(child->mux_width) - 1;
2958ca1ca8fSHeiko Stuebner 		frac_mux->flags = child->mux_flags;
2968ca1ca8fSHeiko Stuebner 		frac_mux->lock = lock;
2978ca1ca8fSHeiko Stuebner 		frac_mux->hw.init = &init;
2988ca1ca8fSHeiko Stuebner 
2998ca1ca8fSHeiko Stuebner 		init.name = child->name;
3008ca1ca8fSHeiko Stuebner 		init.flags = child->flags | CLK_SET_RATE_PARENT;
3018ca1ca8fSHeiko Stuebner 		init.ops = frac->mux_ops;
3028ca1ca8fSHeiko Stuebner 		init.parent_names = child->parent_names;
3038ca1ca8fSHeiko Stuebner 		init.num_parents = child->num_parents;
3048ca1ca8fSHeiko Stuebner 
3058ca1ca8fSHeiko Stuebner 		mux_clk = clk_register(NULL, &frac_mux->hw);
306*fd3cbbfbSShawn Lin 		if (IS_ERR(mux_clk)) {
307*fd3cbbfbSShawn Lin 			kfree(frac);
3088ca1ca8fSHeiko Stuebner 			return clk;
309*fd3cbbfbSShawn Lin 		}
3108ca1ca8fSHeiko Stuebner 
311ef1d9feeSXing Zheng 		rockchip_clk_add_lookup(ctx, mux_clk, child->id);
3128ca1ca8fSHeiko Stuebner 
3138ca1ca8fSHeiko Stuebner 		/* notifier on the fraction divider to catch rate changes */
3148ca1ca8fSHeiko Stuebner 		if (frac->mux_frac_idx >= 0) {
3158ca1ca8fSHeiko Stuebner 			ret = clk_notifier_register(clk, &frac->clk_nb);
3168ca1ca8fSHeiko Stuebner 			if (ret)
3178ca1ca8fSHeiko Stuebner 				pr_err("%s: failed to register clock notifier for %s\n",
3188ca1ca8fSHeiko Stuebner 						__func__, name);
3198ca1ca8fSHeiko Stuebner 		} else {
3208ca1ca8fSHeiko Stuebner 			pr_warn("%s: could not find %s as parent of %s, rate changes may not work\n",
3218ca1ca8fSHeiko Stuebner 				__func__, name, child->name);
3228ca1ca8fSHeiko Stuebner 		}
3238ca1ca8fSHeiko Stuebner 	}
324b2155a71SHeiko Stübner 
325b2155a71SHeiko Stübner 	return clk;
326b2155a71SHeiko Stübner }
327b2155a71SHeiko Stübner 
32829a30c26SHeiko Stuebner static struct clk *rockchip_clk_register_factor_branch(const char *name,
32929a30c26SHeiko Stuebner 		const char *const *parent_names, u8 num_parents,
33029a30c26SHeiko Stuebner 		void __iomem *base, unsigned int mult, unsigned int div,
33129a30c26SHeiko Stuebner 		int gate_offset, u8 gate_shift, u8 gate_flags,
33229a30c26SHeiko Stuebner 		unsigned long flags, spinlock_t *lock)
33329a30c26SHeiko Stuebner {
33429a30c26SHeiko Stuebner 	struct clk *clk;
33529a30c26SHeiko Stuebner 	struct clk_gate *gate = NULL;
33629a30c26SHeiko Stuebner 	struct clk_fixed_factor *fix = NULL;
33729a30c26SHeiko Stuebner 
33829a30c26SHeiko Stuebner 	/* without gate, register a simple factor clock */
33929a30c26SHeiko Stuebner 	if (gate_offset == 0) {
34029a30c26SHeiko Stuebner 		return clk_register_fixed_factor(NULL, name,
34129a30c26SHeiko Stuebner 				parent_names[0], flags, mult,
34229a30c26SHeiko Stuebner 				div);
34329a30c26SHeiko Stuebner 	}
34429a30c26SHeiko Stuebner 
34529a30c26SHeiko Stuebner 	gate = kzalloc(sizeof(*gate), GFP_KERNEL);
34629a30c26SHeiko Stuebner 	if (!gate)
34729a30c26SHeiko Stuebner 		return ERR_PTR(-ENOMEM);
34829a30c26SHeiko Stuebner 
34929a30c26SHeiko Stuebner 	gate->flags = gate_flags;
35029a30c26SHeiko Stuebner 	gate->reg = base + gate_offset;
35129a30c26SHeiko Stuebner 	gate->bit_idx = gate_shift;
35229a30c26SHeiko Stuebner 	gate->lock = lock;
35329a30c26SHeiko Stuebner 
35429a30c26SHeiko Stuebner 	fix = kzalloc(sizeof(*fix), GFP_KERNEL);
35529a30c26SHeiko Stuebner 	if (!fix) {
35629a30c26SHeiko Stuebner 		kfree(gate);
35729a30c26SHeiko Stuebner 		return ERR_PTR(-ENOMEM);
35829a30c26SHeiko Stuebner 	}
35929a30c26SHeiko Stuebner 
36029a30c26SHeiko Stuebner 	fix->mult = mult;
36129a30c26SHeiko Stuebner 	fix->div = div;
36229a30c26SHeiko Stuebner 
36329a30c26SHeiko Stuebner 	clk = clk_register_composite(NULL, name, parent_names, num_parents,
36429a30c26SHeiko Stuebner 				     NULL, NULL,
36529a30c26SHeiko Stuebner 				     &fix->hw, &clk_fixed_factor_ops,
36629a30c26SHeiko Stuebner 				     &gate->hw, &clk_gate_ops, flags);
36729a30c26SHeiko Stuebner 	if (IS_ERR(clk)) {
36829a30c26SHeiko Stuebner 		kfree(fix);
36929a30c26SHeiko Stuebner 		kfree(gate);
37029a30c26SHeiko Stuebner 	}
37129a30c26SHeiko Stuebner 
37229a30c26SHeiko Stuebner 	return clk;
37329a30c26SHeiko Stuebner }
37429a30c26SHeiko Stuebner 
375ef1d9feeSXing Zheng struct rockchip_clk_provider * __init rockchip_clk_init(struct device_node *np,
376ef1d9feeSXing Zheng 			void __iomem *base, unsigned long nr_clks)
377a245fecbSHeiko Stübner {
378ef1d9feeSXing Zheng 	struct rockchip_clk_provider *ctx;
379ef1d9feeSXing Zheng 	struct clk **clk_table;
380ef1d9feeSXing Zheng 	int i;
381ef1d9feeSXing Zheng 
382ef1d9feeSXing Zheng 	ctx = kzalloc(sizeof(struct rockchip_clk_provider), GFP_KERNEL);
38303ae1747SHeiko Stuebner 	if (!ctx)
384ef1d9feeSXing Zheng 		return ERR_PTR(-ENOMEM);
385a245fecbSHeiko Stübner 
386a245fecbSHeiko Stübner 	clk_table = kcalloc(nr_clks, sizeof(struct clk *), GFP_KERNEL);
38703ae1747SHeiko Stuebner 	if (!clk_table)
388ef1d9feeSXing Zheng 		goto err_free;
389a245fecbSHeiko Stübner 
390ef1d9feeSXing Zheng 	for (i = 0; i < nr_clks; ++i)
391ef1d9feeSXing Zheng 		clk_table[i] = ERR_PTR(-ENOENT);
392ef1d9feeSXing Zheng 
393ef1d9feeSXing Zheng 	ctx->reg_base = base;
394ef1d9feeSXing Zheng 	ctx->clk_data.clks = clk_table;
395ef1d9feeSXing Zheng 	ctx->clk_data.clk_num = nr_clks;
396ef1d9feeSXing Zheng 	ctx->cru_node = np;
397ef1d9feeSXing Zheng 	spin_lock_init(&ctx->lock);
398ef1d9feeSXing Zheng 
3996f339dc2SHeiko Stuebner 	ctx->grf = syscon_regmap_lookup_by_phandle(ctx->cru_node,
4006f339dc2SHeiko Stuebner 						   "rockchip,grf");
4016f339dc2SHeiko Stuebner 
402ef1d9feeSXing Zheng 	return ctx;
403ef1d9feeSXing Zheng 
404ef1d9feeSXing Zheng err_free:
405ef1d9feeSXing Zheng 	kfree(ctx);
406ef1d9feeSXing Zheng 	return ERR_PTR(-ENOMEM);
407ef1d9feeSXing Zheng }
408ef1d9feeSXing Zheng 
409ef1d9feeSXing Zheng void __init rockchip_clk_of_add_provider(struct device_node *np,
410ef1d9feeSXing Zheng 				struct rockchip_clk_provider *ctx)
41190c59025SHeiko Stübner {
412ef1d9feeSXing Zheng 	if (of_clk_add_provider(np, of_clk_src_onecell_get,
413ef1d9feeSXing Zheng 				&ctx->clk_data))
414ef1d9feeSXing Zheng 		pr_err("%s: could not register clk provider\n", __func__);
415ef1d9feeSXing Zheng }
41690c59025SHeiko Stübner 
417ef1d9feeSXing Zheng void rockchip_clk_add_lookup(struct rockchip_clk_provider *ctx,
418ef1d9feeSXing Zheng 			     struct clk *clk, unsigned int id)
419ef1d9feeSXing Zheng {
420ef1d9feeSXing Zheng 	if (ctx->clk_data.clks && id)
421ef1d9feeSXing Zheng 		ctx->clk_data.clks[id] = clk;
422ef1d9feeSXing Zheng }
423ef1d9feeSXing Zheng 
424ef1d9feeSXing Zheng void __init rockchip_clk_register_plls(struct rockchip_clk_provider *ctx,
425ef1d9feeSXing Zheng 				struct rockchip_pll_clock *list,
42690c59025SHeiko Stübner 				unsigned int nr_pll, int grf_lock_offset)
42790c59025SHeiko Stübner {
42890c59025SHeiko Stübner 	struct clk *clk;
42990c59025SHeiko Stübner 	int idx;
43090c59025SHeiko Stübner 
43190c59025SHeiko Stübner 	for (idx = 0; idx < nr_pll; idx++, list++) {
432ef1d9feeSXing Zheng 		clk = rockchip_clk_register_pll(ctx, list->type, list->name,
43390c59025SHeiko Stübner 				list->parent_names, list->num_parents,
434ef1d9feeSXing Zheng 				list->con_offset, grf_lock_offset,
43590c59025SHeiko Stübner 				list->lock_shift, list->mode_offset,
4364f8a7c54SHeiko Stuebner 				list->mode_shift, list->rate_table,
437e6cebc72SHeiko Stübner 				list->flags, list->pll_flags);
43890c59025SHeiko Stübner 		if (IS_ERR(clk)) {
43990c59025SHeiko Stübner 			pr_err("%s: failed to register clock %s\n", __func__,
44090c59025SHeiko Stübner 				list->name);
44190c59025SHeiko Stübner 			continue;
44290c59025SHeiko Stübner 		}
44390c59025SHeiko Stübner 
444ef1d9feeSXing Zheng 		rockchip_clk_add_lookup(ctx, clk, list->id);
44590c59025SHeiko Stübner 	}
44690c59025SHeiko Stübner }
44790c59025SHeiko Stübner 
448a245fecbSHeiko Stübner void __init rockchip_clk_register_branches(
449ef1d9feeSXing Zheng 				      struct rockchip_clk_provider *ctx,
450a245fecbSHeiko Stübner 				      struct rockchip_clk_branch *list,
451a245fecbSHeiko Stübner 				      unsigned int nr_clk)
452a245fecbSHeiko Stübner {
453a245fecbSHeiko Stübner 	struct clk *clk = NULL;
454a245fecbSHeiko Stübner 	unsigned int idx;
455a245fecbSHeiko Stübner 	unsigned long flags;
456a245fecbSHeiko Stübner 
457a245fecbSHeiko Stübner 	for (idx = 0; idx < nr_clk; idx++, list++) {
458a245fecbSHeiko Stübner 		flags = list->flags;
459a245fecbSHeiko Stübner 
460a245fecbSHeiko Stübner 		/* catch simple muxes */
461a245fecbSHeiko Stübner 		switch (list->branch_type) {
462a245fecbSHeiko Stübner 		case branch_mux:
463a245fecbSHeiko Stübner 			clk = clk_register_mux(NULL, list->name,
464a245fecbSHeiko Stübner 				list->parent_names, list->num_parents,
465ef1d9feeSXing Zheng 				flags, ctx->reg_base + list->muxdiv_offset,
466a245fecbSHeiko Stübner 				list->mux_shift, list->mux_width,
467ef1d9feeSXing Zheng 				list->mux_flags, &ctx->lock);
468a245fecbSHeiko Stübner 			break;
469cb1d9f6dSHeiko Stuebner 		case branch_muxgrf:
470cb1d9f6dSHeiko Stuebner 			clk = rockchip_clk_register_muxgrf(list->name,
471cb1d9f6dSHeiko Stuebner 				list->parent_names, list->num_parents,
472cb1d9f6dSHeiko Stuebner 				flags, ctx->grf, list->muxdiv_offset,
473cb1d9f6dSHeiko Stuebner 				list->mux_shift, list->mux_width,
474cb1d9f6dSHeiko Stuebner 				list->mux_flags);
475cb1d9f6dSHeiko Stuebner 			break;
476a245fecbSHeiko Stübner 		case branch_divider:
477a245fecbSHeiko Stübner 			if (list->div_table)
478a245fecbSHeiko Stübner 				clk = clk_register_divider_table(NULL,
479a245fecbSHeiko Stübner 					list->name, list->parent_names[0],
48003ae1747SHeiko Stuebner 					flags,
48103ae1747SHeiko Stuebner 					ctx->reg_base + list->muxdiv_offset,
482a245fecbSHeiko Stübner 					list->div_shift, list->div_width,
483a245fecbSHeiko Stübner 					list->div_flags, list->div_table,
484ef1d9feeSXing Zheng 					&ctx->lock);
485a245fecbSHeiko Stübner 			else
486a245fecbSHeiko Stübner 				clk = clk_register_divider(NULL, list->name,
487a245fecbSHeiko Stübner 					list->parent_names[0], flags,
488ef1d9feeSXing Zheng 					ctx->reg_base + list->muxdiv_offset,
489a245fecbSHeiko Stübner 					list->div_shift, list->div_width,
490ef1d9feeSXing Zheng 					list->div_flags, &ctx->lock);
491a245fecbSHeiko Stübner 			break;
492a245fecbSHeiko Stübner 		case branch_fraction_divider:
493ef1d9feeSXing Zheng 			clk = rockchip_clk_register_frac_branch(ctx, list->name,
494b2155a71SHeiko Stübner 				list->parent_names, list->num_parents,
49503ae1747SHeiko Stuebner 				ctx->reg_base, list->muxdiv_offset,
49603ae1747SHeiko Stuebner 				list->div_flags,
497b2155a71SHeiko Stübner 				list->gate_offset, list->gate_shift,
4988ca1ca8fSHeiko Stuebner 				list->gate_flags, flags, list->child,
499ef1d9feeSXing Zheng 				&ctx->lock);
500a245fecbSHeiko Stübner 			break;
501a245fecbSHeiko Stübner 		case branch_gate:
502a245fecbSHeiko Stübner 			flags |= CLK_SET_RATE_PARENT;
503a245fecbSHeiko Stübner 
504a245fecbSHeiko Stübner 			clk = clk_register_gate(NULL, list->name,
505a245fecbSHeiko Stübner 				list->parent_names[0], flags,
506ef1d9feeSXing Zheng 				ctx->reg_base + list->gate_offset,
507ef1d9feeSXing Zheng 				list->gate_shift, list->gate_flags, &ctx->lock);
508a245fecbSHeiko Stübner 			break;
509a245fecbSHeiko Stübner 		case branch_composite:
510a245fecbSHeiko Stübner 			clk = rockchip_clk_register_branch(list->name,
511a245fecbSHeiko Stübner 				list->parent_names, list->num_parents,
51203ae1747SHeiko Stuebner 				ctx->reg_base, list->muxdiv_offset,
51303ae1747SHeiko Stuebner 				list->mux_shift,
514a245fecbSHeiko Stübner 				list->mux_width, list->mux_flags,
515a245fecbSHeiko Stübner 				list->div_shift, list->div_width,
516a245fecbSHeiko Stübner 				list->div_flags, list->div_table,
517a245fecbSHeiko Stübner 				list->gate_offset, list->gate_shift,
518ef1d9feeSXing Zheng 				list->gate_flags, flags, &ctx->lock);
519a245fecbSHeiko Stübner 			break;
52089bf26cbSAlexandru M Stan 		case branch_mmc:
52189bf26cbSAlexandru M Stan 			clk = rockchip_clk_register_mmc(
52289bf26cbSAlexandru M Stan 				list->name,
52389bf26cbSAlexandru M Stan 				list->parent_names, list->num_parents,
524ef1d9feeSXing Zheng 				ctx->reg_base + list->muxdiv_offset,
52589bf26cbSAlexandru M Stan 				list->div_shift
52689bf26cbSAlexandru M Stan 			);
52789bf26cbSAlexandru M Stan 			break;
5288a76f443SHeiko Stuebner 		case branch_inverter:
5298a76f443SHeiko Stuebner 			clk = rockchip_clk_register_inverter(
5308a76f443SHeiko Stuebner 				list->name, list->parent_names,
5318a76f443SHeiko Stuebner 				list->num_parents,
532ef1d9feeSXing Zheng 				ctx->reg_base + list->muxdiv_offset,
533ef1d9feeSXing Zheng 				list->div_shift, list->div_flags, &ctx->lock);
5348a76f443SHeiko Stuebner 			break;
53529a30c26SHeiko Stuebner 		case branch_factor:
53629a30c26SHeiko Stuebner 			clk = rockchip_clk_register_factor_branch(
53729a30c26SHeiko Stuebner 				list->name, list->parent_names,
538ef1d9feeSXing Zheng 				list->num_parents, ctx->reg_base,
53929a30c26SHeiko Stuebner 				list->div_shift, list->div_width,
54029a30c26SHeiko Stuebner 				list->gate_offset, list->gate_shift,
541ef1d9feeSXing Zheng 				list->gate_flags, flags, &ctx->lock);
54229a30c26SHeiko Stuebner 			break;
543a4f182bfSLin Huang 		case branch_ddrclk:
544a4f182bfSLin Huang 			clk = rockchip_clk_register_ddrclk(
545a4f182bfSLin Huang 				list->name, list->flags,
546a4f182bfSLin Huang 				list->parent_names, list->num_parents,
547a4f182bfSLin Huang 				list->muxdiv_offset, list->mux_shift,
548a4f182bfSLin Huang 				list->mux_width, list->div_shift,
549a4f182bfSLin Huang 				list->div_width, list->div_flags,
550a4f182bfSLin Huang 				ctx->reg_base, &ctx->lock);
551a4f182bfSLin Huang 			break;
552a245fecbSHeiko Stübner 		}
553a245fecbSHeiko Stübner 
554a245fecbSHeiko Stübner 		/* none of the cases above matched */
555a245fecbSHeiko Stübner 		if (!clk) {
556a245fecbSHeiko Stübner 			pr_err("%s: unknown clock type %d\n",
557a245fecbSHeiko Stübner 			       __func__, list->branch_type);
558a245fecbSHeiko Stübner 			continue;
559a245fecbSHeiko Stübner 		}
560a245fecbSHeiko Stübner 
561a245fecbSHeiko Stübner 		if (IS_ERR(clk)) {
562a245fecbSHeiko Stübner 			pr_err("%s: failed to register clock %s: %ld\n",
563a245fecbSHeiko Stübner 			       __func__, list->name, PTR_ERR(clk));
564a245fecbSHeiko Stübner 			continue;
565a245fecbSHeiko Stübner 		}
566a245fecbSHeiko Stübner 
567ef1d9feeSXing Zheng 		rockchip_clk_add_lookup(ctx, clk, list->id);
568a245fecbSHeiko Stübner 	}
569a245fecbSHeiko Stübner }
570fe94f974SHeiko Stübner 
571ef1d9feeSXing Zheng void __init rockchip_clk_register_armclk(struct rockchip_clk_provider *ctx,
572ef1d9feeSXing Zheng 			unsigned int lookup_id,
5734a1caed3SUwe Kleine-König 			const char *name, const char *const *parent_names,
574f6fba5f6SHeiko Stuebner 			u8 num_parents,
575f6fba5f6SHeiko Stuebner 			const struct rockchip_cpuclk_reg_data *reg_data,
576f6fba5f6SHeiko Stuebner 			const struct rockchip_cpuclk_rate_table *rates,
577f6fba5f6SHeiko Stuebner 			int nrates)
578f6fba5f6SHeiko Stuebner {
579f6fba5f6SHeiko Stuebner 	struct clk *clk;
580f6fba5f6SHeiko Stuebner 
581f6fba5f6SHeiko Stuebner 	clk = rockchip_clk_register_cpuclk(name, parent_names, num_parents,
58203ae1747SHeiko Stuebner 					   reg_data, rates, nrates,
58303ae1747SHeiko Stuebner 					   ctx->reg_base, &ctx->lock);
584f6fba5f6SHeiko Stuebner 	if (IS_ERR(clk)) {
585f6fba5f6SHeiko Stuebner 		pr_err("%s: failed to register clock %s: %ld\n",
586f6fba5f6SHeiko Stuebner 		       __func__, name, PTR_ERR(clk));
587f6fba5f6SHeiko Stuebner 		return;
588f6fba5f6SHeiko Stuebner 	}
589f6fba5f6SHeiko Stuebner 
590ef1d9feeSXing Zheng 	rockchip_clk_add_lookup(ctx, clk, lookup_id);
591f6fba5f6SHeiko Stuebner }
592f6fba5f6SHeiko Stuebner 
593692d8328SUwe Kleine-König void __init rockchip_clk_protect_critical(const char *const clocks[],
594692d8328SUwe Kleine-König 					  int nclocks)
595fe94f974SHeiko Stübner {
596fe94f974SHeiko Stübner 	int i;
597fe94f974SHeiko Stübner 
598fe94f974SHeiko Stübner 	/* Protect the clocks that needs to stay on */
599fe94f974SHeiko Stübner 	for (i = 0; i < nclocks; i++) {
600fe94f974SHeiko Stübner 		struct clk *clk = __clk_lookup(clocks[i]);
601fe94f974SHeiko Stübner 
602fe94f974SHeiko Stübner 		if (clk)
603fe94f974SHeiko Stübner 			clk_prepare_enable(clk);
604fe94f974SHeiko Stübner 	}
605fe94f974SHeiko Stübner }
6066f1294b5SHeiko Stübner 
607ef1d9feeSXing Zheng static void __iomem *rst_base;
6086f1294b5SHeiko Stübner static unsigned int reg_restart;
609dfff24bdSHeiko Stuebner static void (*cb_restart)(void);
6106f1294b5SHeiko Stübner static int rockchip_restart_notify(struct notifier_block *this,
6116f1294b5SHeiko Stübner 				   unsigned long mode, void *cmd)
6126f1294b5SHeiko Stübner {
613dfff24bdSHeiko Stuebner 	if (cb_restart)
614dfff24bdSHeiko Stuebner 		cb_restart();
615dfff24bdSHeiko Stuebner 
616ef1d9feeSXing Zheng 	writel(0xfdb9, rst_base + reg_restart);
6176f1294b5SHeiko Stübner 	return NOTIFY_DONE;
6186f1294b5SHeiko Stübner }
6196f1294b5SHeiko Stübner 
6206f1294b5SHeiko Stübner static struct notifier_block rockchip_restart_handler = {
6216f1294b5SHeiko Stübner 	.notifier_call = rockchip_restart_notify,
6226f1294b5SHeiko Stübner 	.priority = 128,
6236f1294b5SHeiko Stübner };
6246f1294b5SHeiko Stübner 
62503ae1747SHeiko Stuebner void __init
62603ae1747SHeiko Stuebner rockchip_register_restart_notifier(struct rockchip_clk_provider *ctx,
62703ae1747SHeiko Stuebner 					       unsigned int reg,
62803ae1747SHeiko Stuebner 					       void (*cb)(void))
6296f1294b5SHeiko Stübner {
6306f1294b5SHeiko Stübner 	int ret;
6316f1294b5SHeiko Stübner 
632ef1d9feeSXing Zheng 	rst_base = ctx->reg_base;
6336f1294b5SHeiko Stübner 	reg_restart = reg;
634dfff24bdSHeiko Stuebner 	cb_restart = cb;
6356f1294b5SHeiko Stübner 	ret = register_restart_handler(&rockchip_restart_handler);
6366f1294b5SHeiko Stübner 	if (ret)
6376f1294b5SHeiko Stübner 		pr_err("%s: cannot register restart handler, %d\n",
6386f1294b5SHeiko Stübner 		       __func__, ret);
6396f1294b5SHeiko Stübner }
640