OSDN Git Service

ARM: dts: gose: add composite video input
authorUlrich Hecht <ulrich.hecht+renesas@gmail.com>
Fri, 19 May 2017 13:07:04 +0000 (15:07 +0200)
committerSimon Horman <horms+renesas@verge.net.au>
Mon, 12 Jun 2017 09:18:26 +0000 (11:18 +0200)
Adds VIN, decoder and connector.

Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
arch/arm/boot/dts/r8a7793-gose.dts

index 30f0835..76e3aca 100644 (file)
                };
        };
 
+       composite-in {
+               compatible = "composite-video-connector";
+
+               port {
+                       composite_con_in: endpoint {
+                               remote-endpoint = <&adv7180_in>;
+                       };
+               };
+       };
+
        x2_clk: x2-clock {
                compatible = "fixed-clock";
                #clock-cells = <0>;
                groups = "vin0_data24", "vin0_sync", "vin0_clkenb", "vin0_clk";
                function = "vin0";
        };
+
+       vin1_pins: vin1 {
+               groups = "vin1_data8", "vin1_clk";
+               function = "vin1";
+       };
 };
 
 &ether {
                reg = <0x12>;
        };
 
+       composite-in@20 {
+               compatible = "adi,adv7180cp";
+               reg = <0x20>;
+               remote = <&vin1>;
+
+               port {
+                       #address-cells = <1>;
+                       #size-cells = <0>;
+
+                       port@0 {
+                               reg = <0>;
+                               adv7180_in: endpoint {
+                                       remote-endpoint = <&composite_con_in>;
+                               };
+                       };
+
+                       port@3 {
+                               reg = <3>;
+                               adv7180_out: endpoint {
+                                       bus-width = <8>;
+                                       remote-endpoint = <&vin1ep>;
+                               };
+                       };
+               };
+       };
+
        hdmi@39 {
                compatible = "adi,adv7511w";
                reg = <0x39>;
                };
        };
 };
+
+/* composite video input */
+&vin1 {
+       pinctrl-0 = <&vin1_pins>;
+       pinctrl-names = "default";
+
+       status = "okay";
+
+       port {
+               #address-cells = <1>;
+               #size-cells = <0>;
+
+               vin1ep: endpoint {
+                       remote-endpoint = <&adv7180_out>;
+                       bus-width = <8>;
+               };
+       };
+};