unicore32: just use mmap_pgoff()...
[linux-2.6.git] / drivers / pwm / pwm-tiecap.c
blob22e96e2bffd319fca366fe24846e63fb53bf8fa6
1 /*
2 * ECAP PWM driver
4 * Copyright (C) 2012 Texas Instruments, Inc. - http://www.ti.com/
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/module.h>
22 #include <linux/platform_device.h>
23 #include <linux/io.h>
24 #include <linux/err.h>
25 #include <linux/clk.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/pwm.h>
28 #include <linux/of_device.h>
29 #include <linux/pinctrl/consumer.h>
31 #include "pwm-tipwmss.h"
33 /* ECAP registers and bits definitions */
34 #define CAP1 0x08
35 #define CAP2 0x0C
36 #define CAP3 0x10
37 #define CAP4 0x14
38 #define ECCTL2 0x2A
39 #define ECCTL2_APWM_POL_LOW BIT(10)
40 #define ECCTL2_APWM_MODE BIT(9)
41 #define ECCTL2_SYNC_SEL_DISA (BIT(7) | BIT(6))
42 #define ECCTL2_TSCTR_FREERUN BIT(4)
44 struct ecap_context {
45 u32 cap3;
46 u32 cap4;
47 u16 ecctl2;
50 struct ecap_pwm_chip {
51 struct pwm_chip chip;
52 unsigned int clk_rate;
53 void __iomem *mmio_base;
54 struct ecap_context ctx;
57 static inline struct ecap_pwm_chip *to_ecap_pwm_chip(struct pwm_chip *chip)
59 return container_of(chip, struct ecap_pwm_chip, chip);
63 * period_ns = 10^9 * period_cycles / PWM_CLK_RATE
64 * duty_ns = 10^9 * duty_cycles / PWM_CLK_RATE
66 static int ecap_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
67 int duty_ns, int period_ns)
69 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
70 unsigned long long c;
71 unsigned long period_cycles, duty_cycles;
72 unsigned int reg_val;
74 if (period_ns > NSEC_PER_SEC)
75 return -ERANGE;
77 c = pc->clk_rate;
78 c = c * period_ns;
79 do_div(c, NSEC_PER_SEC);
80 period_cycles = (unsigned long)c;
82 if (period_cycles < 1) {
83 period_cycles = 1;
84 duty_cycles = 1;
85 } else {
86 c = pc->clk_rate;
87 c = c * duty_ns;
88 do_div(c, NSEC_PER_SEC);
89 duty_cycles = (unsigned long)c;
92 pm_runtime_get_sync(pc->chip.dev);
94 reg_val = readw(pc->mmio_base + ECCTL2);
96 /* Configure APWM mode & disable sync option */
97 reg_val |= ECCTL2_APWM_MODE | ECCTL2_SYNC_SEL_DISA;
99 writew(reg_val, pc->mmio_base + ECCTL2);
101 if (!test_bit(PWMF_ENABLED, &pwm->flags)) {
102 /* Update active registers if not running */
103 writel(duty_cycles, pc->mmio_base + CAP2);
104 writel(period_cycles, pc->mmio_base + CAP1);
105 } else {
107 * Update shadow registers to configure period and
108 * compare values. This helps current PWM period to
109 * complete on reconfiguring
111 writel(duty_cycles, pc->mmio_base + CAP4);
112 writel(period_cycles, pc->mmio_base + CAP3);
115 if (!test_bit(PWMF_ENABLED, &pwm->flags)) {
116 reg_val = readw(pc->mmio_base + ECCTL2);
117 /* Disable APWM mode to put APWM output Low */
118 reg_val &= ~ECCTL2_APWM_MODE;
119 writew(reg_val, pc->mmio_base + ECCTL2);
122 pm_runtime_put_sync(pc->chip.dev);
123 return 0;
126 static int ecap_pwm_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm,
127 enum pwm_polarity polarity)
129 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
130 unsigned short reg_val;
132 pm_runtime_get_sync(pc->chip.dev);
133 reg_val = readw(pc->mmio_base + ECCTL2);
134 if (polarity == PWM_POLARITY_INVERSED)
135 /* Duty cycle defines LOW period of PWM */
136 reg_val |= ECCTL2_APWM_POL_LOW;
137 else
138 /* Duty cycle defines HIGH period of PWM */
139 reg_val &= ~ECCTL2_APWM_POL_LOW;
141 writew(reg_val, pc->mmio_base + ECCTL2);
142 pm_runtime_put_sync(pc->chip.dev);
143 return 0;
146 static int ecap_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
148 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
149 unsigned int reg_val;
151 /* Leave clock enabled on enabling PWM */
152 pm_runtime_get_sync(pc->chip.dev);
155 * Enable 'Free run Time stamp counter mode' to start counter
156 * and 'APWM mode' to enable APWM output
158 reg_val = readw(pc->mmio_base + ECCTL2);
159 reg_val |= ECCTL2_TSCTR_FREERUN | ECCTL2_APWM_MODE;
160 writew(reg_val, pc->mmio_base + ECCTL2);
161 return 0;
164 static void ecap_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
166 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
167 unsigned int reg_val;
170 * Disable 'Free run Time stamp counter mode' to stop counter
171 * and 'APWM mode' to put APWM output to low
173 reg_val = readw(pc->mmio_base + ECCTL2);
174 reg_val &= ~(ECCTL2_TSCTR_FREERUN | ECCTL2_APWM_MODE);
175 writew(reg_val, pc->mmio_base + ECCTL2);
177 /* Disable clock on PWM disable */
178 pm_runtime_put_sync(pc->chip.dev);
181 static void ecap_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
183 if (test_bit(PWMF_ENABLED, &pwm->flags)) {
184 dev_warn(chip->dev, "Removing PWM device without disabling\n");
185 pm_runtime_put_sync(chip->dev);
189 static const struct pwm_ops ecap_pwm_ops = {
190 .free = ecap_pwm_free,
191 .config = ecap_pwm_config,
192 .set_polarity = ecap_pwm_set_polarity,
193 .enable = ecap_pwm_enable,
194 .disable = ecap_pwm_disable,
195 .owner = THIS_MODULE,
198 static const struct of_device_id ecap_of_match[] = {
199 { .compatible = "ti,am33xx-ecap" },
202 MODULE_DEVICE_TABLE(of, ecap_of_match);
204 static int ecap_pwm_probe(struct platform_device *pdev)
206 int ret;
207 struct resource *r;
208 struct clk *clk;
209 struct ecap_pwm_chip *pc;
210 u16 status;
211 struct pinctrl *pinctrl;
213 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
214 if (IS_ERR(pinctrl))
215 dev_warn(&pdev->dev, "unable to select pin group\n");
217 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
218 if (!pc) {
219 dev_err(&pdev->dev, "failed to allocate memory\n");
220 return -ENOMEM;
223 clk = devm_clk_get(&pdev->dev, "fck");
224 if (IS_ERR(clk)) {
225 dev_err(&pdev->dev, "failed to get clock\n");
226 return PTR_ERR(clk);
229 pc->clk_rate = clk_get_rate(clk);
230 if (!pc->clk_rate) {
231 dev_err(&pdev->dev, "failed to get clock rate\n");
232 return -EINVAL;
235 pc->chip.dev = &pdev->dev;
236 pc->chip.ops = &ecap_pwm_ops;
237 pc->chip.of_xlate = of_pwm_xlate_with_flags;
238 pc->chip.of_pwm_n_cells = 3;
239 pc->chip.base = -1;
240 pc->chip.npwm = 1;
242 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
243 if (!r) {
244 dev_err(&pdev->dev, "no memory resource defined\n");
245 return -ENODEV;
248 pc->mmio_base = devm_ioremap_resource(&pdev->dev, r);
249 if (IS_ERR(pc->mmio_base))
250 return PTR_ERR(pc->mmio_base);
252 ret = pwmchip_add(&pc->chip);
253 if (ret < 0) {
254 dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
255 return ret;
258 pm_runtime_enable(&pdev->dev);
259 pm_runtime_get_sync(&pdev->dev);
261 status = pwmss_submodule_state_change(pdev->dev.parent,
262 PWMSS_ECAPCLK_EN);
263 if (!(status & PWMSS_ECAPCLK_EN_ACK)) {
264 dev_err(&pdev->dev, "PWMSS config space clock enable failed\n");
265 ret = -EINVAL;
266 goto pwmss_clk_failure;
269 pm_runtime_put_sync(&pdev->dev);
271 platform_set_drvdata(pdev, pc);
272 return 0;
274 pwmss_clk_failure:
275 pm_runtime_put_sync(&pdev->dev);
276 pm_runtime_disable(&pdev->dev);
277 pwmchip_remove(&pc->chip);
278 return ret;
281 static int ecap_pwm_remove(struct platform_device *pdev)
283 struct ecap_pwm_chip *pc = platform_get_drvdata(pdev);
285 pm_runtime_get_sync(&pdev->dev);
287 * Due to hardware misbehaviour, acknowledge of the stop_req
288 * is missing. Hence checking of the status bit skipped.
290 pwmss_submodule_state_change(pdev->dev.parent, PWMSS_ECAPCLK_STOP_REQ);
291 pm_runtime_put_sync(&pdev->dev);
293 pm_runtime_put_sync(&pdev->dev);
294 pm_runtime_disable(&pdev->dev);
295 return pwmchip_remove(&pc->chip);
298 void ecap_pwm_save_context(struct ecap_pwm_chip *pc)
300 pm_runtime_get_sync(pc->chip.dev);
301 pc->ctx.ecctl2 = readw(pc->mmio_base + ECCTL2);
302 pc->ctx.cap4 = readl(pc->mmio_base + CAP4);
303 pc->ctx.cap3 = readl(pc->mmio_base + CAP3);
304 pm_runtime_put_sync(pc->chip.dev);
307 void ecap_pwm_restore_context(struct ecap_pwm_chip *pc)
309 writel(pc->ctx.cap3, pc->mmio_base + CAP3);
310 writel(pc->ctx.cap4, pc->mmio_base + CAP4);
311 writew(pc->ctx.ecctl2, pc->mmio_base + ECCTL2);
314 static int ecap_pwm_suspend(struct device *dev)
316 struct ecap_pwm_chip *pc = dev_get_drvdata(dev);
317 struct pwm_device *pwm = pc->chip.pwms;
319 ecap_pwm_save_context(pc);
321 /* Disable explicitly if PWM is running */
322 if (test_bit(PWMF_ENABLED, &pwm->flags))
323 pm_runtime_put_sync(dev);
325 return 0;
328 static int ecap_pwm_resume(struct device *dev)
330 struct ecap_pwm_chip *pc = dev_get_drvdata(dev);
331 struct pwm_device *pwm = pc->chip.pwms;
333 /* Enable explicitly if PWM was running */
334 if (test_bit(PWMF_ENABLED, &pwm->flags))
335 pm_runtime_get_sync(dev);
337 ecap_pwm_restore_context(pc);
338 return 0;
341 static SIMPLE_DEV_PM_OPS(ecap_pwm_pm_ops, ecap_pwm_suspend, ecap_pwm_resume);
343 static struct platform_driver ecap_pwm_driver = {
344 .driver = {
345 .name = "ecap",
346 .owner = THIS_MODULE,
347 .of_match_table = ecap_of_match,
348 .pm = &ecap_pwm_pm_ops,
350 .probe = ecap_pwm_probe,
351 .remove = ecap_pwm_remove,
354 module_platform_driver(ecap_pwm_driver);
356 MODULE_DESCRIPTION("ECAP PWM driver");
357 MODULE_AUTHOR("Texas Instruments");
358 MODULE_LICENSE("GPL");