1*8cc087a1SEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2*8cc087a1SEmmanuel Vadot%YAML 1.2 3*8cc087a1SEmmanuel Vadot--- 4*8cc087a1SEmmanuel Vadot$id: http://devicetree.org/schemas/regulator/samsung,s2mpu02.yaml# 5*8cc087a1SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*8cc087a1SEmmanuel Vadot 7*8cc087a1SEmmanuel Vadottitle: Samsung S2MPU02 Power Management IC regulators 8*8cc087a1SEmmanuel Vadot 9*8cc087a1SEmmanuel Vadotmaintainers: 10*8cc087a1SEmmanuel Vadot - Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> 11*8cc087a1SEmmanuel Vadot 12*8cc087a1SEmmanuel Vadotdescription: | 13*8cc087a1SEmmanuel Vadot This is a part of device tree bindings for S2M and S5M family of Power 14*8cc087a1SEmmanuel Vadot Management IC (PMIC). 15*8cc087a1SEmmanuel Vadot 16*8cc087a1SEmmanuel Vadot The S2MPU02 provides buck and LDO regulators. 17*8cc087a1SEmmanuel Vadot 18*8cc087a1SEmmanuel Vadot See also Documentation/devicetree/bindings/mfd/samsung,s2mps11.yaml for 19*8cc087a1SEmmanuel Vadot additional information and example. 20*8cc087a1SEmmanuel Vadot 21*8cc087a1SEmmanuel VadotpatternProperties: 22*8cc087a1SEmmanuel Vadot # 28 LDOs 23*8cc087a1SEmmanuel Vadot "^LDO([1-9]|1[0-9]|2[0-8])$": 24*8cc087a1SEmmanuel Vadot type: object 25*8cc087a1SEmmanuel Vadot $ref: regulator.yaml# 26*8cc087a1SEmmanuel Vadot unevaluatedProperties: false 27*8cc087a1SEmmanuel Vadot description: 28*8cc087a1SEmmanuel Vadot Properties for single LDO regulator. 29*8cc087a1SEmmanuel Vadot 30*8cc087a1SEmmanuel Vadot required: 31*8cc087a1SEmmanuel Vadot - regulator-name 32*8cc087a1SEmmanuel Vadot 33*8cc087a1SEmmanuel Vadot # 7 bucks 34*8cc087a1SEmmanuel Vadot "^BUCK[1-7]$": 35*8cc087a1SEmmanuel Vadot type: object 36*8cc087a1SEmmanuel Vadot $ref: regulator.yaml# 37*8cc087a1SEmmanuel Vadot unevaluatedProperties: false 38*8cc087a1SEmmanuel Vadot description: 39*8cc087a1SEmmanuel Vadot Properties for single BUCK regulator. 40*8cc087a1SEmmanuel Vadot 41*8cc087a1SEmmanuel Vadot required: 42*8cc087a1SEmmanuel Vadot - regulator-name 43*8cc087a1SEmmanuel Vadot 44*8cc087a1SEmmanuel VadotadditionalProperties: false 45