blob: f491d56254d7cda9a1162988a6bd513b281b86ff [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Lee Jones378fe112014-07-14 15:33:27 +01002/*
Lee Jones7d8a600c2016-08-16 10:35:07 +01003 * PWM device driver for ST SoCs
Lee Jones378fe112014-07-14 15:33:27 +01004 *
Lee Jones7d8a600c2016-08-16 10:35:07 +01005 * Copyright (C) 2013-2016 STMicroelectronics (R&D) Limited
6 *
7 * Author: Ajit Pal Singh <ajitpal.singh@st.com>
8 * Lee Jones <lee.jones@linaro.org>
Lee Jones378fe112014-07-14 15:33:27 +01009 */
10
Lee Jones378fe112014-07-14 15:33:27 +010011#include <linux/clk.h>
Lee Jones3f0925b2016-08-16 10:35:03 +010012#include <linux/interrupt.h>
Lee Jones378fe112014-07-14 15:33:27 +010013#include <linux/math64.h>
14#include <linux/mfd/syscon.h>
15#include <linux/module.h>
16#include <linux/of.h>
17#include <linux/platform_device.h>
18#include <linux/pwm.h>
19#include <linux/regmap.h>
Lee Jones3f0925b2016-08-16 10:35:03 +010020#include <linux/sched.h>
Lee Jones378fe112014-07-14 15:33:27 +010021#include <linux/slab.h>
22#include <linux/time.h>
Lee Jones3f0925b2016-08-16 10:35:03 +010023#include <linux/wait.h>
Lee Jones378fe112014-07-14 15:33:27 +010024
Lee Jonesc5f94ae2016-08-16 10:34:59 +010025#define PWM_OUT_VAL(x) (0x00 + (4 * (x))) /* Device's Duty Cycle register */
Lee Jonesf66d78f2016-08-16 10:35:01 +010026#define PWM_CPT_VAL(x) (0x10 + (4 * (x))) /* Capture value */
27#define PWM_CPT_EDGE(x) (0x30 + (4 * (x))) /* Edge to capture on */
Lee Jonesc5f94ae2016-08-16 10:34:59 +010028
29#define STI_PWM_CTRL 0x50 /* Control/Config register */
30#define STI_INT_EN 0x54 /* Interrupt Enable/Disable register */
Lee Jonesf66d78f2016-08-16 10:35:01 +010031#define STI_INT_STA 0x58 /* Interrupt Status register */
Lee Jones7d8a600c2016-08-16 10:35:07 +010032#define PWM_INT_ACK 0x5c
33#define PWM_PRESCALE_LOW_MASK 0x0f
34#define PWM_PRESCALE_HIGH_MASK 0xf0
35#define PWM_CPT_EDGE_MASK 0x03
36#define PWM_INT_ACK_MASK 0x1ff
Lee Jonesf66d78f2016-08-16 10:35:01 +010037
Lee Jones7d8a600c2016-08-16 10:35:07 +010038#define STI_MAX_CPT_DEVS 4
39#define CPT_DC_MAX 0xff
Lee Jones378fe112014-07-14 15:33:27 +010040
41/* Regfield IDs */
42enum {
Lee Jonesc5f94ae2016-08-16 10:34:59 +010043 /* Bits in PWM_CTRL*/
Ajit Pal Singhbf9cc802014-07-14 15:33:29 +010044 PWMCLK_PRESCALE_LOW,
45 PWMCLK_PRESCALE_HIGH,
Lee Jonesf66d78f2016-08-16 10:35:01 +010046 CPTCLK_PRESCALE,
Lee Jonesc5f94ae2016-08-16 10:34:59 +010047
48 PWM_OUT_EN,
Lee Jonesf66d78f2016-08-16 10:35:01 +010049 PWM_CPT_EN,
Lee Jonesc5f94ae2016-08-16 10:34:59 +010050
51 PWM_CPT_INT_EN,
Lee Jonesf66d78f2016-08-16 10:35:01 +010052 PWM_CPT_INT_STAT,
Lee Jones378fe112014-07-14 15:33:27 +010053
54 /* Keep last */
55 MAX_REGFIELDS
56};
57
Lee Jones7d8a600c2016-08-16 10:35:07 +010058/*
59 * Each capture input can be programmed to detect rising-edge, falling-edge,
60 * either edge or neither egde.
Lee Jonesf66d78f2016-08-16 10:35:01 +010061 */
62enum sti_cpt_edge {
63 CPT_EDGE_DISABLED,
64 CPT_EDGE_RISING,
65 CPT_EDGE_FALLING,
66 CPT_EDGE_BOTH,
67};
68
Lee Jones3f0925b2016-08-16 10:35:03 +010069struct sti_cpt_ddata {
70 u32 snapshot[3];
71 unsigned int index;
72 struct mutex lock;
73 wait_queue_head_t wait;
74};
75
Lee Jones378fe112014-07-14 15:33:27 +010076struct sti_pwm_compat_data {
77 const struct reg_field *reg_fields;
Lee Jones3f0925b2016-08-16 10:35:03 +010078 unsigned int pwm_num_devs;
79 unsigned int cpt_num_devs;
Lee Jones378fe112014-07-14 15:33:27 +010080 unsigned int max_pwm_cnt;
81 unsigned int max_prescale;
82};
83
84struct sti_pwm_chip {
85 struct device *dev;
Lee Jonesc5f94ae2016-08-16 10:34:59 +010086 struct clk *pwm_clk;
Lee Jonesd66a9282016-08-16 10:35:02 +010087 struct clk *cpt_clk;
Lee Jones378fe112014-07-14 15:33:27 +010088 struct regmap *regmap;
89 struct sti_pwm_compat_data *cdata;
Ajit Pal Singhbf9cc802014-07-14 15:33:29 +010090 struct regmap_field *prescale_low;
91 struct regmap_field *prescale_high;
Lee Jonesc5f94ae2016-08-16 10:34:59 +010092 struct regmap_field *pwm_out_en;
Lee Jones25eb5382016-08-16 10:35:04 +010093 struct regmap_field *pwm_cpt_en;
Lee Jonesc5f94ae2016-08-16 10:34:59 +010094 struct regmap_field *pwm_cpt_int_en;
Lee Jones25eb5382016-08-16 10:35:04 +010095 struct regmap_field *pwm_cpt_int_stat;
Lee Jones378fe112014-07-14 15:33:27 +010096 struct pwm_chip chip;
Ajit Pal Singh51651662014-07-14 15:33:30 +010097 struct pwm_device *cur;
Ajit Pal Singhcd264b62015-01-29 14:34:43 +053098 unsigned long configured;
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +010099 unsigned int en_count;
100 struct mutex sti_pwm_lock; /* To sync between enable/disable calls */
Lee Jones378fe112014-07-14 15:33:27 +0100101 void __iomem *mmio;
102};
103
104static const struct reg_field sti_pwm_regfields[MAX_REGFIELDS] = {
Lee Jones7d8a600c2016-08-16 10:35:07 +0100105 [PWMCLK_PRESCALE_LOW] = REG_FIELD(STI_PWM_CTRL, 0, 3),
106 [PWMCLK_PRESCALE_HIGH] = REG_FIELD(STI_PWM_CTRL, 11, 14),
107 [CPTCLK_PRESCALE] = REG_FIELD(STI_PWM_CTRL, 4, 8),
108 [PWM_OUT_EN] = REG_FIELD(STI_PWM_CTRL, 9, 9),
109 [PWM_CPT_EN] = REG_FIELD(STI_PWM_CTRL, 10, 10),
110 [PWM_CPT_INT_EN] = REG_FIELD(STI_INT_EN, 1, 4),
111 [PWM_CPT_INT_STAT] = REG_FIELD(STI_INT_STA, 1, 4),
Lee Jones378fe112014-07-14 15:33:27 +0100112};
113
114static inline struct sti_pwm_chip *to_sti_pwmchip(struct pwm_chip *chip)
115{
116 return container_of(chip, struct sti_pwm_chip, chip);
117}
118
119/*
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100120 * Calculate the prescaler value corresponding to the period.
Lee Jones378fe112014-07-14 15:33:27 +0100121 */
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100122static int sti_pwm_get_prescale(struct sti_pwm_chip *pc, unsigned long period,
123 unsigned int *prescale)
Lee Jones378fe112014-07-14 15:33:27 +0100124{
125 struct sti_pwm_compat_data *cdata = pc->cdata;
Lee Jonesd81738b2016-08-16 10:35:00 +0100126 unsigned long clk_rate;
Lee Jones7d8a600c2016-08-16 10:35:07 +0100127 unsigned long value;
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100128 unsigned int ps;
Lee Jones378fe112014-07-14 15:33:27 +0100129
Lee Jonesd81738b2016-08-16 10:35:00 +0100130 clk_rate = clk_get_rate(pc->pwm_clk);
131 if (!clk_rate) {
132 dev_err(pc->dev, "failed to get clock rate\n");
133 return -EINVAL;
134 }
135
Lee Jones378fe112014-07-14 15:33:27 +0100136 /*
Lee Jones7d8a600c2016-08-16 10:35:07 +0100137 * prescale = ((period_ns * clk_rate) / (10^9 * (max_pwm_cnt + 1)) - 1
Lee Jones378fe112014-07-14 15:33:27 +0100138 */
Lee Jones7d8a600c2016-08-16 10:35:07 +0100139 value = NSEC_PER_SEC / clk_rate;
140 value *= cdata->max_pwm_cnt + 1;
Lee Jones378fe112014-07-14 15:33:27 +0100141
Lee Jones7d8a600c2016-08-16 10:35:07 +0100142 if (period % value)
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100143 return -EINVAL;
Lee Jones7d8a600c2016-08-16 10:35:07 +0100144
145 ps = period / value - 1;
146 if (ps > cdata->max_prescale)
147 return -EINVAL;
148
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100149 *prescale = ps;
150
151 return 0;
Lee Jones378fe112014-07-14 15:33:27 +0100152}
153
Lee Jones378fe112014-07-14 15:33:27 +0100154/*
Lee Jones7d8a600c2016-08-16 10:35:07 +0100155 * For STiH4xx PWM IP, the PWM period is fixed to 256 local clock cycles. The
156 * only way to change the period (apart from changing the PWM input clock) is
157 * to change the PWM clock prescaler.
158 *
159 * The prescaler is of 8 bits, so 256 prescaler values and hence 256 possible
160 * period values are supported (for a particular clock rate). The requested
161 * period will be applied only if it matches one of these 256 values.
Lee Jones378fe112014-07-14 15:33:27 +0100162 */
163static int sti_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
Lee Jones7d8a600c2016-08-16 10:35:07 +0100164 int duty_ns, int period_ns)
Lee Jones378fe112014-07-14 15:33:27 +0100165{
166 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
167 struct sti_pwm_compat_data *cdata = pc->cdata;
Lee Jones7d8a600c2016-08-16 10:35:07 +0100168 unsigned int ncfg, value, prescale = 0;
Ajit Pal Singh51651662014-07-14 15:33:30 +0100169 struct pwm_device *cur = pc->cur;
Lee Jones378fe112014-07-14 15:33:27 +0100170 struct device *dev = pc->dev;
Ajit Pal Singh51651662014-07-14 15:33:30 +0100171 bool period_same = false;
Lee Jones7d8a600c2016-08-16 10:35:07 +0100172 int ret;
Lee Jones378fe112014-07-14 15:33:27 +0100173
Ajit Pal Singhcd264b62015-01-29 14:34:43 +0530174 ncfg = hweight_long(pc->configured);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100175 if (ncfg)
176 period_same = (period_ns == pwm_get_period(cur));
177
Lee Jones7d8a600c2016-08-16 10:35:07 +0100178 /*
179 * Allow configuration changes if one of the following conditions
180 * satisfy.
Lee Jones09022e62016-08-16 10:34:58 +0100181 * 1. No devices have been configured.
Lee Jones7d8a600c2016-08-16 10:35:07 +0100182 * 2. Only one device has been configured and the new request is for
183 * the same device.
184 * 3. Only one device has been configured and the new request is for
185 * a new device and period of the new device is same as the current
186 * configured period.
Lee Jones09022e62016-08-16 10:34:58 +0100187 * 4. More than one devices are configured and period of the new
Ajit Pal Singh51651662014-07-14 15:33:30 +0100188 * requestis the same as the current period.
Lee Jones378fe112014-07-14 15:33:27 +0100189 */
Ajit Pal Singh51651662014-07-14 15:33:30 +0100190 if (!ncfg ||
191 ((ncfg == 1) && (pwm->hwpwm == cur->hwpwm)) ||
192 ((ncfg == 1) && (pwm->hwpwm != cur->hwpwm) && period_same) ||
193 ((ncfg > 1) && period_same)) {
194 /* Enable clock before writing to PWM registers. */
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100195 ret = clk_enable(pc->pwm_clk);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100196 if (ret)
197 return ret;
198
Lee Jonesd66a9282016-08-16 10:35:02 +0100199 ret = clk_enable(pc->cpt_clk);
200 if (ret)
201 return ret;
202
Ajit Pal Singh51651662014-07-14 15:33:30 +0100203 if (!period_same) {
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100204 ret = sti_pwm_get_prescale(pc, period_ns, &prescale);
205 if (ret)
Ajit Pal Singh51651662014-07-14 15:33:30 +0100206 goto clk_dis;
Ajit Pal Singh51651662014-07-14 15:33:30 +0100207
Lee Jones7d8a600c2016-08-16 10:35:07 +0100208 value = prescale & PWM_PRESCALE_LOW_MASK;
209
210 ret = regmap_field_write(pc->prescale_low, value);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100211 if (ret)
212 goto clk_dis;
213
Lee Jones7d8a600c2016-08-16 10:35:07 +0100214 value = (prescale & PWM_PRESCALE_HIGH_MASK) >> 4;
215
216 ret = regmap_field_write(pc->prescale_high, value);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100217 if (ret)
218 goto clk_dis;
219 }
220
221 /*
222 * When PWMVal == 0, PWM pulse = 1 local clock cycle.
223 * When PWMVal == max_pwm_count,
224 * PWM pulse = (max_pwm_count + 1) local cycles,
225 * that is continuous pulse: signal never goes low.
226 */
Lee Jones7d8a600c2016-08-16 10:35:07 +0100227 value = cdata->max_pwm_cnt * duty_ns / period_ns;
Ajit Pal Singh51651662014-07-14 15:33:30 +0100228
Lee Jones7d8a600c2016-08-16 10:35:07 +0100229 ret = regmap_write(pc->regmap, PWM_OUT_VAL(pwm->hwpwm), value);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100230 if (ret)
231 goto clk_dis;
232
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100233 ret = regmap_field_write(pc->pwm_cpt_int_en, 0);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100234
Ajit Pal Singhcd264b62015-01-29 14:34:43 +0530235 set_bit(pwm->hwpwm, &pc->configured);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100236 pc->cur = pwm;
237
Lee Jones7d8a600c2016-08-16 10:35:07 +0100238 dev_dbg(dev, "prescale:%u, period:%i, duty:%i, value:%u\n",
239 prescale, period_ns, duty_ns, value);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100240 } else {
Lee Jones378fe112014-07-14 15:33:27 +0100241 return -EINVAL;
242 }
243
Lee Jones378fe112014-07-14 15:33:27 +0100244clk_dis:
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100245 clk_disable(pc->pwm_clk);
Lee Jonesd66a9282016-08-16 10:35:02 +0100246 clk_disable(pc->cpt_clk);
Lee Jones378fe112014-07-14 15:33:27 +0100247 return ret;
248}
249
250static int sti_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
251{
252 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
253 struct device *dev = pc->dev;
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100254 int ret = 0;
Lee Jones378fe112014-07-14 15:33:27 +0100255
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100256 /*
Lee Jones7d8a600c2016-08-16 10:35:07 +0100257 * Since we have a common enable for all PWM devices, do not enable if
258 * already enabled.
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100259 */
260 mutex_lock(&pc->sti_pwm_lock);
Lee Jones7d8a600c2016-08-16 10:35:07 +0100261
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100262 if (!pc->en_count) {
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100263 ret = clk_enable(pc->pwm_clk);
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100264 if (ret)
265 goto out;
Lee Jones378fe112014-07-14 15:33:27 +0100266
Lee Jonesd66a9282016-08-16 10:35:02 +0100267 ret = clk_enable(pc->cpt_clk);
268 if (ret)
269 goto out;
270
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100271 ret = regmap_field_write(pc->pwm_out_en, 1);
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100272 if (ret) {
Lee Jones7d8a600c2016-08-16 10:35:07 +0100273 dev_err(dev, "failed to enable PWM device %u: %d\n",
274 pwm->hwpwm, ret);
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100275 goto out;
276 }
277 }
Lee Jones7d8a600c2016-08-16 10:35:07 +0100278
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100279 pc->en_count++;
Lee Jones7d8a600c2016-08-16 10:35:07 +0100280
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100281out:
282 mutex_unlock(&pc->sti_pwm_lock);
Lee Jones378fe112014-07-14 15:33:27 +0100283 return ret;
284}
285
286static void sti_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
287{
288 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
Lee Jones378fe112014-07-14 15:33:27 +0100289
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100290 mutex_lock(&pc->sti_pwm_lock);
Lee Jones7d8a600c2016-08-16 10:35:07 +0100291
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100292 if (--pc->en_count) {
293 mutex_unlock(&pc->sti_pwm_lock);
294 return;
295 }
Lee Jones7d8a600c2016-08-16 10:35:07 +0100296
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100297 regmap_field_write(pc->pwm_out_en, 0);
Lee Jones378fe112014-07-14 15:33:27 +0100298
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100299 clk_disable(pc->pwm_clk);
Lee Jonesd66a9282016-08-16 10:35:02 +0100300 clk_disable(pc->cpt_clk);
Lee Jones7d8a600c2016-08-16 10:35:07 +0100301
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100302 mutex_unlock(&pc->sti_pwm_lock);
Lee Jones378fe112014-07-14 15:33:27 +0100303}
304
Ajit Pal Singhcd264b62015-01-29 14:34:43 +0530305static void sti_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
306{
307 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
308
309 clear_bit(pwm->hwpwm, &pc->configured);
310}
311
Lee Jonesc97267a2016-08-16 10:35:05 +0100312static int sti_pwm_capture(struct pwm_chip *chip, struct pwm_device *pwm,
313 struct pwm_capture *result, unsigned long timeout)
314{
315 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
316 struct sti_pwm_compat_data *cdata = pc->cdata;
317 struct sti_cpt_ddata *ddata = pwm_get_chip_data(pwm);
318 struct device *dev = pc->dev;
319 unsigned int effective_ticks;
320 unsigned long long high, low;
321 int ret;
322
323 if (pwm->hwpwm >= cdata->cpt_num_devs) {
324 dev_err(dev, "device %u is not valid\n", pwm->hwpwm);
325 return -EINVAL;
326 }
327
328 mutex_lock(&ddata->lock);
329 ddata->index = 0;
330
331 /* Prepare capture measurement */
332 regmap_write(pc->regmap, PWM_CPT_EDGE(pwm->hwpwm), CPT_EDGE_RISING);
333 regmap_field_write(pc->pwm_cpt_int_en, BIT(pwm->hwpwm));
334
335 /* Enable capture */
336 ret = regmap_field_write(pc->pwm_cpt_en, 1);
337 if (ret) {
338 dev_err(dev, "failed to enable PWM capture %u: %d\n",
339 pwm->hwpwm, ret);
340 goto out;
341 }
342
343 ret = wait_event_interruptible_timeout(ddata->wait, ddata->index > 1,
344 msecs_to_jiffies(timeout));
345
346 regmap_write(pc->regmap, PWM_CPT_EDGE(pwm->hwpwm), CPT_EDGE_DISABLED);
347
348 if (ret == -ERESTARTSYS)
349 goto out;
350
351 switch (ddata->index) {
352 case 0:
353 case 1:
354 /*
355 * Getting here could mean:
356 * - input signal is constant of less than 1 Hz
357 * - there is no input signal at all
358 *
359 * In such case the frequency is rounded down to 0
360 */
361 result->period = 0;
362 result->duty_cycle = 0;
363
364 break;
365
366 case 2:
367 /* We have everying we need */
368 high = ddata->snapshot[1] - ddata->snapshot[0];
369 low = ddata->snapshot[2] - ddata->snapshot[1];
370
371 effective_ticks = clk_get_rate(pc->cpt_clk);
372
373 result->period = (high + low) * NSEC_PER_SEC;
374 result->period /= effective_ticks;
375
376 result->duty_cycle = high * NSEC_PER_SEC;
377 result->duty_cycle /= effective_ticks;
378
379 break;
380
381 default:
382 dev_err(dev, "internal error\n");
383 break;
384 }
385
386out:
387 /* Disable capture */
388 regmap_field_write(pc->pwm_cpt_en, 0);
389
390 mutex_unlock(&ddata->lock);
391 return ret;
392}
393
Lee Jones378fe112014-07-14 15:33:27 +0100394static const struct pwm_ops sti_pwm_ops = {
Lee Jonesc97267a2016-08-16 10:35:05 +0100395 .capture = sti_pwm_capture,
Lee Jones378fe112014-07-14 15:33:27 +0100396 .config = sti_pwm_config,
397 .enable = sti_pwm_enable,
398 .disable = sti_pwm_disable,
Ajit Pal Singhcd264b62015-01-29 14:34:43 +0530399 .free = sti_pwm_free,
Lee Jones378fe112014-07-14 15:33:27 +0100400 .owner = THIS_MODULE,
401};
402
Lee Jones25eb5382016-08-16 10:35:04 +0100403static irqreturn_t sti_pwm_interrupt(int irq, void *data)
404{
405 struct sti_pwm_chip *pc = data;
406 struct device *dev = pc->dev;
407 struct sti_cpt_ddata *ddata;
408 int devicenum;
409 unsigned int cpt_int_stat;
410 unsigned int reg;
411 int ret = IRQ_NONE;
412
413 ret = regmap_field_read(pc->pwm_cpt_int_stat, &cpt_int_stat);
414 if (ret)
415 return ret;
416
417 while (cpt_int_stat) {
418 devicenum = ffs(cpt_int_stat) - 1;
419
420 ddata = pwm_get_chip_data(&pc->chip.pwms[devicenum]);
421
422 /*
423 * Capture input:
424 * _______ _______
425 * | | | |
426 * __| |_________________| |________
427 * ^0 ^1 ^2
428 *
Lee Jones7d8a600c2016-08-16 10:35:07 +0100429 * Capture start by the first available rising edge. When a
430 * capture event occurs, capture value (CPT_VALx) is stored,
431 * index incremented, capture edge changed.
Lee Jones25eb5382016-08-16 10:35:04 +0100432 *
Lee Jones7d8a600c2016-08-16 10:35:07 +0100433 * After the capture, if the index > 1, we have collected the
434 * necessary data so we signal the thread waiting for it and
435 * disable the capture by setting capture edge to none
Lee Jones25eb5382016-08-16 10:35:04 +0100436 */
437
438 regmap_read(pc->regmap,
439 PWM_CPT_VAL(devicenum),
440 &ddata->snapshot[ddata->index]);
441
442 switch (ddata->index) {
443 case 0:
444 case 1:
445 regmap_read(pc->regmap, PWM_CPT_EDGE(devicenum), &reg);
446 reg ^= PWM_CPT_EDGE_MASK;
447 regmap_write(pc->regmap, PWM_CPT_EDGE(devicenum), reg);
448
449 ddata->index++;
450 break;
Lee Jones7d8a600c2016-08-16 10:35:07 +0100451
Lee Jones25eb5382016-08-16 10:35:04 +0100452 case 2:
453 regmap_write(pc->regmap,
454 PWM_CPT_EDGE(devicenum),
455 CPT_EDGE_DISABLED);
456 wake_up(&ddata->wait);
457 break;
Lee Jones7d8a600c2016-08-16 10:35:07 +0100458
Lee Jones25eb5382016-08-16 10:35:04 +0100459 default:
460 dev_err(dev, "Internal error\n");
461 }
462
463 cpt_int_stat &= ~BIT_MASK(devicenum);
464
465 ret = IRQ_HANDLED;
466 }
467
468 /* Just ACK everything */
469 regmap_write(pc->regmap, PWM_INT_ACK, PWM_INT_ACK_MASK);
470
471 return ret;
472}
473
Lee Jones378fe112014-07-14 15:33:27 +0100474static int sti_pwm_probe_dt(struct sti_pwm_chip *pc)
475{
476 struct device *dev = pc->dev;
477 const struct reg_field *reg_fields;
478 struct device_node *np = dev->of_node;
479 struct sti_pwm_compat_data *cdata = pc->cdata;
Lee Jones09022e62016-08-16 10:34:58 +0100480 u32 num_devs;
Lee Jones3f0925b2016-08-16 10:35:03 +0100481 int ret;
Lee Jones378fe112014-07-14 15:33:27 +0100482
Lee Jones3f0925b2016-08-16 10:35:03 +0100483 ret = of_property_read_u32(np, "st,pwm-num-chan", &num_devs);
484 if (!ret)
485 cdata->pwm_num_devs = num_devs;
486
487 ret = of_property_read_u32(np, "st,capture-num-chan", &num_devs);
488 if (!ret)
489 cdata->cpt_num_devs = num_devs;
Lee Jones378fe112014-07-14 15:33:27 +0100490
Lee Jones85a834c2016-08-16 10:35:06 +0100491 if (!cdata->pwm_num_devs && !cdata->cpt_num_devs) {
492 dev_err(dev, "No channels configured\n");
493 return -EINVAL;
494 }
495
Lee Jones378fe112014-07-14 15:33:27 +0100496 reg_fields = cdata->reg_fields;
497
Ajit Pal Singhbf9cc802014-07-14 15:33:29 +0100498 pc->prescale_low = devm_regmap_field_alloc(dev, pc->regmap,
499 reg_fields[PWMCLK_PRESCALE_LOW]);
500 if (IS_ERR(pc->prescale_low))
501 return PTR_ERR(pc->prescale_low);
502
503 pc->prescale_high = devm_regmap_field_alloc(dev, pc->regmap,
504 reg_fields[PWMCLK_PRESCALE_HIGH]);
505 if (IS_ERR(pc->prescale_high))
506 return PTR_ERR(pc->prescale_high);
Lee Jones378fe112014-07-14 15:33:27 +0100507
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100508 pc->pwm_out_en = devm_regmap_field_alloc(dev, pc->regmap,
509 reg_fields[PWM_OUT_EN]);
510 if (IS_ERR(pc->pwm_out_en))
511 return PTR_ERR(pc->pwm_out_en);
512
Lee Jonesc97267a2016-08-16 10:35:05 +0100513 pc->pwm_cpt_en = devm_regmap_field_alloc(dev, pc->regmap,
514 reg_fields[PWM_CPT_EN]);
515 if (IS_ERR(pc->pwm_cpt_en))
516 return PTR_ERR(pc->pwm_cpt_en);
517
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100518 pc->pwm_cpt_int_en = devm_regmap_field_alloc(dev, pc->regmap,
Lee Jones7d8a600c2016-08-16 10:35:07 +0100519 reg_fields[PWM_CPT_INT_EN]);
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100520 if (IS_ERR(pc->pwm_cpt_int_en))
521 return PTR_ERR(pc->pwm_cpt_int_en);
Lee Jones378fe112014-07-14 15:33:27 +0100522
Lee Jones25eb5382016-08-16 10:35:04 +0100523 pc->pwm_cpt_int_stat = devm_regmap_field_alloc(dev, pc->regmap,
524 reg_fields[PWM_CPT_INT_STAT]);
525 if (PTR_ERR_OR_ZERO(pc->pwm_cpt_int_stat))
526 return PTR_ERR(pc->pwm_cpt_int_stat);
527
Lee Jones378fe112014-07-14 15:33:27 +0100528 return 0;
529}
530
531static const struct regmap_config sti_pwm_regmap_config = {
532 .reg_bits = 32,
533 .val_bits = 32,
534 .reg_stride = 4,
535};
536
537static int sti_pwm_probe(struct platform_device *pdev)
538{
539 struct device *dev = &pdev->dev;
540 struct sti_pwm_compat_data *cdata;
541 struct sti_pwm_chip *pc;
Lee Jones3f0925b2016-08-16 10:35:03 +0100542 unsigned int i;
Lee Jones25eb5382016-08-16 10:35:04 +0100543 int irq, ret;
Lee Jones378fe112014-07-14 15:33:27 +0100544
545 pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
546 if (!pc)
547 return -ENOMEM;
548
549 cdata = devm_kzalloc(dev, sizeof(*cdata), GFP_KERNEL);
550 if (!cdata)
551 return -ENOMEM;
552
Yangtao Li728cd3e2019-12-29 08:05:46 +0000553 pc->mmio = devm_platform_ioremap_resource(pdev, 0);
Lee Jones378fe112014-07-14 15:33:27 +0100554 if (IS_ERR(pc->mmio))
555 return PTR_ERR(pc->mmio);
556
557 pc->regmap = devm_regmap_init_mmio(dev, pc->mmio,
558 &sti_pwm_regmap_config);
559 if (IS_ERR(pc->regmap))
560 return PTR_ERR(pc->regmap);
561
Lee Jones25eb5382016-08-16 10:35:04 +0100562 irq = platform_get_irq(pdev, 0);
Stephen Boydfb5a35d2019-07-30 11:15:36 -0700563 if (irq < 0)
Lee Jones25eb5382016-08-16 10:35:04 +0100564 return irq;
Lee Jones25eb5382016-08-16 10:35:04 +0100565
566 ret = devm_request_irq(&pdev->dev, irq, sti_pwm_interrupt, 0,
567 pdev->name, pc);
568 if (ret < 0) {
569 dev_err(&pdev->dev, "Failed to request IRQ\n");
570 return ret;
571 }
572
Lee Jones378fe112014-07-14 15:33:27 +0100573 /*
574 * Setup PWM data with default values: some values could be replaced
575 * with specific ones provided from Device Tree.
576 */
Lee Jones7d8a600c2016-08-16 10:35:07 +0100577 cdata->reg_fields = sti_pwm_regfields;
Lee Jones378fe112014-07-14 15:33:27 +0100578 cdata->max_prescale = 0xff;
Lee Jones7d8a600c2016-08-16 10:35:07 +0100579 cdata->max_pwm_cnt = 255;
Lee Jones85a834c2016-08-16 10:35:06 +0100580 cdata->pwm_num_devs = 0;
Lee Jones3f0925b2016-08-16 10:35:03 +0100581 cdata->cpt_num_devs = 0;
Lee Jones378fe112014-07-14 15:33:27 +0100582
583 pc->cdata = cdata;
584 pc->dev = dev;
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100585 pc->en_count = 0;
586 mutex_init(&pc->sti_pwm_lock);
Lee Jones378fe112014-07-14 15:33:27 +0100587
588 ret = sti_pwm_probe_dt(pc);
589 if (ret)
590 return ret;
591
Thierry Redingfd3ae022020-11-11 19:24:29 +0100592 if (cdata->pwm_num_devs) {
593 pc->pwm_clk = of_clk_get_by_name(dev->of_node, "pwm");
594 if (IS_ERR(pc->pwm_clk)) {
595 dev_err(dev, "failed to get PWM clock\n");
596 return PTR_ERR(pc->pwm_clk);
597 }
Lee Jones85a834c2016-08-16 10:35:06 +0100598
Thierry Redingfd3ae022020-11-11 19:24:29 +0100599 ret = clk_prepare(pc->pwm_clk);
600 if (ret) {
601 dev_err(dev, "failed to prepare clock\n");
602 return ret;
603 }
Lee Jones378fe112014-07-14 15:33:27 +0100604 }
605
Thierry Redingfd3ae022020-11-11 19:24:29 +0100606 if (cdata->cpt_num_devs) {
607 pc->cpt_clk = of_clk_get_by_name(dev->of_node, "capture");
608 if (IS_ERR(pc->cpt_clk)) {
609 dev_err(dev, "failed to get PWM capture clock\n");
610 return PTR_ERR(pc->cpt_clk);
611 }
612
613 ret = clk_prepare(pc->cpt_clk);
614 if (ret) {
615 dev_err(dev, "failed to prepare clock\n");
616 return ret;
617 }
Lee Jones378fe112014-07-14 15:33:27 +0100618 }
619
Lee Jones378fe112014-07-14 15:33:27 +0100620 pc->chip.dev = dev;
621 pc->chip.ops = &sti_pwm_ops;
Lee Jones3f0925b2016-08-16 10:35:03 +0100622 pc->chip.npwm = pc->cdata->pwm_num_devs;
Lee Jones378fe112014-07-14 15:33:27 +0100623
624 ret = pwmchip_add(&pc->chip);
625 if (ret < 0) {
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100626 clk_unprepare(pc->pwm_clk);
Lee Jonesd66a9282016-08-16 10:35:02 +0100627 clk_unprepare(pc->cpt_clk);
Lee Jones378fe112014-07-14 15:33:27 +0100628 return ret;
629 }
630
Lee Jones3f0925b2016-08-16 10:35:03 +0100631 for (i = 0; i < cdata->cpt_num_devs; i++) {
632 struct sti_cpt_ddata *ddata;
633
634 ddata = devm_kzalloc(dev, sizeof(*ddata), GFP_KERNEL);
635 if (!ddata)
636 return -ENOMEM;
637
638 init_waitqueue_head(&ddata->wait);
639 mutex_init(&ddata->lock);
640
641 pwm_set_chip_data(&pc->chip.pwms[i], ddata);
642 }
643
Lee Jones378fe112014-07-14 15:33:27 +0100644 platform_set_drvdata(pdev, pc);
645
646 return 0;
647}
648
649static int sti_pwm_remove(struct platform_device *pdev)
650{
651 struct sti_pwm_chip *pc = platform_get_drvdata(pdev);
Lee Jones378fe112014-07-14 15:33:27 +0100652
Uwe Kleine-König0e719e82021-03-30 14:37:42 +0200653 pwmchip_remove(&pc->chip);
Lee Jones378fe112014-07-14 15:33:27 +0100654
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100655 clk_unprepare(pc->pwm_clk);
Lee Jonesd66a9282016-08-16 10:35:02 +0100656 clk_unprepare(pc->cpt_clk);
Lee Jones378fe112014-07-14 15:33:27 +0100657
Uwe Kleine-König0e719e82021-03-30 14:37:42 +0200658 return 0;
Lee Jones378fe112014-07-14 15:33:27 +0100659}
660
661static const struct of_device_id sti_pwm_of_match[] = {
662 { .compatible = "st,sti-pwm", },
663 { /* sentinel */ }
664};
665MODULE_DEVICE_TABLE(of, sti_pwm_of_match);
666
667static struct platform_driver sti_pwm_driver = {
668 .driver = {
669 .name = "sti-pwm",
670 .of_match_table = sti_pwm_of_match,
671 },
672 .probe = sti_pwm_probe,
673 .remove = sti_pwm_remove,
674};
675module_platform_driver(sti_pwm_driver);
676
677MODULE_AUTHOR("Ajit Pal Singh <ajitpal.singh@st.com>");
678MODULE_DESCRIPTION("STMicroelectronics ST PWM driver");
679MODULE_LICENSE("GPL");