1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright 2016 Maxime Ripard 4 * 5 * Maxime Ripard <maxime.ripard@free-electrons.com> 6 */ 7 8 #include <linux/clk.h> 9 #include <linux/clk-provider.h> 10 #include <linux/iopoll.h> 11 #include <linux/slab.h> 12 13 #include "ccu_common.h" 14 #include "ccu_gate.h" 15 #include "ccu_reset.h" 16 17 static DEFINE_SPINLOCK(ccu_lock); 18 19 void ccu_helper_wait_for_lock(struct ccu_common *common, u32 lock) 20 { 21 void __iomem *addr; 22 u32 reg; 23 24 if (!lock) 25 return; 26 27 if (common->features & CCU_FEATURE_LOCK_REG) 28 addr = common->base + common->lock_reg; 29 else 30 addr = common->base + common->reg; 31 32 WARN_ON(readl_relaxed_poll_timeout(addr, reg, reg & lock, 100, 70000)); 33 } 34 35 /* 36 * This clock notifier is called when the frequency of a PLL clock is 37 * changed. In common PLL designs, changes to the dividers take effect 38 * almost immediately, while changes to the multipliers (implemented 39 * as dividers in the feedback loop) take a few cycles to work into 40 * the feedback loop for the PLL to stablize. 41 * 42 * Sometimes when the PLL clock rate is changed, the decrease in the 43 * divider is too much for the decrease in the multiplier to catch up. 44 * The PLL clock rate will spike, and in some cases, might lock up 45 * completely. 46 * 47 * This notifier callback will gate and then ungate the clock, 48 * effectively resetting it, so it proceeds to work. Care must be 49 * taken to reparent consumers to other temporary clocks during the 50 * rate change, and that this notifier callback must be the first 51 * to be registered. 52 */ 53 static int ccu_pll_notifier_cb(struct notifier_block *nb, 54 unsigned long event, void *data) 55 { 56 struct ccu_pll_nb *pll = to_ccu_pll_nb(nb); 57 int ret = 0; 58 59 if (event != POST_RATE_CHANGE) 60 goto out; 61 62 ccu_gate_helper_disable(pll->common, pll->enable); 63 64 ret = ccu_gate_helper_enable(pll->common, pll->enable); 65 if (ret) 66 goto out; 67 68 ccu_helper_wait_for_lock(pll->common, pll->lock); 69 70 out: 71 return notifier_from_errno(ret); 72 } 73 74 int ccu_pll_notifier_register(struct ccu_pll_nb *pll_nb) 75 { 76 pll_nb->clk_nb.notifier_call = ccu_pll_notifier_cb; 77 78 return clk_notifier_register(pll_nb->common->hw.clk, 79 &pll_nb->clk_nb); 80 } 81 82 int sunxi_ccu_probe(struct device_node *node, void __iomem *reg, 83 const struct sunxi_ccu_desc *desc) 84 { 85 struct ccu_reset *reset; 86 int i, ret; 87 88 for (i = 0; i < desc->num_ccu_clks; i++) { 89 struct ccu_common *cclk = desc->ccu_clks[i]; 90 91 if (!cclk) 92 continue; 93 94 cclk->base = reg; 95 cclk->lock = &ccu_lock; 96 } 97 98 for (i = 0; i < desc->hw_clks->num ; i++) { 99 struct clk_hw *hw = desc->hw_clks->hws[i]; 100 101 if (!hw) 102 continue; 103 104 ret = of_clk_hw_register(node, hw); 105 if (ret) { 106 pr_err("Couldn't register clock %d - %s\n", 107 i, clk_hw_get_name(hw)); 108 goto err_clk_unreg; 109 } 110 } 111 112 ret = of_clk_add_hw_provider(node, of_clk_hw_onecell_get, 113 desc->hw_clks); 114 if (ret) 115 goto err_clk_unreg; 116 117 reset = kzalloc(sizeof(*reset), GFP_KERNEL); 118 if (!reset) { 119 ret = -ENOMEM; 120 goto err_alloc_reset; 121 } 122 123 reset->rcdev.of_node = node; 124 reset->rcdev.ops = &ccu_reset_ops; 125 reset->rcdev.owner = THIS_MODULE; 126 reset->rcdev.nr_resets = desc->num_resets; 127 reset->base = reg; 128 reset->lock = &ccu_lock; 129 reset->reset_map = desc->resets; 130 131 ret = reset_controller_register(&reset->rcdev); 132 if (ret) 133 goto err_of_clk_unreg; 134 135 return 0; 136 137 err_of_clk_unreg: 138 kfree(reset); 139 err_alloc_reset: 140 of_clk_del_provider(node); 141 err_clk_unreg: 142 while (--i >= 0) { 143 struct clk_hw *hw = desc->hw_clks->hws[i]; 144 145 if (!hw) 146 continue; 147 clk_hw_unregister(hw); 148 } 149 return ret; 150 } 151