brintos

brintos / linux-shallow public Read only

0
0
Text · 1011 B · 0b9a84d Raw
61 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/maxim,max9867.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Maxim Integrated MAX9867 CODEC8 9description: |10  This device supports I2C only.11  Pins on the device (for linking into audio routes):12      * LOUT13      * ROUT14      * LINL15      * LINR16      * MICL17      * MICR18      * DMICL19      * DMICR20 21maintainers:22  - Ladislav Michl <ladis@linux-mips.org>23 24allOf:25  - $ref: dai-common.yaml#26 27properties:28  compatible:29    enum:30      - maxim,max986731 32  '#sound-dai-cells':33    const: 034 35  reg:36    maxItems: 137 38  clocks:39    maxItems: 140 41required:42  - compatible43  - reg44  - clocks45 46additionalProperties: false47 48examples:49  - |50    i2c {51        #address-cells = <1>;52        #size-cells = <0>;53        codec@18 {54            compatible = "maxim,max9867";55            #sound-dai-cells = <0>;56            reg = <0x18>;57            clocks = <&codec_clk>;58        };59    };60...61