Hi all,
On our custom hardware using TI8148, we have a camera connected through VIN[1] port A with input format as 640x480 YUV422 and our LCD is 1024 x 768 RGB24bits connected to VOUT0.
I'm using TI EZSDK 5.05.01.04 and I followed VPSS driver guide to load & use the HDVPSS M3 images from HDVPSS_01_00_01_37.
I configured the display1 as follows in the load-hd-firmware.sh script:
echo 1:dvo2 > /sys/devices/platform/vpss/graphics0/nodes
echo 0 > /sys/devices/platform/vpss/display1/enabled
echo 65000,1024/24/160/136,768/3/29/6,1 > /sys/devices/platform/vpss/display1/timings
echo triplediscrete,rgb888 > /sys/devices/platform/vpss/display1/output
echo 1 > /sys/devices/platform/vpss/display1/enabled
fbset -xres 1024 -yres 768 -vxres 1024 -vyres 768
I used saLoopBack to capture from /dev/video0 and output to /dev/video1.
In setupCapture(), the following information is set:
capt.fmt.fmt.pix.width = 640;
capt.fmt.fmt.pix.height = 480;
capt.fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV,
capt.fmt.fmt.pix.bytesperline = capt.fmt.fmt.pix.width * 2;
Similar parameters value are passed to display set format (VIDIOC_S_FMT) in setupDisplay().
In setupBuffer, the frame buffer VSCREENINFO is set as follows:
varinfo.xres = disp.fmt.fmt.pix.width; // = 640
varinfo.yres = disp.fmt.fmt.pix.height; // = 480
varinfo.xres_virtual = varinfo.xres;
varinfo.yres_virtual = varinfo.yres * MAX_BUFFER;
varinfo.bits_per_pixel = 32;
varinfo.transp.offset = 24;
varinfo.transp.length = 8;
varinfo.transp.msb_right = 0;
varinfo.red.offset = 16;
varinfo.red.length = 8;
varinfo.blue.offset = 0;
varinfo.blue.length = 8;
varinfo.green.offset = 8;
varinfo.green.length = 8;
However, the image displayed on the screen is not correct as shown below:
Color bar is output from the camera for this test. The color bar in YUV422 from the camera had been captured and dump on a PC and the color are correct.
There are 8 bars in the test pattern with this sequence white, yellow, light blue, green, red, orange, dark blue, black.
Refer to the attached image, 2 test pattern is displayed side-by-side and the bottom half is blank, the red component seem to be missing.
Understood that M3 will carry out color conversion and the output is RGB888 while frame buffer is default to ARGB8888.
If I change the frame buffer to RGB888, the image will end up being black & white.
Like to find out if its possible to configure the M3 color conversion to ARGB8888, if yes, please advise how to do it.
Or how could I change the frame buffer to RGB888 instead of ARGB8888 without causing the image to be B&W?
Or should I convert the M3 output from RGB888 to ARGB8888? If yes, please advise how to do it.
Thank you.
Regards
May