Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright 2011 bct electronic GmbH
4 * Copyright 2013 Qtechnology/AS
5 *
6 * Author: Peter Meerwald <p.meerwald@bct-electronic.com>
7 * Author: Ricardo Ribalda <ribalda@kernel.org>
8 *
9 * Based on leds-pca955x.c
10 *
11 * LED driver for the PCA9633 I2C LED driver (7-bit slave address 0x62)
12 * LED driver for the PCA9634/5 I2C LED driver (7-bit slave address set by hw.)
13 *
14 * Note that hardware blinking violates the leds infrastructure driver
15 * interface since the hardware only supports blinking all LEDs with the
16 * same delay_on/delay_off rates. That is, only the LEDs that are set to
17 * blink will actually blink but all LEDs that are set to blink will blink
18 * in identical fashion. The delay_on/delay_off values of the last LED
19 * that is set to blink will be used for all of the blinking LEDs.
20 * Hardware blinking is disabled by default but can be enabled by setting
21 * the 'blink_type' member in the platform_data struct to 'PCA963X_HW_BLINK'
22 * or by adding the 'nxp,hw-blink' property to the DTS.
23 */
24
25#include <linux/module.h>
26#include <linux/delay.h>
27#include <linux/string.h>
28#include <linux/ctype.h>
29#include <linux/leds.h>
30#include <linux/err.h>
31#include <linux/i2c.h>
32#include <linux/property.h>
33#include <linux/slab.h>
34#include <linux/of.h>
35
36/* LED select registers determine the source that drives LED outputs */
37#define PCA963X_LED_OFF 0x0 /* LED driver off */
38#define PCA963X_LED_ON 0x1 /* LED driver on */
39#define PCA963X_LED_PWM 0x2 /* Controlled through PWM */
40#define PCA963X_LED_GRP_PWM 0x3 /* Controlled through PWM/GRPPWM */
41
42#define PCA963X_MODE2_OUTDRV 0x04 /* Open-drain or totem pole */
43#define PCA963X_MODE2_INVRT 0x10 /* Normal or inverted direction */
44#define PCA963X_MODE2_DMBLNK 0x20 /* Enable blinking */
45
46#define PCA963X_MODE1 0x00
47#define PCA963X_MODE2 0x01
48#define PCA963X_PWM_BASE 0x02
49
50enum pca963x_type {
51 pca9633,
52 pca9634,
53 pca9635,
54};
55
56struct pca963x_chipdef {
57 u8 grppwm;
58 u8 grpfreq;
59 u8 ledout_base;
60 int n_leds;
61 unsigned int scaling;
62};
63
64static struct pca963x_chipdef pca963x_chipdefs[] = {
65 [pca9633] = {
66 .grppwm = 0x6,
67 .grpfreq = 0x7,
68 .ledout_base = 0x8,
69 .n_leds = 4,
70 },
71 [pca9634] = {
72 .grppwm = 0xa,
73 .grpfreq = 0xb,
74 .ledout_base = 0xc,
75 .n_leds = 8,
76 },
77 [pca9635] = {
78 .grppwm = 0x12,
79 .grpfreq = 0x13,
80 .ledout_base = 0x14,
81 .n_leds = 16,
82 },
83};
84
85/* Total blink period in milliseconds */
86#define PCA963X_BLINK_PERIOD_MIN 42
87#define PCA963X_BLINK_PERIOD_MAX 10667
88
89static const struct i2c_device_id pca963x_id[] = {
90 { "pca9632", pca9633 },
91 { "pca9633", pca9633 },
92 { "pca9634", pca9634 },
93 { "pca9635", pca9635 },
94 { }
95};
96MODULE_DEVICE_TABLE(i2c, pca963x_id);
97
98struct pca963x;
99
100struct pca963x_led {
101 struct pca963x *chip;
102 struct led_classdev led_cdev;
103 int led_num; /* 0 .. 15 potentially */
104 bool blinking;
105 u8 gdc;
106 u8 gfrq;
107};
108
109struct pca963x {
110 struct pca963x_chipdef *chipdef;
111 struct mutex mutex;
112 struct i2c_client *client;
113 unsigned long leds_on;
114 struct pca963x_led leds[];
115};
116
117static int pca963x_brightness(struct pca963x_led *led,
118 enum led_brightness brightness)
119{
120 struct i2c_client *client = led->chip->client;
121 struct pca963x_chipdef *chipdef = led->chip->chipdef;
122 u8 ledout_addr, ledout, mask, val;
123 int shift;
124 int ret;
125
126 ledout_addr = chipdef->ledout_base + (led->led_num / 4);
127 shift = 2 * (led->led_num % 4);
128 mask = 0x3 << shift;
129 ledout = i2c_smbus_read_byte_data(client, ledout_addr);
130
131 switch (brightness) {
132 case LED_FULL:
133 if (led->blinking) {
134 val = (ledout & ~mask) | (PCA963X_LED_GRP_PWM << shift);
135 ret = i2c_smbus_write_byte_data(client,
136 PCA963X_PWM_BASE +
137 led->led_num,
138 LED_FULL);
139 } else {
140 val = (ledout & ~mask) | (PCA963X_LED_ON << shift);
141 }
142 ret = i2c_smbus_write_byte_data(client, ledout_addr, val);
143 break;
144 case LED_OFF:
145 val = ledout & ~mask;
146 ret = i2c_smbus_write_byte_data(client, ledout_addr, val);
147 led->blinking = false;
148 break;
149 default:
150 ret = i2c_smbus_write_byte_data(client,
151 PCA963X_PWM_BASE +
152 led->led_num,
153 brightness);
154 if (ret < 0)
155 return ret;
156
157 if (led->blinking)
158 val = (ledout & ~mask) | (PCA963X_LED_GRP_PWM << shift);
159 else
160 val = (ledout & ~mask) | (PCA963X_LED_PWM << shift);
161
162 ret = i2c_smbus_write_byte_data(client, ledout_addr, val);
163 break;
164 }
165
166 return ret;
167}
168
169static void pca963x_blink(struct pca963x_led *led)
170{
171 struct i2c_client *client = led->chip->client;
172 struct pca963x_chipdef *chipdef = led->chip->chipdef;
173 u8 ledout_addr, ledout, mask, val, mode2;
174 int shift;
175
176 ledout_addr = chipdef->ledout_base + (led->led_num / 4);
177 shift = 2 * (led->led_num % 4);
178 mask = 0x3 << shift;
179 mode2 = i2c_smbus_read_byte_data(client, PCA963X_MODE2);
180
181 i2c_smbus_write_byte_data(client, chipdef->grppwm, led->gdc);
182
183 i2c_smbus_write_byte_data(client, chipdef->grpfreq, led->gfrq);
184
185 if (!(mode2 & PCA963X_MODE2_DMBLNK))
186 i2c_smbus_write_byte_data(client, PCA963X_MODE2,
187 mode2 | PCA963X_MODE2_DMBLNK);
188
189 mutex_lock(&led->chip->mutex);
190
191 ledout = i2c_smbus_read_byte_data(client, ledout_addr);
192 if ((ledout & mask) != (PCA963X_LED_GRP_PWM << shift)) {
193 val = (ledout & ~mask) | (PCA963X_LED_GRP_PWM << shift);
194 i2c_smbus_write_byte_data(client, ledout_addr, val);
195 }
196
197 mutex_unlock(&led->chip->mutex);
198 led->blinking = true;
199}
200
201static int pca963x_power_state(struct pca963x_led *led)
202{
203 struct i2c_client *client = led->chip->client;
204 unsigned long *leds_on = &led->chip->leds_on;
205 unsigned long cached_leds = *leds_on;
206
207 if (led->led_cdev.brightness)
208 set_bit(led->led_num, leds_on);
209 else
210 clear_bit(led->led_num, leds_on);
211
212 if (!(*leds_on) != !cached_leds)
213 return i2c_smbus_write_byte_data(client, PCA963X_MODE1,
214 *leds_on ? 0 : BIT(4));
215
216 return 0;
217}
218
219static int pca963x_led_set(struct led_classdev *led_cdev,
220 enum led_brightness value)
221{
222 struct pca963x_led *led;
223 int ret;
224
225 led = container_of(led_cdev, struct pca963x_led, led_cdev);
226
227 mutex_lock(&led->chip->mutex);
228
229 ret = pca963x_brightness(led, value);
230 if (ret < 0)
231 goto unlock;
232 ret = pca963x_power_state(led);
233
234unlock:
235 mutex_unlock(&led->chip->mutex);
236 return ret;
237}
238
239static unsigned int pca963x_period_scale(struct pca963x_led *led,
240 unsigned int val)
241{
242 unsigned int scaling = led->chip->chipdef->scaling;
243
244 return scaling ? DIV_ROUND_CLOSEST(val * scaling, 1000) : val;
245}
246
247static int pca963x_blink_set(struct led_classdev *led_cdev,
248 unsigned long *delay_on, unsigned long *delay_off)
249{
250 unsigned long time_on, time_off, period;
251 struct pca963x_led *led;
252 u8 gdc, gfrq;
253
254 led = container_of(led_cdev, struct pca963x_led, led_cdev);
255
256 time_on = *delay_on;
257 time_off = *delay_off;
258
259 /* If both zero, pick reasonable defaults of 500ms each */
260 if (!time_on && !time_off) {
261 time_on = 500;
262 time_off = 500;
263 }
264
265 period = pca963x_period_scale(led, time_on + time_off);
266
267 /* If period not supported by hardware, default to someting sane. */
268 if ((period < PCA963X_BLINK_PERIOD_MIN) ||
269 (period > PCA963X_BLINK_PERIOD_MAX)) {
270 time_on = 500;
271 time_off = 500;
272 period = pca963x_period_scale(led, 1000);
273 }
274
275 /*
276 * From manual: duty cycle = (GDC / 256) ->
277 * (time_on / period) = (GDC / 256) ->
278 * GDC = ((time_on * 256) / period)
279 */
280 gdc = (pca963x_period_scale(led, time_on) * 256) / period;
281
282 /*
283 * From manual: period = ((GFRQ + 1) / 24) in seconds.
284 * So, period (in ms) = (((GFRQ + 1) / 24) * 1000) ->
285 * GFRQ = ((period * 24 / 1000) - 1)
286 */
287 gfrq = (period * 24 / 1000) - 1;
288
289 led->gdc = gdc;
290 led->gfrq = gfrq;
291
292 pca963x_blink(led);
293 led->led_cdev.brightness = LED_FULL;
294 pca963x_led_set(led_cdev, LED_FULL);
295
296 *delay_on = time_on;
297 *delay_off = time_off;
298
299 return 0;
300}
301
302static int pca963x_register_leds(struct i2c_client *client,
303 struct pca963x *chip)
304{
305 struct pca963x_chipdef *chipdef = chip->chipdef;
306 struct pca963x_led *led = chip->leds;
307 struct device *dev = &client->dev;
308 struct fwnode_handle *child;
309 bool hw_blink;
310 s32 mode2;
311 u32 reg;
312 int ret;
313
314 if (device_property_read_u32(dev, "nxp,period-scale",
315 &chipdef->scaling))
316 chipdef->scaling = 1000;
317
318 hw_blink = device_property_read_bool(dev, "nxp,hw-blink");
319
320 mode2 = i2c_smbus_read_byte_data(client, PCA963X_MODE2);
321 if (mode2 < 0)
322 return mode2;
323
324 /* default to open-drain unless totem pole (push-pull) is specified */
325 if (device_property_read_bool(dev, "nxp,totem-pole"))
326 mode2 |= PCA963X_MODE2_OUTDRV;
327 else
328 mode2 &= ~PCA963X_MODE2_OUTDRV;
329
330 /* default to non-inverted output, unless inverted is specified */
331 if (device_property_read_bool(dev, "nxp,inverted-out"))
332 mode2 |= PCA963X_MODE2_INVRT;
333 else
334 mode2 &= ~PCA963X_MODE2_INVRT;
335
336 ret = i2c_smbus_write_byte_data(client, PCA963X_MODE2, mode2);
337 if (ret < 0)
338 return ret;
339
340 device_for_each_child_node(dev, child) {
341 struct led_init_data init_data = {};
342 char default_label[32];
343
344 ret = fwnode_property_read_u32(child, "reg", ®);
345 if (ret || reg >= chipdef->n_leds) {
346 dev_err(dev, "Invalid 'reg' property for node %pfw\n",
347 child);
348 ret = -EINVAL;
349 goto err;
350 }
351
352 led->led_num = reg;
353 led->chip = chip;
354 led->led_cdev.brightness_set_blocking = pca963x_led_set;
355 if (hw_blink)
356 led->led_cdev.blink_set = pca963x_blink_set;
357 led->blinking = false;
358
359 init_data.fwnode = child;
360 /* for backwards compatibility */
361 init_data.devicename = "pca963x";
362 snprintf(default_label, sizeof(default_label), "%d:%.2x:%u",
363 client->adapter->nr, client->addr, reg);
364 init_data.default_label = default_label;
365
366 ret = devm_led_classdev_register_ext(dev, &led->led_cdev,
367 &init_data);
368 if (ret) {
369 dev_err(dev, "Failed to register LED for node %pfw\n",
370 child);
371 goto err;
372 }
373
374 ++led;
375 }
376
377 return 0;
378err:
379 fwnode_handle_put(child);
380 return ret;
381}
382
383static const struct of_device_id of_pca963x_match[] = {
384 { .compatible = "nxp,pca9632", },
385 { .compatible = "nxp,pca9633", },
386 { .compatible = "nxp,pca9634", },
387 { .compatible = "nxp,pca9635", },
388 {},
389};
390MODULE_DEVICE_TABLE(of, of_pca963x_match);
391
392static int pca963x_probe(struct i2c_client *client,
393 const struct i2c_device_id *id)
394{
395 struct device *dev = &client->dev;
396 struct pca963x_chipdef *chipdef;
397 struct pca963x *chip;
398 int i, count;
399
400 chipdef = &pca963x_chipdefs[id->driver_data];
401
402 count = device_get_child_node_count(dev);
403 if (!count || count > chipdef->n_leds) {
404 dev_err(dev, "Node %pfw must define between 1 and %d LEDs\n",
405 dev_fwnode(dev), chipdef->n_leds);
406 return -EINVAL;
407 }
408
409 chip = devm_kzalloc(dev, struct_size(chip, leds, count), GFP_KERNEL);
410 if (!chip)
411 return -ENOMEM;
412
413 i2c_set_clientdata(client, chip);
414
415 mutex_init(&chip->mutex);
416 chip->chipdef = chipdef;
417 chip->client = client;
418
419 /* Turn off LEDs by default*/
420 for (i = 0; i < chipdef->n_leds / 4; i++)
421 i2c_smbus_write_byte_data(client, chipdef->ledout_base + i, 0x00);
422
423 /* Disable LED all-call address, and power down initially */
424 i2c_smbus_write_byte_data(client, PCA963X_MODE1, BIT(4));
425
426 return pca963x_register_leds(client, chip);
427}
428
429static struct i2c_driver pca963x_driver = {
430 .driver = {
431 .name = "leds-pca963x",
432 .of_match_table = of_pca963x_match,
433 },
434 .probe = pca963x_probe,
435 .id_table = pca963x_id,
436};
437
438module_i2c_driver(pca963x_driver);
439
440MODULE_AUTHOR("Peter Meerwald <p.meerwald@bct-electronic.com>");
441MODULE_DESCRIPTION("PCA963X LED driver");
442MODULE_LICENSE("GPL v2");
1/*
2 * Copyright 2011 bct electronic GmbH
3 * Copyright 2013 Qtechnology/AS
4 *
5 * Author: Peter Meerwald <p.meerwald@bct-electronic.com>
6 * Author: Ricardo Ribalda <ricardo.ribalda@gmail.com>
7 *
8 * Based on leds-pca955x.c
9 *
10 * This file is subject to the terms and conditions of version 2 of
11 * the GNU General Public License. See the file COPYING in the main
12 * directory of this archive for more details.
13 *
14 * LED driver for the PCA9633 I2C LED driver (7-bit slave address 0x62)
15 * LED driver for the PCA9634/5 I2C LED driver (7-bit slave address set by hw.)
16 *
17 * Note that hardware blinking violates the leds infrastructure driver
18 * interface since the hardware only supports blinking all LEDs with the
19 * same delay_on/delay_off rates. That is, only the LEDs that are set to
20 * blink will actually blink but all LEDs that are set to blink will blink
21 * in identical fashion. The delay_on/delay_off values of the last LED
22 * that is set to blink will be used for all of the blinking LEDs.
23 * Hardware blinking is disabled by default but can be enabled by setting
24 * the 'blink_type' member in the platform_data struct to 'PCA963X_HW_BLINK'
25 * or by adding the 'nxp,hw-blink' property to the DTS.
26 */
27
28#include <linux/module.h>
29#include <linux/delay.h>
30#include <linux/string.h>
31#include <linux/ctype.h>
32#include <linux/leds.h>
33#include <linux/err.h>
34#include <linux/i2c.h>
35#include <linux/slab.h>
36#include <linux/of.h>
37#include <linux/platform_data/leds-pca963x.h>
38
39/* LED select registers determine the source that drives LED outputs */
40#define PCA963X_LED_OFF 0x0 /* LED driver off */
41#define PCA963X_LED_ON 0x1 /* LED driver on */
42#define PCA963X_LED_PWM 0x2 /* Controlled through PWM */
43#define PCA963X_LED_GRP_PWM 0x3 /* Controlled through PWM/GRPPWM */
44
45#define PCA963X_MODE2_DMBLNK 0x20 /* Enable blinking */
46
47#define PCA963X_MODE1 0x00
48#define PCA963X_MODE2 0x01
49#define PCA963X_PWM_BASE 0x02
50
51enum pca963x_type {
52 pca9633,
53 pca9634,
54 pca9635,
55};
56
57struct pca963x_chipdef {
58 u8 grppwm;
59 u8 grpfreq;
60 u8 ledout_base;
61 int n_leds;
62};
63
64static struct pca963x_chipdef pca963x_chipdefs[] = {
65 [pca9633] = {
66 .grppwm = 0x6,
67 .grpfreq = 0x7,
68 .ledout_base = 0x8,
69 .n_leds = 4,
70 },
71 [pca9634] = {
72 .grppwm = 0xa,
73 .grpfreq = 0xb,
74 .ledout_base = 0xc,
75 .n_leds = 8,
76 },
77 [pca9635] = {
78 .grppwm = 0x12,
79 .grpfreq = 0x13,
80 .ledout_base = 0x14,
81 .n_leds = 16,
82 },
83};
84
85/* Total blink period in milliseconds */
86#define PCA963X_BLINK_PERIOD_MIN 42
87#define PCA963X_BLINK_PERIOD_MAX 10667
88
89static const struct i2c_device_id pca963x_id[] = {
90 { "pca9632", pca9633 },
91 { "pca9633", pca9633 },
92 { "pca9634", pca9634 },
93 { "pca9635", pca9635 },
94 { }
95};
96MODULE_DEVICE_TABLE(i2c, pca963x_id);
97
98struct pca963x_led;
99
100struct pca963x {
101 struct pca963x_chipdef *chipdef;
102 struct mutex mutex;
103 struct i2c_client *client;
104 struct pca963x_led *leds;
105};
106
107struct pca963x_led {
108 struct pca963x *chip;
109 struct led_classdev led_cdev;
110 int led_num; /* 0 .. 15 potentially */
111 char name[32];
112 u8 gdc;
113 u8 gfrq;
114};
115
116static int pca963x_brightness(struct pca963x_led *pca963x,
117 enum led_brightness brightness)
118{
119 u8 ledout_addr = pca963x->chip->chipdef->ledout_base
120 + (pca963x->led_num / 4);
121 u8 ledout;
122 int shift = 2 * (pca963x->led_num % 4);
123 u8 mask = 0x3 << shift;
124 int ret;
125
126 mutex_lock(&pca963x->chip->mutex);
127 ledout = i2c_smbus_read_byte_data(pca963x->chip->client, ledout_addr);
128 switch (brightness) {
129 case LED_FULL:
130 ret = i2c_smbus_write_byte_data(pca963x->chip->client,
131 ledout_addr,
132 (ledout & ~mask) | (PCA963X_LED_ON << shift));
133 break;
134 case LED_OFF:
135 ret = i2c_smbus_write_byte_data(pca963x->chip->client,
136 ledout_addr, ledout & ~mask);
137 break;
138 default:
139 ret = i2c_smbus_write_byte_data(pca963x->chip->client,
140 PCA963X_PWM_BASE + pca963x->led_num,
141 brightness);
142 if (ret < 0)
143 goto unlock;
144 ret = i2c_smbus_write_byte_data(pca963x->chip->client,
145 ledout_addr,
146 (ledout & ~mask) | (PCA963X_LED_PWM << shift));
147 break;
148 }
149unlock:
150 mutex_unlock(&pca963x->chip->mutex);
151 return ret;
152}
153
154static void pca963x_blink(struct pca963x_led *pca963x)
155{
156 u8 ledout_addr = pca963x->chip->chipdef->ledout_base +
157 (pca963x->led_num / 4);
158 u8 ledout;
159 u8 mode2 = i2c_smbus_read_byte_data(pca963x->chip->client,
160 PCA963X_MODE2);
161 int shift = 2 * (pca963x->led_num % 4);
162 u8 mask = 0x3 << shift;
163
164 i2c_smbus_write_byte_data(pca963x->chip->client,
165 pca963x->chip->chipdef->grppwm, pca963x->gdc);
166
167 i2c_smbus_write_byte_data(pca963x->chip->client,
168 pca963x->chip->chipdef->grpfreq, pca963x->gfrq);
169
170 if (!(mode2 & PCA963X_MODE2_DMBLNK))
171 i2c_smbus_write_byte_data(pca963x->chip->client, PCA963X_MODE2,
172 mode2 | PCA963X_MODE2_DMBLNK);
173
174 mutex_lock(&pca963x->chip->mutex);
175 ledout = i2c_smbus_read_byte_data(pca963x->chip->client, ledout_addr);
176 if ((ledout & mask) != (PCA963X_LED_GRP_PWM << shift))
177 i2c_smbus_write_byte_data(pca963x->chip->client, ledout_addr,
178 (ledout & ~mask) | (PCA963X_LED_GRP_PWM << shift));
179 mutex_unlock(&pca963x->chip->mutex);
180}
181
182static int pca963x_led_set(struct led_classdev *led_cdev,
183 enum led_brightness value)
184{
185 struct pca963x_led *pca963x;
186
187 pca963x = container_of(led_cdev, struct pca963x_led, led_cdev);
188
189 return pca963x_brightness(pca963x, value);
190}
191
192static int pca963x_blink_set(struct led_classdev *led_cdev,
193 unsigned long *delay_on, unsigned long *delay_off)
194{
195 struct pca963x_led *pca963x;
196 unsigned long time_on, time_off, period;
197 u8 gdc, gfrq;
198
199 pca963x = container_of(led_cdev, struct pca963x_led, led_cdev);
200
201 time_on = *delay_on;
202 time_off = *delay_off;
203
204 /* If both zero, pick reasonable defaults of 500ms each */
205 if (!time_on && !time_off) {
206 time_on = 500;
207 time_off = 500;
208 }
209
210 period = time_on + time_off;
211
212 /* If period not supported by hardware, default to someting sane. */
213 if ((period < PCA963X_BLINK_PERIOD_MIN) ||
214 (period > PCA963X_BLINK_PERIOD_MAX)) {
215 time_on = 500;
216 time_off = 500;
217 period = time_on + time_off;
218 }
219
220 /*
221 * From manual: duty cycle = (GDC / 256) ->
222 * (time_on / period) = (GDC / 256) ->
223 * GDC = ((time_on * 256) / period)
224 */
225 gdc = (time_on * 256) / period;
226
227 /*
228 * From manual: period = ((GFRQ + 1) / 24) in seconds.
229 * So, period (in ms) = (((GFRQ + 1) / 24) * 1000) ->
230 * GFRQ = ((period * 24 / 1000) - 1)
231 */
232 gfrq = (period * 24 / 1000) - 1;
233
234 pca963x->gdc = gdc;
235 pca963x->gfrq = gfrq;
236
237 pca963x_blink(pca963x);
238
239 *delay_on = time_on;
240 *delay_off = time_off;
241
242 return 0;
243}
244
245#if IS_ENABLED(CONFIG_OF)
246static struct pca963x_platform_data *
247pca963x_dt_init(struct i2c_client *client, struct pca963x_chipdef *chip)
248{
249 struct device_node *np = client->dev.of_node, *child;
250 struct pca963x_platform_data *pdata;
251 struct led_info *pca963x_leds;
252 int count;
253
254 count = of_get_child_count(np);
255 if (!count || count > chip->n_leds)
256 return ERR_PTR(-ENODEV);
257
258 pca963x_leds = devm_kzalloc(&client->dev,
259 sizeof(struct led_info) * chip->n_leds, GFP_KERNEL);
260 if (!pca963x_leds)
261 return ERR_PTR(-ENOMEM);
262
263 for_each_child_of_node(np, child) {
264 struct led_info led = {};
265 u32 reg;
266 int res;
267
268 res = of_property_read_u32(child, "reg", ®);
269 if ((res != 0) || (reg >= chip->n_leds))
270 continue;
271 led.name =
272 of_get_property(child, "label", NULL) ? : child->name;
273 led.default_trigger =
274 of_get_property(child, "linux,default-trigger", NULL);
275 pca963x_leds[reg] = led;
276 }
277 pdata = devm_kzalloc(&client->dev,
278 sizeof(struct pca963x_platform_data), GFP_KERNEL);
279 if (!pdata)
280 return ERR_PTR(-ENOMEM);
281
282 pdata->leds.leds = pca963x_leds;
283 pdata->leds.num_leds = chip->n_leds;
284
285 /* default to open-drain unless totem pole (push-pull) is specified */
286 if (of_property_read_bool(np, "nxp,totem-pole"))
287 pdata->outdrv = PCA963X_TOTEM_POLE;
288 else
289 pdata->outdrv = PCA963X_OPEN_DRAIN;
290
291 /* default to software blinking unless hardware blinking is specified */
292 if (of_property_read_bool(np, "nxp,hw-blink"))
293 pdata->blink_type = PCA963X_HW_BLINK;
294 else
295 pdata->blink_type = PCA963X_SW_BLINK;
296
297 return pdata;
298}
299
300static const struct of_device_id of_pca963x_match[] = {
301 { .compatible = "nxp,pca9632", },
302 { .compatible = "nxp,pca9633", },
303 { .compatible = "nxp,pca9634", },
304 { .compatible = "nxp,pca9635", },
305 {},
306};
307MODULE_DEVICE_TABLE(of, of_pca963x_match);
308#else
309static struct pca963x_platform_data *
310pca963x_dt_init(struct i2c_client *client, struct pca963x_chipdef *chip)
311{
312 return ERR_PTR(-ENODEV);
313}
314#endif
315
316static int pca963x_probe(struct i2c_client *client,
317 const struct i2c_device_id *id)
318{
319 struct pca963x *pca963x_chip;
320 struct pca963x_led *pca963x;
321 struct pca963x_platform_data *pdata;
322 struct pca963x_chipdef *chip;
323 int i, err;
324
325 chip = &pca963x_chipdefs[id->driver_data];
326 pdata = dev_get_platdata(&client->dev);
327
328 if (!pdata) {
329 pdata = pca963x_dt_init(client, chip);
330 if (IS_ERR(pdata)) {
331 dev_warn(&client->dev, "could not parse configuration\n");
332 pdata = NULL;
333 }
334 }
335
336 if (pdata && (pdata->leds.num_leds < 1 ||
337 pdata->leds.num_leds > chip->n_leds)) {
338 dev_err(&client->dev, "board info must claim 1-%d LEDs",
339 chip->n_leds);
340 return -EINVAL;
341 }
342
343 pca963x_chip = devm_kzalloc(&client->dev, sizeof(*pca963x_chip),
344 GFP_KERNEL);
345 if (!pca963x_chip)
346 return -ENOMEM;
347 pca963x = devm_kzalloc(&client->dev, chip->n_leds * sizeof(*pca963x),
348 GFP_KERNEL);
349 if (!pca963x)
350 return -ENOMEM;
351
352 i2c_set_clientdata(client, pca963x_chip);
353
354 mutex_init(&pca963x_chip->mutex);
355 pca963x_chip->chipdef = chip;
356 pca963x_chip->client = client;
357 pca963x_chip->leds = pca963x;
358
359 /* Turn off LEDs by default*/
360 for (i = 0; i < chip->n_leds / 4; i++)
361 i2c_smbus_write_byte_data(client, chip->ledout_base + i, 0x00);
362
363 for (i = 0; i < chip->n_leds; i++) {
364 pca963x[i].led_num = i;
365 pca963x[i].chip = pca963x_chip;
366
367 /* Platform data can specify LED names and default triggers */
368 if (pdata && i < pdata->leds.num_leds) {
369 if (pdata->leds.leds[i].name)
370 snprintf(pca963x[i].name,
371 sizeof(pca963x[i].name), "pca963x:%s",
372 pdata->leds.leds[i].name);
373 if (pdata->leds.leds[i].default_trigger)
374 pca963x[i].led_cdev.default_trigger =
375 pdata->leds.leds[i].default_trigger;
376 }
377 if (!pdata || i >= pdata->leds.num_leds ||
378 !pdata->leds.leds[i].name)
379 snprintf(pca963x[i].name, sizeof(pca963x[i].name),
380 "pca963x:%d:%.2x:%d", client->adapter->nr,
381 client->addr, i);
382
383 pca963x[i].led_cdev.name = pca963x[i].name;
384 pca963x[i].led_cdev.brightness_set_blocking = pca963x_led_set;
385
386 if (pdata && pdata->blink_type == PCA963X_HW_BLINK)
387 pca963x[i].led_cdev.blink_set = pca963x_blink_set;
388
389 err = led_classdev_register(&client->dev, &pca963x[i].led_cdev);
390 if (err < 0)
391 goto exit;
392 }
393
394 /* Disable LED all-call address and set normal mode */
395 i2c_smbus_write_byte_data(client, PCA963X_MODE1, 0x00);
396
397 if (pdata) {
398 /* Configure output: open-drain or totem pole (push-pull) */
399 if (pdata->outdrv == PCA963X_OPEN_DRAIN)
400 i2c_smbus_write_byte_data(client, PCA963X_MODE2, 0x01);
401 else
402 i2c_smbus_write_byte_data(client, PCA963X_MODE2, 0x05);
403 }
404
405 return 0;
406
407exit:
408 while (i--)
409 led_classdev_unregister(&pca963x[i].led_cdev);
410
411 return err;
412}
413
414static int pca963x_remove(struct i2c_client *client)
415{
416 struct pca963x *pca963x = i2c_get_clientdata(client);
417 int i;
418
419 for (i = 0; i < pca963x->chipdef->n_leds; i++)
420 led_classdev_unregister(&pca963x->leds[i].led_cdev);
421
422 return 0;
423}
424
425static struct i2c_driver pca963x_driver = {
426 .driver = {
427 .name = "leds-pca963x",
428 .of_match_table = of_match_ptr(of_pca963x_match),
429 },
430 .probe = pca963x_probe,
431 .remove = pca963x_remove,
432 .id_table = pca963x_id,
433};
434
435module_i2c_driver(pca963x_driver);
436
437MODULE_AUTHOR("Peter Meerwald <p.meerwald@bct-electronic.com>");
438MODULE_DESCRIPTION("PCA963X LED driver");
439MODULE_LICENSE("GPL v2");