2014-11-25 23:10:29 +08:00
|
|
|
/*
|
2017-03-29 13:16:44 +08:00
|
|
|
* Licensed under the GNU General Public License version 2 with exceptions. See
|
|
|
|
* LICENSE file in the project root for full license information
|
2014-11-25 23:10:29 +08:00
|
|
|
*/
|
|
|
|
|
2015-11-04 20:02:33 +08:00
|
|
|
/** \file
|
2014-11-25 23:10:29 +08:00
|
|
|
* \brief
|
2015-11-04 20:02:33 +08:00
|
|
|
* Headerfile for nicdrv.c
|
2014-11-25 23:10:29 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _nicdrvh_
|
|
|
|
#define _nicdrvh_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
/** pointer structure to Tx and Rx stacks */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/** socket connection used */
|
|
|
|
int *sock;
|
|
|
|
/** tx buffer */
|
|
|
|
ec_bufT (*txbuf)[EC_MAXBUF];
|
|
|
|
/** tx buffer lengths */
|
|
|
|
int (*txbuflength)[EC_MAXBUF];
|
|
|
|
/** temporary receive buffer */
|
|
|
|
ec_bufT *tempbuf;
|
|
|
|
/** rx buffers */
|
|
|
|
ec_bufT (*rxbuf)[EC_MAXBUF];
|
|
|
|
/** rx buffer status fields */
|
|
|
|
int (*rxbufstat)[EC_MAXBUF];
|
|
|
|
/** received MAC source address (middle word) */
|
|
|
|
int (*rxsa)[EC_MAXBUF];
|
2015-11-04 20:02:33 +08:00
|
|
|
} ec_stackT;
|
2014-11-25 23:10:29 +08:00
|
|
|
|
|
|
|
/** pointer structure to buffers for redundant port */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
ec_stackT stack;
|
|
|
|
int sockhandle;
|
|
|
|
/** rx buffers */
|
|
|
|
ec_bufT rxbuf[EC_MAXBUF];
|
|
|
|
/** rx buffer status */
|
|
|
|
int rxbufstat[EC_MAXBUF];
|
|
|
|
/** rx MAC source address */
|
|
|
|
int rxsa[EC_MAXBUF];
|
|
|
|
/** temporary rx buffer */
|
|
|
|
ec_bufT tempinbuf;
|
|
|
|
} ecx_redportt;
|
|
|
|
|
|
|
|
/** pointer structure to buffers, vars and mutexes for port instantiation */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
ec_stackT stack;
|
|
|
|
int sockhandle;
|
|
|
|
/** rx buffers */
|
|
|
|
ec_bufT rxbuf[EC_MAXBUF];
|
|
|
|
/** rx buffer status */
|
|
|
|
int rxbufstat[EC_MAXBUF];
|
|
|
|
/** rx MAC source address */
|
|
|
|
int rxsa[EC_MAXBUF];
|
|
|
|
/** temporary rx buffer */
|
|
|
|
ec_bufT tempinbuf;
|
|
|
|
/** temporary rx buffer status */
|
|
|
|
int tempinbufs;
|
|
|
|
/** transmit buffers */
|
|
|
|
ec_bufT txbuf[EC_MAXBUF];
|
2019-01-29 18:32:32 +08:00
|
|
|
/** transmit buffer lengths */
|
2014-11-25 23:10:29 +08:00
|
|
|
int txbuflength[EC_MAXBUF];
|
|
|
|
/** temporary tx buffer */
|
|
|
|
ec_bufT txbuf2;
|
|
|
|
/** temporary tx buffer length */
|
|
|
|
int txbuflength2;
|
|
|
|
/** last used frame index */
|
2020-10-09 22:57:53 +08:00
|
|
|
uint8 lastidx;
|
2014-11-25 23:10:29 +08:00
|
|
|
/** current redundancy state */
|
|
|
|
int redstate;
|
|
|
|
/** pointer to redundancy port and buffers */
|
2015-11-04 20:02:33 +08:00
|
|
|
ecx_redportt *redport;
|
|
|
|
pthread_mutex_t getindex_mutex;
|
2014-11-25 23:10:29 +08:00
|
|
|
pthread_mutex_t tx_mutex;
|
|
|
|
pthread_mutex_t rx_mutex;
|
|
|
|
} ecx_portt;
|
|
|
|
|
|
|
|
extern const uint16 priMAC[3];
|
|
|
|
extern const uint16 secMAC[3];
|
|
|
|
|
|
|
|
#ifdef EC_VER1
|
|
|
|
extern ecx_portt ecx_port;
|
|
|
|
extern ecx_redportt ecx_redport;
|
|
|
|
|
|
|
|
int ec_setupnic(const char * ifname, int secondary);
|
|
|
|
int ec_closenic(void);
|
2020-10-09 22:57:53 +08:00
|
|
|
void ec_setbufstat(uint8 idx, int bufstat);
|
|
|
|
uint8 ec_getindex(void);
|
|
|
|
int ec_outframe(uint8 idx, int sock);
|
|
|
|
int ec_outframe_red(uint8 idx);
|
|
|
|
int ec_waitinframe(uint8 idx, int timeout);
|
|
|
|
int ec_srconfirm(uint8 idx,int timeout);
|
2014-11-25 23:10:29 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void ec_setupheader(void *p);
|
|
|
|
int ecx_setupnic(ecx_portt *port, const char * ifname, int secondary);
|
|
|
|
int ecx_closenic(ecx_portt *port);
|
2020-10-09 22:57:53 +08:00
|
|
|
void ecx_setbufstat(ecx_portt *port, uint8 idx, int bufstat);
|
|
|
|
uint8 ecx_getindex(ecx_portt *port);
|
|
|
|
int ecx_outframe(ecx_portt *port, uint8 idx, int sock);
|
|
|
|
int ecx_outframe_red(ecx_portt *port, uint8 idx);
|
|
|
|
int ecx_waitinframe(ecx_portt *port, uint8 idx, int timeout);
|
|
|
|
int ecx_srconfirm(ecx_portt *port, uint8 idx,int timeout);
|
2014-11-25 23:10:29 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|