linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v10 0/4] leds: add new LED driver for TI LP5812
@ 2025-06-18 18:32 Nam Tran
  2025-06-18 18:32 ` [PATCH v10 1/4] dt-bindings: leds: add TI/National Semiconductor LP5812 LED Driver Nam Tran
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Nam Tran @ 2025-06-18 18:32 UTC (permalink / raw)
  To: lee
  Cc: pavel, rdunlap, christophe.jaillet, krzk+dt, robh, conor+dt,
	corbet, linux-leds, linux-kernel, devicetree, linux-doc, Nam Tran

This patch series adds support for the TI/National Semiconductor LP5812
4x3 matrix RGB LED driver. The driver supports features such as autonomous
animation and time-cross-multiplexing (TCM) for dynamic LED effects.

Signed-off-by: Nam Tran <trannamatk@gmail.com>
---
Changes in v10:
- Address feedback on v9 regarding missing Reviewed-by tag
- Added explanation: binding structure changed significantly to integrate
  with the standard leds-class-multicolor.yaml schema and support multi-led@
  nodes with nested led@ subnodes. This change introduced a new patternProperties
  hierarchy and removed the previous flat led@ layout used in the earlier versions.
  So the Reviewed-by tag was dropped out of caution.
- Address binding document feedback
  - Use consistent quotes
  - Replace 'max-cur' with the standard 'led-max-microamp'
  - Remove 'led-cur' property
  - Fix mixed indentation
- Updated core driver to align with the updated binding schema.
- Address core driver feedback
  - Use for_each_available_child_of_node_scoped() to simplify the code
  - Add a return checks for lp5812_write() and lp5812_read()
  - Remove unneeded trailing commas
  - Fix unsafe usage of stack-allocated strings
- Link to v9: https://lore.kernel.org/lkml/20250617154020.7785-1-trannamatk@gmail.com/

Changes in v9:
- Move driver back to drivers/leds/rgb/
- Integrate with LED multicolor framework
- Refactor and simplify custom sysfs handling
- Extend Device Tree binding to support multi-led@ nodes using leds-class-multicolor.yaml
- Update documentation to reflect the updated sysfs.
- Link to v8: https://lore.kernel.org/lkml/20250427082447.138359-1-trannamatk@gmail.com/

Changes in v8:
- Move driver to drivers/auxdisplay/ instead of drivers/leds/.
- Rename files from leds-lp5812.c/.h to lp5812.c/.h.
- Move ti,lp5812.yaml binding to auxdisplay/ directory,
  and update the title and $id to match new path.
- No functional changes to the binding itself (keep Reviewed-by).
- Update commit messages and patch titles to reflect the move.
- Link to v7: https://lore.kernel.org/linux-leds/20250422190121.46839-1-trannamatk@gmail.com/

Changes in v7:
- Mark `chip_leds_map` as const.
- Use consistent `ret` initialization.
- Simplify the function `set_mix_sel_led()`.
- Refactor `dev_config_show()` and `led_auto_animation_show()` to avoid temp buffer, malloc/free.
- Simplify the code and ensure consistent use of mutex lock/unlock in show/store functions.
- Remove `total_leds` and `total_aeu`.
- Link to v6: https://lore.kernel.org/linux-leds/20250419184333.56617-1-trannamatk@gmail.com/

Changes in v6:
- Add `vcc-supply` property to describe the LP5812 power supply.
- Remove `chan-name` property and entire LED subnodes, as they are not needed.
- Update LP5812 LED driver node to Raspberry Pi 4 B Device Tree, based on updated binding.
- Link to v5: https://lore.kernel.org/linux-leds/20250414145742.35713-1-trannamatk@gmail.com/

Changes in v5:
- Rebase on v6.15-rc2
- Removed unused functions (lp5812_dump_regs, lp5812_update_bit).
- Address Krzysztof's review comments
- Link to v4: https://lore.kernel.org/linux-leds/20250405183246.198568-1-trannamatk@gmail.com/
---

Nam Tran (4):
  dt-bindings: leds: add TI/National Semiconductor LP5812 LED Driver
  leds: add TI/National Semiconductor LP5812 LED Driver
  docs: ABI: Document LP5812 LED sysfs interfaces
  docs: leds: Document TI LP5812 LED driver

 .../ABI/testing/sysfs-bus-i2c-devices-lp5812  |   40 +
 .../ABI/testing/sysfs-class-led-lp5812        |  120 +
 .../devicetree/bindings/leds/ti,lp5812.yaml   |  229 ++
 Documentation/leds/index.rst                  |    1 +
 Documentation/leds/leds-lp5812.rst            |   84 +
 MAINTAINERS                                   |   13 +
 drivers/leds/rgb/Kconfig                      |   13 +
 drivers/leds/rgb/Makefile                     |    1 +
 drivers/leds/rgb/leds-lp5812.c                | 1943 +++++++++++++++++
 drivers/leds/rgb/leds-lp5812.h                |  227 ++
 10 files changed, 2671 insertions(+)
 create mode 100644 Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
 create mode 100644 Documentation/ABI/testing/sysfs-class-led-lp5812
 create mode 100644 Documentation/devicetree/bindings/leds/ti,lp5812.yaml
 create mode 100644 Documentation/leds/leds-lp5812.rst
 create mode 100644 drivers/leds/rgb/leds-lp5812.c
 create mode 100644 drivers/leds/rgb/leds-lp5812.h


base-commit: f09079bd04a924c72d555cd97942d5f8d7eca98c
-- 
2.25.1


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH v10 1/4] dt-bindings: leds: add TI/National Semiconductor LP5812 LED Driver
  2025-06-18 18:32 [PATCH v10 0/4] leds: add new LED driver for TI LP5812 Nam Tran
@ 2025-06-18 18:32 ` Nam Tran
  2025-06-23  6:30   ` Krzysztof Kozlowski
  2025-06-18 18:32 ` [PATCH v10 2/4] " Nam Tran
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 9+ messages in thread
From: Nam Tran @ 2025-06-18 18:32 UTC (permalink / raw)
  To: lee
  Cc: pavel, rdunlap, christophe.jaillet, krzk+dt, robh, conor+dt,
	corbet, linux-leds, linux-kernel, devicetree, linux-doc, Nam Tran

The LP5812 is a 4x3 RGB LED driver with an autonomous animation
engine and time-cross-multiplexing (TCM) support for up to 12 LEDs
or 4 RGB LEDs. It supports both analog (256 levels) and PWM (8-bit)
dimming, including exponential PWM for smooth brightness control.

Signed-off-by: Nam Tran <trannamatk@gmail.com>
---
 .../devicetree/bindings/leds/ti,lp5812.yaml   | 229 ++++++++++++++++++
 MAINTAINERS                                   |   6 +
 2 files changed, 235 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/leds/ti,lp5812.yaml

diff --git a/Documentation/devicetree/bindings/leds/ti,lp5812.yaml b/Documentation/devicetree/bindings/leds/ti,lp5812.yaml
new file mode 100644
index 000000000000..848cd4f51901
--- /dev/null
+++ b/Documentation/devicetree/bindings/leds/ti,lp5812.yaml
@@ -0,0 +1,229 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/leds/ti,lp5812.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: TI LP5812 4x3 Matrix RGB LED Driver with Autonomous Control
+
+maintainers:
+  - Nam Tran <trannamatk@gmail.com>
+
+description: |
+  The LP5812 is a 4x3 matrix RGB LED driver with I2C interface
+  and autonomous animation engine control.
+  For more product information please see the link below:
+  https://www.ti.com/product/LP5812#tech-docs
+
+properties:
+  compatible:
+    const: ti,lp5812
+
+  reg:
+    maxItems: 1
+
+  vcc-supply:
+    description: Regulator providing power to the 'VCC' pin.
+
+  "#address-cells":
+    const: 1
+
+  "#size-cells":
+    const: 0
+
+patternProperties:
+  "^led@[0-3]$":
+    type: object
+    $ref: common.yaml#
+    unevaluatedProperties: false
+
+    properties:
+      reg:
+        minimum: 0
+        maximum: 3
+
+    required:
+      - reg
+
+  "^multi-led@[4-7]$":
+    type: object
+    $ref: leds-class-multicolor.yaml#
+    unevaluatedProperties: false
+
+    properties:
+      reg:
+        minimum: 4
+        maximum: 7
+
+      "#address-cells":
+        const: 1
+
+      "#size-cells":
+        const: 0
+
+    patternProperties:
+      "^led@[4-9a-f]$":
+        type: object
+        $ref: common.yaml#
+        unevaluatedProperties: false
+
+        properties:
+          reg:
+            minimum: 4
+            maximum: 15
+
+        required:
+          - reg
+
+required:
+  - compatible
+  - reg
+
+additionalProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/leds/common.h>
+
+    i2c {
+        #address-cells = <1>;
+        #size-cells = <0>;
+
+        led-controller@1b {
+            #address-cells = <1>;
+            #size-cells = <0>;
+            compatible = "ti,lp5812";
+            reg = <0x1b>;
+            vcc-supply = <&vdd_3v3_reg>;
+
+            led@0 {
+                reg = <0x0>;
+                label = "LED0";
+                led-max-microamp = <25500>;
+            };
+
+            led@1 {
+                reg = <0x1>;
+                label = "LED1";
+                led-max-microamp = <25500>;
+            };
+
+            led@2 {
+                reg = <0x2>;
+                label = "LED2";
+                led-max-microamp = <25500>;
+            };
+
+            led@3 {
+                reg = <0x3>;
+                label = "LED3";
+                led-max-microamp = <25500>;
+            };
+
+            multi-led@4 {
+                #address-cells = <1>;
+                #size-cells = <0>;
+                reg = <0x4>;
+                color = <LED_COLOR_ID_RGB>;
+                label = "LED_A";
+
+                led@4 {
+                    reg = <0x4>;
+                    color = <LED_COLOR_ID_GREEN>;
+                    led-max-microamp = <25500>;
+                };
+
+                led@5 {
+                    reg = <0x5>;
+                    color = <LED_COLOR_ID_RED>;
+                    led-max-microamp = <25500>;
+                };
+
+                led@6 {
+                    reg = <0x6>;
+                    color = <LED_COLOR_ID_BLUE>;
+                    led-max-microamp = <25500>;
+                };
+            };
+
+            multi-led@5 {
+                #address-cells = <1>;
+                #size-cells = <0>;
+                reg = <0x5>;
+                color = <LED_COLOR_ID_RGB>;
+                label = "LED_B";
+
+                led@7 {
+                    reg = <0x7>;
+                    color = <LED_COLOR_ID_GREEN>;
+                    led-max-microamp = <25500>;
+                };
+
+                led@8 {
+                    reg = <0x8>;
+                    color = <LED_COLOR_ID_RED>;
+                    led-max-microamp = <25500>;
+                };
+
+                led@9 {
+                    reg = <0x9>;
+                    color = <LED_COLOR_ID_BLUE>;
+                    led-max-microamp = <25500>;
+                };
+            };
+
+            multi-led@6 {
+                #address-cells = <1>;
+                #size-cells = <0>;
+                reg = <0x6>;
+                color = <LED_COLOR_ID_RGB>;
+                label = "LED_C";
+
+                led@a {
+                    reg = <0xa>;
+                    color = <LED_COLOR_ID_GREEN>;
+                    led-max-microamp = <25500>;
+                };
+
+                led@b {
+                    reg = <0xb>;
+                    color = <LED_COLOR_ID_RED>;
+                    led-max-microamp = <25500>;
+                };
+
+                led@c {
+                    reg = <0xc>;
+                    color = <LED_COLOR_ID_BLUE>;
+                    led-max-microamp = <25500>;
+                };
+            };
+
+            multi-led@7 {
+                #address-cells = <1>;
+                #size-cells = <0>;
+                reg = <0x7>;
+                color = <LED_COLOR_ID_RGB>;
+                label = "LED_D";
+
+                led@d {
+                    reg = <0xd>;
+                    color = <LED_COLOR_ID_GREEN>;
+                    led-max-microamp = <25500>;
+                };
+
+                led@e {
+                    reg = <0xe>;
+                    color = <LED_COLOR_ID_RED>;
+                    led-max-microamp = <25500>;
+                };
+
+                led@f {
+                    reg = <0xf>;
+                    color = <LED_COLOR_ID_BLUE>;
+                    led-max-microamp = <25500>;
+                };
+            };
+        };
+    };
+
+...
diff --git a/MAINTAINERS b/MAINTAINERS
index a92290fffa16..83a779dc9bcd 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -24561,6 +24561,12 @@ S:	Supported
 F:	Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
 F:	drivers/iio/dac/ti-dac7612.c
 
