Commit 7300bfff authored by Marek Belisko's avatar Marek Belisko Committed by Tony Lindgren

ARM: dts: omap3-gta04: Add handling for tv output

Add handling for gta04 tv out chain:
venc -> opa362 -> svideo

Use invert-polarity in venc node because opa362
is doing polarity inversion also.
Signed-off-by: default avatarMarek Belisko <marek@goldelico.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent df73b7f8
...@@ -83,6 +83,41 @@ hsusb2_phy: hsusb2_phy { ...@@ -83,6 +83,41 @@ hsusb2_phy: hsusb2_phy {
compatible = "usb-nop-xceiv"; compatible = "usb-nop-xceiv";
reset-gpios = <&gpio6 14 GPIO_ACTIVE_LOW>; reset-gpios = <&gpio6 14 GPIO_ACTIVE_LOW>;
}; };
tv0: connector@1 {
compatible = "svideo-connector";
label = "tv";
port {
tv_connector_in: endpoint {
remote-endpoint = <&opa_out>;
};
};
};
tv_amp: opa362 {
compatible = "ti,opa362";
enable-gpios = <&gpio1 23 0>;
ports {
#address-cells = <1>;
#size-cells = <0>;
port@0 {
reg = <0>;
opa_in: endpoint@0 {
remote-endpoint = <&venc_out>;
};
};
port@1 {
reg = <1>;
opa_out: endpoint@0 {
remote-endpoint = <&tv_connector_in>;
};
};
};
};
}; };
&omap3_pmx_core { &omap3_pmx_core {
...@@ -396,6 +431,20 @@ dpi_out: endpoint { ...@@ -396,6 +431,20 @@ dpi_out: endpoint {
}; };
}; };
&venc {
status = "okay";
vdda-supply = <&vdac>;
port {
venc_out: endpoint {
remote-endpoint = <&opa_in>;
ti,channels = <2>;
ti,invert-polarity;
};
};
};
&gpmc { &gpmc {
ranges = <0 0 0x30000000 0x1000000>; /* CS0: 16MB for NAND */ ranges = <0 0 0x30000000 0x1000000>; /* CS0: 16MB for NAND */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment