Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / display / bridge / renesas,dw-hdmi.txt
1 Renesas Gen3 DWC HDMI TX Encoder
2 ================================
3
4 The HDMI transmitter is a Synopsys DesignWare HDMI 1.4 TX controller IP
5 with a companion PHY IP.
6
7 These DT bindings follow the Synopsys DWC HDMI TX bindings defined in
8 Documentation/devicetree/bindings/display/bridge/dw_hdmi.txt with the
9 following device-specific properties.
10
11
12 Required properties:
13
14 - compatible : Shall contain one or more of
15   - "renesas,r8a7795-hdmi" for R8A7795 (R-Car H3) compatible HDMI TX
16   - "renesas,rcar-gen3-hdmi" for the generic R-Car Gen3 compatible HDMI TX
17
18     When compatible with generic versions, nodes must list the SoC-specific
19     version corresponding to the platform first, followed by the
20     family-specific version.
21
22 - reg: See dw_hdmi.txt.
23 - interrupts: HDMI interrupt number
24 - clocks: See dw_hdmi.txt.
25 - clock-names: Shall contain "iahb" and "isfr" as defined in dw_hdmi.txt.
26 - ports: See dw_hdmi.txt. The DWC HDMI shall have one port numbered 0
27   corresponding to the video input of the controller and one port numbered 1
28   corresponding to its HDMI output, and one port numbered 2 corresponding to
29   sound input of the controller. Each port shall have a single endpoint.
30
31 Optional properties:
32
33 - power-domains: Shall reference the power domain that contains the DWC HDMI,
34   if any.
35
36
37 Example:
38
39         hdmi0: hdmi0@fead0000 {
40                 compatible = "renesas,r8a7795-dw-hdmi";
41                 reg = <0 0xfead0000 0 0x10000>;
42                 interrupts = <0 389 IRQ_TYPE_LEVEL_HIGH>;
43                 clocks = <&cpg CPG_CORE R8A7795_CLK_S0D4>, <&cpg CPG_MOD 729>;
44                 clock-names = "iahb", "isfr";
45                 power-domains = <&sysc R8A7795_PD_ALWAYS_ON>;
46                 status = "disabled";
47
48                 ports {
49                         #address-cells = <1>;
50                         #size-cells = <0>;
51                         port@0 {
52                                 reg = <0>;
53                                 dw_hdmi0_in: endpoint {
54                                         remote-endpoint = <&du_out_hdmi0>;
55                                 };
56                         };
57                         port@1 {
58                                 reg = <1>;
59                                 rcar_dw_hdmi0_out: endpoint {
60                                         remote-endpoint = <&hdmi0_con>;
61                                 };
62                         };
63                         port@2 {
64                                 reg = <2>;
65                                 rcar_dw_hdmi0_sound_in: endpoint {
66                                         remote-endpoint = <&hdmi_sound_out>;
67                                 };
68                         };
69                 };
70         };
71
72         hdmi0-out {
73                 compatible = "hdmi-connector";
74                 label = "HDMI0 OUT";
75                 type = "a";
76
77                 port {
78                         hdmi0_con: endpoint {
79                                 remote-endpoint = <&rcar_dw_hdmi0_out>;
80                         };
81                 };
82         };