2 * Copyright 2013 Emilio López
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/clk.h>
18 #include <linux/clk-provider.h>
19 #include <linux/of_address.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
23 #include "clk-factors.h"
26 * sun4i_get_mod0_factors() - calculates m, n factors for MOD0-style clocks
27 * MOD0 rate is calculated as follows
28 * rate = (parent_rate >> p) / (m + 1);
31 static void sun4i_a10_get_mod0_factors(u32 *freq, u32 parent_rate,
32 u8 *n, u8 *k, u8 *m, u8 *p)
36 /* These clocks can only divide, so we will never be able to achieve
37 * frequencies higher than the parent frequency */
38 if (*freq > parent_rate)
41 div = DIV_ROUND_UP(parent_rate, *freq);
45 else if (div / 2 < 16)
47 else if (div / 4 < 16)
52 calcm = DIV_ROUND_UP(div, 1 << calcp);
54 *freq = (parent_rate >> calcp) / calcm;
56 /* we were called to round the frequency, we can now return */
64 /* user manual says "n" but it's really "p" */
65 static struct clk_factors_config sun4i_a10_mod0_config = {
72 static const struct factors_data sun4i_a10_mod0_data = {
75 .muxmask = BIT(1) | BIT(0),
76 .table = &sun4i_a10_mod0_config,
77 .getter = sun4i_a10_get_mod0_factors,
80 static DEFINE_SPINLOCK(sun4i_a10_mod0_lock);
82 static void __init sun4i_a10_mod0_setup(struct device_node *node)
86 reg = of_iomap(node, 0);
89 * This happens with mod0 clk nodes instantiated through
90 * mfd, as those do not have their resources assigned at
91 * CLK_OF_DECLARE time yet, so do not print an error.
96 sunxi_factors_register(node, &sun4i_a10_mod0_data,
97 &sun4i_a10_mod0_lock, reg);
99 CLK_OF_DECLARE(sun4i_a10_mod0, "allwinner,sun4i-a10-mod0-clk", sun4i_a10_mod0_setup);
101 static int sun4i_a10_mod0_clk_probe(struct platform_device *pdev)
103 struct device_node *np = pdev->dev.of_node;
110 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
111 reg = devm_ioremap_resource(&pdev->dev, r);
115 sunxi_factors_register(np, &sun4i_a10_mod0_data,
116 &sun4i_a10_mod0_lock, reg);
120 static const struct of_device_id sun4i_a10_mod0_clk_dt_ids[] = {
121 { .compatible = "allwinner,sun4i-a10-mod0-clk" },
125 static struct platform_driver sun4i_a10_mod0_clk_driver = {
127 .name = "sun4i-a10-mod0-clk",
128 .of_match_table = sun4i_a10_mod0_clk_dt_ids,
130 .probe = sun4i_a10_mod0_clk_probe,
132 builtin_platform_driver(sun4i_a10_mod0_clk_driver);
134 static const struct factors_data sun9i_a80_mod0_data __initconst = {
137 .muxmask = BIT(3) | BIT(2) | BIT(1) | BIT(0),
138 .table = &sun4i_a10_mod0_config,
139 .getter = sun4i_a10_get_mod0_factors,
142 static void __init sun9i_a80_mod0_setup(struct device_node *node)
146 reg = of_io_request_and_map(node, 0, of_node_full_name(node));
148 pr_err("Could not get registers for mod0-clk: %s\n",
153 sunxi_factors_register(node, &sun9i_a80_mod0_data,
154 &sun4i_a10_mod0_lock, reg);
156 CLK_OF_DECLARE(sun9i_a80_mod0, "allwinner,sun9i-a80-mod0-clk", sun9i_a80_mod0_setup);
158 static DEFINE_SPINLOCK(sun5i_a13_mbus_lock);
160 static void __init sun5i_a13_mbus_setup(struct device_node *node)
165 reg = of_iomap(node, 0);
167 pr_err("Could not get registers for a13-mbus-clk\n");
171 mbus = sunxi_factors_register(node, &sun4i_a10_mod0_data,
172 &sun5i_a13_mbus_lock, reg);
174 /* The MBUS clocks needs to be always enabled */
176 clk_prepare_enable(mbus);
178 CLK_OF_DECLARE(sun5i_a13_mbus, "allwinner,sun5i-a13-mbus-clk", sun5i_a13_mbus_setup);
187 #define to_mmc_phase(_hw) container_of(_hw, struct mmc_phase, hw)
189 static int mmc_get_phase(struct clk_hw *hw)
191 struct clk *mmc, *mmc_parent, *clk = hw->clk;
192 struct mmc_phase *phase = to_mmc_phase(hw);
193 unsigned int mmc_rate, mmc_parent_rate;
198 value = readl(phase->reg);
199 delay = (value >> phase->offset) & 0x3;
204 /* Get the main MMC clock */
205 mmc = clk_get_parent(clk);
210 mmc_rate = clk_get_rate(mmc);
214 /* Now, get the MMC parent (most likely some PLL) */
215 mmc_parent = clk_get_parent(mmc);
220 mmc_parent_rate = clk_get_rate(mmc_parent);
221 if (!mmc_parent_rate)
224 /* Get MMC clock divider */
225 mmc_div = mmc_parent_rate / mmc_rate;
227 step = DIV_ROUND_CLOSEST(360, mmc_div);
231 static int mmc_set_phase(struct clk_hw *hw, int degrees)
233 struct clk *mmc, *mmc_parent, *clk = hw->clk;
234 struct mmc_phase *phase = to_mmc_phase(hw);
235 unsigned int mmc_rate, mmc_parent_rate;
240 /* Get the main MMC clock */
241 mmc = clk_get_parent(clk);
246 mmc_rate = clk_get_rate(mmc);
250 /* Now, get the MMC parent (most likely some PLL) */
251 mmc_parent = clk_get_parent(mmc);
256 mmc_parent_rate = clk_get_rate(mmc_parent);
257 if (!mmc_parent_rate)
260 if (degrees != 180) {
263 /* Get MMC clock divider */
264 mmc_div = mmc_parent_rate / mmc_rate;
267 * We can only outphase the clocks by multiple of the
270 * Since the MMC clock in only a divider, and the
271 * formula to get the outphasing in degrees is deg =
272 * 360 * delta / period
274 * If we simplify this formula, we can see that the
275 * only thing that we're concerned about is the number
276 * of period we want to outphase our clock from, and
277 * the divider set by the MMC clock.
279 step = DIV_ROUND_CLOSEST(360, mmc_div);
280 delay = DIV_ROUND_CLOSEST(degrees, step);
285 spin_lock_irqsave(phase->lock, flags);
286 value = readl(phase->reg);
287 value &= ~GENMASK(phase->offset + 3, phase->offset);
288 value |= delay << phase->offset;
289 writel(value, phase->reg);
290 spin_unlock_irqrestore(phase->lock, flags);
295 static const struct clk_ops mmc_clk_ops = {
296 .get_phase = mmc_get_phase,
297 .set_phase = mmc_set_phase,
301 * sunxi_mmc_setup - Common setup function for mmc module clocks
303 * The only difference between module clocks on different platforms is the
304 * width of the mux register bits and the valid values, which are passed in
305 * through struct factors_data. The phase clocks parts are identical.
307 static void __init sunxi_mmc_setup(struct device_node *node,
308 const struct factors_data *data,
311 struct clk_onecell_data *clk_data;
316 reg = of_io_request_and_map(node, 0, of_node_full_name(node));
318 pr_err("Couldn't map the %s clock registers\n", node->name);
322 clk_data = kmalloc(sizeof(*clk_data), GFP_KERNEL);
326 clk_data->clks = kcalloc(3, sizeof(*clk_data->clks), GFP_KERNEL);
330 clk_data->clk_num = 3;
331 clk_data->clks[0] = sunxi_factors_register(node, data, lock, reg);
332 if (!clk_data->clks[0])
335 parent = __clk_get_name(clk_data->clks[0]);
337 for (i = 1; i < 3; i++) {
338 struct clk_init_data init = {
340 .parent_names = &parent,
343 struct mmc_phase *phase;
345 phase = kmalloc(sizeof(*phase), GFP_KERNEL);
349 phase->hw.init = &init;
358 if (of_property_read_string_index(node, "clock-output-names",
360 init.name = node->name;
362 clk_data->clks[i] = clk_register(NULL, &phase->hw);
363 if (IS_ERR(clk_data->clks[i])) {
369 of_clk_add_provider(node, of_clk_src_onecell_get, clk_data);
374 kfree(clk_data->clks);
379 static DEFINE_SPINLOCK(sun4i_a10_mmc_lock);
381 static void __init sun4i_a10_mmc_setup(struct device_node *node)
383 sunxi_mmc_setup(node, &sun4i_a10_mod0_data, &sun4i_a10_mmc_lock);
385 CLK_OF_DECLARE(sun4i_a10_mmc, "allwinner,sun4i-a10-mmc-clk", sun4i_a10_mmc_setup);
387 static DEFINE_SPINLOCK(sun9i_a80_mmc_lock);
389 static void __init sun9i_a80_mmc_setup(struct device_node *node)
391 sunxi_mmc_setup(node, &sun9i_a80_mod0_data, &sun9i_a80_mmc_lock);
393 CLK_OF_DECLARE(sun9i_a80_mmc, "allwinner,sun9i-a80-mmc-clk", sun9i_a80_mmc_setup);