Path: blob/master/Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/display/bridge/renesas,dw-hdmi.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Renesas R-Car DWC HDMI TX Encoder78maintainers:9- Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>1011description: |12The HDMI transmitter is a Synopsys DesignWare HDMI 1.4 TX controller IP13with a companion PHY IP.1415allOf:16- $ref: synopsys,dw-hdmi.yaml#1718properties:19compatible:20items:21- enum:22- renesas,r8a774a1-hdmi # for RZ/G2M compatible HDMI TX23- renesas,r8a774b1-hdmi # for RZ/G2N compatible HDMI TX24- renesas,r8a774e1-hdmi # for RZ/G2H compatible HDMI TX25- renesas,r8a7795-hdmi # for R-Car H3 compatible HDMI TX26- renesas,r8a7796-hdmi # for R-Car M3-W compatible HDMI TX27- renesas,r8a77961-hdmi # for R-Car M3-W+ compatible HDMI TX28- renesas,r8a77965-hdmi # for R-Car M3-N compatible HDMI TX29- const: renesas,rcar-gen3-hdmi3031reg-io-width:32const: 13334clocks:35maxItems: 23637clock-names:38maxItems: 23940resets:41maxItems: 14243ports:44$ref: /schemas/graph.yaml#/properties/ports4546properties:47port@0:48$ref: /schemas/graph.yaml#/properties/port49description: Parallel RGB input port5051port@1:52$ref: /schemas/graph.yaml#/properties/port53description: HDMI output port5455port@2:56$ref: /schemas/graph.yaml#/properties/port57description: Sound input port5859required:60- port@061- port@162- port@26364power-domains:65maxItems: 16667required:68- compatible69- reg70- clocks71- clock-names72- resets73- interrupts74- ports7576unevaluatedProperties: false7778examples:79- |80#include <dt-bindings/clock/r8a7795-cpg-mssr.h>81#include <dt-bindings/interrupt-controller/irq.h>82#include <dt-bindings/power/r8a7795-sysc.h>8384hdmi@fead0000 {85compatible = "renesas,r8a7795-hdmi", "renesas,rcar-gen3-hdmi";86reg = <0xfead0000 0x10000>;87interrupts = <0 389 IRQ_TYPE_LEVEL_HIGH>;88clocks = <&cpg CPG_CORE R8A7795_CLK_S0D4>, <&cpg CPG_MOD 729>;89clock-names = "iahb", "isfr";90power-domains = <&sysc R8A7795_PD_ALWAYS_ON>;91resets = <&cpg 729>;9293ports {94#address-cells = <1>;95#size-cells = <0>;96port@0 {97reg = <0>;98dw_hdmi0_in: endpoint {99remote-endpoint = <&du_out_hdmi0>;100};101};102port@1 {103reg = <1>;104rcar_dw_hdmi0_out: endpoint {105remote-endpoint = <&hdmi0_con>;106};107};108port@2 {109reg = <2>;110rcar_dw_hdmi0_sound_in: endpoint {111remote-endpoint = <&hdmi_sound_out>;112};113};114};115};116117hdmi0-out {118compatible = "hdmi-connector";119label = "HDMI0 OUT";120type = "a";121122port {123hdmi0_con: endpoint {124remote-endpoint = <&rcar_dw_hdmi0_out>;125};126};127};128129...130131132