hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
// SPDX-License-Identifier: GPL-2.0-only
/*
 * PWM driver for Rockchip SoCs
 *
 * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
 * Copyright (C) 2014 ROCKCHIP, Inc.
 */
 
#include <linux/clk.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/iopoll.h>
#include <linux/irq.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/pinctrl/consumer.h>
#include <linux/platform_device.h>
#include <linux/pwm.h>
#include <linux/time.h>
#include "pwm-rockchip.h"
 
#define PWM_MAX_CHANNEL_NUM    4
 
#define PWM_CTRL_TIMER_EN    (1 << 0)
#define PWM_CTRL_OUTPUT_EN    (1 << 3)
 
#define PWM_ENABLE        (1 << 0)
#define PWM_MODE_SHIFT        1
#define PWM_MODE_MASK        (0x3 << PWM_MODE_SHIFT)
#define PWM_ONESHOT        (0 << PWM_MODE_SHIFT)
#define PWM_CONTINUOUS        (1 << PWM_MODE_SHIFT)
#define PWM_CAPTURE        (2 << PWM_MODE_SHIFT)
#define PWM_DUTY_POSITIVE    (1 << 3)
#define PWM_DUTY_NEGATIVE    (0 << 3)
#define PWM_INACTIVE_NEGATIVE    (0 << 4)
#define PWM_INACTIVE_POSITIVE    (1 << 4)
#define PWM_POLARITY_MASK    (PWM_DUTY_POSITIVE | PWM_INACTIVE_POSITIVE)
#define PWM_OUTPUT_LEFT        (0 << 5)
#define PWM_OUTPUT_CENTER    (1 << 5)
#define PWM_LOCK_EN        (1 << 6)
#define PWM_LP_DISABLE        (0 << 8)
#define PWM_CLK_SEL_SHIFT    9
#define PWM_CLK_SEL_MASK    (1 << PWM_CLK_SEL_SHIFT)
#define PWM_SEL_NO_SCALED_CLOCK    (0 << PWM_CLK_SEL_SHIFT)
#define PWM_SEL_SCALED_CLOCK    (1 << PWM_CLK_SEL_SHIFT)
#define PWM_PRESCELE_SHIFT    12
#define PWM_PRESCALE_MASK    (0x3 << PWM_PRESCELE_SHIFT)
#define PWM_SCALE_SHIFT        16
#define PWM_SCALE_MASK        (0xff << PWM_SCALE_SHIFT)
 
#define PWM_ONESHOT_COUNT_SHIFT    24
#define PWM_ONESHOT_COUNT_MASK    (0xff << PWM_ONESHOT_COUNT_SHIFT)
#define PWM_ONESHOT_COUNT_MAX    256
 
#define PWM_REG_INTSTS(n)    ((3 - (n)) * 0x10 + 0x10)
#define PWM_REG_INT_EN(n)    ((3 - (n)) * 0x10 + 0x14)
 
#define PWM_CH_INT(n)        BIT(n)
 
struct rockchip_pwm_chip {
   struct pwm_chip chip;
   struct clk *clk;
   struct clk *pclk;
   struct pinctrl *pinctrl;
   struct pinctrl_state *active_state;
   const struct rockchip_pwm_data *data;
   void __iomem *base;
   unsigned long clk_rate;
   bool vop_pwm_en; /* indicate voppwm mirror register state */
   bool center_aligned;
   bool oneshot_en;
   int channel_id;
   int irq;
};
 
struct rockchip_pwm_regs {
   unsigned long duty;
   unsigned long period;
   unsigned long cntr;
   unsigned long ctrl;
};
 
struct rockchip_pwm_data {
   struct rockchip_pwm_regs regs;
   unsigned int prescaler;
   bool supports_polarity;
   bool supports_lock;
   bool vop_pwm;
   u32 enable_conf;
   u32 enable_conf_mask;
};
 
static inline struct rockchip_pwm_chip *to_rockchip_pwm_chip(struct pwm_chip *c)
{
   return container_of(c, struct rockchip_pwm_chip, chip);
}
 
