1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/sound/nuvoton,nau8822.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: NAU8822 audio CODEC
8
9description: |
10  24 bit stereo audio codec with speaker driver.
11  This device supports I2C/SPI.
12
13maintainers:
14  - David Lin <CTLIN0@nuvoton.com>
15
16properties:
17  compatible:
18    enum:
19      - nuvoton,nau8822
20
21  reg:
22    maxItems: 1
23
24required:
25  - compatible
26  - reg
27
28additionalProperties: false
29
30examples:
31  - |
32    i2c {
33        #address-cells = <1>;
34        #size-cells = <0>;
35
36        codec@1a {
37            compatible = "nuvoton,nau8822";
38            reg = <0x1a>;
39        };
40    };
41