2 * drivers/pwm/pwm-vt8500.c
4 * Copyright (C) 2012 Tony Prisk <linux@prisktech.co.nz>
5 * Copyright (C) 2010 Alexey Charkov <alchark@gmail.com>
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
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.
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/platform_device.h>
20 #include <linux/slab.h>
21 #include <linux/err.h>
23 #include <linux/pwm.h>
24 #include <linux/delay.h>
25 #include <linux/clk.h>
27 #include <asm/div64.h>
30 #include <linux/of_device.h>
31 #include <linux/of_address.h>
34 * SoC architecture allocates register space for 4 PWMs but only
35 * 2 are currently implemented.
37 #define VT8500_NR_PWMS 2
39 #define REG_CTRL(pwm) (((pwm) << 4) + 0x00)
40 #define REG_SCALAR(pwm) (((pwm) << 4) + 0x04)
41 #define REG_PERIOD(pwm) (((pwm) << 4) + 0x08)
42 #define REG_DUTY(pwm) (((pwm) << 4) + 0x0C)
43 #define REG_STATUS 0x40
45 #define CTRL_ENABLE BIT(0)
46 #define CTRL_INVERT BIT(1)
47 #define CTRL_AUTOLOAD BIT(2)
48 #define CTRL_STOP_IMM BIT(3)
49 #define CTRL_LOAD_PRESCALE BIT(4)
50 #define CTRL_LOAD_PERIOD BIT(5)
52 #define STATUS_CTRL_UPDATE BIT(0)
53 #define STATUS_SCALAR_UPDATE BIT(1)
54 #define STATUS_PERIOD_UPDATE BIT(2)
55 #define STATUS_DUTY_UPDATE BIT(3)
56 #define STATUS_ALL_UPDATE 0x0F
64 #define to_vt8500_chip(chip) container_of(chip, struct vt8500_chip, chip)
66 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
67 static inline void pwm_busy_wait(struct vt8500_chip
*vt8500
, int nr
, u8 bitmask
)
69 int loops
= msecs_to_loops(10);
70 u32 mask
= bitmask
<< (nr
<< 8);
72 while ((readl(vt8500
->base
+ REG_STATUS
) & mask
) && --loops
)
76 dev_warn(vt8500
->chip
.dev
, "Waiting for status bits 0x%x to clear timed out\n",
80 static int vt8500_pwm_config(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
81 int duty_ns
, int period_ns
)
83 struct vt8500_chip
*vt8500
= to_vt8500_chip(chip
);
85 unsigned long period_cycles
, prescale
, pv
, dc
;
89 err
= clk_enable(vt8500
->clk
);
91 dev_err(chip
->dev
, "failed to enable clock\n");
95 c
= clk_get_rate(vt8500
->clk
);
97 do_div(c
, 1000000000);
100 if (period_cycles
< 1)
102 prescale
= (period_cycles
- 1) / 4096;
103 pv
= period_cycles
/ (prescale
+ 1) - 1;
107 if (prescale
> 1023) {
108 clk_disable(vt8500
->clk
);
112 c
= (unsigned long long)pv
* duty_ns
;
113 do_div(c
, period_ns
);
116 writel(prescale
, vt8500
->base
+ REG_SCALAR(pwm
->hwpwm
));
117 pwm_busy_wait(vt8500
, pwm
->hwpwm
, STATUS_SCALAR_UPDATE
);
119 writel(pv
, vt8500
->base
+ REG_PERIOD(pwm
->hwpwm
));
120 pwm_busy_wait(vt8500
, pwm
->hwpwm
, STATUS_PERIOD_UPDATE
);
122 writel(dc
, vt8500
->base
+ REG_DUTY(pwm
->hwpwm
));
123 pwm_busy_wait(vt8500
, pwm
->hwpwm
, STATUS_DUTY_UPDATE
);
125 val
= readl(vt8500
->base
+ REG_CTRL(pwm
->hwpwm
));
126 val
|= CTRL_AUTOLOAD
;
127 writel(val
, vt8500
->base
+ REG_CTRL(pwm
->hwpwm
));
128 pwm_busy_wait(vt8500
, pwm
->hwpwm
, STATUS_CTRL_UPDATE
);
130 clk_disable(vt8500
->clk
);
134 static int vt8500_pwm_enable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
136 struct vt8500_chip
*vt8500
= to_vt8500_chip(chip
);
140 err
= clk_enable(vt8500
->clk
);
142 dev_err(chip
->dev
, "failed to enable clock\n");
146 val
= readl(vt8500
->base
+ REG_CTRL(pwm
->hwpwm
));
148 writel(val
, vt8500
->base
+ REG_CTRL(pwm
->hwpwm
));
149 pwm_busy_wait(vt8500
, pwm
->hwpwm
, STATUS_CTRL_UPDATE
);
154 static void vt8500_pwm_disable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
156 struct vt8500_chip
*vt8500
= to_vt8500_chip(chip
);
159 val
= readl(vt8500
->base
+ REG_CTRL(pwm
->hwpwm
));
161 writel(val
, vt8500
->base
+ REG_CTRL(pwm
->hwpwm
));
162 pwm_busy_wait(vt8500
, pwm
->hwpwm
, STATUS_CTRL_UPDATE
);
164 clk_disable(vt8500
->clk
);
167 static int vt8500_pwm_set_polarity(struct pwm_chip
*chip
,
168 struct pwm_device
*pwm
,
169 enum pwm_polarity polarity
)
171 struct vt8500_chip
*vt8500
= to_vt8500_chip(chip
);
174 val
= readl(vt8500
->base
+ REG_CTRL(pwm
->hwpwm
));
176 if (polarity
== PWM_POLARITY_INVERSED
)
181 writel(val
, vt8500
->base
+ REG_CTRL(pwm
->hwpwm
));
182 pwm_busy_wait(vt8500
, pwm
->hwpwm
, STATUS_CTRL_UPDATE
);
187 static struct pwm_ops vt8500_pwm_ops
= {
188 .enable
= vt8500_pwm_enable
,
189 .disable
= vt8500_pwm_disable
,
190 .config
= vt8500_pwm_config
,
191 .set_polarity
= vt8500_pwm_set_polarity
,
192 .owner
= THIS_MODULE
,
195 static const struct of_device_id vt8500_pwm_dt_ids
[] = {
196 { .compatible
= "via,vt8500-pwm", },
199 MODULE_DEVICE_TABLE(of
, vt8500_pwm_dt_ids
);
201 static int vt8500_pwm_probe(struct platform_device
*pdev
)
203 struct vt8500_chip
*chip
;
205 struct device_node
*np
= pdev
->dev
.of_node
;
209 dev_err(&pdev
->dev
, "invalid devicetree node\n");
213 chip
= devm_kzalloc(&pdev
->dev
, sizeof(*chip
), GFP_KERNEL
);
215 dev_err(&pdev
->dev
, "failed to allocate memory\n");
219 chip
->chip
.dev
= &pdev
->dev
;
220 chip
->chip
.ops
= &vt8500_pwm_ops
;
221 chip
->chip
.of_xlate
= of_pwm_xlate_with_flags
;
222 chip
->chip
.of_pwm_n_cells
= 3;
223 chip
->chip
.base
= -1;
224 chip
->chip
.npwm
= VT8500_NR_PWMS
;
226 chip
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
227 if (IS_ERR(chip
->clk
)) {
228 dev_err(&pdev
->dev
, "clock source not specified\n");
229 return PTR_ERR(chip
->clk
);
232 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
233 chip
->base
= devm_ioremap_resource(&pdev
->dev
, r
);
234 if (IS_ERR(chip
->base
))
235 return PTR_ERR(chip
->base
);
237 ret
= clk_prepare(chip
->clk
);
239 dev_err(&pdev
->dev
, "failed to prepare clock\n");
243 ret
= pwmchip_add(&chip
->chip
);
245 dev_err(&pdev
->dev
, "failed to add PWM chip\n");
249 platform_set_drvdata(pdev
, chip
);
253 static int vt8500_pwm_remove(struct platform_device
*pdev
)
255 struct vt8500_chip
*chip
;
257 chip
= platform_get_drvdata(pdev
);
261 clk_unprepare(chip
->clk
);
263 return pwmchip_remove(&chip
->chip
);
266 static struct platform_driver vt8500_pwm_driver
= {
267 .probe
= vt8500_pwm_probe
,
268 .remove
= vt8500_pwm_remove
,
270 .name
= "vt8500-pwm",
271 .owner
= THIS_MODULE
,
272 .of_match_table
= vt8500_pwm_dt_ids
,
275 module_platform_driver(vt8500_pwm_driver
);
277 MODULE_DESCRIPTION("VT8500 PWM Driver");
278 MODULE_AUTHOR("Tony Prisk <linux@prisktech.co.nz>");
279 MODULE_LICENSE("GPL v2");