sam9263_eth_driver.h
Go to the documentation of this file.
1 /**
2  * @file sam9263_eth_driver.h
3  * @brief AT91SAM9263 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 _SAM9263_ETH_DRIVER_H
32 #define _SAM9263_ETH_DRIVER_H
33 
34 //Dependencies
35 #include "core/nic.h"
36 
37 //Number of TX buffers
38 #ifndef SAM9263_ETH_TX_BUFFER_COUNT
39  #define SAM9263_ETH_TX_BUFFER_COUNT 3
40 #elif (SAM9263_ETH_TX_BUFFER_COUNT < 1)
41  #error SAM9263_ETH_TX_BUFFER_COUNT parameter is not valid
42 #endif
43 
44 //TX buffer size
45 #ifndef SAM9263_ETH_TX_BUFFER_SIZE
46  #define SAM9263_ETH_TX_BUFFER_SIZE 1536
47 #elif (SAM9263_ETH_TX_BUFFER_SIZE != 1536)
48  #error SAM9263_ETH_TX_BUFFER_SIZE parameter is not valid
49 #endif
50 
51 //Number of RX buffers
52 #ifndef SAM9263_ETH_RX_BUFFER_COUNT
53  #define SAM9263_ETH_RX_BUFFER_COUNT 72
54 #elif (SAM9263_ETH_RX_BUFFER_COUNT < 12)
55  #error SAM9263_ETH_RX_BUFFER_COUNT parameter is not valid
56 #endif
57 
58 //RX buffer size
59 #ifndef SAM9263_ETH_RX_BUFFER_SIZE
60  #define SAM9263_ETH_RX_BUFFER_SIZE 128
61 #elif (SAM9263_ETH_RX_BUFFER_SIZE != 128)
62  #error SAM9263_ETH_RX_BUFFER_SIZE parameter is not valid
63 #endif
64 
65 //EMAC peripheral base address
66 #define AT91C_BASE_EMAC AT91C_BASE_MACB
67 
68 //PHY maintenance register (EMAC_MAN)
69 #define AT91C_EMAC_SOF_01 (1 << 30)
70 #define AT91C_EMAC_RW_01 (1 << 28)
71 #define AT91C_EMAC_RW_10 (2 << 28)
72 #define AT91C_EMAC_CODE_10 (2 << 16)
73 
74 //TX buffer descriptor flags
75 #define AT91C_EMAC_TX_USED 0x80000000
76 #define AT91C_EMAC_TX_WRAP 0x40000000
77 #define AT91C_EMAC_TX_ERROR 0x20000000
78 #define AT91C_EMAC_TX_UNDERRUN 0x10000000
79 #define AT91C_EMAC_TX_EXHAUSTED 0x08000000
80 #define AT91C_EMAC_TX_NO_CRC 0x00010000
81 #define AT91C_EMAC_TX_LAST 0x00008000
82 #define AT91C_EMAC_TX_LENGTH 0x000007FF
83 
84 //RX buffer descriptor flags
85 #define AT91C_EMAC_RX_ADDRESS 0xFFFFFFFC
86 #define AT91C_EMAC_RX_WRAP 0x00000002
87 #define AT91C_EMAC_RX_OWNERSHIP 0x00000001
88 #define AT91C_EMAC_RX_BROADCAST 0x80000000
89 #define AT91C_EMAC_RX_MULTICAST_HASH 0x40000000
90 #define AT91C_EMAC_RX_UNICAST_HASH 0x20000000
91 #define AT91C_EMAC_RX_EXT_ADDR 0x10000000
92 #define AT91C_EMAC_RX_SAR1 0x04000000
93 #define AT91C_EMAC_RX_SAR2 0x02000000
94 #define AT91C_EMAC_RX_SAR3 0x01000000
95 #define AT91C_EMAC_RX_SAR4 0x00800000
96 #define AT91C_EMAC_RX_TYPE_ID 0x00400000
97 #define AT91C_EMAC_RX_VLAN_TAG 0x00200000
98 #define AT91C_EMAC_RX_PRIORITY_TAG 0x00100000
99 #define AT91C_EMAC_RX_VLAN_PRIORITY 0x000E0000
100 #define AT91C_EMAC_RX_CFI 0x00010000
101 #define AT91C_EMAC_RX_EOF 0x00008000
102 #define AT91C_EMAC_RX_SOF 0x00004000
103 #define AT91C_EMAC_RX_OFFSET 0x00003000
104 #define AT91C_EMAC_RX_LENGTH 0x00000FFF
105 
106 //C++ guard
107 #ifdef __cplusplus
108 extern "C" {
109 #endif
110 
111 
112 /**
113  * @brief Transmit buffer descriptor
114  **/
115 
116 typedef struct
117 {
118  uint32_t address;
119  uint32_t status;
121 
122 
123 /**
124  * @brief Receive buffer descriptor
125  **/
126 
127 typedef struct
128 {
129  uint32_t address;
130  uint32_t status;
132 
133 
134 //SAM9263 Ethernet MAC driver
135 extern const NicDriver sam9263EthDriver;
136 
137 //SAM9263 Ethernet MAC related functions
139 void sam9263EthInitGpio(NetInterface *interface);
140 void sam9263EthInitBufferDesc(NetInterface *interface);
141 
142 void sam9263EthTick(NetInterface *interface);
143 
144 void sam9263EthEnableIrq(NetInterface *interface);
145 void sam9263EthDisableIrq(NetInterface *interface);
146 void sam9263EthIrqHandler(void);
147 void sam9263EthEventHandler(NetInterface *interface);
148 
150  const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary);
151 
153 
156 
157 void sam9263EthWritePhyReg(uint8_t opcode, uint8_t phyAddr,
158  uint8_t regAddr, uint16_t data);
159 
160 uint16_t sam9263EthReadPhyReg(uint8_t opcode, uint8_t phyAddr,
161  uint8_t regAddr);
162 
163 //Wrapper for the interrupt service routine
164 void emacIrqWrapper(void);
165 
166 //C++ guard
167 #ifdef __cplusplus
168 }
169 #endif
170 
171 #endif
uint8_t opcode
Definition: dns_common.h:191
void sam9263EthInitGpio(NetInterface *interface)
GPIO configuration.
Structure describing a buffer that spans multiple chunks.
Definition: net_mem.h:89
uint8_t data[]
Definition: ethernet.h:224
void sam9263EthWritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
error_t sam9263EthSendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
error_t
Error codes.
Definition: error.h:43
void sam9263EthEventHandler(NetInterface *interface)
SAM9263 Ethernet MAC event handler.
uint16_t sam9263EthReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
#define NetInterface
Definition: net.h:36
Transmit buffer descriptor.
#define NetTxAncillary
Definition: net_misc.h:36
Receive buffer descriptor.
void sam9263EthInitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
void sam9263EthTick(NetInterface *interface)
SAM9263 Ethernet MAC timer handler.
uint16_t regAddr
void sam9263EthEnableIrq(NetInterface *interface)
Enable interrupts.
void emacIrqWrapper(void)
Network interface controller abstraction layer.
void sam9263EthDisableIrq(NetInterface *interface)
Disable interrupts.
const NicDriver sam9263EthDriver
SAM9263 Ethernet MAC driver.
error_t sam9263EthUpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.
void sam9263EthIrqHandler(void)
SAM9263 Ethernet MAC interrupt service routine.
error_t sam9263EthReceivePacket(NetInterface *interface)
Receive a packet.
error_t sam9263EthUpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
error_t sam9263EthInit(NetInterface *interface)
SAM9263 Ethernet MAC initialization.
NIC driver.
Definition: nic.h:286