2 * Imagination Technologies Pulse Width Modulator driver
4 * Copyright (c) 2014-2015, Imagination Technologies
6 * Based on drivers/pwm/pwm-tegra.c, Copyright (c) 2010, NVIDIA Corporation
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License.
13 #include <linux/clk.h>
14 #include <linux/err.h>
16 #include <linux/mfd/syscon.h>
17 #include <linux/module.h>
19 #include <linux/of_device.h>
20 #include <linux/platform_device.h>
21 #include <linux/pwm.h>
22 #include <linux/regmap.h>
23 #include <linux/slab.h>
26 #define PWM_CTRL_CFG 0x0000
27 #define PWM_CTRL_CFG_NO_SUB_DIV 0
28 #define PWM_CTRL_CFG_SUB_DIV0 1
29 #define PWM_CTRL_CFG_SUB_DIV1 2
30 #define PWM_CTRL_CFG_SUB_DIV0_DIV1 3
31 #define PWM_CTRL_CFG_DIV_SHIFT(ch) ((ch) * 2 + 4)
32 #define PWM_CTRL_CFG_DIV_MASK 0x3
34 #define PWM_CH_CFG(ch) (0x4 + (ch) * 4)
35 #define PWM_CH_CFG_TMBASE_SHIFT 0
36 #define PWM_CH_CFG_DUTY_SHIFT 16
38 #define PERIP_PWM_PDM_CONTROL 0x0140
39 #define PERIP_PWM_PDM_CONTROL_CH_MASK 0x1
40 #define PERIP_PWM_PDM_CONTROL_CH_SHIFT(ch) ((ch) * 4)
43 * PWM period is specified with a timebase register,
44 * in number of step periods. The PWM duty cycle is also
45 * specified in step periods, in the [0, $timebase] range.
46 * In other words, the timebase imposes the duty cycle
47 * resolution. Therefore, let's constraint the timebase to
48 * a minimum value to allow a sane range of duty cycle values.
49 * Imposing a minimum timebase, will impose a maximum PWM frequency.
51 * The value chosen is completely arbitrary.
53 #define MIN_TMBASE_STEPS 16
55 struct img_pwm_soc_data
{
65 struct regmap
*periph_regs
;
68 const struct img_pwm_soc_data
*data
;
71 static inline struct img_pwm_chip
*to_img_pwm_chip(struct pwm_chip
*chip
)
73 return container_of(chip
, struct img_pwm_chip
, chip
);
76 static inline void img_pwm_writel(struct img_pwm_chip
*chip
,
79 writel(val
, chip
->base
+ reg
);
82 static inline u32
img_pwm_readl(struct img_pwm_chip
*chip
,
85 return readl(chip
->base
+ reg
);
88 static int img_pwm_config(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
89 int duty_ns
, int period_ns
)
91 u32 val
, div
, duty
, timebase
;
92 unsigned long mul
, output_clk_hz
, input_clk_hz
;
93 struct img_pwm_chip
*pwm_chip
= to_img_pwm_chip(chip
);
94 unsigned int max_timebase
= pwm_chip
->data
->max_timebase
;
96 if (period_ns
< pwm_chip
->min_period_ns
||
97 period_ns
> pwm_chip
->max_period_ns
) {
98 dev_err(chip
->dev
, "configured period not in range\n");
102 input_clk_hz
= clk_get_rate(pwm_chip
->pwm_clk
);
103 output_clk_hz
= DIV_ROUND_UP(NSEC_PER_SEC
, period_ns
);
105 mul
= DIV_ROUND_UP(input_clk_hz
, output_clk_hz
);
106 if (mul
<= max_timebase
) {
107 div
= PWM_CTRL_CFG_NO_SUB_DIV
;
108 timebase
= DIV_ROUND_UP(mul
, 1);
109 } else if (mul
<= max_timebase
* 8) {
110 div
= PWM_CTRL_CFG_SUB_DIV0
;
111 timebase
= DIV_ROUND_UP(mul
, 8);
112 } else if (mul
<= max_timebase
* 64) {
113 div
= PWM_CTRL_CFG_SUB_DIV1
;
114 timebase
= DIV_ROUND_UP(mul
, 64);
115 } else if (mul
<= max_timebase
* 512) {
116 div
= PWM_CTRL_CFG_SUB_DIV0_DIV1
;
117 timebase
= DIV_ROUND_UP(mul
, 512);
118 } else if (mul
> max_timebase
* 512) {
120 "failed to configure timebase steps/divider value\n");
124 duty
= DIV_ROUND_UP(timebase
* duty_ns
, period_ns
);
126 val
= img_pwm_readl(pwm_chip
, PWM_CTRL_CFG
);
127 val
&= ~(PWM_CTRL_CFG_DIV_MASK
<< PWM_CTRL_CFG_DIV_SHIFT(pwm
->hwpwm
));
128 val
|= (div
& PWM_CTRL_CFG_DIV_MASK
) <<
129 PWM_CTRL_CFG_DIV_SHIFT(pwm
->hwpwm
);
130 img_pwm_writel(pwm_chip
, PWM_CTRL_CFG
, val
);
132 val
= (duty
<< PWM_CH_CFG_DUTY_SHIFT
) |
133 (timebase
<< PWM_CH_CFG_TMBASE_SHIFT
);
134 img_pwm_writel(pwm_chip
, PWM_CH_CFG(pwm
->hwpwm
), val
);
139 static int img_pwm_enable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
142 struct img_pwm_chip
*pwm_chip
= to_img_pwm_chip(chip
);
144 val
= img_pwm_readl(pwm_chip
, PWM_CTRL_CFG
);
145 val
|= BIT(pwm
->hwpwm
);
146 img_pwm_writel(pwm_chip
, PWM_CTRL_CFG
, val
);
148 regmap_update_bits(pwm_chip
->periph_regs
, PERIP_PWM_PDM_CONTROL
,
149 PERIP_PWM_PDM_CONTROL_CH_MASK
<<
150 PERIP_PWM_PDM_CONTROL_CH_SHIFT(pwm
->hwpwm
), 0);
155 static void img_pwm_disable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
158 struct img_pwm_chip
*pwm_chip
= to_img_pwm_chip(chip
);
160 val
= img_pwm_readl(pwm_chip
, PWM_CTRL_CFG
);
161 val
&= ~BIT(pwm
->hwpwm
);
162 img_pwm_writel(pwm_chip
, PWM_CTRL_CFG
, val
);
165 static const struct pwm_ops img_pwm_ops
= {
166 .config
= img_pwm_config
,
167 .enable
= img_pwm_enable
,
168 .disable
= img_pwm_disable
,
169 .owner
= THIS_MODULE
,
172 static const struct img_pwm_soc_data pistachio_pwm
= {
176 static const struct of_device_id img_pwm_of_match
[] = {
178 .compatible
= "img,pistachio-pwm",
179 .data
= &pistachio_pwm
,
183 MODULE_DEVICE_TABLE(of
, img_pwm_of_match
);
185 static int img_pwm_probe(struct platform_device
*pdev
)
189 unsigned long clk_rate
;
190 struct resource
*res
;
191 struct img_pwm_chip
*pwm
;
192 const struct of_device_id
*of_dev_id
;
194 pwm
= devm_kzalloc(&pdev
->dev
, sizeof(*pwm
), GFP_KERNEL
);
198 pwm
->dev
= &pdev
->dev
;
200 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
201 pwm
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
202 if (IS_ERR(pwm
->base
))
203 return PTR_ERR(pwm
->base
);
205 of_dev_id
= of_match_device(img_pwm_of_match
, &pdev
->dev
);
208 pwm
->data
= of_dev_id
->data
;
210 pwm
->periph_regs
= syscon_regmap_lookup_by_phandle(pdev
->dev
.of_node
,
212 if (IS_ERR(pwm
->periph_regs
))
213 return PTR_ERR(pwm
->periph_regs
);
215 pwm
->sys_clk
= devm_clk_get(&pdev
->dev
, "sys");
216 if (IS_ERR(pwm
->sys_clk
)) {
217 dev_err(&pdev
->dev
, "failed to get system clock\n");
218 return PTR_ERR(pwm
->sys_clk
);
221 pwm
->pwm_clk
= devm_clk_get(&pdev
->dev
, "pwm");
222 if (IS_ERR(pwm
->pwm_clk
)) {
223 dev_err(&pdev
->dev
, "failed to get pwm clock\n");
224 return PTR_ERR(pwm
->pwm_clk
);
227 ret
= clk_prepare_enable(pwm
->sys_clk
);
229 dev_err(&pdev
->dev
, "could not prepare or enable sys clock\n");
233 ret
= clk_prepare_enable(pwm
->pwm_clk
);
235 dev_err(&pdev
->dev
, "could not prepare or enable pwm clock\n");
239 clk_rate
= clk_get_rate(pwm
->pwm_clk
);
241 dev_err(&pdev
->dev
, "pwm clock has no frequency\n");
246 /* The maximum input clock divider is 512 */
247 val
= (u64
)NSEC_PER_SEC
* 512 * pwm
->data
->max_timebase
;
248 do_div(val
, clk_rate
);
249 pwm
->max_period_ns
= val
;
251 val
= (u64
)NSEC_PER_SEC
* MIN_TMBASE_STEPS
;
252 do_div(val
, clk_rate
);
253 pwm
->min_period_ns
= val
;
255 pwm
->chip
.dev
= &pdev
->dev
;
256 pwm
->chip
.ops
= &img_pwm_ops
;
260 ret
= pwmchip_add(&pwm
->chip
);
262 dev_err(&pdev
->dev
, "pwmchip_add failed: %d\n", ret
);
266 platform_set_drvdata(pdev
, pwm
);
270 clk_disable_unprepare(pwm
->pwm_clk
);
272 clk_disable_unprepare(pwm
->sys_clk
);
276 static int img_pwm_remove(struct platform_device
*pdev
)
278 struct img_pwm_chip
*pwm_chip
= platform_get_drvdata(pdev
);
282 for (i
= 0; i
< pwm_chip
->chip
.npwm
; i
++) {
283 val
= img_pwm_readl(pwm_chip
, PWM_CTRL_CFG
);
285 img_pwm_writel(pwm_chip
, PWM_CTRL_CFG
, val
);
288 clk_disable_unprepare(pwm_chip
->pwm_clk
);
289 clk_disable_unprepare(pwm_chip
->sys_clk
);
291 return pwmchip_remove(&pwm_chip
->chip
);
294 static struct platform_driver img_pwm_driver
= {
297 .of_match_table
= img_pwm_of_match
,
299 .probe
= img_pwm_probe
,
300 .remove
= img_pwm_remove
,
302 module_platform_driver(img_pwm_driver
);
304 MODULE_AUTHOR("Sai Masarapu <Sai.Masarapu@imgtec.com>");
305 MODULE_DESCRIPTION("Imagination Technologies PWM DAC driver");
306 MODULE_LICENSE("GPL v2");