1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2016 Icenowy Zheng <icenowy@aosc.xyz>
6 #include <linux/clk-provider.h>
7 #include <linux/module.h>
9 #include <linux/platform_device.h>
11 #include "ccu_common.h"
12 #include "ccu_reset.h"
19 #include "ccu-sun8i-r.h"
21 static const struct clk_parent_data ar100_parents
[] = {
22 { .fw_name
= "losc" },
23 { .fw_name
= "hosc" },
24 { .fw_name
= "pll-periph" },
25 { .fw_name
= "iosc" },
28 static const struct ccu_mux_var_prediv ar100_predivs
[] = {
29 { .index
= 2, .shift
= 8, .width
= 5 },
32 static struct ccu_div ar100_clk
= {
33 .div
= _SUNXI_CCU_DIV_FLAGS(4, 2, CLK_DIVIDER_POWER_OF_TWO
),
39 .var_predivs
= ar100_predivs
,
40 .n_var_predivs
= ARRAY_SIZE(ar100_predivs
),
45 .features
= CCU_FEATURE_VARIABLE_PREDIV
,
46 .hw
.init
= CLK_HW_INIT_PARENTS_DATA("ar100",
53 static CLK_FIXED_FACTOR_HW(ahb0_clk
, "ahb0", &ar100_clk
.common
.hw
, 1, 1, 0);
55 static SUNXI_CCU_M(apb0_clk
, "apb0", "ahb0", 0x0c, 0, 2, 0);
58 * Define the parent as an array that can be reused to save space
59 * instead of having compound literals for each gate. Also have it
60 * non-const so we can change it on the A83T.
62 static const struct clk_hw
*apb0_gate_parent
[] = { &apb0_clk
.common
.hw
};
63 static SUNXI_CCU_GATE_HWS(apb0_pio_clk
, "apb0-pio",
64 apb0_gate_parent
, 0x28, BIT(0), 0);
65 static SUNXI_CCU_GATE_HWS(apb0_ir_clk
, "apb0-ir",
66 apb0_gate_parent
, 0x28, BIT(1), 0);
67 static SUNXI_CCU_GATE_HWS(apb0_timer_clk
, "apb0-timer",
68 apb0_gate_parent
, 0x28, BIT(2), 0);
69 static SUNXI_CCU_GATE_HWS(apb0_rsb_clk
, "apb0-rsb",
70 apb0_gate_parent
, 0x28, BIT(3), 0);
71 static SUNXI_CCU_GATE_HWS(apb0_uart_clk
, "apb0-uart",
72 apb0_gate_parent
, 0x28, BIT(4), 0);
73 static SUNXI_CCU_GATE_HWS(apb0_i2c_clk
, "apb0-i2c",
74 apb0_gate_parent
, 0x28, BIT(6), 0);
75 static SUNXI_CCU_GATE_HWS(apb0_twd_clk
, "apb0-twd",
76 apb0_gate_parent
, 0x28, BIT(7), 0);
78 static const char * const r_mod0_default_parents
[] = { "osc32k", "osc24M" };
79 static SUNXI_CCU_MP_WITH_MUX_GATE(ir_clk
, "ir",
80 r_mod0_default_parents
, 0x54,
87 static const struct clk_parent_data a83t_r_mod0_parents
[] = {
88 { .fw_name
= "iosc" },
89 { .fw_name
= "hosc" },
91 static const struct ccu_mux_fixed_prediv a83t_ir_predivs
[] = {
92 { .index
= 0, .div
= 16 },
94 static struct ccu_mp a83t_ir_clk
= {
97 .m
= _SUNXI_CCU_DIV(0, 4),
98 .p
= _SUNXI_CCU_DIV(16, 2),
103 .fixed_predivs
= a83t_ir_predivs
,
104 .n_predivs
= ARRAY_SIZE(a83t_ir_predivs
),
109 .features
= CCU_FEATURE_VARIABLE_PREDIV
,
110 .hw
.init
= CLK_HW_INIT_PARENTS_DATA("ir",
117 static struct ccu_common
*sun8i_r_ccu_clks
[] = {
120 &apb0_pio_clk
.common
,
122 &apb0_timer_clk
.common
,
123 &apb0_rsb_clk
.common
,
124 &apb0_uart_clk
.common
,
125 &apb0_i2c_clk
.common
,
126 &apb0_twd_clk
.common
,
131 static struct clk_hw_onecell_data sun8i_a83t_r_hw_clks
= {
133 [CLK_AR100
] = &ar100_clk
.common
.hw
,
134 [CLK_AHB0
] = &ahb0_clk
.hw
,
135 [CLK_APB0
] = &apb0_clk
.common
.hw
,
136 [CLK_APB0_PIO
] = &apb0_pio_clk
.common
.hw
,
137 [CLK_APB0_IR
] = &apb0_ir_clk
.common
.hw
,
138 [CLK_APB0_TIMER
] = &apb0_timer_clk
.common
.hw
,
139 [CLK_APB0_RSB
] = &apb0_rsb_clk
.common
.hw
,
140 [CLK_APB0_UART
] = &apb0_uart_clk
.common
.hw
,
141 [CLK_APB0_I2C
] = &apb0_i2c_clk
.common
.hw
,
142 [CLK_APB0_TWD
] = &apb0_twd_clk
.common
.hw
,
143 [CLK_IR
] = &a83t_ir_clk
.common
.hw
,
148 static struct clk_hw_onecell_data sun8i_h3_r_hw_clks
= {
150 [CLK_AR100
] = &ar100_clk
.common
.hw
,
151 [CLK_AHB0
] = &ahb0_clk
.hw
,
152 [CLK_APB0
] = &apb0_clk
.common
.hw
,
153 [CLK_APB0_PIO
] = &apb0_pio_clk
.common
.hw
,
154 [CLK_APB0_IR
] = &apb0_ir_clk
.common
.hw
,
155 [CLK_APB0_TIMER
] = &apb0_timer_clk
.common
.hw
,
156 [CLK_APB0_UART
] = &apb0_uart_clk
.common
.hw
,
157 [CLK_APB0_I2C
] = &apb0_i2c_clk
.common
.hw
,
158 [CLK_APB0_TWD
] = &apb0_twd_clk
.common
.hw
,
159 [CLK_IR
] = &ir_clk
.common
.hw
,
164 static struct clk_hw_onecell_data sun50i_a64_r_hw_clks
= {
166 [CLK_AR100
] = &ar100_clk
.common
.hw
,
167 [CLK_AHB0
] = &ahb0_clk
.hw
,
168 [CLK_APB0
] = &apb0_clk
.common
.hw
,
169 [CLK_APB0_PIO
] = &apb0_pio_clk
.common
.hw
,
170 [CLK_APB0_IR
] = &apb0_ir_clk
.common
.hw
,
171 [CLK_APB0_TIMER
] = &apb0_timer_clk
.common
.hw
,
172 [CLK_APB0_RSB
] = &apb0_rsb_clk
.common
.hw
,
173 [CLK_APB0_UART
] = &apb0_uart_clk
.common
.hw
,
174 [CLK_APB0_I2C
] = &apb0_i2c_clk
.common
.hw
,
175 [CLK_APB0_TWD
] = &apb0_twd_clk
.common
.hw
,
176 [CLK_IR
] = &ir_clk
.common
.hw
,
181 static const struct ccu_reset_map sun8i_a83t_r_ccu_resets
[] = {
182 [RST_APB0_IR
] = { 0xb0, BIT(1) },
183 [RST_APB0_TIMER
] = { 0xb0, BIT(2) },
184 [RST_APB0_RSB
] = { 0xb0, BIT(3) },
185 [RST_APB0_UART
] = { 0xb0, BIT(4) },
186 [RST_APB0_I2C
] = { 0xb0, BIT(6) },
189 static const struct ccu_reset_map sun8i_h3_r_ccu_resets
[] = {
190 [RST_APB0_IR
] = { 0xb0, BIT(1) },
191 [RST_APB0_TIMER
] = { 0xb0, BIT(2) },
192 [RST_APB0_UART
] = { 0xb0, BIT(4) },
193 [RST_APB0_I2C
] = { 0xb0, BIT(6) },
196 static const struct ccu_reset_map sun50i_a64_r_ccu_resets
[] = {
197 [RST_APB0_IR
] = { 0xb0, BIT(1) },
198 [RST_APB0_TIMER
] = { 0xb0, BIT(2) },
199 [RST_APB0_RSB
] = { 0xb0, BIT(3) },
200 [RST_APB0_UART
] = { 0xb0, BIT(4) },
201 [RST_APB0_I2C
] = { 0xb0, BIT(6) },
204 static const struct sunxi_ccu_desc sun8i_a83t_r_ccu_desc
= {
205 .ccu_clks
= sun8i_r_ccu_clks
,
206 .num_ccu_clks
= ARRAY_SIZE(sun8i_r_ccu_clks
),
208 .hw_clks
= &sun8i_a83t_r_hw_clks
,
210 .resets
= sun8i_a83t_r_ccu_resets
,
211 .num_resets
= ARRAY_SIZE(sun8i_a83t_r_ccu_resets
),
214 static const struct sunxi_ccu_desc sun8i_h3_r_ccu_desc
= {
215 .ccu_clks
= sun8i_r_ccu_clks
,
216 .num_ccu_clks
= ARRAY_SIZE(sun8i_r_ccu_clks
),
218 .hw_clks
= &sun8i_h3_r_hw_clks
,
220 .resets
= sun8i_h3_r_ccu_resets
,
221 .num_resets
= ARRAY_SIZE(sun8i_h3_r_ccu_resets
),
224 static const struct sunxi_ccu_desc sun50i_a64_r_ccu_desc
= {
225 .ccu_clks
= sun8i_r_ccu_clks
,
226 .num_ccu_clks
= ARRAY_SIZE(sun8i_r_ccu_clks
),
228 .hw_clks
= &sun50i_a64_r_hw_clks
,
230 .resets
= sun50i_a64_r_ccu_resets
,
231 .num_resets
= ARRAY_SIZE(sun50i_a64_r_ccu_resets
),
234 static int sun8i_r_ccu_probe(struct platform_device
*pdev
)
236 const struct sunxi_ccu_desc
*desc
;
239 desc
= of_device_get_match_data(&pdev
->dev
);
243 reg
= devm_platform_ioremap_resource(pdev
, 0);
247 return devm_sunxi_ccu_probe(&pdev
->dev
, reg
, desc
);
250 static const struct of_device_id sun8i_r_ccu_ids
[] = {
252 .compatible
= "allwinner,sun8i-a83t-r-ccu",
253 .data
= &sun8i_a83t_r_ccu_desc
,
256 .compatible
= "allwinner,sun8i-h3-r-ccu",
257 .data
= &sun8i_h3_r_ccu_desc
,
260 .compatible
= "allwinner,sun50i-a64-r-ccu",
261 .data
= &sun50i_a64_r_ccu_desc
,
265 MODULE_DEVICE_TABLE(of
, sun8i_r_ccu_ids
);
267 static struct platform_driver sun8i_r_ccu_driver
= {
268 .probe
= sun8i_r_ccu_probe
,
270 .name
= "sun8i-r-ccu",
271 .suppress_bind_attrs
= true,
272 .of_match_table
= sun8i_r_ccu_ids
,
275 module_platform_driver(sun8i_r_ccu_driver
);
277 MODULE_IMPORT_NS("SUNXI_CCU");
278 MODULE_DESCRIPTION("Support for Allwinner SoCs' PRCM CCUs");
279 MODULE_LICENSE("GPL");