spinnaker_tools (BMP) 3.4.0
SpiNNaker BMP firmware
|
Ethernet hardware interface code for BMP LPC1768. More...
Data Structures | |
struct | rx_desc_t |
Ethernet receive descriptor. More... | |
struct | rx_stat_t |
Ethernet receive status. More... | |
struct | tx_desc_t |
Ethernet transmit descriptor. More... | |
struct | tx_stat_t |
Ethernet transmit status. More... | |
Macros | |
#define | ETH_RX_BUFS 4 |
Number of receive buffers. | |
#define | ETH_TX_BUFS 3 |
Number of transmit buffers. | |
Functions | |
uint32_t | eth_rx_rdy (void) |
Is the ethernet hardware ready to receive? | |
uint32_t | eth_tx_rdy (void) |
Is the ethernet hardware ready to transmit? | |
void | eth_update_tx (void) |
Select the next transmission buffer. | |
void | eth_rx_discard (void) |
Discard received packet, releasing buffer for reuse. | |
void | eth_copy_txbuf (uint32_t *buffer, uint32_t length) |
Copy supplied buffer into transmit hardware. | |
void | eth_copy_rxbuf (uint32_t *buffer, uint32_t length) |
Copy received message into supplied buffer. | |
uint32_t | eth_rx_size (void) |
Get size of received data. | |
static void | rx_desc_init (void) |
Initialise receive descriptors. | |
static void | tx_desc_init (void) |
Initialise transmit descriptors. | |
void | configure_eth (const uint8_t *mac_addr) |
Configure the ethernet hardware. | |
Variables | |
static rx_desc_t | rx_desc [ETH_RX_BUFS] |
Ethernet receive descriptors. | |
static rx_stat_t | rx_stat [ETH_RX_BUFS] |
Ethernet receive status. | |
static uint32_t | rx_buf [ETH_RX_BUFS][EMAC_ETH_MAX_FLEN > > 2] |
Ethernet receive buffers. | |
static tx_desc_t | tx_desc [ETH_TX_BUFS] |
Ethernet transmit descriptors. | |
static tx_stat_t | tx_stat [ETH_TX_BUFS] |
Ethernet transmit status. | |
static uint32_t | tx_buf [ETH_TX_BUFS][EMAC_ETH_MAX_FLEN > > 2] |
Ethernet transmit buffers. | |
Ethernet hardware interface code for BMP LPC1768.
struct rx_desc_t |
Ethernet receive descriptor.
Data Fields | ||
---|---|---|
event_t * | event | Event and ID must be first in struct. |
uint32_t | event_id | |
uint8_t | state | State variable. |
uint8_t | tid | Tx ID of sender. |
uint8_t | srce | Source address of sender. |
uint8_t | last | Sequence number of last packet in message. |
uint8_t | seq | Expected sequence number. |
uint8_t | retry | Counts retries for can_close_req. |
uint32_t * | buf | Pointer to buffer in SDP message. |
sdp_msg_t * | msg | Pointer to SDP message. |
uint32_t | Packet | Receive Packet Descriptor. |
uint32_t | Ctrl | Receive Control Descriptor. |
struct rx_stat_t |
struct tx_desc_t |
Ethernet transmit descriptor.
Data Fields | ||
---|---|---|
event_t * | event | Event and ID must be first in struct. |
uint32_t | event_id | |
uint8_t | state | State variable. |
uint8_t | rid | Rx ID at receiver. |
uint8_t | tid | Tx ID. |
volatile uint8_t | seq | Sequence number for sent DATA packets. |
uint8_t | dest | Address of receiver. |
uint8_t | rc | Return code. |
uint8_t | delay | Packet delay (not used yet) |
volatile uint8_t | ack | Ack variable set by interrupt routines. |
uint32_t | Packet | Transmit Packet Descriptor. |
uint32_t | Ctrl | Transmit Control Descriptor. |
uint32_t eth_rx_rdy | ( | void | ) |
Is the ethernet hardware ready to receive?
uint32_t eth_tx_rdy | ( | void | ) |
Is the ethernet hardware ready to transmit?
void eth_copy_txbuf | ( | uint32_t * | buffer, |
uint32_t | length | ||
) |
Copy supplied buffer into transmit hardware.
[in] | buffer | Buffer to copy the message from |
[in] | length | Length of message |
void eth_copy_rxbuf | ( | uint32_t * | buffer, |
uint32_t | length | ||
) |
Copy received message into supplied buffer.
[out] | buffer | Buffer to copy the message into |
[in] | length | Length of message. Buffer must be at least this large. |
uint32_t eth_rx_size | ( | void | ) |
Get size of received data.
void configure_eth | ( | const uint8_t * | mac_addr | ) |
Configure the ethernet hardware.
[in] | mac_addr | The MAC address to use |