brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · b4b7847 Raw
55 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/sound/amlogic,g12a-tohdmitx.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Amlogic G12a HDMI TX Control Glue8 9maintainers:10  - Jerome Brunet <jbrunet@baylibre.com>11 12allOf:13  - $ref: dai-common.yaml#14 15properties:16  $nodename:17    pattern: "^audio-controller@.*"18 19  compatible:20    oneOf:21      - items:22          - const: amlogic,g12a-tohdmitx23      - items:24          - enum:25              - amlogic,sm1-tohdmitx26          - const: amlogic,g12a-tohdmitx27 28  reg:29    maxItems: 130 31  resets:32    maxItems: 133 34  "#sound-dai-cells":35    const: 136 37required:38  - compatible39  - reg40  - resets41  - "#sound-dai-cells"42 43unevaluatedProperties: false44 45examples:46  - |47    #include <dt-bindings/reset/amlogic,meson-g12a-audio-reset.h>48 49    tohdmitx: audio-controller@744 {50        compatible = "amlogic,g12a-tohdmitx";51        reg = <0x744 0x4>;52        resets = <&clkc_audio AUD_RESET_TOHDMITX>;53        #sound-dai-cells = <1>;54    };55