Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1 | # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) |
| 2 | # Copyright 2015 Alban Bedel <albeu@free.fr> |
| 3 | %YAML 1.2 |
| 4 | --- |
| 5 | $id: http://devicetree.org/schemas/reset/qca,ar7100-reset.yaml# |
| 6 | $schema: http://devicetree.org/meta-schemas/core.yaml# |
| 7 | |
| 8 | title: Qualcomm Atheros AR7xxx/AR9XXX reset controller |
| 9 | |
| 10 | maintainers: |
| 11 | - Alban Bedel <albeu@free.fr> |
| 12 | |
| 13 | properties: |
| 14 | compatible: |
| 15 | items: |
| 16 | - enum: |
| 17 | - qca,ar9132-reset |
| 18 | - qca,ar9331-reset |
| 19 | - const: qca,ar7100-reset |
| 20 | |
| 21 | reg: |
| 22 | maxItems: 1 |
| 23 | |
| 24 | "#reset-cells": |
| 25 | const: 1 |
| 26 | |
| 27 | required: |
| 28 | - compatible |
| 29 | - reg |
| 30 | - "#reset-cells" |
| 31 | |
| 32 | additionalProperties: false |
| 33 | |
| 34 | examples: |
| 35 | - | |
| 36 | reset-controller@1806001c { |
| 37 | compatible = "qca,ar9132-reset", "qca,ar7100-reset"; |
| 38 | reg = <0x1806001c 0x4>; |
| 39 | #reset-cells = <1>; |
| 40 | }; |