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; 60fd3cbbfbSShawn 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); 78fd3cbbfbSShawn Lin if (!gate) { 79fd3cbbfbSShawn Lin ret = -ENOMEM; 802467b674SShawn Lin goto err_gate; 81fd3cbbfbSShawn 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); 92fd3cbbfbSShawn Lin if (!div) { 93fd3cbbfbSShawn Lin ret = -ENOMEM; 942467b674SShawn Lin goto err_div; 95fd3cbbfbSShawn 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 114fd3cbbfbSShawn Lin if (IS_ERR(clk)) { 115fd3cbbfbSShawn Lin ret = PTR_ERR(clk); 116fd3cbbfbSShawn Lin goto err_composite; 117fd3cbbfbSShawn Lin } 118fd3cbbfbSShawn Lin 119a245fecbSHeiko Stübner return clk; 120fd3cbbfbSShawn Lin err_composite: 121fd3cbbfbSShawn Lin kfree(div); 1222467b674SShawn Lin err_div: 1232467b674SShawn Lin kfree(gate); 1242467b674SShawn Lin err_gate: 1252467b674SShawn Lin kfree(mux); 126fd3cbbfbSShawn 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; 277a425702fSYisheng Xie int ret; 2788ca1ca8fSHeiko Stuebner 279a425702fSYisheng Xie frac->mux_frac_idx = match_string(child->parent_names, 280a425702fSYisheng Xie child->num_parents, name); 2818ca1ca8fSHeiko Stuebner frac->mux_ops = &clk_mux_ops; 2828ca1ca8fSHeiko Stuebner frac->clk_nb.notifier_call = rockchip_clk_frac_notifier_cb; 2838ca1ca8fSHeiko Stuebner 2848ca1ca8fSHeiko Stuebner frac_mux->reg = base + child->muxdiv_offset; 2858ca1ca8fSHeiko Stuebner frac_mux->shift = child->mux_shift; 2868ca1ca8fSHeiko Stuebner frac_mux->mask = BIT(child->mux_width) - 1; 2878ca1ca8fSHeiko Stuebner frac_mux->flags = child->mux_flags; 2888ca1ca8fSHeiko Stuebner frac_mux->lock = lock; 2898ca1ca8fSHeiko Stuebner frac_mux->hw.init = &init; 2908ca1ca8fSHeiko Stuebner 2918ca1ca8fSHeiko Stuebner init.name = child->name; 2928ca1ca8fSHeiko Stuebner init.flags = child->flags | CLK_SET_RATE_PARENT; 2938ca1ca8fSHeiko Stuebner init.ops = frac->mux_ops; 2948ca1ca8fSHeiko Stuebner init.parent_names = child->parent_names; 2958ca1ca8fSHeiko Stuebner init.num_parents = child->num_parents; 2968ca1ca8fSHeiko Stuebner 2978ca1ca8fSHeiko Stuebner mux_clk = clk_register(NULL, &frac_mux->hw); 298fd3cbbfbSShawn Lin if (IS_ERR(mux_clk)) { 299fd3cbbfbSShawn Lin kfree(frac); 3008ca1ca8fSHeiko Stuebner return clk; 301fd3cbbfbSShawn Lin } 3028ca1ca8fSHeiko Stuebner 303ef1d9feeSXing Zheng rockchip_clk_add_lookup(ctx, mux_clk, child->id); 3048ca1ca8fSHeiko Stuebner 3058ca1ca8fSHeiko Stuebner /* notifier on the fraction divider to catch rate changes */ 3068ca1ca8fSHeiko Stuebner if (frac->mux_frac_idx >= 0) { 307a425702fSYisheng Xie pr_debug("%s: found fractional parent in mux at pos %d\n", 308a425702fSYisheng Xie __func__, frac->mux_frac_idx); 3098ca1ca8fSHeiko Stuebner ret = clk_notifier_register(clk, &frac->clk_nb); 3108ca1ca8fSHeiko Stuebner if (ret) 3118ca1ca8fSHeiko Stuebner pr_err("%s: failed to register clock notifier for %s\n", 3128ca1ca8fSHeiko Stuebner __func__, name); 3138ca1ca8fSHeiko Stuebner } else { 3148ca1ca8fSHeiko Stuebner pr_warn("%s: could not find %s as parent of %s, rate changes may not work\n", 3158ca1ca8fSHeiko Stuebner __func__, name, child->name); 3168ca1ca8fSHeiko Stuebner } 3178ca1ca8fSHeiko Stuebner } 318b2155a71SHeiko Stübner 319b2155a71SHeiko Stübner return clk; 320b2155a71SHeiko Stübner } 321b2155a71SHeiko Stübner 32229a30c26SHeiko Stuebner static struct clk *rockchip_clk_register_factor_branch(const char *name, 32329a30c26SHeiko Stuebner const char *const *parent_names, u8 num_parents, 32429a30c26SHeiko Stuebner void __iomem *base, unsigned int mult, unsigned int div, 32529a30c26SHeiko Stuebner int gate_offset, u8 gate_shift, u8 gate_flags, 32629a30c26SHeiko Stuebner unsigned long flags, spinlock_t *lock) 32729a30c26SHeiko Stuebner { 32829a30c26SHeiko Stuebner struct clk *clk; 32929a30c26SHeiko Stuebner struct clk_gate *gate = NULL; 33029a30c26SHeiko Stuebner struct clk_fixed_factor *fix = NULL; 33129a30c26SHeiko Stuebner 33229a30c26SHeiko Stuebner /* without gate, register a simple factor clock */ 33329a30c26SHeiko Stuebner if (gate_offset == 0) { 33429a30c26SHeiko Stuebner return clk_register_fixed_factor(NULL, name, 33529a30c26SHeiko Stuebner parent_names[0], flags, mult, 33629a30c26SHeiko Stuebner div); 33729a30c26SHeiko Stuebner } 33829a30c26SHeiko Stuebner 33929a30c26SHeiko Stuebner gate = kzalloc(sizeof(*gate), GFP_KERNEL); 34029a30c26SHeiko Stuebner if (!gate) 34129a30c26SHeiko Stuebner return ERR_PTR(-ENOMEM); 34229a30c26SHeiko Stuebner 34329a30c26SHeiko Stuebner gate->flags = gate_flags; 34429a30c26SHeiko Stuebner gate->reg = base + gate_offset; 34529a30c26SHeiko Stuebner gate->bit_idx = gate_shift; 34629a30c26SHeiko Stuebner gate->lock = lock; 34729a30c26SHeiko Stuebner 34829a30c26SHeiko Stuebner fix = kzalloc(sizeof(*fix), GFP_KERNEL); 34929a30c26SHeiko Stuebner if (!fix) { 35029a30c26SHeiko Stuebner kfree(gate); 35129a30c26SHeiko Stuebner return ERR_PTR(-ENOMEM); 35229a30c26SHeiko Stuebner } 35329a30c26SHeiko Stuebner 35429a30c26SHeiko Stuebner fix->mult = mult; 35529a30c26SHeiko Stuebner fix->div = div; 35629a30c26SHeiko Stuebner 35729a30c26SHeiko Stuebner clk = clk_register_composite(NULL, name, parent_names, num_parents, 35829a30c26SHeiko Stuebner NULL, NULL, 35929a30c26SHeiko Stuebner &fix->hw, &clk_fixed_factor_ops, 36029a30c26SHeiko Stuebner &gate->hw, &clk_gate_ops, flags); 36129a30c26SHeiko Stuebner if (IS_ERR(clk)) { 36229a30c26SHeiko Stuebner kfree(fix); 36329a30c26SHeiko Stuebner kfree(gate); 36429a30c26SHeiko Stuebner } 36529a30c26SHeiko Stuebner 36629a30c26SHeiko Stuebner return clk; 36729a30c26SHeiko Stuebner } 36829a30c26SHeiko Stuebner 369ef1d9feeSXing Zheng struct rockchip_clk_provider * __init rockchip_clk_init(struct device_node *np, 370ef1d9feeSXing Zheng void __iomem *base, unsigned long nr_clks) 371a245fecbSHeiko Stübner { 372ef1d9feeSXing Zheng struct rockchip_clk_provider *ctx; 373ef1d9feeSXing Zheng struct clk **clk_table; 374ef1d9feeSXing Zheng int i; 375ef1d9feeSXing Zheng 376ef1d9feeSXing Zheng ctx = kzalloc(sizeof(struct rockchip_clk_provider), GFP_KERNEL); 37703ae1747SHeiko Stuebner if (!ctx) 378ef1d9feeSXing Zheng return ERR_PTR(-ENOMEM); 379a245fecbSHeiko Stübner 380a245fecbSHeiko Stübner clk_table = kcalloc(nr_clks, sizeof(struct clk *), GFP_KERNEL); 38103ae1747SHeiko Stuebner if (!clk_table) 382ef1d9feeSXing Zheng goto err_free; 383a245fecbSHeiko Stübner 384ef1d9feeSXing Zheng for (i = 0; i < nr_clks; ++i) 385ef1d9feeSXing Zheng clk_table[i] = ERR_PTR(-ENOENT); 386ef1d9feeSXing Zheng 387ef1d9feeSXing Zheng ctx->reg_base = base; 388ef1d9feeSXing Zheng ctx->clk_data.clks = clk_table; 389ef1d9feeSXing Zheng ctx->clk_data.clk_num = nr_clks; 390ef1d9feeSXing Zheng ctx->cru_node = np; 391ef1d9feeSXing Zheng spin_lock_init(&ctx->lock); 392ef1d9feeSXing Zheng 3936f339dc2SHeiko Stuebner ctx->grf = syscon_regmap_lookup_by_phandle(ctx->cru_node, 3946f339dc2SHeiko Stuebner "rockchip,grf"); 3956f339dc2SHeiko Stuebner 396ef1d9feeSXing Zheng return ctx; 397ef1d9feeSXing Zheng 398ef1d9feeSXing Zheng err_free: 399ef1d9feeSXing Zheng kfree(ctx); 400ef1d9feeSXing Zheng return ERR_PTR(-ENOMEM); 401ef1d9feeSXing Zheng } 402ef1d9feeSXing Zheng 403ef1d9feeSXing Zheng void __init rockchip_clk_of_add_provider(struct device_node *np, 404ef1d9feeSXing Zheng struct rockchip_clk_provider *ctx) 40590c59025SHeiko Stübner { 406ef1d9feeSXing Zheng if (of_clk_add_provider(np, of_clk_src_onecell_get, 407ef1d9feeSXing Zheng &ctx->clk_data)) 408ef1d9feeSXing Zheng pr_err("%s: could not register clk provider\n", __func__); 409ef1d9feeSXing Zheng } 41090c59025SHeiko Stübner 411ef1d9feeSXing Zheng void rockchip_clk_add_lookup(struct rockchip_clk_provider *ctx, 412ef1d9feeSXing Zheng struct clk *clk, unsigned int id) 413ef1d9feeSXing Zheng { 414ef1d9feeSXing Zheng if (ctx->clk_data.clks && id) 415ef1d9feeSXing Zheng ctx->clk_data.clks[id] = clk; 416ef1d9feeSXing Zheng } 417ef1d9feeSXing Zheng 418ef1d9feeSXing Zheng void __init rockchip_clk_register_plls(struct rockchip_clk_provider *ctx, 419ef1d9feeSXing Zheng struct rockchip_pll_clock *list, 42090c59025SHeiko Stübner unsigned int nr_pll, int grf_lock_offset) 42190c59025SHeiko Stübner { 42290c59025SHeiko Stübner struct clk *clk; 42390c59025SHeiko Stübner int idx; 42490c59025SHeiko Stübner 42590c59025SHeiko Stübner for (idx = 0; idx < nr_pll; idx++, list++) { 426ef1d9feeSXing Zheng clk = rockchip_clk_register_pll(ctx, list->type, list->name, 42790c59025SHeiko Stübner list->parent_names, list->num_parents, 428ef1d9feeSXing Zheng list->con_offset, grf_lock_offset, 42990c59025SHeiko Stübner list->lock_shift, list->mode_offset, 4304f8a7c54SHeiko Stuebner list->mode_shift, list->rate_table, 431e6cebc72SHeiko Stübner list->flags, list->pll_flags); 43290c59025SHeiko Stübner if (IS_ERR(clk)) { 43390c59025SHeiko Stübner pr_err("%s: failed to register clock %s\n", __func__, 43490c59025SHeiko Stübner list->name); 43590c59025SHeiko Stübner continue; 43690c59025SHeiko Stübner } 43790c59025SHeiko Stübner 438ef1d9feeSXing Zheng rockchip_clk_add_lookup(ctx, clk, list->id); 43990c59025SHeiko Stübner } 44090c59025SHeiko Stübner } 44190c59025SHeiko Stübner 442a245fecbSHeiko Stübner void __init rockchip_clk_register_branches( 443ef1d9feeSXing Zheng struct rockchip_clk_provider *ctx, 444a245fecbSHeiko Stübner struct rockchip_clk_branch *list, 445a245fecbSHeiko Stübner unsigned int nr_clk) 446a245fecbSHeiko Stübner { 447a245fecbSHeiko Stübner struct clk *clk = NULL; 448a245fecbSHeiko Stübner unsigned int idx; 449a245fecbSHeiko Stübner unsigned long flags; 450a245fecbSHeiko Stübner 451a245fecbSHeiko Stübner for (idx = 0; idx < nr_clk; idx++, list++) { 452a245fecbSHeiko Stübner flags = list->flags; 453a245fecbSHeiko Stübner 454a245fecbSHeiko Stübner /* catch simple muxes */ 455a245fecbSHeiko Stübner switch (list->branch_type) { 456a245fecbSHeiko Stübner case branch_mux: 457a245fecbSHeiko Stübner clk = clk_register_mux(NULL, list->name, 458a245fecbSHeiko Stübner list->parent_names, list->num_parents, 459ef1d9feeSXing Zheng flags, ctx->reg_base + list->muxdiv_offset, 460a245fecbSHeiko Stübner list->mux_shift, list->mux_width, 461ef1d9feeSXing Zheng list->mux_flags, &ctx->lock); 462a245fecbSHeiko Stübner break; 463cb1d9f6dSHeiko Stuebner case branch_muxgrf: 464cb1d9f6dSHeiko Stuebner clk = rockchip_clk_register_muxgrf(list->name, 465cb1d9f6dSHeiko Stuebner list->parent_names, list->num_parents, 466cb1d9f6dSHeiko Stuebner flags, ctx->grf, list->muxdiv_offset, 467cb1d9f6dSHeiko Stuebner list->mux_shift, list->mux_width, 468cb1d9f6dSHeiko Stuebner list->mux_flags); 469cb1d9f6dSHeiko Stuebner break; 470a245fecbSHeiko Stübner case branch_divider: 471a245fecbSHeiko Stübner if (list->div_table) 472a245fecbSHeiko Stübner clk = clk_register_divider_table(NULL, 473a245fecbSHeiko Stübner list->name, list->parent_names[0], 47403ae1747SHeiko Stuebner flags, 47503ae1747SHeiko Stuebner ctx->reg_base + list->muxdiv_offset, 476a245fecbSHeiko Stübner list->div_shift, list->div_width, 477a245fecbSHeiko Stübner list->div_flags, list->div_table, 478ef1d9feeSXing Zheng &ctx->lock); 479a245fecbSHeiko Stübner else 480a245fecbSHeiko Stübner clk = clk_register_divider(NULL, list->name, 481a245fecbSHeiko Stübner list->parent_names[0], flags, 482ef1d9feeSXing Zheng ctx->reg_base + list->muxdiv_offset, 483a245fecbSHeiko Stübner list->div_shift, list->div_width, 484ef1d9feeSXing Zheng list->div_flags, &ctx->lock); 485a245fecbSHeiko Stübner break; 486a245fecbSHeiko Stübner case branch_fraction_divider: 487ef1d9feeSXing Zheng clk = rockchip_clk_register_frac_branch(ctx, list->name, 488b2155a71SHeiko Stübner list->parent_names, list->num_parents, 48903ae1747SHeiko Stuebner ctx->reg_base, list->muxdiv_offset, 49003ae1747SHeiko Stuebner list->div_flags, 491b2155a71SHeiko Stübner list->gate_offset, list->gate_shift, 4928ca1ca8fSHeiko Stuebner list->gate_flags, flags, list->child, 493ef1d9feeSXing Zheng &ctx->lock); 494a245fecbSHeiko Stübner break; 495*956060a5SElaine Zhang case branch_half_divider: 496*956060a5SElaine Zhang clk = rockchip_clk_register_halfdiv(list->name, 497*956060a5SElaine Zhang list->parent_names, list->num_parents, 498*956060a5SElaine Zhang ctx->reg_base, list->muxdiv_offset, 499*956060a5SElaine Zhang list->mux_shift, list->mux_width, 500*956060a5SElaine Zhang list->mux_flags, list->div_shift, 501*956060a5SElaine Zhang list->div_width, list->div_flags, 502*956060a5SElaine Zhang list->gate_offset, list->gate_shift, 503*956060a5SElaine Zhang list->gate_flags, flags, &ctx->lock); 504*956060a5SElaine Zhang break; 505a245fecbSHeiko Stübner case branch_gate: 506a245fecbSHeiko Stübner flags |= CLK_SET_RATE_PARENT; 507a245fecbSHeiko Stübner 508a245fecbSHeiko Stübner clk = clk_register_gate(NULL, list->name, 509a245fecbSHeiko Stübner list->parent_names[0], flags, 510ef1d9feeSXing Zheng ctx->reg_base + list->gate_offset, 511ef1d9feeSXing Zheng list->gate_shift, list->gate_flags, &ctx->lock); 512a245fecbSHeiko Stübner break; 513a245fecbSHeiko Stübner case branch_composite: 514a245fecbSHeiko Stübner clk = rockchip_clk_register_branch(list->name, 515a245fecbSHeiko Stübner list->parent_names, list->num_parents, 51603ae1747SHeiko Stuebner ctx->reg_base, list->muxdiv_offset, 51703ae1747SHeiko Stuebner list->mux_shift, 518a245fecbSHeiko Stübner list->mux_width, list->mux_flags, 519a245fecbSHeiko Stübner list->div_shift, list->div_width, 520a245fecbSHeiko Stübner list->div_flags, list->div_table, 521a245fecbSHeiko Stübner list->gate_offset, list->gate_shift, 522ef1d9feeSXing Zheng list->gate_flags, flags, &ctx->lock); 523a245fecbSHeiko Stübner break; 52489bf26cbSAlexandru M Stan case branch_mmc: 52589bf26cbSAlexandru M Stan clk = rockchip_clk_register_mmc( 52689bf26cbSAlexandru M Stan list->name, 52789bf26cbSAlexandru M Stan list->parent_names, list->num_parents, 528ef1d9feeSXing Zheng ctx->reg_base + list->muxdiv_offset, 52989bf26cbSAlexandru M Stan list->div_shift 53089bf26cbSAlexandru M Stan ); 53189bf26cbSAlexandru M Stan break; 5328a76f443SHeiko Stuebner case branch_inverter: 5338a76f443SHeiko Stuebner clk = rockchip_clk_register_inverter( 5348a76f443SHeiko Stuebner list->name, list->parent_names, 5358a76f443SHeiko Stuebner list->num_parents, 536ef1d9feeSXing Zheng ctx->reg_base + list->muxdiv_offset, 537ef1d9feeSXing Zheng list->div_shift, list->div_flags, &ctx->lock); 5388a76f443SHeiko Stuebner break; 53929a30c26SHeiko Stuebner case branch_factor: 54029a30c26SHeiko Stuebner clk = rockchip_clk_register_factor_branch( 54129a30c26SHeiko Stuebner list->name, list->parent_names, 542ef1d9feeSXing Zheng list->num_parents, ctx->reg_base, 54329a30c26SHeiko Stuebner list->div_shift, list->div_width, 54429a30c26SHeiko Stuebner list->gate_offset, list->gate_shift, 545ef1d9feeSXing Zheng list->gate_flags, flags, &ctx->lock); 54629a30c26SHeiko Stuebner break; 547a4f182bfSLin Huang case branch_ddrclk: 548a4f182bfSLin Huang clk = rockchip_clk_register_ddrclk( 549a4f182bfSLin Huang list->name, list->flags, 550a4f182bfSLin Huang list->parent_names, list->num_parents, 551a4f182bfSLin Huang list->muxdiv_offset, list->mux_shift, 552a4f182bfSLin Huang list->mux_width, list->div_shift, 553a4f182bfSLin Huang list->div_width, list->div_flags, 554a4f182bfSLin Huang ctx->reg_base, &ctx->lock); 555a4f182bfSLin Huang break; 556a245fecbSHeiko Stübner } 557a245fecbSHeiko Stübner 558a245fecbSHeiko Stübner /* none of the cases above matched */ 559a245fecbSHeiko Stübner if (!clk) { 560a245fecbSHeiko Stübner pr_err("%s: unknown clock type %d\n", 561a245fecbSHeiko Stübner __func__, list->branch_type); 562a245fecbSHeiko Stübner continue; 563a245fecbSHeiko Stübner } 564a245fecbSHeiko Stübner 565a245fecbSHeiko Stübner if (IS_ERR(clk)) { 566a245fecbSHeiko Stübner pr_err("%s: failed to register clock %s: %ld\n", 567a245fecbSHeiko Stübner __func__, list->name, PTR_ERR(clk)); 568a245fecbSHeiko Stübner continue; 569a245fecbSHeiko Stübner } 570a245fecbSHeiko Stübner 571ef1d9feeSXing Zheng rockchip_clk_add_lookup(ctx, clk, list->id); 572a245fecbSHeiko Stübner } 573a245fecbSHeiko Stübner } 574fe94f974SHeiko Stübner 575ef1d9feeSXing Zheng void __init rockchip_clk_register_armclk(struct rockchip_clk_provider *ctx, 576ef1d9feeSXing Zheng unsigned int lookup_id, 5774a1caed3SUwe Kleine-König const char *name, const char *const *parent_names, 578f6fba5f6SHeiko Stuebner u8 num_parents, 579f6fba5f6SHeiko Stuebner const struct rockchip_cpuclk_reg_data *reg_data, 580f6fba5f6SHeiko Stuebner const struct rockchip_cpuclk_rate_table *rates, 581f6fba5f6SHeiko Stuebner int nrates) 582f6fba5f6SHeiko Stuebner { 583f6fba5f6SHeiko Stuebner struct clk *clk; 584f6fba5f6SHeiko Stuebner 585f6fba5f6SHeiko Stuebner clk = rockchip_clk_register_cpuclk(name, parent_names, num_parents, 58603ae1747SHeiko Stuebner reg_data, rates, nrates, 58703ae1747SHeiko Stuebner ctx->reg_base, &ctx->lock); 588f6fba5f6SHeiko Stuebner if (IS_ERR(clk)) { 589f6fba5f6SHeiko Stuebner pr_err("%s: failed to register clock %s: %ld\n", 590f6fba5f6SHeiko Stuebner __func__, name, PTR_ERR(clk)); 591f6fba5f6SHeiko Stuebner return; 592f6fba5f6SHeiko Stuebner } 593f6fba5f6SHeiko Stuebner 594ef1d9feeSXing Zheng rockchip_clk_add_lookup(ctx, clk, lookup_id); 595f6fba5f6SHeiko Stuebner } 596f6fba5f6SHeiko Stuebner 597692d8328SUwe Kleine-König void __init rockchip_clk_protect_critical(const char *const clocks[], 598692d8328SUwe Kleine-König int nclocks) 599fe94f974SHeiko Stübner { 600fe94f974SHeiko Stübner int i; 601fe94f974SHeiko Stübner 602fe94f974SHeiko Stübner /* Protect the clocks that needs to stay on */ 603fe94f974SHeiko Stübner for (i = 0; i < nclocks; i++) { 604fe94f974SHeiko Stübner struct clk *clk = __clk_lookup(clocks[i]); 605fe94f974SHeiko Stübner 606fe94f974SHeiko Stübner if (clk) 607fe94f974SHeiko Stübner clk_prepare_enable(clk); 608fe94f974SHeiko Stübner } 609fe94f974SHeiko Stübner } 6106f1294b5SHeiko Stübner 611ef1d9feeSXing Zheng static void __iomem *rst_base; 6126f1294b5SHeiko Stübner static unsigned int reg_restart; 613dfff24bdSHeiko Stuebner static void (*cb_restart)(void); 6146f1294b5SHeiko Stübner static int rockchip_restart_notify(struct notifier_block *this, 6156f1294b5SHeiko Stübner unsigned long mode, void *cmd) 6166f1294b5SHeiko Stübner { 617dfff24bdSHeiko Stuebner if (cb_restart) 618dfff24bdSHeiko Stuebner cb_restart(); 619dfff24bdSHeiko Stuebner 620ef1d9feeSXing Zheng writel(0xfdb9, rst_base + reg_restart); 6216f1294b5SHeiko Stübner return NOTIFY_DONE; 6226f1294b5SHeiko Stübner } 6236f1294b5SHeiko Stübner 6246f1294b5SHeiko Stübner static struct notifier_block rockchip_restart_handler = { 6256f1294b5SHeiko Stübner .notifier_call = rockchip_restart_notify, 6266f1294b5SHeiko Stübner .priority = 128, 6276f1294b5SHeiko Stübner }; 6286f1294b5SHeiko Stübner 62903ae1747SHeiko Stuebner void __init 63003ae1747SHeiko Stuebner rockchip_register_restart_notifier(struct rockchip_clk_provider *ctx, 63103ae1747SHeiko Stuebner unsigned int reg, 63203ae1747SHeiko Stuebner void (*cb)(void)) 6336f1294b5SHeiko Stübner { 6346f1294b5SHeiko Stübner int ret; 6356f1294b5SHeiko Stübner 636ef1d9feeSXing Zheng rst_base = ctx->reg_base; 6376f1294b5SHeiko Stübner reg_restart = reg; 638dfff24bdSHeiko Stuebner cb_restart = cb; 6396f1294b5SHeiko Stübner ret = register_restart_handler(&rockchip_restart_handler); 6406f1294b5SHeiko Stübner if (ret) 6416f1294b5SHeiko Stübner pr_err("%s: cannot register restart handler, %d\n", 6426f1294b5SHeiko Stübner __func__, ret); 6436f1294b5SHeiko Stübner } 644