static void rockchip_pwm_get_state(struct pwm_chip *chip,
                  struct pwm_device *pwm,
                  struct pwm_state *state)
{
   struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
   u32 enable_conf = pc->data->enable_conf;
   u64 tmp;
   u32 val;
   u32 dclk_div;
   int ret;
 
   if (!pc->oneshot_en) {
       ret = clk_enable(pc->pclk);
       if (ret)
           return;
   }
 
   dclk_div = pc->oneshot_en ? 2 : 1;
 
   tmp = readl_relaxed(pc->base + pc->data->regs.period);
   tmp *= dclk_div * pc->data->prescaler * NSEC_PER_SEC;
   state->period = DIV_ROUND_CLOSEST_ULL(tmp, pc->clk_rate);
 
   tmp = readl_relaxed(pc->base + pc->data->regs.duty);
   tmp *= dclk_div * pc->data->prescaler * NSEC_PER_SEC;
   state->duty_cycle =  DIV_ROUND_CLOSEST_ULL(tmp, pc->clk_rate);
 
   val = readl_relaxed(pc->base + pc->data->regs.ctrl);
   if (pc->oneshot_en)
       enable_conf &= ~PWM_CONTINUOUS;
   state->enabled = (val & enable_conf) == enable_conf;
 
   if (pc->data->supports_polarity && !(val & PWM_DUTY_POSITIVE))
       state->polarity = PWM_POLARITY_INVERSED;
   else
       state->polarity = PWM_POLARITY_NORMAL;
 
   if (!pc->oneshot_en)
       clk_disable(pc->pclk);
}
 
static irqreturn_t rockchip_pwm_oneshot_irq(int irq, void *data)
{
   struct rockchip_pwm_chip *pc = data;
   struct pwm_state state;
   unsigned int id = pc->channel_id;
   int val;
 
   if (id > 3)
       return IRQ_NONE;
   val = readl_relaxed(pc->base + PWM_REG_INTSTS(id));
 
   if ((val & PWM_CH_INT(id)) == 0)
       return IRQ_NONE;
 
   writel_relaxed(PWM_CH_INT(id), pc->base + PWM_REG_INTSTS(id));
 
   /*
    * Set pwm state to disabled when the oneshot mode finished.
    */
   pwm_get_state(&pc->chip.pwms[0], &state);
   state.enabled = false;
   pwm_apply_state(&pc->chip.pwms[0], &state);
 
   rockchip_pwm_oneshot_callback(&pc->chip.pwms[0], &state);
 
   return IRQ_HANDLED;
}
 
