xref: /freebsd/sys/contrib/device-tree/Bindings/sound/amlogic,g12a-tohdmitx.yaml (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0
2*0e8011faSEmmanuel Vadot%YAML 1.2
3*0e8011faSEmmanuel Vadot---
4*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/sound/amlogic,g12a-tohdmitx.yaml#
5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*0e8011faSEmmanuel Vadot
7*0e8011faSEmmanuel Vadottitle: Amlogic G12a HDMI TX Control Glue
8*0e8011faSEmmanuel Vadot
9*0e8011faSEmmanuel Vadotmaintainers:
10*0e8011faSEmmanuel Vadot  - Jerome Brunet <jbrunet@baylibre.com>
11*0e8011faSEmmanuel Vadot
12*0e8011faSEmmanuel VadotallOf:
13*0e8011faSEmmanuel Vadot  - $ref: dai-common.yaml#
14*0e8011faSEmmanuel Vadot
15*0e8011faSEmmanuel Vadotproperties:
16*0e8011faSEmmanuel Vadot  $nodename:
17*0e8011faSEmmanuel Vadot    pattern: "^audio-controller@.*"
18*0e8011faSEmmanuel Vadot
19*0e8011faSEmmanuel Vadot  compatible:
20*0e8011faSEmmanuel Vadot    oneOf:
21*0e8011faSEmmanuel Vadot      - items:
22*0e8011faSEmmanuel Vadot          - const: amlogic,g12a-tohdmitx
23*0e8011faSEmmanuel Vadot      - items:
24*0e8011faSEmmanuel Vadot          - enum:
25*0e8011faSEmmanuel Vadot              - amlogic,sm1-tohdmitx
26*0e8011faSEmmanuel Vadot          - const: amlogic,g12a-tohdmitx
27*0e8011faSEmmanuel Vadot
28*0e8011faSEmmanuel Vadot  reg:
29*0e8011faSEmmanuel Vadot    maxItems: 1
30*0e8011faSEmmanuel Vadot
31*0e8011faSEmmanuel Vadot  resets:
32*0e8011faSEmmanuel Vadot    maxItems: 1
33*0e8011faSEmmanuel Vadot
34*0e8011faSEmmanuel Vadot  "#sound-dai-cells":
35*0e8011faSEmmanuel Vadot    const: 1
36*0e8011faSEmmanuel Vadot
37*0e8011faSEmmanuel Vadotrequired:
38*0e8011faSEmmanuel Vadot  - compatible
39*0e8011faSEmmanuel Vadot  - reg
40*0e8011faSEmmanuel Vadot  - resets
41*0e8011faSEmmanuel Vadot  - "#sound-dai-cells"
42*0e8011faSEmmanuel Vadot
43*0e8011faSEmmanuel VadotunevaluatedProperties: false
44*0e8011faSEmmanuel Vadot
45*0e8011faSEmmanuel Vadotexamples:
46*0e8011faSEmmanuel Vadot  - |
47*0e8011faSEmmanuel Vadot    #include <dt-bindings/reset/amlogic,meson-g12a-audio-reset.h>
48*0e8011faSEmmanuel Vadot
49*0e8011faSEmmanuel Vadot    tohdmitx: audio-controller@744 {
50*0e8011faSEmmanuel Vadot        compatible = "amlogic,g12a-tohdmitx";
51*0e8011faSEmmanuel Vadot        reg = <0x744 0x4>;
52*0e8011faSEmmanuel Vadot        resets = <&clkc_audio AUD_RESET_TOHDMITX>;
53*0e8011faSEmmanuel Vadot        #sound-dai-cells = <1>;
54*0e8011faSEmmanuel Vadot    };
55