blob: 44c5ce8ee6be6c262270c8833ec70e92da8fa992 [file] [log] [blame]
Tom Rini762f85b2024-07-20 11:15:10 -06001# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/sound/nvidia,tegra20-das.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: NVIDIA Tegra 20 DAS (Digital Audio Switch) controller
8
9maintainers:
10 - Thierry Reding <treding@nvidia.com>
11 - Jon Hunter <jonathanh@nvidia.com>
12
13properties:
14 compatible:
15 const: nvidia,tegra20-das
16
17 reg:
18 maxItems: 1
19
20required:
21 - compatible
22 - reg
23
24additionalProperties: false
25
26examples:
27 - |
28 bus {
29 #address-cells = <1>;
30 #size-cells = <1>;
31 das@70000c00 {
32 compatible = "nvidia,tegra20-das";
33 reg = <0x70000c00 0x80>;
34 };
35 };
36...