static void rockchip_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
                  const struct pwm_state *state)
{
   struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
   unsigned long period, duty, delay_ns;
   unsigned long flags;
   u64 div;
   u32 ctrl;
   u8 dclk_div = 1;
 
#ifdef CONFIG_PWM_ROCKCHIP_ONESHOT
   if (state->oneshot_count > 0 && state->oneshot_count <= PWM_ONESHOT_COUNT_MAX)
       dclk_div = 2;
#endif
 
   /*
    * Since period and duty cycle registers have a width of 32
    * bits, every possible input period can be obtained using the
    * default prescaler value for all practical clock rate values.
    */
   div = (u64)pc->clk_rate * state->period;
   period = DIV_ROUND_CLOSEST_ULL(div, dclk_div * pc->data->prescaler * NSEC_PER_SEC);
 
   div = (u64)pc->clk_rate * state->duty_cycle;
   duty = DIV_ROUND_CLOSEST_ULL(div, dclk_div * pc->data->prescaler * NSEC_PER_SEC);
 
   if (pc->data->supports_lock) {
       div = (u64)10 * NSEC_PER_SEC * dclk_div * pc->data->prescaler;
       delay_ns = DIV_ROUND_UP_ULL(div, pc->clk_rate);
   }
 
   local_irq_save(flags);
 
   ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
   if (pc->data->vop_pwm) {
       if (pc->vop_pwm_en)
           ctrl |= PWM_ENABLE;
       else
           ctrl &= ~PWM_ENABLE;
   }
 
#ifdef CONFIG_PWM_ROCKCHIP_ONESHOT
   if (state->oneshot_count > 0 && state->oneshot_count <= PWM_ONESHOT_COUNT_MAX) {
       u32 int_ctrl;
 
       /*
        * This is a workaround, an uncertain waveform will be
        * generated after oneshot ends. It is needed to enable
        * the dclk scale function to resolve it. It doesn't
        * matter what the scale factor is, just make sure the
        * scale function is turned on, for which we set scale
        * factor to 2.
        */
       ctrl &= ~PWM_SCALE_MASK;
       ctrl |= (dclk_div / 2) << PWM_SCALE_SHIFT;
       ctrl &= ~PWM_CLK_SEL_MASK;
       ctrl |= PWM_SEL_SCALED_CLOCK;
 
       pc->oneshot_en = true;
       ctrl &= ~PWM_MODE_MASK;
       ctrl |= PWM_ONESHOT;
 
       ctrl &= ~PWM_ONESHOT_COUNT_MASK;
       ctrl |= (state->oneshot_count - 1) << PWM_ONESHOT_COUNT_SHIFT;
 
       int_ctrl = readl_relaxed(pc->base + PWM_REG_INT_EN(pc->channel_id));
       int_ctrl |= PWM_CH_INT(pc->channel_id);
       writel_relaxed(int_ctrl, pc->base + PWM_REG_INT_EN(pc->channel_id));
   } else {
       u32 int_ctrl;
 
       ctrl &= ~PWM_SCALE_MASK;
       ctrl &= ~PWM_CLK_SEL_MASK;
       ctrl |= PWM_SEL_NO_SCALED_CLOCK;
 
       if (state->oneshot_count)
           dev_err(chip->dev, "Oneshot_count must be between 1 and 256.\n");
 
       pc->oneshot_en = false;
       ctrl &= ~PWM_MODE_MASK;
       ctrl |= PWM_CONTINUOUS;
 
       ctrl &= ~PWM_ONESHOT_COUNT_MASK;
 
       int_ctrl = readl_relaxed(pc->base + PWM_REG_INT_EN(pc->channel_id));
       int_ctrl &= ~PWM_CH_INT(pc->channel_id);
       writel_relaxed(int_ctrl, pc->base + PWM_REG_INT_EN(pc->channel_id));
   }
#endif
 
   /*
    * Lock the period and duty of previous configuration, then
    * change the duty and period, that would not be effective.
    */
   if (pc->data->supports_lock) {
       ctrl |= PWM_LOCK_EN;
       writel_relaxed(ctrl, pc->base + pc->data->regs.ctrl);
   }
 
   writel(period, pc->base + pc->data->regs.period);
   writel(duty, pc->base + pc->data->regs.duty);
 
   if (pc->data->supports_polarity) {
       ctrl &= ~PWM_POLARITY_MASK;
       if (state->polarity == PWM_POLARITY_INVERSED)
           ctrl |= PWM_DUTY_NEGATIVE | PWM_INACTIVE_POSITIVE;
       else
           ctrl |= PWM_DUTY_POSITIVE | PWM_INACTIVE_NEGATIVE;
   }
 
   /*
    * Unlock and set polarity at the same time, the configuration of duty,
    * period and polarity would be effective together at next period. It
    * takes 10 dclk cycles to make sure lock works before unlocking.
    */
   if (pc->data->supports_lock) {
       ctrl &= ~PWM_LOCK_EN;
       ndelay(delay_ns);
   }
 
   writel(ctrl, pc->base + pc->data->regs.ctrl);
   local_irq_restore(flags);
}
 
