blob: d27300207c67ea77b9c1453e62cb0e76b8d2b773 [file] [log] [blame]
Tom Rini762f85b2024-07-20 11:15:10 -06001# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/sound/wlf,wm8974.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: WM8974 audio CODEC
8
9maintainers:
10 - patches@opensource.cirrus.com
11
12allOf:
13 - $ref: dai-common.yaml#
14
15properties:
16 compatible:
17 const: wlf,wm8974
18
19 reg:
20 maxItems: 1
21
22 "#sound-dai-cells":
23 const: 0
24
25required:
26 - compatible
27 - reg
28
29unevaluatedProperties: false
30
31examples:
32 - |
33 i2c {
34 #address-cells = <1>;
35 #size-cells = <0>;
36
37 codec@1a {
38 compatible = "wlf,wm8974";
39 reg = <0x1a>;
40 };
41 };