blob: bd753fbad08ad8ad5efe620f0e7403379b67f0b1 [file] [log] [blame]
Lee Jones378fe112014-07-14 15:33:27 +01001/*
2 * PWM device driver for ST SoCs.
3 * Author: Ajit Pal Singh <ajitpal.singh@st.com>
4 *
5 * Copyright (C) 2013-2014 STMicroelectronics (R&D) Limited
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
Lee Jones378fe112014-07-14 15:33:27 +010013#include <linux/clk.h>
Lee Jones3f0925b2016-08-16 10:35:03 +010014#include <linux/interrupt.h>
Lee Jones378fe112014-07-14 15:33:27 +010015#include <linux/math64.h>
16#include <linux/mfd/syscon.h>
17#include <linux/module.h>
18#include <linux/of.h>
19#include <linux/platform_device.h>
20#include <linux/pwm.h>
21#include <linux/regmap.h>
Lee Jones3f0925b2016-08-16 10:35:03 +010022#include <linux/sched.h>
Lee Jones378fe112014-07-14 15:33:27 +010023#include <linux/slab.h>
24#include <linux/time.h>
Lee Jones3f0925b2016-08-16 10:35:03 +010025#include <linux/wait.h>
Lee Jones378fe112014-07-14 15:33:27 +010026
Lee Jonesc5f94ae2016-08-16 10:34:59 +010027#define PWM_OUT_VAL(x) (0x00 + (4 * (x))) /* Device's Duty Cycle register */
Lee Jonesf66d78f2016-08-16 10:35:01 +010028#define PWM_CPT_VAL(x) (0x10 + (4 * (x))) /* Capture value */
29#define PWM_CPT_EDGE(x) (0x30 + (4 * (x))) /* Edge to capture on */
Lee Jonesc5f94ae2016-08-16 10:34:59 +010030
31#define STI_PWM_CTRL 0x50 /* Control/Config register */
32#define STI_INT_EN 0x54 /* Interrupt Enable/Disable register */
Lee Jonesf66d78f2016-08-16 10:35:01 +010033#define STI_INT_STA 0x58 /* Interrupt Status register */
34#define PWM_INT_ACK 0x5c
Ajit Pal Singhbf9cc802014-07-14 15:33:29 +010035#define PWM_PRESCALE_LOW_MASK 0x0f
36#define PWM_PRESCALE_HIGH_MASK 0xf0
Lee Jonesf66d78f2016-08-16 10:35:01 +010037#define PWM_CPT_EDGE_MASK 0x03
38#define PWM_INT_ACK_MASK 0x1ff
39
40#define STI_MAX_CPT_DEVS 4
41#define CPT_DC_MAX 0xff
Lee Jones378fe112014-07-14 15:33:27 +010042
43/* Regfield IDs */
44enum {
Lee Jonesc5f94ae2016-08-16 10:34:59 +010045 /* Bits in PWM_CTRL*/
Ajit Pal Singhbf9cc802014-07-14 15:33:29 +010046 PWMCLK_PRESCALE_LOW,
47 PWMCLK_PRESCALE_HIGH,
Lee Jonesf66d78f2016-08-16 10:35:01 +010048 CPTCLK_PRESCALE,
Lee Jonesc5f94ae2016-08-16 10:34:59 +010049
50 PWM_OUT_EN,
Lee Jonesf66d78f2016-08-16 10:35:01 +010051 PWM_CPT_EN,
Lee Jonesc5f94ae2016-08-16 10:34:59 +010052
53 PWM_CPT_INT_EN,
Lee Jonesf66d78f2016-08-16 10:35:01 +010054 PWM_CPT_INT_STAT,
Lee Jones378fe112014-07-14 15:33:27 +010055
56 /* Keep last */
57 MAX_REGFIELDS
58};
59
Lee Jonesf66d78f2016-08-16 10:35:01 +010060/* Each capture input can be programmed to detect rising-edge, falling-edge,
61 * either edge or neither egde
62 */
63enum sti_cpt_edge {
64 CPT_EDGE_DISABLED,
65 CPT_EDGE_RISING,
66 CPT_EDGE_FALLING,
67 CPT_EDGE_BOTH,
68};
69
Lee Jones3f0925b2016-08-16 10:35:03 +010070struct sti_cpt_ddata {
71 u32 snapshot[3];
72 unsigned int index;
73 struct mutex lock;
74 wait_queue_head_t wait;
75};
76
Lee Jones378fe112014-07-14 15:33:27 +010077struct sti_pwm_compat_data {
78 const struct reg_field *reg_fields;
Lee Jones3f0925b2016-08-16 10:35:03 +010079 unsigned int pwm_num_devs;
80 unsigned int cpt_num_devs;
Lee Jones378fe112014-07-14 15:33:27 +010081 unsigned int max_pwm_cnt;
82 unsigned int max_prescale;
83};
84
85struct sti_pwm_chip {
86 struct device *dev;
Lee Jonesc5f94ae2016-08-16 10:34:59 +010087 struct clk *pwm_clk;
Lee Jonesd66a9282016-08-16 10:35:02 +010088 struct clk *cpt_clk;
Lee Jones378fe112014-07-14 15:33:27 +010089 struct regmap *regmap;
90 struct sti_pwm_compat_data *cdata;
Ajit Pal Singhbf9cc802014-07-14 15:33:29 +010091 struct regmap_field *prescale_low;
92 struct regmap_field *prescale_high;
Lee Jonesc5f94ae2016-08-16 10:34:59 +010093 struct regmap_field *pwm_out_en;
Lee Jones25eb5382016-08-16 10:35:04 +010094 struct regmap_field *pwm_cpt_en;
Lee Jonesc5f94ae2016-08-16 10:34:59 +010095 struct regmap_field *pwm_cpt_int_en;
Lee Jones25eb5382016-08-16 10:35:04 +010096 struct regmap_field *pwm_cpt_int_stat;
Lee Jones378fe112014-07-14 15:33:27 +010097 struct pwm_chip chip;
Ajit Pal Singh51651662014-07-14 15:33:30 +010098 struct pwm_device *cur;
Ajit Pal Singhcd264b62015-01-29 14:34:43 +053099 unsigned long configured;
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100100 unsigned int en_count;
101 struct mutex sti_pwm_lock; /* To sync between enable/disable calls */
Lee Jones378fe112014-07-14 15:33:27 +0100102 void __iomem *mmio;
103};
104
105static const struct reg_field sti_pwm_regfields[MAX_REGFIELDS] = {
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100106 [PWMCLK_PRESCALE_LOW] = REG_FIELD(STI_PWM_CTRL, 0, 3),
107 [PWMCLK_PRESCALE_HIGH] = REG_FIELD(STI_PWM_CTRL, 11, 14),
Lee Jonesf66d78f2016-08-16 10:35:01 +0100108 [CPTCLK_PRESCALE] = REG_FIELD(STI_PWM_CTRL, 4, 8),
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100109 [PWM_OUT_EN] = REG_FIELD(STI_PWM_CTRL, 9, 9),
Lee Jonesf66d78f2016-08-16 10:35:01 +0100110 [PWM_CPT_EN] = REG_FIELD(STI_PWM_CTRL, 10, 10),
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100111 [PWM_CPT_INT_EN] = REG_FIELD(STI_INT_EN, 1, 4),
Lee Jonesf66d78f2016-08-16 10:35:01 +0100112 [PWM_CPT_INT_STAT] = REG_FIELD(STI_INT_STA, 1, 4),
Lee Jones378fe112014-07-14 15:33:27 +0100113};
114
115static inline struct sti_pwm_chip *to_sti_pwmchip(struct pwm_chip *chip)
116{
117 return container_of(chip, struct sti_pwm_chip, chip);
118}
119
120/*
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100121 * Calculate the prescaler value corresponding to the period.
Lee Jones378fe112014-07-14 15:33:27 +0100122 */
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100123static int sti_pwm_get_prescale(struct sti_pwm_chip *pc, unsigned long period,
124 unsigned int *prescale)
Lee Jones378fe112014-07-14 15:33:27 +0100125{
126 struct sti_pwm_compat_data *cdata = pc->cdata;
Lee Jonesd81738b2016-08-16 10:35:00 +0100127 unsigned long clk_rate;
Lee Jones378fe112014-07-14 15:33:27 +0100128 unsigned long val;
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100129 unsigned int ps;
Lee Jones378fe112014-07-14 15:33:27 +0100130
Lee Jonesd81738b2016-08-16 10:35:00 +0100131 clk_rate = clk_get_rate(pc->pwm_clk);
132 if (!clk_rate) {
133 dev_err(pc->dev, "failed to get clock rate\n");
134 return -EINVAL;
135 }
136
Lee Jones378fe112014-07-14 15:33:27 +0100137 /*
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100138 * prescale = ((period_ns * clk_rate) / (10^9 * (max_pwm_count + 1)) - 1
Lee Jones378fe112014-07-14 15:33:27 +0100139 */
Lee Jonesd81738b2016-08-16 10:35:00 +0100140 val = NSEC_PER_SEC / clk_rate;
Lee Jones378fe112014-07-14 15:33:27 +0100141 val *= cdata->max_pwm_cnt + 1;
142
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100143 if (period % val) {
144 return -EINVAL;
145 } else {
146 ps = period / val - 1;
147 if (ps > cdata->max_prescale)
148 return -EINVAL;
Lee Jones378fe112014-07-14 15:33:27 +0100149 }
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100150 *prescale = ps;
151
152 return 0;
Lee Jones378fe112014-07-14 15:33:27 +0100153}
154
Lee Jones378fe112014-07-14 15:33:27 +0100155/*
156 * For STiH4xx PWM IP, the PWM period is fixed to 256 local clock cycles.
157 * The only way to change the period (apart from changing the PWM input clock)
158 * is to change the PWM clock prescaler.
Ajit Pal Singhbf9cc802014-07-14 15:33:29 +0100159 * The prescaler is of 8 bits, so 256 prescaler values and hence
160 * 256 possible period values are supported (for a particular clock rate).
Lee Jones378fe112014-07-14 15:33:27 +0100161 * The requested period will be applied only if it matches one of these
Ajit Pal Singhbf9cc802014-07-14 15:33:29 +0100162 * 256 values.
Lee Jones378fe112014-07-14 15:33:27 +0100163 */
164static int sti_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
165 int duty_ns, int period_ns)
166{
167 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
168 struct sti_pwm_compat_data *cdata = pc->cdata;
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 unsigned int prescale = 0, pwmvalx;
Lee Jones378fe112014-07-14 15:33:27 +0100172 int ret;
Ajit Pal Singh51651662014-07-14 15:33:30 +0100173 unsigned int ncfg;
174 bool period_same = false;
Lee Jones378fe112014-07-14 15:33:27 +0100175
Ajit Pal Singhcd264b62015-01-29 14:34:43 +0530176 ncfg = hweight_long(pc->configured);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100177 if (ncfg)
178 period_same = (period_ns == pwm_get_period(cur));
179
180 /* Allow configuration changes if one of the
181 * following conditions satisfy.
Lee Jones09022e62016-08-16 10:34:58 +0100182 * 1. No devices have been configured.
183 * 2. Only one device has been configured and the new request
184 * is for the same device.
185 * 3. Only one device has been configured and the new request is
186 * for a new device and period of the new device is same as
Ajit Pal Singh51651662014-07-14 15:33:30 +0100187 * the current configured period.
Lee Jones09022e62016-08-16 10:34:58 +0100188 * 4. More than one devices are configured and period of the new
Ajit Pal Singh51651662014-07-14 15:33:30 +0100189 * requestis the same as the current period.
Lee Jones378fe112014-07-14 15:33:27 +0100190 */
Ajit Pal Singh51651662014-07-14 15:33:30 +0100191 if (!ncfg ||
192 ((ncfg == 1) && (pwm->hwpwm == cur->hwpwm)) ||
193 ((ncfg == 1) && (pwm->hwpwm != cur->hwpwm) && period_same) ||
194 ((ncfg > 1) && period_same)) {
195 /* Enable clock before writing to PWM registers. */
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100196 ret = clk_enable(pc->pwm_clk);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100197 if (ret)
198 return ret;
199
Lee Jonesd66a9282016-08-16 10:35:02 +0100200 ret = clk_enable(pc->cpt_clk);
201 if (ret)
202 return ret;
203
Ajit Pal Singh51651662014-07-14 15:33:30 +0100204 if (!period_same) {
Ajit Pal Singh3aacd3e2014-07-14 15:33:32 +0100205 ret = sti_pwm_get_prescale(pc, period_ns, &prescale);
206 if (ret)
Ajit Pal Singh51651662014-07-14 15:33:30 +0100207 goto clk_dis;
Ajit Pal Singh51651662014-07-14 15:33:30 +0100208
209 ret =
210 regmap_field_write(pc->prescale_low,
211 prescale & PWM_PRESCALE_LOW_MASK);
212 if (ret)
213 goto clk_dis;
214
215 ret =
216 regmap_field_write(pc->prescale_high,
217 (prescale & PWM_PRESCALE_HIGH_MASK) >> 4);
218 if (ret)
219 goto clk_dis;
220 }
221
222 /*
223 * When PWMVal == 0, PWM pulse = 1 local clock cycle.
224 * When PWMVal == max_pwm_count,
225 * PWM pulse = (max_pwm_count + 1) local cycles,
226 * that is continuous pulse: signal never goes low.
227 */
228 pwmvalx = cdata->max_pwm_cnt * duty_ns / period_ns;
229
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100230 ret = regmap_write(pc->regmap,
231 PWM_OUT_VAL(pwm->hwpwm), pwmvalx);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100232 if (ret)
233 goto clk_dis;
234
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100235 ret = regmap_field_write(pc->pwm_cpt_int_en, 0);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100236
Ajit Pal Singhcd264b62015-01-29 14:34:43 +0530237 set_bit(pwm->hwpwm, &pc->configured);
Ajit Pal Singh51651662014-07-14 15:33:30 +0100238 pc->cur = pwm;
239
240 dev_dbg(dev, "prescale:%u, period:%i, duty:%i, pwmvalx:%u\n",
241 prescale, period_ns, duty_ns, pwmvalx);
242 } else {
Lee Jones378fe112014-07-14 15:33:27 +0100243 return -EINVAL;
244 }
245
Lee Jones378fe112014-07-14 15:33:27 +0100246clk_dis:
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100247 clk_disable(pc->pwm_clk);
Lee Jonesd66a9282016-08-16 10:35:02 +0100248 clk_disable(pc->cpt_clk);
Lee Jones378fe112014-07-14 15:33:27 +0100249 return ret;
250}
251
252static int sti_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
253{
254 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
255 struct device *dev = pc->dev;
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100256 int ret = 0;
Lee Jones378fe112014-07-14 15:33:27 +0100257
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100258 /*
Lee Jones09022e62016-08-16 10:34:58 +0100259 * Since we have a common enable for all PWM devices,
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100260 * do not enable if already enabled.
261 */
262 mutex_lock(&pc->sti_pwm_lock);
263 if (!pc->en_count) {
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100264 ret = clk_enable(pc->pwm_clk);
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100265 if (ret)
266 goto out;
Lee Jones378fe112014-07-14 15:33:27 +0100267
Lee Jonesd66a9282016-08-16 10:35:02 +0100268 ret = clk_enable(pc->cpt_clk);
269 if (ret)
270 goto out;
271
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100272 ret = regmap_field_write(pc->pwm_out_en, 1);
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100273 if (ret) {
274 dev_err(dev, "failed to enable PWM device:%d\n",
275 pwm->hwpwm);
276 goto out;
277 }
278 }
279 pc->en_count++;
280out:
281 mutex_unlock(&pc->sti_pwm_lock);
Lee Jones378fe112014-07-14 15:33:27 +0100282 return ret;
283}
284
285static void sti_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
286{
287 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
Lee Jones378fe112014-07-14 15:33:27 +0100288
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100289 mutex_lock(&pc->sti_pwm_lock);
290 if (--pc->en_count) {
291 mutex_unlock(&pc->sti_pwm_lock);
292 return;
293 }
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100294 regmap_field_write(pc->pwm_out_en, 0);
Lee Jones378fe112014-07-14 15:33:27 +0100295
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100296 clk_disable(pc->pwm_clk);
Lee Jonesd66a9282016-08-16 10:35:02 +0100297 clk_disable(pc->cpt_clk);
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100298 mutex_unlock(&pc->sti_pwm_lock);
Lee Jones378fe112014-07-14 15:33:27 +0100299}
300
Ajit Pal Singhcd264b62015-01-29 14:34:43 +0530301static void sti_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
302{
303 struct sti_pwm_chip *pc = to_sti_pwmchip(chip);
304
305 clear_bit(pwm->hwpwm, &pc->configured);
306}
307
Lee Jones378fe112014-07-14 15:33:27 +0100308static const struct pwm_ops sti_pwm_ops = {
309 .config = sti_pwm_config,
310 .enable = sti_pwm_enable,
311 .disable = sti_pwm_disable,
Ajit Pal Singhcd264b62015-01-29 14:34:43 +0530312 .free = sti_pwm_free,
Lee Jones378fe112014-07-14 15:33:27 +0100313 .owner = THIS_MODULE,
314};
315
Lee Jones25eb5382016-08-16 10:35:04 +0100316static irqreturn_t sti_pwm_interrupt(int irq, void *data)
317{
318 struct sti_pwm_chip *pc = data;
319 struct device *dev = pc->dev;
320 struct sti_cpt_ddata *ddata;
321 int devicenum;
322 unsigned int cpt_int_stat;
323 unsigned int reg;
324 int ret = IRQ_NONE;
325
326 ret = regmap_field_read(pc->pwm_cpt_int_stat, &cpt_int_stat);
327 if (ret)
328 return ret;
329
330 while (cpt_int_stat) {
331 devicenum = ffs(cpt_int_stat) - 1;
332
333 ddata = pwm_get_chip_data(&pc->chip.pwms[devicenum]);
334
335 /*
336 * Capture input:
337 * _______ _______
338 * | | | |
339 * __| |_________________| |________
340 * ^0 ^1 ^2
341 *
342 * Capture start by the first available rising edge
343 * When a capture event occurs, capture value (CPT_VALx)
344 * is stored, index incremented, capture edge changed.
345 *
346 * After the capture, if the index > 1, we have collected
347 * the necessary data so we signal the thread waiting for it
348 * and disable the capture by setting capture edge to none
349 *
350 */
351
352 regmap_read(pc->regmap,
353 PWM_CPT_VAL(devicenum),
354 &ddata->snapshot[ddata->index]);
355
356 switch (ddata->index) {
357 case 0:
358 case 1:
359 regmap_read(pc->regmap, PWM_CPT_EDGE(devicenum), &reg);
360 reg ^= PWM_CPT_EDGE_MASK;
361 regmap_write(pc->regmap, PWM_CPT_EDGE(devicenum), reg);
362
363 ddata->index++;
364 break;
365 case 2:
366 regmap_write(pc->regmap,
367 PWM_CPT_EDGE(devicenum),
368 CPT_EDGE_DISABLED);
369 wake_up(&ddata->wait);
370 break;
371 default:
372 dev_err(dev, "Internal error\n");
373 }
374
375 cpt_int_stat &= ~BIT_MASK(devicenum);
376
377 ret = IRQ_HANDLED;
378 }
379
380 /* Just ACK everything */
381 regmap_write(pc->regmap, PWM_INT_ACK, PWM_INT_ACK_MASK);
382
383 return ret;
384}
385
Lee Jones378fe112014-07-14 15:33:27 +0100386static int sti_pwm_probe_dt(struct sti_pwm_chip *pc)
387{
388 struct device *dev = pc->dev;
389 const struct reg_field *reg_fields;
390 struct device_node *np = dev->of_node;
391 struct sti_pwm_compat_data *cdata = pc->cdata;
Lee Jones09022e62016-08-16 10:34:58 +0100392 u32 num_devs;
Lee Jones3f0925b2016-08-16 10:35:03 +0100393 int ret;
Lee Jones378fe112014-07-14 15:33:27 +0100394
Lee Jones3f0925b2016-08-16 10:35:03 +0100395 ret = of_property_read_u32(np, "st,pwm-num-chan", &num_devs);
396 if (!ret)
397 cdata->pwm_num_devs = num_devs;
398
399 ret = of_property_read_u32(np, "st,capture-num-chan", &num_devs);
400 if (!ret)
401 cdata->cpt_num_devs = num_devs;
Lee Jones378fe112014-07-14 15:33:27 +0100402
403 reg_fields = cdata->reg_fields;
404
Ajit Pal Singhbf9cc802014-07-14 15:33:29 +0100405 pc->prescale_low = devm_regmap_field_alloc(dev, pc->regmap,
406 reg_fields[PWMCLK_PRESCALE_LOW]);
407 if (IS_ERR(pc->prescale_low))
408 return PTR_ERR(pc->prescale_low);
409
410 pc->prescale_high = devm_regmap_field_alloc(dev, pc->regmap,
411 reg_fields[PWMCLK_PRESCALE_HIGH]);
412 if (IS_ERR(pc->prescale_high))
413 return PTR_ERR(pc->prescale_high);
Lee Jones378fe112014-07-14 15:33:27 +0100414
Lee Jones378fe112014-07-14 15:33:27 +0100415
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100416 pc->pwm_out_en = devm_regmap_field_alloc(dev, pc->regmap,
417 reg_fields[PWM_OUT_EN]);
418 if (IS_ERR(pc->pwm_out_en))
419 return PTR_ERR(pc->pwm_out_en);
420
421 pc->pwm_cpt_int_en = devm_regmap_field_alloc(dev, pc->regmap,
422 reg_fields[PWM_CPT_INT_EN]);
423 if (IS_ERR(pc->pwm_cpt_int_en))
424 return PTR_ERR(pc->pwm_cpt_int_en);
Lee Jones378fe112014-07-14 15:33:27 +0100425
Lee Jones25eb5382016-08-16 10:35:04 +0100426 pc->pwm_cpt_int_stat = devm_regmap_field_alloc(dev, pc->regmap,
427 reg_fields[PWM_CPT_INT_STAT]);
428 if (PTR_ERR_OR_ZERO(pc->pwm_cpt_int_stat))
429 return PTR_ERR(pc->pwm_cpt_int_stat);
430
Lee Jones378fe112014-07-14 15:33:27 +0100431 return 0;
432}
433
434static const struct regmap_config sti_pwm_regmap_config = {
435 .reg_bits = 32,
436 .val_bits = 32,
437 .reg_stride = 4,
438};
439
440static int sti_pwm_probe(struct platform_device *pdev)
441{
442 struct device *dev = &pdev->dev;
443 struct sti_pwm_compat_data *cdata;
444 struct sti_pwm_chip *pc;
445 struct resource *res;
Lee Jones3f0925b2016-08-16 10:35:03 +0100446 unsigned int i;
Lee Jones25eb5382016-08-16 10:35:04 +0100447 int irq, ret;
Lee Jones378fe112014-07-14 15:33:27 +0100448
449 pc = devm_kzalloc(dev, sizeof(*pc), GFP_KERNEL);
450 if (!pc)
451 return -ENOMEM;
452
453 cdata = devm_kzalloc(dev, sizeof(*cdata), GFP_KERNEL);
454 if (!cdata)
455 return -ENOMEM;
456
457 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
458
459 pc->mmio = devm_ioremap_resource(dev, res);
460 if (IS_ERR(pc->mmio))
461 return PTR_ERR(pc->mmio);
462
463 pc->regmap = devm_regmap_init_mmio(dev, pc->mmio,
464 &sti_pwm_regmap_config);
465 if (IS_ERR(pc->regmap))
466 return PTR_ERR(pc->regmap);
467
Lee Jones25eb5382016-08-16 10:35:04 +0100468 irq = platform_get_irq(pdev, 0);
469 if (irq < 0) {
470 dev_err(&pdev->dev, "Failed to obtain IRQ\n");
471 return irq;
472 }
473
474 ret = devm_request_irq(&pdev->dev, irq, sti_pwm_interrupt, 0,
475 pdev->name, pc);
476 if (ret < 0) {
477 dev_err(&pdev->dev, "Failed to request IRQ\n");
478 return ret;
479 }
480
Lee Jones378fe112014-07-14 15:33:27 +0100481 /*
482 * Setup PWM data with default values: some values could be replaced
483 * with specific ones provided from Device Tree.
484 */
485 cdata->reg_fields = &sti_pwm_regfields[0];
486 cdata->max_prescale = 0xff;
487 cdata->max_pwm_cnt = 255;
Lee Jones3f0925b2016-08-16 10:35:03 +0100488 cdata->pwm_num_devs = 1;
489 cdata->cpt_num_devs = 0;
Lee Jones378fe112014-07-14 15:33:27 +0100490
491 pc->cdata = cdata;
492 pc->dev = dev;
Ajit Pal Singh6ad6b832014-07-14 15:33:31 +0100493 pc->en_count = 0;
494 mutex_init(&pc->sti_pwm_lock);
Lee Jones378fe112014-07-14 15:33:27 +0100495
496 ret = sti_pwm_probe_dt(pc);
497 if (ret)
498 return ret;
499
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100500 pc->pwm_clk = of_clk_get_by_name(dev->of_node, "pwm");
501 if (IS_ERR(pc->pwm_clk)) {
Lee Jones378fe112014-07-14 15:33:27 +0100502 dev_err(dev, "failed to get PWM clock\n");
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100503 return PTR_ERR(pc->pwm_clk);
Lee Jones378fe112014-07-14 15:33:27 +0100504 }
505
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100506 ret = clk_prepare(pc->pwm_clk);
Lee Jones378fe112014-07-14 15:33:27 +0100507 if (ret) {
508 dev_err(dev, "failed to prepare clock\n");
509 return ret;
510 }
511
Lee Jonesd66a9282016-08-16 10:35:02 +0100512 pc->cpt_clk = of_clk_get_by_name(dev->of_node, "capture");
513 if (IS_ERR(pc->cpt_clk)) {
514 dev_err(dev, "failed to get PWM capture clock\n");
515 return PTR_ERR(pc->cpt_clk);
516 }
517
518 ret = clk_prepare(pc->cpt_clk);
519 if (ret) {
520 dev_err(dev, "failed to prepare clock\n");
521 return ret;
522 }
523
Lee Jones378fe112014-07-14 15:33:27 +0100524 pc->chip.dev = dev;
525 pc->chip.ops = &sti_pwm_ops;
526 pc->chip.base = -1;
Lee Jones3f0925b2016-08-16 10:35:03 +0100527 pc->chip.npwm = pc->cdata->pwm_num_devs;
Lee Jones378fe112014-07-14 15:33:27 +0100528 pc->chip.can_sleep = true;
529
530 ret = pwmchip_add(&pc->chip);
531 if (ret < 0) {
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100532 clk_unprepare(pc->pwm_clk);
Lee Jonesd66a9282016-08-16 10:35:02 +0100533 clk_unprepare(pc->cpt_clk);
Lee Jones378fe112014-07-14 15:33:27 +0100534 return ret;
535 }
536
Lee Jones3f0925b2016-08-16 10:35:03 +0100537 for (i = 0; i < cdata->cpt_num_devs; i++) {
538 struct sti_cpt_ddata *ddata;
539
540 ddata = devm_kzalloc(dev, sizeof(*ddata), GFP_KERNEL);
541 if (!ddata)
542 return -ENOMEM;
543
544 init_waitqueue_head(&ddata->wait);
545 mutex_init(&ddata->lock);
546
547 pwm_set_chip_data(&pc->chip.pwms[i], ddata);
548 }
549
Lee Jones378fe112014-07-14 15:33:27 +0100550 platform_set_drvdata(pdev, pc);
551
552 return 0;
553}
554
555static int sti_pwm_remove(struct platform_device *pdev)
556{
557 struct sti_pwm_chip *pc = platform_get_drvdata(pdev);
558 unsigned int i;
559
Lee Jones3f0925b2016-08-16 10:35:03 +0100560 for (i = 0; i < pc->cdata->pwm_num_devs; i++)
Lee Jones378fe112014-07-14 15:33:27 +0100561 pwm_disable(&pc->chip.pwms[i]);
562
Lee Jonesc5f94ae2016-08-16 10:34:59 +0100563 clk_unprepare(pc->pwm_clk);
Lee Jonesd66a9282016-08-16 10:35:02 +0100564 clk_unprepare(pc->cpt_clk);
Lee Jones378fe112014-07-14 15:33:27 +0100565
566 return pwmchip_remove(&pc->chip);
567}
568
569static const struct of_device_id sti_pwm_of_match[] = {
570 { .compatible = "st,sti-pwm", },
571 { /* sentinel */ }
572};
573MODULE_DEVICE_TABLE(of, sti_pwm_of_match);
574
575static struct platform_driver sti_pwm_driver = {
576 .driver = {
577 .name = "sti-pwm",
578 .of_match_table = sti_pwm_of_match,
579 },
580 .probe = sti_pwm_probe,
581 .remove = sti_pwm_remove,
582};
583module_platform_driver(sti_pwm_driver);
584
585MODULE_AUTHOR("Ajit Pal Singh <ajitpal.singh@st.com>");
586MODULE_DESCRIPTION("STMicroelectronics ST PWM driver");
587MODULE_LICENSE("GPL");