Home
last modified time | relevance | path

Searched refs:pAddrPhys (Results 1 – 25 of 42) sorted by relevance

12

/utopia/UTPA2-700.0.x/modules/msos/msos/nuttx/
H A DdrvMPool.c180 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 DdrvMPool.c1014 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 DdrvCMAPool.c518 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 Dmdrv_cma_pool_private.h147 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 DdrvMPool.c193 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 DdrvMPool.c311 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 DMsOS_nos.c1571 extern MS_VIRT _MPool_PA2VA(MS_PHY pAddrPhys, MS_BOOL bNonCache);
/utopia/UTPA2-700.0.x/modules/msos/msos/optee/
H A DdrvMPool.c207 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 DdrvMPool.c175 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 DMsOS.h1593 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 DMsOS.h1751 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 DhalAUDSP.c208 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/k6/audsp/
H A DhalAUDSP.c345 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/kano/audsp/
H A DhalAUDSP.c345 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/k6lite/audsp/
H A DhalAUDSP.c345 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/mainz/audsp/
H A DhalAUDSP.c156 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/messi/audsp/
H A DhalAUDSP.c156 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/macan/audsp/
H A DhalAUDSP.c340 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/maxim/audsp/
H A DhalAUDSP.c357 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/M7621/audsp/
H A DhalAUDSP.c353 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/manhattan/audsp/
H A DhalAUDSP.c327 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/M7821/audsp/
H A DhalAUDSP.c323 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/mooney/audsp/
H A DhalAUDSP.c377 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/maserati/audsp/
H A DhalAUDSP.c323 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);
/utopia/UTPA2-700.0.x/modules/audio/hal/maldives/audsp/
H A DhalAUDSP.c1165 void* MDrv_MPool_PA2KSEG1(void* pAddrPhys);

12