Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * TI/National Semiconductor LP3943 PWM driver
4 *
5 * Copyright 2013 Texas Instruments
6 *
7 * Author: Milo Kim <milo.kim@ti.com>
8 */
9
10#include <linux/err.h>
11#include <linux/mfd/lp3943.h>
12#include <linux/module.h>
13#include <linux/of.h>
14#include <linux/platform_device.h>
15#include <linux/pwm.h>
16#include <linux/slab.h>
17
18#define LP3943_MAX_DUTY 255
19#define LP3943_MIN_PERIOD 6250
20#define LP3943_MAX_PERIOD 1600000
21
22struct lp3943_pwm {
23 struct lp3943 *lp3943;
24 struct lp3943_platform_data *pdata;
25 struct lp3943_pwm_map pwm_map[LP3943_NUM_PWMS];
26};
27
28static inline struct lp3943_pwm *to_lp3943_pwm(struct pwm_chip *chip)
29{
30 return pwmchip_get_drvdata(chip);
31}
32
33static struct lp3943_pwm_map *
34lp3943_pwm_request_map(struct lp3943_pwm *lp3943_pwm, int hwpwm)
35{
36 struct lp3943_platform_data *pdata = lp3943_pwm->pdata;
37 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
38 struct lp3943_pwm_map *pwm_map = &lp3943_pwm->pwm_map[hwpwm];
39 int i, offset;
40
41 pwm_map->output = pdata->pwms[hwpwm]->output;
42 pwm_map->num_outputs = pdata->pwms[hwpwm]->num_outputs;
43
44 for (i = 0; i < pwm_map->num_outputs; i++) {
45 offset = pwm_map->output[i];
46
47 /* Return an error if the pin is already assigned */
48 if (test_and_set_bit(offset, &lp3943->pin_used))
49 return ERR_PTR(-EBUSY);
50 }
51
52 return pwm_map;
53}
54
55static int lp3943_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
56{
57 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
58 struct lp3943_pwm_map *pwm_map;
59
60 pwm_map = lp3943_pwm_request_map(lp3943_pwm, pwm->hwpwm);
61 if (IS_ERR(pwm_map))
62 return PTR_ERR(pwm_map);
63
64 return 0;
65}
66
67static void lp3943_pwm_free_map(struct lp3943_pwm *lp3943_pwm,
68 struct lp3943_pwm_map *pwm_map)
69{
70 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
71 int i, offset;
72
73 for (i = 0; i < pwm_map->num_outputs; i++) {
74 offset = pwm_map->output[i];
75 clear_bit(offset, &lp3943->pin_used);
76 }
77}
78
79static void lp3943_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
80{
81 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
82 struct lp3943_pwm_map *pwm_map = &lp3943_pwm->pwm_map[pwm->hwpwm];
83
84 lp3943_pwm_free_map(lp3943_pwm, pwm_map);
85}
86
87static int lp3943_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
88 u64 duty_ns, u64 period_ns)
89{
90 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
91 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
92 u8 val, reg_duty, reg_prescale;
93 int err;
94
95 /*
96 * How to configure the LP3943 PWMs
97 *
98 * 1) Period = 6250 ~ 1600000
99 * 2) Prescale = period / 6250 -1
100 * 3) Duty = input duty
101 *
102 * Prescale and duty are register values
103 */
104
105 if (pwm->hwpwm == 0) {
106 reg_prescale = LP3943_REG_PRESCALE0;
107 reg_duty = LP3943_REG_PWM0;
108 } else {
109 reg_prescale = LP3943_REG_PRESCALE1;
110 reg_duty = LP3943_REG_PWM1;
111 }
112
113 /*
114 * Note that after this clamping, period_ns fits into an int. This is
115 * helpful because we can resort to integer division below instead of
116 * the (more expensive) 64 bit division.
117 */
118 period_ns = clamp(period_ns, (u64)LP3943_MIN_PERIOD, (u64)LP3943_MAX_PERIOD);
119 val = (u8)((int)period_ns / LP3943_MIN_PERIOD - 1);
120
121 err = lp3943_write_byte(lp3943, reg_prescale, val);
122 if (err)
123 return err;
124
125 duty_ns = min(duty_ns, period_ns);
126 val = (u8)((int)duty_ns * LP3943_MAX_DUTY / (int)period_ns);
127
128 return lp3943_write_byte(lp3943, reg_duty, val);
129}
130
131static int lp3943_pwm_set_mode(struct lp3943_pwm *lp3943_pwm,
132 struct lp3943_pwm_map *pwm_map,
133 u8 val)
134{
135 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
136 const struct lp3943_reg_cfg *mux = lp3943->mux_cfg;
137 int i, index, err;
138
139 for (i = 0; i < pwm_map->num_outputs; i++) {
140 index = pwm_map->output[i];
141 err = lp3943_update_bits(lp3943, mux[index].reg,
142 mux[index].mask,
143 val << mux[index].shift);
144 if (err)
145 return err;
146 }
147
148 return 0;
149}
150
151static int lp3943_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
152{
153 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
154 struct lp3943_pwm_map *pwm_map = &lp3943_pwm->pwm_map[pwm->hwpwm];
155 u8 val;
156
157 if (pwm->hwpwm == 0)
158 val = LP3943_DIM_PWM0;
159 else
160 val = LP3943_DIM_PWM1;
161
162 /*
163 * Each PWM generator is set to control any of outputs of LP3943.
164 * To enable/disable the PWM, these output pins should be configured.
165 */
166
167 return lp3943_pwm_set_mode(lp3943_pwm, pwm_map, val);
168}
169
170static void lp3943_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
171{
172 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
173 struct lp3943_pwm_map *pwm_map = &lp3943_pwm->pwm_map[pwm->hwpwm];
174
175 /*
176 * LP3943 outputs are open-drain, so the pin should be configured
177 * when the PWM is disabled.
178 */
179
180 lp3943_pwm_set_mode(lp3943_pwm, pwm_map, LP3943_GPIO_OUT_HIGH);
181}
182
183static int lp3943_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
184 const struct pwm_state *state)
185{
186 int err;
187
188 if (state->polarity != PWM_POLARITY_NORMAL)
189 return -EINVAL;
190
191 if (!state->enabled) {
192 if (pwm->state.enabled)
193 lp3943_pwm_disable(chip, pwm);
194 return 0;
195 }
196
197 err = lp3943_pwm_config(chip, pwm, state->duty_cycle, state->period);
198 if (err)
199 return err;
200
201 if (!pwm->state.enabled)
202 err = lp3943_pwm_enable(chip, pwm);
203
204 return err;
205}
206
207static const struct pwm_ops lp3943_pwm_ops = {
208 .request = lp3943_pwm_request,
209 .free = lp3943_pwm_free,
210 .apply = lp3943_pwm_apply,
211};
212
213static int lp3943_pwm_parse_dt(struct device *dev,
214 struct lp3943_pwm *lp3943_pwm)
215{
216 static const char * const name[] = { "ti,pwm0", "ti,pwm1", };
217 struct device_node *node = dev->of_node;
218 struct lp3943_platform_data *pdata;
219 struct lp3943_pwm_map *pwm_map;
220 enum lp3943_pwm_output *output;
221 int i, err, num_outputs, count = 0;
222
223 if (!node)
224 return -EINVAL;
225
226 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
227 if (!pdata)
228 return -ENOMEM;
229
230 /*
231 * Read the output map configuration from the device tree.
232 * Each of the two PWM generators can drive zero or more outputs.
233 */
234
235 for (i = 0; i < LP3943_NUM_PWMS; i++) {
236 num_outputs = of_property_count_u32_elems(node, name[i]);
237 if (num_outputs <= 0)
238 continue;
239
240 output = devm_kcalloc(dev, num_outputs, sizeof(*output),
241 GFP_KERNEL);
242 if (!output)
243 return -ENOMEM;
244
245 err = of_property_read_u32_array(node, name[i], output,
246 num_outputs);
247 if (err)
248 return err;
249
250 pwm_map = devm_kzalloc(dev, sizeof(*pwm_map), GFP_KERNEL);
251 if (!pwm_map)
252 return -ENOMEM;
253
254 pwm_map->output = output;
255 pwm_map->num_outputs = num_outputs;
256 pdata->pwms[i] = pwm_map;
257
258 count++;
259 }
260
261 if (count == 0)
262 return -ENODATA;
263
264 lp3943_pwm->pdata = pdata;
265 return 0;
266}
267
268static int lp3943_pwm_probe(struct platform_device *pdev)
269{
270 struct lp3943 *lp3943 = dev_get_drvdata(pdev->dev.parent);
271 struct pwm_chip *chip;
272 struct lp3943_pwm *lp3943_pwm;
273 int ret;
274
275 chip = devm_pwmchip_alloc(&pdev->dev, LP3943_NUM_PWMS, sizeof(*lp3943_pwm));
276 if (IS_ERR(chip))
277 return PTR_ERR(chip);
278 lp3943_pwm = to_lp3943_pwm(chip);
279
280 lp3943_pwm->pdata = lp3943->pdata;
281 if (!lp3943_pwm->pdata) {
282 if (IS_ENABLED(CONFIG_OF))
283 ret = lp3943_pwm_parse_dt(&pdev->dev, lp3943_pwm);
284 else
285 ret = -ENODEV;
286
287 if (ret)
288 return ret;
289 }
290
291 lp3943_pwm->lp3943 = lp3943;
292 chip->ops = &lp3943_pwm_ops;
293
294 return devm_pwmchip_add(&pdev->dev, chip);
295}
296
297#ifdef CONFIG_OF
298static const struct of_device_id lp3943_pwm_of_match[] = {
299 { .compatible = "ti,lp3943-pwm", },
300 { }
301};
302MODULE_DEVICE_TABLE(of, lp3943_pwm_of_match);
303#endif
304
305static struct platform_driver lp3943_pwm_driver = {
306 .probe = lp3943_pwm_probe,
307 .driver = {
308 .name = "lp3943-pwm",
309 .of_match_table = of_match_ptr(lp3943_pwm_of_match),
310 },
311};
312module_platform_driver(lp3943_pwm_driver);
313
314MODULE_DESCRIPTION("LP3943 PWM driver");
315MODULE_ALIAS("platform:lp3943-pwm");
316MODULE_AUTHOR("Milo Kim");
317MODULE_LICENSE("GPL");
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * TI/National Semiconductor LP3943 PWM driver
4 *
5 * Copyright 2013 Texas Instruments
6 *
7 * Author: Milo Kim <milo.kim@ti.com>
8 */
9
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>
17
18#define LP3943_MAX_DUTY 255
19#define LP3943_MIN_PERIOD 6250
20#define LP3943_MAX_PERIOD 1600000
21
22struct lp3943_pwm {
23 struct pwm_chip chip;
24 struct lp3943 *lp3943;
25 struct lp3943_platform_data *pdata;
26};
27
28static inline struct lp3943_pwm *to_lp3943_pwm(struct pwm_chip *_chip)
29{
30 return container_of(_chip, struct lp3943_pwm, chip);
31}
32
33static struct lp3943_pwm_map *
34lp3943_pwm_request_map(struct lp3943_pwm *lp3943_pwm, int hwpwm)
35{
36 struct lp3943_platform_data *pdata = lp3943_pwm->pdata;
37 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
38 struct lp3943_pwm_map *pwm_map;
39 int i, offset;
40
41 pwm_map = kzalloc(sizeof(*pwm_map), GFP_KERNEL);
42 if (!pwm_map)
43 return ERR_PTR(-ENOMEM);
44
45 pwm_map->output = pdata->pwms[hwpwm]->output;
46 pwm_map->num_outputs = pdata->pwms[hwpwm]->num_outputs;
47
48 for (i = 0; i < pwm_map->num_outputs; i++) {
49 offset = pwm_map->output[i];
50
51 /* Return an error if the pin is already assigned */
52 if (test_and_set_bit(offset, &lp3943->pin_used)) {
53 kfree(pwm_map);
54 return ERR_PTR(-EBUSY);
55 }
56 }
57
58 return pwm_map;
59}
60
61static int lp3943_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
62{
63 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
64 struct lp3943_pwm_map *pwm_map;
65
66 pwm_map = lp3943_pwm_request_map(lp3943_pwm, pwm->hwpwm);
67 if (IS_ERR(pwm_map))
68 return PTR_ERR(pwm_map);
69
70 return pwm_set_chip_data(pwm, pwm_map);
71}
72
73static void lp3943_pwm_free_map(struct lp3943_pwm *lp3943_pwm,
74 struct lp3943_pwm_map *pwm_map)
75{
76 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
77 int i, offset;
78
79 for (i = 0; i < pwm_map->num_outputs; i++) {
80 offset = pwm_map->output[i];
81 clear_bit(offset, &lp3943->pin_used);
82 }
83
84 kfree(pwm_map);
85}
86
87static void lp3943_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
88{
89 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
90 struct lp3943_pwm_map *pwm_map = pwm_get_chip_data(pwm);
91
92 lp3943_pwm_free_map(lp3943_pwm, pwm_map);
93}
94
95static int lp3943_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
96 int duty_ns, int period_ns)
97{
98 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
99 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
100 u8 val, reg_duty, reg_prescale;
101 int err;
102
103 /*
104 * How to configure the LP3943 PWMs
105 *
106 * 1) Period = 6250 ~ 1600000
107 * 2) Prescale = period / 6250 -1
108 * 3) Duty = input duty
109 *
110 * Prescale and duty are register values
111 */
112
113 if (pwm->hwpwm == 0) {
114 reg_prescale = LP3943_REG_PRESCALE0;
115 reg_duty = LP3943_REG_PWM0;
116 } else {
117 reg_prescale = LP3943_REG_PRESCALE1;
118 reg_duty = LP3943_REG_PWM1;
119 }
120
121 period_ns = clamp(period_ns, LP3943_MIN_PERIOD, LP3943_MAX_PERIOD);
122 val = (u8)(period_ns / LP3943_MIN_PERIOD - 1);
123
124 err = lp3943_write_byte(lp3943, reg_prescale, val);
125 if (err)
126 return err;
127
128 val = (u8)(duty_ns * LP3943_MAX_DUTY / period_ns);
129
130 return lp3943_write_byte(lp3943, reg_duty, val);
131}
132
133static int lp3943_pwm_set_mode(struct lp3943_pwm *lp3943_pwm,
134 struct lp3943_pwm_map *pwm_map,
135 u8 val)
136{
137 struct lp3943 *lp3943 = lp3943_pwm->lp3943;
138 const struct lp3943_reg_cfg *mux = lp3943->mux_cfg;
139 int i, index, err;
140
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,
144 mux[index].mask,
145 val << mux[index].shift);
146 if (err)
147 return err;
148 }
149
150 return 0;
151}
152
153static int lp3943_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
154{
155 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
156 struct lp3943_pwm_map *pwm_map = pwm_get_chip_data(pwm);
157 u8 val;
158
159 if (pwm->hwpwm == 0)
160 val = LP3943_DIM_PWM0;
161 else
162 val = LP3943_DIM_PWM1;
163
164 /*
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.
167 */
168
169 return lp3943_pwm_set_mode(lp3943_pwm, pwm_map, val);
170}
171
172static void lp3943_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
173{
174 struct lp3943_pwm *lp3943_pwm = to_lp3943_pwm(chip);
175 struct lp3943_pwm_map *pwm_map = pwm_get_chip_data(pwm);
176
177 /*
178 * LP3943 outputs are open-drain, so the pin should be configured
179 * when the PWM is disabled.
180 */
181
182 lp3943_pwm_set_mode(lp3943_pwm, pwm_map, LP3943_GPIO_OUT_HIGH);
183}
184
185static 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,
192};
193
194static int lp3943_pwm_parse_dt(struct device *dev,
195 struct lp3943_pwm *lp3943_pwm)
196{
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;
203 u32 num_outputs;
204
205 if (!node)
206 return -EINVAL;
207
208 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
209 if (!pdata)
210 return -ENOMEM;
211
212 /*
213 * Read the output map configuration from the device tree.
214 * Each of the two PWM generators can drive zero or more outputs.
215 */
216
217 for (i = 0; i < LP3943_NUM_PWMS; i++) {
218 if (!of_get_property(node, name[i], &proplen))
219 continue;
220
221 num_outputs = proplen / sizeof(u32);
222 if (num_outputs == 0)
223 continue;
224
225 output = devm_kcalloc(dev, num_outputs, sizeof(*output),
226 GFP_KERNEL);
227 if (!output)
228 return -ENOMEM;
229
230 err = of_property_read_u32_array(node, name[i], output,
231 num_outputs);
232 if (err)
233 return err;
234
235 pwm_map = devm_kzalloc(dev, sizeof(*pwm_map), GFP_KERNEL);
236 if (!pwm_map)
237 return -ENOMEM;
238
239 pwm_map->output = output;
240 pwm_map->num_outputs = num_outputs;
241 pdata->pwms[i] = pwm_map;
242
243 count++;
244 }
245
246 if (count == 0)
247 return -ENODATA;
248
249 lp3943_pwm->pdata = pdata;
250 return 0;
251}
252
253static int lp3943_pwm_probe(struct platform_device *pdev)
254{
255 struct lp3943 *lp3943 = dev_get_drvdata(pdev->dev.parent);
256 struct lp3943_pwm *lp3943_pwm;
257 int ret;
258
259 lp3943_pwm = devm_kzalloc(&pdev->dev, sizeof(*lp3943_pwm), GFP_KERNEL);
260 if (!lp3943_pwm)
261 return -ENOMEM;
262
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);
267 else
268 ret = -ENODEV;
269
270 if (ret)
271 return ret;
272 }
273
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;
278
279 platform_set_drvdata(pdev, lp3943_pwm);
280
281 return pwmchip_add(&lp3943_pwm->chip);
282}
283
284static int lp3943_pwm_remove(struct platform_device *pdev)
285{
286 struct lp3943_pwm *lp3943_pwm = platform_get_drvdata(pdev);
287
288 return pwmchip_remove(&lp3943_pwm->chip);
289}
290
291#ifdef CONFIG_OF
292static const struct of_device_id lp3943_pwm_of_match[] = {
293 { .compatible = "ti,lp3943-pwm", },
294 { }
295};
296MODULE_DEVICE_TABLE(of, lp3943_pwm_of_match);
297#endif
298
299static struct platform_driver lp3943_pwm_driver = {
300 .probe = lp3943_pwm_probe,
301 .remove = lp3943_pwm_remove,
302 .driver = {
303 .name = "lp3943-pwm",
304 .of_match_table = of_match_ptr(lp3943_pwm_of_match),
305 },
306};
307module_platform_driver(lp3943_pwm_driver);
308
309MODULE_DESCRIPTION("LP3943 PWM driver");
310MODULE_ALIAS("platform:lp3943-pwm");
311MODULE_AUTHOR("Milo Kim");
312MODULE_LICENSE("GPL");