/* * Copyright (c) Hisilicon Technologies Co., Ltd. 2019-2020. All rights reserved. * Description: mem manage * Author: sdk * Create: 2019-03-18 */ #ifndef __SOURCE_MSP_DRV_TDE_INCLUDE_WMALLOC_H__ #define __SOURCE_MSP_DRV_TDE_INCLUDE_WMALLOC_H__ #include "td_type.h" #ifdef __cplusplus #if __cplusplus extern "C" { #endif #endif td_s32 wmeminit(void); td_void wmemterm(void); td_u64 wgetphy(const td_void *ptr); td_void *wgetvrt(td_u64 phyaddr); td_u32 wgetfreenum(td_void); td_void wmemflush(td_void); td_void wprintinfo(td_void *p); #ifdef __cplusplus #if __cplusplus } #endif #endif #endif /* __SOURCE_MSP_DRV_TDE_INCLUDE_WMALLOC_H__ */