Tom Rini | 762f85b | 2024-07-20 11:15:10 -0600 | [diff] [blame] | 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 | |
| 7 | title: Allwinner D1 System LDOs |
| 8 | |
| 9 | maintainers: |
| 10 | - Samuel Holland <samuel@sholland.org> |
| 11 | |
| 12 | description: |
| 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 | |
| 17 | properties: |
| 18 | compatible: |
| 19 | enum: |
| 20 | - allwinner,sun20i-d1-system-ldos |
| 21 | |
| 22 | reg: |
| 23 | maxItems: 1 |
| 24 | |
| 25 | patternProperties: |
| 26 | "^ldo[ab]$": |
| 27 | type: object |
| 28 | $ref: regulator.yaml# |
| 29 | unevaluatedProperties: false |
| 30 | |
| 31 | required: |
| 32 | - compatible |
| 33 | - reg |
| 34 | |
| 35 | additionalProperties: false |
| 36 | |
| 37 | ... |