Thank you for the input.
Actually I wanted both HDMI and LVDS display to be up at the same time.
I am able to correct the resolution issue by doing the following :
Max resolution of our LVDS is "1024x600".
So I have edited the file "kernel_imx/arch/arm/boot/dts/imx6qdl_sabreauto.dtsi" and modified vactive value to 600.
---------------------------------------------------------------------------------------------------------------------------------------------------------
&ldb {
status = "okay";
lvds-channel@0 {
fsl,data-mapping = "spwg";
fsl,data-width = <18>;
status = "okay";
display-timings {
native-mode = <&timing0>;
timing0: hsd100pxn1 {
clock-frequency = <65000000>;
hactive = <1024>;
vactive = <600>;
hback-porch = <220>;
hfront-porch = <40>;
vback-porch = <21>;
vfront-porch = <7>;
hsync-len = <60>;
vsync-len = <10>;
};
};
};
---------------------------------------------------------------------------------------------------------------------------------------------------------

We got help from following link : https://community.nxp.com/thread/373763
Thanks,
Kiran