+TEXAS INSTRUMENTS' LP5812 RGB LED DRIVER
+M:	Nam Tran <trannamatk@gmail.com>
+L:	linux-leds@vger.kernel.org
+S:	Maintained
+F:	Documentation/devicetree/bindings/leds/ti,lp5812.yaml
+
 TEXAS INSTRUMENTS' LB8864 LED BACKLIGHT DRIVER
 M:	Alexander Sverdlin <alexander.sverdlin@siemens.com>
 L:	linux-leds@vger.kernel.org
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v10 2/4] leds: add TI/National Semiconductor LP5812 LED Driver
  2025-06-18 18:32 [PATCH v10 0/4] leds: add new LED driver for TI LP5812 Nam Tran
  2025-06-18 18:32 ` [PATCH v10 1/4] dt-bindings: leds: add TI/National Semiconductor LP5812 LED Driver Nam Tran
@ 2025-06-18 18:32 ` Nam Tran
  2025-06-26 13:02   ` Lee Jones
  2025-06-18 18:32 ` [PATCH v10 3/4] docs: ABI: Document LP5812 LED sysfs interfaces Nam Tran
  2025-06-18 18:32 ` [PATCH v10 4/4] docs: leds: Document TI LP5812 LED driver Nam Tran
  3 siblings, 1 reply; 9+ messages in thread
From: Nam Tran @ 2025-06-18 18:32 UTC (permalink / raw)
  To: lee
  Cc: pavel, rdunlap, christophe.jaillet, krzk+dt, robh, conor+dt,
	corbet, linux-leds, linux-kernel, devicetree, linux-doc, Nam Tran

The LP5812 is a 4x3 matrix RGB LED driver with an autonomous animation
engine and time-cross-multiplexing (TCM) support for up to 12 LEDs or
4 RGB LEDs. Each LED can be configured through the related registers
to realize vivid and fancy lighting effects.

Signed-off-by: Nam Tran <trannamatk@gmail.com>
---
 MAINTAINERS                    |    4 +
 drivers/leds/rgb/Kconfig       |   13 +
 drivers/leds/rgb/Makefile      |    1 +
 drivers/leds/rgb/leds-lp5812.c | 1943 ++++++++++++++++++++++++++++++++
 drivers/leds/rgb/leds-lp5812.h |  227 ++++
 5 files changed, 2188 insertions(+)
 create mode 100644 drivers/leds/rgb/leds-lp5812.c
 create mode 100644 drivers/leds/rgb/leds-lp5812.h

diff --git a/MAINTAINERS b/MAINTAINERS
index 83a779dc9bcd..b4eb3265c800 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -24566,6 +24566,10 @@ M:	Nam Tran <trannamatk@gmail.com>
 L:	linux-leds@vger.kernel.org
 S:	Maintained
 F:	Documentation/devicetree/bindings/leds/ti,lp5812.yaml
+F:	drivers/leds/rgb/Kconfig
+F:	drivers/leds/rgb/Makefile
+F:	drivers/leds/rgb/leds-lp5812.c
+F:	drivers/leds/rgb/leds-lp5812.h
 
 TEXAS INSTRUMENTS' LB8864 LED BACKLIGHT DRIVER
 M:	Alexander Sverdlin <alexander.sverdlin@siemens.com>
diff --git a/drivers/leds/rgb/Kconfig b/drivers/leds/rgb/Kconfig
index 222d943d826a..28ef4c487367 100644
--- a/drivers/leds/rgb/Kconfig
+++ b/drivers/leds/rgb/Kconfig
@@ -26,6 +26,19 @@ config LEDS_KTD202X
 	  To compile this driver as a module, choose M here: the module
 	  will be called leds-ktd202x.
 
+config LEDS_LP5812
+	tristate "LED support for Texas Instruments LP5812"
+	depends on I2C
+	help
+	  If you say Y here you get support for TI LP5812 LED driver.
+	  The LP5812 is a 4x3 matrix RGB LED driver with autonomous
+	  animation engine control.
+
+	  To compile this driver as a module, choose M here: the
+	  module will be called leds-lp5812.
+
+	  If unsure, say N.
+
 config LEDS_NCP5623
 	tristate "LED support for NCP5623"
 	depends on I2C
diff --git a/drivers/leds/rgb/Makefile b/drivers/leds/rgb/Makefile
index a501fd27f179..be45991f63f5 100644
--- a/drivers/leds/rgb/Makefile
+++ b/drivers/leds/rgb/Makefile
@@ -2,6 +2,7 @@
 
 obj-$(CONFIG_LEDS_GROUP_MULTICOLOR)	+= leds-group-multicolor.o
 obj-$(CONFIG_LEDS_KTD202X)		+= leds-ktd202x.o
+obj-$(CONFIG_LEDS_LP5812)		+= leds-lp5812.o
 obj-$(CONFIG_LEDS_NCP5623)		+= leds-ncp5623.o
 obj-$(CONFIG_LEDS_PWM_MULTICOLOR)	+= leds-pwm-multicolor.o
 obj-$(CONFIG_LEDS_QCOM_LPG)		+= leds-qcom-lpg.o
diff --git a/drivers/leds/rgb/leds-lp5812.c b/drivers/leds/rgb/leds-lp5812.c
new file mode 100644
index 000000000000..799c5c24685c
--- /dev/null
+++ b/drivers/leds/rgb/leds-lp5812.c
@@ -0,0 +1,1943 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * LP5812 LED driver
+ *
+ * Copyright (C) 2025 Texas Instruments
+ *
+ * Author: Jared Zhou <jared-zhou@ti.com>
+ */
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/init.h>
+#include <linux/i2c.h>
+#include <linux/sysfs.h>
+#include <linux/mutex.h>
+#include <linux/types.h>
+#include <linux/leds.h>
+#include <linux/delay.h>
+#include <linux/led-class-multicolor.h>
+#include "leds-lp5812.h"
+
+#define LP5812_SC_LED "SC_LED"
+#define LP5812_MC_LED "MC_LED"
+
+#define LP5812_AUTO_PAUSE_ADDR(chan)  (LP5812_AEU_BASE + (chan) * 26)
+#define LP5812_AUTO_PLAYBACK_ADDR(chan)  (LP5812_AEU_BASE + (chan) * 260 + 1)
+#define LP5812_AEU_PWM_ADDR(chan, aeu, pwm_chan)  \
+	(LP5812_AEU_BASE + (chan) * 26 + ((aeu) - 1) * 8 + 2 + (pwm_chan) - 1)
+#define LP5812_AEU_SLOPE_TIME_ADDR(chan, aeu, slope_chan)  \
+	(LP5812_AEU_BASE + (chan) * 26 + ((aeu) - 1) * 8 + 2 + 5 + ((slope_chan) / 2))
+#define LP5812_AEU_PLAYBACK_ADDR(chan, aeu)  \
+	(LP5812_AEU_BASE + (chan) * 26 + ((aeu) - 1) * 8 + 2 + 5 + 2)
+
+#define to_lp5812_led(x) container_of(x, struct lp5812_data, kobj)
+#define to_anim_engine_unit(x) container_of(x, struct anim_engine_unit, kobj)
+
+static int lp5812_read_tsd_config_status(struct lp5812_chip *chip, u8 *reg_val);
+
+/* Begin common functions */
+static struct lp5812_led *cdev_to_lp5812_led(struct led_classdev *cdev)
+{
+	return container_of(cdev, struct lp5812_led, cdev);
+}
+
+static struct lp5812_led *mcled_cdev_to_lp5812_led(struct led_classdev_mc *mc_cdev)
+{
+	return container_of(mc_cdev, struct lp5812_led, mc_cdev);
+}
+
+static struct lp5812_led *dev_to_lp5812_led(struct device *dev)
+{
+	return cdev_to_lp5812_led(dev_get_drvdata(dev));
+}
+
+static struct lp5812_led *dev_to_lp5812_led_mc(struct device *dev)
+{
+	return mcled_cdev_to_lp5812_led(dev_get_drvdata(dev));
+}
+
+static int lp5812_write(struct lp5812_chip *chip, u16 reg, u8 val)
+{
+	int ret;
+	struct i2c_msg msg;
+	struct device *dev = &chip->i2c_cl->dev;
+	u8 extracted_bits; /* save 9th and 8th bit of reg address */
+	u8 buf[2] = {(u8)(reg & 0xFF), val};
+
+	extracted_bits = (reg >> 8) & 0x03;
+	msg.addr = (chip->i2c_cl->addr << 2) | extracted_bits;
+	msg.flags = 0;
+	msg.len = sizeof(buf);
+	msg.buf = buf;
+
+	ret = i2c_transfer(chip->i2c_cl->adapter, &msg, 1);
+	if (ret != 1) {
+		dev_err(dev, "i2c write error, ret=%d\n", ret);
+		ret = ret < 0 ? ret : -EIO;
+	} else {
+		ret = 0;
+	}
+
+	return ret;
+}
+
+static int lp5812_read(struct lp5812_chip *chip, u16 reg, u8 *val)
+{
+	int ret;
+	u8 ret_val;  /* lp5812_chip return value */
+	u8 extracted_bits; /* save 9th and 8th bit of reg address */
+	u8 converted_reg;  /* extracted 8bit from reg */
+	struct device *dev = &chip->i2c_cl->dev;
+	struct i2c_msg msgs[2];
+
+	extracted_bits = (reg >> 8) & 0x03;
+	converted_reg = (u8)(reg & 0xFF);
+
+	msgs[0].addr = (chip->i2c_cl->addr << 2) | extracted_bits;
+	msgs[0].flags = 0;
+	msgs[0].len = 1;
+	msgs[0].buf = &converted_reg;
+
+	msgs[1].addr = (chip->i2c_cl->addr << 2) | extracted_bits;
+	msgs[1].flags = I2C_M_RD;
+	msgs[1].len = 1;
+	msgs[1].buf = &ret_val;
+
+	ret = i2c_transfer(chip->i2c_cl->adapter, msgs, 2);
+	if (ret != 2) {
+		dev_err(dev, "Read reg value error, ret=%d\n", ret);
+		*val = 0;
+		ret = ret < 0 ? ret : -EIO;
+	} else {
+		*val = ret_val;
+		ret = 0;
+	}
+
+	return ret;
+}
+
+static int lp5812_parse_common_child(struct device_node *child,
+				     struct lp5812_led_config *cfg,
+				     int child_number, int color_number)
+{
+	int reg, ret;
+
+	ret = of_property_read_u32(child, "reg", &reg);
+	if (ret)
+		return ret;
+
+	cfg[child_number].led_id[color_number] = reg;
+
+	of_property_read_u8(child, "led-max-microamp",
+			    &cfg[child_number].max_current[color_number]);
+
+	return 0;
+}
+
+static int lp5812_parse_multi_led_child(struct device_node *child,
+					struct lp5812_led_config *cfg,
+					int child_number, int color_number)
+{
+	int color_id, ret;
+
+	ret = of_property_read_u32(child, "color", &color_id);
+	if (ret)
+		return ret;
+
+	cfg[child_number].color_id[color_number] = color_id;
+	return 0;
+}
+
+static int lp5812_parse_multi_led(struct device_node *np,
+				  struct lp5812_led_config *cfg,
+				  int child_number)
+{
+	int num_colors = 0, ret;
+
+	for_each_available_child_of_node_scoped(np, child) {
+		ret = lp5812_parse_common_child(child, cfg,
+						child_number, num_colors);
+		if (ret)
+			return ret;
+
+		ret = lp5812_parse_multi_led_child(child, cfg, child_number,
+						   num_colors);
+		if (ret)
+			return ret;
+
+		num_colors++;
+	}
+
+	cfg[child_number].num_colors = num_colors;
+	cfg[child_number].is_sc_led = 0;
+
+	return 0;
+}
+
+static int lp5812_parse_single_led(struct device_node *np,
+				   struct lp5812_led_config *cfg,
+				   int child_number)
+{
+	int ret;
+
+	ret = lp5812_parse_common_child(np, cfg, child_number, 0);
+	if (ret)
+		return ret;
+
+	cfg[child_number].num_colors = 1;
+	cfg[child_number].is_sc_led = 1;
+
+	return 0;
+}
+
+static int lp5812_parse_logical_led(struct device_node *np,
+				    struct lp5812_led_config *cfg,
+				    int child_number)
+{
+	int chan_nr, ret;
+
+	of_property_read_string(np, "label", &cfg[child_number].name);
+
+	ret = of_property_read_u32(np, "reg", &chan_nr);
+	if (ret)
+		return ret;
+
+	cfg[child_number].chan_nr = chan_nr;
+
+	if (of_node_name_eq(np, "multi-led"))
+		return lp5812_parse_multi_led(np, cfg, child_number);
+	else
+		return lp5812_parse_single_led(np, cfg, child_number);
+}
+
+static struct lp5812_data *lp5812_of_populate_pdata(struct device *dev,
+						    struct device_node *np,
+						    struct lp5812_chip *chip)
+{
+	struct lp5812_data *pdata;
+	struct lp5812_led_config *cfg;
+	int num_channels, i = 0, ret;
+
+	pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
+	if (!pdata)
+		return ERR_PTR(-ENOMEM);
+
+	num_channels = of_get_available_child_count(np);
+	if (num_channels == 0) {
+		dev_err(dev, "no LED channels\n");
+		return ERR_PTR(-EINVAL);
+	}
+
+	cfg = devm_kcalloc(dev, num_channels, sizeof(*cfg), GFP_KERNEL);
+	if (!cfg)
+		return ERR_PTR(-ENOMEM);
+
+	pdata->led_config = &cfg[0];
+	pdata->num_channels = num_channels;
+
+	for_each_available_child_of_node_scoped(np, child) {
+		ret = lp5812_parse_logical_led(child, cfg, i);
+		if (ret)
+			return ERR_PTR(-EINVAL);
+		i++;
+	}
+
+	of_property_read_string(np, "label", &pdata->label);
+
+	return pdata;
+}
+
+/* End common functions */
+
+/* Begin device functions */
+static int lp5812_update_regs_config(struct lp5812_chip *chip)
+{
+	int ret;
+	u8 reg_val; /* save register value */
+
+	ret = lp5812_write(chip, chip->cfg->reg_cmd_update.addr, LP5812_UPDATE_CMD_VAL);
+	if (ret)
+		return ret;
+
+	ret = lp5812_read_tsd_config_status(chip, &reg_val);
+	if (ret == 0)
+		return (int)(reg_val & 0x01);
+
+	return ret;
+}
+
+static int lp5812_disable_all_leds(struct lp5812_chip *chip)
+{
+	int ret;
+
+	ret = lp5812_write(chip, chip->cfg->reg_led_en_1.addr, 0x00);
+	if (ret)
+		return ret;
+	ret = lp5812_write(chip, chip->cfg->reg_led_en_2.addr, 0x00);
+	if (ret)
+		return ret;
+
+	return ret;
+}
+
+static int lp5812_fault_clear(struct lp5812_chip *chip, u8 value)
+{
+	u8 reg_val;
+
+	if (value == 0)
+		reg_val = LOD_CLEAR_VAL;
+	else if (value == 1)
+		reg_val = LSD_CLEAR_VAL;
+	else if (value == 2)
+		reg_val = TSD_CLEAR_VAL;
+	else if (value == 3)
+		reg_val = FAULT_CLEAR_ALL;
+	else
+		return -EINVAL;
+
+	return lp5812_write(chip, chip->cfg->reg_reset.addr, reg_val);
+}
+
+static int lp5812_device_command(struct lp5812_chip *chip, enum device_command command)
+{
+	switch (command) {
+	case LP5812_DEV_CMD_UPDATE:
+		return lp5812_write(chip, chip->cfg->reg_cmd_update.addr, LP5812_UPDATE_CMD_VAL);
+	case LP5812_DEV_CMD_START:
+		return lp5812_write(chip, chip->cfg->reg_cmd_start.addr, LP5812_START_CMD_VAL);
+	case LP5812_DEV_CMD_STOP:
+		return lp5812_write(chip, chip->cfg->reg_cmd_stop.addr, LP5812_STOP_CMD_VAL);
+	case LP5812_DEV_CMD_PAUSE:
+		return lp5812_write(chip, chip->cfg->reg_cmd_pause.addr, LP5812_PAUSE_CMD_VAL);
+	case LP5812_DEV_CMD_CONTINUE:
+		return lp5812_write(chip, chip->cfg->reg_cmd_continue.addr,
+			LP5812_CONTINUE_CMD_VAL);
+	default:
+		return -EINVAL;
+	}
+}
+
+static int lp5812_read_tsd_config_status(struct lp5812_chip *chip, u8 *reg_val)
+{
+	return lp5812_read(chip, chip->cfg->reg_tsd_config_status.addr, reg_val);
+}
+
+static void set_mix_sel_led(struct lp5812_chip *chip, int mix_sel_led)
+{
+	if (mix_sel_led == 0)
+		chip->u_drive_mode.s_drive_mode.mix_sel_led_0 = 1;
+
+	if (mix_sel_led == 1)
+		chip->u_drive_mode.s_drive_mode.mix_sel_led_1 = 1;
+
+	if (mix_sel_led == 2)
+		chip->u_drive_mode.s_drive_mode.mix_sel_led_2 = 1;
+
+	if (mix_sel_led == 3)
+		chip->u_drive_mode.s_drive_mode.mix_sel_led_3 = 1;
+}
+
+static ssize_t parse_drive_mode(struct lp5812_chip *chip, char *str)
+{
+	char *sub_str;
+	int tcm_scan_num, mix_scan_num, mix_sel_led, scan_oder[4], i, ret;
+
+	chip->u_drive_mode.s_drive_mode.mix_sel_led_0 = 0;
+	chip->u_drive_mode.s_drive_mode.mix_sel_led_1 = 0;
+	chip->u_drive_mode.s_drive_mode.mix_sel_led_2 = 0;
+	chip->u_drive_mode.s_drive_mode.mix_sel_led_3 = 0;
+
+	sub_str = strsep(&str, ":");
+	if (sysfs_streq(sub_str, "direct_mode")) {
+		chip->u_drive_mode.s_drive_mode.led_mode = 0;
+	} else if (sysfs_streq(sub_str, "tcmscan")) {
+		/* Get tcm scan number */
+		sub_str = strsep(&str, ":");
+		if (!sub_str)
+			return -EINVAL;
+		ret = kstrtoint(sub_str, 0, &tcm_scan_num);
+		if (ret)
+			return ret;
+		if (tcm_scan_num < 0 || tcm_scan_num > 4)
+			return -EINVAL;
+		chip->u_drive_mode.s_drive_mode.led_mode = tcm_scan_num;
+
+		for (i = 0; i < tcm_scan_num; i++) {
+			sub_str = strsep(&str, ":");
+			if (!sub_str)
+				return -EINVAL;
+			ret = kstrtoint(sub_str, 0, &scan_oder[i]);
+			if (ret)
+				return ret;
+		}
+
+		chip->u_scan_order.s_scan_order.scan_order_0 = scan_oder[0];
+		chip->u_scan_order.s_scan_order.scan_order_1 = scan_oder[1];
+		chip->u_scan_order.s_scan_order.scan_order_2 = scan_oder[2];
+		chip->u_scan_order.s_scan_order.scan_order_3 = scan_oder[3];
+	} else if (sysfs_streq(sub_str, "mixscan")) {
+		/* Get mix scan number */
+		sub_str = strsep(&str, ":");
+		if (!sub_str)
+			return -EINVAL;
+		ret = kstrtoint(sub_str, 0, &mix_scan_num);
+		if (ret)
+			return ret;
+		if (mix_scan_num < 0 || mix_scan_num > 3)
+			return -EINVAL;
+
+		chip->u_drive_mode.s_drive_mode.led_mode = mix_scan_num + 4;
+		/* Get mix_sel_led */
+		sub_str = strsep(&str, ":");
+		if (!sub_str)
+			return -EINVAL;
+		ret = kstrtoint(sub_str, 0, &mix_sel_led);
+		if (ret)
+			return ret;
+		if (mix_sel_led < 0 || mix_sel_led > 3)
+			return -EINVAL;
+		set_mix_sel_led(chip, mix_sel_led);
+
+		for (i = 0; i < mix_scan_num; i++) {
+			sub_str = strsep(&str, ":");
+			if (!sub_str)
+				return -EINVAL;
+			ret = kstrtoint(sub_str, 0, &scan_oder[i]);
+			if (ret)
+				return ret;
+			if (scan_oder[i] == mix_sel_led || scan_oder[i] < 0 || scan_oder[i] > 3)
+				return -EINVAL;
+		}
+		chip->u_scan_order.s_scan_order.scan_order_0 = scan_oder[0];
+		chip->u_scan_order.s_scan_order.scan_order_1 = scan_oder[1];
+		chip->u_scan_order.s_scan_order.scan_order_2 = scan_oder[2];
+		chip->u_scan_order.s_scan_order.scan_order_3 = scan_oder[3];
+	} else {
+		return -EINVAL;
+	}
+	return 0;
+}
+
+static int lp5812_set_drive_mode_scan_order(struct lp5812_chip *chip)
+{
+	u8 val;
+	int ret;
+
+	/* Set led mode */
+	val = chip->u_drive_mode.drive_mode_val;
+	ret = lp5812_write(chip, chip->cfg->reg_dev_config_1.addr, val);
+	if (ret)
+		return ret;
+
+	/* Setup scan order */
+	val = chip->u_scan_order.scan_order_val;
+	ret = lp5812_write(chip, chip->cfg->reg_dev_config_2.addr, val);
+
+	return ret;
+}
+
+static ssize_t dev_config_store(struct device *dev,
+				struct device_attribute *attr,
+				const char *buf, size_t len)
+{
+	int ret;
+	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
+	struct lp5812_chip *chip = led->chip;
+
+	guard(mutex)(&chip->lock);
+	ret = parse_drive_mode(chip, (char *)buf);
+	if (ret)
+		return ret;
+
+	ret = lp5812_set_drive_mode_scan_order(chip);
+	if (ret)
+		return ret;
+
+	ret = lp5812_update_regs_config(chip);
+	if (ret)
+		return ret;
+
+	ret = lp5812_disable_all_leds(chip);
+	if (ret)
+		return ret;
+
+	return len;
+}
+
+static ssize_t device_command_store(struct device *dev,
+				    struct device_attribute *attr,
+				    const char *buf, size_t len)
+{
+	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
+	struct lp5812_chip *chip = led->chip;
+	enum device_command cmd;
+
+	if (sysfs_streq(buf, "update"))
+		cmd = LP5812_DEV_CMD_UPDATE;
+	else if (sysfs_streq(buf, "start"))
+		cmd = LP5812_DEV_CMD_START;
+	else if (sysfs_streq(buf, "stop"))
+		cmd = LP5812_DEV_CMD_STOP;
+	else if (sysfs_streq(buf, "pause"))
+		cmd = LP5812_DEV_CMD_PAUSE;
+	else if (sysfs_streq(buf, "continue"))
+		cmd = LP5812_DEV_CMD_CONTINUE;
+	else
+		return -EINVAL;
+
+	guard(mutex)(&chip->lock);
+	lp5812_device_command(led->chip, cmd);
+	return len;
+}
+
+static ssize_t fault_clear_store(struct device *dev,
+				 struct device_attribute *attr,
+				 const char *buf, size_t len)
+{
+	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
+	struct lp5812_chip *chip = led->chip;
+	int fault_clear, ret;
+
+	ret = kstrtoint(buf, 0, &fault_clear);
+	if (ret)
+		return ret;
+
+	if (fault_clear < 0 || fault_clear > 3)
+		return -EINVAL;
+
+	guard(mutex)(&chip->lock);
+	ret = lp5812_fault_clear(chip, fault_clear);
+	if (ret)
+		return -EIO;
+
+	return len;
+}
+
+static ssize_t tsd_config_status_show(struct device *dev,
+				      struct device_attribute *attr, char *buf)
+{
+	u8 reg_val;
+	int tsd_stat, config_stat, ret;
+	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
+	struct lp5812_chip *chip = led->chip;
+
+	guard(mutex)(&chip->lock);
+	ret = lp5812_read(chip, chip->cfg->reg_tsd_config_status.addr, &reg_val);
+	if (ret)
+		return -EIO;
+	tsd_stat = (reg_val >> 1) & 0x01;
+	config_stat = reg_val & 0x01;
+
+	return sysfs_emit(buf, "%d %d\n", tsd_stat, config_stat);
+}
+
+static ssize_t sw_reset_store(struct device *dev, struct device_attribute *attr,
+			      const char *buf, size_t len)
+{
+	int reset, ret;
+	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
+	struct lp5812_chip *chip = led->chip;
+
+	ret = kstrtoint(buf, 0, &reset);
+	if (ret)
+		return ret;
+
+	if (reset != 1)
+		return -EINVAL;
+
+	guard(mutex)(&chip->lock);
+	ret = lp5812_write(chip, chip->cfg->reg_reset.addr, LP5812_RESET);
+	if (ret)
+		return -EIO;
+
+	return len;
+}
+
+static void lp5812_deinit_device(struct lp5812_chip *chip)
+{
+	(void)lp5812_disable_all_leds(chip);
+	(void)lp5812_write(chip, chip->cfg->reg_chip_en.addr, (u8)0);
+}
+
+static int lp5812_init_device(struct lp5812_chip *chip)
+{
+	int ret;
+
+	usleep_range(1000, 1100);
+
+	ret = lp5812_write(chip, chip->cfg->reg_chip_en.addr, (u8)1);
+	if (ret) {
+		dev_err(&chip->i2c_cl->dev, "lp5812_enable_disable failed\n");
+		return ret;
+	}
+
+	ret = lp5812_write(chip, chip->cfg->reg_dev_config_12.addr, 0x0B);
+	if (ret) {
+		dev_err(&chip->i2c_cl->dev, "write 0x0B to DEV_CONFIG12 failed\n");
+		return ret;
+	}
+
+	ret = lp5812_update_regs_config(chip);
+	if (ret) {
+		dev_err(&chip->i2c_cl->dev, "lp5812_update_regs_config failed\n");
+		return ret;
+	}
+
+	return 0;
+}
+
+/* End device functions */
+
+/* Begin led functions*/
+static int lp5812_read_lod_status(struct lp5812_chip *chip, int led_number, u8 *val)
+{
+	int ret;
+	u16 reg;
+	u8 reg_val;
+
+	if (!val)
+		return -1;
+
+	if (led_number < 0x8)
+		reg = chip->cfg->reg_lod_status_base.addr;
+	else
+		reg = chip->cfg->reg_lod_status_base.addr + 1;
+
+	ret = lp5812_read(chip, reg, &reg_val);
+	if (ret)
+		return ret;
+
+	*val = (reg_val & (1 << (led_number % 8))) ? 1 : 0;
+
+	return ret;
+}
+
+static int lp5812_read_lsd_status(struct lp5812_chip *chip, int led_number, u8 *val)
+{
+	int ret;
+	u16 reg;
+	u8 reg_val;
+
+	if (!val)
+		return -1;
+
+	if (led_number < 0x8)
+		reg = chip->cfg->reg_lsd_status_base.addr;
+	else
+		reg = chip->cfg->reg_lsd_status_base.addr + 1;
+
+	ret = lp5812_read(chip, reg, &reg_val);
+	if (ret)
+		return ret;
+
+	*val = (reg_val & (1 << (led_number % 8))) ? 1 : 0;
+
+	return ret;
+}
+
+static int lp5812_set_led_mode(struct lp5812_chip *chip, int led_number,
+			       enum control_mode mode)
+{
+	int ret;
+	u16 reg;
+	u8 reg_val;
+
+	if (led_number <= 7)
+		reg = chip->cfg->reg_dev_config_3.addr;
+	else
+		reg = chip->cfg->reg_dev_config_4.addr;
+
+	ret = lp5812_read(chip, reg, &reg_val);
+	if (ret)
+		return ret;
+
+	if (mode == LP5812_MODE_MANUAL)
+		reg_val &= ~(1 << (led_number % 8));
+	else
+		reg_val |= (1 << (led_number % 8));
+
+	ret = lp5812_write(chip, reg, reg_val);
+	if (ret)
+		return ret;
+
+	ret = lp5812_update_regs_config(chip);
+
+	return ret;
+}
+
+static int lp5812_get_led_mode(struct lp5812_chip *chip, int led_number,
+			       enum control_mode *mode)
+{
+	int ret;
+	u16 reg;
+	u8 reg_val;
+
+	if (led_number <= 7)
+		reg = chip->cfg->reg_dev_config_3.addr;
+	else
+		reg = chip->cfg->reg_dev_config_4.addr;
+
+	ret = lp5812_read(chip, reg, &reg_val);
+	if (ret)
+		return ret;
+
+	*mode = (reg_val & (1 << (led_number % 8))) ? LP5812_MODE_AUTONOMOUS : LP5812_MODE_MANUAL;
+	return 0;
+}
+
+static int lp5812_set_pwm_dimming_scale(struct lp5812_chip *chip, int led_number,
+					enum pwm_dimming_scale scale)
+{
+	int ret;
+	u16 reg;
+	u8 reg_val;
+
+	if (led_number <= 7)
+		reg = chip->cfg->reg_dev_config_5.addr;
+	else
+		reg = chip->cfg->reg_dev_config_6.addr;
+
+	ret = lp5812_read(chip, reg, &reg_val);
+	if (ret)
+		return ret;
+	if (scale == LP5812_PWM_DIMMING_SCALE_LINEAR)
+		reg_val &= ~(1 << (led_number % 8));
+	else
+		reg_val |= (1 << (led_number % 8));
+
+	ret = lp5812_write(chip, reg, reg_val);
+	if (ret)
+		return ret;
+
+	ret = lp5812_update_regs_config(chip);
+
+	return ret;
+}
+
+static int lp5812_set_phase_align(struct lp5812_chip *chip, int led_number,
+				  int phase_align_val)
+{
+	int ret, bit_pos;
+	u16 reg;
+	u8 reg_val;
+
+	reg = chip->cfg->reg_dev_config_7.addr + (led_number / 4);
+	bit_pos = (led_number % 4) * 2;
+
+	ret = lp5812_read(chip, reg, &reg_val);
+	if (ret)
+		return ret;
+	reg_val |= (phase_align_val << bit_pos);
+	ret = lp5812_write(chip, reg, reg_val);
+	if (ret)
+		return ret;
+	ret = lp5812_update_regs_config(chip);
+
+	return ret;
+}
+
+static ssize_t lp5812_auto_time_pause_store(struct device *dev,
+					    struct device_attribute *attr,
+					    const char *buf, size_t len, bool start)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	u8 chan_nr = 0, curr_val;
+	int i, ret, val[LED_COLOR_ID_MAX];
+	char *sub_str, *str = (char *)buf;
+	u16 reg;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (kstrtoint(sub_str, 0, &val[i]))
+			return -EINVAL;
+	}
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		reg = LP5812_AUTO_PAUSE_ADDR(led_cfg->led_id[i]);
+
+		/* get original value of slope time */
+		ret = lp5812_read(chip, reg, &curr_val);
+		if (ret)
+			return ret;
+
+		if (start == 1)
+			curr_val = (curr_val & 0x0F) | (val[i] << 4);
+		else
+			curr_val = (curr_val & 0xF0) | (val[i]);
+
+		ret = lp5812_write(chip, reg, curr_val);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static int lp5812_manual_dc_pwm_control(struct lp5812_chip *chip, int led_number,
+					u8 val, enum dimming_type dimming_type)
+{
+	int ret;
+	u16 led_base_reg;
+
+	if (dimming_type == LP5812_DIMMING_ANALOG)
+		led_base_reg = chip->cfg->reg_manual_dc_base.addr;
+	else
+		led_base_reg = chip->cfg->reg_manual_pwm_base.addr;
+	ret = lp5812_write(chip, led_base_reg + led_number, val);
+
+	return ret;
+}
+
+static int lp5812_auto_dc(struct lp5812_chip *chip,
+			  int led_number, u8 val)
+{
+	return lp5812_write(chip, chip->cfg->reg_auto_dc_base.addr + led_number, val);
+}
+
+static int lp5812_multicolor_brightness(struct lp5812_led *led)
+{
+	struct lp5812_chip *chip = led->chip;
+	int ret, i;
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led->mc_cdev.num_colors; i++) {
+		ret = lp5812_manual_dc_pwm_control(chip, led->mc_cdev.subled_info[i].channel,
+						   led->mc_cdev.subled_info[i].brightness,
+						   LP5812_DIMMING_PWM);
+		if (ret)
+			break;
+	}
+
+	return ret;
+}
+
+static int lp5812_led_brightness(struct lp5812_led *led)
+{
+	struct lp5812_chip *chip = led->chip;
+	struct lp5812_led_config *led_cfg;
+	int ret;
+
+	led_cfg = &chip->pdata->led_config[led->chan_nr];
+
+	guard(mutex)(&chip->lock);
+	ret = lp5812_manual_dc_pwm_control(chip, led_cfg->led_id[0],
+					   led->brightness, LP5812_DIMMING_PWM);
+
+	return ret;
+}
+
+static ssize_t mode_parse(const char *buf, enum control_mode *val)
+{
+	if (sysfs_streq(buf, "manual"))
+		*val = LP5812_MODE_MANUAL;
+	else if (sysfs_streq(buf, "autonomous"))
+		*val = LP5812_MODE_AUTONOMOUS;
+	else
+		return -EINVAL;
+
+	return 0;
+}
+
+static ssize_t mode_store(struct device *dev,
+			  struct device_attribute *attr,
+			  const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	u8 chan_nr = 0;
+	enum control_mode val[LED_COLOR_ID_MAX];
+	char *sub_str, *str = (char *)buf;
+	int i, ret;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (mode_parse(sub_str, &val[i]))
+			return -EINVAL;
+	}
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		ret = lp5812_set_led_mode(chip, led_cfg->led_id[i], val[i]);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static ssize_t activate_store(struct device *dev,
+			      struct device_attribute *attr,
+			      const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	int val[LED_COLOR_ID_MAX];
+	char *sub_str, *str = (char *)buf;
+	int i, ret;
+	u16 reg;
+	u8 reg_val, chan_nr = 0;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (kstrtoint(sub_str, 0, &val[i]))
+			return -EINVAL;
+		if (val[i] != 0 && val[i] != 1)
+			return -EINVAL;
+	}
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		if (led_cfg->led_id[i] < 0x8)
+			reg = chip->cfg->reg_led_en_1.addr;
+		else
+			reg = chip->cfg->reg_led_en_2.addr;
+
+		ret = lp5812_read(chip, reg, &reg_val);
+		if (ret)
+			return -EIO;
+
+		if (val[i] == 0)
+			reg_val &= ~(1 << (led_cfg->led_id[i] % 8));
+		else
+			reg_val |= (1 << (led_cfg->led_id[i] % 8));
+
+		ret = lp5812_write(chip, reg, reg_val);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static ssize_t pwm_dimming_parse(const char *buf, enum pwm_dimming_scale *val)
+{
+	if (sysfs_streq(buf, "linear"))
+		*val = LP5812_PWM_DIMMING_SCALE_LINEAR;
+	else if (sysfs_streq(buf, "exponential"))
+		*val = LP5812_PWM_DIMMING_SCALE_EXPONENTIAL;
+	else
+		return -EINVAL;
+
+	return 0;
+}
+
+static ssize_t pwm_dimming_scale_store(struct device *dev,
+				       struct device_attribute *attr,
+				       const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	u8 chan_nr = 0;
+	enum pwm_dimming_scale val[LED_COLOR_ID_MAX];
+	char *sub_str, *str = (char *)buf;
+	int i, ret;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (pwm_dimming_parse(sub_str, &val[i]))
+			return -EINVAL;
+	}
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		ret = lp5812_set_pwm_dimming_scale(chip, led_cfg->led_id[i], val[i]);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static ssize_t pwm_align_parse(const char *buf, enum control_mode *val)
+{
+	if (sysfs_streq(buf, "forward"))
+		*val = 0;
+	else if (sysfs_streq(buf, "middle"))
+		*val = 2;
+	else if (sysfs_streq(buf, "backward"))
+		*val = 3;
+	else
+		return -EINVAL;
+
+	return 0;
+}
+
+static ssize_t pwm_phase_align_store(struct device *dev,
+				     struct device_attribute *attr,
+				     const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	u8 chan_nr = 0;
+	enum control_mode val[LED_COLOR_ID_MAX];
+	char *sub_str, *str = (char *)buf;
+	int i, ret;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (pwm_align_parse(sub_str, &val[i]))
+			return -EINVAL;
+	}
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		ret = lp5812_set_phase_align(chip, led_cfg->led_id[i], val[i]);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static ssize_t led_current_store(struct device *dev,
+				 struct device_attribute *attr,
+				 const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	u8 chan_nr = 0;
+	enum control_mode mode;
+	int val[LED_COLOR_ID_MAX];
+	char *sub_str, *str = (char *)buf;
+	int i, ret;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (kstrtoint(sub_str, 0, &val[i]))
+			return -EINVAL;
+	}
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		ret = lp5812_get_led_mode(chip, led_cfg->led_id[i], &mode);
+		if (ret)
+			return -EIO;
+
+		if (mode == 1)
+			ret = lp5812_auto_dc(chip, led_cfg->led_id[i], val[i]);
+		else
+			ret = lp5812_manual_dc_pwm_control(chip, led_cfg->led_id[i],
+							   val[i], LP5812_DIMMING_ANALOG);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static ssize_t lod_lsd_show(struct device *dev,
+			    struct device_attribute *attr,
+			    char *buf)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	u8 chan_nr = 0, i, lsd_status, lod_status;
+	int size = 0, ret;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		ret = lp5812_read_lsd_status(chip, led_cfg->led_id[i], &lsd_status);
+		if (!ret)
+			ret = lp5812_read_lod_status(chip, led_cfg->led_id[i], &lod_status);
+		if (ret)
+			return -EIO;
+
+		size += sysfs_emit_at(buf, size, "%d:%d %d\n",
+			led_cfg->led_id[i], lod_status, lsd_status);
+	}
+	return size;
+}
+
+static ssize_t max_current_show(struct device *dev,
+				struct device_attribute *attr,
+				char *buf)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	const char *name = dev->platform_data;
+	u8 val;
+	int ret;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chip = led->chip;
+
+	guard(mutex)(&chip->lock);
+	ret = lp5812_read(chip, chip->cfg->reg_dev_config_0.addr, &val);
+	if (ret)
+		return ret;
+
+	return sysfs_emit(buf, "%d\n", (val & 0x01));
+}
+
+static ssize_t auto_time_pause_at_start_store(struct device *dev,
+					      struct device_attribute *attr,
+					      const char *buf, size_t len)
+{
+	return lp5812_auto_time_pause_store(dev, attr, buf, len, 1);
+}
+
+static ssize_t auto_time_pause_at_stop_store(struct device *dev,
+					     struct device_attribute *attr,
+					     const char *buf, size_t len)
+{
+	return lp5812_auto_time_pause_store(dev, attr, buf, len, 0);
+}
+
+static ssize_t auto_playback_eau_number_store(struct device *dev,
+					      struct device_attribute *attr,
+					      const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	u8 chan_nr = 0, curr_val;
+	int val[LED_COLOR_ID_MAX];
+	char *sub_str, *str = (char *)buf;
+	int i, ret;
+	u16 reg;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (kstrtoint(sub_str, 0, &val[i]))
+			return -EINVAL;
+	}
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		reg = LP5812_AUTO_PLAYBACK_ADDR(led_cfg->led_id[i]);
+
+		/* get original value of slope time */
+		ret = lp5812_read(chip, reg, &curr_val);
+		if (ret)
+			return ret;
+
+		curr_val = (curr_val & 0x0F) | (val[i] << 4);
+
+		ret = lp5812_write(chip, reg, curr_val);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static ssize_t auto_playback_time_store(struct device *dev,
+					struct device_attribute *attr,
+					const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	u8 chan_nr = 0, curr_val;
+	int val[LED_COLOR_ID_MAX];
+	char *sub_str, *str = (char *)buf;
+	int i, ret;
+	u16 reg;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (kstrtoint(sub_str, 0, &val[i]))
+			return -EINVAL;
+	}
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		reg = LP5812_AUTO_PLAYBACK_ADDR(led_cfg->led_id[i]);
+
+		/* get original value of slope time */
+		ret = lp5812_read(chip, reg, &curr_val);
+		if (ret)
+			return ret;
+
+		curr_val = (curr_val & 0xF0) | (val[i]);
+
+		ret = lp5812_write(chip, reg, curr_val);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static ssize_t aeu_playback_time_store(struct device *dev,
+				       struct device_attribute *attr,
+				       const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	int val[LED_COLOR_ID_MAX];
+	int aeu;
+	u8 chan_nr = 0, curr_val;
+	char *sub_str, *str = (char *)buf;
+	int i, ret;
+	u16 reg;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+
+	sub_str = strsep(&str, ":");
+	if (!sub_str)
+		return -EINVAL;
+	if (kstrtoint(&sub_str[3], 0, &aeu))
+		return -EINVAL;
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (kstrtoint(sub_str, 0, &val[i]))
+			return -EINVAL;
+		if (val[i] < 0 || val[i] > 3)
+			return -EINVAL;
+
+		reg = LP5812_AEU_PLAYBACK_ADDR(led_cfg->led_id[i], aeu);
+
+		ret = lp5812_read(chip, reg, &curr_val);
+		if (ret)
+			return ret;
+
+		ret = lp5812_write(chip, reg, (curr_val & 0xFC) | val[i]);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static ssize_t lp5812_aeu_pwm_store(struct device *dev,
+				    struct device_attribute *attr,
+				    u8 pwm_chan,
+				    const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	int val[LED_COLOR_ID_MAX];
+	int aeu;
+	u8 chan_nr = 0;
+	char *sub_str, *str = (char *)buf;
+	int i, ret;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+
+	sub_str = strsep(&str, ":");
+	if (!sub_str)
+		return -EINVAL;
+	if (kstrtoint(&sub_str[3], 0, &aeu))
+		return -EINVAL;
+
+	pr_info("AEU = %d", aeu);
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (kstrtoint(sub_str, 0, &val[i]))
+			return -EINVAL;
+		if (val[i] < 0 || val[i] > 255)
+			return -EINVAL;
+
+		ret = lp5812_write(chip,
+				   LP5812_AEU_PWM_ADDR(led_cfg->led_id[i], aeu, pwm_chan),
+				   val[i]);
+		if (ret)
+			return -EIO;
+	}
+
+	return len;
+}
+
+static ssize_t aeu_pwm1_store(struct device *dev,
+			      struct device_attribute *attr,
+			      const char *buf, size_t len)
+{
+	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM1, buf, len);
+}
+
+static ssize_t aeu_pwm2_store(struct device *dev,
+			      struct device_attribute *attr,
+			      const char *buf, size_t len)
+{
+	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM2, buf, len);
+}
+
+static ssize_t aeu_pwm3_store(struct device *dev,
+			      struct device_attribute *attr,
+			      const char *buf, size_t len)
+{
+	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM3, buf, len);
+}
+
+static ssize_t aeu_pwm4_store(struct device *dev,
+			      struct device_attribute *attr,
+			      const char *buf, size_t len)
+{
+	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM4, buf, len);
+}
+
+static ssize_t aeu_pwm5_store(struct device *dev,
+			      struct device_attribute *attr,
+			      const char *buf, size_t len)
+{
+	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM5, buf, len);
+}
+
+static ssize_t lp5812_aeu_slope_time(struct device *dev,
+				     struct device_attribute *attr,
+				     enum slope_time_num slope_chan,
+				     const char *buf, size_t len)
+{
+	struct lp5812_led *led;
+	struct lp5812_chip *chip;
+	struct lp5812_led_config *led_cfg;
+	const char *name = dev->platform_data;
+	int val[LED_COLOR_ID_MAX];
+	u8 chan_nr = 0;
+	char *sub_str, *str = (char *)buf;
+	int i, ret, aeu;
+	union slope_time slope_time_val;
+	u16 reg;
+
+	if (strcmp(name, LP5812_SC_LED) == 0)
+		led = dev_to_lp5812_led(dev);
+	else
+		led = dev_to_lp5812_led_mc(dev);
+
+	chan_nr = led->chan_nr;
+	chip = led->chip;
+	led_cfg = &chip->pdata->led_config[chan_nr];
+
+	sub_str = strsep(&str, ":");
+	if (!sub_str)
+		return -EINVAL;
+	if (kstrtoint(&sub_str[3], 0, &aeu))
+		return -EINVAL;
+
+	pr_info("AEU = %d", aeu);
+
+	guard(mutex)(&chip->lock);
+	for (i = 0; i < led_cfg->num_colors; i++) {
+		sub_str = strsep(&str, " ");
+		if (!sub_str)
+			return -EINVAL;
+		if (kstrtoint(sub_str, 0, &val[i]))
+			return -EINVAL;
+		if (val[i] < 0 || val[i] > 15)
+			return -EINVAL;
+
+		reg = LP5812_AEU_SLOPE_TIME_ADDR(led_cfg->led_id[i], aeu, slope_chan);
+
+		/* get original value of slope time */
+		ret = lp5812_read(chip, reg, &slope_time_val.time_val);
+		if (ret)
+			return ret;
+
+		/* Update new value for slope time*/
+		if (slope_chan == LP5812_SLOPE_TIME_T1 || slope_chan == LP5812_SLOPE_TIME_T3)
+			slope_time_val.s_time.first = val[i];
+		if (slope_chan == LP5812_SLOPE_TIME_T2 || slope_chan == LP5812_SLOPE_TIME_T4)
+			slope_time_val.s_time.second = val[i];
+
+		/* Save updated value to hardware */
+		ret = lp5812_write(chip, reg, slope_time_val.time_val);
+		if (ret)
+			return ret;
+	}
+
+	return len;
+}
+
+static ssize_t aeu_slop_time_t1_store(struct device *dev,
+				      struct device_attribute *attr,
+				      const char *buf, size_t len)
+{
+	return lp5812_aeu_slope_time(dev, attr, LP5812_SLOPE_TIME_T1, buf, len);
+}
+
+static ssize_t aeu_slop_time_t2_store(struct device *dev,
+				      struct device_attribute *attr,
+				      const char *buf, size_t len)
+{
+	return lp5812_aeu_slope_time(dev, attr, LP5812_SLOPE_TIME_T2, buf, len);
+}
+
+static ssize_t aeu_slop_time_t3_store(struct device *dev,
+				      struct device_attribute *attr,
+				      const char *buf, size_t len)
+{
+	return lp5812_aeu_slope_time(dev, attr, LP5812_SLOPE_TIME_T3, buf, len);
+}
+
+static ssize_t aeu_slop_time_t4_store(struct device *dev,
+				      struct device_attribute *attr,
+				      const char *buf, size_t len)
+{
+	return lp5812_aeu_slope_time(dev, attr, LP5812_SLOPE_TIME_T4, buf, len);
+}
+
+/* End led function */
+
+static DEVICE_ATTR_WO(led_current);
+static DEVICE_ATTR_RO(max_current);
+static DEVICE_ATTR_WO(mode);
+static DEVICE_ATTR_WO(activate);
+static DEVICE_ATTR_WO(pwm_dimming_scale);
+static DEVICE_ATTR_WO(pwm_phase_align);
+static DEVICE_ATTR_WO(auto_time_pause_at_start);
+static DEVICE_ATTR_WO(auto_time_pause_at_stop);
+static DEVICE_ATTR_WO(auto_playback_eau_number);
+static DEVICE_ATTR_WO(auto_playback_time);
+static DEVICE_ATTR_WO(aeu_playback_time);
+static DEVICE_ATTR_WO(aeu_pwm1);
+static DEVICE_ATTR_WO(aeu_pwm2);
+static DEVICE_ATTR_WO(aeu_pwm3);
+static DEVICE_ATTR_WO(aeu_pwm4);
+static DEVICE_ATTR_WO(aeu_pwm5);
+static DEVICE_ATTR_WO(aeu_slop_time_t1);
+static DEVICE_ATTR_WO(aeu_slop_time_t2);
+static DEVICE_ATTR_WO(aeu_slop_time_t3);
+static DEVICE_ATTR_WO(aeu_slop_time_t4);
+static DEVICE_ATTR_RO(lod_lsd);
+
+static struct attribute *lp5812_led_attrs[] = {
+	&dev_attr_led_current.attr,
+	&dev_attr_max_current.attr,
+	&dev_attr_mode.attr,
+	&dev_attr_activate.attr,
+	&dev_attr_pwm_dimming_scale.attr,
+	&dev_attr_pwm_phase_align.attr,
+	&dev_attr_auto_time_pause_at_start.attr,
+	&dev_attr_auto_time_pause_at_stop.attr,
+	&dev_attr_auto_playback_eau_number.attr,
+	&dev_attr_auto_playback_time.attr,
+	&dev_attr_aeu_playback_time.attr,
+	&dev_attr_aeu_pwm1.attr,
+	&dev_attr_aeu_pwm2.attr,
+	&dev_attr_aeu_pwm3.attr,
+	&dev_attr_aeu_pwm4.attr,
+	&dev_attr_aeu_pwm5.attr,
+	&dev_attr_aeu_slop_time_t1.attr,
+	&dev_attr_aeu_slop_time_t2.attr,
+	&dev_attr_aeu_slop_time_t3.attr,
+	&dev_attr_aeu_slop_time_t4.attr,
+	&dev_attr_lod_lsd.attr,
+	NULL
+};
+ATTRIBUTE_GROUPS(lp5812_led);
+
+static int lp5812_set_brightness(struct led_classdev *cdev,
+				 enum led_brightness brightness)
+{
+	struct lp5812_led *led = cdev_to_lp5812_led(cdev);
+	const struct lp5812_device_config *cfg = led->chip->cfg;
+
+	led->brightness = (u8)brightness;
+	return cfg->brightness_fn(led);
+}
+
+static int lp5812_set_mc_brightness(struct led_classdev *cdev,
+				    enum led_brightness brightness)
+{
+	struct led_classdev_mc *mc_dev = lcdev_to_mccdev(cdev);
+	struct lp5812_led *led = mcled_cdev_to_lp5812_led(mc_dev);
+	const struct lp5812_device_config *cfg = led->chip->cfg;
+
+	led_mc_calc_color_components(&led->mc_cdev, brightness);
+	return cfg->multicolor_brightness_fn(led);
+}
+
+static int lp5812_init_led(struct lp5812_led *led, struct lp5812_chip *chip, int chan)
+{
+	struct lp5812_data *pdata = chip->pdata;
+	struct device *dev = &chip->i2c_cl->dev;
+	struct mc_subled *mc_led_info;
+	struct led_classdev *led_cdev;
+	int i, ret = 0;
+
+	if (pdata->led_config[chan].name) {
+		led->cdev.name = pdata->led_config[chan].name;
+	} else {
+		led->cdev.name = devm_kasprintf(dev, GFP_KERNEL, "%s:channel%d",
+						pdata->label ? : chip->i2c_cl->name, chan);
+		if (!led->cdev.name)
+			return -ENOMEM;
+	}
+
+	if (pdata->led_config[chan].is_sc_led == 0) {
+		mc_led_info = devm_kcalloc(dev,
+					   pdata->led_config[chan].num_colors,
+					   sizeof(*mc_led_info), GFP_KERNEL);
+		if (!mc_led_info)
+			return -ENOMEM;
+
+		led_cdev = &led->mc_cdev.led_cdev;
+		led_cdev->name = led->cdev.name;
+		led_cdev->brightness_set_blocking = lp5812_set_mc_brightness;
+		led->mc_cdev.num_colors = pdata->led_config[chan].num_colors;
+		for (i = 0; i < led->mc_cdev.num_colors; i++) {
+			mc_led_info[i].color_index =
+				pdata->led_config[chan].color_id[i];
+			mc_led_info[i].channel =
+					pdata->led_config[chan].led_id[i];
+		}
+
+		led->mc_cdev.subled_info = mc_led_info;
+	} else {
+		led->cdev.brightness_set_blocking = lp5812_set_brightness;
+	}
+
+	led->cdev.groups = lp5812_led_groups;
+	led->chan_nr = chan;
+
+	if (pdata->led_config[chan].is_sc_led) {
+		ret = devm_led_classdev_register(dev, &led->cdev);
+		if (ret == 0) {
+			led->cdev.dev->platform_data = devm_kstrdup(dev, LP5812_SC_LED, GFP_KERNEL);
+			if (!led->cdev.dev->platform_data)
+				return -ENOMEM;
+		}
+	} else {
+		ret = devm_led_classdev_multicolor_register(dev, &led->mc_cdev);
+		if (ret == 0) {
+			led->mc_cdev.led_cdev.dev->platform_data =
+				devm_kstrdup(dev, LP5812_MC_LED, GFP_KERNEL);
+			if (!led->mc_cdev.led_cdev.dev->platform_data)
+				return -ENOMEM;
+
+			ret = sysfs_create_groups(&led->mc_cdev.led_cdev.dev->kobj,
+						  lp5812_led_groups);
+			if (ret)
+				dev_err(dev, "sysfs_create_groups failed\n");
+		}
+	}
+
+	if (ret) {
+		dev_err(dev, "led register err: %d\n", ret);
+		return ret;
+	}
+
+	return 0;
+}
+
+static int lp5812_register_leds(struct lp5812_led *led, struct lp5812_chip *chip)
+{
+	int num_channels = chip->pdata->num_channels;
+	struct lp5812_led *each;
+	int ret, i, j;
+
+	for (i = 0; i < num_channels; i++) {
+		each = led + i;
+		ret = lp5812_init_led(each, chip, i);
+		if (ret)
+			goto err_init_led;
+
+		each->chip = chip;
+
+		for (j = 0; j < chip->pdata->led_config[i].num_colors; j++) {
+			ret = lp5812_auto_dc(chip, chip->pdata->led_config[i].led_id[j],
+					     chip->pdata->led_config[i].led_id[j]);
+			if (ret)
+				goto err_init_led;
+		}
+	}
+
+	return 0;
+
+err_init_led:
+	return ret;
+}
+
+static int lp5812_register_sysfs(struct lp5812_chip *chip)
+{
+	struct device *dev = &chip->i2c_cl->dev;
+	const struct lp5812_device_config *cfg = chip->cfg;
+	int ret;
+
+	ret = sysfs_create_group(&dev->kobj, cfg->dev_attr_group);
+	if (ret)
+		return ret;
+
+	return 0;
+}
+
+static void lp5812_unregister_sysfs(struct lp5812_led *led, struct lp5812_chip *chip)
+{
+	struct device *dev = &chip->i2c_cl->dev;
+	const struct lp5812_device_config *cfg = chip->cfg;
+	struct lp5812_led *each;
+	int i;
+
+	sysfs_remove_group(&dev->kobj, cfg->dev_attr_group);
+
+	for (i = 0; i < chip->pdata->num_channels; i++) {
+		if (!chip->pdata->led_config[i].is_sc_led) {
+			each = led + i;
+			sysfs_remove_groups(&each->mc_cdev.led_cdev.dev->kobj, lp5812_led_groups);
+		}
+	}
+}
+
+static int lp5812_probe(struct i2c_client *client)
+{
+	struct lp5812_chip *chip;
+	int ret;
+	const struct i2c_device_id *id = i2c_client_get_device_id(client);
+	struct lp5812_data *pdata = dev_get_platdata(&client->dev);
+	struct device_node *np = dev_of_node(&client->dev);
+	struct lp5812_led *led;
+
+	chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
+	if (!chip)
+		return -ENOMEM;
+
+	chip->cfg = i2c_get_match_data(client);
+
+	if (!pdata) {
+		if (np) {
+			pdata = lp5812_of_populate_pdata(&client->dev, np,
+							 chip);
+			if (IS_ERR(pdata))
+				return PTR_ERR(pdata);
+		} else {
+			return dev_err_probe(&client->dev, -EINVAL, "no platform data\n");
+		}
+	}
+
+	led = devm_kcalloc(&client->dev,
+			   pdata->num_channels, sizeof(*led), GFP_KERNEL);
+	if (!led)
+		return -ENOMEM;
+
+	chip->i2c_cl = client;
+	chip->pdata = pdata;
+
+	mutex_init(&chip->lock);
+
+	i2c_set_clientdata(client, led);
+
+	ret = lp5812_init_device(chip);
+	if (ret)
+		goto err_init;
+
+	dev_info(&client->dev, "%s Programmable led chip found\n", id->name);
+
+	ret = lp5812_register_leds(led, chip);
+	if (ret)
+		goto err_out;
+
+	ret = lp5812_register_sysfs(chip);
+	if (ret) {
+		dev_err_probe(&client->dev, ret, "registering sysfs failed\n");
+		goto err_out;
+	}
+
+	return 0;
+
+err_out:
+	lp5812_deinit_device(chip);
+err_init:
+	return ret;
+}
+
+static void lp5812_remove(struct i2c_client *client)
+{
+	struct lp5812_led *led = i2c_get_clientdata(client);
+
+	lp5812_unregister_sysfs(led, led->chip);
+	lp5812_deinit_device(led->chip);
+
+	dev_info(&client->dev, "Removed driver\n");
+}
+
+static LP5812_DEV_ATTR_WO(dev_config);
+static LP5812_DEV_ATTR_WO(device_command);
+static LP5812_DEV_ATTR_WO(sw_reset);
+static LP5812_DEV_ATTR_WO(fault_clear);
+static LP5812_DEV_ATTR_RO(tsd_config_status);
+
+static struct attribute *lp5812_chip_attributes[] = {
+	&dev_attr_device_command.attr,
+	&dev_attr_fault_clear.attr,
+	&dev_attr_sw_reset.attr,
+	&dev_attr_dev_config.attr,
+	&dev_attr_tsd_config_status.attr,
+	NULL
+};
+
+static const struct attribute_group lp5812_group = {
+	.name = "lp5812_chip_setup",
+	.attrs = lp5812_chip_attributes
+};
+
+/* Chip specific configurations */
+static struct lp5812_device_config lp5812_cfg = {
+	.reg_reset = {
+		.addr = LP5812_REG_RESET,
+		.val  = LP5812_RESET
+	},
+	.reg_chip_en = {
+		.addr = LP5812_REG_ENABLE,
+		.val  = LP5812_ENABLE_DEFAULT
+	},
+	.reg_dev_config_0 = {
+		.addr = LP5812_DEV_CONFIG0,
+		.val  = 0
+	},
+	.reg_dev_config_1 = {
+		.addr = LP5812_DEV_CONFIG1,
+		.val  = 0
+	},
+	.reg_dev_config_2 = {
+		.addr = LP5812_DEV_CONFIG2,
+		.val  = 0
+	},
+	.reg_dev_config_3 = {
+		.addr = LP5812_DEV_CONFIG3,
+		.val  = 0
+	},
+	.reg_dev_config_4 = {
+		.addr = LP5812_DEV_CONFIG4,
+		.val  = 0
+	},
+	.reg_dev_config_5 = {
+		.addr = LP5812_DEV_CONFIG5,
+		.val  = 0
+	},
+	.reg_dev_config_6 = {
+		.addr = LP5812_DEV_CONFIG6,
+		.val  = 0
+	},
+	.reg_dev_config_7 = {
+		.addr = LP5812_DEV_CONFIG7,
+		.val  = 0
+	},
+	.reg_dev_config_12 = {
+		.addr = LP5812_DEV_CONFIG12,
+		.val  = LP5812_DEV_CONFIG12_DEFAULT
+	},
+	.reg_cmd_update = {
+		.addr = LP5812_CMD_UPDATE,
+		.val  = 0
+	},
+	.reg_cmd_start = {
+		.addr = LP5812_CMD_START,
+		.val  = 0
+	},
+	.reg_cmd_stop = {
+		.addr = LP5812_CMD_STOP,
+		.val  = 0
+	},
+	.reg_cmd_pause = {
+		.addr = LP5812_CMD_PAUSE,
+		.val  = 0
+	},
+	.reg_cmd_continue = {
+		.addr = LP5812_CMD_CONTINUE,
+		.val  = 0
+	},
+	.reg_tsd_config_status = {
+		.addr = LP5812_TSD_CONFIG_STATUS,
+		.val  = 0
+	},
+	.reg_led_en_1 = {
+		.addr = LP5812_LED_EN_1,
+		.val  = 0
+	},
+	.reg_led_en_2 = {
+		.addr = LP5812_LED_EN_2,
+		.val  = 0
+	},
+	.reg_fault_clear = {
+		.addr = LP5812_FAULT_CLEAR,
+		.val  = 0
+	},
+	.reg_manual_dc_base  = {
+		.addr = LP5812_MANUAL_DC_BASE,
+		.val  = 0
+	},
+	.reg_auto_dc_base  = {
+		.addr = LP5812_AUTO_DC_BASE,
+		.val  = 0
+	},
+	.reg_manual_pwm_base  = {
+		.addr = LP5812_MANUAL_PWM_BASE,
+		.val  = 0
+	},
+	.reg_aeu_base  = {
+		.addr = LP5812_AEU_BASE,
+		.val  = 0
+	},
+	.reg_lod_status_base  = {
+		.addr = LP5812_LOD_STATUS,
+		.val  = 0
+	},
+	.reg_lsd_status_base  = {
+		.addr = LP5812_LSD_STATUS,
+		.val  = 0
+	},
+
+	.brightness_fn	  = lp5812_led_brightness,
+	.multicolor_brightness_fn = lp5812_multicolor_brightness,
+
+	.dev_attr_group = &lp5812_group
+};
+
+static const struct i2c_device_id lp5812_id[] = {
+	{ "lp5812", .driver_data = (kernel_ulong_t)&lp5812_cfg },
+	{ }
+};
+
+MODULE_DEVICE_TABLE(i2c, lp5812_id);
+
+#ifdef CONFIG_OF
+static const struct of_device_id of_lp5812_match[] = {
+	{ .compatible = "ti,lp5812", .data = &lp5812_cfg },
+	{/* NULL */}
+};
+
+MODULE_DEVICE_TABLE(of, of_lp5812_match);
+#endif
+
+static struct i2c_driver lp5812_driver = {
+	.driver = {
+		.name   = "lp5812",
+		.of_match_table = of_match_ptr(of_lp5812_match),
+	},
+	.probe		= lp5812_probe,
+	.remove		= lp5812_remove,
+	.id_table	= lp5812_id,
+};
+
+module_i2c_driver(lp5812_driver);
+
+MODULE_DESCRIPTION("Texas Instruments LP5812 LED Driver");
+MODULE_AUTHOR("Jared Zhou");
+MODULE_LICENSE("GPL");
diff --git a/drivers/leds/rgb/leds-lp5812.h b/drivers/leds/rgb/leds-lp5812.h
new file mode 100644
index 000000000000..23e333fc02bf
--- /dev/null
+++ b/drivers/leds/rgb/leds-lp5812.h
@@ -0,0 +1,227 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * LP5812 Driver Header
+ *
+ * Copyright (C) 2025 Texas Instruments
+ *
+ * Author: Jared Zhou <jared-zhou@ti.com>
+ */
+
+#ifndef _LP5812_H_
+#define _LP5812_H_
+
+#include <linux/kernel.h>
+#include <linux/i2c.h>
+#include <linux/sysfs.h>
+#include <linux/mutex.h>
+#include <linux/types.h>
+#include <linux/leds.h>
+#include <linux/delay.h>
+#include <linux/led-class-multicolor.h>
+
+#define LP5812_REG_ENABLE				0x0000
+#define LP5812_REG_RESET				0x0023
+#define LP5812_DEV_CONFIG0				0x0001
+#define LP5812_DEV_CONFIG1				0x0002
+#define LP5812_DEV_CONFIG2				0x0003
+#define LP5812_DEV_CONFIG3				0x0004
+#define LP5812_DEV_CONFIG4				0x0005
+#define LP5812_DEV_CONFIG5				0x0006
+#define LP5812_DEV_CONFIG6				0x0007
+#define LP5812_DEV_CONFIG7				0x0008
+#define LP5812_DEV_CONFIG8				0x0009
+#define LP5812_DEV_CONFIG9				0x000A
+#define LP5812_DEV_CONFIG10				0x000B
+#define LP5812_DEV_CONFIG11				0x000c
+#define LP5812_DEV_CONFIG12				0x000D
+#define LP5812_CMD_UPDATE				0x0010
+#define LP5812_CMD_START				0x0011
+#define LP5812_CMD_STOP					0x0012
+#define LP5812_CMD_PAUSE				0x0013
+#define LP5812_CMD_CONTINUE				0x0014
+#define LP5812_LED_EN_1					0x0020
+#define LP5812_LED_EN_2					0x0021
+#define LP5812_FAULT_CLEAR				0x0022
+#define LP5812_MANUAL_DC_BASE				0x0030
+#define LP5812_AUTO_DC_BASE				0x0050
+#define LP5812_MANUAL_PWM_BASE				0x0040
+#define LP5812_AEU_BASE					0x0080
+
+#define LP5812_TSD_CONFIG_STATUS			0x0300
+#define LP5812_LOD_STATUS				0x0301
+#define LP5812_LSD_STATUS				0x0303
+
+#define LP5812_ENABLE_DEFAULT				0x01
+#define FAULT_CLEAR_ALL					0x07
+#define TSD_CLEAR_VAL					0x04
+#define LSD_CLEAR_VAL					0x02
+#define LOD_CLEAR_VAL					0x01
+#define LP5812_RESET					0x66
+#define LP5812_DEV_CONFIG12_DEFAULT			0x08
+
+#define LP5812_UPDATE_CMD_VAL				0x55
+#define LP5812_START_CMD_VAL				0xFF
+#define LP5812_STOP_CMD_VAL				0xAA
+#define LP5812_PAUSE_CMD_VAL				0x33
+#define LP5812_CONTINUE_CMD_VAL				0xCC
+
+#define LP5812_DEV_ATTR_RW(name)  \
+	DEVICE_ATTR_RW(name)
+#define LP5812_DEV_ATTR_RO(name)  \
+	DEVICE_ATTR_RO(name)
+#define LP5812_DEV_ATTR_WO(name)  \
+	DEVICE_ATTR_WO(name)
+
+enum control_mode {
+	LP5812_MODE_MANUAL = 0,
+	LP5812_MODE_AUTONOMOUS
+};
+
+enum dimming_type {
+	LP5812_DIMMING_ANALOG,
+	LP5812_DIMMING_PWM
+};
+
+enum pwm_dimming_scale {
+	LP5812_PWM_DIMMING_SCALE_LINEAR = 0,
+	LP5812_PWM_DIMMING_SCALE_EXPONENTIAL
+};
+
+enum device_command {
+	LP5812_DEV_CMD_NONE,
+	LP5812_DEV_CMD_UPDATE,
+	LP5812_DEV_CMD_START,
+	LP5812_DEV_CMD_STOP,
+	LP5812_DEV_CMD_PAUSE,
+	LP5812_DEV_CMD_CONTINUE
+};
+
+enum slope_time_num {
+	LP5812_SLOPE_TIME_T1 = 0,
+	LP5812_SLOPE_TIME_T2,
+	LP5812_SLOPE_TIME_T3,
+	LP5812_SLOPE_TIME_T4
+};
+
+enum aeu_pwm_num {
+	LP5812_AEU_PWM1 = 1,
+	LP5812_AEU_PWM2,
+	LP5812_AEU_PWM3,
+	LP5812_AEU_PWM4,
+	LP5812_AEU_PWM5
+};
+
+union slope_time {
+	struct {
+		u8 first:4;
+		u8 second:4;
+	} __packed s_time;
+	u8 time_val;
+}; /* type for start/stop pause time and slope time */
+
+union u_scan_order {
+	struct {
+		u8 scan_order_0:2;
+		u8 scan_order_1:2;
+		u8 scan_order_2:2;
+		u8 scan_order_3:2;
+	} s_scan_order;
+	u8 scan_order_val;
+};
+
+union u_drive_mode {
+	struct {
+		u8 mix_sel_led_0:1;
+		u8 mix_sel_led_1:1;
+		u8 mix_sel_led_2:1;
+		u8 mix_sel_led_3:1;
+		u8 led_mode:3;
+		u8 pwm_fre:1;
+	} s_drive_mode;
+	u8 drive_mode_val;
+};
+
+struct lp5812_reg {
+	u16 addr;
+	union {
+		u8 val;
+		u8 mask;
+		u8 shift;
+	};
+};
+
+struct lp5812_led;
+
+struct lp5812_device_config {
+	const struct lp5812_reg reg_reset;
+	const struct lp5812_reg reg_chip_en;
+	const struct lp5812_reg reg_dev_config_0;
+	const struct lp5812_reg reg_dev_config_1;
+	const struct lp5812_reg reg_dev_config_2;
+	const struct lp5812_reg reg_dev_config_3;
+	const struct lp5812_reg reg_dev_config_4;
+	const struct lp5812_reg reg_dev_config_5;
+	const struct lp5812_reg reg_dev_config_6;
+	const struct lp5812_reg reg_dev_config_7;
+	const struct lp5812_reg reg_dev_config_12;
+	const struct lp5812_reg reg_cmd_update;
+	const struct lp5812_reg reg_cmd_start;
+	const struct lp5812_reg reg_cmd_stop;
+	const struct lp5812_reg reg_cmd_pause;
+	const struct lp5812_reg reg_cmd_continue;
+
+	const struct lp5812_reg reg_led_en_1;
+	const struct lp5812_reg reg_led_en_2;
+	const struct lp5812_reg reg_fault_clear;
+	const struct lp5812_reg reg_manual_dc_base;
+	const struct lp5812_reg reg_auto_dc_base;
+	const struct lp5812_reg reg_manual_pwm_base;
+	const struct lp5812_reg reg_tsd_config_status;
+	const struct lp5812_reg reg_aeu_base;
+	const struct lp5812_reg reg_lod_status_base;
+	const struct lp5812_reg reg_lsd_status_base;
+
+	/* set LED brightness */
+	int (*brightness_fn)(struct lp5812_led *led);
+
+	/* set multicolor LED brightness */
+	int (*multicolor_brightness_fn)(struct lp5812_led *led);
+
+	/* additional device specific attributes */
+	const struct attribute_group *dev_attr_group;
+};
+
+struct lp5812_led_config {
+	const char *name;
+	int led_id[LED_COLOR_ID_MAX];
+	u8 color_id[LED_COLOR_ID_MAX];
+	u8 max_current[LED_COLOR_ID_MAX];
+	int num_colors;
+	u8 chan_nr;
+	bool is_sc_led;
+};
+
+struct lp5812_data {
+	struct lp5812_led_config *led_config;
+	u8 num_channels;
+	const char *label;
+};
+
+struct lp5812_chip {
+	struct i2c_client *i2c_cl;
+	struct mutex lock; /* Protects reg access */
+	struct lp5812_data *pdata;
+	const struct lp5812_device_config *cfg;
+	union u_scan_order u_scan_order;
+	union u_drive_mode u_drive_mode;
+};
+
+struct lp5812_led {
+	int chan_nr;
+	struct led_classdev cdev;
+	struct led_classdev_mc mc_cdev;
+	u8 brightness;
+	struct lp5812_chip *chip;
+};
+
+#endif /*_LP5812_H_*/
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v10 3/4] docs: ABI: Document LP5812 LED sysfs interfaces
  2025-06-18 18:32 [PATCH v10 0/4] leds: add new LED driver for TI LP5812 Nam Tran
  2025-06-18 18:32 ` [PATCH v10 1/4] dt-bindings: leds: add TI/National Semiconductor LP5812 LED Driver Nam Tran
  2025-06-18 18:32 ` [PATCH v10 2/4] " Nam Tran
@ 2025-06-18 18:32 ` Nam Tran
  2025-06-26 13:05   ` Lee Jones
  2025-06-18 18:32 ` [PATCH v10 4/4] docs: leds: Document TI LP5812 LED driver Nam Tran
  3 siblings, 1 reply; 9+ messages in thread
