Documentation / devicetree / bindings / regulator / richtek,rt4803.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
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/regulator/richtek,rt4803.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Richtek RT4803 Boost Regulator

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

description: |
  RT4803 is a boost regulator that's designed to provide the minimum output
  voltage, even if the input voltage is lower than the required voltage. It
  supports boost and auto bypass mode that depends on the difference between the
  input and output voltage. If the input is lower than the output, mode will
  transform to boost mode. Otherwise, turn on bypass switch to enter bypass mode.
 
  Datasheet is available at
  https://www.richtek.com/assets/product_file/RT4803/DS4803-03.pdf
  https://www.richtek.com/assets/product_file/RT4803A/DS4803A-06.pdf

allOf:
  - $ref: regulator.yaml#

properties:
  compatible:
    enum:
      - richtek,rt4803

  reg:
    maxItems: 1

  richtek,vsel-active-high:
    type: boolean
    description: Specify the VSEL register group is using when system is active

  regulator-allowed-modes:
    description: |
      Available operating mode
        1: Auto PFM/PWM
        2: Force PWM
    items:
      enum: [1, 2]

required:
  - compatible
  - reg

unevaluatedProperties: false

examples:
  - |
    i2c {
      #address-cells = <1>;
      #size-cells = <0>;
 
      regulator@75 {
        compatible = "richtek,rt4803";
        reg = <0x75>;
        richtek,vsel-active-high;
        regulator-name = "rt4803-regulator";
        regulator-min-microvolt = <2850000>;
        regulator-max-microvolt = <4400000>;
        regulator-allowed-modes = <1 2>;
        regulator-always-on;
      };
    };