2 * Driver for Allwinner sun4i Pulse Width Modulation Controller
4 * Copyright (C) 2014 Alexandre Belloni <alexandre.belloni@free-electrons.com>
6 * Licensed under GPLv2.
9 #include <linux/bitops.h>
10 #include <linux/clk.h>
11 #include <linux/err.h>
13 #include <linux/module.h>
15 #include <linux/of_device.h>
16 #include <linux/platform_device.h>
17 #include <linux/pwm.h>
18 #include <linux/slab.h>
19 #include <linux/spinlock.h>
20 #include <linux/time.h>
22 #define PWM_CTRL_REG 0x0
24 #define PWM_CH_PRD_BASE 0x4
25 #define PWM_CH_PRD_OFFSET 0x4
26 #define PWM_CH_PRD(ch) (PWM_CH_PRD_BASE + PWM_CH_PRD_OFFSET * (ch))
28 #define PWMCH_OFFSET 15
29 #define PWM_PRESCAL_MASK GENMASK(3, 0)
30 #define PWM_PRESCAL_OFF 0
32 #define PWM_ACT_STATE BIT(5)
33 #define PWM_CLK_GATING BIT(6)
34 #define PWM_MODE BIT(7)
35 #define PWM_PULSE BIT(8)
36 #define PWM_BYPASS BIT(9)
38 #define PWM_RDY_BASE 28
39 #define PWM_RDY_OFFSET 1
40 #define PWM_RDY(ch) BIT(PWM_RDY_BASE + PWM_RDY_OFFSET * (ch))
42 #define PWM_PRD(prd) (((prd) - 1) << 16)
43 #define PWM_PRD_MASK GENMASK(15, 0)
45 #define PWM_DTY_MASK GENMASK(15, 0)
47 #define BIT_CH(bit, chan) ((bit) << ((chan) * PWMCH_OFFSET))
49 static const u32 prescaler_table
[] = {
65 0, /* Actually 1 but tested separately */
68 struct sun4i_pwm_data
{
69 bool has_prescaler_bypass
;
73 struct sun4i_pwm_chip
{
78 const struct sun4i_pwm_data
*data
;
81 static inline struct sun4i_pwm_chip
*to_sun4i_pwm_chip(struct pwm_chip
*chip
)
83 return container_of(chip
, struct sun4i_pwm_chip
, chip
);
86 static inline u32
sun4i_pwm_readl(struct sun4i_pwm_chip
*chip
,
89 return readl(chip
->base
+ offset
);
92 static inline void sun4i_pwm_writel(struct sun4i_pwm_chip
*chip
,
93 u32 val
, unsigned long offset
)
95 writel(val
, chip
->base
+ offset
);
98 static int sun4i_pwm_config(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
99 int duty_ns
, int period_ns
)
101 struct sun4i_pwm_chip
*sun4i_pwm
= to_sun4i_pwm_chip(chip
);
102 u32 prd
, dty
, val
, clk_gate
;
103 u64 clk_rate
, div
= 0;
104 unsigned int prescaler
= 0;
107 clk_rate
= clk_get_rate(sun4i_pwm
->clk
);
109 if (sun4i_pwm
->data
->has_prescaler_bypass
) {
110 /* First, test without any prescaler when available */
111 prescaler
= PWM_PRESCAL_MASK
;
113 * When not using any prescaler, the clock period in nanoseconds
114 * is not an integer so round it half up instead of
115 * truncating to get less surprising values.
117 div
= clk_rate
* period_ns
+ NSEC_PER_SEC
/2;
118 do_div(div
, NSEC_PER_SEC
);
119 if (div
- 1 > PWM_PRD_MASK
)
123 if (prescaler
== 0) {
124 /* Go up from the first divider */
125 for (prescaler
= 0; prescaler
< PWM_PRESCAL_MASK
; prescaler
++) {
126 if (!prescaler_table
[prescaler
])
129 do_div(div
, prescaler_table
[prescaler
]);
130 div
= div
* period_ns
;
131 do_div(div
, NSEC_PER_SEC
);
132 if (div
- 1 <= PWM_PRD_MASK
)
136 if (div
- 1 > PWM_PRD_MASK
) {
137 dev_err(chip
->dev
, "period exceeds the maximum value\n");
144 do_div(div
, period_ns
);
147 err
= clk_prepare_enable(sun4i_pwm
->clk
);
149 dev_err(chip
->dev
, "failed to enable PWM clock\n");
153 spin_lock(&sun4i_pwm
->ctrl_lock
);
154 val
= sun4i_pwm_readl(sun4i_pwm
, PWM_CTRL_REG
);
156 if (sun4i_pwm
->data
->has_rdy
&& (val
& PWM_RDY(pwm
->hwpwm
))) {
157 spin_unlock(&sun4i_pwm
->ctrl_lock
);
158 clk_disable_unprepare(sun4i_pwm
->clk
);
162 clk_gate
= val
& BIT_CH(PWM_CLK_GATING
, pwm
->hwpwm
);
164 val
&= ~BIT_CH(PWM_CLK_GATING
, pwm
->hwpwm
);
165 sun4i_pwm_writel(sun4i_pwm
, val
, PWM_CTRL_REG
);
168 val
= sun4i_pwm_readl(sun4i_pwm
, PWM_CTRL_REG
);
169 val
&= ~BIT_CH(PWM_PRESCAL_MASK
, pwm
->hwpwm
);
170 val
|= BIT_CH(prescaler
, pwm
->hwpwm
);
171 sun4i_pwm_writel(sun4i_pwm
, val
, PWM_CTRL_REG
);
173 val
= (dty
& PWM_DTY_MASK
) | PWM_PRD(prd
);
174 sun4i_pwm_writel(sun4i_pwm
, val
, PWM_CH_PRD(pwm
->hwpwm
));
177 val
= sun4i_pwm_readl(sun4i_pwm
, PWM_CTRL_REG
);
179 sun4i_pwm_writel(sun4i_pwm
, val
, PWM_CTRL_REG
);
182 spin_unlock(&sun4i_pwm
->ctrl_lock
);
183 clk_disable_unprepare(sun4i_pwm
->clk
);
188 static int sun4i_pwm_set_polarity(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
189 enum pwm_polarity polarity
)
191 struct sun4i_pwm_chip
*sun4i_pwm
= to_sun4i_pwm_chip(chip
);
195 ret
= clk_prepare_enable(sun4i_pwm
->clk
);
197 dev_err(chip
->dev
, "failed to enable PWM clock\n");
201 spin_lock(&sun4i_pwm
->ctrl_lock
);
202 val
= sun4i_pwm_readl(sun4i_pwm
, PWM_CTRL_REG
);
204 if (polarity
!= PWM_POLARITY_NORMAL
)
205 val
&= ~BIT_CH(PWM_ACT_STATE
, pwm
->hwpwm
);
207 val
|= BIT_CH(PWM_ACT_STATE
, pwm
->hwpwm
);
209 sun4i_pwm_writel(sun4i_pwm
, val
, PWM_CTRL_REG
);
211 spin_unlock(&sun4i_pwm
->ctrl_lock
);
212 clk_disable_unprepare(sun4i_pwm
->clk
);
217 static int sun4i_pwm_enable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
219 struct sun4i_pwm_chip
*sun4i_pwm
= to_sun4i_pwm_chip(chip
);
223 ret
= clk_prepare_enable(sun4i_pwm
->clk
);
225 dev_err(chip
->dev
, "failed to enable PWM clock\n");
229 spin_lock(&sun4i_pwm
->ctrl_lock
);
230 val
= sun4i_pwm_readl(sun4i_pwm
, PWM_CTRL_REG
);
231 val
|= BIT_CH(PWM_EN
, pwm
->hwpwm
);
232 val
|= BIT_CH(PWM_CLK_GATING
, pwm
->hwpwm
);
233 sun4i_pwm_writel(sun4i_pwm
, val
, PWM_CTRL_REG
);
234 spin_unlock(&sun4i_pwm
->ctrl_lock
);
239 static void sun4i_pwm_disable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
241 struct sun4i_pwm_chip
*sun4i_pwm
= to_sun4i_pwm_chip(chip
);
244 spin_lock(&sun4i_pwm
->ctrl_lock
);
245 val
= sun4i_pwm_readl(sun4i_pwm
, PWM_CTRL_REG
);
246 val
&= ~BIT_CH(PWM_EN
, pwm
->hwpwm
);
247 val
&= ~BIT_CH(PWM_CLK_GATING
, pwm
->hwpwm
);
248 sun4i_pwm_writel(sun4i_pwm
, val
, PWM_CTRL_REG
);
249 spin_unlock(&sun4i_pwm
->ctrl_lock
);
251 clk_disable_unprepare(sun4i_pwm
->clk
);
254 static const struct pwm_ops sun4i_pwm_ops
= {
255 .config
= sun4i_pwm_config
,
256 .set_polarity
= sun4i_pwm_set_polarity
,
257 .enable
= sun4i_pwm_enable
,
258 .disable
= sun4i_pwm_disable
,
259 .owner
= THIS_MODULE
,
262 static const struct sun4i_pwm_data sun4i_pwm_data_a10
= {
263 .has_prescaler_bypass
= false,
267 static const struct sun4i_pwm_data sun4i_pwm_data_a20
= {
268 .has_prescaler_bypass
= true,
272 static const struct of_device_id sun4i_pwm_dt_ids
[] = {
274 .compatible
= "allwinner,sun4i-a10-pwm",
275 .data
= &sun4i_pwm_data_a10
,
277 .compatible
= "allwinner,sun7i-a20-pwm",
278 .data
= &sun4i_pwm_data_a20
,
283 MODULE_DEVICE_TABLE(of
, sun4i_pwm_dt_ids
);
285 static int sun4i_pwm_probe(struct platform_device
*pdev
)
287 struct sun4i_pwm_chip
*pwm
;
288 struct resource
*res
;
291 const struct of_device_id
*match
;
293 match
= of_match_device(sun4i_pwm_dt_ids
, &pdev
->dev
);
295 pwm
= devm_kzalloc(&pdev
->dev
, sizeof(*pwm
), GFP_KERNEL
);
299 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
300 pwm
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
301 if (IS_ERR(pwm
->base
))
302 return PTR_ERR(pwm
->base
);
304 pwm
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
305 if (IS_ERR(pwm
->clk
))
306 return PTR_ERR(pwm
->clk
);
308 pwm
->chip
.dev
= &pdev
->dev
;
309 pwm
->chip
.ops
= &sun4i_pwm_ops
;
312 pwm
->chip
.can_sleep
= true;
313 pwm
->chip
.of_xlate
= of_pwm_xlate_with_flags
;
314 pwm
->chip
.of_pwm_n_cells
= 3;
315 pwm
->data
= match
->data
;
317 spin_lock_init(&pwm
->ctrl_lock
);
319 ret
= pwmchip_add(&pwm
->chip
);
321 dev_err(&pdev
->dev
, "failed to add PWM chip: %d\n", ret
);
325 platform_set_drvdata(pdev
, pwm
);
327 ret
= clk_prepare_enable(pwm
->clk
);
329 dev_err(&pdev
->dev
, "failed to enable PWM clock\n");
333 val
= sun4i_pwm_readl(pwm
, PWM_CTRL_REG
);
334 for (i
= 0; i
< pwm
->chip
.npwm
; i
++)
335 if (!(val
& BIT_CH(PWM_ACT_STATE
, i
)))
336 pwm
->chip
.pwms
[i
].polarity
= PWM_POLARITY_INVERSED
;
337 clk_disable_unprepare(pwm
->clk
);
342 pwmchip_remove(&pwm
->chip
);
346 static int sun4i_pwm_remove(struct platform_device
*pdev
)
348 struct sun4i_pwm_chip
*pwm
= platform_get_drvdata(pdev
);
350 return pwmchip_remove(&pwm
->chip
);
353 static struct platform_driver sun4i_pwm_driver
= {
356 .of_match_table
= sun4i_pwm_dt_ids
,
358 .probe
= sun4i_pwm_probe
,
359 .remove
= sun4i_pwm_remove
,
361 module_platform_driver(sun4i_pwm_driver
);
363 MODULE_ALIAS("platform:sun4i-pwm");
364 MODULE_AUTHOR("Alexandre Belloni <alexandre.belloni@free-electrons.com>");
365 MODULE_DESCRIPTION("Allwinner sun4i PWM driver");
366 MODULE_LICENSE("GPL v2");