blob: 77c23a2c6d71eee255c1275f2839207a7cf01e56 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Beniamino Galvani101353c2014-06-21 16:22:06 +02002/*
3 * PWM driver for Rockchip SoCs
4 *
5 * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
Caesar Wangf6306292014-08-08 15:28:49 +08006 * Copyright (C) 2014 ROCKCHIP, Inc.
Beniamino Galvani101353c2014-06-21 16:22:06 +02007 */
8
9#include <linux/clk.h>
10#include <linux/io.h>
11#include <linux/module.h>
12#include <linux/of.h>
Caesar Wangf6306292014-08-08 15:28:49 +080013#include <linux/of_device.h>
Beniamino Galvani101353c2014-06-21 16:22:06 +020014#include <linux/platform_device.h>
15#include <linux/pwm.h>
16#include <linux/time.h>
17
Beniamino Galvani101353c2014-06-21 16:22:06 +020018#define PWM_CTRL_TIMER_EN (1 << 0)
19#define PWM_CTRL_OUTPUT_EN (1 << 3)
20
Caesar Wangf6306292014-08-08 15:28:49 +080021#define PWM_ENABLE (1 << 0)
22#define PWM_CONTINUOUS (1 << 1)
23#define PWM_DUTY_POSITIVE (1 << 3)
Doug Anderson72643542014-08-25 15:59:25 -070024#define PWM_DUTY_NEGATIVE (0 << 3)
Caesar Wangf6306292014-08-08 15:28:49 +080025#define PWM_INACTIVE_NEGATIVE (0 << 4)
Doug Anderson72643542014-08-25 15:59:25 -070026#define PWM_INACTIVE_POSITIVE (1 << 4)
David Wubc834d72017-08-08 23:38:32 +080027#define PWM_POLARITY_MASK (PWM_DUTY_POSITIVE | PWM_INACTIVE_POSITIVE)
Caesar Wangf6306292014-08-08 15:28:49 +080028#define PWM_OUTPUT_LEFT (0 << 5)
David Wu3f9a3632017-08-08 23:42:47 +080029#define PWM_LOCK_EN (1 << 6)
Caesar Wangf6306292014-08-08 15:28:49 +080030#define PWM_LP_DISABLE (0 << 8)
Beniamino Galvani101353c2014-06-21 16:22:06 +020031
32struct rockchip_pwm_chip {
33 struct pwm_chip chip;
34 struct clk *clk;
David Wu27922ff52017-08-08 23:38:29 +080035 struct clk *pclk;
Caesar Wangf6306292014-08-08 15:28:49 +080036 const struct rockchip_pwm_data *data;
Beniamino Galvani101353c2014-06-21 16:22:06 +020037 void __iomem *base;
38};
39
Caesar Wangf6306292014-08-08 15:28:49 +080040struct rockchip_pwm_regs {
41 unsigned long duty;
42 unsigned long period;
43 unsigned long cntr;
44 unsigned long ctrl;
45};
46
47struct rockchip_pwm_data {
48 struct rockchip_pwm_regs regs;
49 unsigned int prescaler;
Boris Brezillon2bf1c982016-06-14 11:13:14 +020050 bool supports_polarity;
David Wu3f9a3632017-08-08 23:42:47 +080051 bool supports_lock;
David Wu831b2792017-08-08 23:41:28 +080052 u32 enable_conf;
Caesar Wangf6306292014-08-08 15:28:49 +080053};
54
Beniamino Galvani101353c2014-06-21 16:22:06 +020055static inline struct rockchip_pwm_chip *to_rockchip_pwm_chip(struct pwm_chip *c)
56{
57 return container_of(c, struct rockchip_pwm_chip, chip);
58}
59
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020060static void rockchip_pwm_get_state(struct pwm_chip *chip,
61 struct pwm_device *pwm,
62 struct pwm_state *state)
63{
64 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
David Wu831b2792017-08-08 23:41:28 +080065 u32 enable_conf = pc->data->enable_conf;
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020066 unsigned long clk_rate;
67 u64 tmp;
David Wu831b2792017-08-08 23:41:28 +080068 u32 val;
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020069 int ret;
70
David Wu27922ff52017-08-08 23:38:29 +080071 ret = clk_enable(pc->pclk);
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020072 if (ret)
73 return;
74
75 clk_rate = clk_get_rate(pc->clk);
76
77 tmp = readl_relaxed(pc->base + pc->data->regs.period);
78 tmp *= pc->data->prescaler * NSEC_PER_SEC;
79 state->period = DIV_ROUND_CLOSEST_ULL(tmp, clk_rate);
80
81 tmp = readl_relaxed(pc->base + pc->data->regs.duty);
82 tmp *= pc->data->prescaler * NSEC_PER_SEC;
David Wu831b2792017-08-08 23:41:28 +080083 state->duty_cycle = DIV_ROUND_CLOSEST_ULL(tmp, clk_rate);
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020084
David Wu831b2792017-08-08 23:41:28 +080085 val = readl_relaxed(pc->base + pc->data->regs.ctrl);
Rasmus Villemoescad0f292019-09-19 11:17:27 +020086 state->enabled = (val & enable_conf) == enable_conf;
David Wu831b2792017-08-08 23:41:28 +080087
Uwe Kleine-Königba73deb2019-09-02 16:39:41 +020088 if (pc->data->supports_polarity && !(val & PWM_DUTY_POSITIVE))
89 state->polarity = PWM_POLARITY_INVERSED;
90 else
91 state->polarity = PWM_POLARITY_NORMAL;
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020092
David Wu27922ff52017-08-08 23:38:29 +080093 clk_disable(pc->pclk);
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020094}
95
David Wuf90df9c2017-08-08 23:38:30 +080096static void rockchip_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
Uwe Kleine-König71523d12019-08-24 17:37:07 +020097 const struct pwm_state *state)
Beniamino Galvani101353c2014-06-21 16:22:06 +020098{
99 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
100 unsigned long period, duty;
101 u64 clk_rate, div;
David Wubc834d72017-08-08 23:38:32 +0800102 u32 ctrl;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200103
104 clk_rate = clk_get_rate(pc->clk);
105
106 /*
107 * Since period and duty cycle registers have a width of 32
108 * bits, every possible input period can be obtained using the
109 * default prescaler value for all practical clock rate values.
110 */
David Wubc834d72017-08-08 23:38:32 +0800111 div = clk_rate * state->period;
Boris Brezillon12f9ce42016-06-14 11:13:11 +0200112 period = DIV_ROUND_CLOSEST_ULL(div,
113 pc->data->prescaler * NSEC_PER_SEC);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200114
David Wubc834d72017-08-08 23:38:32 +0800115 div = clk_rate * state->duty_cycle;
Boris Brezillon12f9ce42016-06-14 11:13:11 +0200116 duty = DIV_ROUND_CLOSEST_ULL(div, pc->data->prescaler * NSEC_PER_SEC);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200117
David Wu3f9a3632017-08-08 23:42:47 +0800118 /*
119 * Lock the period and duty of previous configuration, then
120 * change the duty and period, that would not be effective.
121 */
122 ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
123 if (pc->data->supports_lock) {
124 ctrl |= PWM_LOCK_EN;
125 writel_relaxed(ctrl, pc->base + pc->data->regs.ctrl);
126 }
127
Caesar Wangf6306292014-08-08 15:28:49 +0800128 writel(period, pc->base + pc->data->regs.period);
129 writel(duty, pc->base + pc->data->regs.duty);
David Wubc834d72017-08-08 23:38:32 +0800130
David Wubc834d72017-08-08 23:38:32 +0800131 if (pc->data->supports_polarity) {
132 ctrl &= ~PWM_POLARITY_MASK;
133 if (state->polarity == PWM_POLARITY_INVERSED)
134 ctrl |= PWM_DUTY_NEGATIVE | PWM_INACTIVE_POSITIVE;
135 else
136 ctrl |= PWM_DUTY_POSITIVE | PWM_INACTIVE_NEGATIVE;
137 }
David Wu3f9a3632017-08-08 23:42:47 +0800138
139 /*
140 * Unlock and set polarity at the same time,
141 * the configuration of duty, period and polarity
142 * would be effective together at next period.
143 */
144 if (pc->data->supports_lock)
145 ctrl &= ~PWM_LOCK_EN;
146
David Wubc834d72017-08-08 23:38:32 +0800147 writel(ctrl, pc->base + pc->data->regs.ctrl);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200148}
149
David Wua9001522017-03-01 19:10:55 +0800150static int rockchip_pwm_enable(struct pwm_chip *chip,
David Wubc834d72017-08-08 23:38:32 +0800151 struct pwm_device *pwm,
David Wu831b2792017-08-08 23:41:28 +0800152 bool enable)
David Wua9001522017-03-01 19:10:55 +0800153{
154 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
David Wu831b2792017-08-08 23:41:28 +0800155 u32 enable_conf = pc->data->enable_conf;
David Wua9001522017-03-01 19:10:55 +0800156 int ret;
David Wued054692017-08-08 23:38:31 +0800157 u32 val;
David Wua9001522017-03-01 19:10:55 +0800158
159 if (enable) {
160 ret = clk_enable(pc->clk);
161 if (ret)
162 return ret;
163 }
164
David Wued054692017-08-08 23:38:31 +0800165 val = readl_relaxed(pc->base + pc->data->regs.ctrl);
166
167 if (enable)
168 val |= enable_conf;
169 else
170 val &= ~enable_conf;
171
172 writel_relaxed(val, pc->base + pc->data->regs.ctrl);
David Wua9001522017-03-01 19:10:55 +0800173
174 if (!enable)
175 clk_disable(pc->clk);
176
177 return 0;
178}
179
David Wued054692017-08-08 23:38:31 +0800180static int rockchip_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
Uwe Kleine-König71523d12019-08-24 17:37:07 +0200181 const struct pwm_state *state)
David Wued054692017-08-08 23:38:31 +0800182{
183 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
David Wu831b2792017-08-08 23:41:28 +0800184 struct pwm_state curstate;
185 bool enabled;
186 int ret = 0;
David Wued054692017-08-08 23:38:31 +0800187
188 ret = clk_enable(pc->pclk);
189 if (ret)
190 return ret;
191
David Wu831b2792017-08-08 23:41:28 +0800192 pwm_get_state(pwm, &curstate);
193 enabled = curstate.enabled;
194
David Wu3f9a3632017-08-08 23:42:47 +0800195 if (state->polarity != curstate.polarity && enabled &&
196 !pc->data->supports_lock) {
David Wu831b2792017-08-08 23:41:28 +0800197 ret = rockchip_pwm_enable(chip, pwm, false);
198 if (ret)
199 goto out;
200 enabled = false;
201 }
202
203 rockchip_pwm_config(chip, pwm, state);
204 if (state->enabled != enabled) {
205 ret = rockchip_pwm_enable(chip, pwm, state->enabled);
206 if (ret)
207 goto out;
208 }
David Wued054692017-08-08 23:38:31 +0800209
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200210out:
David Wu27922ff52017-08-08 23:38:29 +0800211 clk_disable(pc->pclk);
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200212
213 return ret;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200214}
215
David Wu831b2792017-08-08 23:41:28 +0800216static const struct pwm_ops rockchip_pwm_ops = {
Boris Brezillon1ebb74c2016-06-14 11:13:12 +0200217 .get_state = rockchip_pwm_get_state,
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200218 .apply = rockchip_pwm_apply,
Doug Anderson72643542014-08-25 15:59:25 -0700219 .owner = THIS_MODULE,
220};
221
Caesar Wangf6306292014-08-08 15:28:49 +0800222static const struct rockchip_pwm_data pwm_data_v1 = {
223 .regs = {
224 .duty = 0x04,
225 .period = 0x08,
226 .cntr = 0x00,
227 .ctrl = 0x0c,
228 },
229 .prescaler = 2,
David Wu831b2792017-08-08 23:41:28 +0800230 .supports_polarity = false,
David Wu3f9a3632017-08-08 23:42:47 +0800231 .supports_lock = false,
David Wu831b2792017-08-08 23:41:28 +0800232 .enable_conf = PWM_CTRL_OUTPUT_EN | PWM_CTRL_TIMER_EN,
Caesar Wangf6306292014-08-08 15:28:49 +0800233};
234
235static const struct rockchip_pwm_data pwm_data_v2 = {
236 .regs = {
237 .duty = 0x08,
238 .period = 0x04,
239 .cntr = 0x00,
240 .ctrl = 0x0c,
241 },
242 .prescaler = 1,
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200243 .supports_polarity = true,
David Wu3f9a3632017-08-08 23:42:47 +0800244 .supports_lock = false,
David Wu831b2792017-08-08 23:41:28 +0800245 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
246 PWM_CONTINUOUS,
Caesar Wangf6306292014-08-08 15:28:49 +0800247};
248
249static const struct rockchip_pwm_data pwm_data_vop = {
250 .regs = {
251 .duty = 0x08,
252 .period = 0x04,
253 .cntr = 0x0c,
254 .ctrl = 0x00,
255 },
256 .prescaler = 1,
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200257 .supports_polarity = true,
David Wu3f9a3632017-08-08 23:42:47 +0800258 .supports_lock = false,
259 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
260 PWM_CONTINUOUS,
261};
262
263static const struct rockchip_pwm_data pwm_data_v3 = {
264 .regs = {
265 .duty = 0x08,
266 .period = 0x04,
267 .cntr = 0x00,
268 .ctrl = 0x0c,
269 },
270 .prescaler = 1,
271 .supports_polarity = true,
272 .supports_lock = true,
David Wu831b2792017-08-08 23:41:28 +0800273 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
274 PWM_CONTINUOUS,
Caesar Wangf6306292014-08-08 15:28:49 +0800275};
276
277static const struct of_device_id rockchip_pwm_dt_ids[] = {
278 { .compatible = "rockchip,rk2928-pwm", .data = &pwm_data_v1},
279 { .compatible = "rockchip,rk3288-pwm", .data = &pwm_data_v2},
280 { .compatible = "rockchip,vop-pwm", .data = &pwm_data_vop},
David Wu3f9a3632017-08-08 23:42:47 +0800281 { .compatible = "rockchip,rk3328-pwm", .data = &pwm_data_v3},
Caesar Wangf6306292014-08-08 15:28:49 +0800282 { /* sentinel */ }
283};
284MODULE_DEVICE_TABLE(of, rockchip_pwm_dt_ids);
285
Beniamino Galvani101353c2014-06-21 16:22:06 +0200286static int rockchip_pwm_probe(struct platform_device *pdev)
287{
Caesar Wangf6306292014-08-08 15:28:49 +0800288 const struct of_device_id *id;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200289 struct rockchip_pwm_chip *pc;
290 struct resource *r;
Simon South457f74a2020-09-19 15:33:06 -0400291 u32 enable_conf, ctrl;
David Wu27922ff52017-08-08 23:38:29 +0800292 int ret, count;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200293
Caesar Wangf6306292014-08-08 15:28:49 +0800294 id = of_match_device(rockchip_pwm_dt_ids, &pdev->dev);
295 if (!id)
296 return -EINVAL;
297
Beniamino Galvani101353c2014-06-21 16:22:06 +0200298 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
299 if (!pc)
300 return -ENOMEM;
301
302 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
303 pc->base = devm_ioremap_resource(&pdev->dev, r);
304 if (IS_ERR(pc->base))
305 return PTR_ERR(pc->base);
306
David Wu27922ff52017-08-08 23:38:29 +0800307 pc->clk = devm_clk_get(&pdev->dev, "pwm");
308 if (IS_ERR(pc->clk)) {
309 pc->clk = devm_clk_get(&pdev->dev, NULL);
Krzysztof Kozlowski836719f2020-08-26 16:47:44 +0200310 if (IS_ERR(pc->clk))
311 return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk),
312 "Can't get bus clk\n");
David Wu27922ff52017-08-08 23:38:29 +0800313 }
314
315 count = of_count_phandle_with_args(pdev->dev.of_node,
316 "clocks", "#clock-cells");
317 if (count == 2)
318 pc->pclk = devm_clk_get(&pdev->dev, "pclk");
319 else
320 pc->pclk = pc->clk;
321
322 if (IS_ERR(pc->pclk)) {
323 ret = PTR_ERR(pc->pclk);
324 if (ret != -EPROBE_DEFER)
325 dev_err(&pdev->dev, "Can't get APB clk: %d\n", ret);
326 return ret;
327 }
Beniamino Galvani101353c2014-06-21 16:22:06 +0200328
Boris Brezillon48cf9732016-06-14 11:13:13 +0200329 ret = clk_prepare_enable(pc->clk);
David Wu27922ff52017-08-08 23:38:29 +0800330 if (ret) {
331 dev_err(&pdev->dev, "Can't prepare enable bus clk: %d\n", ret);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200332 return ret;
David Wu27922ff52017-08-08 23:38:29 +0800333 }
334
335 ret = clk_prepare(pc->pclk);
336 if (ret) {
337 dev_err(&pdev->dev, "Can't prepare APB clk: %d\n", ret);
338 goto err_clk;
339 }
Beniamino Galvani101353c2014-06-21 16:22:06 +0200340
341 platform_set_drvdata(pdev, pc);
342
Caesar Wangf6306292014-08-08 15:28:49 +0800343 pc->data = id->data;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200344 pc->chip.dev = &pdev->dev;
David Wu831b2792017-08-08 23:41:28 +0800345 pc->chip.ops = &rockchip_pwm_ops;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200346 pc->chip.base = -1;
347 pc->chip.npwm = 1;
348
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200349 if (pc->data->supports_polarity) {
Doug Anderson72643542014-08-25 15:59:25 -0700350 pc->chip.of_xlate = of_pwm_xlate_with_flags;
351 pc->chip.of_pwm_n_cells = 3;
352 }
353
Beniamino Galvani101353c2014-06-21 16:22:06 +0200354 ret = pwmchip_add(&pc->chip);
355 if (ret < 0) {
356 clk_unprepare(pc->clk);
357 dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
David Wu27922ff52017-08-08 23:38:29 +0800358 goto err_pclk;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200359 }
360
Boris Brezillon48cf9732016-06-14 11:13:13 +0200361 /* Keep the PWM clk enabled if the PWM appears to be up and running. */
Simon South457f74a2020-09-19 15:33:06 -0400362 enable_conf = pc->data->enable_conf;
363 ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
364 if ((ctrl & enable_conf) != enable_conf)
Boris Brezillon48cf9732016-06-14 11:13:13 +0200365 clk_disable(pc->clk);
366
David Wu27922ff52017-08-08 23:38:29 +0800367 return 0;
368
369err_pclk:
370 clk_unprepare(pc->pclk);
371err_clk:
372 clk_disable_unprepare(pc->clk);
373
Beniamino Galvani101353c2014-06-21 16:22:06 +0200374 return ret;
375}
376
377static int rockchip_pwm_remove(struct platform_device *pdev)
378{
379 struct rockchip_pwm_chip *pc = platform_get_drvdata(pdev);
380
Boris Brezillon48cf9732016-06-14 11:13:13 +0200381 /*
382 * Disable the PWM clk before unpreparing it if the PWM device is still
383 * running. This should only happen when the last PWM user left it
384 * enabled, or when nobody requested a PWM that was previously enabled
385 * by the bootloader.
386 *
387 * FIXME: Maybe the core should disable all PWM devices in
388 * pwmchip_remove(). In this case we'd only have to call
389 * clk_unprepare() after pwmchip_remove().
390 *
391 */
392 if (pwm_is_enabled(pc->chip.pwms))
393 clk_disable(pc->clk);
394
David Wu27922ff52017-08-08 23:38:29 +0800395 clk_unprepare(pc->pclk);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200396 clk_unprepare(pc->clk);
397
398 return pwmchip_remove(&pc->chip);
399}
400
Beniamino Galvani101353c2014-06-21 16:22:06 +0200401static struct platform_driver rockchip_pwm_driver = {
402 .driver = {
403 .name = "rockchip-pwm",
404 .of_match_table = rockchip_pwm_dt_ids,
405 },
406 .probe = rockchip_pwm_probe,
407 .remove = rockchip_pwm_remove,
408};
409module_platform_driver(rockchip_pwm_driver);
410
411MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
412MODULE_DESCRIPTION("Rockchip SoC PWM driver");
413MODULE_LICENSE("GPL v2");