2 * drivers/pwm/pwm-pxa.c
4 * simple driver for PWM (Pulse Width Modulator) controller
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.
10 * 2008-02-13 initial version
11 * eric miao <eric.miao@marvell.com>
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>
21 #include <linux/pwm.h>
23 #include <asm/div64.h>
25 #define HAS_SECONDARY_PWM 0x10
26 #define PWM_ID_BASE(d) ((d) & 0xf)
28 static const struct platform_device_id pwm_id_table
[] = {
29 /* PWM has_secondary_pwm? */
31 { "pxa27x-pwm", 0 | HAS_SECONDARY_PWM
},
36 MODULE_DEVICE_TABLE(platform
, pwm_id_table
);
38 /* PWM registers and bits definitions */
43 #define PWMCR_SD (1 << 6)
44 #define PWMDCR_FD (1 << 10)
52 void __iomem
*mmio_base
;
55 static inline struct pxa_pwm_chip
*to_pxa_pwm_chip(struct pwm_chip
*chip
)
57 return container_of(chip
, struct pxa_pwm_chip
, chip
);
61 * period_ns = 10^9 * (PRESCALE + 1) * (PV + 1) / PWM_CLK_RATE
62 * duty_ns = 10^9 * (PRESCALE + 1) * DC / PWM_CLK_RATE
64 static int pxa_pwm_config(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
65 int duty_ns
, int period_ns
)
67 struct pxa_pwm_chip
*pc
= to_pxa_pwm_chip(chip
);
69 unsigned long period_cycles
, prescale
, pv
, dc
;
73 offset
= pwm
->hwpwm
? 0x10 : 0;
75 c
= clk_get_rate(pc
->clk
);
77 do_div(c
, 1000000000);
80 if (period_cycles
< 1)
82 prescale
= (period_cycles
- 1) / 1024;
83 pv
= period_cycles
/ (prescale
+ 1) - 1;
88 if (duty_ns
== period_ns
)
91 dc
= (pv
+ 1) * duty_ns
/ period_ns
;
93 /* NOTE: the clock to PWM has to be enabled first
94 * before writing to the registers
96 rc
= clk_prepare_enable(pc
->clk
);
100 writel(prescale
, pc
->mmio_base
+ offset
+ PWMCR
);
101 writel(dc
, pc
->mmio_base
+ offset
+ PWMDCR
);
102 writel(pv
, pc
->mmio_base
+ offset
+ PWMPCR
);
104 clk_disable_unprepare(pc
->clk
);
108 static int pxa_pwm_enable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
110 struct pxa_pwm_chip
*pc
= to_pxa_pwm_chip(chip
);
113 if (!pc
->clk_enabled
) {
114 rc
= clk_prepare_enable(pc
->clk
);
121 static void pxa_pwm_disable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
123 struct pxa_pwm_chip
*pc
= to_pxa_pwm_chip(chip
);
125 if (pc
->clk_enabled
) {
126 clk_disable_unprepare(pc
->clk
);
131 static struct pwm_ops pxa_pwm_ops
= {
132 .config
= pxa_pwm_config
,
133 .enable
= pxa_pwm_enable
,
134 .disable
= pxa_pwm_disable
,
135 .owner
= THIS_MODULE
,
138 static int pwm_probe(struct platform_device
*pdev
)
140 const struct platform_device_id
*id
= platform_get_device_id(pdev
);
141 struct pxa_pwm_chip
*pwm
;
145 pwm
= devm_kzalloc(&pdev
->dev
, sizeof(*pwm
), GFP_KERNEL
);
147 dev_err(&pdev
->dev
, "failed to allocate memory\n");
151 pwm
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
152 if (IS_ERR(pwm
->clk
))
153 return PTR_ERR(pwm
->clk
);
155 pwm
->clk_enabled
= 0;
157 pwm
->chip
.dev
= &pdev
->dev
;
158 pwm
->chip
.ops
= &pxa_pwm_ops
;
160 pwm
->chip
.npwm
= (id
->driver_data
& HAS_SECONDARY_PWM
) ? 2 : 1;
162 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
164 dev_err(&pdev
->dev
, "no memory resource defined\n");
168 pwm
->mmio_base
= devm_request_and_ioremap(&pdev
->dev
, r
);
169 if (pwm
->mmio_base
== NULL
)
170 return -EADDRNOTAVAIL
;
172 ret
= pwmchip_add(&pwm
->chip
);
174 dev_err(&pdev
->dev
, "pwmchip_add() failed: %d\n", ret
);
178 platform_set_drvdata(pdev
, pwm
);
182 static int pwm_remove(struct platform_device
*pdev
)
184 struct pxa_pwm_chip
*chip
;
186 chip
= platform_get_drvdata(pdev
);
190 return pwmchip_remove(&chip
->chip
);
193 static struct platform_driver pwm_driver
= {
195 .name
= "pxa25x-pwm",
196 .owner
= THIS_MODULE
,
199 .remove
= pwm_remove
,
200 .id_table
= pwm_id_table
,
203 static int __init
pwm_init(void)
205 return platform_driver_register(&pwm_driver
);
207 arch_initcall(pwm_init
);
209 static void __exit
pwm_exit(void)
211 platform_driver_unregister(&pwm_driver
);
213 module_exit(pwm_exit
);
215 MODULE_LICENSE("GPL v2");