Hi,
I am trying to bring up SGX drivers on OMAP 37xx processor.
My screen resolution is 394x195.
Is there a requirement on the stride of buffer for the SGX driver to function?
Let me know if my question lacks clarity.
Thanks,
GT
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I am trying to bring up SGX drivers on OMAP 37xx processor.
My screen resolution is 394x195.
Is there a requirement on the stride of buffer for the SGX driver to function?
Let me know if my question lacks clarity.
Thanks,
GT
What is the framework/OS ? Yes, there is a requirement on stride.
This information is provided to major OS vendors directly. If possible, please indicate what OS/vendor you are working with.
FWIW, this is "documented" in the below source code.
GFX_Linux_KM/services4/3rdparty/bufferclass_ti/bc_cat.c
#ifdef PLAT_TI8168
width_align = 8;
#else
width_align = cpu_is_omap3530() && ( omap_rev() < OMAP3430_REV_ES3_0 ) ? 32 : 8;
#endif