]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
leds: Add SN3218 and SN3216 support to the IS31FL32XX driver
authorDavid Rivshin <drivshin@allworx.com>
Tue, 8 Mar 2016 00:57:16 +0000 (19:57 -0500)
committerJacek Anaszewski <j.anaszewski@samsung.com>
Mon, 14 Mar 2016 08:22:22 +0000 (09:22 +0100)
Si-En Technology was acquired by ISSI in 2011, and it appears that
the IS31FL3218/IS31FL3216 are just rebranded SN3218/SN3216 devices.

Add the "si-en,sn3218" and "si-en,sn3216" compatible strings into the
IS31FL32XX driver as aliases for the issi equivalents, and update
binding documentation.

Datasheets:
    IS31FL3218: http://www.issi.com/WW/pdf/31FL3218.pdf
    SN3218:     http://www.si-en.com/uploadpdf/s2011517171720.pdf

    IS31FL3216: http://www.issi.com/WW/pdf/31FL3216.pdf
    SN3216:     http://www.si-en.com/uploadpdf/SN3216201152410148.pdf

Signed-off-by: David Rivshin <drivshin@allworx.com>
Acked-by: Rob Herring <robh@kernel.org>
Tested-by: Stefan Wahren <stefan.wahren@i2se.com>
Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com>
Documentation/devicetree/bindings/leds/leds-is31fl32xx.txt
drivers/leds/Kconfig
drivers/leds/leds-is31fl32xx.c

index e72ed66ec78119489f15502fe12c674f96ed8718..926c2117942c4dc200fcd68156864f544b11a326 100644 (file)
@@ -1,6 +1,6 @@
-Binding for ISSI IS31FL32xx LED Drivers
+Binding for ISSI IS31FL32xx and Si-En SN32xx LED Drivers
 
-The IS31FL32xx family of LED drivers are I2C devices with multiple
+The IS31FL32xx/SN32xx family of LED drivers are I2C devices with multiple
 constant-current channels, each with independent 256-level PWM control.
 Each LED is represented as a sub-node of the device.
 
@@ -10,6 +10,8 @@ Required properties:
        issi,is31fl3235
        issi,is31fl3218
        issi,is31fl3216
+       si-en,sn3218
+       si-en,sn3216
 - reg: I2C slave address
 - address-cells : must be 1
 - size-cells : must be 0
@@ -45,5 +47,6 @@ is31fl3236: led-controller@3c {
        };
 };
 
-For more product information please see the link below:
+For more product information please see the links below:
 http://www.issi.com/US/product-analog-fxled-driver.shtml
+http://www.si-en.com/product.asp?parentid=890
index 08a5743fe7a5a1ee886db1c7bbee83682c4b1212..1f64151689981335edec187c20bb71bbc5f1feb6 100644 (file)
@@ -572,9 +572,9 @@ config LEDS_IS31FL32XX
        tristate "LED support for ISSI IS31FL32XX I2C LED controller family"
        depends on LEDS_CLASS && I2C && OF
        help
-         Say Y here to include support for ISSI IS31FL32XX LED controllers.
-         They are I2C devices with multiple constant-current channels, each
-         with independent 256-level PWM control.
+         Say Y here to include support for ISSI IS31FL32XX and Si-En SN32xx
+         LED controllers. They are I2C devices with multiple constant-current
+         channels, each with independent 256-level PWM control.
 
 comment "LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)"
 
index 9a678569488611bdb3e3f1ffcd5817131b51aefd..c901d132d80c5eba121231b2355ab13acb6307d1 100644 (file)
@@ -8,7 +8,9 @@
  * it under the terms of the GNU General Public License version 2 as
  * published by the Free Software Foundation.
  *
- * Datasheets: http://www.issi.com/US/product-analog-fxled-driver.shtml
+ * Datasheets:
+ *   http://www.issi.com/US/product-analog-fxled-driver.shtml
+ *   http://www.si-en.com/product.asp?parentid=890
  */
 
 #include <linux/device.h>
@@ -424,7 +426,9 @@ static const struct of_device_id of_is31fl31xx_match[] = {
        { .compatible = "issi,is31fl3236", .data = &is31fl3236_cdef, },
        { .compatible = "issi,is31fl3235", .data = &is31fl3235_cdef, },
        { .compatible = "issi,is31fl3218", .data = &is31fl3218_cdef, },
+       { .compatible = "si-en,sn3218",    .data = &is31fl3218_cdef, },
        { .compatible = "issi,is31fl3216", .data = &is31fl3216_cdef, },
+       { .compatible = "si-en,sn3216",    .data = &is31fl3216_cdef, },
        {},
 };