1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/regulator/allwinner,sun20i-d1-system-ldos.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Allwinner D1 System LDOs 8 9maintainers: 10 - Samuel Holland <samuel@sholland.org> 11 12description: 13 Allwinner D1 contains a pair of general-purpose LDOs which are designed to 14 supply power inside and outside the SoC. They are controlled by a register 15 within the system control MMIO space. 16 17properties: 18 compatible: 19 enum: 20 - allwinner,sun20i-d1-system-ldos 21 22 reg: 23 maxItems: 1 24 25patternProperties: 26 "^ldo[ab]$": 27 type: object 28 $ref: regulator.yaml# 29 unevaluatedProperties: false 30 31required: 32 - compatible 33 - reg 34 35additionalProperties: false 36 37... 38