1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2016 Linaro Ltd.
5 * Author: Linus Walleij <linus.walleij@linaro.org>
8 #include <linux/bitops.h>
9 #include <linux/delay.h>
10 #include <linux/err.h>
11 #include <linux/mfd/stmpe.h>
12 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/pwm.h>
16 #include <linux/slab.h>
18 #define STMPE24XX_PWMCS 0x30
19 #define PWMCS_EN_PWM0 BIT(0)
20 #define PWMCS_EN_PWM1 BIT(1)
21 #define PWMCS_EN_PWM2 BIT(2)
22 #define STMPE24XX_PWMIC0 0x38
23 #define STMPE24XX_PWMIC1 0x39
24 #define STMPE24XX_PWMIC2 0x3a
26 #define STMPE_PWM_24XX_PINBASE 21
34 static inline struct stmpe_pwm
*to_stmpe_pwm(struct pwm_chip
*chip
)
36 return container_of(chip
, struct stmpe_pwm
, chip
);
39 static int stmpe_24xx_pwm_enable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
41 struct stmpe_pwm
*stmpe_pwm
= to_stmpe_pwm(chip
);
45 ret
= stmpe_reg_read(stmpe_pwm
->stmpe
, STMPE24XX_PWMCS
);
47 dev_err(chip
->dev
, "error reading PWM#%u control\n",
52 value
= ret
| BIT(pwm
->hwpwm
);
54 ret
= stmpe_reg_write(stmpe_pwm
->stmpe
, STMPE24XX_PWMCS
, value
);
56 dev_err(chip
->dev
, "error writing PWM#%u control\n",
64 static void stmpe_24xx_pwm_disable(struct pwm_chip
*chip
,
65 struct pwm_device
*pwm
)
67 struct stmpe_pwm
*stmpe_pwm
= to_stmpe_pwm(chip
);
71 ret
= stmpe_reg_read(stmpe_pwm
->stmpe
, STMPE24XX_PWMCS
);
73 dev_err(chip
->dev
, "error reading PWM#%u control\n",
78 value
= ret
& ~BIT(pwm
->hwpwm
);
80 ret
= stmpe_reg_write(stmpe_pwm
->stmpe
, STMPE24XX_PWMCS
, value
);
82 dev_err(chip
->dev
, "error writing PWM#%u control\n",
88 /* STMPE 24xx PWM instructions */
92 #define LOAD BIT(14) /* Only available on 2403 */
94 #define RAMPDOWN BIT(7)
95 #define PRESCALE_512 BIT(14)
96 #define STEPTIME_1 BIT(8)
97 #define BRANCH (BIT(15) | BIT(13))
99 static int stmpe_24xx_pwm_config(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
100 int duty_ns
, int period_ns
)
102 struct stmpe_pwm
*stmpe_pwm
= to_stmpe_pwm(chip
);
112 /* Make sure we are disabled */
113 if (pwm_is_enabled(pwm
)) {
114 stmpe_24xx_pwm_disable(chip
, pwm
);
116 /* Connect the PWM to the pin */
119 /* On STMPE2401 and 2403 pins 21,22,23 are used */
120 if (stmpe_pwm
->stmpe
->partnum
== STMPE2401
||
121 stmpe_pwm
->stmpe
->partnum
== STMPE2403
)
122 pin
+= STMPE_PWM_24XX_PINBASE
;
124 ret
= stmpe_set_altfunc(stmpe_pwm
->stmpe
, BIT(pin
),
127 dev_err(chip
->dev
, "unable to connect PWM#%u to pin\n",
134 switch (pwm
->hwpwm
) {
136 offset
= STMPE24XX_PWMIC0
;
140 offset
= STMPE24XX_PWMIC1
;
144 offset
= STMPE24XX_PWMIC2
;
148 /* Should not happen as npwm is 3 */
152 dev_dbg(chip
->dev
, "PWM#%u: config duty %d ns, period %d ns\n",
153 pwm
->hwpwm
, duty_ns
, period_ns
);
156 if (stmpe_pwm
->stmpe
->partnum
== STMPE2401
)
157 program
[0] = SMAX
; /* off all the time */
159 if (stmpe_pwm
->stmpe
->partnum
== STMPE2403
)
160 program
[0] = LOAD
| 0xff; /* LOAD 0xff */
162 stmpe_pwm
->last_duty
= 0x00;
163 } else if (duty_ns
== period_ns
) {
164 if (stmpe_pwm
->stmpe
->partnum
== STMPE2401
)
165 program
[0] = SMIN
; /* on all the time */
167 if (stmpe_pwm
->stmpe
->partnum
== STMPE2403
)
168 program
[0] = LOAD
| 0x00; /* LOAD 0x00 */
170 stmpe_pwm
->last_duty
= 0xff;
172 u8 value
, last
= stmpe_pwm
->last_duty
;
176 * Counter goes from 0x00 to 0xff repeatedly at 32768 Hz,
177 * (means a period of 30517 ns) then this is compared to the
178 * counter from the ramp, if this is >= PWM counter the output
179 * is high. With LOAD we can define how much of the cycle it
182 * Prescale = 0 -> 2 kHz -> T = 1/f = 488281.25 ns
185 /* Scale to 0..0xff */
186 duty
= duty_ns
* 256;
187 duty
= DIV_ROUND_CLOSEST(duty
, period_ns
);
191 /* Run the old program */
192 if (pwm_is_enabled(pwm
))
193 stmpe_24xx_pwm_enable(chip
, pwm
);
196 } else if (stmpe_pwm
->stmpe
->partnum
== STMPE2403
) {
197 /* STMPE2403 can simply set the right PWM value */
198 program
[0] = LOAD
| value
;
200 } else if (stmpe_pwm
->stmpe
->partnum
== STMPE2401
) {
201 /* STMPE2401 need a complex program */
206 incdec
= RAMPUP
| (value
- last
);
209 incdec
= RAMPDOWN
| (last
- value
);
211 /* Step to desired value, smoothly */
212 program
[0] = PRESCALE_512
| STEPTIME_1
| incdec
;
214 /* Loop eternally to 0x00 */
219 "PWM#%u: value = %02x, last_duty = %02x, program=%04x,%04x,%04x\n",
220 pwm
->hwpwm
, value
, last
, program
[0], program
[1],
222 stmpe_pwm
->last_duty
= value
;
226 * We can write programs of up to 64 16-bit words into this channel.
228 for (i
= 0; i
< ARRAY_SIZE(program
); i
++) {
231 value
= (program
[i
] >> 8) & 0xff;
233 ret
= stmpe_reg_write(stmpe_pwm
->stmpe
, offset
, value
);
235 dev_err(chip
->dev
, "error writing register %02x: %d\n",
240 value
= program
[i
] & 0xff;
242 ret
= stmpe_reg_write(stmpe_pwm
->stmpe
, offset
, value
);
244 dev_err(chip
->dev
, "error writing register %02x: %d\n",
250 /* If we were enabled, re-enable this PWM */
251 if (pwm_is_enabled(pwm
))
252 stmpe_24xx_pwm_enable(chip
, pwm
);
254 /* Sleep for 200ms so we're sure it will take effect */
257 dev_dbg(chip
->dev
, "programmed PWM#%u, %u bytes\n", pwm
->hwpwm
, i
);
262 static const struct pwm_ops stmpe_24xx_pwm_ops
= {
263 .config
= stmpe_24xx_pwm_config
,
264 .enable
= stmpe_24xx_pwm_enable
,
265 .disable
= stmpe_24xx_pwm_disable
,
266 .owner
= THIS_MODULE
,
269 static int __init
stmpe_pwm_probe(struct platform_device
*pdev
)
271 struct stmpe
*stmpe
= dev_get_drvdata(pdev
->dev
.parent
);
272 struct stmpe_pwm
*pwm
;
275 pwm
= devm_kzalloc(&pdev
->dev
, sizeof(*pwm
), GFP_KERNEL
);
280 pwm
->chip
.dev
= &pdev
->dev
;
283 if (stmpe
->partnum
== STMPE2401
|| stmpe
->partnum
== STMPE2403
) {
284 pwm
->chip
.ops
= &stmpe_24xx_pwm_ops
;
287 if (stmpe
->partnum
== STMPE1601
)
288 dev_err(&pdev
->dev
, "STMPE1601 not yet supported\n");
290 dev_err(&pdev
->dev
, "Unknown STMPE PWM\n");
295 ret
= stmpe_enable(stmpe
, STMPE_BLOCK_PWM
);
299 ret
= pwmchip_add(&pwm
->chip
);
301 stmpe_disable(stmpe
, STMPE_BLOCK_PWM
);
305 platform_set_drvdata(pdev
, pwm
);
310 static struct platform_driver stmpe_pwm_driver
= {
315 builtin_platform_driver_probe(stmpe_pwm_driver
, stmpe_pwm_probe
);