1 // SPDX-License-Identifier: GPL-2.0-only
3 * TI/National Semiconductor LP3943 PWM driver
5 * Copyright 2013 Texas Instruments
7 * Author: Milo Kim <milo.kim@ti.com>
10 #include <linux/err.h>
11 #include <linux/i2c.h>
12 #include <linux/mfd/lp3943.h>
13 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/pwm.h>
16 #include <linux/slab.h>
18 #define LP3943_MAX_DUTY 255
19 #define LP3943_MIN_PERIOD 6250
20 #define LP3943_MAX_PERIOD 1600000
24 struct lp3943 *lp3943;
25 struct lp3943_platform_data *pdata;
28 static inline struct lp3943_pwm *to_lp3943_pwm(struct pwm_chip *_chip)
30 return container_of(_chip, struct lp3943_pwm, chip);
33 static struct lp3943_pwm_map *
34 lp3943_pwm_request_map(struct lp3943_pwm *lp3943_pwm, int hwpwm)
36 struct lp3943_platform_data *pdata = lp3943_pwm->pdata;
37 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
38 struct lp3943_pwm_map *pwm_map;
41 pwm_map = kzalloc(sizeof(*pwm_map), GFP_KERNEL);
43 return ERR_PTR(-ENOMEM);
45 pwm_map->output = pdata->pwms[hwpwm]->output;
46 pwm_map->num_outputs = pdata->pwms[hwpwm]->num_outputs;
48 for (i = 0; i < pwm_map->num_outputs; i++) {
49 offset = pwm_map->output[i];
51 /* Return an error if the pin is already assigned */
52 if (test_and_set_bit(offset, &lp3943->pin_used)) {
54 return ERR_PTR(-EBUSY);
61 static int lp3943_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
63 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
64 struct lp3943_pwm_map *pwm_map;
66 pwm_map = lp3943_pwm_request_map(lp3943_pwm, pwm->hwpwm);
68 return PTR_ERR(pwm_map);
70 return pwm_set_chip_data(pwm, pwm_map);
73 static void lp3943_pwm_free_map(struct lp3943_pwm *lp3943_pwm,
74 struct lp3943_pwm_map *pwm_map)
76 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
79 for (i = 0; i < pwm_map->num_outputs; i++) {
80 offset = pwm_map->output[i];
81 clear_bit(offset, &lp3943->pin_used);
87 static void lp3943_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
89 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
90 struct lp3943_pwm_map *pwm_map = pwm_get_chip_data(pwm);
92 lp3943_pwm_free_map(lp3943_pwm, pwm_map);
95 static int lp3943_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
96 int duty_ns, int period_ns)
98 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
99 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
100 u8 val, reg_duty, reg_prescale;
104 * How to configure the LP3943 PWMs
106 * 1) Period = 6250 ~ 1600000
107 * 2) Prescale = period / 6250 -1
108 * 3) Duty = input duty
110 * Prescale and duty are register values
113 if (pwm->hwpwm == 0) {
114 reg_prescale = LP3943_REG_PRESCALE0;
115 reg_duty = LP3943_REG_PWM0;
117 reg_prescale = LP3943_REG_PRESCALE1;
118 reg_duty = LP3943_REG_PWM1;
121 period_ns = clamp(period_ns, LP3943_MIN_PERIOD, LP3943_MAX_PERIOD);
122 val = (u8)(period_ns / LP3943_MIN_PERIOD - 1);
124 err = lp3943_write_byte(lp3943, reg_prescale, val);
128 val = (u8)(duty_ns * LP3943_MAX_DUTY / period_ns);
130 return lp3943_write_byte(lp3943, reg_duty, val);
133 static int lp3943_pwm_set_mode(struct lp3943_pwm *lp3943_pwm,
134 struct lp3943_pwm_map *pwm_map,
137 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
138 const struct lp3943_reg_cfg *mux = lp3943->mux_cfg;
141 for (i = 0; i < pwm_map->num_outputs; i++) {
142 index = pwm_map->output[i];
143 err = lp3943_update_bits(lp3943, mux[index].reg,
145 val << mux[index].shift);
153 static int lp3943_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
155 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
156 struct lp3943_pwm_map *pwm_map = pwm_get_chip_data(pwm);
160 val = LP3943_DIM_PWM0;
162 val = LP3943_DIM_PWM1;
165 * Each PWM generator is set to control any of outputs of LP3943.
166 * To enable/disable the PWM, these output pins should be configured.
169 return lp3943_pwm_set_mode(lp3943_pwm, pwm_map, val);
172 static void lp3943_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
174 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
175 struct lp3943_pwm_map *pwm_map = pwm_get_chip_data(pwm);
178 * LP3943 outputs are open-drain, so the pin should be configured
179 * when the PWM is disabled.
182 lp3943_pwm_set_mode(lp3943_pwm, pwm_map, LP3943_GPIO_OUT_HIGH);
185 static const struct pwm_ops lp3943_pwm_ops = {
186 .request = lp3943_pwm_request,
187 .free = lp3943_pwm_free,
188 .config = lp3943_pwm_config,
189 .enable = lp3943_pwm_enable,
190 .disable = lp3943_pwm_disable,
191 .owner = THIS_MODULE,
194 static int lp3943_pwm_parse_dt(struct device *dev,
195 struct lp3943_pwm *lp3943_pwm)
197 static const char * const name[] = { "ti,pwm0", "ti,pwm1", };
198 struct device_node *node = dev->of_node;
199 struct lp3943_platform_data *pdata;
200 struct lp3943_pwm_map *pwm_map;
201 enum lp3943_pwm_output *output;
202 int i, err, proplen, count = 0;
208 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
213 * Read the output map configuration from the device tree.
214 * Each of the two PWM generators can drive zero or more outputs.
217 for (i = 0; i < LP3943_NUM_PWMS; i++) {
218 if (!of_get_property(node, name[i], &proplen))
221 num_outputs = proplen / sizeof(u32);
222 if (num_outputs == 0)
225 output = devm_kcalloc(dev, num_outputs, sizeof(*output),
230 err = of_property_read_u32_array(node, name[i], output,
235 pwm_map = devm_kzalloc(dev, sizeof(*pwm_map), GFP_KERNEL);
239 pwm_map->output = output;
240 pwm_map->num_outputs = num_outputs;
241 pdata->pwms[i] = pwm_map;
249 lp3943_pwm->pdata = pdata;
253 static int lp3943_pwm_probe(struct platform_device *pdev)
255 struct lp3943 *lp3943 = dev_get_drvdata(pdev->dev.parent);
256 struct lp3943_pwm *lp3943_pwm;
259 lp3943_pwm = devm_kzalloc(&pdev->dev, sizeof(*lp3943_pwm), GFP_KERNEL);
263 lp3943_pwm->pdata = lp3943->pdata;
264 if (!lp3943_pwm->pdata) {
265 if (IS_ENABLED(CONFIG_OF))
266 ret = lp3943_pwm_parse_dt(&pdev->dev, lp3943_pwm);
274 lp3943_pwm->lp3943 = lp3943;
275 lp3943_pwm->chip.dev = &pdev->dev;
276 lp3943_pwm->chip.ops = &lp3943_pwm_ops;
277 lp3943_pwm->chip.npwm = LP3943_NUM_PWMS;
279 return devm_pwmchip_add(&pdev->dev, &lp3943_pwm->chip);
283 static const struct of_device_id lp3943_pwm_of_match[] = {
284 { .compatible = "ti,lp3943-pwm", },
287 MODULE_DEVICE_TABLE(of, lp3943_pwm_of_match);
290 static struct platform_driver lp3943_pwm_driver = {
291 .probe = lp3943_pwm_probe,
293 .name = "lp3943-pwm",
294 .of_match_table = of_match_ptr(lp3943_pwm_of_match),
297 module_platform_driver(lp3943_pwm_driver);
299 MODULE_DESCRIPTION("LP3943 PWM driver");
300 MODULE_ALIAS("platform:lp3943-pwm");
301 MODULE_AUTHOR("Milo Kim");
302 MODULE_LICENSE("GPL");