Path: blob/main/sys/contrib/device-tree/Bindings/display/bridge/renesas,dw-hdmi.txt
48406 views
Renesas Gen3 DWC HDMI TX Encoder1================================23The HDMI transmitter is a Synopsys DesignWare HDMI 1.4 TX controller IP4with a companion PHY IP.56These DT bindings follow the Synopsys DWC HDMI TX bindings defined in7Documentation/devicetree/bindings/display/bridge/dw_hdmi.txt with the8following device-specific properties.91011Required properties:1213- compatible : Shall contain one or more of14- "renesas,r8a774a1-hdmi" for R8A774A1 (RZ/G2M) compatible HDMI TX15- "renesas,r8a774b1-hdmi" for R8A774B1 (RZ/G2N) compatible HDMI TX16- "renesas,r8a774e1-hdmi" for R8A774E1 (RZ/G2H) compatible HDMI TX17- "renesas,r8a7795-hdmi" for R8A7795 (R-Car H3) compatible HDMI TX18- "renesas,r8a7796-hdmi" for R8A7796 (R-Car M3-W) compatible HDMI TX19- "renesas,r8a77961-hdmi" for R8A77961 (R-Car M3-W+) compatible HDMI TX20- "renesas,r8a77965-hdmi" for R8A77965 (R-Car M3-N) compatible HDMI TX21- "renesas,rcar-gen3-hdmi" for the generic R-Car Gen3 and RZ/G2 compatible22HDMI TX2324When compatible with generic versions, nodes must list the SoC-specific25version corresponding to the platform first, followed by the26family-specific version.2728- reg: See dw_hdmi.txt.29- interrupts: HDMI interrupt number30- clocks: See dw_hdmi.txt.31- clock-names: Shall contain "iahb" and "isfr" as defined in dw_hdmi.txt.32- ports: See dw_hdmi.txt. The DWC HDMI shall have one port numbered 033corresponding to the video input of the controller and one port numbered 134corresponding to its HDMI output, and one port numbered 2 corresponding to35sound input of the controller. Each port shall have a single endpoint.3637Optional properties:3839- power-domains: Shall reference the power domain that contains the DWC HDMI,40if any.414243Example:4445hdmi0: hdmi@fead0000 {46compatible = "renesas,r8a7795-hdmi", "renesas,rcar-gen3-hdmi";47reg = <0 0xfead0000 0 0x10000>;48interrupts = <0 389 IRQ_TYPE_LEVEL_HIGH>;49clocks = <&cpg CPG_CORE R8A7795_CLK_S0D4>, <&cpg CPG_MOD 729>;50clock-names = "iahb", "isfr";51power-domains = <&sysc R8A7795_PD_ALWAYS_ON>;5253ports {54#address-cells = <1>;55#size-cells = <0>;56port@0 {57reg = <0>;58dw_hdmi0_in: endpoint {59remote-endpoint = <&du_out_hdmi0>;60};61};62port@1 {63reg = <1>;64rcar_dw_hdmi0_out: endpoint {65remote-endpoint = <&hdmi0_con>;66};67};68port@2 {69reg = <2>;70rcar_dw_hdmi0_sound_in: endpoint {71remote-endpoint = <&hdmi_sound_out>;72};73};74};75};7677hdmi0-out {78compatible = "hdmi-connector";79label = "HDMI0 OUT";80type = "a";8182port {83hdmi0_con: endpoint {84remote-endpoint = <&rcar_dw_hdmi0_out>;85};86};87};888990