1 # SPDX-License-Identifier: GPL-2.0 1 # SPDX-License-Identifier: GPL-2.0 2 %YAML 1.2 2 %YAML 1.2 3 --- 3 --- 4 $id: http://devicetree.org/schemas/regulator/m 4 $id: http://devicetree.org/schemas/regulator/max8660.yaml# 5 $schema: http://devicetree.org/meta-schemas/co 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 6 6 7 title: Maxim MAX8660 voltage regulator 7 title: Maxim MAX8660 voltage regulator 8 8 9 maintainers: 9 maintainers: 10 - Daniel Mack <zonque@gmail.com> 10 - Daniel Mack <zonque@gmail.com> 11 11 12 properties: 12 properties: 13 $nodename: 13 $nodename: 14 pattern: "pmic@[0-9a-f]{1,2}" 14 pattern: "pmic@[0-9a-f]{1,2}" 15 compatible: 15 compatible: 16 enum: 16 enum: 17 - maxim,max8660 17 - maxim,max8660 18 - maxim,max8661 18 - maxim,max8661 19 19 20 reg: 20 reg: 21 maxItems: 1 21 maxItems: 1 22 22 23 regulators: 23 regulators: 24 type: object 24 type: object 25 25 26 patternProperties: 26 patternProperties: 27 "^regulator-.+$": !! 27 "regulator-.+": 28 $ref: regulator.yaml# !! 28 $ref: "regulator.yaml#" 29 unevaluatedProperties: false << 30 29 31 additionalProperties: false 30 additionalProperties: false 32 31 33 additionalProperties: false 32 additionalProperties: false 34 33 35 examples: 34 examples: 36 - | 35 - | 37 i2c { 36 i2c { 38 #address-cells = <1>; 37 #address-cells = <1>; 39 #size-cells = <0>; 38 #size-cells = <0>; 40 39 41 pmic@34 { 40 pmic@34 { 42 compatible = "maxim,max8660"; 41 compatible = "maxim,max8660"; 43 reg = <0x34>; 42 reg = <0x34>; 44 43 45 regulators { 44 regulators { 46 regulator-V3 { 45 regulator-V3 { >> 46 regulator-compatible= "V3(DCDC)"; 47 regulator-min-microvolt = <725000> 47 regulator-min-microvolt = <725000>; 48 regulator-max-microvolt = <1800000 48 regulator-max-microvolt = <1800000>; 49 }; 49 }; 50 50 51 regulator-V4 { 51 regulator-V4 { >> 52 regulator-compatible= "V4(DCDC)"; 52 regulator-min-microvolt = <725000> 53 regulator-min-microvolt = <725000>; 53 regulator-max-microvolt = <1800000 54 regulator-max-microvolt = <1800000>; 54 }; 55 }; 55 56 56 regulator-V5 { 57 regulator-V5 { >> 58 regulator-compatible= "V5(LDO)"; 57 regulator-min-microvolt = <1700000 59 regulator-min-microvolt = <1700000>; 58 regulator-max-microvolt = <2000000 60 regulator-max-microvolt = <2000000>; 59 }; 61 }; 60 62 61 regulator-V6 { 63 regulator-V6 { >> 64 regulator-compatible= "V6(LDO)"; 62 regulator-min-microvolt = <1800000 65 regulator-min-microvolt = <1800000>; 63 regulator-max-microvolt = <3300000 66 regulator-max-microvolt = <3300000>; 64 }; 67 }; 65 68 66 regulator-V7 { 69 regulator-V7 { >> 70 regulator-compatible= "V7(LDO)"; 67 regulator-min-microvolt = <1800000 71 regulator-min-microvolt = <1800000>; 68 regulator-max-microvolt = <3300000 72 regulator-max-microvolt = <3300000>; 69 }; 73 }; 70 }; 74 }; 71 }; 75 }; 72 }; 76 }; 73 ... 77 ...
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.