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