brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · 2907104 Raw
62 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/realtek,rt5616.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Realtek rt5616 ALSA SoC audio codec driver8 9description: |10  Pins on the device (for linking into audio routes) for RT5616:11 12      * IN1P13      * IN2P14      * IN2N15      * LOUTL16      * LOUTR17      * HPOL18      * HPOR19 20maintainers:21  - Bard Liao <bardliao@realtek.com>22 23allOf:24  - $ref: dai-common.yaml#25 26properties:27  compatible:28    const: realtek,rt561629 30  reg:31    maxItems: 132 33  clocks:34    items:35      - description: Master clock to the CODEC36 37  clock-names:38    items:39      - const: mclk40 41  port:42    $ref: audio-graph-port.yaml#43    unevaluatedProperties: false44 45required:46  - compatible47  - reg48 49unevaluatedProperties: false50 51examples:52  - |53    i2c {54        #address-cells = <1>;55        #size-cells = <0>;56 57        audio-codec@1b {58            compatible = "realtek,rt5616";59            reg = <0x1b>;60        };61    };62