From: Nam Tran @ 2025-06-18 18:32 UTC (permalink / raw)
  To: lee
  Cc: pavel, rdunlap, christophe.jaillet, krzk+dt, robh, conor+dt,
	corbet, linux-leds, linux-kernel, devicetree, linux-doc, Nam Tran

The LP5812 is a 4x3 matrix RGB LED driver with autonomous animation
engine control.

The driver provides interfaces to configure LED modes manual/autonomous,
set PWM/DC values, and manage autonomous animation engines.

Signed-off-by: Nam Tran <trannamatk@gmail.com>
---
 .../ABI/testing/sysfs-bus-i2c-devices-lp5812  |  40 ++++++
 .../ABI/testing/sysfs-class-led-lp5812        | 120 ++++++++++++++++++
 MAINTAINERS                                   |   2 +
 3 files changed, 162 insertions(+)
 create mode 100644 Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
 create mode 100644 Documentation/ABI/testing/sysfs-class-led-lp5812

diff --git a/Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812 b/Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
new file mode 100644
index 000000000000..a8b1d5c52a82
--- /dev/null
+++ b/Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
@@ -0,0 +1,40 @@
+What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/dev_config
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Configures drive mode and scan order. (WO)
+		Some valid values: tcmscan:4:0:1:2:3 (default), tcmscan:3:0:1:2, mixscan:2:2:0:3, mixscan:3:0:1:2:3
+
+What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/device_command
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Issues device-level commands. (WO)
+		Valid values: "update", "start", "stop", "pause", "continue"
+
+What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/sw_reset
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Triggers a software reset of the device. (WO)
+		1 - resets device
+		0 - does not reset device
+
+What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/fault_clear
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Clears fault status. (WO)
+		1 - clears fault status
+		0 - does not clear fault status
+
+What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/tsd_config_status
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Report the current thermal shutdown config status. (RO)
diff --git a/Documentation/ABI/testing/sysfs-class-led-lp5812 b/Documentation/ABI/testing/sysfs-class-led-lp5812
new file mode 100644
index 000000000000..a6cb49fb523f
--- /dev/null
+++ b/Documentation/ABI/testing/sysfs-class-led-lp5812
@@ -0,0 +1,120 @@
+What:		/sys/class/leds/led_<id>/activate
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Activate or deactivate the specified LED channel. (WO)
+		1 - Activate
+		0 - Deactivate
+
+What:		/sys/class/leds/led_<id>/mode
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Selects LED operation mode. (WO)
+		Valid values: "manual", "autonomous"
+
+What:		/sys/class/leds/led_<id>/led_current
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		DC current level. (WO)
+		Valid values: 0 - 255
+
+What:		/sys/class/leds/led_<id>/max_current
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Shows maximum DC current bit setting. (RO)
+		0 (default) means the LED maximum current is set to 25.5 mA.
+		1 means the LED maximum current is set to 51 mA.
+
+What:		/sys/class/leds/led_<id>/pwm_dimming_scale
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		PWM dimming scale type. (WO)
+		Valid values: "linear", "exponential"
+
+What:		/sys/class/leds/led_<id>/pwm_phase_align
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Configures PWM phase alignment. (WO)
+		Valid values: "forward", "middle", "backward"
+
+What:		/sys/class/leds/led_<id>/auto_time_pause_at_start
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Controls start pause time. (WO)
+		Valid values: 0 - 15
+
+What:		/sys/class/leds/led_<id>/auto_time_pause_at_stop
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Controls stop pause time. (WO)
+		Valid values: 0 - 15
+
+What:		/sys/class/leds/led_<id>/auto_playback_eau_number
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Active AEU number of led_<id> selection. (WO)
+		Valid values: 0 - 3
+		0 - only use AEU1
+		1 - use AEU1 and AEU2
+		2 - use AEU1, AEU2 and AEU3
+		3 - use AEU1, AEU2 and AEU3 (the same as 2)
+
+What:		/sys/class/leds/led_<id>/auto_playback_time
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		Animation pattern playback times of led_<id>. (WO)
+		Valid values: 0 - 15
+		0 - 14 means 0 - 14 times, 15 means infinite times
+
+What:		/sys/class/leds/led_<id>/aeu_playback_time
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		AEU pattern playback times of led_<id>. (WO)
+		Format: aeu<x>:<y> where x (1 - 3) indicates the AEU number,
+		y (0 - 3) indicates the number of playback times.
+
+What:		/sys/class/leds/led_<id>/aeu_pwm_<pwm_id>
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		AEU PWM duty cycle setting. (WO)
+		Format: aeu<x>:<y> where x (1 - 3) indicates the AEU number,
+		y (0 - 255) indicates pwm value.
+
+What:		/sys/class/leds/led_<id>/aeu_slop_time_<st_id>
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		AEU slop time setting. (WO)
+		Format: aeu<x>:<y> where x (1 - 3) indicates the AEU number,
+		y (0 - 15) indicates the slop time value.
+
+What:		/sys/class/leds/led_<id>/lod_lsd
+Date:		July 2025
+KernelVersion:	6.17
+Contact:	Nam Tran <trannamatk@gmail.com>
+Description:
+		0 0 mean no lod and lsd fault detected, 1 1 mean lod and lsd fault detected (RO)
diff --git a/MAINTAINERS b/MAINTAINERS
index b4eb3265c800..cdba86f1768b 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -24565,6 +24565,8 @@ TEXAS INSTRUMENTS' LP5812 RGB LED DRIVER
 M:	Nam Tran <trannamatk@gmail.com>
 L:	linux-leds@vger.kernel.org
 S:	Maintained