static int rockchip_pwm_enable(struct pwm_chip *chip,
                  struct pwm_device *pwm,
                  bool enable)
{
   struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
   u32 enable_conf = pc->data->enable_conf;
   int ret;
   u32 val;
 
   if (enable) {
       ret = clk_enable(pc->clk);
       if (ret)
           return ret;
   }
 
   val = readl_relaxed(pc->base + pc->data->regs.ctrl);
   val &= ~pc->data->enable_conf_mask;
 
   if (PWM_OUTPUT_CENTER & pc->data->enable_conf_mask) {
       if (pc->center_aligned)
           val |= PWM_OUTPUT_CENTER;
   }
 
   if (enable) {
       val |= enable_conf;
       if (pc->oneshot_en)
           val &= ~PWM_CONTINUOUS;
   } else {
       val &= ~enable_conf;
   }
 
   writel_relaxed(val, pc->base + pc->data->regs.ctrl);
   if (pc->data->vop_pwm)
       pc->vop_pwm_en = enable;
 
   if (!enable)
       clk_disable(pc->clk);
 
   return 0;
}
 
static int rockchip_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
                 const struct pwm_state *state)
{
   struct rockchip_pwm_chip *pc = to_rockchip_pwm_chip(chip);
   struct pwm_state curstate;
   bool enabled;
   int ret = 0;
 
   if (!pc->oneshot_en) {
       ret = clk_enable(pc->pclk);
       if (ret)
           return ret;
   }
 
   pwm_get_state(pwm, &curstate);
   enabled = curstate.enabled;
 
   if (state->polarity != curstate.polarity && enabled &&
       !pc->data->supports_lock) {
       ret = rockchip_pwm_enable(chip, pwm, false);
       if (ret)
           goto out;
       enabled = false;
   }
 
   rockchip_pwm_config(chip, pwm, state);
   if (state->enabled != enabled) {
       ret = rockchip_pwm_enable(chip, pwm, state->enabled);
       if (ret)
           goto out;
   }
 
   if (state->enabled)
       ret = pinctrl_select_state(pc->pinctrl, pc->active_state);
out:
   if (!pc->oneshot_en)
       clk_disable(pc->pclk);
 
   return ret;
}
 
static const struct pwm_ops rockchip_pwm_ops = {
   .get_state = rockchip_pwm_get_state,
   .apply = rockchip_pwm_apply,
   .owner = THIS_MODULE,
};
 
static const struct rockchip_pwm_data pwm_data_v1 = {
   .regs = {
       .duty = 0x04,
       .period = 0x08,
       .cntr = 0x00,
       .ctrl = 0x0c,
   },
   .prescaler = 2,
   .supports_polarity = false,
   .supports_lock = false,
   .vop_pwm = false,
   .enable_conf = PWM_CTRL_OUTPUT_EN | PWM_CTRL_TIMER_EN,
   .enable_conf_mask = BIT(1) | BIT(3),
};
 
static const struct rockchip_pwm_data pwm_data_v2 = {
   .regs = {
       .duty = 0x08,
       .period = 0x04,
       .cntr = 0x00,
       .ctrl = 0x0c,
   },
   .prescaler = 1,
   .supports_polarity = true,
   .supports_lock = false,
   .vop_pwm = false,
   .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
              PWM_CONTINUOUS,
   .enable_conf_mask = GENMASK(2, 0) | BIT(5) | BIT(8),
};
 
static const struct rockchip_pwm_data pwm_data_vop = {
   .regs = {
       .duty = 0x08,
       .period = 0x04,
       .cntr = 0x0c,
       .ctrl = 0x00,
   },
   .prescaler = 1,
   .supports_polarity = true,
   .supports_lock = false,
   .vop_pwm = true,
   .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
              PWM_CONTINUOUS,
   .enable_conf_mask = GENMASK(2, 0) | BIT(5) | BIT(8),
};
 
