This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler/AM5728: AM5728 Gstreamer video is not displaying in monitor?

Part Number: AM5728

Tool/software: TI C/C++ Compiler

Hi sir,

I am using AM5728 custom board(Referred as Beagle board-X15)(ti-processor-sdk-linux-am57xx-evm-06.01.00.08).

we have connections are AM5728_VOUT1---->GS2962--->through BNC one Monitor we have connected.

in U-Boot Mux_data.h all vout pins added properly.

in Linux kernel command prompt occurs and below command executed.

gst-launch-1.0 -v videotestsrc pattern=snow ! video/x-raw,width=1280,height=720 ! autovideosink

not displayed any thing in monitor side
/etc/init.d/weston stop
after also not displayed any thing
(Actually through serial port i am executing those commands)
because of default output is hdmi output.
how to change those things?
Below things i have added in am57xx-beagle-x15-common.dtsi

aliases {
        display0 = &lcd0;
        display1 = &lcd1;;
    };
lcd0: display {
        compatible = "osddisplays,osd070t1718-19ts", "panel-dpi";

        label = "lcd";

        backlight = <&lcd_bl>;

        enable-gpios = <&gpio2 5 GPIO_ACTIVE_HIGH>;

        panel-timing {
                clock-frequency = <33000000>;
                hactive = <800>;
                vactive = <480>;
                hfront-porch = <210>;
                hback-porch = <16>;
                hsync-len = <30>;
                vback-porch = <10>;
                vfront-porch = <22>;
                vsync-len = <13>;
                hsync-active = <0>;
                vsync-active = <0>;
                de-active = <1>;
                pixelclk-active = <1>;
                };

        port {
            lcd_in0: endpoint {
            remote-endpoint = <&dpi_out0>;
            };
            };
};

lcd_bl: backlight {
            compatible = "pwm-backlight";
            pwms = <&ehrpwm1 0 50000 0>;

            /* Anything lower than 241 is no longer visible */
            brightness-levels = <0 243 245 247 249 251 252 253 255>;

            default-brightness-level = <8>;
            };

            lcd1: display {
            compatible = " ", "panel-dpi";

            label = "lcd";

            backlight = <&lcd_bl>;


            panel-timing {
            clock-frequency = <33000000>;
            hactive = <800>;
            vactive = <480>;
            hfront-porch = <210>;
            hback-porch = <16>;
            hsync-len = <30>;
            vback-porch = <10>;
            vfront-porch = <22>;
            vsync-len = <13>;
            hsync-active = <0>;
            vsync-active = <0>;
            de-active = <1>;
            pixelclk-active = <1>;
            };

            port {
                lcd_in1: endpoint {
                remote-endpoint = <&dpi_out1>;
                };
            };
};

&dss {
    ports {
        #address-cells = <1>;
        #size-cells = <0>;

        port@0 {
            reg = <0>;

            dpi_out0: endpoint {
                remote-endpoint = <&lcd_in0>;
                data-lines = <24>;
                };
            };
        port@1 {
            reg = <1>;

            dpi_out1: endpoint {
                remote-endpoint = <&lcd_in1>;
                data-lines = <24>;
                };
            };
        };
};