Headerfile for nicdrv.c. More...
Go to the source code of this file.
Classes | |
struct | ec_stackT |
struct | ecx_portt |
struct | ecx_redportt |
Functions | |
void | ec_setupheader (void *p) |
int | ecx_closenic (ecx_portt *port) |
int | ecx_getindex (ecx_portt *port) |
int | ecx_inframe (ecx_portt *port, int idx, int stacknumber) |
int | ecx_outframe (ecx_portt *port, int idx, int sock) |
int | ecx_outframe_red (ecx_portt *port, int idx) |
void | ecx_setbufstat (ecx_portt *port, int idx, int bufstat) |
int | ecx_setupnic (ecx_portt *port, const char *ifname, int secondary) |
int | ecx_srconfirm (ecx_portt *port, int idx, int timeout) |
int | ecx_waitinframe (ecx_portt *port, int idx, int timeout) |
Variables | |
const uint16 | priMAC [3] |
const uint16 | secMAC [3] |
Headerfile for nicdrv.c.
Definition in file erika/nicdrv.h.
void ec_setupheader | ( | void * | p | ) |
Fill buffer with ethernet header structure. Destination MAC is always broadcast. Ethertype is always ETH_P_ECAT.
[out] | p | = buffer |
Fill buffer with Ethernet header structure. Destination MAC is always broadcast. Ethertype is always ETH_P_ECAT.
[out] | p | = buffer |
Definition at line 151 of file erika/nicdrv.c.
|
inline |
Close sockets used
[in] | port | = port context struct |
Close sockets used
Definition at line 140 of file erika/nicdrv.c.
int ecx_getindex | ( | ecx_portt * | port | ) |
Get new frame identifier index and allocate corresponding rx buffer.
[in] | port | = port context struct |
Get new frame identifier index and allocate corresponding rx buffer.
Definition at line 168 of file erika/nicdrv.c.
int ecx_inframe | ( | ecx_portt * | port, |
int | idx, | ||
int | stacknumber | ||
) |
Non blocking receive frame function. Uses RX buffer and index to combine read frame with transmitted frame. To compensate for received frames that are out-of-order all frames are stored in their respective indexed buffer. If a frame was placed in the buffer previously, the function retrieves it from that buffer index without calling ec_recvpkt. If the requested index is not already in the buffer it calls ec_recvpkt to fetch it. There are three options now, 1 no frame read, so exit. 2 frame read but other than requested index, store in buffer and exit. 3 frame read with matching index, store in buffer, set completed flag in buffer status and exit.
[in] | port | = port context struct |
[in] | idx | = requested index of frame |
[in] | stacknumber | = 0=primary 1=secondary stack |
Non blocking receive frame function. Uses RX buffer and index to combine read frame with transmitted frame. To compensate for received frames that are out-of-order all frames are stored in their respective indexed buffer. If a frame was placed in the buffer previously, the function retrieves it from that buffer index without calling ec_recvpkt. If the requested index is not already in the buffer it calls ec_recvpkt to fetch it. There are three options now, 1 no frame read, so exit. 2 frame read but other than requested index, store in buffer and exit. 3 frame read with matching index, store in buffer, set completed flag in buffer status and exit.
[in] | idx | = requested index of frame |
[in] | stacknumber | = 0=primary 1=secondary stack |
Definition at line 303 of file erika/nicdrv.c.
int ecx_outframe | ( | ecx_portt * | port, |
int | idx, | ||
int | stacknumber | ||
) |
Transmit buffer over socket (non blocking).
[in] | port | = port context struct |
[in] | idx | = index in tx buffer array |
[in] | stacknumber | = 0=Primary 1=Secondary stack |
Transmit buffer over socket (non blocking).
[in] | idx | = index in tx buffer array |
[in] | stacknumber | = 0=Primary 1=Secondary stack |
High level transmit buffer over mux layer 2 driver, passing buffer and packet device to send on as arguments
[in] | port | = port context holding reference to packet device |
[in] | idx | = index in tx buffer array |
[in] | stacknumber | = 0=Primary 1=Secondary stack |
Definition at line 215 of file erika/nicdrv.c.
int ecx_outframe_red | ( | ecx_portt * | port, |
int | idx | ||
) |
Transmit buffer over socket (non blocking).
[in] | port | = port context struct |
[in] | idx | = index in tx buffer array |
Transmit buffer over socket (non blocking).
[in] | idx | = index in tx buffer array |
High level transmit frame to send as index.
[in] | port | = port context |
[in] | idx | = index in tx buffer array |
Definition at line 237 of file erika/nicdrv.c.
void ecx_setbufstat | ( | ecx_portt * | port, |
int | idx, | ||
int | bufstat | ||
) |
Set rx buffer status.
[in] | port | = port context struct |
[in] | idx | = index in buffer array |
[in] | bufstat | = status to set |
Set rx buffer status.
[in] | idx | = index in buffer array |
[in] | bufstat | = status to set |
Definition at line 202 of file erika/nicdrv.c.
int ecx_setupnic | ( | ecx_portt * | port, |
const char * | ifname, | ||
int | secondary | ||
) |
Basic setup to connect NIC to socket.
[in] | port | = port context struct |
[in] | ifname | = Name of NIC device, f.e. "eth0" |
[in] | secondary | = if >0 then use secondary stack instead of primary |
Basic setup to connect NIC to socket.
[in] | ifname | = Name of NIC device, f.e. "eth0" |
[in] | secondary | = if >0 then use secondary stack instead of primary |
Basic setup to connect NIC to socket.
[in] | port | = port context struct |
[in] | ifname | = Name of NIC device, f.e. "gei0" |
[in] | secondary | = if >0 then use secondary stack instead of primary |
Definition at line 90 of file erika/nicdrv.c.
int ecx_srconfirm | ( | ecx_portt * | port, |
int | idx, | ||
int | timeout | ||
) |
Blocking send and receive frame function. Used for non processdata frames. A datagram is build into a frame and transmitted via this function. It waits for an answer and returns the workcounter. The function retries if time is left and the result is WKC=0 or no frame received.
The function calls ec_outframe_red() and ec_waitinframe_red().
[in] | port | = port context struct |
[in] | idx | = index of frame |
[in] | timeout | = timeout in us |
Blocking send and receive frame function. Used for non processdata frames. A datagram is build into a frame and transmitted via this function. It waits for an answer and returns the workcounter. The function retries if time is left and the result is WKC=0 or no frame received.
The function calls ec_outframe_red() and ec_waitinframe_red().
[in] | idx | = index of frame |
[in] | timeout | = timeout in us |
Definition at line 490 of file erika/nicdrv.c.
int ecx_waitinframe | ( | ecx_portt * | port, |
int | idx, | ||
int | timeout | ||
) |
Blocking receive frame function. Calls ec_waitinframe_red().
[in] | port | = port context struct |
[in] | idx | = requested index of frame |
[in] | timeout | = timeout in us |
Blocking receive frame function. Calls ec_waitinframe_red().
[in] | idx | = requested index of frame |
[in] | timeout | = timeout in us |
Definition at line 467 of file erika/nicdrv.c.
const uint16 priMAC[3] |
Primary source MAC address used for EtherCAT. This address is not the MAC address used from the NIC. EtherCAT does not care about MAC addressing, but it is used here to differentiate the route the packet traverses through the EtherCAT segment. This is needed to find out the packet flow in redundant configurations.
Primary source MAC address used for EtherCAT. This address is not the MAC address used from the NIC. EtherCAT does not care about MAC addressing, but it is used here to differentiate the route the packet traverses through the EtherCAT segment. This is needed to fund out the packet flow in redundant configurations.
Definition at line 65 of file erika/nicdrv.c.
const uint16 secMAC[3] |
Secondary source MAC address used for EtherCAT.
Definition at line 67 of file erika/nicdrv.c.