sam7x_eth_driver.h
Go to the documentation of this file.
1 /**
2  * @file sam7x_eth_driver.h
3  * @brief AT91SAM7X 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 _SAM7X_ETH_DRIVER_H
32 #define _SAM7X_ETH_DRIVER_H
33 
34 //Number of TX buffers
35 #ifndef SAM7X_ETH_TX_BUFFER_COUNT
36  #define SAM7X_ETH_TX_BUFFER_COUNT 2
37 #elif (SAM7X_ETH_TX_BUFFER_COUNT < 1)
38  #error SAM7X_ETH_TX_BUFFER_COUNT parameter is not valid
39 #endif
40 
41 //TX buffer size
42 #ifndef SAM7X_ETH_TX_BUFFER_SIZE
43  #define SAM7X_ETH_TX_BUFFER_SIZE 1536
44 #elif (SAM7X_ETH_TX_BUFFER_SIZE != 1536)
45  #error SAM7X_ETH_TX_BUFFER_SIZE parameter is not valid
46 #endif
47 
48 //Number of RX buffers
49 #ifndef SAM7X_ETH_RX_BUFFER_COUNT
50  #define SAM7X_ETH_RX_BUFFER_COUNT 48
51 #elif (SAM7X_ETH_RX_BUFFER_COUNT < 12)
52  #error SAM7X_ETH_RX_BUFFER_COUNT parameter is not valid
53 #endif
54 
55 //RX buffer size
56 #ifndef SAM7X_ETH_RX_BUFFER_SIZE
57  #define SAM7X_ETH_RX_BUFFER_SIZE 128
58 #elif (SAM7X_ETH_RX_BUFFER_SIZE != 128)
59  #error SAM7X_ETH_RX_BUFFER_SIZE parameter is not valid
60 #endif
61 
62 //MII signals
63 #define AT91C_EMAC_MII_MASK (AT91C_PB17_ERXCK | AT91C_PB16_ECOL | \
64  AT91C_PB15_ERXDV_ECRSDV | AT91C_PB14_ERX3 | AT91C_PB13_ERX2 | AT91C_PB12_ETXER | \
65  AT91C_PB11_ETX3 | AT91C_PB10_ETX2 | AT91C_PB9_EMDIO | AT91C_PB8_EMDC | \
66  AT91C_PB7_ERXER | AT91C_PB6_ERX1 | AT91C_PB5_ERX0 | AT91C_PB4_ECRS | \
67  AT91C_PB3_ETX1 | AT91C_PB2_ETX0 | AT91C_PB1_ETXEN | AT91C_PB0_ETXCK_EREFCK)
68 
69 //PHY maintenance register (EMAC_MAN)
70 #define AT91C_EMAC_SOF_01 (1 << 30)
71 #define AT91C_EMAC_RW_01 (1 << 28)
72 #define AT91C_EMAC_RW_10 (2 << 28)
73 #define AT91C_EMAC_CODE_10 (2 << 16)
74 
75 //TX buffer descriptor flags
76 #define AT91C_EMAC_TX_USED 0x80000000
77 #define AT91C_EMAC_TX_WRAP 0x40000000
78 #define AT91C_EMAC_TX_ERROR 0x20000000
79 #define AT91C_EMAC_TX_UNDERRUN 0x10000000
80 #define AT91C_EMAC_TX_EXHAUSTED 0x08000000
81 #define AT91C_EMAC_TX_NO_CRC 0x00010000
82 #define AT91C_EMAC_TX_LAST 0x00008000
83 #define AT91C_EMAC_TX_LENGTH 0x000007FF
84 
85 //RX buffer descriptor flags
86 #define AT91C_EMAC_RX_ADDRESS 0xFFFFFFFC
87 #define AT91C_EMAC_RX_WRAP 0x00000002
88 #define AT91C_EMAC_RX_OWNERSHIP 0x00000001
89 #define AT91C_EMAC_RX_BROADCAST 0x80000000
90 #define AT91C_EMAC_RX_MULTICAST_HASH 0x40000000
91 #define AT91C_EMAC_RX_UNICAST_HASH 0x20000000
92 #define AT91C_EMAC_RX_EXT_ADDR 0x10000000
93 #define AT91C_EMAC_RX_SAR1 0x04000000
94 #define AT91C_EMAC_RX_SAR2 0x02000000
95 #define AT91C_EMAC_RX_SAR3 0x01000000
96 #define AT91C_EMAC_RX_SAR4 0x00800000
97 #define AT91C_EMAC_RX_TYPE_ID 0x00400000
98 #define AT91C_EMAC_RX_VLAN_TAG 0x00200000
99 #define AT91C_EMAC_RX_PRIORITY_TAG 0x00100000
100 #define AT91C_EMAC_RX_VLAN_PRIORITY 0x000E0000
101 #define AT91C_EMAC_RX_CFI 0x00010000
102 #define AT91C_EMAC_RX_EOF 0x00008000
103 #define AT91C_EMAC_RX_SOF 0x00004000
104 #define AT91C_EMAC_RX_OFFSET 0x00003000
105 #define AT91C_EMAC_RX_LENGTH 0x00000FFF
106 
107 //C++ guard
108 #ifdef __cplusplus
109 extern "C" {
110 #endif
111 
112 
113 /**
114  * @brief Transmit buffer descriptor
115  **/
116 
117 typedef struct
118 {
119  uint32_t address;
120  uint32_t status;
122 
123 
124 /**
125  * @brief Receive buffer descriptor
126  **/
127 
128 typedef struct
129 {
130  uint32_t address;
131  uint32_t status;
133 
134 
135 //SAM7X Ethernet MAC driver
136 extern const NicDriver sam7xEthDriver;
137 
138 //SAM7X Ethernet MAC related functions
139 error_t sam7xEthInit(NetInterface *interface);
140 void sam7xEthInitGpio(NetInterface *interface);
141 void sam7xEthInitBufferDesc(NetInterface *interface);
142 
143 void sam7xEthTick(NetInterface *interface);
144 
145 void sam7xEthEnableIrq(NetInterface *interface);
146 void sam7xEthDisableIrq(NetInterface *interface);
147 void sam7xEthIrqHandler(void);
148 void sam7xEthEventHandler(NetInterface *interface);
149 
151  const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary);
152 
154 
157 
158 void sam7xEthWritePhyReg(uint8_t opcode, uint8_t phyAddr,
159  uint8_t regAddr, uint16_t data);
160 
161 uint16_t sam7xEthReadPhyReg(uint8_t opcode, uint8_t phyAddr,
162  uint8_t regAddr);
163 
164 //Wrapper for the interrupt service routine
165 void emacIrqWrapper(void);
166 
167 //C++ guard
168 #ifdef __cplusplus
169 }
170 #endif
171 
172 #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 sam7xEthInitGpio(NetInterface *interface)
GPIO configuration.
void sam7xEthWritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
void sam7xEthInitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
void sam7xEthDisableIrq(NetInterface *interface)
Disable interrupts.
error_t sam7xEthReceivePacket(NetInterface *interface)
Receive a packet.
void emacIrqWrapper(void)
void sam7xEthEnableIrq(NetInterface *interface)
Enable interrupts.
uint16_t sam7xEthReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
void sam7xEthIrqHandler(void)
SAM7X Ethernet MAC interrupt service routine.
error_t sam7xEthUpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
error_t sam7xEthInit(NetInterface *interface)
SAM7X Ethernet MAC initialization.
error_t sam7xEthUpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.
const NicDriver sam7xEthDriver
SAM7X Ethernet MAC driver.
error_t sam7xEthSendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
void sam7xEthTick(NetInterface *interface)
SAM7X Ethernet MAC timer handler.
void sam7xEthEventHandler(NetInterface *interface)
SAM7X Ethernet MAC event 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.