Other Parts Discussed in Thread: TPD12S015
I have a AM5728 custom board.
I use ti-processor-sdk-linux-am57xx-evm-06.03.00.106-Linux-x86-Install.bin
There is no output from the vout1 interface on my custom board
This is my device tree
.........................................................
aliases {
rtc0 = &mcp_rtc;
rtc1 = &tps659038_rtc;
rtc2 = &rtc;
display0 = &hdmi0;
+ display1 = &lcd0;
+ lcd0: display {
+ compatible = "osddisplays,osd070t1718-19ts", "panel-dpi";
+ backlight = <&lcd_bl>;
+ enable-gpios = <&gpio2 5 GPIO_ACTIVE_HIGH>;
+ label = "lcd";
+
+ panel-timing {
+ clock-frequency = <33000000>;
+ de-active = <1>;
+ hactive = <800>;
+ hback-porch = <16>;
+ hfront-porch = <210>;
+ hsync-active = <0>;
+ hsync-len = <30>;
+ pixelclk-active = <1>;
+ vactive = <480>;
+ vback-porch = <10>;
+ vfront-porch = <22>;
+ vsync-active = <0>;
+ vsync-len = <13>;
+ };
+
+ port {
+ lcd_in: endpoint {
+ remote-endpoint = <&dpi_out>;
+ };
+ };
+ };
+
+ lcd_bl: backlight {
+ compatible = "pwm-backlight";
+ brightness-levels = <0 243 245 247 249 251 252 253 255>;
+ default-brightness-level = <8>;
+ pwms = <&ehrpwm1 0 50000 0>;
+ };
hdmi0: connector {
compatible = "hdmi-connector";
label = "hdmi";
type = "a";
port {
hdmi_connector_in: endpoint {
remote-endpoint = <&tpd12s015_out>;
};
};
};
&dss {
status = "ok";
vdda_video-supply = <&ldoln_reg>;
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ port {
+ reg = <0>;
+
+ dpi_out: endpoint {
+ data-lines = <24>;
+ remote-endpoint = <&lcd_in>;
+ };
+ };
+ };
};
.......................................................................
Originally HDMI can be displayed, but after adding lcd0, hdmi and lvds can not be displayed
Is there a problem with my device tree? How can i modify?
this is my schematic
.......................................................................