1 // SPDX-License-Identifier: GPL-2.0+
3 * Azoteq IQS620A PWM Generator
5 * Copyright (C) 2019 Jeff LaBundy <jeff@labundy.com>
8 * - The period is fixed to 1 ms and is generated continuously despite changes
9 * to the duty cycle or enable/disable state.
10 * - Changes to the duty cycle or enable/disable state take effect immediately
11 * and may result in a glitch during the period in which the change is made.
12 * - The device cannot generate a 0% duty cycle. For duty cycles below 1 / 256
13 * ms, the output is disabled and relies upon an external pull-down resistor
14 * to hold the GPIO3/LTX pin low.
17 #include <linux/device.h>
18 #include <linux/kernel.h>
19 #include <linux/mfd/iqs62x.h>
20 #include <linux/module.h>
21 #include <linux/mutex.h>
22 #include <linux/notifier.h>
23 #include <linux/platform_device.h>
24 #include <linux/pwm.h>
25 #include <linux/regmap.h>
26 #include <linux/slab.h>
28 #define IQS620_PWR_SETTINGS 0xd2
29 #define IQS620_PWR_SETTINGS_PWM_OUT BIT(7)
31 #define IQS620_PWM_DUTY_CYCLE 0xd8
33 #define IQS620_PWM_PERIOD_NS 1000000
35 struct iqs620_pwm_private
{
36 struct iqs62x_core
*iqs62x
;
38 struct notifier_block notifier
;
40 unsigned int duty_scale
;
43 static inline struct iqs620_pwm_private
*iqs620_pwm_from_chip(struct pwm_chip
*chip
)
45 return pwmchip_get_drvdata(chip
);
48 static int iqs620_pwm_init(struct iqs620_pwm_private
*iqs620_pwm
,
49 unsigned int duty_scale
)
51 struct iqs62x_core
*iqs62x
= iqs620_pwm
->iqs62x
;
55 return regmap_clear_bits(iqs62x
->regmap
, IQS620_PWR_SETTINGS
,
56 IQS620_PWR_SETTINGS_PWM_OUT
);
58 ret
= regmap_write(iqs62x
->regmap
, IQS620_PWM_DUTY_CYCLE
,
63 return regmap_set_bits(iqs62x
->regmap
, IQS620_PWR_SETTINGS
,
64 IQS620_PWR_SETTINGS_PWM_OUT
);
67 static int iqs620_pwm_apply(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
68 const struct pwm_state
*state
)
70 struct iqs620_pwm_private
*iqs620_pwm
;
71 unsigned int duty_cycle
;
72 unsigned int duty_scale
;
75 if (state
->polarity
!= PWM_POLARITY_NORMAL
)
78 if (state
->period
< IQS620_PWM_PERIOD_NS
)
81 iqs620_pwm
= iqs620_pwm_from_chip(chip
);
84 * The duty cycle generated by the device is calculated as follows:
86 * duty_cycle = (IQS620_PWM_DUTY_CYCLE + 1) / 256 * 1 ms
88 * ...where IQS620_PWM_DUTY_CYCLE is a register value between 0 and 255
89 * (inclusive). Therefore the lowest duty cycle the device can generate
90 * while the output is enabled is 1 / 256 ms.
92 * For lower duty cycles (e.g. 0), the PWM output is simply disabled to
93 * allow an external pull-down resistor to hold the GPIO3/LTX pin low.
95 duty_cycle
= min_t(u64
, state
->duty_cycle
, IQS620_PWM_PERIOD_NS
);
96 duty_scale
= duty_cycle
* 256 / IQS620_PWM_PERIOD_NS
;
101 mutex_lock(&iqs620_pwm
->lock
);
103 ret
= iqs620_pwm_init(iqs620_pwm
, duty_scale
);
105 iqs620_pwm
->duty_scale
= duty_scale
;
107 mutex_unlock(&iqs620_pwm
->lock
);
112 static int iqs620_pwm_get_state(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
113 struct pwm_state
*state
)
115 struct iqs620_pwm_private
*iqs620_pwm
;
117 iqs620_pwm
= iqs620_pwm_from_chip(chip
);
119 mutex_lock(&iqs620_pwm
->lock
);
122 * Since the device cannot generate a 0% duty cycle, requests to do so
123 * cause subsequent calls to iqs620_pwm_get_state to report the output
124 * as disabled. This is not ideal, but is the best compromise based on
125 * the capabilities of the device.
127 state
->enabled
= iqs620_pwm
->duty_scale
> 0;
128 state
->duty_cycle
= DIV_ROUND_UP(iqs620_pwm
->duty_scale
*
129 IQS620_PWM_PERIOD_NS
, 256);
131 mutex_unlock(&iqs620_pwm
->lock
);
133 state
->period
= IQS620_PWM_PERIOD_NS
;
134 state
->polarity
= PWM_POLARITY_NORMAL
;
139 static int iqs620_pwm_notifier(struct notifier_block
*notifier
,
140 unsigned long event_flags
, void *context
)
142 struct iqs620_pwm_private
*iqs620_pwm
;
145 if (!(event_flags
& BIT(IQS62X_EVENT_SYS_RESET
)))
148 iqs620_pwm
= container_of(notifier
, struct iqs620_pwm_private
,
151 mutex_lock(&iqs620_pwm
->lock
);
154 * The parent MFD driver already prints an error message in the event
155 * of a device reset, so nothing else is printed here unless there is
156 * an additional failure.
158 ret
= iqs620_pwm_init(iqs620_pwm
, iqs620_pwm
->duty_scale
);
160 mutex_unlock(&iqs620_pwm
->lock
);
163 dev_err(iqs620_pwm
->dev
,
164 "Failed to re-initialize device: %d\n", ret
);
171 static const struct pwm_ops iqs620_pwm_ops
= {
172 .apply
= iqs620_pwm_apply
,
173 .get_state
= iqs620_pwm_get_state
,
176 static void iqs620_pwm_notifier_unregister(void *context
)
178 struct iqs620_pwm_private
*iqs620_pwm
= context
;
181 ret
= blocking_notifier_chain_unregister(&iqs620_pwm
->iqs62x
->nh
,
182 &iqs620_pwm
->notifier
);
184 dev_err(iqs620_pwm
->dev
,
185 "Failed to unregister notifier: %d\n", ret
);
188 static int iqs620_pwm_probe(struct platform_device
*pdev
)
190 struct iqs62x_core
*iqs62x
= dev_get_drvdata(pdev
->dev
.parent
);
191 struct pwm_chip
*chip
;
192 struct iqs620_pwm_private
*iqs620_pwm
;
196 chip
= devm_pwmchip_alloc(&pdev
->dev
, 1, sizeof(*iqs620_pwm
));
198 return PTR_ERR(chip
);
200 iqs620_pwm
= iqs620_pwm_from_chip(chip
);
201 iqs620_pwm
->dev
= &pdev
->dev
;
202 iqs620_pwm
->iqs62x
= iqs62x
;
204 ret
= regmap_read(iqs62x
->regmap
, IQS620_PWR_SETTINGS
, &val
);
208 if (val
& IQS620_PWR_SETTINGS_PWM_OUT
) {
209 ret
= regmap_read(iqs62x
->regmap
, IQS620_PWM_DUTY_CYCLE
, &val
);
213 iqs620_pwm
->duty_scale
= val
+ 1;
216 chip
->ops
= &iqs620_pwm_ops
;
218 mutex_init(&iqs620_pwm
->lock
);
220 iqs620_pwm
->notifier
.notifier_call
= iqs620_pwm_notifier
;
221 ret
= blocking_notifier_chain_register(&iqs620_pwm
->iqs62x
->nh
,
222 &iqs620_pwm
->notifier
);
224 dev_err(&pdev
->dev
, "Failed to register notifier: %d\n", ret
);
228 ret
= devm_add_action_or_reset(&pdev
->dev
,
229 iqs620_pwm_notifier_unregister
,
234 ret
= devm_pwmchip_add(&pdev
->dev
, chip
);
236 dev_err(&pdev
->dev
, "Failed to add device: %d\n", ret
);
241 static struct platform_driver iqs620_pwm_platform_driver
= {
243 .name
= "iqs620a-pwm",
245 .probe
= iqs620_pwm_probe
,
247 module_platform_driver(iqs620_pwm_platform_driver
);
249 MODULE_AUTHOR("Jeff LaBundy <jeff@labundy.com>");
250 MODULE_DESCRIPTION("Azoteq IQS620A PWM Generator");
251 MODULE_LICENSE("GPL");
252 MODULE_ALIAS("platform:iqs620a-pwm");