sama5d3_eth2_driver.h
Go to the documentation of this file.
1 /**
2  * @file sama5d3_eth2_driver.h
3  * @brief SAMA5D3 Gigabit Ethernet MAC driver (GMAC instance)
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 _SAMA5D3_ETH2_DRIVER_H
32 #define _SAMA5D3_ETH2_DRIVER_H
33 
34 //Dependencies
35 #include "core/nic.h"
36 
37 //Number of TX buffers
38 #ifndef SAMA5D3_ETH2_TX_BUFFER_COUNT
39  #define SAMA5D3_ETH2_TX_BUFFER_COUNT 2
40 #elif (SAMA5D3_ETH2_TX_BUFFER_COUNT != 2)
41  #error SAMA5D3_ETH2_TX_BUFFER_COUNT parameter is not valid
42 #endif
43 
44 //TX buffer size
45 #ifndef SAMA5D3_ETH2_TX_BUFFER_SIZE
46  #define SAMA5D3_ETH2_TX_BUFFER_SIZE 1536
47 #elif (SAMA5D3_ETH2_TX_BUFFER_SIZE != 1536)
48  #error SAMA5D3_ETH2_TX_BUFFER_SIZE parameter is not valid
49 #endif
50 
51 //Number of RX buffers
52 #ifndef SAMA5D3_ETH2_RX_BUFFER_COUNT
53  #define SAMA5D3_ETH2_RX_BUFFER_COUNT 96
54 #elif (SAMA5D3_ETH2_RX_BUFFER_COUNT < 12)
55  #error SAMA5D3_ETH2_RX_BUFFER_COUNT parameter is not valid
56 #endif
57 
58 //RX buffer size
59 #ifndef SAMA5D3_ETH2_RX_BUFFER_SIZE
60  #define SAMA5D3_ETH2_RX_BUFFER_SIZE 128
61 #elif (SAMA5D3_ETH2_RX_BUFFER_SIZE != 128)
62  #error SAMA5D3_ETH2_RX_BUFFER_SIZE parameter is not valid
63 #endif
64 
65 //Ethernet interrupt priority
66 #ifndef SAMA5D3_ETH2_IRQ_PRIORITY
67  #define SAMA5D3_ETH2_IRQ_PRIORITY 0
68 #elif (SAMA5D3_ETH2_IRQ_PRIORITY < 0)
69  #error SAMA5D3_ETH2_IRQ_PRIORITY parameter is not valid
70 #endif
71 
72 //Name of the section where to place DMA buffers
73 #ifndef SAMA5D3_ETH2_RAM_SECTION
74  #define SAMA5D3_ETH2_RAM_SECTION ".ram_no_cache"
75 #endif
76 
77 //TX buffer descriptor flags
78 #define GMAC_TX_USED 0x80000000
79 #define GMAC_TX_WRAP 0x40000000
80 #define GMAC_TX_RLE_ERROR 0x20000000
81 #define GMAC_TX_UNDERRUN_ERROR 0x10000000
82 #define GMAC_TX_AHB_ERROR 0x08000000
83 #define GMAC_TX_LATE_COL_ERROR 0x04000000
84 #define GMAC_TX_CHECKSUM_ERROR 0x00700000
85 #define GMAC_TX_NO_CRC 0x00010000
86 #define GMAC_TX_LAST 0x00008000
87 #define GMAC_TX_LENGTH 0x00003FFF
88 
89 //RX buffer descriptor flags
90 #define GMAC_RX_ADDRESS 0xFFFFFFFC
91 #define GMAC_RX_WRAP 0x00000002
92 #define GMAC_RX_OWNERSHIP 0x00000001
93 #define GMAC_RX_BROADCAST 0x80000000
94 #define GMAC_RX_MULTICAST_HASH 0x40000000
95 #define GMAC_RX_UNICAST_HASH 0x20000000
96 #define GMAC_RX_SAR 0x08000000
97 #define GMAC_RX_SAR_MASK 0x06000000
98 #define GMAC_RX_TYPE_ID 0x01000000
99 #define GMAC_RX_SNAP 0x01000000
100 #define GMAC_RX_TYPE_ID_MASK 0x00C00000
101 #define GMAC_RX_CHECKSUM_VALID 0x00C00000
102 #define GMAC_RX_VLAN_TAG 0x00200000
103 #define GMAC_RX_PRIORITY_TAG 0x00100000
104 #define GMAC_RX_VLAN_PRIORITY 0x000E0000
105 #define GMAC_RX_CFI 0x00010000
106 #define GMAC_RX_EOF 0x00008000
107 #define GMAC_RX_SOF 0x00004000
108 #define GMAC_RX_LENGTH_MSB 0x00002000
109 #define GMAC_RX_BAD_FCS 0x00002000
110 #define GMAC_RX_LENGTH 0x00001FFF
111 
112 //C++ guard
113 #ifdef __cplusplus
114 extern "C" {
115 #endif
116 
117 
118 /**
119  * @brief Transmit buffer descriptor
120  **/
121 
122 typedef struct
123 {
124  uint32_t address;
125  uint32_t status;
127 
128 
129 /**
130  * @brief Receive buffer descriptor
131  **/
132 
133 typedef struct
134 {
135  uint32_t address;
136  uint32_t status;
138 
139 
140 //SAMA5D3 Ethernet MAC driver (GMAC instance)
141 extern const NicDriver sama5d3Eth2Driver;
142 
143 //SAMA5D3 Ethernet MAC related functions
145 void sama5d3Eth2InitGpio(NetInterface *interface);
146 void sama5d3Eth2InitBufferDesc(NetInterface *interface);
147 
148 void sama5d3Eth2Tick(NetInterface *interface);
149 
150 void sama5d3Eth2EnableIrq(NetInterface *interface);
151 void sama5d3Eth2DisableIrq(NetInterface *interface);
152 void sama5d3Eth2IrqHandler(void);
153 void sama5d3Eth2EventHandler(NetInterface *interface);
154 
156  const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary);
157 
159 
162 
163 void sama5d3Eth2WritePhyReg(uint8_t opcode, uint8_t phyAddr,
164  uint8_t regAddr, uint16_t data);
165 
166 uint16_t sama5d3Eth2ReadPhyReg(uint8_t opcode, uint8_t phyAddr,
167  uint8_t regAddr);
168 
169 //C++ guard
170 #ifdef __cplusplus
171 }
172 #endif
173 
174 #endif
uint8_t opcode
Definition: dns_common.h:191
error_t sama5d3Eth2Init(NetInterface *interface)
SAMA5D3 Ethernet MAC initialization.
const NicDriver sama5d3Eth2Driver
SAMA5D3 Ethernet MAC driver (GMAC instance)
error_t sama5d3Eth2SendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
Structure describing a buffer that spans multiple chunks.
Definition: net_mem.h:89
void sama5d3Eth2DisableIrq(NetInterface *interface)
Disable interrupts.
uint8_t data[]
Definition: ethernet.h:224
void sama5d3Eth2InitGpio(NetInterface *interface)
GPIO configuration.
error_t
Error codes.
Definition: error.h:43
#define NetInterface
Definition: net.h:36
uint16_t sama5d3Eth2ReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
#define NetTxAncillary
Definition: net_misc.h:36
void sama5d3Eth2EventHandler(NetInterface *interface)
SAMA5D3 Ethernet MAC event handler.
error_t sama5d3Eth2UpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.
uint16_t regAddr
error_t sama5d3Eth2ReceivePacket(NetInterface *interface)
Receive a packet.
void sama5d3Eth2Tick(NetInterface *interface)
SAMA5D3 Ethernet MAC timer handler.
Network interface controller abstraction layer.
void sama5d3Eth2EnableIrq(NetInterface *interface)
Enable interrupts.
Transmit buffer descriptor.
Receive buffer descriptor.
void sama5d3Eth2WritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
error_t sama5d3Eth2UpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
NIC driver.
Definition: nic.h:286
void sama5d3Eth2InitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
void sama5d3Eth2IrqHandler(void)
SAMA5D3 Ethernet MAC interrupt service routine.