2 * Copyright 2013 Emilio López
4 * Emilio López <emilio@elopez.com.ar>
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-provider.h>
18 #include <linux/clkdev.h>
19 #include <linux/clk/sunxi.h>
21 #include <linux/of_address.h>
23 #include "clk-factors.h"
25 static DEFINE_SPINLOCK(clk_lock
);
28 * sun4i_osc_clk_setup() - Setup function for gatable oscillator
31 #define SUNXI_OSC24M_GATE 0
33 static void __init
sun4i_osc_clk_setup(struct device_node
*node
)
36 struct clk_fixed_rate
*fixed
;
37 struct clk_gate
*gate
;
38 const char *clk_name
= node
->name
;
41 /* allocate fixed-rate and gate clock structs */
42 fixed
= kzalloc(sizeof(struct clk_fixed_rate
), GFP_KERNEL
);
45 gate
= kzalloc(sizeof(struct clk_gate
), GFP_KERNEL
);
51 if (of_property_read_u32(node
, "clock-frequency", &rate
))
54 /* set up gate and fixed rate properties */
55 gate
->reg
= of_iomap(node
, 0);
56 gate
->bit_idx
= SUNXI_OSC24M_GATE
;
57 gate
->lock
= &clk_lock
;
58 fixed
->fixed_rate
= rate
;
60 clk
= clk_register_composite(NULL
, clk_name
,
63 &fixed
->hw
, &clk_fixed_rate_ops
,
64 &gate
->hw
, &clk_gate_ops
,
68 of_clk_add_provider(node
, of_clk_src_simple_get
, clk
);
69 clk_register_clkdev(clk
, clk_name
, NULL
);
72 CLK_OF_DECLARE(sun4i_osc
, "allwinner,sun4i-osc-clk", sun4i_osc_clk_setup
);
77 * sun4i_get_pll1_factors() - calculates n, k, m, p factors for PLL1
78 * PLL1 rate is calculated as follows
79 * rate = (parent_rate * n * (k + 1) >> p) / (m + 1);
80 * parent_rate is always 24Mhz
83 static void sun4i_get_pll1_factors(u32
*freq
, u32 parent_rate
,
84 u8
*n
, u8
*k
, u8
*m
, u8
*p
)
88 /* Normalize value to a 6M multiple */
89 div
= *freq
/ 6000000;
90 *freq
= 6000000 * div
;
92 /* we were called to round the frequency, we can now return */
96 /* m is always zero for pll1 */
99 /* k is 1 only on these cases */
100 if (*freq
>= 768000000 || *freq
== 42000000 || *freq
== 54000000)
105 /* p will be 3 for divs under 10 */
109 /* p will be 2 for divs between 10 - 20 and odd divs under 32 */
110 else if (div
< 20 || (div
< 32 && (div
& 1)))
113 /* p will be 1 for even divs under 32, divs under 40 and odd pairs
114 * of divs between 40-62 */
115 else if (div
< 40 || (div
< 64 && (div
& 2)))
118 /* any other entries have p = 0 */
122 /* calculate a suitable n based on k and p */
129 * sun6i_a31_get_pll1_factors() - calculates n, k and m factors for PLL1
130 * PLL1 rate is calculated as follows
131 * rate = parent_rate * (n + 1) * (k + 1) / (m + 1);
132 * parent_rate should always be 24MHz
134 static void sun6i_a31_get_pll1_factors(u32
*freq
, u32 parent_rate
,
135 u8
*n
, u8
*k
, u8
*m
, u8
*p
)
138 * We can operate only on MHz, this will make our life easier
141 u32 freq_mhz
= *freq
/ 1000000;
142 u32 parent_freq_mhz
= parent_rate
/ 1000000;
145 * Round down the frequency to the closest multiple of either
148 u32 round_freq_6
= round_down(freq_mhz
, 6);
149 u32 round_freq_16
= round_down(freq_mhz
, 16);
151 if (round_freq_6
> round_freq_16
)
152 freq_mhz
= round_freq_6
;
154 freq_mhz
= round_freq_16
;
156 *freq
= freq_mhz
* 1000000;
159 * If the factors pointer are null, we were just called to
160 * round down the frequency.
166 /* If the frequency is a multiple of 32 MHz, k is always 3 */
167 if (!(freq_mhz
% 32))
169 /* If the frequency is a multiple of 9 MHz, k is always 2 */
170 else if (!(freq_mhz
% 9))
172 /* If the frequency is a multiple of 8 MHz, k is always 1 */
173 else if (!(freq_mhz
% 8))
175 /* Otherwise, we don't use the k factor */
180 * If the frequency is a multiple of 2 but not a multiple of
181 * 3, m is 3. This is the first time we use 6 here, yet we
182 * will use it on several other places.
183 * We use this number because it's the lowest frequency we can
184 * generate (with n = 0, k = 0, m = 3), so every other frequency
185 * somehow relates to this frequency.
187 if ((freq_mhz
% 6) == 2 || (freq_mhz
% 6) == 4)
190 * If the frequency is a multiple of 6MHz, but the factor is
193 else if ((freq_mhz
/ 6) & 1)
195 /* Otherwise, we end up with m = 1 */
199 /* Calculate n thanks to the above factors we already got */
200 *n
= freq_mhz
* (*m
+ 1) / ((*k
+ 1) * parent_freq_mhz
) - 1;
203 * If n end up being outbound, and that we can still decrease
206 if ((*n
+ 1) > 31 && (*m
+ 1) > 1) {
207 *n
= (*n
+ 1) / 2 - 1;
208 *m
= (*m
+ 1) / 2 - 1;
213 * sun4i_get_apb1_factors() - calculates m, p factors for APB1
214 * APB1 rate is calculated as follows
215 * rate = (parent_rate >> p) / (m + 1);
218 static void sun4i_get_apb1_factors(u32
*freq
, u32 parent_rate
,
219 u8
*n
, u8
*k
, u8
*m
, u8
*p
)
223 if (parent_rate
< *freq
)
226 parent_rate
= (parent_rate
+ (*freq
- 1)) / *freq
;
229 if (parent_rate
> 32)
232 if (parent_rate
<= 4)
234 else if (parent_rate
<= 8)
236 else if (parent_rate
<= 16)
241 calcm
= (parent_rate
>> calcp
) - 1;
243 *freq
= (parent_rate
>> calcp
) / (calcm
+ 1);
245 /* we were called to round the frequency, we can now return */
256 * sunxi_factors_clk_setup() - Setup function for factor clocks
259 struct factors_data
{
260 struct clk_factors_config
*table
;
261 void (*getter
) (u32
*rate
, u32 parent_rate
, u8
*n
, u8
*k
, u8
*m
, u8
*p
);
264 static struct clk_factors_config sun4i_pll1_config
= {
275 static struct clk_factors_config sun6i_a31_pll1_config
= {
284 static struct clk_factors_config sun4i_apb1_config
= {
291 static const struct factors_data sun4i_pll1_data __initconst
= {
292 .table
= &sun4i_pll1_config
,
293 .getter
= sun4i_get_pll1_factors
,
296 static const struct factors_data sun6i_a31_pll1_data __initconst
= {
297 .table
= &sun6i_a31_pll1_config
,
298 .getter
= sun6i_a31_get_pll1_factors
,
301 static const struct factors_data sun4i_apb1_data __initconst
= {
302 .table
= &sun4i_apb1_config
,
303 .getter
= sun4i_get_apb1_factors
,
306 static void __init
sunxi_factors_clk_setup(struct device_node
*node
,
307 struct factors_data
*data
)
310 const char *clk_name
= node
->name
;
314 reg
= of_iomap(node
, 0);
316 parent
= of_clk_get_parent_name(node
, 0);
318 clk
= clk_register_factors(NULL
, clk_name
, parent
, 0, reg
,
319 data
->table
, data
->getter
, &clk_lock
);
322 of_clk_add_provider(node
, of_clk_src_simple_get
, clk
);
323 clk_register_clkdev(clk
, clk_name
, NULL
);
330 * sunxi_mux_clk_setup() - Setup function for muxes
333 #define SUNXI_MUX_GATE_WIDTH 2
339 static const struct mux_data sun4i_cpu_mux_data __initconst
= {
343 static const struct mux_data sun6i_a31_ahb1_mux_data __initconst
= {
347 static const struct mux_data sun4i_apb1_mux_data __initconst
= {
351 static void __init
sunxi_mux_clk_setup(struct device_node
*node
,
352 struct mux_data
*data
)
355 const char *clk_name
= node
->name
;
356 const char *parents
[5];
360 reg
= of_iomap(node
, 0);
362 while (i
< 5 && (parents
[i
] = of_clk_get_parent_name(node
, i
)) != NULL
)
365 clk
= clk_register_mux(NULL
, clk_name
, parents
, i
,
366 CLK_SET_RATE_NO_REPARENT
, reg
,
367 data
->shift
, SUNXI_MUX_GATE_WIDTH
,
371 of_clk_add_provider(node
, of_clk_src_simple_get
, clk
);
372 clk_register_clkdev(clk
, clk_name
, NULL
);
379 * sunxi_divider_clk_setup() - Setup function for simple divider clocks
388 static const struct div_data sun4i_axi_data __initconst
= {
394 static const struct div_data sun4i_ahb_data __initconst
= {
400 static const struct div_data sun4i_apb0_data __initconst
= {
406 static const struct div_data sun6i_a31_apb2_div_data __initconst
= {
412 static void __init
sunxi_divider_clk_setup(struct device_node
*node
,
413 struct div_data
*data
)
416 const char *clk_name
= node
->name
;
417 const char *clk_parent
;
420 reg
= of_iomap(node
, 0);
422 clk_parent
= of_clk_get_parent_name(node
, 0);
424 clk
= clk_register_divider(NULL
, clk_name
, clk_parent
, 0,
425 reg
, data
->shift
, data
->width
,
426 data
->pow
? CLK_DIVIDER_POWER_OF_TWO
: 0,
429 of_clk_add_provider(node
, of_clk_src_simple_get
, clk
);
430 clk_register_clkdev(clk
, clk_name
, NULL
);
437 * sunxi_gates_clk_setup() - Setup function for leaf gates on clocks
440 #define SUNXI_GATES_MAX_SIZE 64
443 DECLARE_BITMAP(mask
, SUNXI_GATES_MAX_SIZE
);
446 static const struct gates_data sun4i_axi_gates_data __initconst
= {
450 static const struct gates_data sun4i_ahb_gates_data __initconst
= {
451 .mask
= {0x7F77FFF, 0x14FB3F},
454 static const struct gates_data sun5i_a10s_ahb_gates_data __initconst
= {
455 .mask
= {0x147667e7, 0x185915},
458 static const struct gates_data sun5i_a13_ahb_gates_data __initconst
= {
459 .mask
= {0x107067e7, 0x185111},
462 static const struct gates_data sun6i_a31_ahb1_gates_data __initconst
= {
463 .mask
= {0xEDFE7F62, 0x794F931},
466 static const struct gates_data sun7i_a20_ahb_gates_data __initconst
= {
467 .mask
= { 0x12f77fff, 0x16ff3f },
470 static const struct gates_data sun4i_apb0_gates_data __initconst
= {
474 static const struct gates_data sun5i_a10s_apb0_gates_data __initconst
= {
478 static const struct gates_data sun5i_a13_apb0_gates_data __initconst
= {
482 static const struct gates_data sun7i_a20_apb0_gates_data __initconst
= {
486 static const struct gates_data sun4i_apb1_gates_data __initconst
= {
490 static const struct gates_data sun5i_a10s_apb1_gates_data __initconst
= {
494 static const struct gates_data sun5i_a13_apb1_gates_data __initconst
= {
498 static const struct gates_data sun6i_a31_apb1_gates_data __initconst
= {
502 static const struct gates_data sun6i_a31_apb2_gates_data __initconst
= {
506 static const struct gates_data sun7i_a20_apb1_gates_data __initconst
= {
507 .mask
= { 0xff80ff },
510 static void __init
sunxi_gates_clk_setup(struct device_node
*node
,
511 struct gates_data
*data
)
513 struct clk_onecell_data
*clk_data
;
514 const char *clk_parent
;
515 const char *clk_name
;
522 reg
= of_iomap(node
, 0);
524 clk_parent
= of_clk_get_parent_name(node
, 0);
526 /* Worst-case size approximation and memory allocation */
527 qty
= find_last_bit(data
->mask
, SUNXI_GATES_MAX_SIZE
);
528 clk_data
= kmalloc(sizeof(struct clk_onecell_data
), GFP_KERNEL
);
531 clk_data
->clks
= kzalloc((qty
+1) * sizeof(struct clk
*), GFP_KERNEL
);
532 if (!clk_data
->clks
) {
537 for_each_set_bit(i
, data
->mask
, SUNXI_GATES_MAX_SIZE
) {
538 of_property_read_string_index(node
, "clock-output-names",
541 /* No driver claims this clock, but it should remain gated */
542 ignore
= !strcmp("ahb_sdram", clk_name
) ? CLK_IGNORE_UNUSED
: 0;
544 clk_data
->clks
[i
] = clk_register_gate(NULL
, clk_name
,
546 reg
+ 4 * (i
/32), i
% 32,
548 WARN_ON(IS_ERR(clk_data
->clks
[i
]));
553 /* Adjust to the real max */
554 clk_data
->clk_num
= i
;
556 of_clk_add_provider(node
, of_clk_src_onecell_get
, clk_data
);
559 /* Matches for factors clocks */
560 static const struct of_device_id clk_factors_match
[] __initconst
= {
561 {.compatible
= "allwinner,sun4i-pll1-clk", .data
= &sun4i_pll1_data
,},
562 {.compatible
= "allwinner,sun6i-a31-pll1-clk", .data
= &sun6i_a31_pll1_data
,},
563 {.compatible
= "allwinner,sun4i-apb1-clk", .data
= &sun4i_apb1_data
,},
567 /* Matches for divider clocks */
568 static const struct of_device_id clk_div_match
[] __initconst
= {
569 {.compatible
= "allwinner,sun4i-axi-clk", .data
= &sun4i_axi_data
,},
570 {.compatible
= "allwinner,sun4i-ahb-clk", .data
= &sun4i_ahb_data
,},
571 {.compatible
= "allwinner,sun4i-apb0-clk", .data
= &sun4i_apb0_data
,},
572 {.compatible
= "allwinner,sun6i-a31-apb2-div-clk", .data
= &sun6i_a31_apb2_div_data
,},
576 /* Matches for mux clocks */
577 static const struct of_device_id clk_mux_match
[] __initconst
= {
578 {.compatible
= "allwinner,sun4i-cpu-clk", .data
= &sun4i_cpu_mux_data
,},
579 {.compatible
= "allwinner,sun4i-apb1-mux-clk", .data
= &sun4i_apb1_mux_data
,},
580 {.compatible
= "allwinner,sun6i-a31-ahb1-mux-clk", .data
= &sun6i_a31_ahb1_mux_data
,},
584 /* Matches for gate clocks */
585 static const struct of_device_id clk_gates_match
[] __initconst
= {
586 {.compatible
= "allwinner,sun4i-axi-gates-clk", .data
= &sun4i_axi_gates_data
,},
587 {.compatible
= "allwinner,sun4i-ahb-gates-clk", .data
= &sun4i_ahb_gates_data
,},
588 {.compatible
= "allwinner,sun5i-a10s-ahb-gates-clk", .data
= &sun5i_a10s_ahb_gates_data
,},
589 {.compatible
= "allwinner,sun5i-a13-ahb-gates-clk", .data
= &sun5i_a13_ahb_gates_data
,},
590 {.compatible
= "allwinner,sun6i-a31-ahb1-gates-clk", .data
= &sun6i_a31_ahb1_gates_data
,},
591 {.compatible
= "allwinner,sun7i-a20-ahb-gates-clk", .data
= &sun7i_a20_ahb_gates_data
,},
592 {.compatible
= "allwinner,sun4i-apb0-gates-clk", .data
= &sun4i_apb0_gates_data
,},
593 {.compatible
= "allwinner,sun5i-a10s-apb0-gates-clk", .data
= &sun5i_a10s_apb0_gates_data
,},
594 {.compatible
= "allwinner,sun5i-a13-apb0-gates-clk", .data
= &sun5i_a13_apb0_gates_data
,},
595 {.compatible
= "allwinner,sun7i-a20-apb0-gates-clk", .data
= &sun7i_a20_apb0_gates_data
,},
596 {.compatible
= "allwinner,sun4i-apb1-gates-clk", .data
= &sun4i_apb1_gates_data
,},
597 {.compatible
= "allwinner,sun5i-a10s-apb1-gates-clk", .data
= &sun5i_a10s_apb1_gates_data
,},
598 {.compatible
= "allwinner,sun5i-a13-apb1-gates-clk", .data
= &sun5i_a13_apb1_gates_data
,},
599 {.compatible
= "allwinner,sun6i-a31-apb1-gates-clk", .data
= &sun6i_a31_apb1_gates_data
,},
600 {.compatible
= "allwinner,sun7i-a20-apb1-gates-clk", .data
= &sun7i_a20_apb1_gates_data
,},
601 {.compatible
= "allwinner,sun6i-a31-apb2-gates-clk", .data
= &sun6i_a31_apb2_gates_data
,},
605 static void __init
of_sunxi_table_clock_setup(const struct of_device_id
*clk_match
,
608 struct device_node
*np
;
609 const struct div_data
*data
;
610 const struct of_device_id
*match
;
611 void (*setup_function
)(struct device_node
*, const void *) = function
;
613 for_each_matching_node(np
, clk_match
) {
614 match
= of_match_node(clk_match
, np
);
616 setup_function(np
, data
);
620 void __init
sunxi_init_clocks(void)
622 /* Register all the simple and basic clocks on DT */
625 /* Register factor clocks */
626 of_sunxi_table_clock_setup(clk_factors_match
, sunxi_factors_clk_setup
);
628 /* Register divider clocks */
629 of_sunxi_table_clock_setup(clk_div_match
, sunxi_divider_clk_setup
);
631 /* Register mux clocks */
632 of_sunxi_table_clock_setup(clk_mux_match
, sunxi_mux_clk_setup
);
634 /* Register gate clocks */
635 of_sunxi_table_clock_setup(clk_gates_match
, sunxi_gates_clk_setup
);