| /utopia/UTPA2-700.0.x/modules/msos/msos/nuttx/ |
| H A D | drvMPool.c | 180 inline MS_VIRT MsOS_MPool_PA2KSEG1(MS_PHY pAddrPhys) in MsOS_MPool_PA2KSEG1() argument 183 return (MS_U32)(((MS_U32)pAddrPhys)|0xa0000000); in MsOS_MPool_PA2KSEG1() 187 if((0x00000000 <= pAddrPhys) && (0x20000000 > pAddrPhys)) in MsOS_MPool_PA2KSEG1() 189 return (pAddrPhys + 0xC0000000); in MsOS_MPool_PA2KSEG1() 193 if((0x20000000 <= pAddrPhys) && (0x40000000 > pAddrPhys)) in MsOS_MPool_PA2KSEG1() 195 return (pAddrPhys + 0xC0000000); in MsOS_MPool_PA2KSEG1() 199 if ((0x00000000 <= pAddrPhys) && (0x10000000 > pAddrPhys)) in MsOS_MPool_PA2KSEG1() 201 return (pAddrPhys + 0x80000000); in MsOS_MPool_PA2KSEG1() 204 if ((0x10000000 <= pAddrPhys) && (0x20000000 > pAddrPhys)) in MsOS_MPool_PA2KSEG1() 206 return (pAddrPhys + 0x80000000); in MsOS_MPool_PA2KSEG1() [all …]
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux/ |
| H A D | drvMPool.c | 1014 inline MS_VIRT MsOS_MPool_PA2KSEG1(MS_PHY pAddrPhys) // un-cache in MsOS_MPool_PA2KSEG1() argument 1033 …if(! ((mpool_info[i].u64Phyaddr <= pAddrPhys) && (pAddrPhys < (mpool_info[i].u64Phyaddr + mpool_in… in MsOS_MPool_PA2KSEG1() 1052 pAddrVirt = MApi_CMA_Pool_GetKernelCMAPooLUserVA(pAddrPhys,true); in MsOS_MPool_PA2KSEG1() 1063 …pAddrVirt = HAL_MsOS_MPool_PA2VA(pAddrPhys, mpool_info[i].u64Phyaddr, mpool_info[i].u64MpoolSize, … in MsOS_MPool_PA2KSEG1() 1072 pAddrVirt = MApi_CMA_Pool_GetKernelCMAPooLUserVA(pAddrPhys,true); in MsOS_MPool_PA2KSEG1() 1087 …DBG_L1,printf("MsOS_MPool_PA2KSEG1 return NULL pAddrPhys =%llX\n", (unsigned long long)pAddrPhys)); in MsOS_MPool_PA2KSEG1() 1091 pAddrVirt = MApi_CMA_Pool_GetKernelCMAPooLUserVA(pAddrPhys,true); in MsOS_MPool_PA2KSEG1() 1101 …pAddrVirt = HAL_MsOS_MPool_PA2VA(pAddrPhys, 0, 0xffffffff, _tVa2PaOff[0], DISABLE_PARTIAL_MAPPING); in MsOS_MPool_PA2KSEG1() 1106 pAddrVirt = MApi_CMA_Pool_GetKernelCMAPooLUserVA(pAddrPhys,true); in MsOS_MPool_PA2KSEG1() 1114 inline MS_VIRT MsOS_MPool_PA2KSEG0(MS_PHY pAddrPhys) // cache in MsOS_MPool_PA2KSEG0() argument [all …]
|
| H A D | drvCMAPool.c | 518 MS_VIRT MApi_CMA_Pool_GetKernelCMAPooLUserVA(MS_PHY pAddrPhys,MS_BOOL un_cache_flags) in MApi_CMA_Pool_GetKernelCMAPooLUserVA() argument 554 get_info_param.PA = pAddrPhys; in MApi_CMA_Pool_GetKernelCMAPooLUserVA() 581 …o_param.pa_offset_in_heap=0x%lx\n",__FUNCTION__,__LINE__,(unsigned long)pAddrPhys,(unsigned long)p… in MApi_CMA_Pool_GetKernelCMAPooLUserVA() 613 …o_param.pa_offset_in_heap=0x%lx\n",__FUNCTION__,__LINE__,(unsigned long)pAddrPhys,(unsigned long)p… in MApi_CMA_Pool_GetKernelCMAPooLUserVA()
|
| H A D | mdrv_cma_pool_private.h | 147 MS_VIRT MApi_CMA_Pool_GetKernelCMAPooLUserVA(MS_PHY pAddrPhys,MS_BOOL un_cache_flags);
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel_V2/ |
| H A D | drvMPool.c | 193 static MS_VIRT _MPool_PA2VA(MS_PHY pAddrPhys, MS_BOOL bNonCache); 332 MS_VIRT MsOS_MPool_PA2KSEG1(MS_PHY pAddrPhys) // non-cache in MsOS_MPool_PA2KSEG1() argument 334 return _MPool_PA2VA(pAddrPhys, TRUE); in MsOS_MPool_PA2KSEG1() 336 MS_VIRT MsOS_MPool_PA2KSEG0(MS_PHY pAddrPhys) //cache in MsOS_MPool_PA2KSEG0() argument 338 return _MPool_PA2VA(pAddrPhys, FALSE); in MsOS_MPool_PA2KSEG0() 341 static MS_VIRT _MPool_PA2VA(MS_PHY pAddrPhys, MS_BOOL bNonCache) in _MPool_PA2VA() argument 370 …if(!((mpool_info[i].pPhyaddr <= pAddrPhys) && (pAddrPhys < (mpool_info[i].pPhyaddr + mpool_info[i]… in _MPool_PA2VA() 375 if( (mpool_info[i].pPhyaddr + mpool_info[i].u32MpoolSize - pAddrPhys) > u64Maxsize) in _MPool_PA2VA() 377 u64Maxsize = (mpool_info[i].pPhyaddr + mpool_info[i].u32MpoolSize - pAddrPhys); in _MPool_PA2VA() 401 pAddrVirt = pAddrPhys + mpool_info[maxID].s32V2Poff; in _MPool_PA2VA() [all …]
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/nos/ |
| H A D | drvMPool.c | 311 inline MS_VIRT MsOS_MPool_PA2KSEG1(MS_PHY pAddrPhys) in MsOS_MPool_PA2KSEG1() argument 314 return (MS_U32)(((MS_U32)pAddrPhys)|0xa0000000); in MsOS_MPool_PA2KSEG1() 316 return (MS_VIRT)pAddrPhys; in MsOS_MPool_PA2KSEG1() 320 MS_VIRT _MPool_PA2VA(MS_PHY pAddrPhys, MS_BOOL bNonCache) in _MPool_PA2VA() argument 340 …if(!((mpool_info[i].pPhyaddr <= pAddrPhys) && (pAddrPhys < (mpool_info[i].pPhyaddr + mpool_info[i]… in _MPool_PA2VA() 345 pAddrVirt = HAL_MsOS_MPool_PA2BA(pAddrPhys) + mpool_info[i].s32V2Poff; in _MPool_PA2VA() 372 …("[Utopia2_nos] ERROR!!! CAN'T SUCCESSFULLY CONVERT FROM PA(%tX) TO VA.\n", (ptrdiff_t)pAddrPhys)); in _MPool_PA2VA()
|
| H A D | MsOS_nos.c | 1571 extern MS_VIRT _MPool_PA2VA(MS_PHY pAddrPhys, MS_BOOL bNonCache);
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/optee/ |
| H A D | drvMPool.c | 207 inline MS_VIRT MsOS_MPool_PA2KSEG1(MS_PHY pAddrPhys) in MsOS_MPool_PA2KSEG1() argument 209 return HAL_MsOS_MPool_PA2KSEG1(pAddrPhys); in MsOS_MPool_PA2KSEG1() 212 MS_VIRT _MPool_PA2VA(MS_PHY pAddrPhys, MS_BOOL bNonCache) in _MPool_PA2VA() argument 232 …if(!((mpool_info[i].pPhyaddr <= pAddrPhys) && (pAddrPhys < (mpool_info[i].pPhyaddr + mpool_info[i]… in _MPool_PA2VA() 237 pAddrVirt = HAL_MsOS_MPool_PA2BA(pAddrPhys) + mpool_info[i].s32V2Poff; in _MPool_PA2VA() 264 …("[Utopia2_nos] ERROR!!! CAN'T SUCCESSFULLY CONVERT FROM PA(%tX) TO VA.\n", (ptrdiff_t)pAddrPhys)); in _MPool_PA2VA()
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/ucos/ |
| H A D | drvMPool.c | 175 inline MS_VIRT MsOS_MPool_PA2KSEG1(MS_PHY pAddrPhys) // un-cache in MsOS_MPool_PA2KSEG1() argument 177 return (pAddrPhys | 0xA0000000); in MsOS_MPool_PA2KSEG1() 180 inline MS_VIRT MsOS_MPool_PA2KSEG0(MS_PHY pAddrPhys) // cache in MsOS_MPool_PA2KSEG0() argument 182 return (pAddrPhys | 0x80000000); in MsOS_MPool_PA2KSEG0()
|
| /utopia/UTPA2-700.0.x/projects/tmplib/include/ |
| H A D | MsOS.h | 1593 MS_VIRT MsOS_MPool_PA2KSEG1(MS_PHY pAddrPhys); 1602 MS_VIRT MsOS_MPool_PA2KSEG0(MS_PHY pAddrPhys);
|
| /utopia/UTPA2-700.0.x/mxlib/include/ |
| H A D | MsOS.h | 1751 MS_VIRT MsOS_MPool_PA2KSEG1(MS_PHY pAddrPhys); 1760 MS_VIRT MsOS_MPool_PA2KSEG0(MS_PHY pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/curry/audsp/ |
| H A D | halAUDSP.c | 208 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/k6/audsp/ |
| H A D | halAUDSP.c | 345 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/kano/audsp/ |
| H A D | halAUDSP.c | 345 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/k6lite/audsp/ |
| H A D | halAUDSP.c | 345 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/mainz/audsp/ |
| H A D | halAUDSP.c | 156 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/messi/audsp/ |
| H A D | halAUDSP.c | 156 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/macan/audsp/ |
| H A D | halAUDSP.c | 340 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/maxim/audsp/ |
| H A D | halAUDSP.c | 357 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/M7621/audsp/ |
| H A D | halAUDSP.c | 353 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/manhattan/audsp/ |
| H A D | halAUDSP.c | 327 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/M7821/audsp/ |
| H A D | halAUDSP.c | 323 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/mooney/audsp/ |
| H A D | halAUDSP.c | 377 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/maserati/audsp/ |
| H A D | halAUDSP.c | 323 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/maldives/audsp/ |
| H A D | halAUDSP.c | 1165 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
|