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/sound/nvidia,tegra20-das.yaml# |
| 5 | $schema: http://devicetree.org/meta-schemas/core.yaml# |
| 6 | |
| 7 | title: NVIDIA Tegra 20 DAS (Digital Audio Switch) controller |
| 8 | |
| 9 | maintainers: |
| 10 | - Thierry Reding <treding@nvidia.com> |
| 11 | - Jon Hunter <jonathanh@nvidia.com> |
| 12 | |
| 13 | properties: |
| 14 | compatible: |
| 15 | const: nvidia,tegra20-das |
| 16 | |
| 17 | reg: |
| 18 | maxItems: 1 |
| 19 | |
| 20 | required: |
| 21 | - compatible |
| 22 | - reg |
| 23 | |
| 24 | additionalProperties: false |
| 25 | |
| 26 | examples: |
| 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 | ... |