Documentation / devicetree / bindings / regulator / sgmicro,sgm3804.yaml


Based on kernel version 7.2. Page generated on 2026-08-20 08:41 EST.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
# SPDX-License-Identifier: (GPL-2.0 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: SG Micro SGM3804 Single Inductor Dual Output Buck/Boost Converter

maintainers:
  - Neil Armstrong <neil.armstrong@linaro.org>

description:
  The SGM3804 is a dual voltage regulator, designed to support positive/negative
  supply for driving LCD panels. It support software-configurable output
  switching. The output voltages can be programmed via an I2C compatible interface.

properties:
  compatible:
    const: sgmicro,sgm3804

  reg:
    maxItems: 1

  vin-supply: true

patternProperties:
  "^(pos|neg)$":
    type: object
    $ref: regulator.yaml#

    properties:
      enable-gpios: true

    unevaluatedProperties: false

    required:
      - enable-gpios

required:
  - compatible
  - reg
  - pos
  - neg

additionalProperties: false

examples:
  - |
    #include <dt-bindings/gpio/gpio.h>
 
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;
 
        regulator@3e {
            compatible = "sgmicro,sgm3804";
            reg = <0x3e>;
 
            vin-supply = <&vin_reg>;
 
            pos {
                regulator-name = "outpos";
                regulator-min-microvolt = <5000000>;
                regulator-max-microvolt = <5000000>;
                enable-gpios = <&gpio 17 GPIO_ACTIVE_HIGH>;
            };
 
            neg {
                regulator-name = "outneg";
                regulator-min-microvolt = <5000000>;
                regulator-max-microvolt = <5000000>;
                enable-gpios = <&gpio 18 GPIO_ACTIVE_HIGH>;
            };
        };
    };
...