blob: 55a3a363d5be94708b48bbc08ce792d1a81a62f0 [file] [log] [blame]
Fabio Estevama99290c2018-07-06 19:47:17 -03001// SPDX-License-Identifier: GPL-2.0
Sascha Hauer29693242012-03-15 10:04:35 +01002/*
3 * simple driver for PWM (Pulse Width Modulator) controller
4 *
Sascha Hauer29693242012-03-15 10:04:35 +01005 * Derived from pxa PWM driver by eric miao <eric.miao@marvell.com>
6 */
7
Michal Vokáč9f617ad2018-10-01 16:19:47 +02008#include <linux/bitfield.h>
9#include <linux/bitops.h>
Sascha Hauer29693242012-03-15 10:04:35 +010010#include <linux/clk.h>
Liu Ying137fd452014-05-28 18:50:13 +080011#include <linux/delay.h>
Michal Vokáče3adc7e2018-10-01 16:19:46 +020012#include <linux/err.h>
Sascha Hauer29693242012-03-15 10:04:35 +010013#include <linux/io.h>
Michal Vokáče3adc7e2018-10-01 16:19:46 +020014#include <linux/kernel.h>
15#include <linux/module.h>
Sachin Kamat2a8876c2013-09-27 16:53:23 +053016#include <linux/of.h>
Philipp Zabel479e2e32012-06-25 16:16:25 +020017#include <linux/of_device.h>
Michal Vokáče3adc7e2018-10-01 16:19:46 +020018#include <linux/platform_device.h>
19#include <linux/pwm.h>
20#include <linux/slab.h>
Sascha Hauer29693242012-03-15 10:04:35 +010021
Sascha Hauer29693242012-03-15 10:04:35 +010022/* i.MX1 and i.MX21 share the same PWM function block: */
23
Liu Ying40f260c2014-05-28 18:50:12 +080024#define MX1_PWMC 0x00 /* PWM Control Register */
25#define MX1_PWMS 0x04 /* PWM Sample Register */
26#define MX1_PWMP 0x08 /* PWM Period Register */
Sascha Hauer29693242012-03-15 10:04:35 +010027
Michal Vokáč9f617ad2018-10-01 16:19:47 +020028#define MX1_PWMC_EN BIT(4)
Sascha Hauer29693242012-03-15 10:04:35 +010029
30/* i.MX27, i.MX31, i.MX35 share the same PWM function block: */
31
Liu Ying40f260c2014-05-28 18:50:12 +080032#define MX3_PWMCR 0x00 /* PWM Control Register */
Liu Ying137fd452014-05-28 18:50:13 +080033#define MX3_PWMSR 0x04 /* PWM Status Register */
Liu Ying40f260c2014-05-28 18:50:12 +080034#define MX3_PWMSAR 0x0C /* PWM Sample Register */
35#define MX3_PWMPR 0x10 /* PWM Period Register */
Michal Vokáč9f617ad2018-10-01 16:19:47 +020036
37#define MX3_PWMCR_FWM GENMASK(27, 26)
38#define MX3_PWMCR_STOPEN BIT(25)
39#define MX3_PWMCR_DOZEN BIT(24)
40#define MX3_PWMCR_WAITEN BIT(23)
41#define MX3_PWMCR_DBGEN BIT(22)
42#define MX3_PWMCR_BCTR BIT(21)
43#define MX3_PWMCR_HCTR BIT(20)
44
45#define MX3_PWMCR_POUTC GENMASK(19, 18)
46#define MX3_PWMCR_POUTC_NORMAL 0
47#define MX3_PWMCR_POUTC_INVERTED 1
48#define MX3_PWMCR_POUTC_OFF 2
49
50#define MX3_PWMCR_CLKSRC GENMASK(17, 16)
51#define MX3_PWMCR_CLKSRC_OFF 0
52#define MX3_PWMCR_CLKSRC_IPG 1
53#define MX3_PWMCR_CLKSRC_IPG_HIGH 2
54#define MX3_PWMCR_CLKSRC_IPG_32K 3
55
56#define MX3_PWMCR_PRESCALER GENMASK(15, 4)
57
58#define MX3_PWMCR_SWR BIT(3)
59
60#define MX3_PWMCR_REPEAT GENMASK(2, 1)
61#define MX3_PWMCR_REPEAT_1X 0
62#define MX3_PWMCR_REPEAT_2X 1
63#define MX3_PWMCR_REPEAT_4X 2
64#define MX3_PWMCR_REPEAT_8X 3
65
66#define MX3_PWMCR_EN BIT(0)
67
68#define MX3_PWMSR_FWE BIT(6)
69#define MX3_PWMSR_CMP BIT(5)
70#define MX3_PWMSR_ROV BIT(4)
71#define MX3_PWMSR_FE BIT(3)
72
73#define MX3_PWMSR_FIFOAV GENMASK(2, 0)
74#define MX3_PWMSR_FIFOAV_EMPTY 0
75#define MX3_PWMSR_FIFOAV_1WORD 1
76#define MX3_PWMSR_FIFOAV_2WORDS 2
77#define MX3_PWMSR_FIFOAV_3WORDS 3
78#define MX3_PWMSR_FIFOAV_4WORDS 4
79
80#define MX3_PWMCR_PRESCALER_SET(x) FIELD_PREP(MX3_PWMCR_PRESCALER, (x) - 1)
81#define MX3_PWMCR_PRESCALER_GET(x) (FIELD_GET(MX3_PWMCR_PRESCALER, \
82 (x)) + 1)
Liu Ying137fd452014-05-28 18:50:13 +080083
84#define MX3_PWM_SWR_LOOP 5
Sascha Hauer29693242012-03-15 10:04:35 +010085
Michal Vokáčbf9b0b12018-10-01 16:19:48 +020086/* PWMPR register value of 0xffff has the same effect as 0xfffe */
87#define MX3_PWMPR_MAX 0xfffe
88
Sascha Hauer29693242012-03-15 10:04:35 +010089struct imx_chip {
Anson Huang9f4c8f92018-12-19 05:24:58 +000090 struct clk *clk_ipg;
91
Philipp Zabel7b27c162012-06-25 16:15:20 +020092 struct clk *clk_per;
Sascha Hauer29693242012-03-15 10:04:35 +010093
Sascha Hauer29693242012-03-15 10:04:35 +010094 void __iomem *mmio_base;
95
96 struct pwm_chip chip;
97};
98
99#define to_imx_chip(chip) container_of(chip, struct imx_chip, chip)
100
Anson Huang9f4c8f92018-12-19 05:24:58 +0000101static int imx_pwm_clk_prepare_enable(struct pwm_chip *chip)
102{
103 struct imx_chip *imx = to_imx_chip(chip);
104 int ret;
105
106 ret = clk_prepare_enable(imx->clk_ipg);
107 if (ret)
108 return ret;
109
110 ret = clk_prepare_enable(imx->clk_per);
111 if (ret) {
112 clk_disable_unprepare(imx->clk_ipg);
113 return ret;
114 }
115
116 return 0;
117}
118
119static void imx_pwm_clk_disable_unprepare(struct pwm_chip *chip)
120{
121 struct imx_chip *imx = to_imx_chip(chip);
122
123 clk_disable_unprepare(imx->clk_per);
124 clk_disable_unprepare(imx->clk_ipg);
125}
126
Michal Vokáčbf9b0b12018-10-01 16:19:48 +0200127static void imx_pwm_get_state(struct pwm_chip *chip,
128 struct pwm_device *pwm, struct pwm_state *state)
129{
130 struct imx_chip *imx = to_imx_chip(chip);
131 u32 period, prescaler, pwm_clk, ret, val;
132 u64 tmp;
133
Anson Huang9f4c8f92018-12-19 05:24:58 +0000134 ret = imx_pwm_clk_prepare_enable(chip);
135 if (ret < 0)
136 return;
137
Michal Vokáčbf9b0b12018-10-01 16:19:48 +0200138 val = readl(imx->mmio_base + MX3_PWMCR);
139
140 if (val & MX3_PWMCR_EN) {
141 state->enabled = true;
Anson Huang9f4c8f92018-12-19 05:24:58 +0000142 ret = imx_pwm_clk_prepare_enable(chip);
Michal Vokáčbf9b0b12018-10-01 16:19:48 +0200143 if (ret)
144 return;
145 } else {
146 state->enabled = false;
147 }
148
149 switch (FIELD_GET(MX3_PWMCR_POUTC, val)) {
150 case MX3_PWMCR_POUTC_NORMAL:
151 state->polarity = PWM_POLARITY_NORMAL;
152 break;
153 case MX3_PWMCR_POUTC_INVERTED:
154 state->polarity = PWM_POLARITY_INVERSED;
155 break;
156 default:
157 dev_warn(chip->dev, "can't set polarity, output disconnected");
158 }
159
160 prescaler = MX3_PWMCR_PRESCALER_GET(val);
161 pwm_clk = clk_get_rate(imx->clk_per);
162 pwm_clk = DIV_ROUND_CLOSEST_ULL(pwm_clk, prescaler);
163 val = readl(imx->mmio_base + MX3_PWMPR);
164 period = val >= MX3_PWMPR_MAX ? MX3_PWMPR_MAX : val;
165
166 /* PWMOUT (Hz) = PWMCLK / (PWMPR + 2) */
167 tmp = NSEC_PER_SEC * (u64)(period + 2);
168 state->period = DIV_ROUND_CLOSEST_ULL(tmp, pwm_clk);
169
170 /* PWMSAR can be read only if PWM is enabled */
171 if (state->enabled) {
172 val = readl(imx->mmio_base + MX3_PWMSAR);
173 tmp = NSEC_PER_SEC * (u64)(val);
174 state->duty_cycle = DIV_ROUND_CLOSEST_ULL(tmp, pwm_clk);
175 } else {
176 state->duty_cycle = 0;
177 }
Anson Huang9f4c8f92018-12-19 05:24:58 +0000178
179 imx_pwm_clk_disable_unprepare(chip);
Michal Vokáčbf9b0b12018-10-01 16:19:48 +0200180}
181
Sascha Hauer19e73332012-07-03 17:28:14 +0200182static int imx_pwm_config_v1(struct pwm_chip *chip,
183 struct pwm_device *pwm, int duty_ns, int period_ns)
184{
185 struct imx_chip *imx = to_imx_chip(chip);
186
187 /*
188 * The PWM subsystem allows for exact frequencies. However,
189 * I cannot connect a scope on my device to the PWM line and
190 * thus cannot provide the program the PWM controller
191 * exactly. Instead, I'm relying on the fact that the
192 * Bootloader (u-boot or WinCE+haret) has programmed the PWM
193 * function group already. So I'll just modify the PWM sample
194 * register to follow the ratio of duty_ns vs. period_ns
195 * accordingly.
196 *
197 * This is good enough for programming the brightness of
198 * the LCD backlight.
199 *
200 * The real implementation would divide PERCLK[0] first by
201 * both the prescaler (/1 .. /128) and then by CLKSEL
202 * (/2 .. /16).
203 */
204 u32 max = readl(imx->mmio_base + MX1_PWMP);
205 u32 p = max * duty_ns / period_ns;
206 writel(max - p, imx->mmio_base + MX1_PWMS);
207
208 return 0;
209}
210
Lukasz Majewskib3c088f2017-01-29 22:54:08 +0100211static int imx_pwm_enable_v1(struct pwm_chip *chip, struct pwm_device *pwm)
212{
213 struct imx_chip *imx = to_imx_chip(chip);
214 u32 val;
215 int ret;
216
Anson Huang9f4c8f92018-12-19 05:24:58 +0000217 ret = imx_pwm_clk_prepare_enable(chip);
Lukasz Majewskib3c088f2017-01-29 22:54:08 +0100218 if (ret < 0)
219 return ret;
220
221 val = readl(imx->mmio_base + MX1_PWMC);
222 val |= MX1_PWMC_EN;
223 writel(val, imx->mmio_base + MX1_PWMC);
224
225 return 0;
226}
227
228static void imx_pwm_disable_v1(struct pwm_chip *chip, struct pwm_device *pwm)
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200229{
230 struct imx_chip *imx = to_imx_chip(chip);
231 u32 val;
232
233 val = readl(imx->mmio_base + MX1_PWMC);
Lukasz Majewskib3c088f2017-01-29 22:54:08 +0100234 val &= ~MX1_PWMC_EN;
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200235 writel(val, imx->mmio_base + MX1_PWMC);
Sascha Hauer29693242012-03-15 10:04:35 +0100236
Anson Huang9f4c8f92018-12-19 05:24:58 +0000237 imx_pwm_clk_disable_unprepare(chip);
Sascha Hauer29693242012-03-15 10:04:35 +0100238}
239
Lukasz Majewski970247a2017-01-29 22:54:09 +0100240static void imx_pwm_sw_reset(struct pwm_chip *chip)
241{
242 struct imx_chip *imx = to_imx_chip(chip);
243 struct device *dev = chip->dev;
244 int wait_count = 0;
245 u32 cr;
246
247 writel(MX3_PWMCR_SWR, imx->mmio_base + MX3_PWMCR);
248 do {
249 usleep_range(200, 1000);
250 cr = readl(imx->mmio_base + MX3_PWMCR);
251 } while ((cr & MX3_PWMCR_SWR) &&
252 (wait_count++ < MX3_PWM_SWR_LOOP));
253
254 if (cr & MX3_PWMCR_SWR)
255 dev_warn(dev, "software reset timeout\n");
256}
257
Lukasz Majewski73b1ff12017-01-29 22:54:10 +0100258static void imx_pwm_wait_fifo_slot(struct pwm_chip *chip,
259 struct pwm_device *pwm)
260{
261 struct imx_chip *imx = to_imx_chip(chip);
262 struct device *dev = chip->dev;
263 unsigned int period_ms;
264 int fifoav;
265 u32 sr;
266
267 sr = readl(imx->mmio_base + MX3_PWMSR);
Michal Vokáč9f617ad2018-10-01 16:19:47 +0200268 fifoav = FIELD_GET(MX3_PWMSR_FIFOAV, sr);
Lukasz Majewski73b1ff12017-01-29 22:54:10 +0100269 if (fifoav == MX3_PWMSR_FIFOAV_4WORDS) {
270 period_ms = DIV_ROUND_UP(pwm_get_period(pwm),
271 NSEC_PER_MSEC);
272 msleep(period_ms);
273
274 sr = readl(imx->mmio_base + MX3_PWMSR);
Michal Vokáč9f617ad2018-10-01 16:19:47 +0200275 if (fifoav == FIELD_GET(MX3_PWMSR_FIFOAV, sr))
Lukasz Majewski73b1ff12017-01-29 22:54:10 +0100276 dev_warn(dev, "there is no free FIFO slot\n");
277 }
278}
Lukasz Majewski970247a2017-01-29 22:54:09 +0100279
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100280static int imx_pwm_apply_v2(struct pwm_chip *chip, struct pwm_device *pwm,
281 struct pwm_state *state)
282{
283 unsigned long period_cycles, duty_cycles, prescale;
284 struct imx_chip *imx = to_imx_chip(chip);
285 struct pwm_state cstate;
286 unsigned long long c;
287 int ret;
Lukasz Majewski326ed312017-01-29 22:54:15 +0100288 u32 cr;
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100289
290 pwm_get_state(pwm, &cstate);
291
292 if (state->enabled) {
293 c = clk_get_rate(imx->clk_per);
294 c *= state->period;
295
296 do_div(c, 1000000000);
297 period_cycles = c;
298
299 prescale = period_cycles / 0x10000 + 1;
300
301 period_cycles /= prescale;
302 c = (unsigned long long)period_cycles * state->duty_cycle;
303 do_div(c, state->period);
304 duty_cycles = c;
305
306 /*
307 * according to imx pwm RM, the real period value should be
308 * PERIOD value in PWMPR plus 2.
309 */
310 if (period_cycles > 2)
311 period_cycles -= 2;
312 else
313 period_cycles = 0;
314
315 /*
316 * Wait for a free FIFO slot if the PWM is already enabled, and
317 * flush the FIFO if the PWM was disabled and is about to be
318 * enabled.
319 */
320 if (cstate.enabled) {
321 imx_pwm_wait_fifo_slot(chip, pwm);
322 } else {
Anson Huang9f4c8f92018-12-19 05:24:58 +0000323 ret = imx_pwm_clk_prepare_enable(chip);
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100324 if (ret)
325 return ret;
326
327 imx_pwm_sw_reset(chip);
328 }
329
330 writel(duty_cycles, imx->mmio_base + MX3_PWMSAR);
331 writel(period_cycles, imx->mmio_base + MX3_PWMPR);
332
Michal Vokáč9f617ad2018-10-01 16:19:47 +0200333 cr = MX3_PWMCR_PRESCALER_SET(prescale) |
334 MX3_PWMCR_STOPEN | MX3_PWMCR_DOZEN | MX3_PWMCR_WAITEN |
335 FIELD_PREP(MX3_PWMCR_CLKSRC, MX3_PWMCR_CLKSRC_IPG_HIGH) |
336 MX3_PWMCR_DBGEN | MX3_PWMCR_EN;
Lukasz Majewski326ed312017-01-29 22:54:15 +0100337
338 if (state->polarity == PWM_POLARITY_INVERSED)
Michal Vokáč9f617ad2018-10-01 16:19:47 +0200339 cr |= FIELD_PREP(MX3_PWMCR_POUTC,
340 MX3_PWMCR_POUTC_INVERTED);
Lukasz Majewski326ed312017-01-29 22:54:15 +0100341
342 writel(cr, imx->mmio_base + MX3_PWMCR);
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100343 } else if (cstate.enabled) {
344 writel(0, imx->mmio_base + MX3_PWMCR);
345
Anson Huang9f4c8f92018-12-19 05:24:58 +0000346 imx_pwm_clk_disable_unprepare(chip);
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100347 }
348
349 return 0;
350}
351
Lukasz Majewski00389222017-01-29 22:54:07 +0100352static const struct pwm_ops imx_pwm_ops_v1 = {
Lukasz Majewskib3c088f2017-01-29 22:54:08 +0100353 .enable = imx_pwm_enable_v1,
354 .disable = imx_pwm_disable_v1,
355 .config = imx_pwm_config_v1,
Lukasz Majewski00389222017-01-29 22:54:07 +0100356 .owner = THIS_MODULE,
357};
358
359static const struct pwm_ops imx_pwm_ops_v2 = {
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100360 .apply = imx_pwm_apply_v2,
Michal Vokáčbf9b0b12018-10-01 16:19:48 +0200361 .get_state = imx_pwm_get_state,
Sascha Hauer29693242012-03-15 10:04:35 +0100362 .owner = THIS_MODULE,
363};
364
Philipp Zabel479e2e32012-06-25 16:16:25 +0200365struct imx_pwm_data {
Lukasz Majewski326ed312017-01-29 22:54:15 +0100366 bool polarity_supported;
Lukasz Majewski00389222017-01-29 22:54:07 +0100367 const struct pwm_ops *ops;
Philipp Zabel479e2e32012-06-25 16:16:25 +0200368};
369
370static struct imx_pwm_data imx_pwm_data_v1 = {
Lukasz Majewski00389222017-01-29 22:54:07 +0100371 .ops = &imx_pwm_ops_v1,
Philipp Zabel479e2e32012-06-25 16:16:25 +0200372};
373
374static struct imx_pwm_data imx_pwm_data_v2 = {
Lukasz Majewski326ed312017-01-29 22:54:15 +0100375 .polarity_supported = true,
Lukasz Majewski00389222017-01-29 22:54:07 +0100376 .ops = &imx_pwm_ops_v2,
Philipp Zabel479e2e32012-06-25 16:16:25 +0200377};
378
379static const struct of_device_id imx_pwm_dt_ids[] = {
380 { .compatible = "fsl,imx1-pwm", .data = &imx_pwm_data_v1, },
381 { .compatible = "fsl,imx27-pwm", .data = &imx_pwm_data_v2, },
382 { /* sentinel */ }
383};
384MODULE_DEVICE_TABLE(of, imx_pwm_dt_ids);
385
Bill Pemberton3e9fe832012-11-19 13:23:14 -0500386static int imx_pwm_probe(struct platform_device *pdev)
Sascha Hauer29693242012-03-15 10:04:35 +0100387{
Philipp Zabel479e2e32012-06-25 16:16:25 +0200388 const struct of_device_id *of_id =
389 of_match_device(imx_pwm_dt_ids, &pdev->dev);
Lothar Waßmann983290b2012-12-05 16:34:41 +0100390 const struct imx_pwm_data *data;
Sascha Hauer29693242012-03-15 10:04:35 +0100391 struct imx_chip *imx;
392 struct resource *r;
393 int ret = 0;
394
Philipp Zabel479e2e32012-06-25 16:16:25 +0200395 if (!of_id)
396 return -ENODEV;
397
Lukasz Majewski00389222017-01-29 22:54:07 +0100398 data = of_id->data;
399
Axel Lina9970e32012-07-01 08:27:23 +0800400 imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL);
Jingoo Han1cbec742014-04-23 18:39:49 +0900401 if (imx == NULL)
Sascha Hauer29693242012-03-15 10:04:35 +0100402 return -ENOMEM;
Sascha Hauer29693242012-03-15 10:04:35 +0100403
Anson Huang9f4c8f92018-12-19 05:24:58 +0000404 imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
405 if (IS_ERR(imx->clk_ipg)) {
406 dev_err(&pdev->dev, "getting ipg clock failed with %ld\n",
407 PTR_ERR(imx->clk_ipg));
408 return PTR_ERR(imx->clk_ipg);
409 }
410
Philipp Zabel7b27c162012-06-25 16:15:20 +0200411 imx->clk_per = devm_clk_get(&pdev->dev, "per");
412 if (IS_ERR(imx->clk_per)) {
413 dev_err(&pdev->dev, "getting per clock failed with %ld\n",
414 PTR_ERR(imx->clk_per));
415 return PTR_ERR(imx->clk_per);
416 }
Sascha Hauer29693242012-03-15 10:04:35 +0100417
Lukasz Majewski00389222017-01-29 22:54:07 +0100418 imx->chip.ops = data->ops;
Sascha Hauer29693242012-03-15 10:04:35 +0100419 imx->chip.dev = &pdev->dev;
420 imx->chip.base = -1;
421 imx->chip.npwm = 1;
422
Lukasz Majewski326ed312017-01-29 22:54:15 +0100423 if (data->polarity_supported) {
424 dev_dbg(&pdev->dev, "PWM supports output inversion\n");
425 imx->chip.of_xlate = of_pwm_xlate_with_flags;
426 imx->chip.of_pwm_n_cells = 3;
427 }
428
Sascha Hauer29693242012-03-15 10:04:35 +0100429 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding6d4294d2013-01-21 11:09:16 +0100430 imx->mmio_base = devm_ioremap_resource(&pdev->dev, r);
431 if (IS_ERR(imx->mmio_base))
432 return PTR_ERR(imx->mmio_base);
Sascha Hauer29693242012-03-15 10:04:35 +0100433
434 ret = pwmchip_add(&imx->chip);
435 if (ret < 0)
Axel Lina9970e32012-07-01 08:27:23 +0800436 return ret;
Sascha Hauer29693242012-03-15 10:04:35 +0100437
438 platform_set_drvdata(pdev, imx);
439 return 0;
Sascha Hauer29693242012-03-15 10:04:35 +0100440}
441
Bill Pemberton77f37912012-11-19 13:26:09 -0500442static int imx_pwm_remove(struct platform_device *pdev)
Sascha Hauer29693242012-03-15 10:04:35 +0100443{
444 struct imx_chip *imx;
Sascha Hauer29693242012-03-15 10:04:35 +0100445
446 imx = platform_get_drvdata(pdev);
447 if (imx == NULL)
448 return -ENODEV;
449
Anson Huang9f4c8f92018-12-19 05:24:58 +0000450 imx_pwm_clk_disable_unprepare(&imx->chip);
451
Axel Lina9970e32012-07-01 08:27:23 +0800452 return pwmchip_remove(&imx->chip);
Sascha Hauer29693242012-03-15 10:04:35 +0100453}
454
455static struct platform_driver imx_pwm_driver = {
456 .driver = {
Philipp Zabel479e2e32012-06-25 16:16:25 +0200457 .name = "imx-pwm",
Sachin Kamatbecbca12013-09-30 08:56:41 +0530458 .of_match_table = imx_pwm_dt_ids,
Sascha Hauer29693242012-03-15 10:04:35 +0100459 },
460 .probe = imx_pwm_probe,
Bill Pembertonfd109112012-11-19 13:21:28 -0500461 .remove = imx_pwm_remove,
Sascha Hauer29693242012-03-15 10:04:35 +0100462};
463
Sascha Hauer208d0382012-08-28 08:27:40 +0200464module_platform_driver(imx_pwm_driver);
Sascha Hauer29693242012-03-15 10:04:35 +0100465
466MODULE_LICENSE("GPL v2");
467MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");