brintos

brintos / linux-shallow public Read only

0
0
Text · 944 B · 77544a9 Raw
55 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/maxim,max98095.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Maxim Integrated MAX98095 audio codec8 9maintainers:10  - Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>11 12allOf:13  - $ref: dai-common.yaml#14 15properties:16  compatible:17    enum:18      - maxim,max9809519 20  reg:21    maxItems: 122 23  clocks:24    items:25      - description: master clock26 27  clock-names:28    items:29      - const: mclk30 31  '#sound-dai-cells':32    const: 133 34required:35  - compatible36  - reg37 38unevaluatedProperties: false39 40examples:41  - |42    #include <dt-bindings/interrupt-controller/irq.h>43 44    i2c {45        #address-cells = <1>;46        #size-cells = <0>;47 48        audio-codec@11 {49            compatible = "maxim,max98095";50            reg = <0x11>;51            clocks = <&i2s0 0>;52            clock-names = "mclk";53        };54    };55