Hi,
We are trying to interface a 5" hdmi LCD (800x480) with the openrex quad board . (
http://www.waveshare.com/5inch-hdmi-lcd.htm).
Openrex is running the yocto kernel and rootfs. But the LCD is not showing the xterm properly. It is showing only partial.
We tried to change the hdmi resolution as in
http://www.imx6rex.com/open-rex/soft...ipherals/#hdmiIt seems like 800x480 resolution is not supported in the hdmi driver, so we tried editing the kernel driver file as follows
The struct fb_videomode vga_mode in 'mxc_hdmi.c'
The following values were used static const struct fb_videomode vga_mode = {
/* 800x480 @ 60 Hz, 31.5 kHz hsync */
NULL, 60, 800, 480, 29850, 89, 164, 23, 10, 10, 10, 0,
FB_VMODE_INTERLACED | FB_VMODE_ASPECT_4_3, 0,
};
And in and fb_videomode mxc_cea_mode in mxc_edid.c.
[1] = {
NULL, 60, 800, 480, 29850, 89, 164, 23, 10, 10, 10, 0,
FB_VMODE_INTERLACED | FB_VMODE_ASPECT_4_3, 0
},
Can anyone advise anything else need to be edited in the driver ?
Thanks
Shafy