blob: d557279446ed48970fbe0e91e8cac13a8b8de99d [file] [log] [blame]
Sascha Hauer29693242012-03-15 10:04:35 +01001/*
2 * simple driver for PWM (Pulse Width Modulator) controller
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Derived from pxa PWM driver by eric miao <eric.miao@marvell.com>
9 */
10
11#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/platform_device.h>
14#include <linux/slab.h>
15#include <linux/err.h>
16#include <linux/clk.h>
Liu Ying137fd452014-05-28 18:50:13 +080017#include <linux/delay.h>
Sascha Hauer29693242012-03-15 10:04:35 +010018#include <linux/io.h>
19#include <linux/pwm.h>
Sachin Kamat2a8876c2013-09-27 16:53:23 +053020#include <linux/of.h>
Philipp Zabel479e2e32012-06-25 16:16:25 +020021#include <linux/of_device.h>
Sascha Hauer29693242012-03-15 10:04:35 +010022
Sascha Hauer29693242012-03-15 10:04:35 +010023/* i.MX1 and i.MX21 share the same PWM function block: */
24
Liu Ying40f260c2014-05-28 18:50:12 +080025#define MX1_PWMC 0x00 /* PWM Control Register */
26#define MX1_PWMS 0x04 /* PWM Sample Register */
27#define MX1_PWMP 0x08 /* PWM Period Register */
Sascha Hauer29693242012-03-15 10:04:35 +010028
Liu Ying40f260c2014-05-28 18:50:12 +080029#define MX1_PWMC_EN (1 << 4)
Sascha Hauer29693242012-03-15 10:04:35 +010030
31/* i.MX27, i.MX31, i.MX35 share the same PWM function block: */
32
Liu Ying40f260c2014-05-28 18:50:12 +080033#define MX3_PWMCR 0x00 /* PWM Control Register */
Liu Ying137fd452014-05-28 18:50:13 +080034#define MX3_PWMSR 0x04 /* PWM Status Register */
Liu Ying40f260c2014-05-28 18:50:12 +080035#define MX3_PWMSAR 0x0C /* PWM Sample Register */
36#define MX3_PWMPR 0x10 /* PWM Period Register */
37#define MX3_PWMCR_PRESCALER(x) ((((x) - 1) & 0xFFF) << 4)
38#define MX3_PWMCR_DOZEEN (1 << 24)
39#define MX3_PWMCR_WAITEN (1 << 23)
Sascha Hauer29693242012-03-15 10:04:35 +010040#define MX3_PWMCR_DBGEN (1 << 22)
Liu Ying40f260c2014-05-28 18:50:12 +080041#define MX3_PWMCR_CLKSRC_IPG_HIGH (2 << 16)
42#define MX3_PWMCR_CLKSRC_IPG (1 << 16)
Liu Ying137fd452014-05-28 18:50:13 +080043#define MX3_PWMCR_SWR (1 << 3)
Liu Ying40f260c2014-05-28 18:50:12 +080044#define MX3_PWMCR_EN (1 << 0)
Liu Ying137fd452014-05-28 18:50:13 +080045#define MX3_PWMSR_FIFOAV_4WORDS 0x4
46#define MX3_PWMSR_FIFOAV_MASK 0x7
47
48#define MX3_PWM_SWR_LOOP 5
Sascha Hauer29693242012-03-15 10:04:35 +010049
50struct imx_chip {
Philipp Zabel7b27c162012-06-25 16:15:20 +020051 struct clk *clk_per;
Sascha Hauer29693242012-03-15 10:04:35 +010052
Sascha Hauer29693242012-03-15 10:04:35 +010053 void __iomem *mmio_base;
54
55 struct pwm_chip chip;
Sascha Hauer19e73332012-07-03 17:28:14 +020056
57 int (*config)(struct pwm_chip *chip,
58 struct pwm_device *pwm, int duty_ns, int period_ns);
Sascha Hauer66ad6a62012-08-28 11:39:25 +020059 void (*set_enable)(struct pwm_chip *chip, bool enable);
Sascha Hauer29693242012-03-15 10:04:35 +010060};
61
62#define to_imx_chip(chip) container_of(chip, struct imx_chip, chip)
63
Sascha Hauer19e73332012-07-03 17:28:14 +020064static int imx_pwm_config_v1(struct pwm_chip *chip,
65 struct pwm_device *pwm, int duty_ns, int period_ns)
66{
67 struct imx_chip *imx = to_imx_chip(chip);
68
69 /*
70 * The PWM subsystem allows for exact frequencies. However,
71 * I cannot connect a scope on my device to the PWM line and
72 * thus cannot provide the program the PWM controller
73 * exactly. Instead, I'm relying on the fact that the
74 * Bootloader (u-boot or WinCE+haret) has programmed the PWM
75 * function group already. So I'll just modify the PWM sample
76 * register to follow the ratio of duty_ns vs. period_ns
77 * accordingly.
78 *
79 * This is good enough for programming the brightness of
80 * the LCD backlight.
81 *
82 * The real implementation would divide PERCLK[0] first by
83 * both the prescaler (/1 .. /128) and then by CLKSEL
84 * (/2 .. /16).
85 */
86 u32 max = readl(imx->mmio_base + MX1_PWMP);
87 u32 p = max * duty_ns / period_ns;
88 writel(max - p, imx->mmio_base + MX1_PWMS);
89
90 return 0;
91}
92
Lukasz Majewskib3c088f2017-01-29 22:54:08 +010093static int imx_pwm_enable_v1(struct pwm_chip *chip, struct pwm_device *pwm)
94{
95 struct imx_chip *imx = to_imx_chip(chip);
96 u32 val;
97 int ret;
98
99 ret = clk_prepare_enable(imx->clk_per);
100 if (ret < 0)
101 return ret;
102
103 val = readl(imx->mmio_base + MX1_PWMC);
104 val |= MX1_PWMC_EN;
105 writel(val, imx->mmio_base + MX1_PWMC);
106
107 return 0;
108}
109
110static void imx_pwm_disable_v1(struct pwm_chip *chip, struct pwm_device *pwm)
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200111{
112 struct imx_chip *imx = to_imx_chip(chip);
113 u32 val;
114
115 val = readl(imx->mmio_base + MX1_PWMC);
Lukasz Majewskib3c088f2017-01-29 22:54:08 +0100116 val &= ~MX1_PWMC_EN;
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200117 writel(val, imx->mmio_base + MX1_PWMC);
Lukasz Majewskib3c088f2017-01-29 22:54:08 +0100118
119 clk_disable_unprepare(imx->clk_per);
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200120}
121
Lukasz Majewski970247a2017-01-29 22:54:09 +0100122static void imx_pwm_sw_reset(struct pwm_chip *chip)
123{
124 struct imx_chip *imx = to_imx_chip(chip);
125 struct device *dev = chip->dev;
126 int wait_count = 0;
127 u32 cr;
128
129 writel(MX3_PWMCR_SWR, imx->mmio_base + MX3_PWMCR);
130 do {
131 usleep_range(200, 1000);
132 cr = readl(imx->mmio_base + MX3_PWMCR);
133 } while ((cr & MX3_PWMCR_SWR) &&
134 (wait_count++ < MX3_PWM_SWR_LOOP));
135
136 if (cr & MX3_PWMCR_SWR)
137 dev_warn(dev, "software reset timeout\n");
138}
139
Lukasz Majewski73b1ff12017-01-29 22:54:10 +0100140static void imx_pwm_wait_fifo_slot(struct pwm_chip *chip,
141 struct pwm_device *pwm)
142{
143 struct imx_chip *imx = to_imx_chip(chip);
144 struct device *dev = chip->dev;
145 unsigned int period_ms;
146 int fifoav;
147 u32 sr;
148
149 sr = readl(imx->mmio_base + MX3_PWMSR);
150 fifoav = sr & MX3_PWMSR_FIFOAV_MASK;
151 if (fifoav == MX3_PWMSR_FIFOAV_4WORDS) {
152 period_ms = DIV_ROUND_UP(pwm_get_period(pwm),
153 NSEC_PER_MSEC);
154 msleep(period_ms);
155
156 sr = readl(imx->mmio_base + MX3_PWMSR);
157 if (fifoav == (sr & MX3_PWMSR_FIFOAV_MASK))
158 dev_warn(dev, "there is no free FIFO slot\n");
159 }
160}
Lukasz Majewski970247a2017-01-29 22:54:09 +0100161
Sascha Hauer19e73332012-07-03 17:28:14 +0200162static int imx_pwm_config_v2(struct pwm_chip *chip,
163 struct pwm_device *pwm, int duty_ns, int period_ns)
164{
165 struct imx_chip *imx = to_imx_chip(chip);
166 unsigned long long c;
167 unsigned long period_cycles, duty_cycles, prescale;
Boris Brezillon5c312522015-07-01 10:21:47 +0200168 bool enable = pwm_is_enabled(pwm);
Lukasz Majewski73b1ff12017-01-29 22:54:10 +0100169 u32 cr;
Liu Ying137fd452014-05-28 18:50:13 +0800170
171 /*
172 * i.MX PWMv2 has a 4-word sample FIFO.
173 * In order to avoid FIFO overflow issue, we do software reset
174 * to clear all sample FIFO if the controller is disabled or
175 * wait for a full PWM cycle to get a relinquished FIFO slot
176 * when the controller is enabled and the FIFO is fully loaded.
177 */
Lukasz Majewski73b1ff12017-01-29 22:54:10 +0100178 if (enable)
179 imx_pwm_wait_fifo_slot(chip, pwm);
180 else
Lukasz Majewski970247a2017-01-29 22:54:09 +0100181 imx_pwm_sw_reset(chip);
Sascha Hauer19e73332012-07-03 17:28:14 +0200182
Philipp Zabel7b27c162012-06-25 16:15:20 +0200183 c = clk_get_rate(imx->clk_per);
Sascha Hauer19e73332012-07-03 17:28:14 +0200184 c = c * period_ns;
185 do_div(c, 1000000000);
186 period_cycles = c;
187
188 prescale = period_cycles / 0x10000 + 1;
189
190 period_cycles /= prescale;
191 c = (unsigned long long)period_cycles * duty_ns;
192 do_div(c, period_ns);
193 duty_cycles = c;
194
195 /*
196 * according to imx pwm RM, the real period value should be
197 * PERIOD value in PWMPR plus 2.
198 */
199 if (period_cycles > 2)
200 period_cycles -= 2;
201 else
202 period_cycles = 0;
203
204 writel(duty_cycles, imx->mmio_base + MX3_PWMSAR);
205 writel(period_cycles, imx->mmio_base + MX3_PWMPR);
206
207 cr = MX3_PWMCR_PRESCALER(prescale) |
208 MX3_PWMCR_DOZEEN | MX3_PWMCR_WAITEN |
Sascha Hauer8d1c24b2012-08-28 12:03:29 +0200209 MX3_PWMCR_DBGEN | MX3_PWMCR_CLKSRC_IPG_HIGH;
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200210
Liu Ying137fd452014-05-28 18:50:13 +0800211 if (enable)
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200212 cr |= MX3_PWMCR_EN;
Sascha Hauer19e73332012-07-03 17:28:14 +0200213
Sascha Hauer19e73332012-07-03 17:28:14 +0200214 writel(cr, imx->mmio_base + MX3_PWMCR);
215
216 return 0;
217}
218
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200219static void imx_pwm_set_enable_v2(struct pwm_chip *chip, bool enable)
220{
221 struct imx_chip *imx = to_imx_chip(chip);
222 u32 val;
223
224 val = readl(imx->mmio_base + MX3_PWMCR);
225
226 if (enable)
227 val |= MX3_PWMCR_EN;
228 else
229 val &= ~MX3_PWMCR_EN;
230
231 writel(val, imx->mmio_base + MX3_PWMCR);
232}
233
Sascha Hauer29693242012-03-15 10:04:35 +0100234static int imx_pwm_config(struct pwm_chip *chip,
235 struct pwm_device *pwm, int duty_ns, int period_ns)
236{
237 struct imx_chip *imx = to_imx_chip(chip);
Philipp Zabel7b27c162012-06-25 16:15:20 +0200238 int ret;
Sascha Hauer29693242012-03-15 10:04:35 +0100239
Sascha Hauer9fb27fa2017-01-29 22:54:06 +0100240 ret = clk_prepare_enable(imx->clk_per);
Philipp Zabel7b27c162012-06-25 16:15:20 +0200241 if (ret)
242 return ret;
243
244 ret = imx->config(chip, pwm, duty_ns, period_ns);
245
Sascha Hauer9fb27fa2017-01-29 22:54:06 +0100246 clk_disable_unprepare(imx->clk_per);
Philipp Zabel7b27c162012-06-25 16:15:20 +0200247
248 return ret;
Sascha Hauer29693242012-03-15 10:04:35 +0100249}
250
251static int imx_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
252{
253 struct imx_chip *imx = to_imx_chip(chip);
Sascha Hauer140827c2012-08-28 09:12:01 +0200254 int ret;
Sascha Hauer29693242012-03-15 10:04:35 +0100255
Philipp Zabel7b27c162012-06-25 16:15:20 +0200256 ret = clk_prepare_enable(imx->clk_per);
Sascha Hauer140827c2012-08-28 09:12:01 +0200257 if (ret)
258 return ret;
259
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200260 imx->set_enable(chip, true);
261
Sascha Hauer140827c2012-08-28 09:12:01 +0200262 return 0;
Sascha Hauer29693242012-03-15 10:04:35 +0100263}
264
265static void imx_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
266{
267 struct imx_chip *imx = to_imx_chip(chip);
268
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200269 imx->set_enable(chip, false);
Sascha Hauer29693242012-03-15 10:04:35 +0100270
Philipp Zabel7b27c162012-06-25 16:15:20 +0200271 clk_disable_unprepare(imx->clk_per);
Sascha Hauer29693242012-03-15 10:04:35 +0100272}
273
Lukasz Majewski00389222017-01-29 22:54:07 +0100274static const struct pwm_ops imx_pwm_ops_v1 = {
Lukasz Majewskib3c088f2017-01-29 22:54:08 +0100275 .enable = imx_pwm_enable_v1,
276 .disable = imx_pwm_disable_v1,
277 .config = imx_pwm_config_v1,
Lukasz Majewski00389222017-01-29 22:54:07 +0100278 .owner = THIS_MODULE,
279};
280
281static const struct pwm_ops imx_pwm_ops_v2 = {
Sascha Hauer29693242012-03-15 10:04:35 +0100282 .enable = imx_pwm_enable,
283 .disable = imx_pwm_disable,
284 .config = imx_pwm_config,
285 .owner = THIS_MODULE,
286};
287
Philipp Zabel479e2e32012-06-25 16:16:25 +0200288struct imx_pwm_data {
289 int (*config)(struct pwm_chip *chip,
290 struct pwm_device *pwm, int duty_ns, int period_ns);
291 void (*set_enable)(struct pwm_chip *chip, bool enable);
Lukasz Majewski00389222017-01-29 22:54:07 +0100292 const struct pwm_ops *ops;
Philipp Zabel479e2e32012-06-25 16:16:25 +0200293};
294
295static struct imx_pwm_data imx_pwm_data_v1 = {
Lukasz Majewski00389222017-01-29 22:54:07 +0100296 .ops = &imx_pwm_ops_v1,
Philipp Zabel479e2e32012-06-25 16:16:25 +0200297};
298
299static struct imx_pwm_data imx_pwm_data_v2 = {
300 .config = imx_pwm_config_v2,
301 .set_enable = imx_pwm_set_enable_v2,
Lukasz Majewski00389222017-01-29 22:54:07 +0100302 .ops = &imx_pwm_ops_v2,
Philipp Zabel479e2e32012-06-25 16:16:25 +0200303};
304
305static const struct of_device_id imx_pwm_dt_ids[] = {
306 { .compatible = "fsl,imx1-pwm", .data = &imx_pwm_data_v1, },
307 { .compatible = "fsl,imx27-pwm", .data = &imx_pwm_data_v2, },
308 { /* sentinel */ }
309};
310MODULE_DEVICE_TABLE(of, imx_pwm_dt_ids);
311
Bill Pemberton3e9fe832012-11-19 13:23:14 -0500312static int imx_pwm_probe(struct platform_device *pdev)
Sascha Hauer29693242012-03-15 10:04:35 +0100313{
Philipp Zabel479e2e32012-06-25 16:16:25 +0200314 const struct of_device_id *of_id =
315 of_match_device(imx_pwm_dt_ids, &pdev->dev);
Lothar Waßmann983290b2012-12-05 16:34:41 +0100316 const struct imx_pwm_data *data;
Sascha Hauer29693242012-03-15 10:04:35 +0100317 struct imx_chip *imx;
318 struct resource *r;
319 int ret = 0;
320
Philipp Zabel479e2e32012-06-25 16:16:25 +0200321 if (!of_id)
322 return -ENODEV;
323
Lukasz Majewski00389222017-01-29 22:54:07 +0100324 data = of_id->data;
325
Axel Lina9970e32012-07-01 08:27:23 +0800326 imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL);
Jingoo Han1cbec742014-04-23 18:39:49 +0900327 if (imx == NULL)
Sascha Hauer29693242012-03-15 10:04:35 +0100328 return -ENOMEM;
Sascha Hauer29693242012-03-15 10:04:35 +0100329
Philipp Zabel7b27c162012-06-25 16:15:20 +0200330 imx->clk_per = devm_clk_get(&pdev->dev, "per");
331 if (IS_ERR(imx->clk_per)) {
332 dev_err(&pdev->dev, "getting per clock failed with %ld\n",
333 PTR_ERR(imx->clk_per));
334 return PTR_ERR(imx->clk_per);
335 }
Sascha Hauer29693242012-03-15 10:04:35 +0100336
Lukasz Majewski00389222017-01-29 22:54:07 +0100337 imx->chip.ops = data->ops;
Sascha Hauer29693242012-03-15 10:04:35 +0100338 imx->chip.dev = &pdev->dev;
339 imx->chip.base = -1;
340 imx->chip.npwm = 1;
Shawn Guo31c4fa32014-05-23 16:41:28 +0800341 imx->chip.can_sleep = true;
Sascha Hauer29693242012-03-15 10:04:35 +0100342
Sascha Hauer29693242012-03-15 10:04:35 +0100343 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding6d4294d2013-01-21 11:09:16 +0100344 imx->mmio_base = devm_ioremap_resource(&pdev->dev, r);
345 if (IS_ERR(imx->mmio_base))
346 return PTR_ERR(imx->mmio_base);
Sascha Hauer29693242012-03-15 10:04:35 +0100347
Philipp Zabel479e2e32012-06-25 16:16:25 +0200348 imx->config = data->config;
349 imx->set_enable = data->set_enable;
Sascha Hauer19e73332012-07-03 17:28:14 +0200350
Sascha Hauer29693242012-03-15 10:04:35 +0100351 ret = pwmchip_add(&imx->chip);
352 if (ret < 0)
Axel Lina9970e32012-07-01 08:27:23 +0800353 return ret;
Sascha Hauer29693242012-03-15 10:04:35 +0100354
355 platform_set_drvdata(pdev, imx);
356 return 0;
Sascha Hauer29693242012-03-15 10:04:35 +0100357}
358
Bill Pemberton77f37912012-11-19 13:26:09 -0500359static int imx_pwm_remove(struct platform_device *pdev)
Sascha Hauer29693242012-03-15 10:04:35 +0100360{
361 struct imx_chip *imx;
Sascha Hauer29693242012-03-15 10:04:35 +0100362
363 imx = platform_get_drvdata(pdev);
364 if (imx == NULL)
365 return -ENODEV;
366
Axel Lina9970e32012-07-01 08:27:23 +0800367 return pwmchip_remove(&imx->chip);
Sascha Hauer29693242012-03-15 10:04:35 +0100368}
369
370static struct platform_driver imx_pwm_driver = {
371 .driver = {
Philipp Zabel479e2e32012-06-25 16:16:25 +0200372 .name = "imx-pwm",
Sachin Kamatbecbca12013-09-30 08:56:41 +0530373 .of_match_table = imx_pwm_dt_ids,
Sascha Hauer29693242012-03-15 10:04:35 +0100374 },
375 .probe = imx_pwm_probe,
Bill Pembertonfd109112012-11-19 13:21:28 -0500376 .remove = imx_pwm_remove,
Sascha Hauer29693242012-03-15 10:04:35 +0100377};
378
Sascha Hauer208d0382012-08-28 08:27:40 +0200379module_platform_driver(imx_pwm_driver);
Sascha Hauer29693242012-03-15 10:04:35 +0100380
381MODULE_LICENSE("GPL v2");
382MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");