Go to the documentation of this file.
31 #ifndef _SAME70_ETH_DRIVER_H
32 #define _SAME70_ETH_DRIVER_H
38 #ifndef SAME70_ETH_TX_BUFFER_COUNT
39 #define SAME70_ETH_TX_BUFFER_COUNT 4
40 #elif (SAME70_ETH_TX_BUFFER_COUNT < 1)
41 #error SAME70_ETH_TX_BUFFER_COUNT parameter is not valid
45 #ifndef SAME70_ETH_TX_BUFFER_SIZE
46 #define SAME70_ETH_TX_BUFFER_SIZE 1536
47 #elif (SAME70_ETH_TX_BUFFER_SIZE != 1536)
48 #error SAME70_ETH_TX_BUFFER_SIZE parameter is not valid
52 #ifndef SAME70_ETH_RX_BUFFER_COUNT
53 #define SAME70_ETH_RX_BUFFER_COUNT 96
54 #elif (SAME70_ETH_RX_BUFFER_COUNT < 12)
55 #error SAME70_ETH_RX_BUFFER_COUNT parameter is not valid
59 #ifndef SAME70_ETH_RX_BUFFER_SIZE
60 #define SAME70_ETH_RX_BUFFER_SIZE 128
61 #elif (SAME70_ETH_RX_BUFFER_SIZE != 128)
62 #error SAME70_ETH_RX_BUFFER_SIZE parameter is not valid
66 #ifndef SAME70_ETH_DUMMY_BUFFER_COUNT
67 #define SAME70_ETH_DUMMY_BUFFER_COUNT 2
68 #elif (SAME70_ETH_DUMMY_BUFFER_COUNT < 1)
69 #error SAME70_ETH_DUMMY_BUFFER_COUNT parameter is not valid
73 #ifndef SAME70_ETH_DUMMY_BUFFER_SIZE
74 #define SAME70_ETH_DUMMY_BUFFER_SIZE 128
75 #elif (SAME70_ETH_DUMMY_BUFFER_SIZE != 128)
76 #error SAME70_ETH_DUMMY_BUFFER_SIZE parameter is not valid
80 #ifndef SAME70_ETH_IRQ_PRIORITY_GROUPING
81 #define SAME70_ETH_IRQ_PRIORITY_GROUPING 4
82 #elif (SAME70_ETH_IRQ_PRIORITY_GROUPING < 0)
83 #error SAME70_ETH_IRQ_PRIORITY_GROUPING parameter is not valid
87 #ifndef SAME70_ETH_IRQ_GROUP_PRIORITY
88 #define SAME70_ETH_IRQ_GROUP_PRIORITY 6
89 #elif (SAME70_ETH_IRQ_GROUP_PRIORITY < 0)
90 #error SAME70_ETH_IRQ_GROUP_PRIORITY parameter is not valid
94 #ifndef SAME70_ETH_IRQ_SUB_PRIORITY
95 #define SAME70_ETH_IRQ_SUB_PRIORITY 0
96 #elif (SAME70_ETH_IRQ_SUB_PRIORITY < 0)
97 #error SAME70_ETH_IRQ_SUB_PRIORITY parameter is not valid
101 #ifndef SAME70_ETH_RAM_SECTION
102 #define SAME70_ETH_RAM_SECTION ".ram_no_cache"
106 #define GMAC_TX_USED 0x80000000
107 #define GMAC_TX_WRAP 0x40000000
108 #define GMAC_TX_RLE_ERROR 0x20000000
109 #define GMAC_TX_UNDERRUN_ERROR 0x10000000
110 #define GMAC_TX_AHB_ERROR 0x08000000
111 #define GMAC_TX_LATE_COL_ERROR 0x04000000
112 #define GMAC_TX_CHECKSUM_ERROR 0x00700000
113 #define GMAC_TX_NO_CRC 0x00010000
114 #define GMAC_TX_LAST 0x00008000
115 #define GMAC_TX_LENGTH 0x00003FFF
118 #define GMAC_RX_ADDRESS 0xFFFFFFFC
119 #define GMAC_RX_WRAP 0x00000002
120 #define GMAC_RX_OWNERSHIP 0x00000001
121 #define GMAC_RX_BROADCAST 0x80000000
122 #define GMAC_RX_MULTICAST_HASH 0x40000000
123 #define GMAC_RX_UNICAST_HASH 0x20000000
124 #define GMAC_RX_SAR 0x08000000
125 #define GMAC_RX_SAR_MASK 0x06000000
126 #define GMAC_RX_TYPE_ID 0x01000000
127 #define GMAC_RX_SNAP 0x01000000
128 #define GMAC_RX_TYPE_ID_MASK 0x00C00000
129 #define GMAC_RX_CHECKSUM_VALID 0x00C00000
130 #define GMAC_RX_VLAN_TAG 0x00200000
131 #define GMAC_RX_PRIORITY_TAG 0x00100000
132 #define GMAC_RX_VLAN_PRIORITY 0x000E0000
133 #define GMAC_RX_CFI 0x00010000
134 #define GMAC_RX_EOF 0x00008000
135 #define GMAC_RX_SOF 0x00004000
136 #define GMAC_RX_LENGTH_MSB 0x00002000
137 #define GMAC_RX_BAD_FCS 0x00002000
138 #define GMAC_RX_LENGTH 0x00001FFF
error_t same70EthReceivePacket(NetInterface *interface)
Receive a packet.
const NicDriver same70EthDriver
SAME70 Ethernet MAC driver.
void same70EthTick(NetInterface *interface)
SAME70 Ethernet MAC timer handler.
void same70EthDisableIrq(NetInterface *interface)
Disable interrupts.
Structure describing a buffer that spans multiple chunks.
void same70EthEventHandler(NetInterface *interface)
SAME70 Ethernet MAC event handler.
void same70EthInitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
void same70EthEnableIrq(NetInterface *interface)
Enable interrupts.
uint16_t same70EthReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
Transmit buffer descriptor.
error_t same70EthInit(NetInterface *interface)
SAME70 Ethernet MAC initialization.
void same70EthWritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
error_t same70EthUpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.
Receive buffer descriptor.
Network interface controller abstraction layer.
void same70EthInitGpio(NetInterface *interface)
GPIO configuration.
error_t same70EthUpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
error_t same70EthSendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.