sam9x6_eth1_driver.h
Go to the documentation of this file.
1 /**
2  * @file sam9x6_eth1_driver.h
3  * @brief SAM9X60 Ethernet MAC driver (EMAC0 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 _SAM9X6_ETH1_DRIVER_H
32 #define _SAM9X6_ETH1_DRIVER_H
33 
34 //Dependencies
35 #include "core/nic.h"
36 
37 //Number of TX buffers
38 #ifndef SAM9X6_ETH1_TX_BUFFER_COUNT
39  #define SAM9X6_ETH1_TX_BUFFER_COUNT 8
40 #elif (SAM9X6_ETH1_TX_BUFFER_COUNT < 1)
41  #error SAM9X6_ETH1_TX_BUFFER_COUNT parameter is not valid
42 #endif
43 
44 //TX buffer size
45 #ifndef SAM9X6_ETH1_TX_BUFFER_SIZE
46  #define SAM9X6_ETH1_TX_BUFFER_SIZE 1536
47 #elif (SAM9X6_ETH1_TX_BUFFER_SIZE != 1536)
48  #error SAM9X6_ETH1_TX_BUFFER_SIZE parameter is not valid
49 #endif
50 
51 //Number of RX buffers
52 #ifndef SAM9X6_ETH1_RX_BUFFER_COUNT
53  #define SAM9X6_ETH1_RX_BUFFER_COUNT 96
54 #elif (SAM9X6_ETH1_RX_BUFFER_COUNT < 12)
55  #error SAM9X6_ETH1_RX_BUFFER_COUNT parameter is not valid
56 #endif
57 
58 //RX buffer size
59 #ifndef SAM9X6_ETH1_RX_BUFFER_SIZE
60  #define SAM9X6_ETH1_RX_BUFFER_SIZE 128
61 #elif (SAM9X6_ETH1_RX_BUFFER_SIZE != 128)
62  #error SAM9X6_ETH1_RX_BUFFER_SIZE parameter is not valid
63 #endif
64 
65 //Ethernet interrupt priority
66 #ifndef SAM9X6_ETH1_IRQ_PRIORITY
67  #define SAM9X6_ETH1_IRQ_PRIORITY 0
68 #elif (SAM9X6_ETH1_IRQ_PRIORITY < 0)
69  #error SAM9X6_ETH1_IRQ_PRIORITY parameter is not valid
70 #endif
71 
72 //Name of the section where to place DMA buffers
73 #ifndef SAM9X6_ETH1_RAM_SECTION
74  #define SAM9X6_ETH1_RAM_SECTION ".region_nocache"
75 #endif
76 
77 //TX buffer descriptor flags
78 #define EMAC_TX_USED 0x80000000
79 #define EMAC_TX_WRAP 0x40000000
80 #define EMAC_TX_ERROR 0x20000000
81 #define EMAC_TX_UNDERRUN 0x10000000
82 #define EMAC_TX_EXHAUSTED 0x08000000
83 #define EMAC_TX_NO_CRC 0x00010000
84 #define EMAC_TX_LAST 0x00008000
85 #define EMAC_TX_LENGTH 0x000007FF
86 
87 //RX buffer descriptor flags
88 #define EMAC_RX_ADDRESS 0xFFFFFFFC
89 #define EMAC_RX_WRAP 0x00000002
90 #define EMAC_RX_OWNERSHIP 0x00000001
91 #define EMAC_RX_BROADCAST 0x80000000
92 #define EMAC_RX_MULTICAST_HASH 0x40000000
93 #define EMAC_RX_UNICAST_HASH 0x20000000
94 #define EMAC_RX_EXT_ADDR 0x10000000
95 #define EMAC_RX_SAR1 0x04000000
96 #define EMAC_RX_SAR2 0x02000000
97 #define EMAC_RX_SAR3 0x01000000
98 #define EMAC_RX_SAR4 0x00800000
99 #define EMAC_RX_TYPE_ID 0x00400000
100 #define EMAC_RX_VLAN_TAG 0x00200000
101 #define EMAC_RX_PRIORITY_TAG 0x00100000
102 #define EMAC_RX_VLAN_PRIORITY 0x000E0000
103 #define EMAC_RX_CFI 0x00010000
104 #define EMAC_RX_EOF 0x00008000
105 #define EMAC_RX_SOF 0x00004000
106 #define EMAC_RX_OFFSET 0x00003000
107 #define EMAC_RX_LENGTH 0x00000FFF
108 
109 //C++ guard
110 #ifdef __cplusplus
111 extern "C" {
112 #endif
113 
114 
115 /**
116  * @brief Transmit buffer descriptor
117  **/
118 
119 typedef struct
120 {
121  uint32_t address;
122  uint32_t status;
124 
125 
126 /**
127  * @brief Receive buffer descriptor
128  **/
129 
130 typedef struct
131 {
132  uint32_t address;
133  uint32_t status;
135 
136 
137 //SAM9X6 Ethernet MAC driver (EMAC0 instance)
138 extern const NicDriver sam9x6Eth1Driver;
139 
140 //SAM9X6 Ethernet MAC related functions
142 void sam9x6Eth1InitGpio(NetInterface *interface);
143 void sam9x6Eth1InitBufferDesc(NetInterface *interface);
144 
145 void sam9x6Eth1Tick(NetInterface *interface);
146 
147 void sam9x6Eth1EnableIrq(NetInterface *interface);
148 void sam9x6Eth1DisableIrq(NetInterface *interface);
149 void sam9x6Eth1IrqHandler(void);
150 void sam9x6Eth1EventHandler(NetInterface *interface);
151 
153  const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary);
154 
156 
159 
160 void sam9x6Eth1WritePhyReg(uint8_t opcode, uint8_t phyAddr,
161  uint8_t regAddr, uint16_t data);
162 
163 uint16_t sam9x6Eth1ReadPhyReg(uint8_t opcode, uint8_t phyAddr,
164  uint8_t regAddr);
165 
166 //Wrapper for the interrupt service routine
167 void emacIrqWrapper(void);
168 
169 //C++ guard
170 #ifdef __cplusplus
171 }
172 #endif
173 
174 #endif
uint8_t opcode
Definition: dns_common.h:191
error_t sam9x6Eth1Init(NetInterface *interface)
SAM9X6 Ethernet MAC initialization.
void sam9x6Eth1IrqHandler(void)
SAM9X6 Ethernet MAC interrupt service routine.
Structure describing a buffer that spans multiple chunks.
Definition: net_mem.h:89
uint8_t data[]
Definition: ethernet.h:224
error_t sam9x6Eth1UpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.
Transmit buffer descriptor.
Receive buffer descriptor.
void sam9x6Eth1EnableIrq(NetInterface *interface)
Enable interrupts.
void sam9x6Eth1DisableIrq(NetInterface *interface)
Disable interrupts.
void sam9x6Eth1InitGpio(NetInterface *interface)
GPIO configuration.
void sam9x6Eth1InitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
error_t
Error codes.
Definition: error.h:43
void emacIrqWrapper(void)
#define NetInterface
Definition: net.h:36
#define NetTxAncillary
Definition: net_misc.h:36
void sam9x6Eth1EventHandler(NetInterface *interface)
SAM9X6 Ethernet MAC event handler.
uint16_t sam9x6Eth1ReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
error_t sam9x6Eth1SendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
error_t sam9x6Eth1UpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
void sam9x6Eth1WritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
error_t sam9x6Eth1ReceivePacket(NetInterface *interface)
Receive a packet.
uint16_t regAddr
Network interface controller abstraction layer.
void sam9x6Eth1Tick(NetInterface *interface)
SAM9X6 Ethernet MAC timer handler.
NIC driver.
Definition: nic.h:286
const NicDriver sam9x6Eth1Driver
SAM9X6 Ethernet MAC driver (EMAC0 instance)