leds-lp55xx: use common device attribute driver function
[linux-2.6-block.git] / drivers / leds / leds-lp5523.c
CommitLineData
0efba16c
SO
1/*
2 * lp5523.c - LP5523 LED Driver
3 *
4 * Copyright (C) 2010 Nokia Corporation
5 *
6 * Contact: Samu Onkalo <samu.p.onkalo@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 */
22
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/i2c.h>
26#include <linux/mutex.h>
27#include <linux/gpio.h>
28#include <linux/interrupt.h>
29#include <linux/delay.h>
30#include <linux/ctype.h>
31#include <linux/spinlock.h>
32#include <linux/wait.h>
33#include <linux/leds.h>
34#include <linux/leds-lp5523.h>
35#include <linux/workqueue.h>
36#include <linux/slab.h>
6a0c9a47 37#include <linux/platform_data/leds-lp55xx.h>
db6eaf83 38#include <linux/firmware.h>
6a0c9a47
MWK
39
40#include "leds-lp55xx-common.h"
0efba16c
SO
41
42#define LP5523_REG_ENABLE 0x00
43#define LP5523_REG_OP_MODE 0x01
44#define LP5523_REG_RATIOMETRIC_MSB 0x02
45#define LP5523_REG_RATIOMETRIC_LSB 0x03
46#define LP5523_REG_ENABLE_LEDS_MSB 0x04
47#define LP5523_REG_ENABLE_LEDS_LSB 0x05
48#define LP5523_REG_LED_CNTRL_BASE 0x06
49#define LP5523_REG_LED_PWM_BASE 0x16
50#define LP5523_REG_LED_CURRENT_BASE 0x26
51#define LP5523_REG_CONFIG 0x36
52#define LP5523_REG_CHANNEL1_PC 0x37
53#define LP5523_REG_CHANNEL2_PC 0x38
54#define LP5523_REG_CHANNEL3_PC 0x39
55#define LP5523_REG_STATUS 0x3a
56#define LP5523_REG_GPO 0x3b
57#define LP5523_REG_VARIABLE 0x3c
58#define LP5523_REG_RESET 0x3d
59#define LP5523_REG_TEMP_CTRL 0x3e
60#define LP5523_REG_TEMP_READ 0x3f
61#define LP5523_REG_TEMP_WRITE 0x40
62#define LP5523_REG_LED_TEST_CTRL 0x41
63#define LP5523_REG_LED_TEST_ADC 0x42
64#define LP5523_REG_ENG1_VARIABLE 0x45
65#define LP5523_REG_ENG2_VARIABLE 0x46
66#define LP5523_REG_ENG3_VARIABLE 0x47
67#define LP5523_REG_MASTER_FADER1 0x48
68#define LP5523_REG_MASTER_FADER2 0x49
69#define LP5523_REG_MASTER_FADER3 0x4a
70#define LP5523_REG_CH1_PROG_START 0x4c
71#define LP5523_REG_CH2_PROG_START 0x4d
72#define LP5523_REG_CH3_PROG_START 0x4e
73#define LP5523_REG_PROG_PAGE_SEL 0x4f
74#define LP5523_REG_PROG_MEM 0x50
75
76#define LP5523_CMD_LOAD 0x15 /* 00010101 */
77#define LP5523_CMD_RUN 0x2a /* 00101010 */
78#define LP5523_CMD_DISABLED 0x00 /* 00000000 */
79
80#define LP5523_ENABLE 0x40
81#define LP5523_AUTO_INC 0x40
82#define LP5523_PWR_SAVE 0x20
83#define LP5523_PWM_PWR_SAVE 0x04
84#define LP5523_CP_1 0x08
85#define LP5523_CP_1_5 0x10
86#define LP5523_CP_AUTO 0x18
87#define LP5523_INT_CLK 0x01
88#define LP5523_AUTO_CLK 0x02
89#define LP5523_EN_LEDTEST 0x80
90#define LP5523_LEDTEST_DONE 0x80
48068d5d 91#define LP5523_RESET 0xFF
0efba16c
SO
92
93#define LP5523_DEFAULT_CURRENT 50 /* microAmps */
94#define LP5523_PROGRAM_LENGTH 32 /* in bytes */
95#define LP5523_PROGRAM_PAGES 6
96#define LP5523_ADC_SHORTCIRC_LIM 80
97
0e202346 98#define LP5523_MAX_LEDS 9
0efba16c
SO
99#define LP5523_ENGINES 3
100
101#define LP5523_ENG_MASK_BASE 0x30 /* 00110000 */
102
103#define LP5523_ENG_STATUS_MASK 0x07 /* 00000111 */
104
105#define LP5523_IRQ_FLAGS IRQF_TRIGGER_FALLING
106
107#define LP5523_EXT_CLK_USED 0x08
108
109#define LED_ACTIVE(mux, led) (!!(mux & (0x0001 << led)))
110#define SHIFT_MASK(id) (((id) - 1) * 2)
111
db6eaf83
MWK
112/* Memory Page Selection */
113#define LP5523_PAGE_ENG1 0
114#define LP5523_PAGE_ENG2 1
115#define LP5523_PAGE_ENG3 2
116
117/* Program Memory Operations */
118#define LP5523_MODE_ENG1_M 0x30 /* Operation Mode Register */
119#define LP5523_MODE_ENG2_M 0x0C
120#define LP5523_MODE_ENG3_M 0x03
121#define LP5523_LOAD_ENG1 0x10
122#define LP5523_LOAD_ENG2 0x04
123#define LP5523_LOAD_ENG3 0x01
124
125#define LP5523_ENG1_IS_LOADING(mode) \
126 ((mode & LP5523_MODE_ENG1_M) == LP5523_LOAD_ENG1)
127#define LP5523_ENG2_IS_LOADING(mode) \
128 ((mode & LP5523_MODE_ENG2_M) == LP5523_LOAD_ENG2)
129#define LP5523_ENG3_IS_LOADING(mode) \
130 ((mode & LP5523_MODE_ENG3_M) == LP5523_LOAD_ENG3)
131
132#define LP5523_EXEC_ENG1_M 0x30 /* Enable Register */
133#define LP5523_EXEC_ENG2_M 0x0C
134#define LP5523_EXEC_ENG3_M 0x03
135#define LP5523_EXEC_M 0x3F
136#define LP5523_RUN_ENG1 0x20
137#define LP5523_RUN_ENG2 0x08
138#define LP5523_RUN_ENG3 0x02
139
27d7704e
KM
140enum lp5523_chip_id {
141 LP5523,
142 LP55231,
143};
144
0efba16c
SO
145struct lp5523_led {
146 int id;
147 u8 chan_nr;
148 u8 led_current;
149 u8 max_current;
150 struct led_classdev cdev;
151 struct work_struct brightness_work;
152 u8 brightness;
153};
154
155struct lp5523_chip {
156 struct mutex lock; /* Serialize control */
157 struct i2c_client *client;
0e202346 158 struct lp5523_led leds[LP5523_MAX_LEDS];
0efba16c
SO
159 struct lp5523_platform_data *pdata;
160 u8 num_channels;
161 u8 num_leds;
162};
163
db6eaf83
MWK
164static inline void lp5523_wait_opmode_done(void)
165{
166 usleep_range(1000, 2000);
167}
168
a96bfa13
MWK
169static void lp5523_set_led_current(struct lp55xx_led *led, u8 led_current)
170{
171 led->led_current = led_current;
172 lp55xx_write(led->chip, LP5523_REG_LED_CURRENT_BASE + led->chan_nr,
173 led_current);
174}
175
0efba16c
SO
176static int lp5523_write(struct i2c_client *client, u8 reg, u8 value)
177{
178 return i2c_smbus_write_byte_data(client, reg, value);
179}
180
181static int lp5523_read(struct i2c_client *client, u8 reg, u8 *buf)
182{
183 s32 ret = i2c_smbus_read_byte_data(client, reg);
184
185 if (ret < 0)
5ebab74a 186 return ret;
0efba16c
SO
187
188 *buf = ret;
189 return 0;
190}
191
ffbdccdb 192static int lp5523_post_init_device(struct lp55xx_chip *chip)
0efba16c 193{
ffbdccdb 194 int ret;
0efba16c 195
ffbdccdb 196 ret = lp55xx_write(chip, LP5523_REG_ENABLE, LP5523_ENABLE);
632418bf
MWK
197 if (ret)
198 return ret;
0efba16c 199
2e4840ed
SO
200 /* Chip startup time is 500 us, 1 - 2 ms gives some margin */
201 usleep_range(1000, 2000);
0efba16c 202
ffbdccdb 203 ret = lp55xx_write(chip, LP5523_REG_CONFIG,
0efba16c
SO
204 LP5523_AUTO_INC | LP5523_PWR_SAVE |
205 LP5523_CP_AUTO | LP5523_AUTO_CLK |
206 LP5523_PWM_PWR_SAVE);
632418bf
MWK
207 if (ret)
208 return ret;
0efba16c
SO
209
210 /* turn on all leds */
ffbdccdb 211 ret = lp55xx_write(chip, LP5523_REG_ENABLE_LEDS_MSB, 0x01);
632418bf 212 if (ret)
1b21ec5a
JH
213 return ret;
214
ffbdccdb 215 return lp55xx_write(chip, LP5523_REG_ENABLE_LEDS_LSB, 0xff);
0efba16c
SO
216}
217
db6eaf83 218static void lp5523_load_engine(struct lp55xx_chip *chip)
0efba16c 219{
db6eaf83
MWK
220 enum lp55xx_engine_index idx = chip->engine_idx;
221 u8 mask[] = {
222 [LP55XX_ENGINE_1] = LP5523_MODE_ENG1_M,
223 [LP55XX_ENGINE_2] = LP5523_MODE_ENG2_M,
224 [LP55XX_ENGINE_3] = LP5523_MODE_ENG3_M,
225 };
226
227 u8 val[] = {
228 [LP55XX_ENGINE_1] = LP5523_LOAD_ENG1,
229 [LP55XX_ENGINE_2] = LP5523_LOAD_ENG2,
230 [LP55XX_ENGINE_3] = LP5523_LOAD_ENG3,
231 };
232
233 u8 page_sel[] = {
234 [LP55XX_ENGINE_1] = LP5523_PAGE_ENG1,
235 [LP55XX_ENGINE_2] = LP5523_PAGE_ENG2,
236 [LP55XX_ENGINE_3] = LP5523_PAGE_ENG3,
237 };
238
239 lp55xx_update_bits(chip, LP5523_REG_OP_MODE, mask[idx], val[idx]);
240
241 lp5523_wait_opmode_done();
242
243 lp55xx_write(chip, LP5523_REG_PROG_PAGE_SEL, page_sel[idx]);
0efba16c
SO
244}
245
db6eaf83 246static void lp5523_stop_engine(struct lp55xx_chip *chip)
0efba16c 247{
db6eaf83
MWK
248 lp55xx_write(chip, LP5523_REG_OP_MODE, 0);
249 lp5523_wait_opmode_done();
250}
0efba16c 251
db6eaf83
MWK
252static void lp5523_turn_off_channels(struct lp55xx_chip *chip)
253{
254 int i;
0efba16c 255
db6eaf83
MWK
256 for (i = 0; i < LP5523_MAX_LEDS; i++)
257 lp55xx_write(chip, LP5523_REG_LED_PWM_BASE + i, 0);
0efba16c
SO
258}
259
db6eaf83 260static void lp5523_run_engine(struct lp55xx_chip *chip, bool start)
0efba16c 261{
db6eaf83
MWK
262 int ret;
263 u8 mode;
264 u8 exec;
0efba16c 265
db6eaf83
MWK
266 /* stop engine */
267 if (!start) {
268 lp5523_stop_engine(chip);
269 lp5523_turn_off_channels(chip);
270 return;
271 }
0efba16c 272
db6eaf83
MWK
273 /*
274 * To run the engine,
275 * operation mode and enable register should updated at the same time
276 */
0efba16c 277
db6eaf83
MWK
278 ret = lp55xx_read(chip, LP5523_REG_OP_MODE, &mode);
279 if (ret)
280 return;
0efba16c 281
db6eaf83
MWK
282 ret = lp55xx_read(chip, LP5523_REG_ENABLE, &exec);
283 if (ret)
284 return;
0efba16c 285
db6eaf83
MWK
286 /* change operation mode to RUN only when each engine is loading */
287 if (LP5523_ENG1_IS_LOADING(mode)) {
288 mode = (mode & ~LP5523_MODE_ENG1_M) | LP5523_RUN_ENG1;
289 exec = (exec & ~LP5523_EXEC_ENG1_M) | LP5523_RUN_ENG1;
290 }
0efba16c 291
db6eaf83
MWK
292 if (LP5523_ENG2_IS_LOADING(mode)) {
293 mode = (mode & ~LP5523_MODE_ENG2_M) | LP5523_RUN_ENG2;
294 exec = (exec & ~LP5523_EXEC_ENG2_M) | LP5523_RUN_ENG2;
295 }
0efba16c 296
db6eaf83
MWK
297 if (LP5523_ENG3_IS_LOADING(mode)) {
298 mode = (mode & ~LP5523_MODE_ENG3_M) | LP5523_RUN_ENG3;
299 exec = (exec & ~LP5523_EXEC_ENG3_M) | LP5523_RUN_ENG3;
300 }
301
302 lp55xx_write(chip, LP5523_REG_OP_MODE, mode);
303 lp5523_wait_opmode_done();
304
305 lp55xx_update_bits(chip, LP5523_REG_ENABLE, LP5523_EXEC_M, exec);
0efba16c
SO
306}
307
db6eaf83
MWK
308static int lp5523_update_program_memory(struct lp55xx_chip *chip,
309 const u8 *data, size_t size)
0efba16c 310{
db6eaf83
MWK
311 u8 pattern[LP5523_PROGRAM_LENGTH] = {0};
312 unsigned cmd;
313 char c[3];
314 int update_size;
315 int nrchars;
316 int offset = 0;
317 int ret;
0efba16c 318 int i;
0efba16c 319
db6eaf83
MWK
320 /* clear program memory before updating */
321 for (i = 0; i < LP5523_PROGRAM_LENGTH; i++)
322 lp55xx_write(chip, LP5523_REG_PROG_MEM + i, 0);
0efba16c 323
db6eaf83
MWK
324 i = 0;
325 while ((offset < size - 1) && (i < LP5523_PROGRAM_LENGTH)) {
326 /* separate sscanfs because length is working only for %s */
327 ret = sscanf(data + offset, "%2s%n ", c, &nrchars);
328 if (ret != 1)
329 goto err;
0efba16c 330
db6eaf83
MWK
331 ret = sscanf(c, "%2x", &cmd);
332 if (ret != 1)
333 goto err;
0efba16c 334
db6eaf83
MWK
335 pattern[i] = (u8)cmd;
336 offset += nrchars;
337 i++;
338 }
0efba16c 339
db6eaf83
MWK
340 /* Each instruction is 16bit long. Check that length is even */
341 if (i % 2)
342 goto err;
0efba16c 343
db6eaf83
MWK
344 update_size = i;
345 for (i = 0; i < update_size; i++)
346 lp55xx_write(chip, LP5523_REG_PROG_MEM + i, pattern[i]);
0efba16c 347
db6eaf83 348 return 0;
0efba16c 349
db6eaf83
MWK
350err:
351 dev_err(&chip->cl->dev, "wrong pattern format\n");
352 return -EINVAL;
0efba16c 353}
0efba16c 354
db6eaf83 355static void lp5523_firmware_loaded(struct lp55xx_chip *chip)
0efba16c 356{
db6eaf83 357 const struct firmware *fw = chip->fw;
fbac0812 358
db6eaf83
MWK
359 if (fw->size > LP5523_PROGRAM_LENGTH) {
360 dev_err(&chip->cl->dev, "firmware data size overflow: %zu\n",
361 fw->size);
362 return;
363 }
0efba16c 364
db6eaf83
MWK
365 /*
366 * Program momery sequence
367 * 1) set engine mode to "LOAD"
368 * 2) write firmware data into program memory
369 */
0efba16c 370
db6eaf83
MWK
371 lp5523_load_engine(chip);
372 lp5523_update_program_memory(chip, fw->data, fw->size);
0efba16c 373}
0efba16c
SO
374
375static ssize_t lp5523_selftest(struct device *dev,
376 struct device_attribute *attr,
377 char *buf)
378{
379 struct i2c_client *client = to_i2c_client(dev);
380 struct lp5523_chip *chip = i2c_get_clientdata(client);
381 int i, ret, pos = 0;
382 int led = 0;
383 u8 status, adc, vdd;
384
385 mutex_lock(&chip->lock);
386
387 ret = lp5523_read(chip->client, LP5523_REG_STATUS, &status);
388 if (ret < 0)
389 goto fail;
390
391 /* Check that ext clock is really in use if requested */
392 if ((chip->pdata) && (chip->pdata->clock_mode == LP5523_CLOCK_EXT))
393 if ((status & LP5523_EXT_CLK_USED) == 0)
394 goto fail;
395
396 /* Measure VDD (i.e. VBAT) first (channel 16 corresponds to VDD) */
397 lp5523_write(chip->client, LP5523_REG_LED_TEST_CTRL,
398 LP5523_EN_LEDTEST | 16);
2e4840ed 399 usleep_range(3000, 6000); /* ADC conversion time is typically 2.7 ms */
0efba16c 400 ret = lp5523_read(chip->client, LP5523_REG_STATUS, &status);
1b21ec5a
JH
401 if (ret < 0)
402 goto fail;
403
0efba16c 404 if (!(status & LP5523_LEDTEST_DONE))
2e4840ed 405 usleep_range(3000, 6000); /* Was not ready. Wait little bit */
0efba16c 406
1b21ec5a
JH
407 ret = lp5523_read(chip->client, LP5523_REG_LED_TEST_ADC, &vdd);
408 if (ret < 0)
409 goto fail;
410
0efba16c
SO
411 vdd--; /* There may be some fluctuation in measurement */
412
0e202346 413 for (i = 0; i < LP5523_MAX_LEDS; i++) {
0efba16c
SO
414 /* Skip non-existing channels */
415 if (chip->pdata->led_config[i].led_current == 0)
416 continue;
417
418 /* Set default current */
419 lp5523_write(chip->client,
420 LP5523_REG_LED_CURRENT_BASE + i,
421 chip->pdata->led_config[i].led_current);
422
423 lp5523_write(chip->client, LP5523_REG_LED_PWM_BASE + i, 0xff);
2e4840ed
SO
424 /* let current stabilize 2 - 4ms before measurements start */
425 usleep_range(2000, 4000);
0efba16c
SO
426 lp5523_write(chip->client,
427 LP5523_REG_LED_TEST_CTRL,
428 LP5523_EN_LEDTEST | i);
2e4840ed
SO
429 /* ADC conversion time is 2.7 ms typically */
430 usleep_range(3000, 6000);
0efba16c 431 ret = lp5523_read(chip->client, LP5523_REG_STATUS, &status);
1b21ec5a
JH
432 if (ret < 0)
433 goto fail;
434
0efba16c 435 if (!(status & LP5523_LEDTEST_DONE))
2e4840ed 436 usleep_range(3000, 6000);/* Was not ready. Wait. */
1b21ec5a
JH
437 ret = lp5523_read(chip->client, LP5523_REG_LED_TEST_ADC, &adc);
438 if (ret < 0)
439 goto fail;
0efba16c
SO
440
441 if (adc >= vdd || adc < LP5523_ADC_SHORTCIRC_LIM)
442 pos += sprintf(buf + pos, "LED %d FAIL\n", i);
443
444 lp5523_write(chip->client, LP5523_REG_LED_PWM_BASE + i, 0x00);
445
446 /* Restore current */
447 lp5523_write(chip->client,
448 LP5523_REG_LED_CURRENT_BASE + i,
449 chip->leds[led].led_current);
450 led++;
451 }
452 if (pos == 0)
453 pos = sprintf(buf, "OK\n");
454 goto release_lock;
455fail:
456 pos = sprintf(buf, "FAIL\n");
457
458release_lock:
459 mutex_unlock(&chip->lock);
460
461 return pos;
462}
463
0efba16c
SO
464static void lp5523_led_brightness_work(struct work_struct *work)
465{
a6e4679a 466 struct lp55xx_led *led = container_of(work, struct lp55xx_led,
0efba16c 467 brightness_work);
a6e4679a 468 struct lp55xx_chip *chip = led->chip;
0efba16c
SO
469
470 mutex_lock(&chip->lock);
a6e4679a 471 lp55xx_write(chip, LP5523_REG_LED_PWM_BASE + led->chan_nr,
0efba16c 472 led->brightness);
0efba16c
SO
473 mutex_unlock(&chip->lock);
474}
475
0efba16c
SO
476static DEVICE_ATTR(selftest, S_IRUGO, lp5523_selftest, NULL);
477
478static struct attribute *lp5523_attributes[] = {
0efba16c 479 &dev_attr_selftest.attr,
f1625842 480 NULL,
0efba16c
SO
481};
482
483static const struct attribute_group lp5523_group = {
484 .attrs = lp5523_attributes,
485};
486
0efba16c
SO
487static void lp5523_unregister_sysfs(struct i2c_client *client)
488{
0efba16c 489 struct device *dev = &client->dev;
0efba16c
SO
490
491 sysfs_remove_group(&dev->kobj, &lp5523_group);
0efba16c
SO
492}
493
48068d5d
MWK
494/* Chip specific configurations */
495static struct lp55xx_device_config lp5523_cfg = {
496 .reset = {
497 .addr = LP5523_REG_RESET,
498 .val = LP5523_RESET,
499 },
e3a700d8
MWK
500 .enable = {
501 .addr = LP5523_REG_ENABLE,
502 .val = LP5523_ENABLE,
503 },
0e202346 504 .max_channel = LP5523_MAX_LEDS,
ffbdccdb 505 .post_init_device = lp5523_post_init_device,
a6e4679a 506 .brightness_work_fn = lp5523_led_brightness_work,
a96bfa13 507 .set_led_current = lp5523_set_led_current,
db6eaf83
MWK
508 .firmware_cb = lp5523_firmware_loaded,
509 .run_engine = lp5523_run_engine,
e73c0ce6 510 .dev_attr_group = &lp5523_group,
48068d5d
MWK
511};
512
98ea1ea2 513static int lp5523_probe(struct i2c_client *client,
0efba16c
SO
514 const struct i2c_device_id *id)
515{
22ebeb48 516 int ret;
6a0c9a47
MWK
517 struct lp55xx_chip *chip;
518 struct lp55xx_led *led;
519 struct lp55xx_platform_data *pdata = client->dev.platform_data;
0efba16c 520
6a0c9a47 521 if (!pdata) {
0efba16c 522 dev_err(&client->dev, "no platform data\n");
94ca4bcc 523 return -EINVAL;
0efba16c
SO
524 }
525
6a0c9a47
MWK
526 chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
527 if (!chip)
528 return -ENOMEM;
529
530 led = devm_kzalloc(&client->dev,
531 sizeof(*led) * pdata->num_channels, GFP_KERNEL);
532 if (!led)
533 return -ENOMEM;
534
535 chip->cl = client;
536 chip->pdata = pdata;
48068d5d 537 chip->cfg = &lp5523_cfg;
6a0c9a47
MWK
538
539 mutex_init(&chip->lock);
0efba16c 540
6a0c9a47 541 i2c_set_clientdata(client, led);
0efba16c 542
22ebeb48 543 ret = lp55xx_init_device(chip);
0efba16c 544 if (ret)
f6c64c6f 545 goto err_init;
0efba16c 546
56a1e9ad 547 dev_info(&client->dev, "%s Programmable led chip found\n", id->name);
0efba16c 548
9e9b3db1 549 ret = lp55xx_register_leds(led, chip);
f6524808 550 if (ret)
9e9b3db1 551 goto err_register_leds;
0efba16c 552
e73c0ce6 553 ret = lp55xx_register_sysfs(chip);
0efba16c
SO
554 if (ret) {
555 dev_err(&client->dev, "registering sysfs failed\n");
e73c0ce6 556 goto err_register_sysfs;
0efba16c 557 }
e73c0ce6
MWK
558
559 return 0;
560
561err_register_sysfs:
c3a68ebf 562 lp55xx_unregister_leds(led, chip);
9e9b3db1 563err_register_leds:
6ce61762 564 lp55xx_deinit_device(chip);
f6c64c6f 565err_init:
0efba16c
SO
566 return ret;
567}
568
569static int lp5523_remove(struct i2c_client *client)
570{
6ce61762
MWK
571 struct lp55xx_led *led = i2c_get_clientdata(client);
572 struct lp55xx_chip *chip = led->chip;
0efba16c 573
23301b7f
KM
574 /* Disable engine mode */
575 lp5523_write(client, LP5523_REG_OP_MODE, LP5523_CMD_DISABLED);
576
0efba16c
SO
577 lp5523_unregister_sysfs(client);
578
c3a68ebf 579 lp55xx_unregister_leds(led, chip);
6ce61762 580 lp55xx_deinit_device(chip);
0efba16c 581
0efba16c
SO
582 return 0;
583}
584
585static const struct i2c_device_id lp5523_id[] = {
27d7704e
KM
586 { "lp5523", LP5523 },
587 { "lp55231", LP55231 },
0efba16c
SO
588 { }
589};
590
591MODULE_DEVICE_TABLE(i2c, lp5523_id);
592
593static struct i2c_driver lp5523_driver = {
594 .driver = {
27d7704e 595 .name = "lp5523x",
0efba16c
SO
596 },
597 .probe = lp5523_probe,
598 .remove = lp5523_remove,
599 .id_table = lp5523_id,
600};
601
09a0d183 602module_i2c_driver(lp5523_driver);
0efba16c
SO
603
604MODULE_AUTHOR("Mathias Nyman <mathias.nyman@nokia.com>");
605MODULE_DESCRIPTION("LP5523 LED engine");
606MODULE_LICENSE("GPL");