1*8bab661aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*8bab661aSEmmanuel Vadot%YAML 1.2
3*8bab661aSEmmanuel Vadot---
4*8bab661aSEmmanuel Vadot$id: http://devicetree.org/schemas/sound/wlf,wm8961.yaml#
5*8bab661aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*8bab661aSEmmanuel Vadot
7*8bab661aSEmmanuel Vadottitle: Wolfson WM8961 Ultra-Low Power Stereo CODEC
8*8bab661aSEmmanuel Vadot
9*8bab661aSEmmanuel Vadotmaintainers:
10*8bab661aSEmmanuel Vadot  - patches@opensource.cirrus.com
11*8bab661aSEmmanuel Vadot
12*8bab661aSEmmanuel VadotallOf:
13*8bab661aSEmmanuel Vadot  - $ref: dai-common.yaml#
14*8bab661aSEmmanuel Vadot
15*8bab661aSEmmanuel Vadotproperties:
16*8bab661aSEmmanuel Vadot  compatible:
17*8bab661aSEmmanuel Vadot    const: wlf,wm8961
18*8bab661aSEmmanuel Vadot
19*8bab661aSEmmanuel Vadot  reg:
20*8bab661aSEmmanuel Vadot    maxItems: 1
21*8bab661aSEmmanuel Vadot
22*8bab661aSEmmanuel Vadot  '#sound-dai-cells':
23*8bab661aSEmmanuel Vadot    const: 0
24*8bab661aSEmmanuel Vadot
25*8bab661aSEmmanuel Vadotrequired:
26*8bab661aSEmmanuel Vadot  - compatible
27*8bab661aSEmmanuel Vadot  - reg
28*8bab661aSEmmanuel Vadot  - '#sound-dai-cells'
29*8bab661aSEmmanuel Vadot
30*8bab661aSEmmanuel VadotunevaluatedProperties: false
31*8bab661aSEmmanuel Vadot
32*8bab661aSEmmanuel Vadotexamples:
33*8bab661aSEmmanuel Vadot  - |
34*8bab661aSEmmanuel Vadot    i2c {
35*8bab661aSEmmanuel Vadot          #address-cells = <1>;
36*8bab661aSEmmanuel Vadot          #size-cells = <0>;
37*8bab661aSEmmanuel Vadot
38*8bab661aSEmmanuel Vadot          wm8961: codec@4a {
39*8bab661aSEmmanuel Vadot                  compatible = "wlf,wm8961";
40*8bab661aSEmmanuel Vadot                  reg = <0x4a>;
41*8bab661aSEmmanuel Vadot                  #sound-dai-cells = <0>;
42*8bab661aSEmmanuel Vadot          };
43*8bab661aSEmmanuel Vadot    };
44