pic32cz_eth_driver.h
Go to the documentation of this file.
1 /**
2  * @file pic32cz_eth_driver.h
3  * @brief PIC32CZ CA80/CA90 Gigabit 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 _PIC32CZ_ETH_DRIVER_H
32 #define _PIC32CZ_ETH_DRIVER_H
33 
34 //Number of TX buffers
35 #ifndef PIC32CZ_ETH_TX_BUFFER_COUNT
36  #define PIC32CZ_ETH_TX_BUFFER_COUNT 8
37 #elif (PIC32CZ_ETH_TX_BUFFER_COUNT < 1)
38  #error PIC32CZ_ETH_TX_BUFFER_COUNT parameter is not valid
39 #endif
40 
41 //TX buffer size
42 #ifndef PIC32CZ_ETH_TX_BUFFER_SIZE
43  #define PIC32CZ_ETH_TX_BUFFER_SIZE 1536
44 #elif (PIC32CZ_ETH_TX_BUFFER_SIZE != 1536)
45  #error PIC32CZ_ETH_TX_BUFFER_SIZE parameter is not valid
46 #endif
47 
48 //Number of RX buffers
49 #ifndef PIC32CZ_ETH_RX_BUFFER_COUNT
50  #define PIC32CZ_ETH_RX_BUFFER_COUNT 96
51 #elif (PIC32CZ_ETH_RX_BUFFER_COUNT < 12)
52  #error PIC32CZ_ETH_RX_BUFFER_COUNT parameter is not valid
53 #endif
54 
55 //RX buffer size
56 #ifndef PIC32CZ_ETH_RX_BUFFER_SIZE
57  #define PIC32CZ_ETH_RX_BUFFER_SIZE 128
58 #elif (PIC32CZ_ETH_RX_BUFFER_SIZE != 128)
59  #error PIC32CZ_ETH_RX_BUFFER_SIZE parameter is not valid
60 #endif
61 
62 //Number of dummy buffers
63 #ifndef PIC32CZ_ETH_DUMMY_BUFFER_COUNT
64  #define PIC32CZ_ETH_DUMMY_BUFFER_COUNT 2
65 #elif (PIC32CZ_ETH_DUMMY_BUFFER_COUNT < 1)
66  #error PIC32CZ_ETH_DUMMY_BUFFER_COUNT parameter is not valid
67 #endif
68 
69 //Dummy buffer size
70 #ifndef PIC32CZ_ETH_DUMMY_BUFFER_SIZE
71  #define PIC32CZ_ETH_DUMMY_BUFFER_SIZE 128
72 #elif (PIC32CZ_ETH_DUMMY_BUFFER_SIZE != 128)
73  #error PIC32CZ_ETH_DUMMY_BUFFER_SIZE parameter is not valid
74 #endif
75 
76 //Interrupt priority grouping
77 #ifndef PIC32CZ_ETH_IRQ_PRIORITY_GROUPING
78  #define PIC32CZ_ETH_IRQ_PRIORITY_GROUPING 4
79 #elif (PIC32CZ_ETH_IRQ_PRIORITY_GROUPING < 0)
80  #error PIC32CZ_ETH_IRQ_PRIORITY_GROUPING parameter is not valid
81 #endif
82 
83 //Ethernet interrupt group priority
84 #ifndef PIC32CZ_ETH_IRQ_GROUP_PRIORITY
85  #define PIC32CZ_ETH_IRQ_GROUP_PRIORITY 6
86 #elif (PIC32CZ_ETH_IRQ_GROUP_PRIORITY < 0)
87  #error PIC32CZ_ETH_IRQ_GROUP_PRIORITY parameter is not valid
88 #endif
89 
90 //Ethernet interrupt subpriority
91 #ifndef PIC32CZ_ETH_IRQ_SUB_PRIORITY
92  #define PIC32CZ_ETH_IRQ_SUB_PRIORITY 0
93 #elif (PIC32CZ_ETH_IRQ_SUB_PRIORITY < 0)
94  #error PIC32CZ_ETH_IRQ_SUB_PRIORITY parameter is not valid
95 #endif
96 
97 //Name of the section where to place DMA buffers
98 #ifndef PIC32CZ_ETH_RAM_SECTION
99  #define PIC32CZ_ETH_RAM_SECTION ".ram_no_cache"
100 #endif
101 
102 //TX buffer descriptor flags
103 #define ETH_TX_USED 0x80000000
104 #define ETH_TX_WRAP 0x40000000
105 #define ETH_TX_RLE_ERROR 0x20000000
106 #define ETH_TX_UNDERRUN_ERROR 0x10000000
107 #define ETH_TX_AHB_ERROR 0x08000000
108 #define ETH_TX_LATE_COL_ERROR 0x04000000
109 #define ETH_TX_CHECKSUM_ERROR 0x00700000
110 #define ETH_TX_NO_CRC 0x00010000
111 #define ETH_TX_LAST 0x00008000
112 #define ETH_TX_LENGTH 0x00003FFF
113 
114 //RX buffer descriptor flags
115 #define ETH_RX_ADDRESS 0xFFFFFFFC
116 #define ETH_RX_WRAP 0x00000002
117 #define ETH_RX_OWNERSHIP 0x00000001
118 #define ETH_RX_BROADCAST 0x80000000
119 #define ETH_RX_MULTICAST_HASH 0x40000000
120 #define ETH_RX_UNICAST_HASH 0x20000000
121 #define ETH_RX_SAR 0x08000000
122 #define ETH_RX_SAR_MASK 0x06000000
123 #define ETH_RX_TYPE_ID 0x01000000
124 #define ETH_RX_SNAP 0x01000000
125 #define ETH_RX_TYPE_ID_MASK 0x00C00000
126 #define ETH_RX_CHECKSUM_VALID 0x00C00000
127 #define ETH_RX_VLAN_TAG 0x00200000
128 #define ETH_RX_PRIORITY_TAG 0x00100000
129 #define ETH_RX_VLAN_PRIORITY 0x000E0000
130 #define ETH_RX_CFI 0x00010000
131 #define ETH_RX_EOF 0x00008000
132 #define ETH_RX_SOF 0x00004000
133 #define ETH_RX_LENGTH_MSB 0x00002000
134 #define ETH_RX_BAD_FCS 0x00002000
135 #define ETH_RX_LENGTH 0x00001FFF
136 
137 //C++ guard
138 #ifdef __cplusplus
139 extern "C" {
140 #endif
141 
142 
143 /**
144  * @brief Transmit buffer descriptor
145  **/
146 
147 typedef struct
148 {
149  uint32_t address;
150  uint32_t status;
152 
153 
154 /**
155  * @brief Receive buffer descriptor
156  **/
157 
158 typedef struct
159 {
160  uint32_t address;
161  uint32_t status;
163 
164 
165 //PIC32CZ Ethernet MAC driver
166 extern const NicDriver pic32czEthDriver;
167 
168 //PIC32CZ Ethernet MAC related functions
170 void pic32czEthInitGpio(NetInterface *interface);
171 void pic32czEthInitBufferDesc(NetInterface *interface);
172 
173 void pic32czEthTick(NetInterface *interface);
174 
175 void pic32czEthEnableIrq(NetInterface *interface);
176 void pic32czEthDisableIrq(NetInterface *interface);
177 void pic32czEthEventHandler(NetInterface *interface);
178 
180  const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary);
181 
183 
186 
187 void pic32czEthWritePhyReg(uint8_t opcode, uint8_t phyAddr,
188  uint8_t regAddr, uint16_t data);
189 
190 uint16_t pic32czEthReadPhyReg(uint8_t opcode, uint8_t phyAddr,
191  uint8_t regAddr);
192 
193 //C++ guard
194 #ifdef __cplusplus
195 }
196 #endif
197 
198 #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
error_t pic32czEthSendPacket(NetInterface *interface, const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary)
Send a packet.
void pic32czEthDisableIrq(NetInterface *interface)
Disable interrupts.
void pic32czEthEventHandler(NetInterface *interface)
PIC32CZ Ethernet MAC event handler.
const NicDriver pic32czEthDriver
PIC32CZ Ethernet MAC driver.
void pic32czEthWritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
void pic32czEthEnableIrq(NetInterface *interface)
Enable interrupts.
error_t pic32czEthUpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
uint16_t pic32czEthReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
error_t pic32czEthUpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.
error_t pic32czEthInit(NetInterface *interface)
PIC32CZ Ethernet MAC initialization.
void pic32czEthTick(NetInterface *interface)
PIC32CZ Ethernet MAC timer handler.
void pic32czEthInitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
void pic32czEthInitGpio(NetInterface *interface)
GPIO configuration.
error_t pic32czEthReceivePacket(NetInterface *interface)
Receive a packet.
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.