Part Number: AM4378
Hi all,
I'm facing a issue with the LCD driver in u-boot. I have followed the steps specified in the following post.
https://e2e.ti.com/support/processors/f/791/t/468554
I have updated my u-boot source code files accordingly. But I'm stuck with the LCD panel timing and clock configuration.
These are my current LCD configurations :
Kernel DTB file LCD node :
lcd0: display {
compatible = "newhaven,nhd-4.3-480272ef-atxl", "panel-dpi";
label = "lcd";
pinctrl-names = "default";
pinctrl-0 = <&lcd_pins>;
backlight = <&lcd_bl>;
enable-gpios = <&gpio1 7 GPIO_ACTIVE_HIGH>;
panel-timing {
clock-frequency = <40000000>;
hactive = <800>;
vactive = <480>;
hfront-porch = <40>;
hback-porch = <88>;
hsync-len = <128>;
vfront-porch = <13>;
vback-porch = <32>;
vsync-len = <45>;
hsync-active = <0>;
vsync-active = <0>;
de-active = <1>;
pixelclk-active = <1>;
};
port {
lcd_in: endpoint {
remote-endpoint = <&dpi_out>;
};
};
};
These configurations are working fine in the kernel . I'm facing a issue while configuring these parameters in u-boot.
Please let me know how to add these parameters to u-boot source.
Thanks !
