1*8af1f903SGeorge Song# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*8af1f903SGeorge Song%YAML 1.2
3*8af1f903SGeorge Song---
4*8af1f903SGeorge Song$id: http://devicetree.org/schemas/sound/maxim,max98520.yaml#
5*8af1f903SGeorge Song$schema: http://devicetree.org/meta-schemas/core.yaml#
6*8af1f903SGeorge Song
7*8af1f903SGeorge Songtitle: Maxim Integrated MAX98520 Speaker Amplifier Driver
8*8af1f903SGeorge Song
9*8af1f903SGeorge Songmaintainers:
10*8af1f903SGeorge Song  - George Song <george.song@maximintegrated.com>
11*8af1f903SGeorge Song
12*8af1f903SGeorge Songproperties:
13*8af1f903SGeorge Song  compatible:
14*8af1f903SGeorge Song    const: maxim,max98520
15*8af1f903SGeorge Song
16*8af1f903SGeorge Song  reg:
17*8af1f903SGeorge Song    maxItems: 1
18*8af1f903SGeorge Song    description: I2C address of the device.
19*8af1f903SGeorge Song
20*8af1f903SGeorge Songrequired:
21*8af1f903SGeorge Song  - compatible
22*8af1f903SGeorge Song  - reg
23*8af1f903SGeorge Song
24*8af1f903SGeorge SongadditionalProperties: false
25*8af1f903SGeorge Song
26*8af1f903SGeorge Songexamples:
27*8af1f903SGeorge Song  - |
28*8af1f903SGeorge Song    i2c {
29*8af1f903SGeorge Song      #address-cells = <1>;
30*8af1f903SGeorge Song      #size-cells = <0>;
31*8af1f903SGeorge Song      max98520: amplifier@38 {
32*8af1f903SGeorge Song        compatible = "maxim,max98520";
33*8af1f903SGeorge Song        reg = <0x38>;
34*8af1f903SGeorge Song      };
35*8af1f903SGeorge Song    };
36