diff options
Diffstat (limited to 'vmeta_lib.h')
-rwxr-xr-x | vmeta_lib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vmeta_lib.h b/vmeta_lib.h index 561e855..3c44412 100755 --- a/vmeta_lib.h +++ b/vmeta_lib.h @@ -55,6 +55,8 @@ SIGN32 vdec_os_driver_clean(void); // Memory operation API //--------------------------------------------------------------------------- void * vdec_os_api_dma_alloc(UNSG32 size, UNSG32 align, UNSG32 * pPhysical); +void * vdec_os_api_dma_alloc_writecombine(UNSG32 size, UNSG32 align, UNSG32 * pPhysical); +void * vdec_os_api_dma_alloc_cached(UNSG32 size, UNSG32 align, UNSG32 * pPhysical); void vdec_os_api_dma_free(void *ptr); void *vdec_os_api_vmalloc(UNSG32 size, UNSG32 align); // always return VA and can't be translated to PA |