xref: /freebsd/sys/contrib/device-tree/Bindings/sound/irondevice,sma1303.yaml (revision cb7aa33ac6cd46a5434798e50363136e64f3ae98)
1*cb7aa33aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*cb7aa33aSEmmanuel Vadot%YAML 1.2
3*cb7aa33aSEmmanuel Vadot---
4*cb7aa33aSEmmanuel Vadot$id: http://devicetree.org/schemas/sound/irondevice,sma1303.yaml#
5*cb7aa33aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*cb7aa33aSEmmanuel Vadot
7*cb7aa33aSEmmanuel Vadottitle: Iron Device SMA1303 Audio Amplifier
8*cb7aa33aSEmmanuel Vadot
9*cb7aa33aSEmmanuel Vadotmaintainers:
10*cb7aa33aSEmmanuel Vadot  - Kiseok Jo <kiseok.jo@irondevice.com>
11*cb7aa33aSEmmanuel Vadot
12*cb7aa33aSEmmanuel Vadotdescription:
13*cb7aa33aSEmmanuel Vadot  SMA1303 digital class-D audio amplifier
14*cb7aa33aSEmmanuel Vadot  with an integrated boost converter.
15*cb7aa33aSEmmanuel Vadot
16*cb7aa33aSEmmanuel VadotallOf:
17*cb7aa33aSEmmanuel Vadot  - $ref: dai-common.yaml#
18*cb7aa33aSEmmanuel Vadot
19*cb7aa33aSEmmanuel Vadotproperties:
20*cb7aa33aSEmmanuel Vadot  compatible:
21*cb7aa33aSEmmanuel Vadot    enum:
22*cb7aa33aSEmmanuel Vadot      - irondevice,sma1303
23*cb7aa33aSEmmanuel Vadot
24*cb7aa33aSEmmanuel Vadot  reg:
25*cb7aa33aSEmmanuel Vadot    maxItems: 1
26*cb7aa33aSEmmanuel Vadot
27*cb7aa33aSEmmanuel Vadot  '#sound-dai-cells':
28*cb7aa33aSEmmanuel Vadot    const: 1
29*cb7aa33aSEmmanuel Vadot
30*cb7aa33aSEmmanuel Vadotrequired:
31*cb7aa33aSEmmanuel Vadot  - compatible
32*cb7aa33aSEmmanuel Vadot  - reg
33*cb7aa33aSEmmanuel Vadot  - '#sound-dai-cells'
34*cb7aa33aSEmmanuel Vadot
35*cb7aa33aSEmmanuel VadotadditionalProperties: false
36*cb7aa33aSEmmanuel Vadot
37*cb7aa33aSEmmanuel Vadotexamples:
38*cb7aa33aSEmmanuel Vadot  - |
39*cb7aa33aSEmmanuel Vadot    i2c {
40*cb7aa33aSEmmanuel Vadot        #address-cells = <1>;
41*cb7aa33aSEmmanuel Vadot        #size-cells = <0>;
42*cb7aa33aSEmmanuel Vadot
43*cb7aa33aSEmmanuel Vadot        amplifier@1e {
44*cb7aa33aSEmmanuel Vadot            compatible = "irondevice,sma1303";
45*cb7aa33aSEmmanuel Vadot            reg = <0x1e>;
46*cb7aa33aSEmmanuel Vadot            #sound-dai-cells = <1>;
47*cb7aa33aSEmmanuel Vadot        };
48*cb7aa33aSEmmanuel Vadot    };
49