static const struct rockchip_pwm_data pwm_data_v3 = {
   .regs = {
       .duty = 0x08,
       .period = 0x04,
       .cntr = 0x00,
       .ctrl = 0x0c,
   },
   .prescaler = 1,
   .supports_polarity = true,
   .supports_lock = true,
   .vop_pwm = false,
   .enable_conf = PWM_OUTPUT_LEFT | PWM_LP_DISABLE | PWM_ENABLE |
              PWM_CONTINUOUS,
   .enable_conf_mask = GENMASK(2, 0) | BIT(5) | BIT(8),
};
 
static const struct of_device_id rockchip_pwm_dt_ids[] = {
   { .compatible = "rockchip,rk2928-pwm", .data = &pwm_data_v1},
   { .compatible = "rockchip,rk3288-pwm", .data = &pwm_data_v2},
   { .compatible = "rockchip,vop-pwm", .data = &pwm_data_vop},
   { .compatible = "rockchip,rk3328-pwm", .data = &pwm_data_v3},
   { /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, rockchip_pwm_dt_ids);
 
static int rockchip_pwm_get_channel_id(const char *name)
{
   int len = strlen(name);
 
   return name[len - 2] - '0';
}
 
static int rockchip_pwm_probe(struct platform_device *pdev)
{
   const struct of_device_id *id;
   struct rockchip_pwm_chip *pc;
   struct resource *r;
   u32 enable_conf, ctrl;
   bool enabled;
   int ret, count;
 
   id = of_match_device(rockchip_pwm_dt_ids, &pdev->dev);
   if (!id)
       return -EINVAL;
 
   pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
   if (!pc)
       return -ENOMEM;
 
   r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
   pc->base = devm_ioremap(&pdev->dev, r->start,
               resource_size(r));
   if (IS_ERR(pc->base))
       return PTR_ERR(pc->base);
 
   pc->clk = devm_clk_get(&pdev->dev, "pwm");
   if (IS_ERR(pc->clk)) {
       pc->clk = devm_clk_get(&pdev->dev, NULL);
       if (IS_ERR(pc->clk))
           return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk),
                        "Can't get bus clk\n");
   }
 
   count = of_count_phandle_with_args(pdev->dev.of_node,
                      "clocks", "#clock-cells");
   if (count == 2)
       pc->pclk = devm_clk_get(&pdev->dev, "pclk");
   else
       pc->pclk = pc->clk;
 
   if (IS_ERR(pc->pclk)) {
       ret = PTR_ERR(pc->pclk);
       if (ret != -EPROBE_DEFER)
           dev_err(&pdev->dev, "Can't get APB clk: %d\n", ret);
       return ret;
   }
 
   ret = clk_prepare_enable(pc->clk);
   if (ret) {
       dev_err(&pdev->dev, "Can't prepare enable bus clk: %d\n", ret);
       return ret;
   }
 
   ret = clk_prepare_enable(pc->pclk);
   if (ret) {
       dev_err(&pdev->dev, "Can't prepare enable APB clk: %d\n", ret);
       goto err_clk;
   }
 
   pc->channel_id = rockchip_pwm_get_channel_id(pdev->dev.of_node->full_name);
   if (pc->channel_id < 0 || pc->channel_id >= PWM_MAX_CHANNEL_NUM) {
       dev_err(&pdev->dev, "Channel id is out of range: %d\n", pc->channel_id);
       ret = -EINVAL;
       goto err_pclk;
   }
 
   if (IS_ENABLED(CONFIG_PWM_ROCKCHIP_ONESHOT)) {
       pc->irq = platform_get_irq(pdev, 0);
       if (pc->irq < 0) {
           dev_err(&pdev->dev, "Get oneshot mode irq failed\n");
           ret = pc->irq;
           goto err_pclk;
       }
 
       ret = devm_request_irq(&pdev->dev, pc->irq, rockchip_pwm_oneshot_irq,
                      IRQF_NO_SUSPEND | IRQF_SHARED,
                      "rk_pwm_oneshot_irq", pc);
       if (ret) {
           dev_err(&pdev->dev, "Claim oneshot IRQ failed\n");
           goto err_pclk;
       }
   }
 
   pc->pinctrl = devm_pinctrl_get(&pdev->dev);
   if (IS_ERR(pc->pinctrl)) {
       dev_err(&pdev->dev, "Get pinctrl failed!\n");
       ret = PTR_ERR(pc->pinctrl);
       goto err_pclk;
   }
 
   pc->active_state = pinctrl_lookup_state(pc->pinctrl, "active");
   if (IS_ERR(pc->active_state)) {
       dev_err(&pdev->dev, "No active pinctrl state\n");
       ret = PTR_ERR(pc->active_state);
       goto err_pclk;
   }
 
   platform_set_drvdata(pdev, pc);
 
   pc->data = id->data;
   pc->chip.dev = &pdev->dev;
   pc->chip.ops = &rockchip_pwm_ops;
   pc->chip.base = of_alias_get_id(pdev->dev.of_node, "pwm");
   pc->chip.npwm = 1;
   pc->clk_rate = clk_get_rate(pc->clk);
 
   if (pc->data->supports_polarity) {
       pc->chip.of_xlate = of_pwm_xlate_with_flags;
       pc->chip.of_pwm_n_cells = 3;
   }
 
   enable_conf = pc->data->enable_conf;
   ctrl = readl_relaxed(pc->base + pc->data->regs.ctrl);
   enabled = (ctrl & enable_conf) == enable_conf;
 
   pc->center_aligned =
       device_property_read_bool(&pdev->dev, "center-aligned");
 
   ret = pwmchip_add(&pc->chip);
   if (ret < 0) {
       dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
       goto err_pclk;
   }
 
   /* Keep the PWM clk enabled if the PWM appears to be up and running. */
   if (!enabled)
       clk_disable(pc->clk);
 
   clk_disable(pc->pclk);
 
   return 0;
 
