[PATCH 1/2] dt-bindings: regulator: add SGMicro SGM3804

From: Alexandre Hamamdjian via B4 Relay

Date: Sun May 10 2026 - 12:50:06 EST


From: Alexandre Hamamdjian <azkali.limited@xxxxxxxxx>

The SGMicro SGM3804 is an I2C-controlled positive and negative output
charge-pump regulator. It is commonly used to provide the AVDD and AVEE
supplies for display panels, and exposes two reset GPIOs to sequence the
positive and negative output rails independently.

Document the binding for the new compatible "sgmicro,sgm3804" so it can
be referenced by board device trees and the matching driver, and add a
MAINTAINERS entry covering both the binding and the upcoming driver.

Co-developed-by: Philippe Simons <simons.philippe@xxxxxxxxx>
Signed-off-by: Philippe Simons <simons.philippe@xxxxxxxxx>
Signed-off-by: Alexandre Hamamdjian <azkali.limited@xxxxxxxxx>
---
.../bindings/regulator/sgmicro,sgm3804.yaml | 60 ++++++++++++++++++++++
MAINTAINERS | 7 +++
2 files changed, 67 insertions(+)

diff --git a/Documentation/devicetree/bindings/regulator/sgmicro,sgm3804.yaml b/Documentation/devicetree/bindings/regulator/sgmicro,sgm3804.yaml
new file mode 100644
index 000000000000..f1de17bd5395
--- /dev/null
+++ b/Documentation/devicetree/bindings/regulator/sgmicro,sgm3804.yaml
@@ -0,0 +1,60 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/regulator/sgmicro,sgm3804.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: SGMicro SGM3804 I2C charge-pump regulator
+
+maintainers:
+ - Alexandre Hamamdjian <azkali.limited@xxxxxxxxx>
+ - Philippe Simons <simons.philippe@xxxxxxxxx>
+
+description:
+ The SGM3804 is an I2C-controlled positive and negative output charge-pump
+ regulator typically used to provide the AVDD and AVEE supplies for display
+ panels. Two reset GPIOs are used to sequence the positive and negative
+ outputs independently.
+
+allOf:
+ - $ref: regulator.yaml#
+
+properties:
+ compatible:
+ const: sgmicro,sgm3804
+
+ reg:
+ maxItems: 1
+
+ reset-gpios:
+ minItems: 1
+ maxItems: 2
+ description:
+ Reset/enable GPIOs for the positive (index 0) and, optionally, the
+ negative (index 1) output rails.
+
+required:
+ - compatible
+ - reg
+ - reset-gpios
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ regulator@3e {
+ compatible = "sgmicro,sgm3804";
+ reg = <0x3e>;
+ reset-gpios = <&tlmm 10 GPIO_ACTIVE_HIGH>,
+ <&tlmm 11 GPIO_ACTIVE_HIGH>;
+ regulator-name = "panel-avdd";
+ regulator-min-microvolt = <5000000>;
+ regulator-max-microvolt = <5000000>;
+ };
+ };
diff --git a/MAINTAINERS b/MAINTAINERS
index f877e5aaf2c7..394216175d2e 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -24391,6 +24391,13 @@ M: Steve Wahl <steve.wahl@xxxxxxx>
S: Maintained
F: drivers/misc/sgi-xp/

+SGMICRO SGM3804 REGULATOR DRIVER
+M: Alexandre Hamamdjian <azkali.limited@xxxxxxxxx>
+M: Philippe Simons <simons.philippe@xxxxxxxxx>
+S: Maintained
+F: Documentation/devicetree/bindings/regulator/sgmicro,sgm3804.yaml
+F: drivers/regulator/sgm3804-regulator.c
+
SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
M: D. Wythe <alibuda@xxxxxxxxxxxxxxxxx>
M: Dust Li <dust.li@xxxxxxxxxxxxxxxxx>

--
2.54.0