pic32cx_eth_driver.h
Go to the documentation of this file.
1 /**
2  * @file pic32cx_eth_driver.h
3  * @brief PIC32CX SG41/SG60/SG61 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 _PIC32CX_ETH_DRIVER_H
32 #define _PIC32CX_ETH_DRIVER_H
33 
34 //Number of TX buffers
35 #ifndef PIC32CX_ETH_TX_BUFFER_COUNT
36  #define PIC32CX_ETH_TX_BUFFER_COUNT 3
37 #elif (PIC32CX_ETH_TX_BUFFER_COUNT < 1)
38  #error PIC32CX_ETH_TX_BUFFER_COUNT parameter is not valid
39 #endif
40 
41 //TX buffer size
42 #ifndef PIC32CX_ETH_TX_BUFFER_SIZE
43  #define PIC32CX_ETH_TX_BUFFER_SIZE 1536
44 #elif (PIC32CX_ETH_TX_BUFFER_SIZE != 1536)
45  #error PIC32CX_ETH_TX_BUFFER_SIZE parameter is not valid
46 #endif
47 
48 //Number of RX buffers
49 #ifndef PIC32CX_ETH_RX_BUFFER_COUNT
50  #define PIC32CX_ETH_RX_BUFFER_COUNT 72
51 #elif (PIC32CX_ETH_RX_BUFFER_COUNT < 12)
52  #error PIC32CX_ETH_RX_BUFFER_COUNT parameter is not valid
53 #endif
54 
55 //RX buffer size
56 #ifndef PIC32CX_ETH_RX_BUFFER_SIZE
57  #define PIC32CX_ETH_RX_BUFFER_SIZE 128
58 #elif (PIC32CX_ETH_RX_BUFFER_SIZE != 128)
59  #error PIC32CX_ETH_RX_BUFFER_SIZE parameter is not valid
60 #endif
61 
62 //Interrupt priority grouping
63 #ifndef PIC32CX_ETH_IRQ_PRIORITY_GROUPING
64  #define PIC32CX_ETH_IRQ_PRIORITY_GROUPING 4
65 #elif (PIC32CX_ETH_IRQ_PRIORITY_GROUPING < 0)
66  #error PIC32CX_ETH_IRQ_PRIORITY_GROUPING parameter is not valid
67 #endif
68 
69 //Ethernet interrupt group priority
70 #ifndef PIC32CX_ETH_IRQ_GROUP_PRIORITY
71  #define PIC32CX_ETH_IRQ_GROUP_PRIORITY 6
72 #elif (PIC32CX_ETH_IRQ_GROUP_PRIORITY < 0)
73  #error PIC32CX_ETH_IRQ_GROUP_PRIORITY parameter is not valid
74 #endif
75 
76 //Ethernet interrupt subpriority
77 #ifndef PIC32CX_ETH_IRQ_SUB_PRIORITY
78  #define PIC32CX_ETH_IRQ_SUB_PRIORITY 0
79 #elif (PIC32CX_ETH_IRQ_SUB_PRIORITY < 0)
80  #error PIC32CX_ETH_IRQ_SUB_PRIORITY parameter is not valid
81 #endif
82 
83 //TX buffer descriptor flags
84 #define GMAC_TX_USED 0x80000000
85 #define GMAC_TX_WRAP 0x40000000
86 #define GMAC_TX_RLE_ERROR 0x20000000
87 #define GMAC_TX_UNDERRUN_ERROR 0x10000000
88 #define GMAC_TX_AHB_ERROR 0x08000000
89 #define GMAC_TX_LATE_COL_ERROR 0x04000000
90 #define GMAC_TX_CHECKSUM_ERROR 0x00700000
91 #define GMAC_TX_NO_CRC 0x00010000
92 #define GMAC_TX_LAST 0x00008000
93 #define GMAC_TX_LENGTH 0x00003FFF
94 
95 //RX buffer descriptor flags
96 #define GMAC_RX_ADDRESS 0xFFFFFFFC
97 #define GMAC_RX_WRAP 0x00000002
98 #define GMAC_RX_OWNERSHIP 0x00000001
99 #define GMAC_RX_BROADCAST 0x80000000
100 #define GMAC_RX_MULTICAST_HASH 0x40000000
101 #define GMAC_RX_UNICAST_HASH 0x20000000
102 #define GMAC_RX_SAR 0x08000000
103 #define GMAC_RX_SAR_MASK 0x06000000
104 #define GMAC_RX_TYPE_ID 0x01000000
105 #define GMAC_RX_SNAP 0x01000000
106 #define GMAC_RX_TYPE_ID_MASK 0x00C00000
107 #define GMAC_RX_CHECKSUM_VALID 0x00C00000
108 #define GMAC_RX_VLAN_TAG 0x00200000
109 #define GMAC_RX_PRIORITY_TAG 0x00100000
110 #define GMAC_RX_VLAN_PRIORITY 0x000E0000
111 #define GMAC_RX_CFI 0x00010000
112 #define GMAC_RX_EOF 0x00008000
113 #define GMAC_RX_SOF 0x00004000
114 #define GMAC_RX_LENGTH_MSB 0x00002000
115 #define GMAC_RX_BAD_FCS 0x00002000
116 #define GMAC_RX_LENGTH 0x00001FFF
117 
118 //C++ guard
119 #ifdef __cplusplus
120 extern "C" {
121 #endif
122 
123 
124 /**
125  * @brief Transmit buffer descriptor
126  **/
127 
128 typedef struct
129 {
130  uint32_t address;
131  uint32_t status;
133 
134 
135 /**
136  * @brief Receive buffer descriptor
137  **/
138 
139 typedef struct
140 {
141  uint32_t address;
142  uint32_t status;
144 
145 
146 //PIC32CX Ethernet MAC driver
147 extern const NicDriver pic32cxEthDriver;
148 
149 //PIC32CX Ethernet MAC related functions
151 void pic32cxEthInitGpio(NetInterface *interface);
152 void pic32cxEthInitBufferDesc(NetInterface *interface);
153 
154 void pic32cxEthTick(NetInterface *interface);
155 
156 void pic32cxEthEnableIrq(NetInterface *interface);
157 void pic32cxEthDisableIrq(NetInterface *interface);
158 void pic32cxEthEventHandler(NetInterface *interface);
159 
161  const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary);
162 
164 
167 
168 void pic32cxEthWritePhyReg(uint8_t opcode, uint8_t phyAddr,
169  uint8_t regAddr, uint16_t data);
170 
171 uint16_t pic32cxEthReadPhyReg(uint8_t opcode, uint8_t phyAddr,
172  uint8_t regAddr);
173 
174 //C++ guard
175 #ifdef __cplusplus
176 }
177 #endif
178 
179 #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 pic32cxEthInitGpio(NetInterface *interface)
GPIO configuration.
void pic32cxEthInitBufferDesc(NetInterface *interface)
Initialize buffer descriptors.
error_t pic32cxEthUpdateMacAddrFilter(NetInterface *interface)
Configure MAC address filtering.
void pic32cxEthTick(NetInterface *interface)
PIC32CX Ethernet MAC timer handler.
error_t pic32cxEthUpdateMacConfig(NetInterface *interface)
Adjust MAC configuration parameters for proper operation.
void pic32cxEthEventHandler(NetInterface *interface)
PIC32CX Ethernet MAC event handler.
void pic32cxEthDisableIrq(NetInterface *interface)
Disable interrupts.
uint16_t pic32cxEthReadPhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr)
Read PHY register.
error_t pic32cxEthInit(NetInterface *interface)
PIC32CX Ethernet MAC initialization.
void pic32cxEthEnableIrq(NetInterface *interface)
Enable interrupts.
const NicDriver pic32cxEthDriver
PIC32CX Ethernet MAC driver.
error_t pic32cxEthReceivePacket(NetInterface *interface)
Receive a packet.
void pic32cxEthWritePhyReg(uint8_t opcode, uint8_t phyAddr, uint8_t regAddr, uint16_t data)
Write PHY register.
error_t pic32cxEthSendPacket(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
NIC driver.
Definition: nic.h:283
Receive buffer descriptor.
Transmit buffer descriptor.