Go to the documentation of this file.
31 #ifndef _SAM3X_ETH_DRIVER_H
32 #define _SAM3X_ETH_DRIVER_H
38 #ifndef SAM3X_ETH_TX_BUFFER_COUNT
39 #define SAM3X_ETH_TX_BUFFER_COUNT 2
40 #elif (SAM3X_ETH_TX_BUFFER_COUNT < 1)
41 #error SAM3X_ETH_TX_BUFFER_COUNT parameter is not valid
45 #ifndef SAM3X_ETH_TX_BUFFER_SIZE
46 #define SAM3X_ETH_TX_BUFFER_SIZE 1536
47 #elif (SAM3X_ETH_TX_BUFFER_SIZE != 1536)
48 #error SAM3X_ETH_TX_BUFFER_SIZE parameter is not valid
52 #ifndef SAM3X_ETH_RX_BUFFER_COUNT
53 #define SAM3X_ETH_RX_BUFFER_COUNT 48
54 #elif (SAM3X_ETH_RX_BUFFER_COUNT < 12)
55 #error SAM3X_ETH_RX_BUFFER_COUNT parameter is not valid
59 #ifndef SAM3X_ETH_RX_BUFFER_SIZE
60 #define SAM3X_ETH_RX_BUFFER_SIZE 128
61 #elif (SAM3X_ETH_RX_BUFFER_SIZE != 128)
62 #error SAM3X_ETH_RX_BUFFER_SIZE parameter is not valid
66 #ifndef SAM3X_ETH_IRQ_PRIORITY_GROUPING
67 #define SAM3X_ETH_IRQ_PRIORITY_GROUPING 3
68 #elif (SAM3X_ETH_IRQ_PRIORITY_GROUPING < 0)
69 #error SAM3X_ETH_IRQ_PRIORITY_GROUPING parameter is not valid
73 #ifndef SAM3X_ETH_IRQ_GROUP_PRIORITY
74 #define SAM3X_ETH_IRQ_GROUP_PRIORITY 12
75 #elif (SAM3X_ETH_IRQ_GROUP_PRIORITY < 0)
76 #error SAM3X_ETH_IRQ_GROUP_PRIORITY parameter is not valid
80 #ifndef SAM3X_ETH_IRQ_SUB_PRIORITY
81 #define SAM3X_ETH_IRQ_SUB_PRIORITY 0
82 #elif (SAM3X_ETH_IRQ_SUB_PRIORITY < 0)
83 #error SAM3X_ETH_IRQ_SUB_PRIORITY parameter is not valid
87 #define EMAC_TX_USED 0x80000000
88 #define EMAC_TX_WRAP 0x40000000
89 #define EMAC_TX_ERROR 0x20000000
90 #define EMAC_TX_UNDERRUN 0x10000000
91 #define EMAC_TX_EXHAUSTED 0x08000000
92 #define EMAC_TX_NO_CRC 0x00010000
93 #define EMAC_TX_LAST 0x00008000
94 #define EMAC_TX_LENGTH 0x000007FF
97 #define EMAC_RX_ADDRESS 0xFFFFFFFC
98 #define EMAC_RX_WRAP 0x00000002
99 #define EMAC_RX_OWNERSHIP 0x00000001
100 #define EMAC_RX_BROADCAST 0x80000000
101 #define EMAC_RX_MULTICAST_HASH 0x40000000
102 #define EMAC_RX_UNICAST_HASH 0x20000000
103 #define EMAC_RX_EXT_ADDR 0x10000000
104 #define EMAC_RX_SAR1 0x04000000
105 #define EMAC_RX_SAR2 0x02000000
106 #define EMAC_RX_SAR3 0x01000000
107 #define EMAC_RX_SAR4 0x00800000
108 #define EMAC_RX_TYPE_ID 0x00400000
109 #define EMAC_RX_VLAN_TAG 0x00200000
110 #define EMAC_RX_PRIORITY_TAG 0x00100000
111 #define EMAC_RX_VLAN_PRIORITY 0x000E0000
112 #define EMAC_RX_CFI 0x00010000
113 #define EMAC_RX_EOF 0x00008000
114 #define EMAC_RX_SOF 0x00004000
115 #define EMAC_RX_OFFSET 0x00003000
116 #define EMAC_RX_LENGTH 0x00000FFF
void sam3xEthWritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
Transmit buffer descriptor.
uint16_t sam3xEthReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
Structure describing a buffer that spans multiple chunks.
Receive buffer descriptor.
error_t sam3xEthSendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
void sam3xEthEnableIrq(NetInterface *interface)
Enable interrupts.
void sam3xEthInitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
void sam3xEthEventHandler(NetInterface *interface)
SAM3X Ethernet MAC event handler.
error_t sam3xEthInit(NetInterface *interface)
SAM3X Ethernet MAC initialization.
void sam3xEthDisableIrq(NetInterface *interface)
Disable interrupts.
error_t sam3xEthUpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.
Network interface controller abstraction layer.
const NicDriver sam3xEthDriver
SAM3X Ethernet MAC driver.
error_t sam3xEthReceivePacket(NetInterface *interface)
Receive a packet.
void sam3xEthInitGpio(NetInterface *interface)
GPIO configuration.
void sam3xEthTick(NetInterface *interface)
SAM3X Ethernet MAC timer handler.
error_t sam3xEthUpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.