blob: bcbcac40571864692e02c21448ce13bd8295b65f [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
Sascha Hauer29693242012-03-15 10:04:35 +01008#include <linux/clk.h>
Liu Ying137fd452014-05-28 18:50:13 +08009#include <linux/delay.h>
Michal Vokáče3adc7e2018-10-01 16:19:46 +020010#include <linux/err.h>
Sascha Hauer29693242012-03-15 10:04:35 +010011#include <linux/io.h>
Michal Vokáče3adc7e2018-10-01 16:19:46 +020012#include <linux/kernel.h>
13#include <linux/module.h>
Sachin Kamat2a8876c2013-09-27 16:53:23 +053014#include <linux/of.h>
Philipp Zabel479e2e32012-06-25 16:16:25 +020015#include <linux/of_device.h>
Michal Vokáče3adc7e2018-10-01 16:19:46 +020016#include <linux/platform_device.h>
17#include <linux/pwm.h>
18#include <linux/slab.h>
Sascha Hauer29693242012-03-15 10:04:35 +010019
Sascha Hauer29693242012-03-15 10:04:35 +010020/* i.MX1 and i.MX21 share the same PWM function block: */
21
Liu Ying40f260c2014-05-28 18:50:12 +080022#define MX1_PWMC 0x00 /* PWM Control Register */
23#define MX1_PWMS 0x04 /* PWM Sample Register */
24#define MX1_PWMP 0x08 /* PWM Period Register */
Sascha Hauer29693242012-03-15 10:04:35 +010025
Liu Ying40f260c2014-05-28 18:50:12 +080026#define MX1_PWMC_EN (1 << 4)
Sascha Hauer29693242012-03-15 10:04:35 +010027
28/* i.MX27, i.MX31, i.MX35 share the same PWM function block: */
29
Liu Ying40f260c2014-05-28 18:50:12 +080030#define MX3_PWMCR 0x00 /* PWM Control Register */
Liu Ying137fd452014-05-28 18:50:13 +080031#define MX3_PWMSR 0x04 /* PWM Status Register */
Liu Ying40f260c2014-05-28 18:50:12 +080032#define MX3_PWMSAR 0x0C /* PWM Sample Register */
33#define MX3_PWMPR 0x10 /* PWM Period Register */
34#define MX3_PWMCR_PRESCALER(x) ((((x) - 1) & 0xFFF) << 4)
Fabio Estevam1f6eefe2018-01-02 11:01:59 -020035#define MX3_PWMCR_STOPEN (1 << 25)
Liu Ying40f260c2014-05-28 18:50:12 +080036#define MX3_PWMCR_DOZEEN (1 << 24)
37#define MX3_PWMCR_WAITEN (1 << 23)
Sascha Hauer29693242012-03-15 10:04:35 +010038#define MX3_PWMCR_DBGEN (1 << 22)
Lukasz Majewski326ed312017-01-29 22:54:15 +010039#define MX3_PWMCR_POUTC (1 << 18)
Liu Ying40f260c2014-05-28 18:50:12 +080040#define MX3_PWMCR_CLKSRC_IPG_HIGH (2 << 16)
41#define MX3_PWMCR_CLKSRC_IPG (1 << 16)
Liu Ying137fd452014-05-28 18:50:13 +080042#define MX3_PWMCR_SWR (1 << 3)
Liu Ying40f260c2014-05-28 18:50:12 +080043#define MX3_PWMCR_EN (1 << 0)
Liu Ying137fd452014-05-28 18:50:13 +080044#define MX3_PWMSR_FIFOAV_4WORDS 0x4
45#define MX3_PWMSR_FIFOAV_MASK 0x7
46
47#define MX3_PWM_SWR_LOOP 5
Sascha Hauer29693242012-03-15 10:04:35 +010048
49struct imx_chip {
Philipp Zabel7b27c162012-06-25 16:15:20 +020050 struct clk *clk_per;
Sascha Hauer29693242012-03-15 10:04:35 +010051
Sascha Hauer29693242012-03-15 10:04:35 +010052 void __iomem *mmio_base;
53
54 struct pwm_chip chip;
55};
56
57#define to_imx_chip(chip) container_of(chip, struct imx_chip, chip)
58
Sascha Hauer19e73332012-07-03 17:28:14 +020059static int imx_pwm_config_v1(struct pwm_chip *chip,
60 struct pwm_device *pwm, int duty_ns, int period_ns)
61{
62 struct imx_chip *imx = to_imx_chip(chip);
63
64 /*
65 * The PWM subsystem allows for exact frequencies. However,
66 * I cannot connect a scope on my device to the PWM line and
67 * thus cannot provide the program the PWM controller
68 * exactly. Instead, I'm relying on the fact that the
69 * Bootloader (u-boot or WinCE+haret) has programmed the PWM
70 * function group already. So I'll just modify the PWM sample
71 * register to follow the ratio of duty_ns vs. period_ns
72 * accordingly.
73 *
74 * This is good enough for programming the brightness of
75 * the LCD backlight.
76 *
77 * The real implementation would divide PERCLK[0] first by
78 * both the prescaler (/1 .. /128) and then by CLKSEL
79 * (/2 .. /16).
80 */
81 u32 max = readl(imx->mmio_base + MX1_PWMP);
82 u32 p = max * duty_ns / period_ns;
83 writel(max - p, imx->mmio_base + MX1_PWMS);
84
85 return 0;
86}
87
Lukasz Majewskib3c088f2017-01-29 22:54:08 +010088static int imx_pwm_enable_v1(struct pwm_chip *chip, struct pwm_device *pwm)
89{
90 struct imx_chip *imx = to_imx_chip(chip);
91 u32 val;
92 int ret;
93
94 ret = clk_prepare_enable(imx->clk_per);
95 if (ret < 0)
96 return ret;
97
98 val = readl(imx->mmio_base + MX1_PWMC);
99 val |= MX1_PWMC_EN;
100 writel(val, imx->mmio_base + MX1_PWMC);
101
102 return 0;
103}
104
105static void imx_pwm_disable_v1(struct pwm_chip *chip, struct pwm_device *pwm)
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200106{
107 struct imx_chip *imx = to_imx_chip(chip);
108 u32 val;
109
110 val = readl(imx->mmio_base + MX1_PWMC);
Lukasz Majewskib3c088f2017-01-29 22:54:08 +0100111 val &= ~MX1_PWMC_EN;
Sascha Hauer66ad6a62012-08-28 11:39:25 +0200112 writel(val, imx->mmio_base + MX1_PWMC);
Sascha Hauer29693242012-03-15 10:04:35 +0100113
Philipp Zabel7b27c162012-06-25 16:15:20 +0200114 clk_disable_unprepare(imx->clk_per);
Sascha Hauer29693242012-03-15 10:04:35 +0100115}
116
Lukasz Majewski970247a2017-01-29 22:54:09 +0100117static void imx_pwm_sw_reset(struct pwm_chip *chip)
118{
119 struct imx_chip *imx = to_imx_chip(chip);
120 struct device *dev = chip->dev;
121 int wait_count = 0;
122 u32 cr;
123
124 writel(MX3_PWMCR_SWR, imx->mmio_base + MX3_PWMCR);
125 do {
126 usleep_range(200, 1000);
127 cr = readl(imx->mmio_base + MX3_PWMCR);
128 } while ((cr & MX3_PWMCR_SWR) &&
129 (wait_count++ < MX3_PWM_SWR_LOOP));
130
131 if (cr & MX3_PWMCR_SWR)
132 dev_warn(dev, "software reset timeout\n");
133}
134
Lukasz Majewski73b1ff12017-01-29 22:54:10 +0100135static void imx_pwm_wait_fifo_slot(struct pwm_chip *chip,
136 struct pwm_device *pwm)
137{
138 struct imx_chip *imx = to_imx_chip(chip);
139 struct device *dev = chip->dev;
140 unsigned int period_ms;
141 int fifoav;
142 u32 sr;
143
144 sr = readl(imx->mmio_base + MX3_PWMSR);
145 fifoav = sr & MX3_PWMSR_FIFOAV_MASK;
146 if (fifoav == MX3_PWMSR_FIFOAV_4WORDS) {
147 period_ms = DIV_ROUND_UP(pwm_get_period(pwm),
148 NSEC_PER_MSEC);
149 msleep(period_ms);
150
151 sr = readl(imx->mmio_base + MX3_PWMSR);
152 if (fifoav == (sr & MX3_PWMSR_FIFOAV_MASK))
153 dev_warn(dev, "there is no free FIFO slot\n");
154 }
155}
Lukasz Majewski970247a2017-01-29 22:54:09 +0100156
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100157static int imx_pwm_apply_v2(struct pwm_chip *chip, struct pwm_device *pwm,
158 struct pwm_state *state)
159{
160 unsigned long period_cycles, duty_cycles, prescale;
161 struct imx_chip *imx = to_imx_chip(chip);
162 struct pwm_state cstate;
163 unsigned long long c;
164 int ret;
Lukasz Majewski326ed312017-01-29 22:54:15 +0100165 u32 cr;
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100166
167 pwm_get_state(pwm, &cstate);
168
169 if (state->enabled) {
170 c = clk_get_rate(imx->clk_per);
171 c *= state->period;
172
173 do_div(c, 1000000000);
174 period_cycles = c;
175
176 prescale = period_cycles / 0x10000 + 1;
177
178 period_cycles /= prescale;
179 c = (unsigned long long)period_cycles * state->duty_cycle;
180 do_div(c, state->period);
181 duty_cycles = c;
182
183 /*
184 * according to imx pwm RM, the real period value should be
185 * PERIOD value in PWMPR plus 2.
186 */
187 if (period_cycles > 2)
188 period_cycles -= 2;
189 else
190 period_cycles = 0;
191
192 /*
193 * Wait for a free FIFO slot if the PWM is already enabled, and
194 * flush the FIFO if the PWM was disabled and is about to be
195 * enabled.
196 */
197 if (cstate.enabled) {
198 imx_pwm_wait_fifo_slot(chip, pwm);
199 } else {
200 ret = clk_prepare_enable(imx->clk_per);
201 if (ret)
202 return ret;
203
204 imx_pwm_sw_reset(chip);
205 }
206
207 writel(duty_cycles, imx->mmio_base + MX3_PWMSAR);
208 writel(period_cycles, imx->mmio_base + MX3_PWMPR);
209
Lukasz Majewski326ed312017-01-29 22:54:15 +0100210 cr = MX3_PWMCR_PRESCALER(prescale) |
Fabio Estevam1f6eefe2018-01-02 11:01:59 -0200211 MX3_PWMCR_STOPEN | MX3_PWMCR_DOZEEN | MX3_PWMCR_WAITEN |
Lukasz Majewski326ed312017-01-29 22:54:15 +0100212 MX3_PWMCR_DBGEN | MX3_PWMCR_CLKSRC_IPG_HIGH |
213 MX3_PWMCR_EN;
214
215 if (state->polarity == PWM_POLARITY_INVERSED)
216 cr |= MX3_PWMCR_POUTC;
217
218 writel(cr, imx->mmio_base + MX3_PWMCR);
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100219 } else if (cstate.enabled) {
220 writel(0, imx->mmio_base + MX3_PWMCR);
221
222 clk_disable_unprepare(imx->clk_per);
223 }
224
225 return 0;
226}
227
Lukasz Majewski00389222017-01-29 22:54:07 +0100228static const struct pwm_ops imx_pwm_ops_v1 = {
Lukasz Majewskib3c088f2017-01-29 22:54:08 +0100229 .enable = imx_pwm_enable_v1,
230 .disable = imx_pwm_disable_v1,
231 .config = imx_pwm_config_v1,
Lukasz Majewski00389222017-01-29 22:54:07 +0100232 .owner = THIS_MODULE,
233};
234
235static const struct pwm_ops imx_pwm_ops_v2 = {
Lukasz Majewski0ca1a112017-01-29 22:54:11 +0100236 .apply = imx_pwm_apply_v2,
Sascha Hauer29693242012-03-15 10:04:35 +0100237 .owner = THIS_MODULE,
238};
239
Philipp Zabel479e2e32012-06-25 16:16:25 +0200240struct imx_pwm_data {
Lukasz Majewski326ed312017-01-29 22:54:15 +0100241 bool polarity_supported;
Lukasz Majewski00389222017-01-29 22:54:07 +0100242 const struct pwm_ops *ops;
Philipp Zabel479e2e32012-06-25 16:16:25 +0200243};
244
245static struct imx_pwm_data imx_pwm_data_v1 = {
Lukasz Majewski00389222017-01-29 22:54:07 +0100246 .ops = &imx_pwm_ops_v1,
Philipp Zabel479e2e32012-06-25 16:16:25 +0200247};
248
249static struct imx_pwm_data imx_pwm_data_v2 = {
Lukasz Majewski326ed312017-01-29 22:54:15 +0100250 .polarity_supported = true,
Lukasz Majewski00389222017-01-29 22:54:07 +0100251 .ops = &imx_pwm_ops_v2,
Philipp Zabel479e2e32012-06-25 16:16:25 +0200252};
253
254static const struct of_device_id imx_pwm_dt_ids[] = {
255 { .compatible = "fsl,imx1-pwm", .data = &imx_pwm_data_v1, },
256 { .compatible = "fsl,imx27-pwm", .data = &imx_pwm_data_v2, },
257 { /* sentinel */ }
258};
259MODULE_DEVICE_TABLE(of, imx_pwm_dt_ids);
260
Bill Pemberton3e9fe832012-11-19 13:23:14 -0500261static int imx_pwm_probe(struct platform_device *pdev)
Sascha Hauer29693242012-03-15 10:04:35 +0100262{
Philipp Zabel479e2e32012-06-25 16:16:25 +0200263 const struct of_device_id *of_id =
264 of_match_device(imx_pwm_dt_ids, &pdev->dev);
Lothar Waßmann983290b2012-12-05 16:34:41 +0100265 const struct imx_pwm_data *data;
Sascha Hauer29693242012-03-15 10:04:35 +0100266 struct imx_chip *imx;
267 struct resource *r;
268 int ret = 0;
269
Philipp Zabel479e2e32012-06-25 16:16:25 +0200270 if (!of_id)
271 return -ENODEV;
272
Lukasz Majewski00389222017-01-29 22:54:07 +0100273 data = of_id->data;
274
Axel Lina9970e32012-07-01 08:27:23 +0800275 imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL);
Jingoo Han1cbec742014-04-23 18:39:49 +0900276 if (imx == NULL)
Sascha Hauer29693242012-03-15 10:04:35 +0100277 return -ENOMEM;
Sascha Hauer29693242012-03-15 10:04:35 +0100278
Philipp Zabel7b27c162012-06-25 16:15:20 +0200279 imx->clk_per = devm_clk_get(&pdev->dev, "per");
280 if (IS_ERR(imx->clk_per)) {
281 dev_err(&pdev->dev, "getting per clock failed with %ld\n",
282 PTR_ERR(imx->clk_per));
283 return PTR_ERR(imx->clk_per);
284 }
Sascha Hauer29693242012-03-15 10:04:35 +0100285
Lukasz Majewski00389222017-01-29 22:54:07 +0100286 imx->chip.ops = data->ops;
Sascha Hauer29693242012-03-15 10:04:35 +0100287 imx->chip.dev = &pdev->dev;
288 imx->chip.base = -1;
289 imx->chip.npwm = 1;
290
Lukasz Majewski326ed312017-01-29 22:54:15 +0100291 if (data->polarity_supported) {
292 dev_dbg(&pdev->dev, "PWM supports output inversion\n");
293 imx->chip.of_xlate = of_pwm_xlate_with_flags;
294 imx->chip.of_pwm_n_cells = 3;
295 }
296
Sascha Hauer29693242012-03-15 10:04:35 +0100297 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding6d4294d2013-01-21 11:09:16 +0100298 imx->mmio_base = devm_ioremap_resource(&pdev->dev, r);
299 if (IS_ERR(imx->mmio_base))
300 return PTR_ERR(imx->mmio_base);
Sascha Hauer29693242012-03-15 10:04:35 +0100301
302 ret = pwmchip_add(&imx->chip);
303 if (ret < 0)
Axel Lina9970e32012-07-01 08:27:23 +0800304 return ret;
Sascha Hauer29693242012-03-15 10:04:35 +0100305
306 platform_set_drvdata(pdev, imx);
307 return 0;
Sascha Hauer29693242012-03-15 10:04:35 +0100308}
309
Bill Pemberton77f37912012-11-19 13:26:09 -0500310static int imx_pwm_remove(struct platform_device *pdev)
Sascha Hauer29693242012-03-15 10:04:35 +0100311{
312 struct imx_chip *imx;
Sascha Hauer29693242012-03-15 10:04:35 +0100313
314 imx = platform_get_drvdata(pdev);
315 if (imx == NULL)
316 return -ENODEV;
317
Axel Lina9970e32012-07-01 08:27:23 +0800318 return pwmchip_remove(&imx->chip);
Sascha Hauer29693242012-03-15 10:04:35 +0100319}
320
321static struct platform_driver imx_pwm_driver = {
322 .driver = {
Philipp Zabel479e2e32012-06-25 16:16:25 +0200323 .name = "imx-pwm",
Sachin Kamatbecbca12013-09-30 08:56:41 +0530324 .of_match_table = imx_pwm_dt_ids,
Sascha Hauer29693242012-03-15 10:04:35 +0100325 },
326 .probe = imx_pwm_probe,
Bill Pembertonfd109112012-11-19 13:21:28 -0500327 .remove = imx_pwm_remove,
Sascha Hauer29693242012-03-15 10:04:35 +0100328};
329
Sascha Hauer208d0382012-08-28 08:27:40 +0200330module_platform_driver(imx_pwm_driver);
Sascha Hauer29693242012-03-15 10:04:35 +0100331
332MODULE_LICENSE("GPL v2");
333MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");