blob: 5aa00617291c95d5036b1a57d7d2548f85d5d5ca [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/ti,pcm1681.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Texas Instruments PCM1681 8-channel PWM Processor
8
9maintainers:
10 - Shenghao Ding <shenghao-ding@ti.com>
11 - Kevin Lu <kevin-lu@ti.com>
12 - Baojun Xu <baojun.xu@ti.com>
13
14allOf:
15 - $ref: dai-common.yaml#
16
17properties:
18 compatible:
19 const: ti,pcm1681
20
21 reg:
22 maxItems: 1
23
24 "#sound-dai-cells":
25 const: 0
26
27required:
28 - compatible
29 - reg
30
31unevaluatedProperties: false
32
33examples:
34 - |
35 i2c {
36 #address-cells = <1>;
37 #size-cells = <0>;
38
39 pcm1681: audio-codec@4c {
40 compatible = "ti,pcm1681";
41 reg = <0x4c>;
42 };
43 };