brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · fb05988 Raw
64 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/realtek,alc5632.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: ALC5632 audio CODEC8 9description: |10  Pins on the device (for linking into audio routes):11      * SPK_OUTP12      * SPK_OUTN13      * HP_OUT_L14      * HP_OUT_R15      * AUX_OUT_P16      * AUX_OUT_N17      * LINE_IN_L18      * LINE_IN_R19      * PHONE_P20      * PHONE_N21      * MIC1_P22      * MIC1_N23      * MIC2_P24      * MIC2_N25      * MICBIAS126      * DMICDAT27 28maintainers:29  - Leon Romanovsky <leon@leon.nu>30 31properties:32  compatible:33    const: realtek,alc563234 35  reg:36    maxItems: 137 38  '#gpio-cells':39    const: 240 41  gpio-controller: true42 43required:44  - compatible45  - reg46  - '#gpio-cells'47  - gpio-controller48 49additionalProperties: false50 51examples:52  - |53    #include <dt-bindings/gpio/gpio.h>54    i2c {55        #address-cells = <1>;56        #size-cells = <0>;57        codec@1a {58            compatible = "realtek,alc5632";59            reg = <0x1a>;60            gpio-controller;61            #gpio-cells = <2>;62        };63    };64