Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 1 | /* |
| 2 | * r8a7790 Common Clock Framework support |
| 3 | * |
| 4 | * Copyright (C) 2013 Renesas Solutions Corp. |
| 5 | * |
| 6 | * Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; version 2 of the License. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/clk-provider.h> |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/io.h> |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/of.h> |
| 18 | #include <linux/of_address.h> |
Geert Uytterhoeven | 5a1cfaf | 2015-06-23 15:09:27 +0200 | [diff] [blame] | 19 | #include <linux/slab.h> |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 20 | |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 21 | #include "clk-div6.h" |
| 22 | |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 23 | #define CPG_DIV6_CKSTP BIT(8) |
| 24 | #define CPG_DIV6_DIV(d) ((d) & 0x3f) |
| 25 | #define CPG_DIV6_DIV_MASK 0x3f |
| 26 | |
| 27 | /** |
Wolfram Sang | 95aa4f9 | 2014-02-24 20:57:11 +0100 | [diff] [blame] | 28 | * struct div6_clock - CPG 6 bit divider clock |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 29 | * @hw: handle between common and hardware-specific interfaces |
| 30 | * @reg: IO-remapped register |
| 31 | * @div: divisor value (1-64) |
| 32 | */ |
| 33 | struct div6_clock { |
| 34 | struct clk_hw hw; |
| 35 | void __iomem *reg; |
| 36 | unsigned int div; |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 37 | u32 src_shift; |
| 38 | u32 src_width; |
| 39 | u8 *parents; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 40 | }; |
| 41 | |
| 42 | #define to_div6_clock(_hw) container_of(_hw, struct div6_clock, hw) |
| 43 | |
| 44 | static int cpg_div6_clock_enable(struct clk_hw *hw) |
| 45 | { |
| 46 | struct div6_clock *clock = to_div6_clock(hw); |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 47 | u32 val; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 48 | |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 49 | val = (clk_readl(clock->reg) & ~(CPG_DIV6_DIV_MASK | CPG_DIV6_CKSTP)) |
| 50 | | CPG_DIV6_DIV(clock->div - 1); |
| 51 | clk_writel(val, clock->reg); |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 52 | |
| 53 | return 0; |
| 54 | } |
| 55 | |
| 56 | static void cpg_div6_clock_disable(struct clk_hw *hw) |
| 57 | { |
| 58 | struct div6_clock *clock = to_div6_clock(hw); |
Geert Uytterhoeven | 7980a86 | 2014-11-24 15:57:59 +0100 | [diff] [blame] | 59 | u32 val; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 60 | |
Geert Uytterhoeven | 7980a86 | 2014-11-24 15:57:59 +0100 | [diff] [blame] | 61 | val = clk_readl(clock->reg); |
| 62 | val |= CPG_DIV6_CKSTP; |
| 63 | /* |
| 64 | * DIV6 clocks require the divisor field to be non-zero when stopping |
| 65 | * the clock. However, some clocks (e.g. ZB on sh73a0) fail to be |
| 66 | * re-enabled later if the divisor field is changed when stopping the |
| 67 | * clock |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 68 | */ |
Geert Uytterhoeven | 7980a86 | 2014-11-24 15:57:59 +0100 | [diff] [blame] | 69 | if (!(val & CPG_DIV6_DIV_MASK)) |
| 70 | val |= CPG_DIV6_DIV_MASK; |
| 71 | clk_writel(val, clock->reg); |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | static int cpg_div6_clock_is_enabled(struct clk_hw *hw) |
| 75 | { |
| 76 | struct div6_clock *clock = to_div6_clock(hw); |
| 77 | |
| 78 | return !(clk_readl(clock->reg) & CPG_DIV6_CKSTP); |
| 79 | } |
| 80 | |
| 81 | static unsigned long cpg_div6_clock_recalc_rate(struct clk_hw *hw, |
| 82 | unsigned long parent_rate) |
| 83 | { |
| 84 | struct div6_clock *clock = to_div6_clock(hw); |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 85 | |
Geert Uytterhoeven | 3092d3b | 2016-02-18 15:16:02 +0100 | [diff] [blame^] | 86 | return parent_rate / clock->div; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | static unsigned int cpg_div6_clock_calc_div(unsigned long rate, |
| 90 | unsigned long parent_rate) |
| 91 | { |
| 92 | unsigned int div; |
| 93 | |
Geert Uytterhoeven | 5469d4f | 2015-02-04 13:27:21 +0100 | [diff] [blame] | 94 | if (!rate) |
| 95 | rate = 1; |
| 96 | |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 97 | div = DIV_ROUND_CLOSEST(parent_rate, rate); |
| 98 | return clamp_t(unsigned int, div, 1, 64); |
| 99 | } |
| 100 | |
| 101 | static long cpg_div6_clock_round_rate(struct clk_hw *hw, unsigned long rate, |
| 102 | unsigned long *parent_rate) |
| 103 | { |
| 104 | unsigned int div = cpg_div6_clock_calc_div(rate, *parent_rate); |
| 105 | |
| 106 | return *parent_rate / div; |
| 107 | } |
| 108 | |
| 109 | static int cpg_div6_clock_set_rate(struct clk_hw *hw, unsigned long rate, |
| 110 | unsigned long parent_rate) |
| 111 | { |
| 112 | struct div6_clock *clock = to_div6_clock(hw); |
| 113 | unsigned int div = cpg_div6_clock_calc_div(rate, parent_rate); |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 114 | u32 val; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 115 | |
| 116 | clock->div = div; |
| 117 | |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 118 | val = clk_readl(clock->reg) & ~CPG_DIV6_DIV_MASK; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 119 | /* Only program the new divisor if the clock isn't stopped. */ |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 120 | if (!(val & CPG_DIV6_CKSTP)) |
| 121 | clk_writel(val | CPG_DIV6_DIV(clock->div - 1), clock->reg); |
| 122 | |
| 123 | return 0; |
| 124 | } |
| 125 | |
| 126 | static u8 cpg_div6_clock_get_parent(struct clk_hw *hw) |
| 127 | { |
| 128 | struct div6_clock *clock = to_div6_clock(hw); |
| 129 | unsigned int i; |
| 130 | u8 hw_index; |
| 131 | |
| 132 | if (clock->src_width == 0) |
| 133 | return 0; |
| 134 | |
| 135 | hw_index = (clk_readl(clock->reg) >> clock->src_shift) & |
| 136 | (BIT(clock->src_width) - 1); |
Stephen Boyd | 497295a | 2015-06-25 16:53:23 -0700 | [diff] [blame] | 137 | for (i = 0; i < clk_hw_get_num_parents(hw); i++) { |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 138 | if (clock->parents[i] == hw_index) |
| 139 | return i; |
| 140 | } |
| 141 | |
| 142 | pr_err("%s: %s DIV6 clock set to invalid parent %u\n", |
Stephen Boyd | 836ee0f | 2015-08-12 11:42:23 -0700 | [diff] [blame] | 143 | __func__, clk_hw_get_name(hw), hw_index); |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 144 | return 0; |
| 145 | } |
| 146 | |
| 147 | static int cpg_div6_clock_set_parent(struct clk_hw *hw, u8 index) |
| 148 | { |
| 149 | struct div6_clock *clock = to_div6_clock(hw); |
| 150 | u8 hw_index; |
| 151 | u32 mask; |
| 152 | |
Stephen Boyd | 497295a | 2015-06-25 16:53:23 -0700 | [diff] [blame] | 153 | if (index >= clk_hw_get_num_parents(hw)) |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 154 | return -EINVAL; |
| 155 | |
| 156 | mask = ~((BIT(clock->src_width) - 1) << clock->src_shift); |
| 157 | hw_index = clock->parents[index]; |
| 158 | |
| 159 | clk_writel((clk_readl(clock->reg) & mask) | |
| 160 | (hw_index << clock->src_shift), clock->reg); |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 161 | |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | static const struct clk_ops cpg_div6_clock_ops = { |
| 166 | .enable = cpg_div6_clock_enable, |
| 167 | .disable = cpg_div6_clock_disable, |
| 168 | .is_enabled = cpg_div6_clock_is_enabled, |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 169 | .get_parent = cpg_div6_clock_get_parent, |
| 170 | .set_parent = cpg_div6_clock_set_parent, |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 171 | .recalc_rate = cpg_div6_clock_recalc_rate, |
| 172 | .round_rate = cpg_div6_clock_round_rate, |
| 173 | .set_rate = cpg_div6_clock_set_rate, |
| 174 | }; |
| 175 | |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 176 | |
| 177 | /** |
| 178 | * cpg_div6_register - Register a DIV6 clock |
| 179 | * @name: Name of the DIV6 clock |
| 180 | * @num_parents: Number of parent clocks of the DIV6 clock (1, 4, or 8) |
| 181 | * @parent_names: Array containing the names of the parent clocks |
| 182 | * @reg: Mapped register used to control the DIV6 clock |
| 183 | */ |
| 184 | struct clk * __init cpg_div6_register(const char *name, |
| 185 | unsigned int num_parents, |
| 186 | const char **parent_names, |
| 187 | void __iomem *reg) |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 188 | { |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 189 | unsigned int valid_parents; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 190 | struct clk_init_data init; |
| 191 | struct div6_clock *clock; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 192 | struct clk *clk; |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 193 | unsigned int i; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 194 | |
| 195 | clock = kzalloc(sizeof(*clock), GFP_KERNEL); |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 196 | if (!clock) |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 197 | return ERR_PTR(-ENOMEM); |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 198 | |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 199 | clock->parents = kmalloc_array(num_parents, sizeof(*clock->parents), |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 200 | GFP_KERNEL); |
| 201 | if (!clock->parents) { |
| 202 | clk = ERR_PTR(-ENOMEM); |
| 203 | goto free_clock; |
| 204 | } |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 205 | |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 206 | clock->reg = reg; |
| 207 | |
| 208 | /* |
| 209 | * Read the divisor. Disabling the clock overwrites the divisor, so we |
| 210 | * need to cache its value for the enable operation. |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 211 | */ |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 212 | clock->div = (clk_readl(clock->reg) & CPG_DIV6_DIV_MASK) + 1; |
| 213 | |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 214 | switch (num_parents) { |
| 215 | case 1: |
| 216 | /* fixed parent clock */ |
| 217 | clock->src_shift = clock->src_width = 0; |
| 218 | break; |
| 219 | case 4: |
| 220 | /* clock with EXSRC bits 6-7 */ |
| 221 | clock->src_shift = 6; |
| 222 | clock->src_width = 2; |
| 223 | break; |
| 224 | case 8: |
| 225 | /* VCLK with EXSRC bits 12-14 */ |
| 226 | clock->src_shift = 12; |
| 227 | clock->src_width = 3; |
| 228 | break; |
| 229 | default: |
| 230 | pr_err("%s: invalid number of parents for DIV6 clock %s\n", |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 231 | __func__, name); |
| 232 | clk = ERR_PTR(-EINVAL); |
| 233 | goto free_parents; |
| 234 | } |
| 235 | |
| 236 | /* Filter out invalid parents */ |
| 237 | for (i = 0, valid_parents = 0; i < num_parents; i++) { |
| 238 | if (parent_names[i]) { |
| 239 | parent_names[valid_parents] = parent_names[i]; |
| 240 | clock->parents[valid_parents] = i; |
| 241 | valid_parents++; |
| 242 | } |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | /* Register the clock. */ |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 246 | init.name = name; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 247 | init.ops = &cpg_div6_clock_ops; |
| 248 | init.flags = CLK_IS_BASIC; |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 249 | init.parent_names = parent_names; |
| 250 | init.num_parents = valid_parents; |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 251 | |
| 252 | clock->hw.init = &init; |
| 253 | |
| 254 | clk = clk_register(NULL, &clock->hw); |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 255 | if (IS_ERR(clk)) |
| 256 | goto free_parents; |
| 257 | |
| 258 | return clk; |
| 259 | |
| 260 | free_parents: |
| 261 | kfree(clock->parents); |
| 262 | free_clock: |
| 263 | kfree(clock); |
| 264 | return clk; |
| 265 | } |
| 266 | |
| 267 | static void __init cpg_div6_clock_init(struct device_node *np) |
| 268 | { |
| 269 | unsigned int num_parents; |
| 270 | const char **parent_names; |
| 271 | const char *clk_name = np->name; |
| 272 | void __iomem *reg; |
| 273 | struct clk *clk; |
| 274 | unsigned int i; |
| 275 | |
| 276 | num_parents = of_clk_get_parent_count(np); |
| 277 | if (num_parents < 1) { |
| 278 | pr_err("%s: no parent found for %s DIV6 clock\n", |
| 279 | __func__, np->name); |
| 280 | return; |
| 281 | } |
| 282 | |
| 283 | parent_names = kmalloc_array(num_parents, sizeof(*parent_names), |
| 284 | GFP_KERNEL); |
| 285 | if (!parent_names) |
| 286 | return; |
| 287 | |
| 288 | reg = of_iomap(np, 0); |
| 289 | if (reg == NULL) { |
| 290 | pr_err("%s: failed to map %s DIV6 clock register\n", |
| 291 | __func__, np->name); |
| 292 | goto error; |
| 293 | } |
| 294 | |
| 295 | /* Parse the DT properties. */ |
| 296 | of_property_read_string(np, "clock-output-names", &clk_name); |
| 297 | |
| 298 | for (i = 0; i < num_parents; i++) |
| 299 | parent_names[i] = of_clk_get_parent_name(np, i); |
| 300 | |
| 301 | clk = cpg_div6_register(clk_name, num_parents, parent_names, reg); |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 302 | if (IS_ERR(clk)) { |
| 303 | pr_err("%s: failed to register %s DIV6 clock (%ld)\n", |
| 304 | __func__, np->name, PTR_ERR(clk)); |
| 305 | goto error; |
| 306 | } |
| 307 | |
| 308 | of_clk_add_provider(np, of_clk_src_simple_get, clk); |
| 309 | |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 310 | kfree(parent_names); |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 311 | return; |
| 312 | |
| 313 | error: |
Geert Uytterhoeven | 1fae91e | 2015-10-16 11:41:19 +0200 | [diff] [blame] | 314 | if (reg) |
| 315 | iounmap(reg); |
Ulrich Hecht | c6d67fb | 2014-11-07 16:51:07 +0100 | [diff] [blame] | 316 | kfree(parent_names); |
Laurent Pinchart | abe844a | 2013-10-17 23:54:07 +0200 | [diff] [blame] | 317 | } |
| 318 | CLK_OF_DECLARE(cpg_div6_clk, "renesas,cpg-div6-clock", cpg_div6_clock_init); |