Documentation / devicetree / bindings / regulator / richtek,rt6190.yaml


Based on kernel version 6.8. Page generated on 2024-03-11 21:26 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 78 79
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/regulator/richtek,rt6190.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Richtek RT6190 4-Switch BuckBoost controller

maintainers:
  - ChiYuan Huang <cy_huang@richtek.com>

description: |
  The RT6190 is 4-Switch BuckBoost controller designed for converting input
  voltage to output voltage that can be equal to, higher or lower than input
  voltage. It operates with wide input voltage range from 4.5V to 36V, and
  the output voltage can be set from 3V to 36V by external FB pin. It's commonly
  used for the application like as BuckBoost bus supply, docking station and USB
  power delivery product.
 
  Datasheet is available at
  https://www.richtek.com/assets/product_file/RT6190/DS6190-02.pdf

allOf:
  - $ref: regulator.yaml#

properties:
  compatible:
    enum:
      - richtek,rt6190

  reg:
    maxItems: 1

  enable-gpios:
    maxItems: 1

  wakeup-source: true

  interrupts:
    maxItems: 1

  regulator-allowed-modes:
    description: |
      buck allowed operating mode
        0: PSM mode (light load Power Saving Mode)
        1: FCCM mode (Forced-CCM mode)
    maxItems: 2
    items:
      enum: [0, 1]

required:
  - compatible
  - reg

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/gpio/gpio.h>
    #include <dt-bindings/interrupt-controller/irq.h>
 
    i2c {
      #address-cells = <1>;
      #size-cells = <0>;
 
      regulator@2c {
        compatible = "richtek,rt6190";
        reg = <0x2c>;
        wakeup-source;
        interrupts-extended = <&gpio26 0 IRQ_TYPE_LEVEL_LOW>;
        enable-gpios = <&gpio26 1 GPIO_ACTIVE_HIGH>;
        regulator-name = "richtek,rt6190-buckboost";
        regulator-min-microvolt = <3000000>;
        regulator-max-microvolt = <32000000>;
        regulator-min-microamp = <306000>;
        regulator-max-microamp = <12114000>;
        regulator-allowed-modes = <0 1>;
      };
    };