blob: 4e5c3d13d4f8d31a0faa65ccd7146c0a28436e3c [file] [log] [blame]
Philip, Avinash8e0cb052012-07-25 16:58:18 +05301/*
2 * ECAP PWM driver
3 *
4 * Copyright (C) 2012 Texas Instruments, Inc. - http://www.ti.com/
5 *
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.
10 *
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.
15 *
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.
19 */
20
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>
Philip, Avinash333b08e2012-11-27 14:18:09 +053028#include <linux/of_device.h>
29
30#include "pwm-tipwmss.h"
Philip, Avinash8e0cb052012-07-25 16:58:18 +053031
32/* ECAP registers and bits definitions */
33#define CAP1 0x08
34#define CAP2 0x0C
35#define CAP3 0x10
36#define CAP4 0x14
37#define ECCTL2 0x2A
Philip, Avinash454870a2012-09-06 10:40:02 +053038#define ECCTL2_APWM_POL_LOW BIT(10)
Philip, Avinash8e0cb052012-07-25 16:58:18 +053039#define ECCTL2_APWM_MODE BIT(9)
40#define ECCTL2_SYNC_SEL_DISA (BIT(7) | BIT(6))
41#define ECCTL2_TSCTR_FREERUN BIT(4)
42
Philip Avinash0d75c202013-01-17 14:50:03 +053043struct ecap_context {
44 u32 cap3;
45 u32 cap4;
46 u16 ecctl2;
47};
48
Philip, Avinash8e0cb052012-07-25 16:58:18 +053049struct ecap_pwm_chip {
50 struct pwm_chip chip;
51 unsigned int clk_rate;
52 void __iomem *mmio_base;
Philip Avinash0d75c202013-01-17 14:50:03 +053053 struct ecap_context ctx;
Philip, Avinash8e0cb052012-07-25 16:58:18 +053054};
55
56static inline struct ecap_pwm_chip *to_ecap_pwm_chip(struct pwm_chip *chip)
57{
58 return container_of(chip, struct ecap_pwm_chip, chip);
59}
60
61/*
62 * period_ns = 10^9 * period_cycles / PWM_CLK_RATE
63 * duty_ns = 10^9 * duty_cycles / PWM_CLK_RATE
64 */
65static int ecap_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
66 int duty_ns, int period_ns)
67{
68 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
69 unsigned long long c;
70 unsigned long period_cycles, duty_cycles;
71 unsigned int reg_val;
72
Thierry Redingc2d476a2012-09-02 22:13:40 +020073 if (period_ns > NSEC_PER_SEC)
Philip, Avinash8e0cb052012-07-25 16:58:18 +053074 return -ERANGE;
75
76 c = pc->clk_rate;
77 c = c * period_ns;
78 do_div(c, NSEC_PER_SEC);
79 period_cycles = (unsigned long)c;
80
81 if (period_cycles < 1) {
82 period_cycles = 1;
83 duty_cycles = 1;
84 } else {
85 c = pc->clk_rate;
86 c = c * duty_ns;
87 do_div(c, NSEC_PER_SEC);
88 duty_cycles = (unsigned long)c;
89 }
90
91 pm_runtime_get_sync(pc->chip.dev);
92
93 reg_val = readw(pc->mmio_base + ECCTL2);
94
95 /* Configure APWM mode & disable sync option */
96 reg_val |= ECCTL2_APWM_MODE | ECCTL2_SYNC_SEL_DISA;
97
98 writew(reg_val, pc->mmio_base + ECCTL2);
99
100 if (!test_bit(PWMF_ENABLED, &pwm->flags)) {
101 /* Update active registers if not running */
102 writel(duty_cycles, pc->mmio_base + CAP2);
103 writel(period_cycles, pc->mmio_base + CAP1);
104 } else {
105 /*
106 * Update shadow registers to configure period and
107 * compare values. This helps current PWM period to
108 * complete on reconfiguring
109 */
110 writel(duty_cycles, pc->mmio_base + CAP4);
111 writel(period_cycles, pc->mmio_base + CAP3);
112 }
113
Philip, Avinashc06fad92012-08-23 12:29:46 +0530114 if (!test_bit(PWMF_ENABLED, &pwm->flags)) {
115 reg_val = readw(pc->mmio_base + ECCTL2);
116 /* Disable APWM mode to put APWM output Low */
117 reg_val &= ~ECCTL2_APWM_MODE;
118 writew(reg_val, pc->mmio_base + ECCTL2);
119 }
120
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530121 pm_runtime_put_sync(pc->chip.dev);
122 return 0;
123}
124
Philip, Avinash454870a2012-09-06 10:40:02 +0530125static int ecap_pwm_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm,
126 enum pwm_polarity polarity)
127{
128 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
129 unsigned short reg_val;
130
131 pm_runtime_get_sync(pc->chip.dev);
132 reg_val = readw(pc->mmio_base + ECCTL2);
133 if (polarity == PWM_POLARITY_INVERSED)
134 /* Duty cycle defines LOW period of PWM */
135 reg_val |= ECCTL2_APWM_POL_LOW;
136 else
137 /* Duty cycle defines HIGH period of PWM */
138 reg_val &= ~ECCTL2_APWM_POL_LOW;
139
140 writew(reg_val, pc->mmio_base + ECCTL2);
141 pm_runtime_put_sync(pc->chip.dev);
142 return 0;
143}
144
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530145static int ecap_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
146{
147 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
148 unsigned int reg_val;
149
150 /* Leave clock enabled on enabling PWM */
151 pm_runtime_get_sync(pc->chip.dev);
152
153 /*
154 * Enable 'Free run Time stamp counter mode' to start counter
155 * and 'APWM mode' to enable APWM output
156 */
157 reg_val = readw(pc->mmio_base + ECCTL2);
158 reg_val |= ECCTL2_TSCTR_FREERUN | ECCTL2_APWM_MODE;
159 writew(reg_val, pc->mmio_base + ECCTL2);
160 return 0;
161}
162
163static void ecap_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
164{
165 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
166 unsigned int reg_val;
167
168 /*
169 * Disable 'Free run Time stamp counter mode' to stop counter
170 * and 'APWM mode' to put APWM output to low
171 */
172 reg_val = readw(pc->mmio_base + ECCTL2);
173 reg_val &= ~(ECCTL2_TSCTR_FREERUN | ECCTL2_APWM_MODE);
174 writew(reg_val, pc->mmio_base + ECCTL2);
175
176 /* Disable clock on PWM disable */
177 pm_runtime_put_sync(pc->chip.dev);
178}
179
180static void ecap_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
181{
182 if (test_bit(PWMF_ENABLED, &pwm->flags)) {
183 dev_warn(chip->dev, "Removing PWM device without disabling\n");
184 pm_runtime_put_sync(chip->dev);
185 }
186}
187
188static const struct pwm_ops ecap_pwm_ops = {
189 .free = ecap_pwm_free,
190 .config = ecap_pwm_config,
Philip, Avinash454870a2012-09-06 10:40:02 +0530191 .set_polarity = ecap_pwm_set_polarity,
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530192 .enable = ecap_pwm_enable,
193 .disable = ecap_pwm_disable,
194 .owner = THIS_MODULE,
195};
196
Philip, Avinash333b08e2012-11-27 14:18:09 +0530197static const struct of_device_id ecap_of_match[] = {
198 { .compatible = "ti,am33xx-ecap" },
199 {},
200};
201MODULE_DEVICE_TABLE(of, ecap_of_match);
202
Bill Pemberton3e9fe832012-11-19 13:23:14 -0500203static int ecap_pwm_probe(struct platform_device *pdev)
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530204{
205 int ret;
206 struct resource *r;
207 struct clk *clk;
208 struct ecap_pwm_chip *pc;
Philip, Avinash333b08e2012-11-27 14:18:09 +0530209 u16 status;
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530210
211 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
212 if (!pc) {
213 dev_err(&pdev->dev, "failed to allocate memory\n");
214 return -ENOMEM;
215 }
216
217 clk = devm_clk_get(&pdev->dev, "fck");
218 if (IS_ERR(clk)) {
219 dev_err(&pdev->dev, "failed to get clock\n");
220 return PTR_ERR(clk);
221 }
222
223 pc->clk_rate = clk_get_rate(clk);
224 if (!pc->clk_rate) {
225 dev_err(&pdev->dev, "failed to get clock rate\n");
226 return -EINVAL;
227 }
228
229 pc->chip.dev = &pdev->dev;
230 pc->chip.ops = &ecap_pwm_ops;
Philip, Avinash333b08e2012-11-27 14:18:09 +0530231 pc->chip.of_xlate = of_pwm_xlate_with_flags;
232 pc->chip.of_pwm_n_cells = 3;
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530233 pc->chip.base = -1;
234 pc->chip.npwm = 1;
235
236 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding6d4294d2013-01-21 11:09:16 +0100237 pc->mmio_base = devm_ioremap_resource(&pdev->dev, r);
238 if (IS_ERR(pc->mmio_base))
239 return PTR_ERR(pc->mmio_base);
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530240
241 ret = pwmchip_add(&pc->chip);
242 if (ret < 0) {
243 dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
244 return ret;
245 }
246
247 pm_runtime_enable(&pdev->dev);
Philip, Avinash333b08e2012-11-27 14:18:09 +0530248 pm_runtime_get_sync(&pdev->dev);
249
250 status = pwmss_submodule_state_change(pdev->dev.parent,
251 PWMSS_ECAPCLK_EN);
252 if (!(status & PWMSS_ECAPCLK_EN_ACK)) {
253 dev_err(&pdev->dev, "PWMSS config space clock enable failed\n");
254 ret = -EINVAL;
255 goto pwmss_clk_failure;
256 }
257
258 pm_runtime_put_sync(&pdev->dev);
259
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530260 platform_set_drvdata(pdev, pc);
261 return 0;
Philip, Avinash333b08e2012-11-27 14:18:09 +0530262
263pwmss_clk_failure:
264 pm_runtime_put_sync(&pdev->dev);
265 pm_runtime_disable(&pdev->dev);
266 pwmchip_remove(&pc->chip);
267 return ret;
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530268}
269
Bill Pemberton77f37912012-11-19 13:26:09 -0500270static int ecap_pwm_remove(struct platform_device *pdev)
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530271{
272 struct ecap_pwm_chip *pc = platform_get_drvdata(pdev);
273
Philip, Avinash333b08e2012-11-27 14:18:09 +0530274 pm_runtime_get_sync(&pdev->dev);
275 /*
276 * Due to hardware misbehaviour, acknowledge of the stop_req
277 * is missing. Hence checking of the status bit skipped.
278 */
279 pwmss_submodule_state_change(pdev->dev.parent, PWMSS_ECAPCLK_STOP_REQ);
280 pm_runtime_put_sync(&pdev->dev);
281
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530282 pm_runtime_put_sync(&pdev->dev);
283 pm_runtime_disable(&pdev->dev);
284 return pwmchip_remove(&pc->chip);
285}
286
Jingoo Han3943a652013-08-02 15:11:18 +0900287#ifdef CONFIG_PM_SLEEP
Axel Lina38c9892013-03-26 22:54:58 +0800288static void ecap_pwm_save_context(struct ecap_pwm_chip *pc)
Philip Avinash0d75c202013-01-17 14:50:03 +0530289{
290 pm_runtime_get_sync(pc->chip.dev);
291 pc->ctx.ecctl2 = readw(pc->mmio_base + ECCTL2);
292 pc->ctx.cap4 = readl(pc->mmio_base + CAP4);
293 pc->ctx.cap3 = readl(pc->mmio_base + CAP3);
294 pm_runtime_put_sync(pc->chip.dev);
295}
296
Axel Lina38c9892013-03-26 22:54:58 +0800297static void ecap_pwm_restore_context(struct ecap_pwm_chip *pc)
Philip Avinash0d75c202013-01-17 14:50:03 +0530298{
299 writel(pc->ctx.cap3, pc->mmio_base + CAP3);
300 writel(pc->ctx.cap4, pc->mmio_base + CAP4);
301 writew(pc->ctx.ecctl2, pc->mmio_base + ECCTL2);
302}
303
304static int ecap_pwm_suspend(struct device *dev)
305{
306 struct ecap_pwm_chip *pc = dev_get_drvdata(dev);
307 struct pwm_device *pwm = pc->chip.pwms;
308
309 ecap_pwm_save_context(pc);
310
311 /* Disable explicitly if PWM is running */
312 if (test_bit(PWMF_ENABLED, &pwm->flags))
313 pm_runtime_put_sync(dev);
314
315 return 0;
316}
317
318static int ecap_pwm_resume(struct device *dev)
319{
320 struct ecap_pwm_chip *pc = dev_get_drvdata(dev);
321 struct pwm_device *pwm = pc->chip.pwms;
322
323 /* Enable explicitly if PWM was running */
324 if (test_bit(PWMF_ENABLED, &pwm->flags))
325 pm_runtime_get_sync(dev);
326
327 ecap_pwm_restore_context(pc);
328 return 0;
329}
Jingoo Hanb78f5fc2013-03-11 11:12:58 +0900330#endif
Philip Avinash0d75c202013-01-17 14:50:03 +0530331
332static SIMPLE_DEV_PM_OPS(ecap_pwm_pm_ops, ecap_pwm_suspend, ecap_pwm_resume);
333
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530334static struct platform_driver ecap_pwm_driver = {
335 .driver = {
Philip, Avinash333b08e2012-11-27 14:18:09 +0530336 .name = "ecap",
337 .owner = THIS_MODULE,
338 .of_match_table = ecap_of_match,
Philip Avinash0d75c202013-01-17 14:50:03 +0530339 .pm = &ecap_pwm_pm_ops,
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530340 },
341 .probe = ecap_pwm_probe,
Bill Pembertonfd109112012-11-19 13:21:28 -0500342 .remove = ecap_pwm_remove,
Philip, Avinash8e0cb052012-07-25 16:58:18 +0530343};
344
345module_platform_driver(ecap_pwm_driver);
346
347MODULE_DESCRIPTION("ECAP PWM driver");
348MODULE_AUTHOR("Texas Instruments");
349MODULE_LICENSE("GPL");