Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | // SPDX-License-Identifier: GPL-2.0 /* * r8a7790 Common Clock Framework support * * Copyright (C) 2013 Renesas Solutions Corp. * * Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com> */ #include <linux/clk-provider.h> #include <linux/init.h> #include <linux/io.h> #include <linux/kernel.h> #include <linux/notifier.h> #include <linux/of.h> #include <linux/of_address.h> #include <linux/pm.h> #include <linux/slab.h> #include "clk-div6.h" #define CPG_DIV6_CKSTP BIT(8) #define CPG_DIV6_DIV(d) ((d) & 0x3f) #define CPG_DIV6_DIV_MASK 0x3f /** * struct div6_clock - CPG 6 bit divider clock * @hw: handle between common and hardware-specific interfaces * @reg: IO-remapped register * @div: divisor value (1-64) * @src_mask: Bitmask covering the register bits to select the parent clock * @nb: Notifier block to save/restore clock state for system resume * @parents: Array to map from valid parent clocks indices to hardware indices */ struct div6_clock { struct clk_hw hw; void __iomem *reg; unsigned int div; u32 src_mask; struct notifier_block nb; u8 parents[]; }; #define to_div6_clock(_hw) container_of(_hw, struct div6_clock, hw) static int cpg_div6_clock_enable(struct clk_hw *hw) { struct div6_clock *clock = to_div6_clock(hw); u32 val; val = (readl(clock->reg) & ~(CPG_DIV6_DIV_MASK | CPG_DIV6_CKSTP)) | CPG_DIV6_DIV(clock->div - 1); writel(val, clock->reg); return 0; } static void cpg_div6_clock_disable(struct clk_hw *hw) { struct div6_clock *clock = to_div6_clock(hw); u32 val; val = readl(clock->reg); val |= CPG_DIV6_CKSTP; /* * DIV6 clocks require the divisor field to be non-zero when stopping * the clock. However, some clocks (e.g. ZB on sh73a0) fail to be * re-enabled later if the divisor field is changed when stopping the * clock */ if (!(val & CPG_DIV6_DIV_MASK)) val |= CPG_DIV6_DIV_MASK; writel(val, clock->reg); } static int cpg_div6_clock_is_enabled(struct clk_hw *hw) { struct div6_clock *clock = to_div6_clock(hw); return !(readl(clock->reg) & CPG_DIV6_CKSTP); } static unsigned long cpg_div6_clock_recalc_rate(struct clk_hw *hw, unsigned long parent_rate) { struct div6_clock *clock = to_div6_clock(hw); return parent_rate / clock->div; } static unsigned int cpg_div6_clock_calc_div(unsigned long rate, unsigned long parent_rate) { unsigned int div; if (!rate) rate = 1; div = DIV_ROUND_CLOSEST(parent_rate, rate); return clamp(div, 1U, 64U); } static int cpg_div6_clock_determine_rate(struct clk_hw *hw, struct clk_rate_request *req) { unsigned long prate, calc_rate, diff, best_rate, best_prate; unsigned int num_parents = clk_hw_get_num_parents(hw); struct clk_hw *parent, *best_parent = NULL; unsigned int i, min_div, max_div, div; unsigned long min_diff = ULONG_MAX; for (i = 0; i < num_parents; i++) { parent = clk_hw_get_parent_by_index(hw, i); if (!parent) continue; prate = clk_hw_get_rate(parent); if (!prate) continue; min_div = max(DIV_ROUND_UP(prate, req->max_rate), 1UL); max_div = req->min_rate ? min(prate / req->min_rate, 64UL) : 64; if (max_div < min_div) continue; div = cpg_div6_clock_calc_div(req->rate, prate); div = clamp(div, min_div, max_div); calc_rate = prate / div; diff = calc_rate > req->rate ? calc_rate - req->rate : req->rate - calc_rate; if (diff < min_diff) { best_rate = calc_rate; best_parent = parent; best_prate = prate; min_diff = diff; } } if (!best_parent) return -EINVAL; req->best_parent_rate = best_prate; req->best_parent_hw = best_parent; req->rate = best_rate; return 0; } static int cpg_div6_clock_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) { struct div6_clock *clock = to_div6_clock(hw); unsigned int div = cpg_div6_clock_calc_div(rate, parent_rate); u32 val; clock->div = div; val = readl(clock->reg) & ~CPG_DIV6_DIV_MASK; /* Only program the new divisor if the clock isn't stopped. */ if (!(val & CPG_DIV6_CKSTP)) writel(val | CPG_DIV6_DIV(clock->div - 1), clock->reg); return 0; } static u8 cpg_div6_clock_get_parent(struct clk_hw *hw) { struct div6_clock *clock = to_div6_clock(hw); unsigned int i; u8 hw_index; if (clock->src_mask == 0) return 0; hw_index = (readl(clock->reg) & clock->src_mask) >> __ffs(clock->src_mask); for (i = 0; i < clk_hw_get_num_parents(hw); i++) { if (clock->parents[i] == hw_index) return i; } pr_err("%s: %s DIV6 clock set to invalid parent %u\n", __func__, clk_hw_get_name(hw), hw_index); return 0; } static int cpg_div6_clock_set_parent(struct clk_hw *hw, u8 index) { struct div6_clock *clock = to_div6_clock(hw); u32 src; if (index >= clk_hw_get_num_parents(hw)) return -EINVAL; src = clock->parents[index] << __ffs(clock->src_mask); writel((readl(clock->reg) & ~clock->src_mask) | src, clock->reg); return 0; } static const struct clk_ops cpg_div6_clock_ops = { .enable = cpg_div6_clock_enable, .disable = cpg_div6_clock_disable, .is_enabled = cpg_div6_clock_is_enabled, .get_parent = cpg_div6_clock_get_parent, .set_parent = cpg_div6_clock_set_parent, .recalc_rate = cpg_div6_clock_recalc_rate, .determine_rate = cpg_div6_clock_determine_rate, .set_rate = cpg_div6_clock_set_rate, }; static int cpg_div6_clock_notifier_call(struct notifier_block *nb, unsigned long action, void *data) { struct div6_clock *clock = container_of(nb, struct div6_clock, nb); switch (action) { case PM_EVENT_RESUME: /* * TODO: This does not yet support DIV6 clocks with multiple * parents, as the parent selection bits are not restored. * Fortunately so far such DIV6 clocks are found only on * R/SH-Mobile SoCs, while the resume functionality is only * needed on R-Car Gen3. */ if (__clk_get_enable_count(clock->hw.clk)) cpg_div6_clock_enable(&clock->hw); else cpg_div6_clock_disable(&clock->hw); return NOTIFY_OK; } return NOTIFY_DONE; } /** * cpg_div6_register - Register a DIV6 clock * @name: Name of the DIV6 clock * @num_parents: Number of parent clocks of the DIV6 clock (1, 4, or 8) * @parent_names: Array containing the names of the parent clocks * @reg: Mapped register used to control the DIV6 clock * @notifiers: Optional notifier chain to save/restore state for system resume */ struct clk * __init cpg_div6_register(const char *name, unsigned int num_parents, const char **parent_names, void __iomem *reg, struct raw_notifier_head *notifiers) { unsigned int valid_parents; struct clk_init_data init = {}; struct div6_clock *clock; struct clk *clk; unsigned int i; clock = kzalloc(struct_size(clock, parents, num_parents), GFP_KERNEL); if (!clock) return ERR_PTR(-ENOMEM); clock->reg = reg; /* * Read the divisor. Disabling the clock overwrites the divisor, so we * need to cache its value for the enable operation. */ clock->div = (readl(clock->reg) & CPG_DIV6_DIV_MASK) + 1; switch (num_parents) { case 1: /* fixed parent clock */ clock->src_mask = 0; break; case 4: /* clock with EXSRC bits 6-7 */ clock->src_mask = GENMASK(7, 6); break; case 8: /* VCLK with EXSRC bits 12-14 */ clock->src_mask = GENMASK(14, 12); break; default: pr_err("%s: invalid number of parents for DIV6 clock %s\n", __func__, name); clk = ERR_PTR(-EINVAL); goto free_clock; } /* Filter out invalid parents */ for (i = 0, valid_parents = 0; i < num_parents; i++) { if (parent_names[i]) { parent_names[valid_parents] = parent_names[i]; clock->parents[valid_parents] = i; valid_parents++; } } /* Register the clock. */ init.name = name; init.ops = &cpg_div6_clock_ops; init.parent_names = parent_names; init.num_parents = valid_parents; clock->hw.init = &init; clk = clk_register(NULL, &clock->hw); if (IS_ERR(clk)) goto free_clock; if (notifiers) { clock->nb.notifier_call = cpg_div6_clock_notifier_call; raw_notifier_chain_register(notifiers, &clock->nb); } return clk; free_clock: kfree(clock); return clk; } static void __init cpg_div6_clock_init(struct device_node *np) { unsigned int num_parents; const char **parent_names; const char *clk_name = np->name; void __iomem *reg; struct clk *clk; unsigned int i; num_parents = of_clk_get_parent_count(np); if (num_parents < 1) { pr_err("%s: no parent found for %pOFn DIV6 clock\n", __func__, np); return; } parent_names = kmalloc_array(num_parents, sizeof(*parent_names), GFP_KERNEL); if (!parent_names) return; reg = of_iomap(np, 0); if (reg == NULL) { pr_err("%s: failed to map %pOFn DIV6 clock register\n", __func__, np); goto error; } /* Parse the DT properties. */ of_property_read_string(np, "clock-output-names", &clk_name); for (i = 0; i < num_parents; i++) parent_names[i] = of_clk_get_parent_name(np, i); clk = cpg_div6_register(clk_name, num_parents, parent_names, reg, NULL); if (IS_ERR(clk)) { pr_err("%s: failed to register %pOFn DIV6 clock (%ld)\n", __func__, np, PTR_ERR(clk)); goto error; } of_clk_add_provider(np, of_clk_src_simple_get, clk); kfree(parent_names); return; error: if (reg) iounmap(reg); kfree(parent_names); } CLK_OF_DECLARE(cpg_div6_clk, "renesas,cpg-div6-clock", cpg_div6_clock_init); |