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-2024 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.4.0
29  **/
30 
31 #ifndef _SAMV71_ETH_DRIVER_H
32 #define _SAMV71_ETH_DRIVER_H
33 
34 //Number of TX buffers
35 #ifndef SAMV71_ETH_TX_BUFFER_COUNT
36  #define SAMV71_ETH_TX_BUFFER_COUNT 4
37 #elif (SAMV71_ETH_TX_BUFFER_COUNT < 1)
38  #error SAMV71_ETH_TX_BUFFER_COUNT parameter is not valid
39 #endif
40 
41 //TX buffer size
42 #ifndef SAMV71_ETH_TX_BUFFER_SIZE
43  #define SAMV71_ETH_TX_BUFFER_SIZE 1536
44 #elif (SAMV71_ETH_TX_BUFFER_SIZE != 1536)
45  #error SAMV71_ETH_TX_BUFFER_SIZE parameter is not valid
46 #endif
47 
48 //Number of RX buffers
49 #ifndef SAMV71_ETH_RX_BUFFER_COUNT
50  #define SAMV71_ETH_RX_BUFFER_COUNT 96
51 #elif (SAMV71_ETH_RX_BUFFER_COUNT < 12)
52  #error SAMV71_ETH_RX_BUFFER_COUNT parameter is not valid
53 #endif
54 
55 //RX buffer size
56 #ifndef SAMV71_ETH_RX_BUFFER_SIZE
57  #define SAMV71_ETH_RX_BUFFER_SIZE 128
58 #elif (SAMV71_ETH_RX_BUFFER_SIZE != 128)
59  #error SAMV71_ETH_RX_BUFFER_SIZE parameter is not valid
60 #endif
61 
62 //Number of dummy buffers
63 #ifndef SAMV71_ETH_DUMMY_BUFFER_COUNT
64  #define SAMV71_ETH_DUMMY_BUFFER_COUNT 2
65 #elif (SAMV71_ETH_DUMMY_BUFFER_COUNT < 1)
66  #error SAMV71_ETH_DUMMY_BUFFER_COUNT parameter is not valid
67 #endif
68 
69 //Dummy buffer size
70 #ifndef SAMV71_ETH_DUMMY_BUFFER_SIZE
71  #define SAMV71_ETH_DUMMY_BUFFER_SIZE 128
72 #elif (SAMV71_ETH_DUMMY_BUFFER_SIZE != 128)
73  #error SAMV71_ETH_DUMMY_BUFFER_SIZE parameter is not valid
74 #endif
75 
76 //Interrupt priority grouping
77 #ifndef SAMV71_ETH_IRQ_PRIORITY_GROUPING
78  #define SAMV71_ETH_IRQ_PRIORITY_GROUPING 4
79 #elif (SAMV71_ETH_IRQ_PRIORITY_GROUPING < 0)
80  #error SAMV71_ETH_IRQ_PRIORITY_GROUPING parameter is not valid
81 #endif
82 
83 //Ethernet interrupt group priority
84 #ifndef SAMV71_ETH_IRQ_GROUP_PRIORITY
85  #define SAMV71_ETH_IRQ_GROUP_PRIORITY 6
86 #elif (SAMV71_ETH_IRQ_GROUP_PRIORITY < 0)
87  #error SAMV71_ETH_IRQ_GROUP_PRIORITY parameter is not valid
88 #endif
89 
90 //Ethernet interrupt subpriority
91 #ifndef SAMV71_ETH_IRQ_SUB_PRIORITY
92  #define SAMV71_ETH_IRQ_SUB_PRIORITY 0
93 #elif (SAMV71_ETH_IRQ_SUB_PRIORITY < 0)
94  #error SAMV71_ETH_IRQ_SUB_PRIORITY parameter is not valid
95 #endif
96 
97 //Name of the section where to place DMA buffers
98 #ifndef SAMV71_ETH_RAM_SECTION
99  #define SAMV71_ETH_RAM_SECTION ".ram_no_cache"
100 #endif
101 
102 //RMII signals
103 #define GMAC_RMII_MASK (PIO_PD9A_GMAC_GMDIO | PIO_PD8A_GMAC_GMDC | \
104  PIO_PD7A_GMAC_GRXER | PIO_PD6A_GMAC_GRX1 | PIO_PD5A_GMAC_GRX0 | \
105  PIO_PD4A_GMAC_GRXDV | PIO_PD3A_GMAC_GTX1 | PIO_PD2A_GMAC_GTX0 | \
106  PIO_PD1A_GMAC_GTXEN | PIO_PD0A_GMAC_GTXCK)
107 
108 //TX buffer descriptor flags
109 #define GMAC_TX_USED 0x80000000
110 #define GMAC_TX_WRAP 0x40000000
111 #define GMAC_TX_RLE_ERROR 0x20000000
112 #define GMAC_TX_UNDERRUN_ERROR 0x10000000
113 #define GMAC_TX_AHB_ERROR 0x08000000
114 #define GMAC_TX_LATE_COL_ERROR 0x04000000
115 #define GMAC_TX_CHECKSUM_ERROR 0x00700000
116 #define GMAC_TX_NO_CRC 0x00010000
117 #define GMAC_TX_LAST 0x00008000
118 #define GMAC_TX_LENGTH 0x00003FFF
119 
120 //RX buffer descriptor flags
121 #define GMAC_RX_ADDRESS 0xFFFFFFFC
122 #define GMAC_RX_WRAP 0x00000002
123 #define GMAC_RX_OWNERSHIP 0x00000001
124 #define GMAC_RX_BROADCAST 0x80000000
125 #define GMAC_RX_MULTICAST_HASH 0x40000000
126 #define GMAC_RX_UNICAST_HASH 0x20000000
127 #define GMAC_RX_SAR 0x08000000
128 #define GMAC_RX_SAR_MASK 0x06000000
129 #define GMAC_RX_TYPE_ID 0x01000000
130 #define GMAC_RX_SNAP 0x01000000
131 #define GMAC_RX_TYPE_ID_MASK 0x00C00000
132 #define GMAC_RX_CHECKSUM_VALID 0x00C00000
133 #define GMAC_RX_VLAN_TAG 0x00200000
134 #define GMAC_RX_PRIORITY_TAG 0x00100000
135 #define GMAC_RX_VLAN_PRIORITY 0x000E0000
136 #define GMAC_RX_CFI 0x00010000
137 #define GMAC_RX_EOF 0x00008000
138 #define GMAC_RX_SOF 0x00004000
139 #define GMAC_RX_LENGTH_MSB 0x00002000
140 #define GMAC_RX_BAD_FCS 0x00002000
141 #define GMAC_RX_LENGTH 0x00001FFF
142 
143 //C++ guard
144 #ifdef __cplusplus
145 extern "C" {
146 #endif
147 
148 
149 /**
150  * @brief Transmit buffer descriptor
151  **/
152 
153 typedef struct
154 {
155  uint32_t address;
156  uint32_t status;
158 
159 
160 /**
161  * @brief Receive buffer descriptor
162  **/
163 
164 typedef struct
165 {
166  uint32_t address;
167  uint32_t status;
169 
170 
171 //SAMV71 Ethernet MAC driver
172 extern const NicDriver samv71EthDriver;
173 
174 //SAMV71 Ethernet MAC related functions
176 void samv71EthInitGpio(NetInterface *interface);
177 void samv71EthInitBufferDesc(NetInterface *interface);
178 
179 void samv71EthTick(NetInterface *interface);
180 
181 void samv71EthEnableIrq(NetInterface *interface);
182 void samv71EthDisableIrq(NetInterface *interface);
183 void samv71EthEventHandler(NetInterface *interface);
184 
186  const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary);
187 
189 
192 
193 void samv71EthWritePhyReg(uint8_t opcode, uint8_t phyAddr,
194  uint8_t regAddr, uint16_t data);
195 
196 uint16_t samv71EthReadPhyReg(uint8_t opcode, uint8_t phyAddr,
197  uint8_t regAddr);
198 
199 //C++ guard
200 #ifdef __cplusplus
201 }
202 #endif
203 
204 #endif
uint8_t opcode
Definition: dns_common.h:188
error_t
Error codes.
Definition: error.h:43
uint8_t data[]
Definition: ethernet.h:222
uint16_t regAddr
#define NetInterface
Definition: net.h:36
#define NetTxAncillary
Definition: net_misc.h:36
void samv71EthEventHandler(NetInterface *interface)
SAMV71 Ethernet MAC event handler.
error_t samv71EthSendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
error_t samv71EthUpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
void samv71EthWritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
void samv71EthDisableIrq(NetInterface *interface)
Disable interrupts.
void samv71EthInitGpio(NetInterface *interface)
GPIO configuration.
void samv71EthInitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
void samv71EthEnableIrq(NetInterface *interface)
Enable interrupts.
error_t samv71EthUpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.
uint16_t samv71EthReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
error_t samv71EthReceivePacket(NetInterface *interface)
Receive a packet.
const NicDriver samv71EthDriver
SAMV71 Ethernet MAC driver.
error_t samv71EthInit(NetInterface *interface)
SAMV71 Ethernet MAC initialization.
void samv71EthTick(NetInterface *interface)
SAMV71 Ethernet MAC timer handler.
Structure describing a buffer that spans multiple chunks.
Definition: net_mem.h:89
NIC driver.
Definition: nic.h:283
Receive buffer descriptor.
Transmit buffer descriptor.