diff options
Diffstat (limited to 'drivers/pwm/pwm-pxa.c')
-rw-r--r-- | drivers/pwm/pwm-pxa.c | 248 |
1 files changed, 248 insertions, 0 deletions
diff --git a/drivers/pwm/pwm-pxa.c b/drivers/pwm/pwm-pxa.c new file mode 100644 index 000000000000..d5c6ce513e29 --- /dev/null +++ b/drivers/pwm/pwm-pxa.c | |||
@@ -0,0 +1,248 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-pxa/pwm.c | ||
3 | * | ||
4 | * simple driver for PWM (Pulse Width Modulator) controller | ||
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 version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * 2008-02-13 initial version | ||
11 | * eric miao <eric.miao@marvell.com> | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/platform_device.h> | ||
17 | #include <linux/slab.h> | ||
18 | #include <linux/err.h> | ||
19 | #include <linux/clk.h> | ||
20 | #include <linux/io.h> | ||
21 | #include <linux/pwm.h> | ||
22 | |||
23 | #include <asm/div64.h> | ||
24 | |||
25 | #define HAS_SECONDARY_PWM 0x10 | ||
26 | #define PWM_ID_BASE(d) ((d) & 0xf) | ||
27 | |||
28 | static const struct platform_device_id pwm_id_table[] = { | ||
29 | /* PWM has_secondary_pwm? */ | ||
30 | { "pxa25x-pwm", 0 }, | ||
31 | { "pxa27x-pwm", 0 | HAS_SECONDARY_PWM }, | ||
32 | { "pxa168-pwm", 1 }, | ||
33 | { "pxa910-pwm", 1 }, | ||
34 | { }, | ||
35 | }; | ||
36 | MODULE_DEVICE_TABLE(platform, pwm_id_table); | ||
37 | |||
38 | /* PWM registers and bits definitions */ | ||
39 | #define PWMCR (0x00) | ||
40 | #define PWMDCR (0x04) | ||
41 | #define PWMPCR (0x08) | ||
42 | |||
43 | #define PWMCR_SD (1 << 6) | ||
44 | #define PWMDCR_FD (1 << 10) | ||
45 | |||
46 | struct pxa_pwm_chip { | ||
47 | struct pwm_chip chip; | ||
48 | struct device *dev; | ||
49 | |||
50 | struct clk *clk; | ||
51 | int clk_enabled; | ||
52 | void __iomem *mmio_base; | ||
53 | }; | ||
54 | |||
55 | static inline struct pxa_pwm_chip *to_pxa_pwm_chip(struct pwm_chip *chip) | ||
56 | { | ||
57 | return container_of(chip, struct pxa_pwm_chip, chip); | ||
58 | } | ||
59 | |||
60 | /* | ||
61 | * period_ns = 10^9 * (PRESCALE + 1) * (PV + 1) / PWM_CLK_RATE | ||
62 | * duty_ns = 10^9 * (PRESCALE + 1) * DC / PWM_CLK_RATE | ||
63 | */ | ||
64 | static int pxa_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, | ||
65 | int duty_ns, int period_ns) | ||
66 | { | ||
67 | struct pxa_pwm_chip *pc = to_pxa_pwm_chip(chip); | ||
68 | unsigned long long c; | ||
69 | unsigned long period_cycles, prescale, pv, dc; | ||
70 | unsigned long offset; | ||
71 | int rc; | ||
72 | |||
73 | if (period_ns == 0 || duty_ns > period_ns) | ||
74 | return -EINVAL; | ||
75 | |||
76 | offset = pwm->hwpwm ? 0x10 : 0; | ||
77 | |||
78 | c = clk_get_rate(pc->clk); | ||
79 | c = c * period_ns; | ||
80 | do_div(c, 1000000000); | ||
81 | period_cycles = c; | ||
82 | |||
83 | if (period_cycles < 1) | ||
84 | period_cycles = 1; | ||
85 | prescale = (period_cycles - 1) / 1024; | ||
86 | pv = period_cycles / (prescale + 1) - 1; | ||
87 | |||
88 | if (prescale > 63) | ||
89 | return -EINVAL; | ||
90 | |||
91 | if (duty_ns == period_ns) | ||
92 | dc = PWMDCR_FD; | ||
93 | else | ||
94 | dc = (pv + 1) * duty_ns / period_ns; | ||
95 | |||
96 | /* NOTE: the clock to PWM has to be enabled first | ||
97 | * before writing to the registers | ||
98 | */ | ||
99 | rc = clk_prepare_enable(pc->clk); | ||
100 | if (rc < 0) | ||
101 | return rc; | ||
102 | |||
103 | writel(prescale, pc->mmio_base + offset + PWMCR); | ||
104 | writel(dc, pc->mmio_base + offset + PWMDCR); | ||
105 | writel(pv, pc->mmio_base + offset + PWMPCR); | ||
106 | |||
107 | clk_disable_unprepare(pc->clk); | ||
108 | return 0; | ||
109 | } | ||
110 | |||
111 | static int pxa_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) | ||
112 | { | ||
113 | struct pxa_pwm_chip *pc = to_pxa_pwm_chip(chip); | ||
114 | int rc = 0; | ||
115 | |||
116 | if (!pc->clk_enabled) { | ||
117 | rc = clk_prepare_enable(pc->clk); | ||
118 | if (!rc) | ||
119 | pc->clk_enabled++; | ||
120 | } | ||
121 | return rc; | ||
122 | } | ||
123 | |||
124 | static void pxa_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) | ||
125 | { | ||
126 | struct pxa_pwm_chip *pc = to_pxa_pwm_chip(chip); | ||
127 | |||
128 | if (pc->clk_enabled) { | ||
129 | clk_disable_unprepare(pc->clk); | ||
130 | pc->clk_enabled--; | ||
131 | } | ||
132 | } | ||
133 | |||
134 | static struct pwm_ops pxa_pwm_ops = { | ||
135 | .config = pxa_pwm_config, | ||
136 | .enable = pxa_pwm_enable, | ||
137 | .disable = pxa_pwm_disable, | ||
138 | .owner = THIS_MODULE, | ||
139 | }; | ||
140 | |||
141 | static int __devinit pwm_probe(struct platform_device *pdev) | ||
142 | { | ||
143 | const struct platform_device_id *id = platform_get_device_id(pdev); | ||
144 | struct pxa_pwm_chip *pwm; | ||
145 | struct resource *r; | ||
146 | int ret = 0; | ||
147 | |||
148 | pwm = kzalloc(sizeof(*pwm), GFP_KERNEL); | ||
149 | if (pwm == NULL) { | ||
150 | dev_err(&pdev->dev, "failed to allocate memory\n"); | ||
151 | return -ENOMEM; | ||
152 | } | ||
153 | |||
154 | pwm->clk = clk_get(&pdev->dev, NULL); | ||
155 | if (IS_ERR(pwm->clk)) { | ||
156 | ret = PTR_ERR(pwm->clk); | ||
157 | goto err_free; | ||
158 | } | ||
159 | pwm->clk_enabled = 0; | ||
160 | |||
161 | pwm->chip.dev = &pdev->dev; | ||
162 | pwm->chip.ops = &pxa_pwm_ops; | ||
163 | pwm->chip.base = -1; | ||
164 | pwm->chip.npwm = (id->driver_data & HAS_SECONDARY_PWM) ? 2 : 1; | ||
165 | |||
166 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
167 | if (r == NULL) { | ||
168 | dev_err(&pdev->dev, "no memory resource defined\n"); | ||
169 | ret = -ENODEV; | ||
170 | goto err_free_clk; | ||
171 | } | ||
172 | |||
173 | r = request_mem_region(r->start, resource_size(r), pdev->name); | ||
174 | if (r == NULL) { | ||
175 | dev_err(&pdev->dev, "failed to request memory resource\n"); | ||
176 | ret = -EBUSY; | ||
177 | goto err_free_clk; | ||
178 | } | ||
179 | |||
180 | pwm->mmio_base = ioremap(r->start, resource_size(r)); | ||
181 | if (pwm->mmio_base == NULL) { | ||
182 | dev_err(&pdev->dev, "failed to ioremap() registers\n"); | ||
183 | ret = -ENODEV; | ||
184 | goto err_free_mem; | ||
185 | } | ||
186 | |||
187 | ret = pwmchip_add(&pwm->chip); | ||
188 | if (ret < 0) { | ||
189 | dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret); | ||
190 | return ret; | ||
191 | } | ||
192 | |||
193 | platform_set_drvdata(pdev, pwm); | ||
194 | return 0; | ||
195 | |||
196 | err_free_mem: | ||
197 | release_mem_region(r->start, resource_size(r)); | ||
198 | err_free_clk: | ||
199 | clk_put(pwm->clk); | ||
200 | err_free: | ||
201 | kfree(pwm); | ||
202 | return ret; | ||
203 | } | ||
204 | |||
205 | static int __devexit pwm_remove(struct platform_device *pdev) | ||
206 | { | ||
207 | struct pxa_pwm_chip *chip; | ||
208 | struct resource *r; | ||
209 | |||
210 | chip = platform_get_drvdata(pdev); | ||
211 | if (chip == NULL) | ||
212 | return -ENODEV; | ||
213 | |||
214 | pwmchip_remove(&chip->chip); | ||
215 | |||
216 | iounmap(chip->mmio_base); | ||
217 | |||
218 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
219 | release_mem_region(r->start, resource_size(r)); | ||
220 | |||
221 | clk_put(chip->clk); | ||
222 | kfree(chip); | ||
223 | return 0; | ||
224 | } | ||
225 | |||
226 | static struct platform_driver pwm_driver = { | ||
227 | .driver = { | ||
228 | .name = "pxa25x-pwm", | ||
229 | .owner = THIS_MODULE, | ||
230 | }, | ||
231 | .probe = pwm_probe, | ||
232 | .remove = __devexit_p(pwm_remove), | ||
233 | .id_table = pwm_id_table, | ||
234 | }; | ||
235 | |||
236 | static int __init pwm_init(void) | ||
237 | { | ||
238 | return platform_driver_register(&pwm_driver); | ||
239 | } | ||
240 | arch_initcall(pwm_init); | ||
241 | |||
242 | static void __exit pwm_exit(void) | ||
243 | { | ||
244 | platform_driver_unregister(&pwm_driver); | ||
245 | } | ||
246 | module_exit(pwm_exit); | ||
247 | |||
248 | MODULE_LICENSE("GPL v2"); | ||