+F:	Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
+F:	Documentation/ABI/testing/sysfs-class-led-lp5812
 F:	Documentation/devicetree/bindings/leds/ti,lp5812.yaml
 F:	drivers/leds/rgb/Kconfig
 F:	drivers/leds/rgb/Makefile
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v10 4/4] docs: leds: Document TI LP5812 LED driver
  2025-06-18 18:32 [PATCH v10 0/4] leds: add new LED driver for TI LP5812 Nam Tran
                   ` (2 preceding siblings ...)
  2025-06-18 18:32 ` [PATCH v10 3/4] docs: ABI: Document LP5812 LED sysfs interfaces Nam Tran
@ 2025-06-18 18:32 ` Nam Tran
  3 siblings, 0 replies; 9+ messages in thread
From: Nam Tran @ 2025-06-18 18:32 UTC (permalink / raw)
  To: lee
  Cc: pavel, rdunlap, christophe.jaillet, krzk+dt, robh, conor+dt,
	corbet, linux-leds, linux-kernel, devicetree, linux-doc, Nam Tran

The driver provides sysfs interfaces to control and configure the
LP5812 device and its LED channels.

The documetation describes the chip's capabilities, sysfs interface,
and usage examples.

Signed-off-by: Nam Tran <trannamatk@gmail.com>
---
 Documentation/leds/index.rst       |  1 +
 Documentation/leds/leds-lp5812.rst | 84 ++++++++++++++++++++++++++++++
 MAINTAINERS                        |  1 +
 3 files changed, 86 insertions(+)
 create mode 100644 Documentation/leds/leds-lp5812.rst

diff --git a/Documentation/leds/index.rst b/Documentation/leds/index.rst
index 76fae171039c..bebf44004278 100644
--- a/Documentation/leds/index.rst
+++ b/Documentation/leds/index.rst
@@ -25,6 +25,7 @@ LEDs
    leds-lp5523
    leds-lp5562
    leds-lp55xx
+   leds-lp5812
    leds-mlxcpld
    leds-mt6370-rgb
    leds-sc27xx
diff --git a/Documentation/leds/leds-lp5812.rst b/Documentation/leds/leds-lp5812.rst
new file mode 100644
index 000000000000..4538cfdf415d
--- /dev/null
+++ b/Documentation/leds/leds-lp5812.rst
@@ -0,0 +1,84 @@
+========================
+Kernel driver for lp5812
+========================
+
+* TI/National Semiconductor LP5812 LED Driver
+* Datasheet: https://www.ti.com/product/LP5812#tech-docs
+
+Authors: Jared Zhou <jared-zhou@ti.com>
+
+Description
+===========
+
+The LP5812 is a 4x3 matrix LED driver with support for both manual and
+autonomous animation control. It provides features such as:
+
+- PWM dimming and DC current control
+- Slope time configuration
+- Autonomous Engine Unit (AEU) for LED animation playback
+- Flexible scan and drive mode configuration
+
+This driver provides sysfs interfaces to control and configure the LP5812
+device and its LED channels.
+
+Sysfs Interface
+===============
+
+LP5812 device exposes a chip-level sysfs group:
+  /sys/bus/i2c/devices/<i2c-dev-addr>/lp5812_chip_setup/
+
+The following attributes are available at chip level:
+  - dev_config: Configure drive mode and scan order (RW)
+  - device_command: Issue device-wide commands (WO)
+  - sw_reset: Reset the hardware (WO)
+  - fault_clear: Clear any device faults (WO)
+  - tsd_config_status: Read thermal shutdown config status (RO)
+
+Each LED channel is exposed as:
+  /sys/class/leds/led_<id>/
+
+Each LED exposes the following attributes:
+  - activate: Activate or deactivate the LED (WO)
+  - mode: manual or autonomous mode (WO)
+  - led_current: DC current value (0–255) (WO)
+  - max_current: maximum DC current bit setting (RO)
+  - pwm_dimming_scale: linear or exponential (WO)
+  - pwm_phase_align: PWM alignment mode (WO)
+  - auto_time_pause_at_start: config start pause time (WO)
+  - auto_time_pause_at_stop: config stop pause time (WO)
+  - auto_playback_eau_number: Activate AEU number (WO)
+  - auto_playback_time: Animation pattern playback times (WO)
+  - aeu_playback_time: playback times for the specific AEU (WO)
+  - aeu_pwm_<pwm_id>: PWM duty cycle setting for the specific AEU (WO)
+  - aeu_slop_time_<st_id>: slop time setting for the specific AEU (WO)
+  - lod_lsd: lod and lsd fault detected status (RO)
+
+Example Usage
+=============
+
+To control led_A in manual mode::
+    echo 1 1 1 > /sys/class/leds/LED_A/activate
+    echo manual manual manual > /sys/class/leds/LED_A/mode
+    echo 100 100 100 > /sys/class/leds/LED_A/led_current
+    echo 50 50 50 > /sys/class/leds/LED_A/multi-intensity
+
+To control led_A in autonomous mode::
+    echo 1 1 1 > /sys/bus/i2c/drivers/lp5812/xxxx/led_A/activate
+    echo autonomous autonomous autonomous > /sys/class/leds/LED_A/mode
+    echo linear exponential linear > /sys/class/leds/led_<id>/pwm_dimming_scale
+    echo forward forward backward > /sys/class/leds/led_<id>/pwm_phase_align
+    echo 0 0 0 > /sys/class/leds/led_A/auto_playback_eau_number # only use AEU1
+    echo 10 10 10 > /sys/class/leds/led_A/auto_time_pause_at_start
+    echo 10 10 10 > /sys/class/leds/led_A/auto_time_pause_at_stop
+    echo 15 15 15 > /sys/class/leds/led_A/auto_playback_time
+    echo aeu1:100 100 100 > /sys/class/leds/led_A/aeu_pwm1
+    echo aeu1:100 100 100 > /sys/class/leds/led_A/aeu_pwm2
+    echo aeu1:100 100 100 > /sys/class/leds/led_A/aeu_pwm3
+    echo aeu1:100 100 100 > /sys/class/leds/led_A/aeu_pwm4
+    echo aeu1:100 100 100 > /sys/class/leds/led_A/aeu_pwm5
+    echo aeu1:5 5 5 > /sys/class/leds/led_A/aeu_slop_time_t1
+    echo aeu1:5 5 5 > /sys/class/leds/led_A/aeu_slop_time_t2
+    echo aeu1:5 5 5 > /sys/class/leds/led_A/aeu_slop_time_t3
+    echo aeu1:5 5 5 > /sys/class/leds/led_A/aeu_slop_time_t4
+    echo aeu1:1 1 1 > /sys/class/leds/led_A/aeu_playback_time
+    echo start > /sys/bus/i2c/drivers/lp5812/xxxx/lp5812_chip_setup/device_command
diff --git a/MAINTAINERS b/MAINTAINERS
index cdba86f1768b..4fefc7fb7a9a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -24568,6 +24568,7 @@ S:	Maintained
 F:	Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
 F:	Documentation/ABI/testing/sysfs-class-led-lp5812
 F:	Documentation/devicetree/bindings/leds/ti,lp5812.yaml
+F:	Documentation/leds/leds-lp5812.rst
 F:	drivers/leds/rgb/Kconfig
 F:	drivers/leds/rgb/Makefile
 F:	drivers/leds/rgb/leds-lp5812.c
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH v10 1/4] dt-bindings: leds: add TI/National Semiconductor LP5812 LED Driver
  2025-06-18 18:32 ` [PATCH v10 1/4] dt-bindings: leds: add TI/National Semiconductor LP5812 LED Driver Nam Tran
@ 2025-06-23  6:30   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 9+ messages in thread
From: Krzysztof Kozlowski @ 2025-06-23  6:30 UTC (permalink / raw)
  To: Nam Tran
  Cc: lee, pavel, rdunlap, christophe.jaillet, krzk+dt, robh, conor+dt,
	corbet, linux-leds, linux-kernel, devicetree, linux-doc

