1 // SPDX-License-Identifier: GPL-2.0-only
3 * PWM driver for Rockchip SoCs
5 * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
6 * Copyright (C) 2014 ROCKCHIP, Inc.
11 #include <linux/module.h>
13 #include <linux/of_device.h>
14 #include <linux/platform_device.h>
15 #include <linux/pwm.h>
16 #include <linux/time.h>
18 #define PWM_CTRL_TIMER_EN (1 << 0)
19 #define PWM_CTRL_OUTPUT_EN (1 << 3)
21 #define PWM_ENABLE (1 << 0)
22 #define PWM_CONTINUOUS (1 << 1)
23 #define PWM_DUTY_POSITIVE (1 << 3)
24 #define PWM_DUTY_NEGATIVE (0 << 3)
25 #define PWM_INACTIVE_NEGATIVE (0 << 4)
26 #define PWM_INACTIVE_POSITIVE (1 << 4)
27 #define PWM_POLARITY_MASK (PWM_DUTY_POSITIVE | PWM_INACTIVE_POSITIVE)
28 #define PWM_OUTPUT_LEFT (0 << 5)
29 #define PWM_LOCK_EN (1 << 6)
30 #define PWM_LP_DISABLE (0 << 8)
32 struct rockchip_pwm_chip {
36 const struct rockchip_pwm_data *data;
40 struct rockchip_pwm_regs {
47 struct rockchip_pwm_data {
48 struct rockchip_pwm_regs regs;
49 unsigned int prescaler;
50 bool supports_polarity;
55 static inline struct rockchip_pwm_chip *to_rockchip_pwm_chip(struct pwm_chip *c)
57 return container_of(c, struct rockchip_pwm_chip, chip);
60 static void rockchip_pwm_get_state(struct pwm_chip *chip,
61 struct pwm_device *pwm,
62 struct pwm_state *state)
64 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
65 u32 enable_conf = pc->data->enable_conf;
66 unsigned long clk_rate;
71 ret = clk_enable(pc->pclk);
75 ret = clk_enable(pc->clk);
79 clk_rate = clk_get_rate(pc->clk);
81 tmp = readl_relaxed(pc->base + pc->data->regs.period);
82 tmp *= pc->data->prescaler * NSEC_PER_SEC;
83 state->period = DIV_ROUND_CLOSEST_ULL(tmp, clk_rate);
85 tmp = readl_relaxed(pc->base + pc->data->regs.duty);
86 tmp *= pc->data->prescaler * NSEC_PER_SEC;
87 state->duty_cycle = DIV_ROUND_CLOSEST_ULL(tmp, clk_rate);
89 val = readl_relaxed(pc->base + pc->data->regs.ctrl);
90 state->enabled = (val & enable_conf) == enable_conf;
92 if (pc->data->supports_polarity && !(val & PWM_DUTY_POSITIVE))
93 state->polarity = PWM_POLARITY_INVERSED;
95 state->polarity = PWM_POLARITY_NORMAL;
98 clk_disable(pc->pclk);
101 static void rockchip_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
102 const struct pwm_state *state)
104 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
105 unsigned long period, duty;
109 clk_rate = clk_get_rate(pc->clk);
112 * Since period and duty cycle registers have a width of 32
113 * bits, every possible input period can be obtained using the
114 * default prescaler value for all practical clock rate values.
116 div = clk_rate * state->period;
117 period = DIV_ROUND_CLOSEST_ULL(div,
118 pc->data->prescaler * NSEC_PER_SEC);
120 div = clk_rate * state->duty_cycle;
121 duty = DIV_ROUND_CLOSEST_ULL(div, pc->data->prescaler * NSEC_PER_SEC);
124 * Lock the period and duty of previous configuration, then
125 * change the duty and period, that would not be effective.
127 ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
128 if (pc->data->supports_lock) {
130 writel_relaxed(ctrl, pc->base + pc->data->regs.ctrl);
133 writel(period, pc->base + pc->data->regs.period);
134 writel(duty, pc->base + pc->data->regs.duty);
136 if (pc->data->supports_polarity) {
137 ctrl &= ~PWM_POLARITY_MASK;
138 if (state->polarity == PWM_POLARITY_INVERSED)
139 ctrl |= PWM_DUTY_NEGATIVE | PWM_INACTIVE_POSITIVE;
141 ctrl |= PWM_DUTY_POSITIVE | PWM_INACTIVE_NEGATIVE;
145 * Unlock and set polarity at the same time,
146 * the configuration of duty, period and polarity
147 * would be effective together at next period.
149 if (pc->data->supports_lock)
150 ctrl &= ~PWM_LOCK_EN;
152 writel(ctrl, pc->base + pc->data->regs.ctrl);
155 static int rockchip_pwm_enable(struct pwm_chip *chip,
156 struct pwm_device *pwm,
159 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
160 u32 enable_conf = pc->data->enable_conf;
165 ret = clk_enable(pc->clk);
170 val = readl_relaxed(pc->base + pc->data->regs.ctrl);
177 writel_relaxed(val, pc->base + pc->data->regs.ctrl);
180 clk_disable(pc->clk);
185 static int rockchip_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
186 const struct pwm_state *state)
188 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
189 struct pwm_state curstate;
193 ret = clk_enable(pc->pclk);
197 ret = clk_enable(pc->clk);
201 pwm_get_state(pwm, &curstate);
202 enabled = curstate.enabled;
204 if (state->polarity != curstate.polarity && enabled &&
205 !pc->data->supports_lock) {
206 ret = rockchip_pwm_enable(chip, pwm, false);
212 rockchip_pwm_config(chip, pwm, state);
213 if (state->enabled != enabled) {
214 ret = rockchip_pwm_enable(chip, pwm, state->enabled);
220 clk_disable(pc->clk);
221 clk_disable(pc->pclk);
226 static const struct pwm_ops rockchip_pwm_ops = {
227 .get_state = rockchip_pwm_get_state,
228 .apply = rockchip_pwm_apply,
229 .owner = THIS_MODULE,
232 static const struct rockchip_pwm_data pwm_data_v1 = {
240 .supports_polarity = false,
241 .supports_lock = false,
242 .enable_conf = PWM_CTRL_OUTPUT_EN | PWM_CTRL_TIMER_EN,
245 static const struct rockchip_pwm_data pwm_data_v2 = {
253 .supports_polarity = true,
254 .supports_lock = false,
255 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
259 static const struct rockchip_pwm_data pwm_data_vop = {
267 .supports_polarity = true,
268 .supports_lock = false,
269 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
273 static const struct rockchip_pwm_data pwm_data_v3 = {
281 .supports_polarity = true,
282 .supports_lock = true,
283 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
287 static const struct of_device_id rockchip_pwm_dt_ids[] = {
288 { .compatible = "rockchip,rk2928-pwm", .data = &pwm_data_v1},
289 { .compatible = "rockchip,rk3288-pwm", .data = &pwm_data_v2},
290 { .compatible = "rockchip,vop-pwm", .data = &pwm_data_vop},
291 { .compatible = "rockchip,rk3328-pwm", .data = &pwm_data_v3},
294 MODULE_DEVICE_TABLE(of, rockchip_pwm_dt_ids);
296 static int rockchip_pwm_probe(struct platform_device *pdev)
298 const struct of_device_id *id;
299 struct rockchip_pwm_chip *pc;
300 u32 enable_conf, ctrl;
304 id = of_match_device(rockchip_pwm_dt_ids, &pdev->dev);
308 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
312 pc->base = devm_platform_ioremap_resource(pdev, 0);
313 if (IS_ERR(pc->base))
314 return PTR_ERR(pc->base);
316 pc->clk = devm_clk_get(&pdev->dev, "pwm");
317 if (IS_ERR(pc->clk)) {
318 pc->clk = devm_clk_get(&pdev->dev, NULL);
320 return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk),
321 "Can't get PWM clk\n");
324 count = of_count_phandle_with_args(pdev->dev.of_node,
325 "clocks", "#clock-cells");
327 pc->pclk = devm_clk_get(&pdev->dev, "pclk");
331 if (IS_ERR(pc->pclk)) {
332 ret = PTR_ERR(pc->pclk);
333 if (ret != -EPROBE_DEFER)
334 dev_err(&pdev->dev, "Can't get APB clk: %d\n", ret);
338 ret = clk_prepare_enable(pc->clk);
340 dev_err(&pdev->dev, "Can't prepare enable PWM clk: %d\n", ret);
344 ret = clk_prepare_enable(pc->pclk);
346 dev_err(&pdev->dev, "Can't prepare enable APB clk: %d\n", ret);
350 platform_set_drvdata(pdev, pc);
353 pc->chip.dev = &pdev->dev;
354 pc->chip.ops = &rockchip_pwm_ops;
357 enable_conf = pc->data->enable_conf;
358 ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
359 enabled = (ctrl & enable_conf) == enable_conf;
361 ret = pwmchip_add(&pc->chip);
363 dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
367 /* Keep the PWM clk enabled if the PWM appears to be up and running. */
369 clk_disable(pc->clk);
371 clk_disable(pc->pclk);
376 clk_disable_unprepare(pc->pclk);
378 clk_disable_unprepare(pc->clk);
383 static int rockchip_pwm_remove(struct platform_device *pdev)
385 struct rockchip_pwm_chip *pc = platform_get_drvdata(pdev);
387 pwmchip_remove(&pc->chip);
389 clk_unprepare(pc->pclk);
390 clk_unprepare(pc->clk);
395 static struct platform_driver rockchip_pwm_driver = {
397 .name = "rockchip-pwm",
398 .of_match_table = rockchip_pwm_dt_ids,
400 .probe = rockchip_pwm_probe,
401 .remove = rockchip_pwm_remove,
403 module_platform_driver(rockchip_pwm_driver);
405 MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
406 MODULE_DESCRIPTION("Rockchip SoC PWM driver");
407 MODULE_LICENSE("GPL v2");