blob: f3647b3171522ace7cfb1e82acbd650e68e5431d [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
Simon South11be9382021-01-19 11:12:09 -050075 ret = clk_enable(pc->clk);
76 if (ret)
77 return;
78
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020079 clk_rate = clk_get_rate(pc->clk);
80
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);
84
85 tmp = readl_relaxed(pc->base + pc->data->regs.duty);
86 tmp *= pc->data->prescaler * NSEC_PER_SEC;
David Wu831b2792017-08-08 23:41:28 +080087 state->duty_cycle = DIV_ROUND_CLOSEST_ULL(tmp, clk_rate);
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020088
David Wu831b2792017-08-08 23:41:28 +080089 val = readl_relaxed(pc->base + pc->data->regs.ctrl);
Rasmus Villemoescad0f292019-09-19 11:17:27 +020090 state->enabled = (val & enable_conf) == enable_conf;
David Wu831b2792017-08-08 23:41:28 +080091
Uwe Kleine-Königba73deb2019-09-02 16:39:41 +020092 if (pc->data->supports_polarity && !(val & PWM_DUTY_POSITIVE))
93 state->polarity = PWM_POLARITY_INVERSED;
94 else
95 state->polarity = PWM_POLARITY_NORMAL;
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020096
Simon South11be9382021-01-19 11:12:09 -050097 clk_disable(pc->clk);
David Wu27922ff52017-08-08 23:38:29 +080098 clk_disable(pc->pclk);
Boris Brezillon1ebb74c2016-06-14 11:13:12 +020099}
100
David Wuf90df9c2017-08-08 23:38:30 +0800101static void rockchip_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
Uwe Kleine-König71523d12019-08-24 17:37:07 +0200102 const struct pwm_state *state)
Beniamino Galvani101353c2014-06-21 16:22:06 +0200103{
104 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
105 unsigned long period, duty;
106 u64 clk_rate, div;
David Wubc834d72017-08-08 23:38:32 +0800107 u32 ctrl;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200108
109 clk_rate = clk_get_rate(pc->clk);
110
111 /*
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.
115 */
David Wubc834d72017-08-08 23:38:32 +0800116 div = clk_rate * state->period;
Boris Brezillon12f9ce42016-06-14 11:13:11 +0200117 period = DIV_ROUND_CLOSEST_ULL(div,
118 pc->data->prescaler * NSEC_PER_SEC);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200119
David Wubc834d72017-08-08 23:38:32 +0800120 div = clk_rate * state->duty_cycle;
Boris Brezillon12f9ce42016-06-14 11:13:11 +0200121 duty = DIV_ROUND_CLOSEST_ULL(div, pc->data->prescaler * NSEC_PER_SEC);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200122
David Wu3f9a3632017-08-08 23:42:47 +0800123 /*
124 * Lock the period and duty of previous configuration, then
125 * change the duty and period, that would not be effective.
126 */
127 ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
128 if (pc->data->supports_lock) {
129 ctrl |= PWM_LOCK_EN;
130 writel_relaxed(ctrl, pc->base + pc->data->regs.ctrl);
131 }
132
Caesar Wangf6306292014-08-08 15:28:49 +0800133 writel(period, pc->base + pc->data->regs.period);
134 writel(duty, pc->base + pc->data->regs.duty);
David Wubc834d72017-08-08 23:38:32 +0800135
David Wubc834d72017-08-08 23:38:32 +0800136 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;
140 else
141 ctrl |= PWM_DUTY_POSITIVE | PWM_INACTIVE_NEGATIVE;
142 }
David Wu3f9a3632017-08-08 23:42:47 +0800143
144 /*
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.
148 */
149 if (pc->data->supports_lock)
150 ctrl &= ~PWM_LOCK_EN;
151
David Wubc834d72017-08-08 23:38:32 +0800152 writel(ctrl, pc->base + pc->data->regs.ctrl);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200153}
154
David Wua9001522017-03-01 19:10:55 +0800155static int rockchip_pwm_enable(struct pwm_chip *chip,
David Wubc834d72017-08-08 23:38:32 +0800156 struct pwm_device *pwm,
David Wu831b2792017-08-08 23:41:28 +0800157 bool enable)
David Wua9001522017-03-01 19:10:55 +0800158{
159 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
David Wu831b2792017-08-08 23:41:28 +0800160 u32 enable_conf = pc->data->enable_conf;
David Wua9001522017-03-01 19:10:55 +0800161 int ret;
David Wued054692017-08-08 23:38:31 +0800162 u32 val;
David Wua9001522017-03-01 19:10:55 +0800163
164 if (enable) {
165 ret = clk_enable(pc->clk);
166 if (ret)
167 return ret;
168 }
169
David Wued054692017-08-08 23:38:31 +0800170 val = readl_relaxed(pc->base + pc->data->regs.ctrl);
171
172 if (enable)
173 val |= enable_conf;
174 else
175 val &= ~enable_conf;
176
177 writel_relaxed(val, pc->base + pc->data->regs.ctrl);
David Wua9001522017-03-01 19:10:55 +0800178
179 if (!enable)
180 clk_disable(pc->clk);
181
182 return 0;
183}
184
David Wued054692017-08-08 23:38:31 +0800185static int rockchip_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
Uwe Kleine-König71523d12019-08-24 17:37:07 +0200186 const struct pwm_state *state)
David Wued054692017-08-08 23:38:31 +0800187{
188 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
David Wu831b2792017-08-08 23:41:28 +0800189 struct pwm_state curstate;
190 bool enabled;
191 int ret = 0;
David Wued054692017-08-08 23:38:31 +0800192
193 ret = clk_enable(pc->pclk);
194 if (ret)
195 return ret;
196
Simon South11be9382021-01-19 11:12:09 -0500197 ret = clk_enable(pc->clk);
198 if (ret)
199 return ret;
200
David Wu831b2792017-08-08 23:41:28 +0800201 pwm_get_state(pwm, &curstate);
202 enabled = curstate.enabled;
203
David Wu3f9a3632017-08-08 23:42:47 +0800204 if (state->polarity != curstate.polarity && enabled &&
205 !pc->data->supports_lock) {
David Wu831b2792017-08-08 23:41:28 +0800206 ret = rockchip_pwm_enable(chip, pwm, false);
207 if (ret)
208 goto out;
209 enabled = false;
210 }
211
212 rockchip_pwm_config(chip, pwm, state);
213 if (state->enabled != enabled) {
214 ret = rockchip_pwm_enable(chip, pwm, state->enabled);
215 if (ret)
216 goto out;
217 }
David Wued054692017-08-08 23:38:31 +0800218
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200219out:
Simon South11be9382021-01-19 11:12:09 -0500220 clk_disable(pc->clk);
David Wu27922ff52017-08-08 23:38:29 +0800221 clk_disable(pc->pclk);
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200222
223 return ret;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200224}
225
David Wu831b2792017-08-08 23:41:28 +0800226static const struct pwm_ops rockchip_pwm_ops = {
Boris Brezillon1ebb74c2016-06-14 11:13:12 +0200227 .get_state = rockchip_pwm_get_state,
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200228 .apply = rockchip_pwm_apply,
Doug Anderson72643542014-08-25 15:59:25 -0700229 .owner = THIS_MODULE,
230};
231
Caesar Wangf6306292014-08-08 15:28:49 +0800232static const struct rockchip_pwm_data pwm_data_v1 = {
233 .regs = {
234 .duty = 0x04,
235 .period = 0x08,
236 .cntr = 0x00,
237 .ctrl = 0x0c,
238 },
239 .prescaler = 2,
David Wu831b2792017-08-08 23:41:28 +0800240 .supports_polarity = false,
David Wu3f9a3632017-08-08 23:42:47 +0800241 .supports_lock = false,
David Wu831b2792017-08-08 23:41:28 +0800242 .enable_conf = PWM_CTRL_OUTPUT_EN | PWM_CTRL_TIMER_EN,
Caesar Wangf6306292014-08-08 15:28:49 +0800243};
244
245static const struct rockchip_pwm_data pwm_data_v2 = {
246 .regs = {
247 .duty = 0x08,
248 .period = 0x04,
249 .cntr = 0x00,
250 .ctrl = 0x0c,
251 },
252 .prescaler = 1,
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200253 .supports_polarity = true,
David Wu3f9a3632017-08-08 23:42:47 +0800254 .supports_lock = false,
David Wu831b2792017-08-08 23:41:28 +0800255 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
256 PWM_CONTINUOUS,
Caesar Wangf6306292014-08-08 15:28:49 +0800257};
258
259static const struct rockchip_pwm_data pwm_data_vop = {
260 .regs = {
261 .duty = 0x08,
262 .period = 0x04,
263 .cntr = 0x0c,
264 .ctrl = 0x00,
265 },
266 .prescaler = 1,
Boris Brezillon2bf1c982016-06-14 11:13:14 +0200267 .supports_polarity = true,
David Wu3f9a3632017-08-08 23:42:47 +0800268 .supports_lock = false,
269 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
270 PWM_CONTINUOUS,
271};
272
273static const struct rockchip_pwm_data pwm_data_v3 = {
274 .regs = {
275 .duty = 0x08,
276 .period = 0x04,
277 .cntr = 0x00,
278 .ctrl = 0x0c,
279 },
280 .prescaler = 1,
281 .supports_polarity = true,
282 .supports_lock = true,
David Wu831b2792017-08-08 23:41:28 +0800283 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
284 PWM_CONTINUOUS,
Caesar Wangf6306292014-08-08 15:28:49 +0800285};
286
287static 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},
David Wu3f9a3632017-08-08 23:42:47 +0800291 { .compatible = "rockchip,rk3328-pwm", .data = &pwm_data_v3},
Caesar Wangf6306292014-08-08 15:28:49 +0800292 { /* sentinel */ }
293};
294MODULE_DEVICE_TABLE(of, rockchip_pwm_dt_ids);
295
Beniamino Galvani101353c2014-06-21 16:22:06 +0200296static int rockchip_pwm_probe(struct platform_device *pdev)
297{
Caesar Wangf6306292014-08-08 15:28:49 +0800298 const struct of_device_id *id;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200299 struct rockchip_pwm_chip *pc;
Simon South457f74a2020-09-19 15:33:06 -0400300 u32 enable_conf, ctrl;
Simon Southd21ba5d2021-01-19 11:12:08 -0500301 bool enabled;
David Wu27922ff52017-08-08 23:38:29 +0800302 int ret, count;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200303
Caesar Wangf6306292014-08-08 15:28:49 +0800304 id = of_match_device(rockchip_pwm_dt_ids, &pdev->dev);
305 if (!id)
306 return -EINVAL;
307
Beniamino Galvani101353c2014-06-21 16:22:06 +0200308 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
309 if (!pc)
310 return -ENOMEM;
311
Yangtao Li5119ee92019-12-29 08:05:53 +0000312 pc->base = devm_platform_ioremap_resource(pdev, 0);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200313 if (IS_ERR(pc->base))
314 return PTR_ERR(pc->base);
315
David Wu27922ff52017-08-08 23:38:29 +0800316 pc->clk = devm_clk_get(&pdev->dev, "pwm");
317 if (IS_ERR(pc->clk)) {
318 pc->clk = devm_clk_get(&pdev->dev, NULL);
Krzysztof Kozlowski836719f2020-08-26 16:47:44 +0200319 if (IS_ERR(pc->clk))
320 return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk),
Simon Southc9f809d2021-01-19 11:12:07 -0500321 "Can't get PWM clk\n");
David Wu27922ff52017-08-08 23:38:29 +0800322 }
323
324 count = of_count_phandle_with_args(pdev->dev.of_node,
325 "clocks", "#clock-cells");
326 if (count == 2)
327 pc->pclk = devm_clk_get(&pdev->dev, "pclk");
328 else
329 pc->pclk = pc->clk;
330
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);
335 return ret;
336 }
Beniamino Galvani101353c2014-06-21 16:22:06 +0200337
Boris Brezillon48cf9732016-06-14 11:13:13 +0200338 ret = clk_prepare_enable(pc->clk);
David Wu27922ff52017-08-08 23:38:29 +0800339 if (ret) {
Simon Southc9f809d2021-01-19 11:12:07 -0500340 dev_err(&pdev->dev, "Can't prepare enable PWM clk: %d\n", ret);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200341 return ret;
David Wu27922ff52017-08-08 23:38:29 +0800342 }
343
Simon Southd9b657a2021-01-19 11:12:05 -0500344 ret = clk_prepare_enable(pc->pclk);
David Wu27922ff52017-08-08 23:38:29 +0800345 if (ret) {
Simon Southd9b657a2021-01-19 11:12:05 -0500346 dev_err(&pdev->dev, "Can't prepare enable APB clk: %d\n", ret);
David Wu27922ff52017-08-08 23:38:29 +0800347 goto err_clk;
348 }
Beniamino Galvani101353c2014-06-21 16:22:06 +0200349
350 platform_set_drvdata(pdev, pc);
351
Caesar Wangf6306292014-08-08 15:28:49 +0800352 pc->data = id->data;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200353 pc->chip.dev = &pdev->dev;
David Wu831b2792017-08-08 23:41:28 +0800354 pc->chip.ops = &rockchip_pwm_ops;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200355 pc->chip.npwm = 1;
356
Simon Southd21ba5d2021-01-19 11:12:08 -0500357 enable_conf = pc->data->enable_conf;
358 ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
359 enabled = (ctrl & enable_conf) == enable_conf;
360
Beniamino Galvani101353c2014-06-21 16:22:06 +0200361 ret = pwmchip_add(&pc->chip);
362 if (ret < 0) {
Beniamino Galvani101353c2014-06-21 16:22:06 +0200363 dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
David Wu27922ff52017-08-08 23:38:29 +0800364 goto err_pclk;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200365 }
366
Boris Brezillon48cf9732016-06-14 11:13:13 +0200367 /* Keep the PWM clk enabled if the PWM appears to be up and running. */
Simon Southd21ba5d2021-01-19 11:12:08 -0500368 if (!enabled)
Boris Brezillon48cf9732016-06-14 11:13:13 +0200369 clk_disable(pc->clk);
370
Simon Southd9b657a2021-01-19 11:12:05 -0500371 clk_disable(pc->pclk);
372
David Wu27922ff52017-08-08 23:38:29 +0800373 return 0;
374
375err_pclk:
Simon Southd9b657a2021-01-19 11:12:05 -0500376 clk_disable_unprepare(pc->pclk);
David Wu27922ff52017-08-08 23:38:29 +0800377err_clk:
378 clk_disable_unprepare(pc->clk);
379
Beniamino Galvani101353c2014-06-21 16:22:06 +0200380 return ret;
381}
382
383static int rockchip_pwm_remove(struct platform_device *pdev)
384{
385 struct rockchip_pwm_chip *pc = platform_get_drvdata(pdev);
386
Uwe Kleine-König84ea61f2021-07-07 18:27:55 +0200387 pwmchip_remove(&pc->chip);
388
David Wu27922ff52017-08-08 23:38:29 +0800389 clk_unprepare(pc->pclk);
Beniamino Galvani101353c2014-06-21 16:22:06 +0200390 clk_unprepare(pc->clk);
391
Uwe Kleine-König84ea61f2021-07-07 18:27:55 +0200392 return 0;
Beniamino Galvani101353c2014-06-21 16:22:06 +0200393}
394
Beniamino Galvani101353c2014-06-21 16:22:06 +0200395static struct platform_driver rockchip_pwm_driver = {
396 .driver = {
397 .name = "rockchip-pwm",
398 .of_match_table = rockchip_pwm_dt_ids,
399 },
400 .probe = rockchip_pwm_probe,
401 .remove = rockchip_pwm_remove,
402};
403module_platform_driver(rockchip_pwm_driver);
404
405MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
406MODULE_DESCRIPTION("Rockchip SoC PWM driver");
407MODULE_LICENSE("GPL v2");