On Thu, Jun 19, 2025 at 01:32:02AM +0700, Nam Tran wrote:
> The LP5812 is a 4x3 RGB LED driver with an autonomous animation
> engine and time-cross-multiplexing (TCM) support for up to 12 LEDs
> or 4 RGB LEDs. It supports both analog (256 levels) and PWM (8-bit)
> dimming, including exponential PWM for smooth brightness control.
> 
> Signed-off-by: Nam Tran <trannamatk@gmail.com>
> ---
>  .../devicetree/bindings/leds/ti,lp5812.yaml   | 229 ++++++++++++++++++
>  MAINTAINERS                                   |   6 +
>  2 files changed, 235 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/leds/ti,lp5812.yaml

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v10 2/4] leds: add TI/National Semiconductor LP5812 LED Driver
  2025-06-18 18:32 ` [PATCH v10 2/4] " Nam Tran
@ 2025-06-26 13:02   ` Lee Jones
  2025-07-06 10:28     ` Nam Tran
  0 siblings, 1 reply; 9+ messages in thread
From: Lee Jones @ 2025-06-26 13:02 UTC (permalink / raw)
  To: Nam Tran
  Cc: pavel, rdunlap, christophe.jaillet, krzk+dt, robh, conor+dt,
	corbet, linux-leds, linux-kernel, devicetree, linux-doc

On Thu, 19 Jun 2025, Nam Tran wrote:

> The LP5812 is a 4x3 matrix RGB LED driver with an autonomous animation
> engine and time-cross-multiplexing (TCM) support for up to 12 LEDs or
> 4 RGB LEDs. Each LED can be configured through the related registers
> to realize vivid and fancy lighting effects.
> 
> Signed-off-by: Nam Tran <trannamatk@gmail.com>
> ---
>  MAINTAINERS                    |    4 +
>  drivers/leds/rgb/Kconfig       |   13 +
>  drivers/leds/rgb/Makefile      |    1 +
>  drivers/leds/rgb/leds-lp5812.c | 1943 ++++++++++++++++++++++++++++++++
>  drivers/leds/rgb/leds-lp5812.h |  227 ++++
>  5 files changed, 2188 insertions(+)

Reviewing a 2k+ line driver is not fun!

Better to reduce it down to bare bones and add new functionality over
time.  Or at least over different patches within a set.

>  create mode 100644 drivers/leds/rgb/leds-lp5812.c
>  create mode 100644 drivers/leds/rgb/leds-lp5812.h
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 83a779dc9bcd..b4eb3265c800 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -24566,6 +24566,10 @@ M:	Nam Tran <trannamatk@gmail.com>
>  L:	linux-leds@vger.kernel.org
>  S:	Maintained
>  F:	Documentation/devicetree/bindings/leds/ti,lp5812.yaml
> +F:	drivers/leds/rgb/Kconfig
> +F:	drivers/leds/rgb/Makefile
> +F:	drivers/leds/rgb/leds-lp5812.c
> +F:	drivers/leds/rgb/leds-lp5812.h
>  
>  TEXAS INSTRUMENTS' LB8864 LED BACKLIGHT DRIVER
>  M:	Alexander Sverdlin <alexander.sverdlin@siemens.com>
> diff --git a/drivers/leds/rgb/Kconfig b/drivers/leds/rgb/Kconfig
> index 222d943d826a..28ef4c487367 100644
> --- a/drivers/leds/rgb/Kconfig
> +++ b/drivers/leds/rgb/Kconfig
> @@ -26,6 +26,19 @@ config LEDS_KTD202X
>  	  To compile this driver as a module, choose M here: the module
>  	  will be called leds-ktd202x.
>  
> +config LEDS_LP5812
> +	tristate "LED support for Texas Instruments LP5812"
> +	depends on I2C
> +	help
> +	  If you say Y here you get support for TI LP5812 LED driver.
> +	  The LP5812 is a 4x3 matrix RGB LED driver with autonomous
> +	  animation engine control.
> +
> +	  To compile this driver as a module, choose M here: the
> +	  module will be called leds-lp5812.
> +
> +	  If unsure, say N.
> +
>  config LEDS_NCP5623
>  	tristate "LED support for NCP5623"
>  	depends on I2C
> diff --git a/drivers/leds/rgb/Makefile b/drivers/leds/rgb/Makefile
> index a501fd27f179..be45991f63f5 100644
> --- a/drivers/leds/rgb/Makefile
> +++ b/drivers/leds/rgb/Makefile
> @@ -2,6 +2,7 @@
>  
>  obj-$(CONFIG_LEDS_GROUP_MULTICOLOR)	+= leds-group-multicolor.o
>  obj-$(CONFIG_LEDS_KTD202X)		+= leds-ktd202x.o
> +obj-$(CONFIG_LEDS_LP5812)		+= leds-lp5812.o
>  obj-$(CONFIG_LEDS_NCP5623)		+= leds-ncp5623.o
>  obj-$(CONFIG_LEDS_PWM_MULTICOLOR)	+= leds-pwm-multicolor.o
>  obj-$(CONFIG_LEDS_QCOM_LPG)		+= leds-qcom-lpg.o
> diff --git a/drivers/leds/rgb/leds-lp5812.c b/drivers/leds/rgb/leds-lp5812.c
> new file mode 100644
> index 000000000000..799c5c24685c
> --- /dev/null
> +++ b/drivers/leds/rgb/leds-lp5812.c
> @@ -0,0 +1,1943 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * LP5812 LED driver
> + *
> + * Copyright (C) 2025 Texas Instruments
> + *
> + * Author: Jared Zhou <jared-zhou@ti.com>
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/module.h>
> +#include <linux/init.h>
> +#include <linux/i2c.h>
> +#include <linux/sysfs.h>
> +#include <linux/mutex.h>
> +#include <linux/types.h>
> +#include <linux/leds.h>
> +#include <linux/delay.h>
> +#include <linux/led-class-multicolor.h>
> +#include "leds-lp5812.h"

Alphabetical.

> +#define LP5812_SC_LED "SC_LED"
> +#define LP5812_MC_LED "MC_LED"
> +
> +#define LP5812_AUTO_PAUSE_ADDR(chan)  (LP5812_AEU_BASE + (chan) * 26)
> +#define LP5812_AUTO_PLAYBACK_ADDR(chan)  (LP5812_AEU_BASE + (chan) * 260 + 1)

Bring these 2 down to the line below like the others.  Just to make it
more uniform / easier to read.

> +#define LP5812_AEU_PWM_ADDR(chan, aeu, pwm_chan)  \
> +	(LP5812_AEU_BASE + (chan) * 26 + ((aeu) - 1) * 8 + 2 + (pwm_chan) - 1)
> +#define LP5812_AEU_SLOPE_TIME_ADDR(chan, aeu, slope_chan)  \
> +	(LP5812_AEU_BASE + (chan) * 26 + ((aeu) - 1) * 8 + 2 + 5 + ((slope_chan) / 2))
> +#define LP5812_AEU_PLAYBACK_ADDR(chan, aeu)  \
> +	(LP5812_AEU_BASE + (chan) * 26 + ((aeu) - 1) * 8 + 2 + 5 + 2)
> +
> +#define to_lp5812_led(x) container_of(x, struct lp5812_data, kobj)
> +#define to_anim_engine_unit(x) container_of(x, struct anim_engine_unit, kobj)
> +
> +static int lp5812_read_tsd_config_status(struct lp5812_chip *chip, u8 *reg_val);

No forward declarations.  Rearrange the functions instead.

> +
> +/* Begin common functions */

This comment is superfluous.

> +static struct lp5812_led *cdev_to_lp5812_led(struct led_classdev *cdev)
> +{
> +	return container_of(cdev, struct lp5812_led, cdev);
> +}
> +
> +static struct lp5812_led *mcled_cdev_to_lp5812_led(struct led_classdev_mc *mc_cdev)
> +{
> +	return container_of(mc_cdev, struct lp5812_led, mc_cdev);
> +}

Are you sure you need 4 of these.  This seems excessive.

> +static struct lp5812_led *dev_to_lp5812_led(struct device *dev)
> +{
> +	return cdev_to_lp5812_led(dev_get_drvdata(dev));
> +}
> +
> +static struct lp5812_led *dev_to_lp5812_led_mc(struct device *dev)
> +{
> +	return mcled_cdev_to_lp5812_led(dev_get_drvdata(dev));
> +}
> +
> +static int lp5812_write(struct lp5812_chip *chip, u16 reg, u8 val)
> +{
> +	int ret;

Nit: Small variables at the bottom.

> +	struct i2c_msg msg;
> +	struct device *dev = &chip->i2c_cl->dev;
> +	u8 extracted_bits; /* save 9th and 8th bit of reg address */

All comments should start with an uppercase char.

Place this comment where you do the work.

Save them to do what?  More information please.

> +	u8 buf[2] = {(u8)(reg & 0xFF), val};
> +
> +	extracted_bits = (reg >> 8) & 0x03;
> +	msg.addr = (chip->i2c_cl->addr << 2) | extracted_bits;
> +	msg.flags = 0;
> +	msg.len = sizeof(buf);
> +	msg.buf = buf;
> +
> +	ret = i2c_transfer(chip->i2c_cl->adapter, &msg, 1);
> +	if (ret != 1) {
> +		dev_err(dev, "i2c write error, ret=%d\n", ret);

I2C

> +		ret = ret < 0 ? ret : -EIO;
> +	} else {
> +		ret = 0;
> +	}
> +
> +	return ret;
> +}
> +
> +static int lp5812_read(struct lp5812_chip *chip, u16 reg, u8 *val)
> +{
> +	int ret;
> +	u8 ret_val;  /* lp5812_chip return value */

/* Value returned by the hardware */   ?

> +	u8 extracted_bits; /* save 9th and 8th bit of reg address */
> +	u8 converted_reg;  /* extracted 8bit from reg */

Place all of these comments in the code.

Saved and extracted for what purpose?  Tell us about the h/w.

> +	struct device *dev = &chip->i2c_cl->dev;
> +	struct i2c_msg msgs[2];
> +
> +	extracted_bits = (reg >> 8) & 0x03;
> +	converted_reg = (u8)(reg & 0xFF);
> +
> +	msgs[0].addr = (chip->i2c_cl->addr << 2) | extracted_bits;
> +	msgs[0].flags = 0;
> +	msgs[0].len = 1;
> +	msgs[0].buf = &converted_reg;
> +
> +	msgs[1].addr = (chip->i2c_cl->addr << 2) | extracted_bits;
> +	msgs[1].flags = I2C_M_RD;
> +	msgs[1].len = 1;
> +	msgs[1].buf = &ret_val;
> +
> +	ret = i2c_transfer(chip->i2c_cl->adapter, msgs, 2);
> +	if (ret != 2) {
> +		dev_err(dev, "Read reg value error, ret=%d\n", ret);

Why is this different to the one above?

"I2C read error" ?

> +		*val = 0;
> +		ret = ret < 0 ? ret : -EIO;
> +	} else {
> +		*val = ret_val;
> +		ret = 0;
> +	}
> +
> +	return ret;
> +}
> +
> +static int lp5812_parse_common_child(struct device_node *child,

'child' here is Device Tree terminology.

Speak in terms of the hardware / device instead.

> +				     struct lp5812_led_config *cfg,
> +				     int child_number, int color_number)
> +{
> +	int reg, ret;
> +
> +	ret = of_property_read_u32(child, "reg", &reg);
> +	if (ret)
> +		return ret;
> +
> +	cfg[child_number].led_id[color_number] = reg;
> +
> +	of_property_read_u8(child, "led-max-microamp",
> +			    &cfg[child_number].max_current[color_number]);
> +
> +	return 0;
> +}
> +
> +static int lp5812_parse_multi_led_child(struct device_node *child,
> +					struct lp5812_led_config *cfg,
> +					int child_number, int color_number)
> +{
> +	int color_id, ret;
> +
> +	ret = of_property_read_u32(child, "color", &color_id);
> +	if (ret)
> +		return ret;
> +
> +	cfg[child_number].color_id[color_number] = color_id;
> +	return 0;
> +}
> +
> +static int lp5812_parse_multi_led(struct device_node *np,
> +				  struct lp5812_led_config *cfg,
> +				  int child_number)
> +{
> +	int num_colors = 0, ret;
> +
> +	for_each_available_child_of_node_scoped(np, child) {
> +		ret = lp5812_parse_common_child(child, cfg,
> +						child_number, num_colors);
> +		if (ret)
> +			return ret;
> +
> +		ret = lp5812_parse_multi_led_child(child, cfg, child_number,
> +						   num_colors);
> +		if (ret)
> +			return ret;
> +
> +		num_colors++;
> +	}
> +
> +	cfg[child_number].num_colors = num_colors;
> +	cfg[child_number].is_sc_led = 0;
> +
> +	return 0;
> +}
> +
> +static int lp5812_parse_single_led(struct device_node *np,
> +				   struct lp5812_led_config *cfg,
> +				   int child_number)
> +{
> +	int ret;
> +
> +	ret = lp5812_parse_common_child(np, cfg, child_number, 0);
> +	if (ret)
> +		return ret;
> +
> +	cfg[child_number].num_colors = 1;
> +	cfg[child_number].is_sc_led = 1;
> +
> +	return 0;
> +}

Wouldn't it make things twice as easy if we took the multi path every
time and just make the color optional?

> +static int lp5812_parse_logical_led(struct device_node *np,
> +				    struct lp5812_led_config *cfg,
> +				    int child_number)
> +{
> +	int chan_nr, ret;
> +
> +	of_property_read_string(np, "label", &cfg[child_number].name);
> +
> +	ret = of_property_read_u32(np, "reg", &chan_nr);
> +	if (ret)
> +		return ret;
> +
> +	cfg[child_number].chan_nr = chan_nr;
> +
> +	if (of_node_name_eq(np, "multi-led"))
> +		return lp5812_parse_multi_led(np, cfg, child_number);
> +	else
> +		return lp5812_parse_single_led(np, cfg, child_number);

Most devices have more than one LED and the supporting code can often
handle one or more than one LEDs.  Why do we need to take two different
paths here to handle this?

> +}
> +
> +static struct lp5812_data *lp5812_of_populate_pdata(struct device *dev,
> +						    struct device_node *np,
> +						    struct lp5812_chip *chip)
> +{
> +	struct lp5812_data *pdata;
> +	struct lp5812_led_config *cfg;
> +	int num_channels, i = 0, ret;
> +
> +	pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);

pdata is collated and passed IN from the platform device registering
code.  Once we have it, it becomes device data, assuming we're not
passing it forward to yet another child device?

There are a few more comments below, but I have to stop reviewing now.
This is taking too much time and I have other pressing matters that need
my attention.

> +	if (!pdata)
> +		return ERR_PTR(-ENOMEM);
> +
> +	num_channels = of_get_available_child_count(np);
> +	if (num_channels == 0) {
> +		dev_err(dev, "no LED channels\n");
> +		return ERR_PTR(-EINVAL);
> +	}
> +
> +	cfg = devm_kcalloc(dev, num_channels, sizeof(*cfg), GFP_KERNEL);
> +	if (!cfg)
> +		return ERR_PTR(-ENOMEM);
> +
> +	pdata->led_config = &cfg[0];
> +	pdata->num_channels = num_channels;
> +
> +	for_each_available_child_of_node_scoped(np, child) {
> +		ret = lp5812_parse_logical_led(child, cfg, i);
> +		if (ret)
> +			return ERR_PTR(-EINVAL);
> +		i++;
> +	}
> +
> +	of_property_read_string(np, "label", &pdata->label);
> +
> +	return pdata;
> +}
> +
> +/* End common functions */
> +
> +/* Begin device functions */
> +static int lp5812_update_regs_config(struct lp5812_chip *chip)
> +{
> +	int ret;
> +	u8 reg_val; /* save register value */
> +
> +	ret = lp5812_write(chip, chip->cfg->reg_cmd_update.addr, LP5812_UPDATE_CMD_VAL);
> +	if (ret)
> +		return ret;
> +
> +	ret = lp5812_read_tsd_config_status(chip, &reg_val);
> +	if (ret == 0)
> +		return (int)(reg_val & 0x01);
> +
> +	return ret;
> +}
> +
> +static int lp5812_disable_all_leds(struct lp5812_chip *chip)
> +{
> +	int ret;
> +
> +	ret = lp5812_write(chip, chip->cfg->reg_led_en_1.addr, 0x00);
> +	if (ret)
> +		return ret;
> +	ret = lp5812_write(chip, chip->cfg->reg_led_en_2.addr, 0x00);
> +	if (ret)
> +		return ret;
> +
> +	return ret;
> +}
> +
> +static int lp5812_fault_clear(struct lp5812_chip *chip, u8 value)
> +{
> +	u8 reg_val;
> +
> +	if (value == 0)
> +		reg_val = LOD_CLEAR_VAL;
> +	else if (value == 1)
> +		reg_val = LSD_CLEAR_VAL;
> +	else if (value == 2)
> +		reg_val = TSD_CLEAR_VAL;
> +	else if (value == 3)
> +		reg_val = FAULT_CLEAR_ALL;
> +	else
> +		return -EINVAL;
> +
> +	return lp5812_write(chip, chip->cfg->reg_reset.addr, reg_val);
> +}
> +
> +static int lp5812_device_command(struct lp5812_chip *chip, enum device_command command)
> +{
> +	switch (command) {
> +	case LP5812_DEV_CMD_UPDATE:
> +		return lp5812_write(chip, chip->cfg->reg_cmd_update.addr, LP5812_UPDATE_CMD_VAL);
> +	case LP5812_DEV_CMD_START:
> +		return lp5812_write(chip, chip->cfg->reg_cmd_start.addr, LP5812_START_CMD_VAL);
> +	case LP5812_DEV_CMD_STOP:
> +		return lp5812_write(chip, chip->cfg->reg_cmd_stop.addr, LP5812_STOP_CMD_VAL);
> +	case LP5812_DEV_CMD_PAUSE:
> +		return lp5812_write(chip, chip->cfg->reg_cmd_pause.addr, LP5812_PAUSE_CMD_VAL);
> +	case LP5812_DEV_CMD_CONTINUE:
> +		return lp5812_write(chip, chip->cfg->reg_cmd_continue.addr,
> +			LP5812_CONTINUE_CMD_VAL);
> +	default:
> +		return -EINVAL;
> +	}
> +}
> +
> +static int lp5812_read_tsd_config_status(struct lp5812_chip *chip, u8 *reg_val)
> +{
> +	return lp5812_read(chip, chip->cfg->reg_tsd_config_status.addr, reg_val);
> +}
> +
> +static void set_mix_sel_led(struct lp5812_chip *chip, int mix_sel_led)
> +{
> +	if (mix_sel_led == 0)
> +		chip->u_drive_mode.s_drive_mode.mix_sel_led_0 = 1;
> +
> +	if (mix_sel_led == 1)
> +		chip->u_drive_mode.s_drive_mode.mix_sel_led_1 = 1;
> +
> +	if (mix_sel_led == 2)
> +		chip->u_drive_mode.s_drive_mode.mix_sel_led_2 = 1;
> +
> +	if (mix_sel_led == 3)
> +		chip->u_drive_mode.s_drive_mode.mix_sel_led_3 = 1;
> +}
> +
> +static ssize_t parse_drive_mode(struct lp5812_chip *chip, char *str)
> +{
> +	char *sub_str;
> +	int tcm_scan_num, mix_scan_num, mix_sel_led, scan_oder[4], i, ret;
> +
> +	chip->u_drive_mode.s_drive_mode.mix_sel_led_0 = 0;
> +	chip->u_drive_mode.s_drive_mode.mix_sel_led_1 = 0;
> +	chip->u_drive_mode.s_drive_mode.mix_sel_led_2 = 0;
> +	chip->u_drive_mode.s_drive_mode.mix_sel_led_3 = 0;
> +
> +	sub_str = strsep(&str, ":");
> +	if (sysfs_streq(sub_str, "direct_mode")) {
> +		chip->u_drive_mode.s_drive_mode.led_mode = 0;
> +	} else if (sysfs_streq(sub_str, "tcmscan")) {
> +		/* Get tcm scan number */
> +		sub_str = strsep(&str, ":");
> +		if (!sub_str)
> +			return -EINVAL;
> +		ret = kstrtoint(sub_str, 0, &tcm_scan_num);
> +		if (ret)
> +			return ret;
> +		if (tcm_scan_num < 0 || tcm_scan_num > 4)
> +			return -EINVAL;
> +		chip->u_drive_mode.s_drive_mode.led_mode = tcm_scan_num;
> +
> +		for (i = 0; i < tcm_scan_num; i++) {
> +			sub_str = strsep(&str, ":");
> +			if (!sub_str)
> +				return -EINVAL;
> +			ret = kstrtoint(sub_str, 0, &scan_oder[i]);
> +			if (ret)
> +				return ret;
> +		}
> +
> +		chip->u_scan_order.s_scan_order.scan_order_0 = scan_oder[0];
> +		chip->u_scan_order.s_scan_order.scan_order_1 = scan_oder[1];
> +		chip->u_scan_order.s_scan_order.scan_order_2 = scan_oder[2];
> +		chip->u_scan_order.s_scan_order.scan_order_3 = scan_oder[3];
> +	} else if (sysfs_streq(sub_str, "mixscan")) {
> +		/* Get mix scan number */
> +		sub_str = strsep(&str, ":");
> +		if (!sub_str)
> +			return -EINVAL;
> +		ret = kstrtoint(sub_str, 0, &mix_scan_num);
> +		if (ret)
> +			return ret;
> +		if (mix_scan_num < 0 || mix_scan_num > 3)
> +			return -EINVAL;
> +
> +		chip->u_drive_mode.s_drive_mode.led_mode = mix_scan_num + 4;
> +		/* Get mix_sel_led */
> +		sub_str = strsep(&str, ":");
> +		if (!sub_str)
> +			return -EINVAL;
> +		ret = kstrtoint(sub_str, 0, &mix_sel_led);
> +		if (ret)
> +			return ret;
> +		if (mix_sel_led < 0 || mix_sel_led > 3)
> +			return -EINVAL;
> +		set_mix_sel_led(chip, mix_sel_led);
> +
> +		for (i = 0; i < mix_scan_num; i++) {
> +			sub_str = strsep(&str, ":");
> +			if (!sub_str)
> +				return -EINVAL;
> +			ret = kstrtoint(sub_str, 0, &scan_oder[i]);
> +			if (ret)
> +				return ret;
> +			if (scan_oder[i] == mix_sel_led || scan_oder[i] < 0 || scan_oder[i] > 3)
> +				return -EINVAL;
> +		}
> +		chip->u_scan_order.s_scan_order.scan_order_0 = scan_oder[0];
> +		chip->u_scan_order.s_scan_order.scan_order_1 = scan_oder[1];
> +		chip->u_scan_order.s_scan_order.scan_order_2 = scan_oder[2];
> +		chip->u_scan_order.s_scan_order.scan_order_3 = scan_oder[3];
> +	} else {
> +		return -EINVAL;
> +	}
> +	return 0;
> +}
> +
> +static int lp5812_set_drive_mode_scan_order(struct lp5812_chip *chip)
> +{
> +	u8 val;
> +	int ret;
> +
> +	/* Set led mode */
> +	val = chip->u_drive_mode.drive_mode_val;
> +	ret = lp5812_write(chip, chip->cfg->reg_dev_config_1.addr, val);
> +	if (ret)
> +		return ret;
> +
> +	/* Setup scan order */
> +	val = chip->u_scan_order.scan_order_val;
> +	ret = lp5812_write(chip, chip->cfg->reg_dev_config_2.addr, val);
> +
> +	return ret;
> +}
> +
> +static ssize_t dev_config_store(struct device *dev,
> +				struct device_attribute *attr,
> +				const char *buf, size_t len)
> +{
> +	int ret;
> +	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
> +	struct lp5812_chip *chip = led->chip;
> +
> +	guard(mutex)(&chip->lock);
> +	ret = parse_drive_mode(chip, (char *)buf);
> +	if (ret)
> +		return ret;
> +
> +	ret = lp5812_set_drive_mode_scan_order(chip);
> +	if (ret)
> +		return ret;
> +
> +	ret = lp5812_update_regs_config(chip);
> +	if (ret)
> +		return ret;
> +
> +	ret = lp5812_disable_all_leds(chip);
> +	if (ret)
> +		return ret;
> +
> +	return len;
> +}
> +
> +static ssize_t device_command_store(struct device *dev,
> +				    struct device_attribute *attr,
> +				    const char *buf, size_t len)
> +{
> +	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
> +	struct lp5812_chip *chip = led->chip;
> +	enum device_command cmd;
> +
> +	if (sysfs_streq(buf, "update"))
> +		cmd = LP5812_DEV_CMD_UPDATE;
> +	else if (sysfs_streq(buf, "start"))
> +		cmd = LP5812_DEV_CMD_START;
> +	else if (sysfs_streq(buf, "stop"))
> +		cmd = LP5812_DEV_CMD_STOP;
> +	else if (sysfs_streq(buf, "pause"))
> +		cmd = LP5812_DEV_CMD_PAUSE;
> +	else if (sysfs_streq(buf, "continue"))
> +		cmd = LP5812_DEV_CMD_CONTINUE;
> +	else
> +		return -EINVAL;
> +
> +	guard(mutex)(&chip->lock);
> +	lp5812_device_command(led->chip, cmd);
> +	return len;
> +}
> +
> +static ssize_t fault_clear_store(struct device *dev,
> +				 struct device_attribute *attr,
> +				 const char *buf, size_t len)
> +{
> +	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
> +	struct lp5812_chip *chip = led->chip;
> +	int fault_clear, ret;
> +
> +	ret = kstrtoint(buf, 0, &fault_clear);
> +	if (ret)
> +		return ret;
> +
> +	if (fault_clear < 0 || fault_clear > 3)
> +		return -EINVAL;
> +
> +	guard(mutex)(&chip->lock);
> +	ret = lp5812_fault_clear(chip, fault_clear);
> +	if (ret)
> +		return -EIO;
> +
> +	return len;
> +}
> +
> +static ssize_t tsd_config_status_show(struct device *dev,
> +				      struct device_attribute *attr, char *buf)
> +{
> +	u8 reg_val;
> +	int tsd_stat, config_stat, ret;
> +	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
> +	struct lp5812_chip *chip = led->chip;
> +
> +	guard(mutex)(&chip->lock);
> +	ret = lp5812_read(chip, chip->cfg->reg_tsd_config_status.addr, &reg_val);
> +	if (ret)
> +		return -EIO;
> +	tsd_stat = (reg_val >> 1) & 0x01;
> +	config_stat = reg_val & 0x01;
> +
> +	return sysfs_emit(buf, "%d %d\n", tsd_stat, config_stat);
> +}
> +
> +static ssize_t sw_reset_store(struct device *dev, struct device_attribute *attr,
> +			      const char *buf, size_t len)
> +{
> +	int reset, ret;
> +	struct lp5812_led *led = i2c_get_clientdata(to_i2c_client(dev));
> +	struct lp5812_chip *chip = led->chip;
> +
> +	ret = kstrtoint(buf, 0, &reset);
> +	if (ret)
> +		return ret;
> +
> +	if (reset != 1)
> +		return -EINVAL;
> +
> +	guard(mutex)(&chip->lock);
> +	ret = lp5812_write(chip, chip->cfg->reg_reset.addr, LP5812_RESET);
> +	if (ret)
> +		return -EIO;
> +
> +	return len;
> +}
> +
> +static void lp5812_deinit_device(struct lp5812_chip *chip)
> +{
> +	(void)lp5812_disable_all_leds(chip);
> +	(void)lp5812_write(chip, chip->cfg->reg_chip_en.addr, (u8)0);
> +}
> +
> +static int lp5812_init_device(struct lp5812_chip *chip)
> +{
> +	int ret;
> +
> +	usleep_range(1000, 1100);
> +
> +	ret = lp5812_write(chip, chip->cfg->reg_chip_en.addr, (u8)1);
> +	if (ret) {
> +		dev_err(&chip->i2c_cl->dev, "lp5812_enable_disable failed\n");
> +		return ret;
> +	}
> +
> +	ret = lp5812_write(chip, chip->cfg->reg_dev_config_12.addr, 0x0B);
> +	if (ret) {
> +		dev_err(&chip->i2c_cl->dev, "write 0x0B to DEV_CONFIG12 failed\n");
> +		return ret;
> +	}
> +
> +	ret = lp5812_update_regs_config(chip);
> +	if (ret) {
> +		dev_err(&chip->i2c_cl->dev, "lp5812_update_regs_config failed\n");
> +		return ret;
> +	}
> +
> +	return 0;
> +}
> +
> +/* End device functions */
> +
> +/* Begin led functions*/
> +static int lp5812_read_lod_status(struct lp5812_chip *chip, int led_number, u8 *val)
> +{
> +	int ret;
> +	u16 reg;
> +	u8 reg_val;
> +
> +	if (!val)
> +		return -1;
> +
> +	if (led_number < 0x8)
> +		reg = chip->cfg->reg_lod_status_base.addr;
> +	else
> +		reg = chip->cfg->reg_lod_status_base.addr + 1;
> +
> +	ret = lp5812_read(chip, reg, &reg_val);
> +	if (ret)
> +		return ret;
> +
> +	*val = (reg_val & (1 << (led_number % 8))) ? 1 : 0;
> +
> +	return ret;
> +}
> +
> +static int lp5812_read_lsd_status(struct lp5812_chip *chip, int led_number, u8 *val)
> +{
> +	int ret;
> +	u16 reg;
> +	u8 reg_val;
> +
> +	if (!val)
> +		return -1;
> +
> +	if (led_number < 0x8)
> +		reg = chip->cfg->reg_lsd_status_base.addr;
> +	else
> +		reg = chip->cfg->reg_lsd_status_base.addr + 1;
> +
> +	ret = lp5812_read(chip, reg, &reg_val);
> +	if (ret)
> +		return ret;
> +
> +	*val = (reg_val & (1 << (led_number % 8))) ? 1 : 0;
> +
> +	return ret;
> +}
> +
> +static int lp5812_set_led_mode(struct lp5812_chip *chip, int led_number,
> +			       enum control_mode mode)
> +{
> +	int ret;
> +	u16 reg;
> +	u8 reg_val;
> +
> +	if (led_number <= 7)
> +		reg = chip->cfg->reg_dev_config_3.addr;
> +	else
> +		reg = chip->cfg->reg_dev_config_4.addr;
> +
> +	ret = lp5812_read(chip, reg, &reg_val);
> +	if (ret)
> +		return ret;
> +
> +	if (mode == LP5812_MODE_MANUAL)
> +		reg_val &= ~(1 << (led_number % 8));
> +	else
> +		reg_val |= (1 << (led_number % 8));
> +
> +	ret = lp5812_write(chip, reg, reg_val);
> +	if (ret)
> +		return ret;
> +
> +	ret = lp5812_update_regs_config(chip);
> +
> +	return ret;
> +}
> +
> +static int lp5812_get_led_mode(struct lp5812_chip *chip, int led_number,
> +			       enum control_mode *mode)
> +{
> +	int ret;
> +	u16 reg;
> +	u8 reg_val;
> +
> +	if (led_number <= 7)
> +		reg = chip->cfg->reg_dev_config_3.addr;
> +	else
> +		reg = chip->cfg->reg_dev_config_4.addr;
> +
> +	ret = lp5812_read(chip, reg, &reg_val);
> +	if (ret)
> +		return ret;
> +
> +	*mode = (reg_val & (1 << (led_number % 8))) ? LP5812_MODE_AUTONOMOUS : LP5812_MODE_MANUAL;
> +	return 0;
> +}
> +
> +static int lp5812_set_pwm_dimming_scale(struct lp5812_chip *chip, int led_number,
> +					enum pwm_dimming_scale scale)
> +{
> +	int ret;
> +	u16 reg;
> +	u8 reg_val;
> +
> +	if (led_number <= 7)
> +		reg = chip->cfg->reg_dev_config_5.addr;
> +	else
> +		reg = chip->cfg->reg_dev_config_6.addr;
> +
> +	ret = lp5812_read(chip, reg, &reg_val);
> +	if (ret)
> +		return ret;
> +	if (scale == LP5812_PWM_DIMMING_SCALE_LINEAR)
> +		reg_val &= ~(1 << (led_number % 8));
> +	else
> +		reg_val |= (1 << (led_number % 8));
> +
> +	ret = lp5812_write(chip, reg, reg_val);
> +	if (ret)
> +		return ret;
> +
> +	ret = lp5812_update_regs_config(chip);
> +
> +	return ret;
> +}
> +
> +static int lp5812_set_phase_align(struct lp5812_chip *chip, int led_number,
> +				  int phase_align_val)
> +{
> +	int ret, bit_pos;
> +	u16 reg;
> +	u8 reg_val;
> +
> +	reg = chip->cfg->reg_dev_config_7.addr + (led_number / 4);
> +	bit_pos = (led_number % 4) * 2;
> +
> +	ret = lp5812_read(chip, reg, &reg_val);
> +	if (ret)
> +		return ret;
> +	reg_val |= (phase_align_val << bit_pos);
> +	ret = lp5812_write(chip, reg, reg_val);
> +	if (ret)
> +		return ret;
> +	ret = lp5812_update_regs_config(chip);
> +
> +	return ret;
> +}
> +
> +static ssize_t lp5812_auto_time_pause_store(struct device *dev,
> +					    struct device_attribute *attr,
> +					    const char *buf, size_t len, bool start)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	u8 chan_nr = 0, curr_val;
> +	int i, ret, val[LED_COLOR_ID_MAX];
> +	char *sub_str, *str = (char *)buf;
> +	u16 reg;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);

Put this whole thing in the helper above.

> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (kstrtoint(sub_str, 0, &val[i]))
> +			return -EINVAL;
> +	}
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		reg = LP5812_AUTO_PAUSE_ADDR(led_cfg->led_id[i]);
> +
> +		/* get original value of slope time */
> +		ret = lp5812_read(chip, reg, &curr_val);
> +		if (ret)
> +			return ret;
> +
> +		if (start == 1)
> +			curr_val = (curr_val & 0x0F) | (val[i] << 4);
> +		else
> +			curr_val = (curr_val & 0xF0) | (val[i]);
> +
> +		ret = lp5812_write(chip, reg, curr_val);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static int lp5812_manual_dc_pwm_control(struct lp5812_chip *chip, int led_number,
> +					u8 val, enum dimming_type dimming_type)
> +{
> +	int ret;
> +	u16 led_base_reg;
> +
> +	if (dimming_type == LP5812_DIMMING_ANALOG)
> +		led_base_reg = chip->cfg->reg_manual_dc_base.addr;
> +	else
> +		led_base_reg = chip->cfg->reg_manual_pwm_base.addr;
> +	ret = lp5812_write(chip, led_base_reg + led_number, val);
> +
> +	return ret;
> +}
> +
> +static int lp5812_auto_dc(struct lp5812_chip *chip,
> +			  int led_number, u8 val)
> +{
> +	return lp5812_write(chip, chip->cfg->reg_auto_dc_base.addr + led_number, val);
> +}
> +
> +static int lp5812_multicolor_brightness(struct lp5812_led *led)
> +{
> +	struct lp5812_chip *chip = led->chip;
> +	int ret, i;
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led->mc_cdev.num_colors; i++) {
> +		ret = lp5812_manual_dc_pwm_control(chip, led->mc_cdev.subled_info[i].channel,
> +						   led->mc_cdev.subled_info[i].brightness,
> +						   LP5812_DIMMING_PWM);
> +		if (ret)
> +			break;
> +	}
> +
> +	return ret;
> +}
> +
> +static int lp5812_led_brightness(struct lp5812_led *led)
> +{
> +	struct lp5812_chip *chip = led->chip;
> +	struct lp5812_led_config *led_cfg;
> +	int ret;
> +
> +	led_cfg = &chip->pdata->led_config[led->chan_nr];
> +
> +	guard(mutex)(&chip->lock);
> +	ret = lp5812_manual_dc_pwm_control(chip, led_cfg->led_id[0],
> +					   led->brightness, LP5812_DIMMING_PWM);
> +
> +	return ret;
> +}
> +
> +static ssize_t mode_parse(const char *buf, enum control_mode *val)
> +{
> +	if (sysfs_streq(buf, "manual"))
> +		*val = LP5812_MODE_MANUAL;
> +	else if (sysfs_streq(buf, "autonomous"))
> +		*val = LP5812_MODE_AUTONOMOUS;
> +	else
> +		return -EINVAL;
> +
> +	return 0;
> +}
> +
> +static ssize_t mode_store(struct device *dev,
> +			  struct device_attribute *attr,
> +			  const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	u8 chan_nr = 0;
> +	enum control_mode val[LED_COLOR_ID_MAX];
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (mode_parse(sub_str, &val[i]))
> +			return -EINVAL;
> +	}
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		ret = lp5812_set_led_mode(chip, led_cfg->led_id[i], val[i]);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t activate_store(struct device *dev,
> +			      struct device_attribute *attr,
> +			      const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	int val[LED_COLOR_ID_MAX];
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret;
> +	u16 reg;
> +	u8 reg_val, chan_nr = 0;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (kstrtoint(sub_str, 0, &val[i]))
> +			return -EINVAL;
> +		if (val[i] != 0 && val[i] != 1)
> +			return -EINVAL;
> +	}
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		if (led_cfg->led_id[i] < 0x8)
> +			reg = chip->cfg->reg_led_en_1.addr;
> +		else
> +			reg = chip->cfg->reg_led_en_2.addr;
> +
> +		ret = lp5812_read(chip, reg, &reg_val);
> +		if (ret)
> +			return -EIO;
> +
> +		if (val[i] == 0)
> +			reg_val &= ~(1 << (led_cfg->led_id[i] % 8));
> +		else
> +			reg_val |= (1 << (led_cfg->led_id[i] % 8));
> +
> +		ret = lp5812_write(chip, reg, reg_val);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t pwm_dimming_parse(const char *buf, enum pwm_dimming_scale *val)
> +{
> +	if (sysfs_streq(buf, "linear"))
> +		*val = LP5812_PWM_DIMMING_SCALE_LINEAR;
> +	else if (sysfs_streq(buf, "exponential"))
> +		*val = LP5812_PWM_DIMMING_SCALE_EXPONENTIAL;
> +	else
> +		return -EINVAL;
> +
> +	return 0;
> +}
> +
> +static ssize_t pwm_dimming_scale_store(struct device *dev,
> +				       struct device_attribute *attr,
> +				       const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	u8 chan_nr = 0;
> +	enum pwm_dimming_scale val[LED_COLOR_ID_MAX];
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (pwm_dimming_parse(sub_str, &val[i]))
> +			return -EINVAL;
> +	}
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		ret = lp5812_set_pwm_dimming_scale(chip, led_cfg->led_id[i], val[i]);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t pwm_align_parse(const char *buf, enum control_mode *val)
> +{
> +	if (sysfs_streq(buf, "forward"))
> +		*val = 0;
> +	else if (sysfs_streq(buf, "middle"))
> +		*val = 2;
> +	else if (sysfs_streq(buf, "backward"))
> +		*val = 3;
> +	else
> +		return -EINVAL;
> +
> +	return 0;
> +}
> +
> +static ssize_t pwm_phase_align_store(struct device *dev,
> +				     struct device_attribute *attr,
> +				     const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	u8 chan_nr = 0;
> +	enum control_mode val[LED_COLOR_ID_MAX];
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (pwm_align_parse(sub_str, &val[i]))
> +			return -EINVAL;
> +	}
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		ret = lp5812_set_phase_align(chip, led_cfg->led_id[i], val[i]);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t led_current_store(struct device *dev,
> +				 struct device_attribute *attr,
> +				 const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	u8 chan_nr = 0;
> +	enum control_mode mode;
> +	int val[LED_COLOR_ID_MAX];
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (kstrtoint(sub_str, 0, &val[i]))
> +			return -EINVAL;
> +	}
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		ret = lp5812_get_led_mode(chip, led_cfg->led_id[i], &mode);
> +		if (ret)
> +			return -EIO;
> +
> +		if (mode == 1)
> +			ret = lp5812_auto_dc(chip, led_cfg->led_id[i], val[i]);
> +		else
> +			ret = lp5812_manual_dc_pwm_control(chip, led_cfg->led_id[i],
> +							   val[i], LP5812_DIMMING_ANALOG);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t lod_lsd_show(struct device *dev,
> +			    struct device_attribute *attr,
> +			    char *buf)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	u8 chan_nr = 0, i, lsd_status, lod_status;
> +	int size = 0, ret;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		ret = lp5812_read_lsd_status(chip, led_cfg->led_id[i], &lsd_status);
> +		if (!ret)
> +			ret = lp5812_read_lod_status(chip, led_cfg->led_id[i], &lod_status);
> +		if (ret)
> +			return -EIO;
> +
> +		size += sysfs_emit_at(buf, size, "%d:%d %d\n",
> +			led_cfg->led_id[i], lod_status, lsd_status);
> +	}
> +	return size;
> +}
> +
> +static ssize_t max_current_show(struct device *dev,
> +				struct device_attribute *attr,
> +				char *buf)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	const char *name = dev->platform_data;
> +	u8 val;
> +	int ret;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chip = led->chip;
> +
> +	guard(mutex)(&chip->lock);
> +	ret = lp5812_read(chip, chip->cfg->reg_dev_config_0.addr, &val);
> +	if (ret)
> +		return ret;
> +
> +	return sysfs_emit(buf, "%d\n", (val & 0x01));
> +}
> +
> +static ssize_t auto_time_pause_at_start_store(struct device *dev,
> +					      struct device_attribute *attr,
> +					      const char *buf, size_t len)
> +{
> +	return lp5812_auto_time_pause_store(dev, attr, buf, len, 1);
> +}
> +
> +static ssize_t auto_time_pause_at_stop_store(struct device *dev,
> +					     struct device_attribute *attr,
> +					     const char *buf, size_t len)
> +{
> +	return lp5812_auto_time_pause_store(dev, attr, buf, len, 0);
> +}
> +
> +static ssize_t auto_playback_eau_number_store(struct device *dev,
> +					      struct device_attribute *attr,
> +					      const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	u8 chan_nr = 0, curr_val;
> +	int val[LED_COLOR_ID_MAX];
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret;
> +	u16 reg;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (kstrtoint(sub_str, 0, &val[i]))
> +			return -EINVAL;
> +	}
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		reg = LP5812_AUTO_PLAYBACK_ADDR(led_cfg->led_id[i]);
> +
> +		/* get original value of slope time */
> +		ret = lp5812_read(chip, reg, &curr_val);
> +		if (ret)
> +			return ret;
> +
> +		curr_val = (curr_val & 0x0F) | (val[i] << 4);
> +
> +		ret = lp5812_write(chip, reg, curr_val);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t auto_playback_time_store(struct device *dev,
> +					struct device_attribute *attr,
> +					const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	u8 chan_nr = 0, curr_val;
> +	int val[LED_COLOR_ID_MAX];
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret;
> +	u16 reg;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (kstrtoint(sub_str, 0, &val[i]))
> +			return -EINVAL;
> +	}
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		reg = LP5812_AUTO_PLAYBACK_ADDR(led_cfg->led_id[i]);
> +
> +		/* get original value of slope time */
> +		ret = lp5812_read(chip, reg, &curr_val);
> +		if (ret)
> +			return ret;
> +
> +		curr_val = (curr_val & 0xF0) | (val[i]);
> +
> +		ret = lp5812_write(chip, reg, curr_val);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t aeu_playback_time_store(struct device *dev,
> +				       struct device_attribute *attr,
> +				       const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	int val[LED_COLOR_ID_MAX];
> +	int aeu;
> +	u8 chan_nr = 0, curr_val;
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret;
> +	u16 reg;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +
> +	sub_str = strsep(&str, ":");
> +	if (!sub_str)
> +		return -EINVAL;
> +	if (kstrtoint(&sub_str[3], 0, &aeu))
> +		return -EINVAL;
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (kstrtoint(sub_str, 0, &val[i]))
> +			return -EINVAL;
> +		if (val[i] < 0 || val[i] > 3)
> +			return -EINVAL;
> +
> +		reg = LP5812_AEU_PLAYBACK_ADDR(led_cfg->led_id[i], aeu);
> +
> +		ret = lp5812_read(chip, reg, &curr_val);
> +		if (ret)
> +			return ret;
> +
> +		ret = lp5812_write(chip, reg, (curr_val & 0xFC) | val[i]);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t lp5812_aeu_pwm_store(struct device *dev,
> +				    struct device_attribute *attr,
> +				    u8 pwm_chan,
> +				    const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	int val[LED_COLOR_ID_MAX];
> +	int aeu;
> +	u8 chan_nr = 0;
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +
> +	sub_str = strsep(&str, ":");
> +	if (!sub_str)
> +		return -EINVAL;
> +	if (kstrtoint(&sub_str[3], 0, &aeu))
> +		return -EINVAL;
> +
> +	pr_info("AEU = %d", aeu);
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (kstrtoint(sub_str, 0, &val[i]))
> +			return -EINVAL;
> +		if (val[i] < 0 || val[i] > 255)
> +			return -EINVAL;
> +
> +		ret = lp5812_write(chip,
> +				   LP5812_AEU_PWM_ADDR(led_cfg->led_id[i], aeu, pwm_chan),
> +				   val[i]);
> +		if (ret)
> +			return -EIO;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t aeu_pwm1_store(struct device *dev,
> +			      struct device_attribute *attr,
> +			      const char *buf, size_t len)
> +{
> +	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM1, buf, len);
> +}
> +
> +static ssize_t aeu_pwm2_store(struct device *dev,
> +			      struct device_attribute *attr,
> +			      const char *buf, size_t len)
> +{
> +	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM2, buf, len);
> +}
> +
> +static ssize_t aeu_pwm3_store(struct device *dev,
> +			      struct device_attribute *attr,
> +			      const char *buf, size_t len)
> +{
> +	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM3, buf, len);
> +}
> +
> +static ssize_t aeu_pwm4_store(struct device *dev,
> +			      struct device_attribute *attr,
> +			      const char *buf, size_t len)
> +{
> +	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM4, buf, len);
> +}
> +
> +static ssize_t aeu_pwm5_store(struct device *dev,
> +			      struct device_attribute *attr,
> +			      const char *buf, size_t len)
> +{
> +	return lp5812_aeu_pwm_store(dev, attr, LP5812_AEU_PWM5, buf, len);
> +}
> +
> +static ssize_t lp5812_aeu_slope_time(struct device *dev,
> +				     struct device_attribute *attr,
> +				     enum slope_time_num slope_chan,
> +				     const char *buf, size_t len)
> +{
> +	struct lp5812_led *led;
> +	struct lp5812_chip *chip;
> +	struct lp5812_led_config *led_cfg;
> +	const char *name = dev->platform_data;
> +	int val[LED_COLOR_ID_MAX];
> +	u8 chan_nr = 0;
> +	char *sub_str, *str = (char *)buf;
> +	int i, ret, aeu;
> +	union slope_time slope_time_val;
> +	u16 reg;
> +
> +	if (strcmp(name, LP5812_SC_LED) == 0)
> +		led = dev_to_lp5812_led(dev);
> +	else
> +		led = dev_to_lp5812_led_mc(dev);
> +
> +	chan_nr = led->chan_nr;
> +	chip = led->chip;
> +	led_cfg = &chip->pdata->led_config[chan_nr];
> +
> +	sub_str = strsep(&str, ":");
> +	if (!sub_str)
> +		return -EINVAL;
> +	if (kstrtoint(&sub_str[3], 0, &aeu))
> +		return -EINVAL;
> +
> +	pr_info("AEU = %d", aeu);
> +
> +	guard(mutex)(&chip->lock);
> +	for (i = 0; i < led_cfg->num_colors; i++) {
> +		sub_str = strsep(&str, " ");
> +		if (!sub_str)
> +			return -EINVAL;
> +		if (kstrtoint(sub_str, 0, &val[i]))
> +			return -EINVAL;
> +		if (val[i] < 0 || val[i] > 15)
> +			return -EINVAL;
> +
> +		reg = LP5812_AEU_SLOPE_TIME_ADDR(led_cfg->led_id[i], aeu, slope_chan);
> +
> +		/* get original value of slope time */
> +		ret = lp5812_read(chip, reg, &slope_time_val.time_val);
> +		if (ret)
> +			return ret;
> +
> +		/* Update new value for slope time*/
> +		if (slope_chan == LP5812_SLOPE_TIME_T1 || slope_chan == LP5812_SLOPE_TIME_T3)
> +			slope_time_val.s_time.first = val[i];
> +		if (slope_chan == LP5812_SLOPE_TIME_T2 || slope_chan == LP5812_SLOPE_TIME_T4)
> +			slope_time_val.s_time.second = val[i];
> +
> +		/* Save updated value to hardware */
> +		ret = lp5812_write(chip, reg, slope_time_val.time_val);
> +		if (ret)
> +			return ret;
> +	}
> +
> +	return len;
> +}
> +
> +static ssize_t aeu_slop_time_t1_store(struct device *dev,
> +				      struct device_attribute *attr,
> +				      const char *buf, size_t len)
> +{
> +	return lp5812_aeu_slope_time(dev, attr, LP5812_SLOPE_TIME_T1, buf, len);
> +}
> +
> +static ssize_t aeu_slop_time_t2_store(struct device *dev,
> +				      struct device_attribute *attr,
> +				      const char *buf, size_t len)
> +{
> +	return lp5812_aeu_slope_time(dev, attr, LP5812_SLOPE_TIME_T2, buf, len);
> +}
> +
> +static ssize_t aeu_slop_time_t3_store(struct device *dev,
> +				      struct device_attribute *attr,
> +				      const char *buf, size_t len)
> +{
> +	return lp5812_aeu_slope_time(dev, attr, LP5812_SLOPE_TIME_T3, buf, len);
> +}
> +
> +static ssize_t aeu_slop_time_t4_store(struct device *dev,
> +				      struct device_attribute *attr,
> +				      const char *buf, size_t len)
> +{
> +	return lp5812_aeu_slope_time(dev, attr, LP5812_SLOPE_TIME_T4, buf, len);
> +}
> +
> +/* End led function */
> +
> +static DEVICE_ATTR_WO(led_current);
> +static DEVICE_ATTR_RO(max_current);
> +static DEVICE_ATTR_WO(mode);
> +static DEVICE_ATTR_WO(activate);
> +static DEVICE_ATTR_WO(pwm_dimming_scale);
> +static DEVICE_ATTR_WO(pwm_phase_align);
> +static DEVICE_ATTR_WO(auto_time_pause_at_start);
> +static DEVICE_ATTR_WO(auto_time_pause_at_stop);
> +static DEVICE_ATTR_WO(auto_playback_eau_number);
> +static DEVICE_ATTR_WO(auto_playback_time);
> +static DEVICE_ATTR_WO(aeu_playback_time);
> +static DEVICE_ATTR_WO(aeu_pwm1);
> +static DEVICE_ATTR_WO(aeu_pwm2);
> +static DEVICE_ATTR_WO(aeu_pwm3);
> +static DEVICE_ATTR_WO(aeu_pwm4);
> +static DEVICE_ATTR_WO(aeu_pwm5);
> +static DEVICE_ATTR_WO(aeu_slop_time_t1);
> +static DEVICE_ATTR_WO(aeu_slop_time_t2);
> +static DEVICE_ATTR_WO(aeu_slop_time_t3);
> +static DEVICE_ATTR_WO(aeu_slop_time_t4);
> +static DEVICE_ATTR_RO(lod_lsd);
> +
> +static struct attribute *lp5812_led_attrs[] = {
> +	&dev_attr_led_current.attr,
> +	&dev_attr_max_current.attr,
> +	&dev_attr_mode.attr,
> +	&dev_attr_activate.attr,
> +	&dev_attr_pwm_dimming_scale.attr,
> +	&dev_attr_pwm_phase_align.attr,
> +	&dev_attr_auto_time_pause_at_start.attr,
> +	&dev_attr_auto_time_pause_at_stop.attr,
> +	&dev_attr_auto_playback_eau_number.attr,
> +	&dev_attr_auto_playback_time.attr,
> +	&dev_attr_aeu_playback_time.attr,
> +	&dev_attr_aeu_pwm1.attr,
> +	&dev_attr_aeu_pwm2.attr,
> +	&dev_attr_aeu_pwm3.attr,
> +	&dev_attr_aeu_pwm4.attr,
> +	&dev_attr_aeu_pwm5.attr,
> +	&dev_attr_aeu_slop_time_t1.attr,
> +	&dev_attr_aeu_slop_time_t2.attr,
> +	&dev_attr_aeu_slop_time_t3.attr,
> +	&dev_attr_aeu_slop_time_t4.attr,
> +	&dev_attr_lod_lsd.attr,
> +	NULL
> +};
> +ATTRIBUTE_GROUPS(lp5812_led);
> +
> +static int lp5812_set_brightness(struct led_classdev *cdev,
> +				 enum led_brightness brightness)
> +{
> +	struct lp5812_led *led = cdev_to_lp5812_led(cdev);
> +	const struct lp5812_device_config *cfg = led->chip->cfg;
> +
> +	led->brightness = (u8)brightness;
> +	return cfg->brightness_fn(led);
> +}
> +
> +static int lp5812_set_mc_brightness(struct led_classdev *cdev,
> +				    enum led_brightness brightness)
> +{
> +	struct led_classdev_mc *mc_dev = lcdev_to_mccdev(cdev);
> +	struct lp5812_led *led = mcled_cdev_to_lp5812_led(mc_dev);
> +	const struct lp5812_device_config *cfg = led->chip->cfg;
> +
> +	led_mc_calc_color_components(&led->mc_cdev, brightness);
> +	return cfg->multicolor_brightness_fn(led);
> +}
> +
> +static int lp5812_init_led(struct lp5812_led *led, struct lp5812_chip *chip, int chan)
> +{
> +	struct lp5812_data *pdata = chip->pdata;
> +	struct device *dev = &chip->i2c_cl->dev;
> +	struct mc_subled *mc_led_info;
> +	struct led_classdev *led_cdev;
> +	int i, ret = 0;
> +
> +	if (pdata->led_config[chan].name) {
> +		led->cdev.name = pdata->led_config[chan].name;
> +	} else {
> +		led->cdev.name = devm_kasprintf(dev, GFP_KERNEL, "%s:channel%d",
> +						pdata->label ? : chip->i2c_cl->name, chan);
> +		if (!led->cdev.name)
> +			return -ENOMEM;
> +	}
> +
> +	if (pdata->led_config[chan].is_sc_led == 0) {
> +		mc_led_info = devm_kcalloc(dev,
> +					   pdata->led_config[chan].num_colors,
> +					   sizeof(*mc_led_info), GFP_KERNEL);
> +		if (!mc_led_info)
> +			return -ENOMEM;
> +
> +		led_cdev = &led->mc_cdev.led_cdev;
> +		led_cdev->name = led->cdev.name;
> +		led_cdev->brightness_set_blocking = lp5812_set_mc_brightness;
> +		led->mc_cdev.num_colors = pdata->led_config[chan].num_colors;
> +		for (i = 0; i < led->mc_cdev.num_colors; i++) {
> +			mc_led_info[i].color_index =
> +				pdata->led_config[chan].color_id[i];
> +			mc_led_info[i].channel =
> +					pdata->led_config[chan].led_id[i];
> +		}
> +
> +		led->mc_cdev.subled_info = mc_led_info;
> +	} else {
> +		led->cdev.brightness_set_blocking = lp5812_set_brightness;
> +	}
> +
> +	led->cdev.groups = lp5812_led_groups;
> +	led->chan_nr = chan;
> +
> +	if (pdata->led_config[chan].is_sc_led) {
> +		ret = devm_led_classdev_register(dev, &led->cdev);
> +		if (ret == 0) {
> +			led->cdev.dev->platform_data = devm_kstrdup(dev, LP5812_SC_LED, GFP_KERNEL);
> +			if (!led->cdev.dev->platform_data)
> +				return -ENOMEM;
> +		}
> +	} else {
> +		ret = devm_led_classdev_multicolor_register(dev, &led->mc_cdev);
> +		if (ret == 0) {
> +			led->mc_cdev.led_cdev.dev->platform_data =
> +				devm_kstrdup(dev, LP5812_MC_LED, GFP_KERNEL);
> +			if (!led->mc_cdev.led_cdev.dev->platform_data)
> +				return -ENOMEM;
> +
> +			ret = sysfs_create_groups(&led->mc_cdev.led_cdev.dev->kobj,
> +						  lp5812_led_groups);
> +			if (ret)
> +				dev_err(dev, "sysfs_create_groups failed\n");
> +		}
> +	}
> +
> +	if (ret) {
> +		dev_err(dev, "led register err: %d\n", ret);
> +		return ret;
> +	}
> +
> +	return 0;
> +}
> +
> +static int lp5812_register_leds(struct lp5812_led *led, struct lp5812_chip *chip)
> +{
> +	int num_channels = chip->pdata->num_channels;
> +	struct lp5812_led *each;
> +	int ret, i, j;
> +
> +	for (i = 0; i < num_channels; i++) {
> +		each = led + i;
> +		ret = lp5812_init_led(each, chip, i);
> +		if (ret)
> +			goto err_init_led;
> +
> +		each->chip = chip;
> +
> +		for (j = 0; j < chip->pdata->led_config[i].num_colors; j++) {
> +			ret = lp5812_auto_dc(chip, chip->pdata->led_config[i].led_id[j],
> +					     chip->pdata->led_config[i].led_id[j]);
> +			if (ret)
> +				goto err_init_led;
> +		}
> +	}
> +
> +	return 0;
> +
> +err_init_led:
> +	return ret;
> +}
> +
> +static int lp5812_register_sysfs(struct lp5812_chip *chip)
> +{
> +	struct device *dev = &chip->i2c_cl->dev;
> +	const struct lp5812_device_config *cfg = chip->cfg;
> +	int ret;
> +
> +	ret = sysfs_create_group(&dev->kobj, cfg->dev_attr_group);
> +	if (ret)
> +		return ret;
> +
> +	return 0;
> +}
> +
> +static void lp5812_unregister_sysfs(struct lp5812_led *led, struct lp5812_chip *chip)
> +{
> +	struct device *dev = &chip->i2c_cl->dev;
> +	const struct lp5812_device_config *cfg = chip->cfg;
> +	struct lp5812_led *each;
> +	int i;
> +
> +	sysfs_remove_group(&dev->kobj, cfg->dev_attr_group);
> +
> +	for (i = 0; i < chip->pdata->num_channels; i++) {
> +		if (!chip->pdata->led_config[i].is_sc_led) {
> +			each = led + i;
> +			sysfs_remove_groups(&each->mc_cdev.led_cdev.dev->kobj, lp5812_led_groups);
> +		}
> +	}
> +}
> +
> +static int lp5812_probe(struct i2c_client *client)
> +{
> +	struct lp5812_chip *chip;
> +	int ret;
> +	const struct i2c_device_id *id = i2c_client_get_device_id(client);
> +	struct lp5812_data *pdata = dev_get_platdata(&client->dev);
> +	struct device_node *np = dev_of_node(&client->dev);
> +	struct lp5812_led *led;
> +
> +	chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
> +	if (!chip)
> +		return -ENOMEM;
> +
> +	chip->cfg = i2c_get_match_data(client);
> +
> +	if (!pdata) {
> +		if (np) {
> +			pdata = lp5812_of_populate_pdata(&client->dev, np,
> +							 chip);
> +			if (IS_ERR(pdata))
> +				return PTR_ERR(pdata);
> +		} else {
> +			return dev_err_probe(&client->dev, -EINVAL, "no platform data\n");
> +		}
> +	}
> +
> +	led = devm_kcalloc(&client->dev,
> +			   pdata->num_channels, sizeof(*led), GFP_KERNEL);
> +	if (!led)
> +		return -ENOMEM;
> +
> +	chip->i2c_cl = client;
> +	chip->pdata = pdata;
> +
> +	mutex_init(&chip->lock);
> +
> +	i2c_set_clientdata(client, led);
> +
> +	ret = lp5812_init_device(chip);
> +	if (ret)
> +		goto err_init;
> +
> +	dev_info(&client->dev, "%s Programmable led chip found\n", id->name);
> +
> +	ret = lp5812_register_leds(led, chip);
> +	if (ret)
> +		goto err_out;
> +
> +	ret = lp5812_register_sysfs(chip);
> +	if (ret) {
> +		dev_err_probe(&client->dev, ret, "registering sysfs failed\n");
> +		goto err_out;
> +	}
> +
> +	return 0;
> +
> +err_out:
> +	lp5812_deinit_device(chip);
> +err_init:
> +	return ret;
> +}
> +
> +static void lp5812_remove(struct i2c_client *client)
> +{
> +	struct lp5812_led *led = i2c_get_clientdata(client);
> +
> +	lp5812_unregister_sysfs(led, led->chip);
> +	lp5812_deinit_device(led->chip);
> +
> +	dev_info(&client->dev, "Removed driver\n");
> +}
> +
> +static LP5812_DEV_ATTR_WO(dev_config);
> +static LP5812_DEV_ATTR_WO(device_command);
> +static LP5812_DEV_ATTR_WO(sw_reset);
> +static LP5812_DEV_ATTR_WO(fault_clear);
> +static LP5812_DEV_ATTR_RO(tsd_config_status);
> +
> +static struct attribute *lp5812_chip_attributes[] = {
> +	&dev_attr_device_command.attr,
> +	&dev_attr_fault_clear.attr,
> +	&dev_attr_sw_reset.attr,
> +	&dev_attr_dev_config.attr,
> +	&dev_attr_tsd_config_status.attr,
> +	NULL
> +};
> +
> +static const struct attribute_group lp5812_group = {
> +	.name = "lp5812_chip_setup",
> +	.attrs = lp5812_chip_attributes
> +};
> +
> +/* Chip specific configurations */
> +static struct lp5812_device_config lp5812_cfg = {
> +	.reg_reset = {
> +		.addr = LP5812_REG_RESET,
> +		.val  = LP5812_RESET
> +	},
> +	.reg_chip_en = {
> +		.addr = LP5812_REG_ENABLE,
> +		.val  = LP5812_ENABLE_DEFAULT
> +	},
> +	.reg_dev_config_0 = {
> +		.addr = LP5812_DEV_CONFIG0,
> +		.val  = 0
> +	},
> +	.reg_dev_config_1 = {
> +		.addr = LP5812_DEV_CONFIG1,
> +		.val  = 0
> +	},
> +	.reg_dev_config_2 = {
> +		.addr = LP5812_DEV_CONFIG2,
> +		.val  = 0
> +	},
> +	.reg_dev_config_3 = {
> +		.addr = LP5812_DEV_CONFIG3,
> +		.val  = 0
> +	},
> +	.reg_dev_config_4 = {
> +		.addr = LP5812_DEV_CONFIG4,
> +		.val  = 0
> +	},
> +	.reg_dev_config_5 = {
> +		.addr = LP5812_DEV_CONFIG5,
> +		.val  = 0
> +	},
> +	.reg_dev_config_6 = {
> +		.addr = LP5812_DEV_CONFIG6,
> +		.val  = 0
> +	},
> +	.reg_dev_config_7 = {
> +		.addr = LP5812_DEV_CONFIG7,
> +		.val  = 0
> +	},
> +	.reg_dev_config_12 = {
> +		.addr = LP5812_DEV_CONFIG12,
> +		.val  = LP5812_DEV_CONFIG12_DEFAULT
> +	},
> +	.reg_cmd_update = {
> +		.addr = LP5812_CMD_UPDATE,
> +		.val  = 0
> +	},
> +	.reg_cmd_start = {
> +		.addr = LP5812_CMD_START,
> +		.val  = 0
> +	},
> +	.reg_cmd_stop = {
> +		.addr = LP5812_CMD_STOP,
> +		.val  = 0
> +	},
> +	.reg_cmd_pause = {
> +		.addr = LP5812_CMD_PAUSE,
> +		.val  = 0
> +	},
> +	.reg_cmd_continue = {
> +		.addr = LP5812_CMD_CONTINUE,
> +		.val  = 0
> +	},
> +	.reg_tsd_config_status = {
> +		.addr = LP5812_TSD_CONFIG_STATUS,
> +		.val  = 0
> +	},
> +	.reg_led_en_1 = {
> +		.addr = LP5812_LED_EN_1,
> +		.val  = 0
> +	},
> +	.reg_led_en_2 = {
> +		.addr = LP5812_LED_EN_2,
> +		.val  = 0
> +	},
> +	.reg_fault_clear = {
> +		.addr = LP5812_FAULT_CLEAR,
> +		.val  = 0
> +	},
> +	.reg_manual_dc_base  = {
> +		.addr = LP5812_MANUAL_DC_BASE,
> +		.val  = 0
> +	},
> +	.reg_auto_dc_base  = {
> +		.addr = LP5812_AUTO_DC_BASE,
> +		.val  = 0
> +	},
> +	.reg_manual_pwm_base  = {
> +		.addr = LP5812_MANUAL_PWM_BASE,
> +		.val  = 0
> +	},
> +	.reg_aeu_base  = {
> +		.addr = LP5812_AEU_BASE,
> +		.val  = 0
> +	},
> +	.reg_lod_status_base  = {
> +		.addr = LP5812_LOD_STATUS,
> +		.val  = 0
> +	},
> +	.reg_lsd_status_base  = {
> +		.addr = LP5812_LSD_STATUS,
> +		.val  = 0
> +	},
> +
> +	.brightness_fn	  = lp5812_led_brightness,
> +	.multicolor_brightness_fn = lp5812_multicolor_brightness,
> +
> +	.dev_attr_group = &lp5812_group
> +};
> +
> +static const struct i2c_device_id lp5812_id[] = {
> +	{ "lp5812", .driver_data = (kernel_ulong_t)&lp5812_cfg },
> +	{ }
> +};
> +
> +MODULE_DEVICE_TABLE(i2c, lp5812_id);
> +
> +#ifdef CONFIG_OF
> +static const struct of_device_id of_lp5812_match[] = {
> +	{ .compatible = "ti,lp5812", .data = &lp5812_cfg },
> +	{/* NULL */}
> +};
> +
> +MODULE_DEVICE_TABLE(of, of_lp5812_match);
> +#endif
> +
> +static struct i2c_driver lp5812_driver = {
> +	.driver = {
> +		.name   = "lp5812",
> +		.of_match_table = of_match_ptr(of_lp5812_match),
> +	},
> +	.probe		= lp5812_probe,
> +	.remove		= lp5812_remove,
> +	.id_table	= lp5812_id,
> +};
> +
> +module_i2c_driver(lp5812_driver);
> +
> +MODULE_DESCRIPTION("Texas Instruments LP5812 LED Driver");
> +MODULE_AUTHOR("Jared Zhou");
> +MODULE_LICENSE("GPL");
> diff --git a/drivers/leds/rgb/leds-lp5812.h b/drivers/leds/rgb/leds-lp5812.h
> new file mode 100644
> index 000000000000..23e333fc02bf
> --- /dev/null
> +++ b/drivers/leds/rgb/leds-lp5812.h
> @@ -0,0 +1,227 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> +/*
> + * LP5812 Driver Header
> + *
> + * Copyright (C) 2025 Texas Instruments
> + *
> + * Author: Jared Zhou <jared-zhou@ti.com>
> + */
> +
> +#ifndef _LP5812_H_
> +#define _LP5812_H_
> +
> +#include <linux/kernel.h>
> +#include <linux/i2c.h>
> +#include <linux/sysfs.h>
> +#include <linux/mutex.h>
> +#include <linux/types.h>
> +#include <linux/leds.h>
> +#include <linux/delay.h>
> +#include <linux/led-class-multicolor.h>
> +
> +#define LP5812_REG_ENABLE				0x0000
> +#define LP5812_REG_RESET				0x0023
> +#define LP5812_DEV_CONFIG0				0x0001
> +#define LP5812_DEV_CONFIG1				0x0002
> +#define LP5812_DEV_CONFIG2				0x0003
> +#define LP5812_DEV_CONFIG3				0x0004
> +#define LP5812_DEV_CONFIG4				0x0005
> +#define LP5812_DEV_CONFIG5				0x0006
> +#define LP5812_DEV_CONFIG6				0x0007
> +#define LP5812_DEV_CONFIG7				0x0008
> +#define LP5812_DEV_CONFIG8				0x0009
> +#define LP5812_DEV_CONFIG9				0x000A
> +#define LP5812_DEV_CONFIG10				0x000B
> +#define LP5812_DEV_CONFIG11				0x000c
> +#define LP5812_DEV_CONFIG12				0x000D
> +#define LP5812_CMD_UPDATE				0x0010
> +#define LP5812_CMD_START				0x0011
> +#define LP5812_CMD_STOP					0x0012
> +#define LP5812_CMD_PAUSE				0x0013
> +#define LP5812_CMD_CONTINUE				0x0014
> +#define LP5812_LED_EN_1					0x0020
> +#define LP5812_LED_EN_2					0x0021
> +#define LP5812_FAULT_CLEAR				0x0022
> +#define LP5812_MANUAL_DC_BASE				0x0030
> +#define LP5812_AUTO_DC_BASE				0x0050
> +#define LP5812_MANUAL_PWM_BASE				0x0040
> +#define LP5812_AEU_BASE					0x0080
> +
> +#define LP5812_TSD_CONFIG_STATUS			0x0300
> +#define LP5812_LOD_STATUS				0x0301
> +#define LP5812_LSD_STATUS				0x0303
> +
> +#define LP5812_ENABLE_DEFAULT				0x01
> +#define FAULT_CLEAR_ALL					0x07
> +#define TSD_CLEAR_VAL					0x04
> +#define LSD_CLEAR_VAL					0x02
> +#define LOD_CLEAR_VAL					0x01
> +#define LP5812_RESET					0x66
> +#define LP5812_DEV_CONFIG12_DEFAULT			0x08
> +
> +#define LP5812_UPDATE_CMD_VAL				0x55
> +#define LP5812_START_CMD_VAL				0xFF
> +#define LP5812_STOP_CMD_VAL				0xAA
> +#define LP5812_PAUSE_CMD_VAL				0x33
> +#define LP5812_CONTINUE_CMD_VAL				0xCC
> +
> +#define LP5812_DEV_ATTR_RW(name)  \
> +	DEVICE_ATTR_RW(name)
> +#define LP5812_DEV_ATTR_RO(name)  \
> +	DEVICE_ATTR_RO(name)
> +#define LP5812_DEV_ATTR_WO(name)  \
> +	DEVICE_ATTR_WO(name)
> +
> +enum control_mode {
> +	LP5812_MODE_MANUAL = 0,
> +	LP5812_MODE_AUTONOMOUS
> +};
> +
> +enum dimming_type {
> +	LP5812_DIMMING_ANALOG,
> +	LP5812_DIMMING_PWM
> +};
> +
> +enum pwm_dimming_scale {
> +	LP5812_PWM_DIMMING_SCALE_LINEAR = 0,
> +	LP5812_PWM_DIMMING_SCALE_EXPONENTIAL
> +};
> +
> +enum device_command {
> +	LP5812_DEV_CMD_NONE,
> +	LP5812_DEV_CMD_UPDATE,
> +	LP5812_DEV_CMD_START,
> +	LP5812_DEV_CMD_STOP,
> +	LP5812_DEV_CMD_PAUSE,
> +	LP5812_DEV_CMD_CONTINUE
> +};
> +
> +enum slope_time_num {
> +	LP5812_SLOPE_TIME_T1 = 0,
> +	LP5812_SLOPE_TIME_T2,
> +	LP5812_SLOPE_TIME_T3,
> +	LP5812_SLOPE_TIME_T4
> +};
> +
> +enum aeu_pwm_num {
> +	LP5812_AEU_PWM1 = 1,
> +	LP5812_AEU_PWM2,
> +	LP5812_AEU_PWM3,
> +	LP5812_AEU_PWM4,
> +	LP5812_AEU_PWM5
> +};
> +
> +union slope_time {
> +	struct {
> +		u8 first:4;
> +		u8 second:4;
> +	} __packed s_time;
> +	u8 time_val;
> +}; /* type for start/stop pause time and slope time */
> +
> +union u_scan_order {
> +	struct {
> +		u8 scan_order_0:2;
> +		u8 scan_order_1:2;
> +		u8 scan_order_2:2;
> +		u8 scan_order_3:2;
> +	} s_scan_order;
> +	u8 scan_order_val;
> +};
> +
> +union u_drive_mode {
> +	struct {
> +		u8 mix_sel_led_0:1;
> +		u8 mix_sel_led_1:1;
> +		u8 mix_sel_led_2:1;
> +		u8 mix_sel_led_3:1;
> +		u8 led_mode:3;
> +		u8 pwm_fre:1;
> +	} s_drive_mode;
> +	u8 drive_mode_val;
> +};
> +
> +struct lp5812_reg {
> +	u16 addr;
> +	union {
> +		u8 val;
> +		u8 mask;
> +		u8 shift;
> +	};
> +};
> +
> +struct lp5812_led;

Move the definition here instead.

> +struct lp5812_device_config {
> +	const struct lp5812_reg reg_reset;
> +	const struct lp5812_reg reg_chip_en;
> +	const struct lp5812_reg reg_dev_config_0;
> +	const struct lp5812_reg reg_dev_config_1;
> +	const struct lp5812_reg reg_dev_config_2;
> +	const struct lp5812_reg reg_dev_config_3;
> +	const struct lp5812_reg reg_dev_config_4;
> +	const struct lp5812_reg reg_dev_config_5;
> +	const struct lp5812_reg reg_dev_config_6;
> +	const struct lp5812_reg reg_dev_config_7;
> +	const struct lp5812_reg reg_dev_config_12;
> +	const struct lp5812_reg reg_cmd_update;
> +	const struct lp5812_reg reg_cmd_start;
> +	const struct lp5812_reg reg_cmd_stop;
> +	const struct lp5812_reg reg_cmd_pause;
> +	const struct lp5812_reg reg_cmd_continue;
> +
> +	const struct lp5812_reg reg_led_en_1;
> +	const struct lp5812_reg reg_led_en_2;
> +	const struct lp5812_reg reg_fault_clear;
> +	const struct lp5812_reg reg_manual_dc_base;
> +	const struct lp5812_reg reg_auto_dc_base;
> +	const struct lp5812_reg reg_manual_pwm_base;
> +	const struct lp5812_reg reg_tsd_config_status;
> +	const struct lp5812_reg reg_aeu_base;
> +	const struct lp5812_reg reg_lod_status_base;
> +	const struct lp5812_reg reg_lsd_status_base;
> +
> +	/* set LED brightness */
> +	int (*brightness_fn)(struct lp5812_led *led);
> +
> +	/* set multicolor LED brightness */
> +	int (*multicolor_brightness_fn)(struct lp5812_led *led);

Why do you need call-back functions for these?

> +	/* additional device specific attributes */
> +	const struct attribute_group *dev_attr_group;
> +};
> +
> +struct lp5812_led_config {
> +	const char *name;
> +	int led_id[LED_COLOR_ID_MAX];
> +	u8 color_id[LED_COLOR_ID_MAX];
> +	u8 max_current[LED_COLOR_ID_MAX];
> +	int num_colors;
> +	u8 chan_nr;
> +	bool is_sc_led;
> +};
> +
> +struct lp5812_data {
> +	struct lp5812_led_config *led_config;
> +	u8 num_channels;
> +	const char *label;
> +};

How is data different from config here?

Config to me would be the parameters used to set-up a device.

> +struct lp5812_chip {
> +	struct i2c_client *i2c_cl;

Just "client" is fine.

> +	struct mutex lock; /* Protects reg access */

"register"

> +	struct lp5812_data *pdata;
> +	const struct lp5812_device_config *cfg;
> +	union u_scan_order u_scan_order;
> +	union u_drive_mode u_drive_mode;
> +};
> +
> +struct lp5812_led {
> +	int chan_nr;
> +	struct led_classdev cdev;
> +	struct led_classdev_mc mc_cdev;
> +	u8 brightness;
> +	struct lp5812_chip *chip;
> +};
> +
> +#endif /*_LP5812_H_*/
> -- 
> 2.25.1
> 

-- 
Lee Jones [李琼斯]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v10 3/4] docs: ABI: Document LP5812 LED sysfs interfaces
  2025-06-18 18:32 ` [PATCH v10 3/4] docs: ABI: Document LP5812 LED sysfs interfaces Nam Tran
