blob: ab38c8203b790f3ac6ecac0bb7d60d47c4c84775 [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +05302/*
3 * ECAP PWM driver
4 *
5 * Copyright (C) 2012 Texas Instruments, Inc. - http://www.ti.com/
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +05306 */
7
8#include <linux/module.h>
9#include <linux/platform_device.h>
10#include <linux/io.h>
11#include <linux/err.h>
12#include <linux/clk.h>
13#include <linux/pm_runtime.h>
14#include <linux/pwm.h>
Philip, Avinash333b08e2012-11-27 14:18:09 +053015#include <linux/of_device.h>
16
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053017/* ECAP registers and bits definitions */
18#define CAP1 0x08
19#define CAP2 0x0C
20#define CAP3 0x10
21#define CAP4 0x14
22#define ECCTL2 0x2A
Philip, Avinash454870a2012-09-06 10:40:02 +053023#define ECCTL2_APWM_POL_LOW BIT(10)
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053024#define ECCTL2_APWM_MODE BIT(9)
25#define ECCTL2_SYNC_SEL_DISA (BIT(7) | BIT(6))
26#define ECCTL2_TSCTR_FREERUN BIT(4)
27
Philip Avinash0d75c202013-01-17 14:50:03 +053028struct ecap_context {
Thierry Reding53c79722017-08-21 08:29:41 +020029 u32 cap3;
30 u32 cap4;
31 u16 ecctl2;
Philip Avinash0d75c202013-01-17 14:50:03 +053032};
33
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053034struct ecap_pwm_chip {
Thierry Reding53c79722017-08-21 08:29:41 +020035 struct pwm_chip chip;
36 unsigned int clk_rate;
37 void __iomem *mmio_base;
Philip Avinash0d75c202013-01-17 14:50:03 +053038 struct ecap_context ctx;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053039};
40
41static inline struct ecap_pwm_chip *to_ecap_pwm_chip(struct pwm_chip *chip)
42{
43 return container_of(chip, struct ecap_pwm_chip, chip);
44}
45
46/*
47 * period_ns = 10^9 * period_cycles / PWM_CLK_RATE
48 * duty_ns = 10^9 * duty_cycles / PWM_CLK_RATE
49 */
50static int ecap_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
51 int duty_ns, int period_ns)
52{
53 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
Thierry Reding53c79722017-08-21 08:29:41 +020054 u32 period_cycles, duty_cycles;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053055 unsigned long long c;
Thierry Reding53c79722017-08-21 08:29:41 +020056 u16 value;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053057
Thierry Redingc2d476a2012-09-02 22:13:40 +020058 if (period_ns > NSEC_PER_SEC)
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053059 return -ERANGE;
60
61 c = pc->clk_rate;
62 c = c * period_ns;
63 do_div(c, NSEC_PER_SEC);
Thierry Reding53c79722017-08-21 08:29:41 +020064 period_cycles = (u32)c;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053065
66 if (period_cycles < 1) {
67 period_cycles = 1;
68 duty_cycles = 1;
69 } else {
70 c = pc->clk_rate;
71 c = c * duty_ns;
72 do_div(c, NSEC_PER_SEC);
Thierry Reding53c79722017-08-21 08:29:41 +020073 duty_cycles = (u32)c;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053074 }
75
76 pm_runtime_get_sync(pc->chip.dev);
77
Thierry Reding53c79722017-08-21 08:29:41 +020078 value = readw(pc->mmio_base + ECCTL2);
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053079
80 /* Configure APWM mode & disable sync option */
Thierry Reding53c79722017-08-21 08:29:41 +020081 value |= ECCTL2_APWM_MODE | ECCTL2_SYNC_SEL_DISA;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053082
Thierry Reding53c79722017-08-21 08:29:41 +020083 writew(value, pc->mmio_base + ECCTL2);
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053084
Boris Brezillon5c312522015-07-01 10:21:47 +020085 if (!pwm_is_enabled(pwm)) {
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +053086 /* Update active registers if not running */
87 writel(duty_cycles, pc->mmio_base + CAP2);
88 writel(period_cycles, pc->mmio_base + CAP1);
89 } else {
90 /*
91 * Update shadow registers to configure period and
92 * compare values. This helps current PWM period to
93 * complete on reconfiguring
94 */
95 writel(duty_cycles, pc->mmio_base + CAP4);
96 writel(period_cycles, pc->mmio_base + CAP3);
97 }
98
Boris Brezillon5c312522015-07-01 10:21:47 +020099 if (!pwm_is_enabled(pwm)) {
Thierry Reding53c79722017-08-21 08:29:41 +0200100 value = readw(pc->mmio_base + ECCTL2);
Philip, Avinashc06fad92012-08-23 12:29:46 +0530101 /* Disable APWM mode to put APWM output Low */
Thierry Reding53c79722017-08-21 08:29:41 +0200102 value &= ~ECCTL2_APWM_MODE;
103 writew(value, pc->mmio_base + ECCTL2);
Philip, Avinashc06fad92012-08-23 12:29:46 +0530104 }
105
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530106 pm_runtime_put_sync(pc->chip.dev);
Thierry Reding53c79722017-08-21 08:29:41 +0200107
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530108 return 0;
109}
110
Philip, Avinash454870a2012-09-06 10:40:02 +0530111static int ecap_pwm_set_polarity(struct pwm_chip *chip, struct pwm_device *pwm,
Thierry Reding53c79722017-08-21 08:29:41 +0200112 enum pwm_polarity polarity)
Philip, Avinash454870a2012-09-06 10:40:02 +0530113{
114 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
Thierry Reding53c79722017-08-21 08:29:41 +0200115 u16 value;
Philip, Avinash454870a2012-09-06 10:40:02 +0530116
117 pm_runtime_get_sync(pc->chip.dev);
Thierry Reding53c79722017-08-21 08:29:41 +0200118
119 value = readw(pc->mmio_base + ECCTL2);
120
Philip, Avinash454870a2012-09-06 10:40:02 +0530121 if (polarity == PWM_POLARITY_INVERSED)
122 /* Duty cycle defines LOW period of PWM */
Thierry Reding53c79722017-08-21 08:29:41 +0200123 value |= ECCTL2_APWM_POL_LOW;
Philip, Avinash454870a2012-09-06 10:40:02 +0530124 else
125 /* Duty cycle defines HIGH period of PWM */
Thierry Reding53c79722017-08-21 08:29:41 +0200126 value &= ~ECCTL2_APWM_POL_LOW;
Philip, Avinash454870a2012-09-06 10:40:02 +0530127
Thierry Reding53c79722017-08-21 08:29:41 +0200128 writew(value, pc->mmio_base + ECCTL2);
129
Philip, Avinash454870a2012-09-06 10:40:02 +0530130 pm_runtime_put_sync(pc->chip.dev);
Thierry Reding53c79722017-08-21 08:29:41 +0200131
Philip, Avinash454870a2012-09-06 10:40:02 +0530132 return 0;
133}
134
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530135static int ecap_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
136{
137 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
Thierry Reding53c79722017-08-21 08:29:41 +0200138 u16 value;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530139
140 /* Leave clock enabled on enabling PWM */
141 pm_runtime_get_sync(pc->chip.dev);
142
143 /*
144 * Enable 'Free run Time stamp counter mode' to start counter
145 * and 'APWM mode' to enable APWM output
146 */
Thierry Reding53c79722017-08-21 08:29:41 +0200147 value = readw(pc->mmio_base + ECCTL2);
148 value |= ECCTL2_TSCTR_FREERUN | ECCTL2_APWM_MODE;
149 writew(value, pc->mmio_base + ECCTL2);
150
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530151 return 0;
152}
153
154static void ecap_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
155{
156 struct ecap_pwm_chip *pc = to_ecap_pwm_chip(chip);
Thierry Reding53c79722017-08-21 08:29:41 +0200157 u16 value;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530158
159 /*
160 * Disable 'Free run Time stamp counter mode' to stop counter
161 * and 'APWM mode' to put APWM output to low
162 */
Thierry Reding53c79722017-08-21 08:29:41 +0200163 value = readw(pc->mmio_base + ECCTL2);
164 value &= ~(ECCTL2_TSCTR_FREERUN | ECCTL2_APWM_MODE);
165 writew(value, pc->mmio_base + ECCTL2);
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530166
167 /* Disable clock on PWM disable */
168 pm_runtime_put_sync(pc->chip.dev);
169}
170
171static void ecap_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
172{
Boris Brezillon5c312522015-07-01 10:21:47 +0200173 if (pwm_is_enabled(pwm)) {
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530174 dev_warn(chip->dev, "Removing PWM device without disabling\n");
175 pm_runtime_put_sync(chip->dev);
176 }
177}
178
179static const struct pwm_ops ecap_pwm_ops = {
Thierry Reding53c79722017-08-21 08:29:41 +0200180 .free = ecap_pwm_free,
181 .config = ecap_pwm_config,
182 .set_polarity = ecap_pwm_set_polarity,
183 .enable = ecap_pwm_enable,
184 .disable = ecap_pwm_disable,
185 .owner = THIS_MODULE,
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530186};
187
Philip, Avinash333b08e2012-11-27 14:18:09 +0530188static const struct of_device_id ecap_of_match[] = {
Cooper Jr., Franklinae5200d2016-05-03 10:56:52 -0500189 { .compatible = "ti,am3352-ecap" },
Philip, Avinash333b08e2012-11-27 14:18:09 +0530190 { .compatible = "ti,am33xx-ecap" },
191 {},
192};
193MODULE_DEVICE_TABLE(of, ecap_of_match);
194
Bill Pemberton3e9fe832012-11-19 13:23:14 -0500195static int ecap_pwm_probe(struct platform_device *pdev)
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530196{
Cooper Jr., Franklinae5200d2016-05-03 10:56:52 -0500197 struct device_node *np = pdev->dev.of_node;
Thierry Reding53c79722017-08-21 08:29:41 +0200198 struct ecap_pwm_chip *pc;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530199 struct resource *r;
200 struct clk *clk;
Thierry Reding53c79722017-08-21 08:29:41 +0200201 int ret;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530202
203 pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL);
Jingoo Hanc10d5062014-04-23 18:41:27 +0900204 if (!pc)
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530205 return -ENOMEM;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530206
207 clk = devm_clk_get(&pdev->dev, "fck");
208 if (IS_ERR(clk)) {
Cooper Jr., Franklinae5200d2016-05-03 10:56:52 -0500209 if (of_device_is_compatible(np, "ti,am33xx-ecap")) {
210 dev_warn(&pdev->dev, "Binding is obsolete.\n");
211 clk = devm_clk_get(pdev->dev.parent, "fck");
212 }
213 }
214
215 if (IS_ERR(clk)) {
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530216 dev_err(&pdev->dev, "failed to get clock\n");
217 return PTR_ERR(clk);
218 }
219
220 pc->clk_rate = clk_get_rate(clk);
221 if (!pc->clk_rate) {
222 dev_err(&pdev->dev, "failed to get clock rate\n");
223 return -EINVAL;
224 }
225
226 pc->chip.dev = &pdev->dev;
227 pc->chip.ops = &ecap_pwm_ops;
Philip, Avinash333b08e2012-11-27 14:18:09 +0530228 pc->chip.of_xlate = of_pwm_xlate_with_flags;
229 pc->chip.of_pwm_n_cells = 3;
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530230 pc->chip.base = -1;
231 pc->chip.npwm = 1;
232
233 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding6d4294d2013-01-21 11:09:16 +0100234 pc->mmio_base = devm_ioremap_resource(&pdev->dev, r);
235 if (IS_ERR(pc->mmio_base))
236 return PTR_ERR(pc->mmio_base);
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530237
238 ret = pwmchip_add(&pc->chip);
239 if (ret < 0) {
240 dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
241 return ret;
242 }
243
Thierry Reding23f373e2017-08-21 08:31:37 +0200244 platform_set_drvdata(pdev, pc);
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530245 pm_runtime_enable(&pdev->dev);
Philip, Avinash333b08e2012-11-27 14:18:09 +0530246
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530247 return 0;
248}
249
Bill Pemberton77f37912012-11-19 13:26:09 -0500250static int ecap_pwm_remove(struct platform_device *pdev)
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530251{
252 struct ecap_pwm_chip *pc = platform_get_drvdata(pdev);
253
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530254 pm_runtime_disable(&pdev->dev);
Thierry Reding53c79722017-08-21 08:29:41 +0200255
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530256 return pwmchip_remove(&pc->chip);
257}
258
Jingoo Han3943a652013-08-02 15:11:18 +0900259#ifdef CONFIG_PM_SLEEP
Axel Lina38c9892013-03-26 22:54:58 +0800260static void ecap_pwm_save_context(struct ecap_pwm_chip *pc)
Philip Avinash0d75c202013-01-17 14:50:03 +0530261{
262 pm_runtime_get_sync(pc->chip.dev);
263 pc->ctx.ecctl2 = readw(pc->mmio_base + ECCTL2);
264 pc->ctx.cap4 = readl(pc->mmio_base + CAP4);
265 pc->ctx.cap3 = readl(pc->mmio_base + CAP3);
266 pm_runtime_put_sync(pc->chip.dev);
267}
268
Axel Lina38c9892013-03-26 22:54:58 +0800269static void ecap_pwm_restore_context(struct ecap_pwm_chip *pc)
Philip Avinash0d75c202013-01-17 14:50:03 +0530270{
271 writel(pc->ctx.cap3, pc->mmio_base + CAP3);
272 writel(pc->ctx.cap4, pc->mmio_base + CAP4);
273 writew(pc->ctx.ecctl2, pc->mmio_base + ECCTL2);
274}
275
276static int ecap_pwm_suspend(struct device *dev)
277{
278 struct ecap_pwm_chip *pc = dev_get_drvdata(dev);
279 struct pwm_device *pwm = pc->chip.pwms;
280
281 ecap_pwm_save_context(pc);
282
283 /* Disable explicitly if PWM is running */
Boris Brezillon5c312522015-07-01 10:21:47 +0200284 if (pwm_is_enabled(pwm))
Philip Avinash0d75c202013-01-17 14:50:03 +0530285 pm_runtime_put_sync(dev);
286
287 return 0;
288}
289
290static int ecap_pwm_resume(struct device *dev)
291{
292 struct ecap_pwm_chip *pc = dev_get_drvdata(dev);
293 struct pwm_device *pwm = pc->chip.pwms;
294
295 /* Enable explicitly if PWM was running */
Boris Brezillon5c312522015-07-01 10:21:47 +0200296 if (pwm_is_enabled(pwm))
Philip Avinash0d75c202013-01-17 14:50:03 +0530297 pm_runtime_get_sync(dev);
298
299 ecap_pwm_restore_context(pc);
300 return 0;
301}
Jingoo Hanb78f5fc2013-03-11 11:12:58 +0900302#endif
Philip Avinash0d75c202013-01-17 14:50:03 +0530303
304static SIMPLE_DEV_PM_OPS(ecap_pwm_pm_ops, ecap_pwm_suspend, ecap_pwm_resume);
305
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530306static struct platform_driver ecap_pwm_driver = {
307 .driver = {
Thierry Reding53c79722017-08-21 08:29:41 +0200308 .name = "ecap",
Philip, Avinash333b08e2012-11-27 14:18:09 +0530309 .of_match_table = ecap_of_match,
Thierry Reding53c79722017-08-21 08:29:41 +0200310 .pm = &ecap_pwm_pm_ops,
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530311 },
312 .probe = ecap_pwm_probe,
Bill Pembertonfd109112012-11-19 13:21:28 -0500313 .remove = ecap_pwm_remove,
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530314};
Philip, Avinash8e0cb05b2012-07-25 16:58:18 +0530315module_platform_driver(ecap_pwm_driver);
316
317MODULE_DESCRIPTION("ECAP PWM driver");
318MODULE_AUTHOR("Texas Instruments");
319MODULE_LICENSE("GPL");