2 * Copyright 2013 Emilio López
3 * Emilio López <emilio@elopez.com.ar>
5 * Copyright 2015 Maxime Ripard
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
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; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
19 #include <linux/clk-provider.h>
21 #include <linux/of_address.h>
22 #include <linux/slab.h>
24 #include <dt-bindings/clock/sun4i-a10-pll2.h>
26 #define SUN4I_PLL2_ENABLE 31
28 #define SUN4I_PLL2_PRE_DIV_SHIFT 0
29 #define SUN4I_PLL2_PRE_DIV_WIDTH 5
30 #define SUN4I_PLL2_PRE_DIV_MASK GENMASK(SUN4I_PLL2_PRE_DIV_WIDTH - 1, 0)
32 #define SUN4I_PLL2_N_SHIFT 8
33 #define SUN4I_PLL2_N_WIDTH 7
34 #define SUN4I_PLL2_N_MASK GENMASK(SUN4I_PLL2_N_WIDTH - 1, 0)
36 #define SUN4I_PLL2_POST_DIV_SHIFT 26
37 #define SUN4I_PLL2_POST_DIV_WIDTH 4
38 #define SUN4I_PLL2_POST_DIV_MASK GENMASK(SUN4I_PLL2_POST_DIV_WIDTH - 1, 0)
40 #define SUN4I_PLL2_POST_DIV_VALUE 4
42 #define SUN4I_PLL2_OUTPUTS 4
44 static DEFINE_SPINLOCK(sun4i_a10_pll2_lock
);
46 static void __init
sun4i_pll2_setup(struct device_node
*node
,
49 const char *clk_name
= node
->name
, *parent
;
50 struct clk
**clks
, *base_clk
, *prediv_clk
;
51 struct clk_onecell_data
*clk_data
;
52 struct clk_multiplier
*mult
;
53 struct clk_gate
*gate
;
57 reg
= of_io_request_and_map(node
, 0, of_node_full_name(node
));
61 clk_data
= kzalloc(sizeof(*clk_data
), GFP_KERNEL
);
65 clks
= kcalloc(SUN4I_PLL2_OUTPUTS
, sizeof(struct clk
*), GFP_KERNEL
);
69 parent
= of_clk_get_parent_name(node
, 0);
70 prediv_clk
= clk_register_divider(NULL
, "pll2-prediv",
72 SUN4I_PLL2_PRE_DIV_SHIFT
,
73 SUN4I_PLL2_PRE_DIV_WIDTH
,
74 CLK_DIVIDER_ONE_BASED
| CLK_DIVIDER_ALLOW_ZERO
,
75 &sun4i_a10_pll2_lock
);
77 pr_err("Couldn't register the prediv clock\n");
81 /* Setup the gate part of the PLL2 */
82 gate
= kzalloc(sizeof(struct clk_gate
), GFP_KERNEL
);
84 goto err_unregister_prediv
;
87 gate
->bit_idx
= SUN4I_PLL2_ENABLE
;
88 gate
->lock
= &sun4i_a10_pll2_lock
;
90 /* Setup the multiplier part of the PLL2 */
91 mult
= kzalloc(sizeof(struct clk_multiplier
), GFP_KERNEL
);
96 mult
->shift
= SUN4I_PLL2_N_SHIFT
;
98 mult
->flags
= CLK_MULTIPLIER_ZERO_BYPASS
|
99 CLK_MULTIPLIER_ROUND_CLOSEST
;
100 mult
->lock
= &sun4i_a10_pll2_lock
;
102 parent
= __clk_get_name(prediv_clk
);
103 base_clk
= clk_register_composite(NULL
, "pll2-base",
106 &mult
->hw
, &clk_multiplier_ops
,
107 &gate
->hw
, &clk_gate_ops
,
108 CLK_SET_RATE_PARENT
);
110 pr_err("Couldn't register the base multiplier clock\n");
111 goto err_free_multiplier
;
114 parent
= __clk_get_name(base_clk
);
119 * This is supposed to have a post divider, but we won't need
120 * to use it, we just need to initialise it to 4, and use a
124 val
&= ~(SUN4I_PLL2_POST_DIV_MASK
<< SUN4I_PLL2_POST_DIV_SHIFT
);
125 val
|= (SUN4I_PLL2_POST_DIV_VALUE
- post_div_offset
) << SUN4I_PLL2_POST_DIV_SHIFT
;
128 of_property_read_string_index(node
, "clock-output-names",
129 SUN4I_A10_PLL2_1X
, &clk_name
);
130 clks
[SUN4I_A10_PLL2_1X
] = clk_register_fixed_factor(NULL
, clk_name
,
134 SUN4I_PLL2_POST_DIV_VALUE
);
135 WARN_ON(IS_ERR(clks
[SUN4I_A10_PLL2_1X
]));
140 * This clock doesn't use the post divider, and really is just
141 * a fixed divider from the PLL2 base clock.
143 of_property_read_string_index(node
, "clock-output-names",
144 SUN4I_A10_PLL2_2X
, &clk_name
);
145 clks
[SUN4I_A10_PLL2_2X
] = clk_register_fixed_factor(NULL
, clk_name
,
149 WARN_ON(IS_ERR(clks
[SUN4I_A10_PLL2_2X
]));
152 of_property_read_string_index(node
, "clock-output-names",
153 SUN4I_A10_PLL2_4X
, &clk_name
);
154 clks
[SUN4I_A10_PLL2_4X
] = clk_register_fixed_factor(NULL
, clk_name
,
158 WARN_ON(IS_ERR(clks
[SUN4I_A10_PLL2_4X
]));
161 of_property_read_string_index(node
, "clock-output-names",
162 SUN4I_A10_PLL2_8X
, &clk_name
);
163 clks
[SUN4I_A10_PLL2_8X
] = clk_register_fixed_factor(NULL
, clk_name
,
167 WARN_ON(IS_ERR(clks
[SUN4I_A10_PLL2_8X
]));
169 clk_data
->clks
= clks
;
170 clk_data
->clk_num
= SUN4I_PLL2_OUTPUTS
;
171 of_clk_add_provider(node
, of_clk_src_onecell_get
, clk_data
);
179 err_unregister_prediv
:
180 clk_unregister_divider(prediv_clk
);
189 static void __init
sun4i_a10_pll2_setup(struct device_node
*node
)
191 sun4i_pll2_setup(node
, 0);
194 CLK_OF_DECLARE(sun4i_a10_pll2
, "allwinner,sun4i-a10-pll2-clk",
195 sun4i_a10_pll2_setup
);
197 static void __init
sun5i_a13_pll2_setup(struct device_node
*node
)
199 sun4i_pll2_setup(node
, 1);
202 CLK_OF_DECLARE(sun5i_a13_pll2
, "allwinner,sun5i-a13-pll2-clk",
203 sun5i_a13_pll2_setup
);