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

title: Monolithic Power Systems MP8867/MP8869 voltage regulator

maintainers:
  - Jisheng Zhang <jszhang@kernel.org>

allOf:
  - $ref: regulator.yaml#

properties:
  compatible:
    enum:
      - mps,mp8867
      - mps,mp8869

  reg:
    maxItems: 1

  enable-gpios:
    description: GPIO to enable/disable the regulator.
    maxItems: 1

  mps,fb-voltage-divider:
    description: An array of two integers containing the resistor
      values R1 and R2 of the feedback voltage divider in kilo ohms.
    $ref: /schemas/types.yaml#/definitions/uint32-array
    maxItems: 2

  mps,switch-frequency-hz:
    description: The valid switch frequency in Hertz.
    enum: [500000, 750000, 1000000, 1250000, 1500000]

required:
  - compatible
  - reg
  - enable-gpios
  - mps,fb-voltage-divider

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/gpio/gpio.h>
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;
        regulator@62 {
          compatible = "mps,mp8869";
          regulator-name = "vcpu";
          regulator-min-microvolt = <800000>;
          regulator-max-microvolt = <1150000>;
          enable-gpios = <&porta 1 GPIO_ACTIVE_LOW>;
          mps,fb-voltage-divider = <80 240>;
          reg = <0x62>;
        };
    };

...