samv71_eth_driver.h
Go to the documentation of this file.
1 /**
2  * @file samv71_eth_driver.h
3  * @brief SAMV71 Ethernet MAC driver
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2025 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneTCP Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.5.4
29  **/
30 
31 #ifndef _SAMV71_ETH_DRIVER_H
32 #define _SAMV71_ETH_DRIVER_H
33 
34 //Dependencies
35 #include "core/nic.h"
36 
37 //Number of TX buffers
38 #ifndef SAMV71_ETH_TX_BUFFER_COUNT
39  #define SAMV71_ETH_TX_BUFFER_COUNT 4
40 #elif (SAMV71_ETH_TX_BUFFER_COUNT < 1)
41  #error SAMV71_ETH_TX_BUFFER_COUNT parameter is not valid
42 #endif
43 
44 //TX buffer size
45 #ifndef SAMV71_ETH_TX_BUFFER_SIZE
46  #define SAMV71_ETH_TX_BUFFER_SIZE 1536
47 #elif (SAMV71_ETH_TX_BUFFER_SIZE != 1536)
48  #error SAMV71_ETH_TX_BUFFER_SIZE parameter is not valid
49 #endif
50 
51 //Number of RX buffers
52 #ifndef SAMV71_ETH_RX_BUFFER_COUNT
53  #define SAMV71_ETH_RX_BUFFER_COUNT 96
54 #elif (SAMV71_ETH_RX_BUFFER_COUNT < 12)
55  #error SAMV71_ETH_RX_BUFFER_COUNT parameter is not valid
56 #endif
57 
58 //RX buffer size
59 #ifndef SAMV71_ETH_RX_BUFFER_SIZE
60  #define SAMV71_ETH_RX_BUFFER_SIZE 128
61 #elif (SAMV71_ETH_RX_BUFFER_SIZE != 128)
62  #error SAMV71_ETH_RX_BUFFER_SIZE parameter is not valid
63 #endif
64 
65 //Number of dummy buffers
66 #ifndef SAMV71_ETH_DUMMY_BUFFER_COUNT
67  #define SAMV71_ETH_DUMMY_BUFFER_COUNT 2
68 #elif (SAMV71_ETH_DUMMY_BUFFER_COUNT < 1)
69  #error SAMV71_ETH_DUMMY_BUFFER_COUNT parameter is not valid
70 #endif
71 
72 //Dummy buffer size
73 #ifndef SAMV71_ETH_DUMMY_BUFFER_SIZE
74  #define SAMV71_ETH_DUMMY_BUFFER_SIZE 128
75 #elif (SAMV71_ETH_DUMMY_BUFFER_SIZE != 128)
76  #error SAMV71_ETH_DUMMY_BUFFER_SIZE parameter is not valid
77 #endif
78 
79 //Interrupt priority grouping
80 #ifndef SAMV71_ETH_IRQ_PRIORITY_GROUPING
81  #define SAMV71_ETH_IRQ_PRIORITY_GROUPING 4
82 #elif (SAMV71_ETH_IRQ_PRIORITY_GROUPING < 0)
83  #error SAMV71_ETH_IRQ_PRIORITY_GROUPING parameter is not valid
84 #endif
85 
86 //Ethernet interrupt group priority
87 #ifndef SAMV71_ETH_IRQ_GROUP_PRIORITY
88  #define SAMV71_ETH_IRQ_GROUP_PRIORITY 6
89 #elif (SAMV71_ETH_IRQ_GROUP_PRIORITY < 0)
90  #error SAMV71_ETH_IRQ_GROUP_PRIORITY parameter is not valid
91 #endif
92 
93 //Ethernet interrupt subpriority
94 #ifndef SAMV71_ETH_IRQ_SUB_PRIORITY
95  #define SAMV71_ETH_IRQ_SUB_PRIORITY 0
96 #elif (SAMV71_ETH_IRQ_SUB_PRIORITY < 0)
97  #error SAMV71_ETH_IRQ_SUB_PRIORITY parameter is not valid
98 #endif
99 
100 //Name of the section where to place DMA buffers
101 #ifndef SAMV71_ETH_RAM_SECTION
102  #define SAMV71_ETH_RAM_SECTION ".ram_no_cache"
103 #endif
104 
105 //TX buffer descriptor flags
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
116 
117 //RX buffer descriptor flags
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
139 
140 //C++ guard
141 #ifdef __cplusplus
142 extern "C" {
143 #endif
144 
145 
146 /**
147  * @brief Transmit buffer descriptor
148  **/
149 
150 typedef struct
151 {
152  uint32_t address;
153  uint32_t status;
155 
156 
157 /**
158  * @brief Receive buffer descriptor
159  **/
160 
161 typedef struct
162 {
163  uint32_t address;
164  uint32_t status;
166 
167 
168 //SAMV71 Ethernet MAC driver
169 extern const NicDriver samv71EthDriver;
170 
171 //SAMV71 Ethernet MAC related functions
173 void samv71EthInitGpio(NetInterface *interface);
174 void samv71EthInitBufferDesc(NetInterface *interface);
175 
176 void samv71EthTick(NetInterface *interface);
177 
178 void samv71EthEnableIrq(NetInterface *interface);
179 void samv71EthDisableIrq(NetInterface *interface);
180 void samv71EthEventHandler(NetInterface *interface);
181 
183  const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary);
184 
186 
189 
190 void samv71EthWritePhyReg(uint8_t opcode, uint8_t phyAddr,
191  uint8_t regAddr, uint16_t data);
192 
193 uint16_t samv71EthReadPhyReg(uint8_t opcode, uint8_t phyAddr,
194  uint8_t regAddr);
195 
196 //C++ guard
197 #ifdef __cplusplus
198 }
199 #endif
200 
201 #endif
uint8_t opcode
Definition: dns_common.h:191
void samv71EthInitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
error_t samv71EthUpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
Structure describing a buffer that spans multiple chunks.
Definition: net_mem.h:89
uint8_t data[]
Definition: ethernet.h:224
error_t samv71EthReceivePacket(NetInterface *interface)
Receive a packet.
void samv71EthInitGpio(NetInterface *interface)
GPIO configuration.
error_t samv71EthSendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
const NicDriver samv71EthDriver
SAMV71 Ethernet MAC driver.
error_t
Error codes.
Definition: error.h:43
void samv71EthDisableIrq(NetInterface *interface)
Disable interrupts.
#define NetInterface
Definition: net.h:36
Transmit buffer descriptor.
#define NetTxAncillary
Definition: net_misc.h:36
Receive buffer descriptor.
void samv71EthTick(NetInterface *interface)
SAMV71 Ethernet MAC timer handler.
void samv71EthEnableIrq(NetInterface *interface)
Enable interrupts.
uint16_t regAddr
void samv71EthWritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
uint16_t samv71EthReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
Network interface controller abstraction layer.
void samv71EthEventHandler(NetInterface *interface)
SAMV71 Ethernet MAC event handler.
error_t samv71EthInit(NetInterface *interface)
SAMV71 Ethernet MAC initialization.
NIC driver.
Definition: nic.h:286
error_t samv71EthUpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.