68 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/regulator/maxim,max77826.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Maxim Integrated MAX77826 PMIC8 9maintainers:10 - Iskren Chernev <iskren.chernev@gmail.com>11 12properties:13 $nodename:14 pattern: "pmic@[0-9a-f]{1,2}"15 compatible:16 enum:17 - maxim,max7782618 19 reg:20 maxItems: 121 22 regulators:23 type: object24 $ref: regulator.yaml#25 description: |26 list of regulators provided by this controller, must be named27 after their hardware counterparts LDO[1-15], BUCK and BUCKBOOST28 29 patternProperties:30 "^LDO([1-9]|1[0-5])$":31 type: object32 $ref: regulator.yaml#33 unevaluatedProperties: false34 35 "^BUCK|BUCKBOOST$":36 type: object37 $ref: regulator.yaml#38 unevaluatedProperties: false39 40 additionalProperties: false41 42required:43 - compatible44 - reg45 - regulators46 47additionalProperties: false48 49examples:50 - |51 i2c {52 #address-cells = <1>;53 #size-cells = <0>;54 55 pmic@69 {56 compatible = "maxim,max77826";57 reg = <0x69>;58 59 regulators {60 LDO2 {61 regulator-min-microvolt = <650000>;62 regulator-max-microvolt = <3587500>;63 };64 };65 };66 };67...68