Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * PWM driver for Rockchip SoCs
4 *
5 * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
6 * Copyright (C) 2014 ROCKCHIP, Inc.
7 */
8
9#include <linux/clk.h>
10#include <linux/io.h>
11#include <linux/module.h>
12#include <linux/of.h>
13#include <linux/platform_device.h>
14#include <linux/property.h>
15#include <linux/pwm.h>
16#include <linux/time.h>
17
18#define PWM_CTRL_TIMER_EN (1 << 0)
19#define PWM_CTRL_OUTPUT_EN (1 << 3)
20
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)
31
32struct rockchip_pwm_chip {
33 struct pwm_chip chip;
34 struct clk *clk;
35 struct clk *pclk;
36 const struct rockchip_pwm_data *data;
37 void __iomem *base;
38};
39
40struct 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;
50 bool supports_polarity;
51 bool supports_lock;
52 u32 enable_conf;
53};
54
55static inline struct rockchip_pwm_chip *to_rockchip_pwm_chip(struct pwm_chip *chip)
56{
57 return container_of(chip, struct rockchip_pwm_chip, chip);
58}
59
60static int 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);
65 u32 enable_conf = pc->data->enable_conf;
66 unsigned long clk_rate;
67 u64 tmp;
68 u32 val;
69 int ret;
70
71 ret = clk_enable(pc->pclk);
72 if (ret)
73 return ret;
74
75 ret = clk_enable(pc->clk);
76 if (ret)
77 return ret;
78
79 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;
87 state->duty_cycle = DIV_ROUND_CLOSEST_ULL(tmp, clk_rate);
88
89 val = readl_relaxed(pc->base + pc->data->regs.ctrl);
90 state->enabled = (val & enable_conf) == enable_conf;
91
92 if (pc->data->supports_polarity && !(val & PWM_DUTY_POSITIVE))
93 state->polarity = PWM_POLARITY_INVERSED;
94 else
95 state->polarity = PWM_POLARITY_NORMAL;
96
97 clk_disable(pc->clk);
98 clk_disable(pc->pclk);
99
100 return 0;
101}
102
103static void rockchip_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
104 const struct pwm_state *state)
105{
106 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
107 unsigned long period, duty;
108 u64 clk_rate, div;
109 u32 ctrl;
110
111 clk_rate = clk_get_rate(pc->clk);
112
113 /*
114 * Since period and duty cycle registers have a width of 32
115 * bits, every possible input period can be obtained using the
116 * default prescaler value for all practical clock rate values.
117 */
118 div = clk_rate * state->period;
119 period = DIV_ROUND_CLOSEST_ULL(div,
120 pc->data->prescaler * NSEC_PER_SEC);
121
122 div = clk_rate * state->duty_cycle;
123 duty = DIV_ROUND_CLOSEST_ULL(div, pc->data->prescaler * NSEC_PER_SEC);
124
125 /*
126 * Lock the period and duty of previous configuration, then
127 * change the duty and period, that would not be effective.
128 */
129 ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
130 if (pc->data->supports_lock) {
131 ctrl |= PWM_LOCK_EN;
132 writel_relaxed(ctrl, pc->base + pc->data->regs.ctrl);
133 }
134
135 writel(period, pc->base + pc->data->regs.period);
136 writel(duty, pc->base + pc->data->regs.duty);
137
138 if (pc->data->supports_polarity) {
139 ctrl &= ~PWM_POLARITY_MASK;
140 if (state->polarity == PWM_POLARITY_INVERSED)
141 ctrl |= PWM_DUTY_NEGATIVE | PWM_INACTIVE_POSITIVE;
142 else
143 ctrl |= PWM_DUTY_POSITIVE | PWM_INACTIVE_NEGATIVE;
144 }
145
146 /*
147 * Unlock and set polarity at the same time,
148 * the configuration of duty, period and polarity
149 * would be effective together at next period.
150 */
151 if (pc->data->supports_lock)
152 ctrl &= ~PWM_LOCK_EN;
153
154 writel(ctrl, pc->base + pc->data->regs.ctrl);
155}
156
157static int rockchip_pwm_enable(struct pwm_chip *chip,
158 struct pwm_device *pwm,
159 bool enable)
160{
161 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
162 u32 enable_conf = pc->data->enable_conf;
163 int ret;
164 u32 val;
165
166 if (enable) {
167 ret = clk_enable(pc->clk);
168 if (ret)
169 return ret;
170 }
171
172 val = readl_relaxed(pc->base + pc->data->regs.ctrl);
173
174 if (enable)
175 val |= enable_conf;
176 else
177 val &= ~enable_conf;
178
179 writel_relaxed(val, pc->base + pc->data->regs.ctrl);
180
181 if (!enable)
182 clk_disable(pc->clk);
183
184 return 0;
185}
186
187static int rockchip_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
188 const struct pwm_state *state)
189{
190 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
191 struct pwm_state curstate;
192 bool enabled;
193 int ret = 0;
194
195 ret = clk_enable(pc->pclk);
196 if (ret)
197 return ret;
198
199 ret = clk_enable(pc->clk);
200 if (ret)
201 return ret;
202
203 pwm_get_state(pwm, &curstate);
204 enabled = curstate.enabled;
205
206 if (state->polarity != curstate.polarity && enabled &&
207 !pc->data->supports_lock) {
208 ret = rockchip_pwm_enable(chip, pwm, false);
209 if (ret)
210 goto out;
211 enabled = false;
212 }
213
214 rockchip_pwm_config(chip, pwm, state);
215 if (state->enabled != enabled) {
216 ret = rockchip_pwm_enable(chip, pwm, state->enabled);
217 if (ret)
218 goto out;
219 }
220
221out:
222 clk_disable(pc->clk);
223 clk_disable(pc->pclk);
224
225 return ret;
226}
227
228static const struct pwm_ops rockchip_pwm_ops = {
229 .get_state = rockchip_pwm_get_state,
230 .apply = rockchip_pwm_apply,
231};
232
233static const struct rockchip_pwm_data pwm_data_v1 = {
234 .regs = {
235 .duty = 0x04,
236 .period = 0x08,
237 .cntr = 0x00,
238 .ctrl = 0x0c,
239 },
240 .prescaler = 2,
241 .supports_polarity = false,
242 .supports_lock = false,
243 .enable_conf = PWM_CTRL_OUTPUT_EN | PWM_CTRL_TIMER_EN,
244};
245
246static const struct rockchip_pwm_data pwm_data_v2 = {
247 .regs = {
248 .duty = 0x08,
249 .period = 0x04,
250 .cntr = 0x00,
251 .ctrl = 0x0c,
252 },
253 .prescaler = 1,
254 .supports_polarity = true,
255 .supports_lock = false,
256 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
257 PWM_CONTINUOUS,
258};
259
260static const struct rockchip_pwm_data pwm_data_vop = {
261 .regs = {
262 .duty = 0x08,
263 .period = 0x04,
264 .cntr = 0x0c,
265 .ctrl = 0x00,
266 },
267 .prescaler = 1,
268 .supports_polarity = true,
269 .supports_lock = false,
270 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
271 PWM_CONTINUOUS,
272};
273
274static const struct rockchip_pwm_data pwm_data_v3 = {
275 .regs = {
276 .duty = 0x08,
277 .period = 0x04,
278 .cntr = 0x00,
279 .ctrl = 0x0c,
280 },
281 .prescaler = 1,
282 .supports_polarity = true,
283 .supports_lock = true,
284 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
285 PWM_CONTINUOUS,
286};
287
288static const struct of_device_id rockchip_pwm_dt_ids[] = {
289 { .compatible = "rockchip,rk2928-pwm", .data = &pwm_data_v1},
290 { .compatible = "rockchip,rk3288-pwm", .data = &pwm_data_v2},
291 { .compatible = "rockchip,vop-pwm", .data = &pwm_data_vop},
292 { .compatible = "rockchip,rk3328-pwm", .data = &pwm_data_v3},
293 { /* sentinel */ }
294};
295MODULE_DEVICE_TABLE(of, rockchip_pwm_dt_ids);
296
297static int rockchip_pwm_probe(struct platform_device *pdev)
298{
299 struct rockchip_pwm_chip *pc;
300 u32 enable_conf, ctrl;
301 bool enabled;
302 int ret, count;
303
304 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
305 if (!pc)
306 return -ENOMEM;
307
308 pc->base = devm_platform_ioremap_resource(pdev, 0);
309 if (IS_ERR(pc->base))
310 return PTR_ERR(pc->base);
311
312 pc->clk = devm_clk_get(&pdev->dev, "pwm");
313 if (IS_ERR(pc->clk)) {
314 pc->clk = devm_clk_get(&pdev->dev, NULL);
315 if (IS_ERR(pc->clk))
316 return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk),
317 "Can't get PWM clk\n");
318 }
319
320 count = of_count_phandle_with_args(pdev->dev.of_node,
321 "clocks", "#clock-cells");
322 if (count == 2)
323 pc->pclk = devm_clk_get(&pdev->dev, "pclk");
324 else
325 pc->pclk = pc->clk;
326
327 if (IS_ERR(pc->pclk))
328 return dev_err_probe(&pdev->dev, PTR_ERR(pc->pclk), "Can't get APB clk\n");
329
330 ret = clk_prepare_enable(pc->clk);
331 if (ret)
332 return dev_err_probe(&pdev->dev, ret, "Can't prepare enable PWM clk\n");
333
334 ret = clk_prepare_enable(pc->pclk);
335 if (ret) {
336 dev_err_probe(&pdev->dev, ret, "Can't prepare enable APB clk\n");
337 goto err_clk;
338 }
339
340 platform_set_drvdata(pdev, pc);
341
342 pc->data = device_get_match_data(&pdev->dev);
343 pc->chip.dev = &pdev->dev;
344 pc->chip.ops = &rockchip_pwm_ops;
345 pc->chip.npwm = 1;
346
347 enable_conf = pc->data->enable_conf;
348 ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
349 enabled = (ctrl & enable_conf) == enable_conf;
350
351 ret = pwmchip_add(&pc->chip);
352 if (ret < 0) {
353 dev_err_probe(&pdev->dev, ret, "pwmchip_add() failed\n");
354 goto err_pclk;
355 }
356
357 /* Keep the PWM clk enabled if the PWM appears to be up and running. */
358 if (!enabled)
359 clk_disable(pc->clk);
360
361 clk_disable(pc->pclk);
362
363 return 0;
364
365err_pclk:
366 clk_disable_unprepare(pc->pclk);
367err_clk:
368 clk_disable_unprepare(pc->clk);
369
370 return ret;
371}
372
373static void rockchip_pwm_remove(struct platform_device *pdev)
374{
375 struct rockchip_pwm_chip *pc = platform_get_drvdata(pdev);
376
377 pwmchip_remove(&pc->chip);
378
379 clk_unprepare(pc->pclk);
380 clk_unprepare(pc->clk);
381}
382
383static struct platform_driver rockchip_pwm_driver = {
384 .driver = {
385 .name = "rockchip-pwm",
386 .of_match_table = rockchip_pwm_dt_ids,
387 },
388 .probe = rockchip_pwm_probe,
389 .remove_new = rockchip_pwm_remove,
390};
391module_platform_driver(rockchip_pwm_driver);
392
393MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
394MODULE_DESCRIPTION("Rockchip SoC PWM driver");
395MODULE_LICENSE("GPL v2");
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * PWM driver for Rockchip SoCs
4 *
5 * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
6 * Copyright (C) 2014 ROCKCHIP, Inc.
7 */
8
9#include <linux/clk.h>
10#include <linux/io.h>
11#include <linux/module.h>
12#include <linux/of.h>
13#include <linux/of_device.h>
14#include <linux/platform_device.h>
15#include <linux/pwm.h>
16#include <linux/time.h>
17
18#define PWM_CTRL_TIMER_EN (1 << 0)
19#define PWM_CTRL_OUTPUT_EN (1 << 3)
20
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)
31
32struct rockchip_pwm_chip {
33 struct pwm_chip chip;
34 struct clk *clk;
35 struct clk *pclk;
36 const struct rockchip_pwm_data *data;
37 void __iomem *base;
38};
39
40struct 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;
50 bool supports_polarity;
51 bool supports_lock;
52 u32 enable_conf;
53};
54
55static 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
60static 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);
65 u32 enable_conf = pc->data->enable_conf;
66 unsigned long clk_rate;
67 u64 tmp;
68 u32 val;
69 int ret;
70
71 ret = clk_enable(pc->pclk);
72 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;
83 state->duty_cycle = DIV_ROUND_CLOSEST_ULL(tmp, clk_rate);
84
85 val = readl_relaxed(pc->base + pc->data->regs.ctrl);
86 if (pc->data->supports_polarity)
87 state->enabled = ((val & enable_conf) != enable_conf) ?
88 false : true;
89 else
90 state->enabled = ((val & enable_conf) == enable_conf) ?
91 true : false;
92
93 if (pc->data->supports_polarity && !(val & PWM_DUTY_POSITIVE))
94 state->polarity = PWM_POLARITY_INVERSED;
95 else
96 state->polarity = PWM_POLARITY_NORMAL;
97
98 clk_disable(pc->pclk);
99}
100
101static void rockchip_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
102 const struct pwm_state *state)
103{
104 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
105 unsigned long period, duty;
106 u64 clk_rate, div;
107 u32 ctrl;
108
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 */
116 div = clk_rate * state->period;
117 period = DIV_ROUND_CLOSEST_ULL(div,
118 pc->data->prescaler * NSEC_PER_SEC);
119
120 div = clk_rate * state->duty_cycle;
121 duty = DIV_ROUND_CLOSEST_ULL(div, pc->data->prescaler * NSEC_PER_SEC);
122
123 /*
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
133 writel(period, pc->base + pc->data->regs.period);
134 writel(duty, pc->base + pc->data->regs.duty);
135
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;
140 else
141 ctrl |= PWM_DUTY_POSITIVE | PWM_INACTIVE_NEGATIVE;
142 }
143
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
152 writel(ctrl, pc->base + pc->data->regs.ctrl);
153}
154
155static int rockchip_pwm_enable(struct pwm_chip *chip,
156 struct pwm_device *pwm,
157 bool enable)
158{
159 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
160 u32 enable_conf = pc->data->enable_conf;
161 int ret;
162 u32 val;
163
164 if (enable) {
165 ret = clk_enable(pc->clk);
166 if (ret)
167 return ret;
168 }
169
170 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);
178
179 if (!enable)
180 clk_disable(pc->clk);
181
182 return 0;
183}
184
185static int rockchip_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
186 const struct pwm_state *state)
187{
188 struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
189 struct pwm_state curstate;
190 bool enabled;
191 int ret = 0;
192
193 ret = clk_enable(pc->pclk);
194 if (ret)
195 return ret;
196
197 pwm_get_state(pwm, &curstate);
198 enabled = curstate.enabled;
199
200 if (state->polarity != curstate.polarity && enabled &&
201 !pc->data->supports_lock) {
202 ret = rockchip_pwm_enable(chip, pwm, false);
203 if (ret)
204 goto out;
205 enabled = false;
206 }
207
208 rockchip_pwm_config(chip, pwm, state);
209 if (state->enabled != enabled) {
210 ret = rockchip_pwm_enable(chip, pwm, state->enabled);
211 if (ret)
212 goto out;
213 }
214
215out:
216 clk_disable(pc->pclk);
217
218 return ret;
219}
220
221static const struct pwm_ops rockchip_pwm_ops = {
222 .get_state = rockchip_pwm_get_state,
223 .apply = rockchip_pwm_apply,
224 .owner = THIS_MODULE,
225};
226
227static const struct rockchip_pwm_data pwm_data_v1 = {
228 .regs = {
229 .duty = 0x04,
230 .period = 0x08,
231 .cntr = 0x00,
232 .ctrl = 0x0c,
233 },
234 .prescaler = 2,
235 .supports_polarity = false,
236 .supports_lock = false,
237 .enable_conf = PWM_CTRL_OUTPUT_EN | PWM_CTRL_TIMER_EN,
238};
239
240static const struct rockchip_pwm_data pwm_data_v2 = {
241 .regs = {
242 .duty = 0x08,
243 .period = 0x04,
244 .cntr = 0x00,
245 .ctrl = 0x0c,
246 },
247 .prescaler = 1,
248 .supports_polarity = true,
249 .supports_lock = false,
250 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
251 PWM_CONTINUOUS,
252};
253
254static const struct rockchip_pwm_data pwm_data_vop = {
255 .regs = {
256 .duty = 0x08,
257 .period = 0x04,
258 .cntr = 0x0c,
259 .ctrl = 0x00,
260 },
261 .prescaler = 1,
262 .supports_polarity = true,
263 .supports_lock = false,
264 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
265 PWM_CONTINUOUS,
266};
267
268static const struct rockchip_pwm_data pwm_data_v3 = {
269 .regs = {
270 .duty = 0x08,
271 .period = 0x04,
272 .cntr = 0x00,
273 .ctrl = 0x0c,
274 },
275 .prescaler = 1,
276 .supports_polarity = true,
277 .supports_lock = true,
278 .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
279 PWM_CONTINUOUS,
280};
281
282static const struct of_device_id rockchip_pwm_dt_ids[] = {
283 { .compatible = "rockchip,rk2928-pwm", .data = &pwm_data_v1},
284 { .compatible = "rockchip,rk3288-pwm", .data = &pwm_data_v2},
285 { .compatible = "rockchip,vop-pwm", .data = &pwm_data_vop},
286 { .compatible = "rockchip,rk3328-pwm", .data = &pwm_data_v3},
287 { /* sentinel */ }
288};
289MODULE_DEVICE_TABLE(of, rockchip_pwm_dt_ids);
290
291static int rockchip_pwm_probe(struct platform_device *pdev)
292{
293 const struct of_device_id *id;
294 struct rockchip_pwm_chip *pc;
295 struct resource *r;
296 int ret, count;
297
298 id = of_match_device(rockchip_pwm_dt_ids, &pdev->dev);
299 if (!id)
300 return -EINVAL;
301
302 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
303 if (!pc)
304 return -ENOMEM;
305
306 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
307 pc->base = devm_ioremap_resource(&pdev->dev, r);
308 if (IS_ERR(pc->base))
309 return PTR_ERR(pc->base);
310
311 pc->clk = devm_clk_get(&pdev->dev, "pwm");
312 if (IS_ERR(pc->clk)) {
313 pc->clk = devm_clk_get(&pdev->dev, NULL);
314 if (IS_ERR(pc->clk)) {
315 ret = PTR_ERR(pc->clk);
316 if (ret != -EPROBE_DEFER)
317 dev_err(&pdev->dev, "Can't get bus clk: %d\n",
318 ret);
319 return ret;
320 }
321 }
322
323 count = of_count_phandle_with_args(pdev->dev.of_node,
324 "clocks", "#clock-cells");
325 if (count == 2)
326 pc->pclk = devm_clk_get(&pdev->dev, "pclk");
327 else
328 pc->pclk = pc->clk;
329
330 if (IS_ERR(pc->pclk)) {
331 ret = PTR_ERR(pc->pclk);
332 if (ret != -EPROBE_DEFER)
333 dev_err(&pdev->dev, "Can't get APB clk: %d\n", ret);
334 return ret;
335 }
336
337 ret = clk_prepare_enable(pc->clk);
338 if (ret) {
339 dev_err(&pdev->dev, "Can't prepare enable bus clk: %d\n", ret);
340 return ret;
341 }
342
343 ret = clk_prepare(pc->pclk);
344 if (ret) {
345 dev_err(&pdev->dev, "Can't prepare APB clk: %d\n", ret);
346 goto err_clk;
347 }
348
349 platform_set_drvdata(pdev, pc);
350
351 pc->data = id->data;
352 pc->chip.dev = &pdev->dev;
353 pc->chip.ops = &rockchip_pwm_ops;
354 pc->chip.base = -1;
355 pc->chip.npwm = 1;
356
357 if (pc->data->supports_polarity) {
358 pc->chip.of_xlate = of_pwm_xlate_with_flags;
359 pc->chip.of_pwm_n_cells = 3;
360 }
361
362 ret = pwmchip_add(&pc->chip);
363 if (ret < 0) {
364 clk_unprepare(pc->clk);
365 dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
366 goto err_pclk;
367 }
368
369 /* Keep the PWM clk enabled if the PWM appears to be up and running. */
370 if (!pwm_is_enabled(pc->chip.pwms))
371 clk_disable(pc->clk);
372
373 return 0;
374
375err_pclk:
376 clk_unprepare(pc->pclk);
377err_clk:
378 clk_disable_unprepare(pc->clk);
379
380 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
387 /*
388 * Disable the PWM clk before unpreparing it if the PWM device is still
389 * running. This should only happen when the last PWM user left it
390 * enabled, or when nobody requested a PWM that was previously enabled
391 * by the bootloader.
392 *
393 * FIXME: Maybe the core should disable all PWM devices in
394 * pwmchip_remove(). In this case we'd only have to call
395 * clk_unprepare() after pwmchip_remove().
396 *
397 */
398 if (pwm_is_enabled(pc->chip.pwms))
399 clk_disable(pc->clk);
400
401 clk_unprepare(pc->pclk);
402 clk_unprepare(pc->clk);
403
404 return pwmchip_remove(&pc->chip);
405}
406
407static struct platform_driver rockchip_pwm_driver = {
408 .driver = {
409 .name = "rockchip-pwm",
410 .of_match_table = rockchip_pwm_dt_ids,
411 },
412 .probe = rockchip_pwm_probe,
413 .remove = rockchip_pwm_remove,
414};
415module_platform_driver(rockchip_pwm_driver);
416
417MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
418MODULE_DESCRIPTION("Rockchip SoC PWM driver");
419MODULE_LICENSE("GPL v2");