brintos

brintos / linux-shallow public Read only

0
0
Text · 772 B · 5aa0061 Raw
44 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---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 Processor8 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,pcm168120 21  reg:22    maxItems: 123 24  "#sound-dai-cells":25    const: 026 27required:28  - compatible29  - reg30 31unevaluatedProperties: false32 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    };44