Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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
8title: Qualcomm Atheros AR7xxx/AR9XXX reset controller
9
10maintainers:
11 - Alban Bedel <albeu@free.fr>
12
13properties:
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
27required:
28 - compatible
29 - reg
30 - "#reset-cells"
31
32additionalProperties: false
33
34examples:
35 - |
36 reset-controller@1806001c {
37 compatible = "qca,ar9132-reset", "qca,ar7100-reset";
38 reg = <0x1806001c 0x4>;
39 #reset-cells = <1>;
40 };