@ 2025-06-26 13:05   ` Lee Jones
  0 siblings, 0 replies; 9+ messages in thread
From: Lee Jones @ 2025-06-26 13:05 UTC (permalink / raw)
  To: Nam Tran
  Cc: pavel, rdunlap, christophe.jaillet, krzk+dt, robh, conor+dt,
	corbet, linux-leds, linux-kernel, devicetree, linux-doc

On Thu, 19 Jun 2025, Nam Tran wrote:

> The LP5812 is a 4x3 matrix RGB LED driver with autonomous animation
> engine control.
> 
> The driver provides interfaces to configure LED modes manual/autonomous,
> set PWM/DC values, and manage autonomous animation engines.

How many of these can be swapped out for already existing sysfs
attributes, I wonder.

Let's start with the basics first.  Just to get the device working.
This is a huge change with massive impact and it all needs to be well
thought through before we start doing anything drastic like introducing
massive amounts of stable ABI !!

> Signed-off-by: Nam Tran <trannamatk@gmail.com>
> ---
>  .../ABI/testing/sysfs-bus-i2c-devices-lp5812  |  40 ++++++
>  .../ABI/testing/sysfs-class-led-lp5812        | 120 ++++++++++++++++++
>  MAINTAINERS                                   |   2 +
>  3 files changed, 162 insertions(+)
>  create mode 100644 Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
>  create mode 100644 Documentation/ABI/testing/sysfs-class-led-lp5812
> 
> diff --git a/Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812 b/Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
> new file mode 100644
> index 000000000000..a8b1d5c52a82
> --- /dev/null
> +++ b/Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
> @@ -0,0 +1,40 @@
> +What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/dev_config
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Configures drive mode and scan order. (WO)
> +		Some valid values: tcmscan:4:0:1:2:3 (default), tcmscan:3:0:1:2, mixscan:2:2:0:3, mixscan:3:0:1:2:3
> +
> +What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/device_command
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Issues device-level commands. (WO)
> +		Valid values: "update", "start", "stop", "pause", "continue"
> +
> +What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/sw_reset
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Triggers a software reset of the device. (WO)
> +		1 - resets device
> +		0 - does not reset device
> +
> +What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/fault_clear
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Clears fault status. (WO)
> +		1 - clears fault status
> +		0 - does not clear fault status
> +
> +What:		/sys/bus/i2c/devices/.../lp5812_chip_setup/tsd_config_status
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Report the current thermal shutdown config status. (RO)
> diff --git a/Documentation/ABI/testing/sysfs-class-led-lp5812 b/Documentation/ABI/testing/sysfs-class-led-lp5812
> new file mode 100644
> index 000000000000..a6cb49fb523f
> --- /dev/null
> +++ b/Documentation/ABI/testing/sysfs-class-led-lp5812
> @@ -0,0 +1,120 @@
> +What:		/sys/class/leds/led_<id>/activate
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Activate or deactivate the specified LED channel. (WO)
> +		1 - Activate
> +		0 - Deactivate
> +
> +What:		/sys/class/leds/led_<id>/mode
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Selects LED operation mode. (WO)
> +		Valid values: "manual", "autonomous"
> +
> +What:		/sys/class/leds/led_<id>/led_current
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		DC current level. (WO)
> +		Valid values: 0 - 255
> +
> +What:		/sys/class/leds/led_<id>/max_current
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Shows maximum DC current bit setting. (RO)
> +		0 (default) means the LED maximum current is set to 25.5 mA.
> +		1 means the LED maximum current is set to 51 mA.
> +
> +What:		/sys/class/leds/led_<id>/pwm_dimming_scale
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		PWM dimming scale type. (WO)
> +		Valid values: "linear", "exponential"
> +
> +What:		/sys/class/leds/led_<id>/pwm_phase_align
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Configures PWM phase alignment. (WO)
> +		Valid values: "forward", "middle", "backward"
> +
> +What:		/sys/class/leds/led_<id>/auto_time_pause_at_start
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Controls start pause time. (WO)
> +		Valid values: 0 - 15
> +
> +What:		/sys/class/leds/led_<id>/auto_time_pause_at_stop
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Controls stop pause time. (WO)
> +		Valid values: 0 - 15
> +
> +What:		/sys/class/leds/led_<id>/auto_playback_eau_number
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Active AEU number of led_<id> selection. (WO)
> +		Valid values: 0 - 3
> +		0 - only use AEU1
> +		1 - use AEU1 and AEU2
> +		2 - use AEU1, AEU2 and AEU3
> +		3 - use AEU1, AEU2 and AEU3 (the same as 2)
> +
> +What:		/sys/class/leds/led_<id>/auto_playback_time
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		Animation pattern playback times of led_<id>. (WO)
> +		Valid values: 0 - 15
> +		0 - 14 means 0 - 14 times, 15 means infinite times
> +
> +What:		/sys/class/leds/led_<id>/aeu_playback_time
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		AEU pattern playback times of led_<id>. (WO)
> +		Format: aeu<x>:<y> where x (1 - 3) indicates the AEU number,
> +		y (0 - 3) indicates the number of playback times.
> +
> +What:		/sys/class/leds/led_<id>/aeu_pwm_<pwm_id>
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		AEU PWM duty cycle setting. (WO)
> +		Format: aeu<x>:<y> where x (1 - 3) indicates the AEU number,
> +		y (0 - 255) indicates pwm value.
> +
> +What:		/sys/class/leds/led_<id>/aeu_slop_time_<st_id>
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		AEU slop time setting. (WO)
> +		Format: aeu<x>:<y> where x (1 - 3) indicates the AEU number,
> +		y (0 - 15) indicates the slop time value.
> +
> +What:		/sys/class/leds/led_<id>/lod_lsd
> +Date:		July 2025
> +KernelVersion:	6.17
> +Contact:	Nam Tran <trannamatk@gmail.com>
> +Description:
> +		0 0 mean no lod and lsd fault detected, 1 1 mean lod and lsd fault detected (RO)
> diff --git a/MAINTAINERS b/MAINTAINERS
> index b4eb3265c800..cdba86f1768b 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -24565,6 +24565,8 @@ TEXAS INSTRUMENTS' LP5812 RGB LED DRIVER
>  M:	Nam Tran <trannamatk@gmail.com>
>  L:	linux-leds@vger.kernel.org
>  S:	Maintained
> +F:	Documentation/ABI/testing/sysfs-bus-i2c-devices-lp5812
> +F:	Documentation/ABI/testing/sysfs-class-led-lp5812
>  F:	Documentation/devicetree/bindings/leds/ti,lp5812.yaml
>  F:	drivers/leds/rgb/Kconfig
>  F:	drivers/leds/rgb/Makefile
> -- 
> 2.25.1
> 

-- 
Lee Jones [李琼斯]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH v10 2/4] leds: add TI/National Semiconductor LP5812 LED Driver
  2025-06-26 13:02   ` Lee Jones
