76 lines
2.3 KiB
C
76 lines
2.3 KiB
C
/******************************************************************************
|
|
Copyright (C), 2001-2011, Hisilicon Tech. Co., Ltd.
|
|
******************************************************************************
|
|
File Name : hi3511_sys.h
|
|
Version : Initial Draft
|
|
Author : Hi3511 MPP Team
|
|
Created : 2007/1/30
|
|
Last Modified :
|
|
Description : Hi3511 chip specific configure data structure
|
|
Function List :
|
|
History :
|
|
1.Date : 2007/1/30
|
|
Author : c42025
|
|
Modification: Created file
|
|
|
|
2.Date : 2007/11/30
|
|
Author : c42025
|
|
Modification: modify according review comments
|
|
|
|
3.Date : 2008/03/03
|
|
Author : c42025
|
|
Modification: modify HI_TRACE_SYS
|
|
|
|
4.Date : 2008/03/05
|
|
Author : c42025
|
|
Modification: modify 'HI_LOG_LEVEL_ERROR' to 'EN_ERR_LEVEL_ERROR'
|
|
|
|
******************************************************************************/
|
|
#ifndef __HI_COMM_SYS_H__
|
|
#define __HI_COMM_SYS_H__
|
|
|
|
#include "hi_type.h"
|
|
#include "hi_errno.h"
|
|
#include "hi_debug.h"
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#endif /* End of #ifdef __cplusplus */
|
|
|
|
#define HI_TRACE_SYS(level, fmt...) HI_TRACE(level, HI_ID_SYS,##fmt)
|
|
typedef struct hiMPP_SYS_CONF_S
|
|
{
|
|
/* stride of picture buffer must be aligned with this value.
|
|
* you can choose a value from 1 to 1024, and it must be multiple of 16.
|
|
*/
|
|
HI_U32 u32AlignWidth;
|
|
|
|
} MPP_SYS_CONF_S;
|
|
|
|
typedef struct hiSYS_VIRMEM_INFO_S
|
|
{
|
|
HI_U32 u32PhyAddr;
|
|
HI_BOOL bCached;
|
|
} SYS_VIRMEM_INFO_S;
|
|
|
|
|
|
#define HI_ERR_SYS_NULL_PTR HI_DEF_ERR(HI_ID_SYS, EN_ERR_LEVEL_ERROR, EN_ERR_NULL_PTR)
|
|
#define HI_ERR_SYS_NOTREADY HI_DEF_ERR(HI_ID_SYS, EN_ERR_LEVEL_ERROR, EN_ERR_SYS_NOTREADY)
|
|
#define HI_ERR_SYS_NOT_PERM HI_DEF_ERR(HI_ID_SYS, EN_ERR_LEVEL_ERROR, EN_ERR_NOT_PERM)
|
|
#define HI_ERR_SYS_NOMEM HI_DEF_ERR(HI_ID_SYS, EN_ERR_LEVEL_ERROR, EN_ERR_NOMEM)
|
|
#define HI_ERR_SYS_ILLEGAL_PARAM HI_DEF_ERR(HI_ID_SYS, EN_ERR_LEVEL_ERROR, EN_ERR_ILLEGAL_PARAM)
|
|
#define HI_ERR_SYS_BUSY HI_DEF_ERR(HI_ID_SYS, EN_ERR_LEVEL_ERROR, EN_ERR_BUSY)
|
|
#define HI_ERR_SYS_NOT_SUPPORT HI_DEF_ERR(HI_ID_SYS, EN_ERR_LEVEL_ERROR, EN_ERR_NOT_SUPPORT)
|
|
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __HI_COMM_SYS_H__ */
|
|
|