You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
543 B
32 lines
543 B
/*
|
|
* Copyright (c) Hisilicon Technologies Co., Ltd. 2020-2021. All rights reserved.
|
|
* Description: frontend mpi interface
|
|
* Author: Hisilicon
|
|
* Created: 2020-09-16
|
|
*/
|
|
|
|
#ifndef __MPI_FRONTEND_H__
|
|
#define __MPI_FRONTEND_H__
|
|
|
|
#include "mpi_frontend_ext.h"
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#endif /* __cplusplus */
|
|
|
|
#define MPI_FRONTEND_NUM 8
|
|
|
|
td_s32 frontend_get_fd(td_void);
|
|
td_s32 mpi_frontend_get_cfg(fe_ioctrl_config *fe_cfg);
|
|
|
|
#ifdef __cplusplus
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|
|
|