]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit - drivers/leds/Kconfig
leds-lp55xx: add new common driver for lp5521/5523
authorMilo(Woogyom) Kim <milo.kim@ti.com>
Tue, 5 Feb 2013 09:01:23 +0000 (18:01 +0900)
committerBryan Wu <cooloney@gmail.com>
Wed, 6 Feb 2013 23:59:26 +0000 (15:59 -0800)
commitc93d08fa75020835741c7b1d0523ff854e8acde1
tree8cbc5dc9100ea73a9204bc84c6fdb90fc578e671
parentf6c64c6fc8d793b414446f1a655a37b7bfce68e3
leds-lp55xx: add new common driver for lp5521/5523

 This patch supports basic common driver code for LP5521, LP5523/55231 devices.

 ( Driver Structure Data )

 lp55xx_led and lp55xx_chip
 In lp55xx common driver, two different data structure is used.
 o lp55xx_led
   control multi output LED channels such as led current, channel index.
 o lp55xx_chip
   general chip control such like the I2C and platform data.

 For example, LP5521 has maximum 3 LED channels.
 LP5523/55231 has 9 output channels.

 lp55xx_chip for LP5521 ... lp55xx_led #1
                            lp55xx_led #2
                            lp55xx_led #3

 lp55xx_chip for LP5523 ... lp55xx_led #1
                            lp55xx_led #2
                            .
                            .
                            lp55xx_led #9

 ( Platform Data )

 LP5521 and LP5523/55231 have own specific platform data.
 However, this data can be handled with just one platform data structure.
 The lp55xx platform data is declared in the header.
 This structure is derived from leds-lp5521.h and leds-lp5523.h

Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
drivers/leds/Kconfig
drivers/leds/Makefile
drivers/leds/leds-lp55xx-common.c [new file with mode: 0644]
drivers/leds/leds-lp55xx-common.h [new file with mode: 0644]
include/linux/platform_data/leds-lp55xx.h [new file with mode: 0644]