2 * PWM framework driver for Cirrus Logic EP93xx
4 * Copyright (c) 2009 Matthieu Crapet <mcrapet@gmail.com>
5 * Copyright (c) 2009, 2013 H Hartley Sweeten <hsweeten@visionengravers.com>
7 * EP9301/02 have only one channel:
8 * platform device ep93xx-pwm.1 - PWMOUT1 (EGPIO14)
10 * EP9307 has only one channel:
11 * platform device ep93xx-pwm.0 - PWMOUT
13 * EP9312/15 have two channels:
14 * platform device ep93xx-pwm.0 - PWMOUT
15 * platform device ep93xx-pwm.1 - PWMOUT1 (EGPIO14)
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
28 #include <linux/module.h>
29 #include <linux/platform_device.h>
30 #include <linux/slab.h>
31 #include <linux/clk.h>
32 #include <linux/err.h>
34 #include <linux/pwm.h>
36 #include <asm/div64.h>
38 #include <mach/platform.h> /* for ep93xx_pwm_{acquire,release}_gpio() */
40 #define EP93XX_PWMx_TERM_COUNT 0x00
41 #define EP93XX_PWMx_DUTY_CYCLE 0x04
42 #define EP93XX_PWMx_ENABLE 0x08
43 #define EP93XX_PWMx_INVERT 0x0c
51 static inline struct ep93xx_pwm
*to_ep93xx_pwm(struct pwm_chip
*chip
)
53 return container_of(chip
, struct ep93xx_pwm
, chip
);
56 static int ep93xx_pwm_request(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
58 struct platform_device
*pdev
= to_platform_device(chip
->dev
);
60 return ep93xx_pwm_acquire_gpio(pdev
);
63 static void ep93xx_pwm_free(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
65 struct platform_device
*pdev
= to_platform_device(chip
->dev
);
67 ep93xx_pwm_release_gpio(pdev
);
70 static int ep93xx_pwm_config(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
71 int duty_ns
, int period_ns
)
73 struct ep93xx_pwm
*ep93xx_pwm
= to_ep93xx_pwm(chip
);
74 void __iomem
*base
= ep93xx_pwm
->base
;
76 unsigned long period_cycles
;
77 unsigned long duty_cycles
;
82 * The clock needs to be enabled to access the PWM registers.
83 * Configuration can be changed at any time.
85 if (!pwm_is_enabled(pwm
)) {
86 ret
= clk_enable(ep93xx_pwm
->clk
);
91 c
= clk_get_rate(ep93xx_pwm
->clk
);
93 do_div(c
, 1000000000);
101 if (period_cycles
< 0x10000 && duty_cycles
< 0x10000) {
102 term
= readw(base
+ EP93XX_PWMx_TERM_COUNT
);
104 /* Order is important if PWM is running */
105 if (period_cycles
> term
) {
106 writew(period_cycles
, base
+ EP93XX_PWMx_TERM_COUNT
);
107 writew(duty_cycles
, base
+ EP93XX_PWMx_DUTY_CYCLE
);
109 writew(duty_cycles
, base
+ EP93XX_PWMx_DUTY_CYCLE
);
110 writew(period_cycles
, base
+ EP93XX_PWMx_TERM_COUNT
);
116 if (!pwm_is_enabled(pwm
))
117 clk_disable(ep93xx_pwm
->clk
);
122 static int ep93xx_pwm_polarity(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
123 enum pwm_polarity polarity
)
125 struct ep93xx_pwm
*ep93xx_pwm
= to_ep93xx_pwm(chip
);
129 * The clock needs to be enabled to access the PWM registers.
130 * Polarity can only be changed when the PWM is disabled.
132 ret
= clk_enable(ep93xx_pwm
->clk
);
136 if (polarity
== PWM_POLARITY_INVERSED
)
137 writew(0x1, ep93xx_pwm
->base
+ EP93XX_PWMx_INVERT
);
139 writew(0x0, ep93xx_pwm
->base
+ EP93XX_PWMx_INVERT
);
141 clk_disable(ep93xx_pwm
->clk
);
146 static int ep93xx_pwm_enable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
148 struct ep93xx_pwm
*ep93xx_pwm
= to_ep93xx_pwm(chip
);
151 ret
= clk_enable(ep93xx_pwm
->clk
);
155 writew(0x1, ep93xx_pwm
->base
+ EP93XX_PWMx_ENABLE
);
160 static void ep93xx_pwm_disable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
162 struct ep93xx_pwm
*ep93xx_pwm
= to_ep93xx_pwm(chip
);
164 writew(0x0, ep93xx_pwm
->base
+ EP93XX_PWMx_ENABLE
);
165 clk_disable(ep93xx_pwm
->clk
);
168 static const struct pwm_ops ep93xx_pwm_ops
= {
169 .request
= ep93xx_pwm_request
,
170 .free
= ep93xx_pwm_free
,
171 .config
= ep93xx_pwm_config
,
172 .set_polarity
= ep93xx_pwm_polarity
,
173 .enable
= ep93xx_pwm_enable
,
174 .disable
= ep93xx_pwm_disable
,
175 .owner
= THIS_MODULE
,
178 static int ep93xx_pwm_probe(struct platform_device
*pdev
)
180 struct ep93xx_pwm
*ep93xx_pwm
;
181 struct resource
*res
;
184 ep93xx_pwm
= devm_kzalloc(&pdev
->dev
, sizeof(*ep93xx_pwm
), GFP_KERNEL
);
188 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
189 ep93xx_pwm
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
190 if (IS_ERR(ep93xx_pwm
->base
))
191 return PTR_ERR(ep93xx_pwm
->base
);
193 ep93xx_pwm
->clk
= devm_clk_get(&pdev
->dev
, "pwm_clk");
194 if (IS_ERR(ep93xx_pwm
->clk
))
195 return PTR_ERR(ep93xx_pwm
->clk
);
197 ep93xx_pwm
->chip
.dev
= &pdev
->dev
;
198 ep93xx_pwm
->chip
.ops
= &ep93xx_pwm_ops
;
199 ep93xx_pwm
->chip
.base
= -1;
200 ep93xx_pwm
->chip
.npwm
= 1;
202 ret
= pwmchip_add(&ep93xx_pwm
->chip
);
206 platform_set_drvdata(pdev
, ep93xx_pwm
);
210 static int ep93xx_pwm_remove(struct platform_device
*pdev
)
212 struct ep93xx_pwm
*ep93xx_pwm
= platform_get_drvdata(pdev
);
214 return pwmchip_remove(&ep93xx_pwm
->chip
);
217 static struct platform_driver ep93xx_pwm_driver
= {
219 .name
= "ep93xx-pwm",
221 .probe
= ep93xx_pwm_probe
,
222 .remove
= ep93xx_pwm_remove
,
224 module_platform_driver(ep93xx_pwm_driver
);
226 MODULE_DESCRIPTION("Cirrus Logic EP93xx PWM driver");
227 MODULE_AUTHOR("Matthieu Crapet <mcrapet@gmail.com>");
228 MODULE_AUTHOR("H Hartley Sweeten <hsweeten@visionengravers.com>");
229 MODULE_ALIAS("platform:ep93xx-pwm");
230 MODULE_LICENSE("GPL");