38 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---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 LDOs8 9maintainers:10 - Samuel Holland <samuel@sholland.org>11 12description:13 Allwinner D1 contains a pair of general-purpose LDOs which are designed to14 supply power inside and outside the SoC. They are controlled by a register15 within the system control MMIO space.16 17properties:18 compatible:19 enum:20 - allwinner,sun20i-d1-system-ldos21 22 reg:23 maxItems: 124 25patternProperties:26 "^ldo[ab]$":27 type: object28 $ref: regulator.yaml#29 unevaluatedProperties: false30 31required:32 - compatible33 - reg34 35additionalProperties: false36 37...38