1 // SPDX-License-Identifier: GPL-2.0-only
3 * Intel Low Power Subsystem PWM controller driver
5 * Copyright (C) 2014, Intel Corporation
6 * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
7 * Author: Chew Kean Ho <kean.ho.chew@intel.com>
8 * Author: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>
9 * Author: Chew Chiau Ee <chiau.ee.chew@intel.com>
10 * Author: Alan Cox <alan@linux.intel.com>
13 #include <linux/delay.h>
15 #include <linux/iopoll.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/time.h>
23 #define PWM 0x00000000
24 #define PWM_ENABLE BIT(31)
25 #define PWM_SW_UPDATE BIT(30)
26 #define PWM_BASE_UNIT_SHIFT 8
27 #define PWM_ON_TIME_DIV_MASK 0x000000ff
29 /* Size of each PWM register space if multiple */
30 #define PWM_SIZE 0x400
32 static inline struct pwm_lpss_chip
*to_lpwm(struct pwm_chip
*chip
)
34 return container_of(chip
, struct pwm_lpss_chip
, chip
);
37 static inline u32
pwm_lpss_read(const struct pwm_device
*pwm
)
39 struct pwm_lpss_chip
*lpwm
= to_lpwm(pwm
->chip
);
41 return readl(lpwm
->regs
+ pwm
->hwpwm
* PWM_SIZE
+ PWM
);
44 static inline void pwm_lpss_write(const struct pwm_device
*pwm
, u32 value
)
46 struct pwm_lpss_chip
*lpwm
= to_lpwm(pwm
->chip
);
48 writel(value
, lpwm
->regs
+ pwm
->hwpwm
* PWM_SIZE
+ PWM
);
51 static int pwm_lpss_wait_for_update(struct pwm_device
*pwm
)
53 struct pwm_lpss_chip
*lpwm
= to_lpwm(pwm
->chip
);
54 const void __iomem
*addr
= lpwm
->regs
+ pwm
->hwpwm
* PWM_SIZE
+ PWM
;
55 const unsigned int ms
= 500 * USEC_PER_MSEC
;
60 * PWM Configuration register has SW_UPDATE bit that is set when a new
61 * configuration is written to the register. The bit is automatically
62 * cleared at the start of the next output cycle by the IP block.
64 * If one writes a new configuration to the register while it still has
65 * the bit enabled, PWM may freeze. That is, while one can still write
66 * to the register, it won't have an effect. Thus, we try to sleep long
67 * enough that the bit gets cleared and make sure the bit is not
68 * enabled while we update the configuration.
70 err
= readl_poll_timeout(addr
, val
, !(val
& PWM_SW_UPDATE
), 40, ms
);
72 dev_err(pwm
->chip
->dev
, "PWM_SW_UPDATE was not cleared\n");
77 static inline int pwm_lpss_is_updating(struct pwm_device
*pwm
)
79 return (pwm_lpss_read(pwm
) & PWM_SW_UPDATE
) ? -EBUSY
: 0;
82 static void pwm_lpss_prepare(struct pwm_lpss_chip
*lpwm
, struct pwm_device
*pwm
,
83 int duty_ns
, int period_ns
)
85 unsigned long long on_time_div
;
86 unsigned long c
= lpwm
->info
->clk_rate
, base_unit_range
;
87 unsigned long long base_unit
, freq
= NSEC_PER_SEC
;
90 do_div(freq
, period_ns
);
94 * base_unit = round(base_unit_range * freq / c)
96 base_unit_range
= BIT(lpwm
->info
->base_unit_bits
) - 1;
97 freq
*= base_unit_range
;
99 base_unit
= DIV_ROUND_CLOSEST_ULL(freq
, c
);
101 on_time_div
= 255ULL * duty_ns
;
102 do_div(on_time_div
, period_ns
);
103 on_time_div
= 255ULL - on_time_div
;
105 orig_ctrl
= ctrl
= pwm_lpss_read(pwm
);
106 ctrl
&= ~PWM_ON_TIME_DIV_MASK
;
107 ctrl
&= ~(base_unit_range
<< PWM_BASE_UNIT_SHIFT
);
108 base_unit
&= base_unit_range
;
109 ctrl
|= (u32
) base_unit
<< PWM_BASE_UNIT_SHIFT
;
112 if (orig_ctrl
!= ctrl
) {
113 pwm_lpss_write(pwm
, ctrl
);
114 pwm_lpss_write(pwm
, ctrl
| PWM_SW_UPDATE
);
118 static inline void pwm_lpss_cond_enable(struct pwm_device
*pwm
, bool cond
)
121 pwm_lpss_write(pwm
, pwm_lpss_read(pwm
) | PWM_ENABLE
);
124 static int pwm_lpss_apply(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
125 const struct pwm_state
*state
)
127 struct pwm_lpss_chip
*lpwm
= to_lpwm(chip
);
130 if (state
->enabled
) {
131 if (!pwm_is_enabled(pwm
)) {
132 pm_runtime_get_sync(chip
->dev
);
133 ret
= pwm_lpss_is_updating(pwm
);
135 pm_runtime_put(chip
->dev
);
138 pwm_lpss_prepare(lpwm
, pwm
, state
->duty_cycle
, state
->period
);
139 pwm_lpss_cond_enable(pwm
, lpwm
->info
->bypass
== false);
140 ret
= pwm_lpss_wait_for_update(pwm
);
142 pm_runtime_put(chip
->dev
);
145 pwm_lpss_cond_enable(pwm
, lpwm
->info
->bypass
== true);
147 ret
= pwm_lpss_is_updating(pwm
);
150 pwm_lpss_prepare(lpwm
, pwm
, state
->duty_cycle
, state
->period
);
151 return pwm_lpss_wait_for_update(pwm
);
153 } else if (pwm_is_enabled(pwm
)) {
154 pwm_lpss_write(pwm
, pwm_lpss_read(pwm
) & ~PWM_ENABLE
);
155 pm_runtime_put(chip
->dev
);
161 static void pwm_lpss_get_state(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
162 struct pwm_state
*state
)
164 struct pwm_lpss_chip
*lpwm
= to_lpwm(chip
);
165 unsigned long base_unit_range
;
166 unsigned long long base_unit
, freq
, on_time_div
;
169 pm_runtime_get_sync(chip
->dev
);
171 base_unit_range
= BIT(lpwm
->info
->base_unit_bits
);
173 ctrl
= pwm_lpss_read(pwm
);
174 on_time_div
= 255 - (ctrl
& PWM_ON_TIME_DIV_MASK
);
175 base_unit
= (ctrl
>> PWM_BASE_UNIT_SHIFT
) & (base_unit_range
- 1);
177 freq
= base_unit
* lpwm
->info
->clk_rate
;
178 do_div(freq
, base_unit_range
);
180 state
->period
= NSEC_PER_SEC
;
182 state
->period
= NSEC_PER_SEC
/ (unsigned long)freq
;
184 on_time_div
*= state
->period
;
185 do_div(on_time_div
, 255);
186 state
->duty_cycle
= on_time_div
;
188 state
->polarity
= PWM_POLARITY_NORMAL
;
189 state
->enabled
= !!(ctrl
& PWM_ENABLE
);
191 pm_runtime_put(chip
->dev
);
194 static const struct pwm_ops pwm_lpss_ops
= {
195 .apply
= pwm_lpss_apply
,
196 .get_state
= pwm_lpss_get_state
,
197 .owner
= THIS_MODULE
,
200 struct pwm_lpss_chip
*pwm_lpss_probe(struct device
*dev
, struct resource
*r
,
201 const struct pwm_lpss_boardinfo
*info
)
203 struct pwm_lpss_chip
*lpwm
;
208 if (WARN_ON(info
->npwm
> MAX_PWMS
))
209 return ERR_PTR(-ENODEV
);
211 lpwm
= devm_kzalloc(dev
, sizeof(*lpwm
), GFP_KERNEL
);
213 return ERR_PTR(-ENOMEM
);
215 lpwm
->regs
= devm_ioremap_resource(dev
, r
);
216 if (IS_ERR(lpwm
->regs
))
217 return ERR_CAST(lpwm
->regs
);
221 c
= lpwm
->info
->clk_rate
;
223 return ERR_PTR(-EINVAL
);
225 lpwm
->chip
.dev
= dev
;
226 lpwm
->chip
.ops
= &pwm_lpss_ops
;
227 lpwm
->chip
.base
= -1;
228 lpwm
->chip
.npwm
= info
->npwm
;
230 ret
= pwmchip_add(&lpwm
->chip
);
232 dev_err(dev
, "failed to add PWM chip: %d\n", ret
);
236 for (i
= 0; i
< lpwm
->info
->npwm
; i
++) {
237 ctrl
= pwm_lpss_read(&lpwm
->chip
.pwms
[i
]);
238 if (ctrl
& PWM_ENABLE
)
244 EXPORT_SYMBOL_GPL(pwm_lpss_probe
);
246 int pwm_lpss_remove(struct pwm_lpss_chip
*lpwm
)
250 for (i
= 0; i
< lpwm
->info
->npwm
; i
++) {
251 if (pwm_is_enabled(&lpwm
->chip
.pwms
[i
]))
252 pm_runtime_put(lpwm
->chip
.dev
);
254 return pwmchip_remove(&lpwm
->chip
);
256 EXPORT_SYMBOL_GPL(pwm_lpss_remove
);
258 int pwm_lpss_suspend(struct device
*dev
)
260 struct pwm_lpss_chip
*lpwm
= dev_get_drvdata(dev
);
263 for (i
= 0; i
< lpwm
->info
->npwm
; i
++)
264 lpwm
->saved_ctrl
[i
] = readl(lpwm
->regs
+ i
* PWM_SIZE
+ PWM
);
268 EXPORT_SYMBOL_GPL(pwm_lpss_suspend
);
270 int pwm_lpss_resume(struct device
*dev
)
272 struct pwm_lpss_chip
*lpwm
= dev_get_drvdata(dev
);
275 for (i
= 0; i
< lpwm
->info
->npwm
; i
++)
276 writel(lpwm
->saved_ctrl
[i
], lpwm
->regs
+ i
* PWM_SIZE
+ PWM
);
280 EXPORT_SYMBOL_GPL(pwm_lpss_resume
);
282 MODULE_DESCRIPTION("PWM driver for Intel LPSS");
283 MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
284 MODULE_LICENSE("GPL v2");