err_pclk:
   clk_disable_unprepare(pc->pclk);
err_clk:
   clk_disable_unprepare(pc->clk);
 
   return ret;
}
 
static int rockchip_pwm_remove(struct platform_device *pdev)
{
   struct rockchip_pwm_chip *pc = platform_get_drvdata(pdev);
   struct pwm_state state;
   u32 val;
 
   /*
    * For oneshot mode, it is needed to wait for bit PWM_ENABLE
    * to 0, which is automatic if all periods have been sent.
    */
   pwm_get_state(&pc->chip.pwms[0], &state);
   if (state.enabled) {
       if (pc->oneshot_en) {
           if (readl_poll_timeout(pc->base + pc->data->regs.ctrl,
                          val, !(val & PWM_ENABLE), 1000, 10 * 1000))
               dev_err(&pdev->dev, "Wait for oneshot to complete failed\n");
       } else {
           state.enabled = false;
           pwm_apply_state(&pc->chip.pwms[0], &state);
       }
   }
 
   if (pc->oneshot_en)
       clk_disable(pc->pclk);
   clk_unprepare(pc->pclk);
   clk_unprepare(pc->clk);
 
   return pwmchip_remove(&pc->chip);
}
 
static struct platform_driver rockchip_pwm_driver = {
   .driver = {
       .name = "rockchip-pwm",
       .of_match_table = rockchip_pwm_dt_ids,
   },
   .probe = rockchip_pwm_probe,
   .remove = rockchip_pwm_remove,
};
#ifdef CONFIG_ROCKCHIP_THUNDER_BOOT
static int __init rockchip_pwm_driver_init(void)
{
   return platform_driver_register(&rockchip_pwm_driver);
}
subsys_initcall(rockchip_pwm_driver_init);
 
static void __exit rockchip_pwm_driver_exit(void)
{
   platform_driver_unregister(&rockchip_pwm_driver);
}
module_exit(rockchip_pwm_driver_exit);
#else
module_platform_driver(rockchip_pwm_driver);
#endif
 
MODULE_AUTHOR("Beniamino Galvani <b.galvani@gmail.com>");
MODULE_DESCRIPTION("Rockchip SoC PWM driver");
MODULE_LICENSE("GPL v2");