I am currently using the DVR RDK 3.5 on a DM8168 Rev. G EVM which I believe has CPU revision 1.1.
In the function "vps_grpx_set_format" from the file: DVRRDK_03.50.00.05\ti_tools\linux_lsp\kernel\linux-dvr-rdk\drivers\video\ti81xx\vpss\grpx.c , there is a check against the cpu revision for and data format to verify the format is supported:
if (v_pdata->cpu == CPU_DM816X) {
if (vps_isnewdata(df) && (omap_rev() < TI8168_REV_ES2_0)) {
VPSSERR("(%d) - unsupport format %d\n",
The functions "vps_isnewdata" lists many formats including FVID2_DF_BGRA32_8888 as being "new". Can you confirm this pixel format is CPU revisions above 2.0?
Thanks,
- Mark