blob: cda90a971e39b9388838fb3a35264c9c98b26083 [file] [log] [blame]
Tang Yuantian555eae92013-04-09 16:46:26 +08001/*
2 * Copyright 2013 Freescale Semiconductor, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
Tang Yuantian93a17c02015-01-15 14:03:41 +08008 * clock driver for Freescale QorIQ SoCs.
Tang Yuantian555eae92013-04-09 16:46:26 +08009 */
Emil Medvec88b2b62015-01-21 04:03:29 -060010
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
Tang Yuantian555eae92013-04-09 16:46:26 +080013#include <linux/clk-provider.h>
14#include <linux/io.h>
15#include <linux/kernel.h>
16#include <linux/module.h>
Rob Herringc11eede2013-11-10 23:19:08 -060017#include <linux/of_address.h>
Tang Yuantian555eae92013-04-09 16:46:26 +080018#include <linux/of_platform.h>
19#include <linux/of.h>
20#include <linux/slab.h>
21
22struct cmux_clk {
23 struct clk_hw hw;
24 void __iomem *reg;
Tang Yuantian57bfd7e2015-01-15 14:03:40 +080025 unsigned int clk_per_pll;
Tang Yuantian555eae92013-04-09 16:46:26 +080026 u32 flags;
27};
28
29#define PLL_KILL BIT(31)
30#define CLKSEL_SHIFT 27
31#define CLKSEL_ADJUST BIT(0)
32#define to_cmux_clk(p) container_of(p, struct cmux_clk, hw)
33
Tang Yuantian555eae92013-04-09 16:46:26 +080034static int cmux_set_parent(struct clk_hw *hw, u8 idx)
35{
36 struct cmux_clk *clk = to_cmux_clk(hw);
37 u32 clksel;
38
Tang Yuantian57bfd7e2015-01-15 14:03:40 +080039 clksel = ((idx / clk->clk_per_pll) << 2) + idx % clk->clk_per_pll;
Tang Yuantian555eae92013-04-09 16:46:26 +080040 if (clk->flags & CLKSEL_ADJUST)
41 clksel += 8;
42 clksel = (clksel & 0xf) << CLKSEL_SHIFT;
43 iowrite32be(clksel, clk->reg);
44
45 return 0;
46}
47
48static u8 cmux_get_parent(struct clk_hw *hw)
49{
50 struct cmux_clk *clk = to_cmux_clk(hw);
51 u32 clksel;
52
53 clksel = ioread32be(clk->reg);
54 clksel = (clksel >> CLKSEL_SHIFT) & 0xf;
55 if (clk->flags & CLKSEL_ADJUST)
56 clksel -= 8;
Tang Yuantian57bfd7e2015-01-15 14:03:40 +080057 clksel = (clksel >> 2) * clk->clk_per_pll + clksel % 4;
Tang Yuantian555eae92013-04-09 16:46:26 +080058
59 return clksel;
60}
61
Emil Medve334680d2015-01-21 04:03:27 -060062static const struct clk_ops cmux_ops = {
Tang Yuantian555eae92013-04-09 16:46:26 +080063 .get_parent = cmux_get_parent,
64 .set_parent = cmux_set_parent,
65};
66
67static void __init core_mux_init(struct device_node *np)
68{
69 struct clk *clk;
70 struct clk_init_data init;
71 struct cmux_clk *cmux_clk;
72 struct device_node *node;
73 int rc, count, i;
74 u32 offset;
75 const char *clk_name;
76 const char **parent_names;
Tang Yuantian57bfd7e2015-01-15 14:03:40 +080077 struct of_phandle_args clkspec;
Tang Yuantian555eae92013-04-09 16:46:26 +080078
79 rc = of_property_read_u32(np, "reg", &offset);
80 if (rc) {
81 pr_err("%s: could not get reg property\n", np->name);
82 return;
83 }
84
85 /* get the input clock source count */
86 count = of_property_count_strings(np, "clock-names");
87 if (count < 0) {
88 pr_err("%s: get clock count error\n", np->name);
89 return;
90 }
Emil Medvea9247222015-01-21 04:03:24 -060091 parent_names = kcalloc(count, sizeof(char *), GFP_KERNEL);
Emil Medve8002cab2015-01-21 04:03:26 -060092 if (!parent_names)
Tang Yuantian555eae92013-04-09 16:46:26 +080093 return;
Tang Yuantian555eae92013-04-09 16:46:26 +080094
95 for (i = 0; i < count; i++)
96 parent_names[i] = of_clk_get_parent_name(np, i);
97
Emil Medve13c25f52015-01-21 04:03:25 -060098 cmux_clk = kzalloc(sizeof(*cmux_clk), GFP_KERNEL);
Emil Medve8002cab2015-01-21 04:03:26 -060099 if (!cmux_clk)
Tang Yuantian555eae92013-04-09 16:46:26 +0800100 goto err_name;
Emil Medve8002cab2015-01-21 04:03:26 -0600101
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800102 cmux_clk->reg = of_iomap(np, 0);
103 if (!cmux_clk->reg) {
104 pr_err("%s: could not map register\n", __func__);
105 goto err_clk;
106 }
Tang Yuantian555eae92013-04-09 16:46:26 +0800107
Tang Yuantian57bfd7e2015-01-15 14:03:40 +0800108 rc = of_parse_phandle_with_args(np, "clocks", "#clock-cells", 0,
109 &clkspec);
110 if (rc) {
111 pr_err("%s: parse clock node error\n", __func__);
112 goto err_clk;
113 }
114
115 cmux_clk->clk_per_pll = of_property_count_strings(clkspec.np,
116 "clock-output-names");
117 of_node_put(clkspec.np);
118
Tang Yuantian555eae92013-04-09 16:46:26 +0800119 node = of_find_compatible_node(NULL, NULL, "fsl,p4080-clockgen");
120 if (node && (offset >= 0x80))
121 cmux_clk->flags = CLKSEL_ADJUST;
122
123 rc = of_property_read_string_index(np, "clock-output-names",
Emil Medve78f4a632015-01-21 04:03:23 -0600124 0, &clk_name);
Tang Yuantian555eae92013-04-09 16:46:26 +0800125 if (rc) {
126 pr_err("%s: read clock names error\n", np->name);
127 goto err_clk;
128 }
129
130 init.name = clk_name;
131 init.ops = &cmux_ops;
132 init.parent_names = parent_names;
133 init.num_parents = count;
134 init.flags = 0;
135 cmux_clk->hw.init = &init;
136
137 clk = clk_register(NULL, &cmux_clk->hw);
138 if (IS_ERR(clk)) {
139 pr_err("%s: could not register clock\n", clk_name);
140 goto err_clk;
141 }
142
143 rc = of_clk_add_provider(np, of_clk_src_simple_get, clk);
144 if (rc) {
145 pr_err("Could not register clock provider for node:%s\n",
Emil Medve78f4a632015-01-21 04:03:23 -0600146 np->name);
Tang Yuantian555eae92013-04-09 16:46:26 +0800147 goto err_clk;
148 }
149 goto err_name;
150
151err_clk:
152 kfree(cmux_clk);
153err_name:
154 /* free *_names because they are reallocated when registered */
155 kfree(parent_names);
156}
157
158static void __init core_pll_init(struct device_node *np)
159{
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800160 u32 mult;
Tang Yuantian555eae92013-04-09 16:46:26 +0800161 int i, rc, count;
162 const char *clk_name, *parent_name;
163 struct clk_onecell_data *onecell_data;
164 struct clk **subclks;
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800165 void __iomem *base;
Tang Yuantian555eae92013-04-09 16:46:26 +0800166
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800167 base = of_iomap(np, 0);
168 if (!base) {
Emil Medvec88b2b62015-01-21 04:03:29 -0600169 pr_err("iomap error\n");
Tang Yuantian555eae92013-04-09 16:46:26 +0800170 return;
171 }
172
173 /* get the multiple of PLL */
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800174 mult = ioread32be(base);
Tang Yuantian555eae92013-04-09 16:46:26 +0800175
176 /* check if this PLL is disabled */
177 if (mult & PLL_KILL) {
178 pr_debug("PLL:%s is disabled\n", np->name);
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800179 goto err_map;
Tang Yuantian555eae92013-04-09 16:46:26 +0800180 }
181 mult = (mult >> 1) & 0x3f;
182
183 parent_name = of_clk_get_parent_name(np, 0);
184 if (!parent_name) {
185 pr_err("PLL: %s must have a parent\n", np->name);
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800186 goto err_map;
Tang Yuantian555eae92013-04-09 16:46:26 +0800187 }
188
189 count = of_property_count_strings(np, "clock-output-names");
190 if (count < 0 || count > 4) {
191 pr_err("%s: clock is not supported\n", np->name);
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800192 goto err_map;
Tang Yuantian555eae92013-04-09 16:46:26 +0800193 }
194
Emil Medvea9247222015-01-21 04:03:24 -0600195 subclks = kcalloc(count, sizeof(struct clk *), GFP_KERNEL);
Emil Medve8002cab2015-01-21 04:03:26 -0600196 if (!subclks)
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800197 goto err_map;
Tang Yuantian555eae92013-04-09 16:46:26 +0800198
Emil Medve6ef1cca2015-01-21 04:03:28 -0600199 onecell_data = kmalloc(sizeof(*onecell_data), GFP_KERNEL);
Emil Medve8002cab2015-01-21 04:03:26 -0600200 if (!onecell_data)
Tang Yuantian555eae92013-04-09 16:46:26 +0800201 goto err_clks;
Tang Yuantian555eae92013-04-09 16:46:26 +0800202
203 for (i = 0; i < count; i++) {
204 rc = of_property_read_string_index(np, "clock-output-names",
Emil Medve78f4a632015-01-21 04:03:23 -0600205 i, &clk_name);
Tang Yuantian555eae92013-04-09 16:46:26 +0800206 if (rc) {
207 pr_err("%s: could not get clock names\n", np->name);
208 goto err_cell;
209 }
210
211 /*
212 * when count == 4, there are 4 output clocks:
213 * /1, /2, /3, /4 respectively
214 * when count < 4, there are at least 2 output clocks:
215 * /1, /2, (/4, if count == 3) respectively.
216 */
217 if (count == 4)
218 subclks[i] = clk_register_fixed_factor(NULL, clk_name,
219 parent_name, 0, mult, 1 + i);
220 else
221
222 subclks[i] = clk_register_fixed_factor(NULL, clk_name,
223 parent_name, 0, mult, 1 << i);
224
225 if (IS_ERR(subclks[i])) {
226 pr_err("%s: could not register clock\n", clk_name);
227 goto err_cell;
228 }
229 }
230
231 onecell_data->clks = subclks;
232 onecell_data->clk_num = count;
233
234 rc = of_clk_add_provider(np, of_clk_src_onecell_get, onecell_data);
235 if (rc) {
236 pr_err("Could not register clk provider for node:%s\n",
Emil Medve78f4a632015-01-21 04:03:23 -0600237 np->name);
Tang Yuantian555eae92013-04-09 16:46:26 +0800238 goto err_cell;
239 }
240
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800241 iounmap(base);
Tang Yuantian555eae92013-04-09 16:46:26 +0800242 return;
243err_cell:
244 kfree(onecell_data);
245err_clks:
246 kfree(subclks);
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800247err_map:
248 iounmap(base);
249}
250
251static void __init sysclk_init(struct device_node *node)
252{
253 struct clk *clk;
254 const char *clk_name = node->name;
255 struct device_node *np = of_get_parent(node);
256 u32 rate;
257
258 if (!np) {
Emil Medvec88b2b62015-01-21 04:03:29 -0600259 pr_err("could not get parent node\n");
Tang Yuantian00fa6e52014-01-21 09:32:45 +0800260 return;
261 }
262
263 if (of_property_read_u32(np, "clock-frequency", &rate)) {
264 of_node_put(node);
265 return;
266 }
267
268 of_property_read_string(np, "clock-output-names", &clk_name);
269
270 clk = clk_register_fixed_rate(NULL, clk_name, NULL, CLK_IS_ROOT, rate);
271 if (!IS_ERR(clk))
272 of_clk_add_provider(np, of_clk_src_simple_get, clk);
Tang Yuantian555eae92013-04-09 16:46:26 +0800273}
Emil Medvea513b722015-01-21 04:03:31 -0600274
275static void __init pltfrm_pll_init(struct device_node *np)
276{
277 void __iomem *base;
278 uint32_t mult;
279 const char *parent_name, *clk_name;
280 int i, _errno;
281 struct clk_onecell_data *cod;
282
283 base = of_iomap(np, 0);
284 if (!base) {
285 pr_err("%s(): %s: of_iomap() failed\n", __func__, np->name);
286 return;
287 }
288
289 /* Get the multiple of PLL */
290 mult = ioread32be(base);
291
292 iounmap(base);
293
294 /* Check if this PLL is disabled */
295 if (mult & PLL_KILL) {
296 pr_debug("%s(): %s: Disabled\n", __func__, np->name);
297 return;
298 }
299 mult = (mult & GENMASK(6, 1)) >> 1;
300
301 parent_name = of_clk_get_parent_name(np, 0);
302 if (!parent_name) {
303 pr_err("%s(): %s: of_clk_get_parent_name() failed\n",
304 __func__, np->name);
305 return;
306 }
307
308 i = of_property_count_strings(np, "clock-output-names");
309 if (i < 0) {
310 pr_err("%s(): %s: of_property_count_strings(clock-output-names) = %d\n",
311 __func__, np->name, i);
312 return;
313 }
314
315 cod = kmalloc(sizeof(*cod) + i * sizeof(struct clk *), GFP_KERNEL);
316 if (!cod)
317 return;
318 cod->clks = (struct clk **)(cod + 1);
319 cod->clk_num = i;
320
321 for (i = 0; i < cod->clk_num; i++) {
322 _errno = of_property_read_string_index(np, "clock-output-names",
323 i, &clk_name);
324 if (_errno < 0) {
325 pr_err("%s(): %s: of_property_read_string_index(clock-output-names) = %d\n",
326 __func__, np->name, _errno);
327 goto return_clk_unregister;
328 }
329
330 cod->clks[i] = clk_register_fixed_factor(NULL, clk_name,
331 parent_name, 0, mult, 1 + i);
332 if (IS_ERR(cod->clks[i])) {
333 pr_err("%s(): %s: clk_register_fixed_factor(%s) = %ld\n",
334 __func__, np->name,
335 clk_name, PTR_ERR(cod->clks[i]));
336 goto return_clk_unregister;
337 }
338 }
339
340 _errno = of_clk_add_provider(np, of_clk_src_onecell_get, cod);
341 if (_errno < 0) {
342 pr_err("%s(): %s: of_clk_add_provider() = %d\n",
343 __func__, np->name, _errno);
344 goto return_clk_unregister;
345 }
346
347 return;
348
349return_clk_unregister:
350 while (--i >= 0)
351 clk_unregister(cod->clks[i]);
352 kfree(cod);
353}
354
Kevin Hao66619ac2014-12-03 16:53:53 +0800355CLK_OF_DECLARE(qoriq_sysclk_1, "fsl,qoriq-sysclk-1.0", sysclk_init);
356CLK_OF_DECLARE(qoriq_sysclk_2, "fsl,qoriq-sysclk-2.0", sysclk_init);
357CLK_OF_DECLARE(qoriq_core_pll_1, "fsl,qoriq-core-pll-1.0", core_pll_init);
358CLK_OF_DECLARE(qoriq_core_pll_2, "fsl,qoriq-core-pll-2.0", core_pll_init);
359CLK_OF_DECLARE(qoriq_core_mux_1, "fsl,qoriq-core-mux-1.0", core_mux_init);
360CLK_OF_DECLARE(qoriq_core_mux_2, "fsl,qoriq-core-mux-2.0", core_mux_init);
Emil Medvea513b722015-01-21 04:03:31 -0600361CLK_OF_DECLARE(qoriq_pltfrm_pll_1, "fsl,qoriq-platform-pll-1.0", pltfrm_pll_init);
362CLK_OF_DECLARE(qoriq_pltfrm_pll_2, "fsl,qoriq-platform-pll-2.0", pltfrm_pll_init);