@ 2025-07-06 10:28     ` Nam Tran
  0 siblings, 0 replies; 9+ messages in thread
From: Nam Tran @ 2025-07-06 10:28 UTC (permalink / raw)
  To: lee
  Cc: pavel, rdunlap, christophe.jaillet, krzk+dt, robh, conor+dt,
	corbet, linux-leds, linux-kernel, devicetree, linux-doc

On Thu, 26 Jun 2025, Lee Jones wrote:

> On Thu, 19 Jun 2025, Nam Tran wrote:
> 
> > The LP5812 is a 4x3 matrix RGB LED driver with an autonomous animation
> > engine and time-cross-multiplexing (TCM) support for up to 12 LEDs or
> > 4 RGB LEDs. Each LED can be configured through the related registers
> > to realize vivid and fancy lighting effects.
> > 
> > Signed-off-by: Nam Tran <trannamatk@gmail.com>
> > ---
> >  MAINTAINERS                    |    4 +
> >  drivers/leds/rgb/Kconfig       |   13 +
> >  drivers/leds/rgb/Makefile      |    1 +
> >  drivers/leds/rgb/leds-lp5812.c | 1943 ++++++++++++++++++++++++++++++++
> >  drivers/leds/rgb/leds-lp5812.h |  227 ++++
> >  5 files changed, 2188 insertions(+)
> 
> Reviewing a 2k+ line driver is not fun!
> 
> Better to reduce it down to bare bones and add new functionality over
> time.  Or at least over different patches within a set.

I agree - reviewing such a large patch isn't ideal. For the next revision,
I'll submit the smallest version of the driver that retains only the essential
functionality, such as basic brightness control and LED registration.
Additional features like the autonomous animation engine will be submitted as
separate follow-up patches.

...

> > +#include <linux/kernel.h>
> > +#include <linux/module.h>
> > +#include <linux/init.h>
> > +#include <linux/i2c.h>
> > +#include <linux/sysfs.h>
> > +#include <linux/mutex.h>
> > +#include <linux/types.h>
> > +#include <linux/leds.h>
> > +#include <linux/delay.h>
> > +#include <linux/led-class-multicolor.h>
> > +#include "leds-lp5812.h"
> 
> Alphabetical.
> 

I will reorder them.

> > +#define LP5812_SC_LED "SC_LED"
> > +#define LP5812_MC_LED "MC_LED"
> > +
> > +#define LP5812_AUTO_PAUSE_ADDR(chan)  (LP5812_AEU_BASE + (chan) * 26)
> > +#define LP5812_AUTO_PLAYBACK_ADDR(chan)  (LP5812_AEU_BASE + (chan) * 260 + 1)
> 
> Bring these 2 down to the line below like the others.  Just to make it
> more uniform / easier to read.
> 

I will update it.

> > +#define LP5812_AEU_PWM_ADDR(chan, aeu, pwm_chan)  \
> > +	(LP5812_AEU_BASE + (chan) * 26 + ((aeu) - 1) * 8 + 2 + (pwm_chan) - 1)
> > +#define LP5812_AEU_SLOPE_TIME_ADDR(chan, aeu, slope_chan)  \
> > +	(LP5812_AEU_BASE + (chan) * 26 + ((aeu) - 1) * 8 + 2 + 5 + ((slope_chan) / 2))
> > +#define LP5812_AEU_PLAYBACK_ADDR(chan, aeu)  \
> > +	(LP5812_AEU_BASE + (chan) * 26 + ((aeu) - 1) * 8 + 2 + 5 + 2)
> > +
> > +#define to_lp5812_led(x) container_of(x, struct lp5812_data, kobj)
> > +#define to_anim_engine_unit(x) container_of(x, struct anim_engine_unit, kobj)
> > +
> > +static int lp5812_read_tsd_config_status(struct lp5812_chip *chip, u8 *reg_val);
> 
> No forward declarations.  Rearrange the functions instead.
> 

I will rearrange the functions.

> > +
> > +/* Begin common functions */
> 
> This comment is superfluous.
> 

I will drop it.

> > +static struct lp5812_led *cdev_to_lp5812_led(struct led_classdev *cdev)
> > +{
> > +	return container_of(cdev, struct lp5812_led, cdev);
> > +}
> > +
> > +static struct lp5812_led *mcled_cdev_to_lp5812_led(struct led_classdev_mc *mc_cdev)
> > +{
> > +	return container_of(mc_cdev, struct lp5812_led, mc_cdev);
> > +}
> 
> Are you sure you need 4 of these.  This seems excessive.
> 

You are right. I will inline them to simplify the code.

> > +static struct lp5812_led *dev_to_lp5812_led(struct device *dev)
> > +{
> > +	return cdev_to_lp5812_led(dev_get_drvdata(dev));
> > +}
> > +
> > +static struct lp5812_led *dev_to_lp5812_led_mc(struct device *dev)
> > +{
> > +	return mcled_cdev_to_lp5812_led(dev_get_drvdata(dev));
> > +}
> > +
> > +static int lp5812_write(struct lp5812_chip *chip, u16 reg, u8 val)
> > +{
> > +	int ret;
> 
> Nit: Small variables at the bottom.
> 

I will reorder them.

> > +	struct i2c_msg msg;
> > +	struct device *dev = &chip->i2c_cl->dev;
> > +	u8 extracted_bits; /* save 9th and 8th bit of reg address */
> 
> All comments should start with an uppercase char.
> 
> Place this comment where you do the work.
> 
> Save them to do what?  More information please.
> 

I will fix the comment placement, and clarify it as suggested.

> > +	u8 buf[2] = {(u8)(reg & 0xFF), val};
> > +
> > +	extracted_bits = (reg >> 8) & 0x03;
> > +	msg.addr = (chip->i2c_cl->addr << 2) | extracted_bits;
> > +	msg.flags = 0;
> > +	msg.len = sizeof(buf);
> > +	msg.buf = buf;
> > +
> > +	ret = i2c_transfer(chip->i2c_cl->adapter, &msg, 1);
> > +	if (ret != 1) {
> > +		dev_err(dev, "i2c write error, ret=%d\n", ret);
> 
> I2C
> 

I will update it.

> > +		ret = ret < 0 ? ret : -EIO;
> > +	} else {
> > +		ret = 0;
> > +	}
> > +
> > +	return ret;
> > +}
> > +
> > +static int lp5812_read(struct lp5812_chip *chip, u16 reg, u8 *val)
> > +{
> > +	int ret;
> > +	u8 ret_val;  /* lp5812_chip return value */
> 
> /* Value returned by the hardware */   ?
> 
> > +	u8 extracted_bits; /* save 9th and 8th bit of reg address */
> > +	u8 converted_reg;  /* extracted 8bit from reg */
> 
> Place all of these comments in the code.
> 
> Saved and extracted for what purpose?  Tell us about the h/w.
> 

I will clarify the comments and move them next to the relevant code lines.

> > +	struct device *dev = &chip->i2c_cl->dev;
> > +	struct i2c_msg msgs[2];
> > +
> > +	extracted_bits = (reg >> 8) & 0x03;
> > +	converted_reg = (u8)(reg & 0xFF);
> > +
> > +	msgs[0].addr = (chip->i2c_cl->addr << 2) | extracted_bits;
> > +	msgs[0].flags = 0;
> > +	msgs[0].len = 1;
> > +	msgs[0].buf = &converted_reg;
> > +
> > +	msgs[1].addr = (chip->i2c_cl->addr << 2) | extracted_bits;
> > +	msgs[1].flags = I2C_M_RD;
> > +	msgs[1].len = 1;
> > +	msgs[1].buf = &ret_val;
> > +
> > +	ret = i2c_transfer(chip->i2c_cl->adapter, msgs, 2);
> > +	if (ret != 2) {
> > +		dev_err(dev, "Read reg value error, ret=%d\n", ret);
> 
> Why is this different to the one above?
> 
> "I2C read error" ?
> 

Agreed, I'll update the message to "I2C read error" for consistency.

> > +		*val = 0;
> > +		ret = ret < 0 ? ret : -EIO;
> > +	} else {
> > +		*val = ret_val;
> > +		ret = 0;
> > +	}
> > +
> > +	return ret;
> > +}
> > +
> > +static int lp5812_parse_common_child(struct device_node *child,
> 
> 'child' here is Device Tree terminology.
> 
> Speak in terms of the hardware / device instead.

I'll rename child to led_node to better reflect the hardware context.

...
> > +static int lp5812_parse_single_led(struct device_node *np,
> > +				   struct lp5812_led_config *cfg,
> > +				   int child_number)
> > +{
> > +	int ret;
> > +
> > +	ret = lp5812_parse_common_child(np, cfg, child_number, 0);
> > +	if (ret)
> > +		return ret;
> > +
> > +	cfg[child_number].num_colors = 1;
> > +	cfg[child_number].is_sc_led = 1;
> > +
> > +	return 0;
> > +}
> 
> Wouldn't it make things twice as easy if we took the multi path every
> time and just make the color optional?
> 
> > +static int lp5812_parse_logical_led(struct device_node *np,
> > +				    struct lp5812_led_config *cfg,
> > +				    int child_number)
> > +{
> > +	int chan_nr, ret;
> > +
> > +	of_property_read_string(np, "label", &cfg[child_number].name);
> > +
> > +	ret = of_property_read_u32(np, "reg", &chan_nr);
> > +	if (ret)
> > +		return ret;
> > +
> > +	cfg[child_number].chan_nr = chan_nr;
> > +
> > +	if (of_node_name_eq(np, "multi-led"))
> > +		return lp5812_parse_multi_led(np, cfg, child_number);
> > +	else
> > +		return lp5812_parse_single_led(np, cfg, child_number);
> 
> Most devices have more than one LED and the supporting code can often
> handle one or more than one LEDs.  Why do we need to take two different
> paths here to handle this?
> 

Got it. I'll refactor to use a single path that handles both single and
multi-color LEDs.

> > +}
> > +
> > +static struct lp5812_data *lp5812_of_populate_pdata(struct device *dev,
> > +						    struct device_node *np,
> > +						    struct lp5812_chip *chip)
> > +{
> > +	struct lp5812_data *pdata;
> > +	struct lp5812_led_config *cfg;
> > +	int num_channels, i = 0, ret;
> > +
> > +	pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
> 
> pdata is collated and passed IN from the platform device registering
> code.  Once we have it, it becomes device data, assuming we're not
> passing it forward to yet another child device?

I will refactor the code to store the data directly in the 'chip',
so there’s no need to allocate memory for pdata.

...
> > +static ssize_t lp5812_auto_time_pause_store(struct device *dev,
> > +					    struct device_attribute *attr,
> > +					    const char *buf, size_t len, bool start)
> > +{
> > +	struct lp5812_led *led;
> > +	struct lp5812_chip *chip;
> > +	struct lp5812_led_config *led_cfg;
> > +	const char *name = dev->platform_data;
> > +	u8 chan_nr = 0, curr_val;
> > +	int i, ret, val[LED_COLOR_ID_MAX];
> > +	char *sub_str, *str = (char *)buf;
> > +	u16 reg;
> > +
> > +	if (strcmp(name, LP5812_SC_LED) == 0)
> > +		led = dev_to_lp5812_led(dev);
> > +	else
> > +		led = dev_to_lp5812_led_mc(dev);
> 
> Put this whole thing in the helper above.

Agreed, I will move that logic into a helper to avoid duplication.

...
> > +struct lp5812_reg {
> > +	u16 addr;
> > +	union {
> > +		u8 val;
> > +		u8 mask;
> > +		u8 shift;
> > +	};
> > +};
> > +
> > +struct lp5812_led;
> 
> Move the definition here instead.
> 

Sure, I will move it.

> > +struct lp5812_device_config {
> > +	const struct lp5812_reg reg_reset;
> > +	const struct lp5812_reg reg_chip_en;
> > +	const struct lp5812_reg reg_dev_config_0;
> > +	const struct lp5812_reg reg_dev_config_1;
> > +	const struct lp5812_reg reg_dev_config_2;
> > +	const struct lp5812_reg reg_dev_config_3;
> > +	const struct lp5812_reg reg_dev_config_4;
> > +	const struct lp5812_reg reg_dev_config_5;
> > +	const struct lp5812_reg reg_dev_config_6;
> > +	const struct lp5812_reg reg_dev_config_7;
> > +	const struct lp5812_reg reg_dev_config_12;
> > +	const struct lp5812_reg reg_cmd_update;
> > +	const struct lp5812_reg reg_cmd_start;
> > +	const struct lp5812_reg reg_cmd_stop;
> > +	const struct lp5812_reg reg_cmd_pause;
> > +	const struct lp5812_reg reg_cmd_continue;
> > +
> > +	const struct lp5812_reg reg_led_en_1;
> > +	const struct lp5812_reg reg_led_en_2;
> > +	const struct lp5812_reg reg_fault_clear;
> > +	const struct lp5812_reg reg_manual_dc_base;
> > +	const struct lp5812_reg reg_auto_dc_base;
> > +	const struct lp5812_reg reg_manual_pwm_base;
> > +	const struct lp5812_reg reg_tsd_config_status;
> > +	const struct lp5812_reg reg_aeu_base;
> > +	const struct lp5812_reg reg_lod_status_base;
> > +	const struct lp5812_reg reg_lsd_status_base;
> > +
> > +	/* set LED brightness */
> > +	int (*brightness_fn)(struct lp5812_led *led);
> > +
> > +	/* set multicolor LED brightness */
> > +	int (*multicolor_brightness_fn)(struct lp5812_led *led);
> 
> Why do you need call-back functions for these?
> 

They are not needed at the moment.
I will remove the callbacks and use direct function calls instead.

> > +	/* additional device specific attributes */
> > +	const struct attribute_group *dev_attr_group;
> > +};
> > +
> > +struct lp5812_led_config {
> > +	const char *name;
> > +	int led_id[LED_COLOR_ID_MAX];
> > +	u8 color_id[LED_COLOR_ID_MAX];
> > +	u8 max_current[LED_COLOR_ID_MAX];
> > +	int num_colors;
> > +	u8 chan_nr;
> > +	bool is_sc_led;
> > +};
> > +
> > +struct lp5812_data {
> > +	struct lp5812_led_config *led_config;
> > +	u8 num_channels;
> > +	const char *label;
> > +};
> 
> How is data different from config here?
> 
> Config to me would be the parameters used to set-up a device.
> 

Based on the comment above regarding 'pdata', I'll merge lp5812_data
into lp5812_chip to simplify the design.

> > +struct lp5812_chip {
> > +	struct i2c_client *i2c_cl;
> 
> Just "client" is fine.
> 

Yes, I will rename it to 'client'.

> > +	struct mutex lock; /* Protects reg access */
> 
> "register"
> 

I will update it.

> > +	struct lp5812_data *pdata;
> > +	const struct lp5812_device_config *cfg;
> > +	union u_scan_order u_scan_order;
> > +	union u_drive_mode u_drive_mode;
> > +};
> > +
> > +struct lp5812_led {
> > +	int chan_nr;
> > +	struct led_classdev cdev;
> > +	struct led_classdev_mc mc_cdev;
> > +	u8 brightness;
> > +	struct lp5812_chip *chip;
> > +};
> > +
> > +#endif /*_LP5812_H_*/
> > -- 
> > 2.25.1

Thank you for the review and your time. I truly appreciate it!

Best regards,
Nam Tran

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2025-07-06 10:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-18 18:32 [PATCH v10 0/4] leds: add new LED driver for TI LP5812 Nam Tran
2025-06-18 18:32 ` [PATCH v10 1/4] dt-bindings: leds: add TI/National Semiconductor LP5812 LED Driver Nam Tran
2025-06-23  6:30   ` Krzysztof Kozlowski
2025-06-18 18:32 ` [PATCH v10 2/4] " Nam Tran
2025-06-26 13:02   ` Lee Jones
2025-07-06 10:28     ` Nam Tran
2025-06-18 18:32 ` [PATCH v10 3/4] docs: ABI: Document LP5812 LED sysfs interfaces Nam Tran
2025-06-26 13:05   ` Lee Jones
2025-06-18 18:32 ` [PATCH v10 4/4] docs: leds: Document TI LP5812 LED driver Nam Tran

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).