mikroSDK Reference Manual
pic32cz_eth_driver.h
Go to the documentation of this file.
1
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
139extern "C" {
140#endif
141
142
147typedef struct
148{
149 uint32_t address;
150 uint32_t status;
152
153
158typedef struct
159{
160 uint32_t address;
161 uint32_t status;
163
164
165//PIC32CZ Ethernet MAC driver
166extern const NicDriver pic32czEthDriver;
167
168//PIC32CZ Ethernet MAC related functions
169error_t pic32czEthInit(NetInterface *interface);
170void pic32czEthInitGpio(NetInterface *interface);
171void pic32czEthInitBufferDesc(NetInterface *interface);
172
173void pic32czEthTick(NetInterface *interface);
174
175void pic32czEthEnableIrq(NetInterface *interface);
176void pic32czEthDisableIrq(NetInterface *interface);
177void pic32czEthEventHandler(NetInterface *interface);
178
179error_t pic32czEthSendPacket(NetInterface *interface,
180 const NetBuffer *buffer, size_t offset, NetTxAncillary *ancillary);
181
182error_t pic32czEthReceivePacket(NetInterface *interface);
183
184error_t pic32czEthUpdateMacAddrFilter(NetInterface *interface);
185error_t pic32czEthUpdateMacConfig(NetInterface *interface);
186
187void pic32czEthWritePhyReg(uint8_t opcode, uint8_t phyAddr,
188 uint8_t regAddr, uint16_t data);
189
190uint16_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
error_t
Error codes.
Definition error.h:43
Structure describing a buffer that spans multiple chunks.
Definition net_mem.h:89
NIC driver.
Definition nic.h:283
Receive buffer descriptor.
Definition pic32cz_eth_driver.h:159
Transmit buffer descriptor.
Definition pic32cz_eth_driver.h:148