Select one of the symbols to view example projects that use it.
 
Outline
#include <stdbool.h>
#include "soc/soc_caps.h"
#include "esp_eth_com.h"
#include "sdkconfig.h"
esp_eth_mac_s
esp_eth_mac_s
eth_mac_config_t
#define ETH_MAC_FLAG_WORK_WITH_CACHE_DISABLE
#define ETH_MAC_FLAG_PIN_TO_CORE
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_eth/include/esp_eth_mac.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2019-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include <stdbool.h> #include "soc/soc_caps.h" #include "esp_eth_com.h" #include "sdkconfig.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Ethernet MAC * *//* ... */ typedef struct esp_eth_mac_s esp_eth_mac_t; /** * @brief Ethernet MAC * *//* ... */ struct esp_eth_mac_s { /** * @brief Set mediator for Ethernet MAC * * @param[in] mac: Ethernet MAC instance * @param[in] eth: Ethernet mediator * * @return * - ESP_OK: set mediator for Ethernet MAC successfully * - ESP_ERR_INVALID_ARG: set mediator for Ethernet MAC failed because of invalid argument * *//* ... */ esp_err_t (*set_mediator)(esp_eth_mac_t *mac, esp_eth_mediator_t *eth); /** * @brief Initialize Ethernet MAC * * @param[in] mac: Ethernet MAC instance * * @return * - ESP_OK: initialize Ethernet MAC successfully * - ESP_ERR_TIMEOUT: initialize Ethernet MAC failed because of timeout * - ESP_FAIL: initialize Ethernet MAC failed because some other error occurred * *//* ... */ esp_err_t (*init)(esp_eth_mac_t *mac); /** * @brief Deinitialize Ethernet MAC * * @param[in] mac: Ethernet MAC instance * * @return * - ESP_OK: deinitialize Ethernet MAC successfully * - ESP_FAIL: deinitialize Ethernet MAC failed because some error occurred * *//* ... */ esp_err_t (*deinit)(esp_eth_mac_t *mac); /** * @brief Start Ethernet MAC * * @param[in] mac: Ethernet MAC instance * * @return * - ESP_OK: start Ethernet MAC successfully * - ESP_FAIL: start Ethernet MAC failed because some other error occurred * *//* ... */ esp_err_t (*start)(esp_eth_mac_t *mac); /** * @brief Stop Ethernet MAC * * @param[in] mac: Ethernet MAC instance * * @return * - ESP_OK: stop Ethernet MAC successfully * - ESP_FAIL: stop Ethernet MAC failed because some error occurred * *//* ... */ esp_err_t (*stop)(esp_eth_mac_t *mac); /** * @brief Transmit packet from Ethernet MAC * * @param[in] mac: Ethernet MAC instance * @param[in] buf: packet buffer to transmit * @param[in] length: length of packet * * @return * - ESP_OK: transmit packet successfully * - ESP_ERR_INVALID_SIZE: number of actually sent bytes differs to expected * - ESP_FAIL: transmit packet failed because some other error occurred * * @note Returned error codes may differ for each specific MAC chip. * *//* ... */ esp_err_t (*transmit)(esp_eth_mac_t *mac, uint8_t *buf, uint32_t length); /** * @brief Transmit packet from Ethernet MAC constructed with special parameters at Layer2. * * @param[in] mac: Ethernet MAC instance * @param[in] argc: number variable arguments * @param[in] args: variable arguments * * @note Typical intended use case is to make possible to construct a frame from multiple higher layer * buffers without a need of buffer reallocations. However, other use cases are not limited. * * @return * - ESP_OK: transmit packet successfully * - ESP_ERR_INVALID_SIZE: number of actually sent bytes differs to expected * - ESP_FAIL: transmit packet failed because some other error occurred * * @note Returned error codes may differ for each specific MAC chip. * *//* ... */ esp_err_t (*transmit_vargs)(esp_eth_mac_t *mac, uint32_t argc, va_list args); /** * @brief Receive packet from Ethernet MAC * * @param[in] mac: Ethernet MAC instance * @param[out] buf: packet buffer which will preserve the received frame * @param[out] length: length of the received packet * * @note Memory of buf is allocated in the Layer2, make sure it get free after process. * @note Before this function got invoked, the value of "length" should set by user, equals the size of buffer. * After the function returned, the value of "length" means the real length of received data. * * @return * - ESP_OK: receive packet successfully * - ESP_ERR_INVALID_ARG: receive packet failed because of invalid argument * - ESP_ERR_INVALID_SIZE: input buffer size is not enough to hold the incoming data. * in this case, value of returned "length" indicates the real size of incoming data. * - ESP_FAIL: receive packet failed because some other error occurred * *//* ... */ esp_err_t (*receive)(esp_eth_mac_t *mac, uint8_t *buf, uint32_t *length); /** * @brief Read PHY register * * @param[in] mac: Ethernet MAC instance * @param[in] phy_addr: PHY chip address (0~31) * @param[in] phy_reg: PHY register index code * @param[out] reg_value: PHY register value * * @return * - ESP_OK: read PHY register successfully * - ESP_ERR_INVALID_ARG: read PHY register failed because of invalid argument * - ESP_ERR_INVALID_STATE: read PHY register failed because of wrong state of MAC * - ESP_ERR_TIMEOUT: read PHY register failed because of timeout * - ESP_FAIL: read PHY register failed because some other error occurred * *//* ... */ esp_err_t (*read_phy_reg)(esp_eth_mac_t *mac, uint32_t phy_addr, uint32_t phy_reg, uint32_t *reg_value); /** * @brief Write PHY register * * @param[in] mac: Ethernet MAC instance * @param[in] phy_addr: PHY chip address (0~31) * @param[in] phy_reg: PHY register index code * @param[in] reg_value: PHY register value * * @return * - ESP_OK: write PHY register successfully * - ESP_ERR_INVALID_STATE: write PHY register failed because of wrong state of MAC * - ESP_ERR_TIMEOUT: write PHY register failed because of timeout * - ESP_FAIL: write PHY register failed because some other error occurred * *//* ... */ esp_err_t (*write_phy_reg)(esp_eth_mac_t *mac, uint32_t phy_addr, uint32_t phy_reg, uint32_t reg_value); /** * @brief Set MAC address * * @param[in] mac: Ethernet MAC instance * @param[in] addr: MAC address * * @return * - ESP_OK: set MAC address successfully * - ESP_ERR_INVALID_ARG: set MAC address failed because of invalid argument * - ESP_FAIL: set MAC address failed because some other error occurred * *//* ... */ esp_err_t (*set_addr)(esp_eth_mac_t *mac, uint8_t *addr); /** * @brief Get MAC address * * @param[in] mac: Ethernet MAC instance * @param[out] addr: MAC address * * @return * - ESP_OK: get MAC address successfully * - ESP_ERR_INVALID_ARG: get MAC address failed because of invalid argument * - ESP_FAIL: get MAC address failed because some other error occurred * *//* ... */ esp_err_t (*get_addr)(esp_eth_mac_t *mac, uint8_t *addr); /** * @brief Set speed of MAC * * @param[in] ma:c Ethernet MAC instance * @param[in] speed: MAC speed * * @return * - ESP_OK: set MAC speed successfully * - ESP_ERR_INVALID_ARG: set MAC speed failed because of invalid argument * - ESP_FAIL: set MAC speed failed because some other error occurred * *//* ... */ esp_err_t (*set_speed)(esp_eth_mac_t *mac, eth_speed_t speed); /** * @brief Set duplex mode of MAC * * @param[in] mac: Ethernet MAC instance * @param[in] duplex: MAC duplex * * @return * - ESP_OK: set MAC duplex mode successfully * - ESP_ERR_INVALID_ARG: set MAC duplex failed because of invalid argument * - ESP_FAIL: set MAC duplex failed because some other error occurred * *//* ... */ esp_err_t (*set_duplex)(esp_eth_mac_t *mac, eth_duplex_t duplex); /** * @brief Set link status of MAC * * @param[in] mac: Ethernet MAC instance * @param[in] link: Link status * * @return * - ESP_OK: set link status successfully * - ESP_ERR_INVALID_ARG: set link status failed because of invalid argument * - ESP_FAIL: set link status failed because some other error occurred * *//* ... */ esp_err_t (*set_link)(esp_eth_mac_t *mac, eth_link_t link); /** * @brief Set promiscuous of MAC * * @param[in] mac: Ethernet MAC instance * @param[in] enable: set true to enable promiscuous mode; set false to disable promiscuous mode * * @return * - ESP_OK: set promiscuous mode successfully * - ESP_FAIL: set promiscuous mode failed because some error occurred * *//* ... */ esp_err_t (*set_promiscuous)(esp_eth_mac_t *mac, bool enable); /** * @brief Enable flow control on MAC layer or not * * @param[in] mac: Ethernet MAC instance * @param[in] enable: set true to enable flow control; set false to disable flow control * * @return * - ESP_OK: set flow control successfully * - ESP_FAIL: set flow control failed because some error occurred * *//* ... */ esp_err_t (*enable_flow_ctrl)(esp_eth_mac_t *mac, bool enable); /** * @brief Set the PAUSE ability of peer node * * @param[in] mac: Ethernet MAC instance * @param[in] ability: zero indicates that pause function is supported by link partner; non-zero indicates that pause function is not supported by link partner * * @return * - ESP_OK: set peer pause ability successfully * - ESP_FAIL: set peer pause ability failed because some error occurred *//* ... */ esp_err_t (*set_peer_pause_ability)(esp_eth_mac_t *mac, uint32_t ability); /** * @brief Custom IO function of MAC driver. This function is intended to extend common options of esp_eth_ioctl to cover specifics of MAC chip. * * @note This function may not be assigned when the MAC chip supports only most common set of configuration options. * * @param[in] mac: Ethernet MAC instance * @param[in] cmd: IO control command * @param[in, out] data: address of data for `set` command or address where to store the data when used with `get` command * * @return * - ESP_OK: process io command successfully * - ESP_ERR_INVALID_ARG: process io command failed because of some invalid argument * - ESP_FAIL: process io command failed because some other error occurred * - ESP_ERR_NOT_SUPPORTED: requested feature is not supported *//* ... */ esp_err_t (*custom_ioctl)(esp_eth_mac_t *mac, int cmd, void *data); /** * @brief Free memory of Ethernet MAC * * @param[in] mac: Ethernet MAC instance * * @return * - ESP_OK: free Ethernet MAC instance successfully * - ESP_FAIL: free Ethernet MAC instance failed because some error occurred * *//* ... */ esp_err_t (*del)(esp_eth_mac_t *mac); }{ ... }; /** * @brief Configuration of Ethernet MAC object * *//* ... */ typedef struct { uint32_t sw_reset_timeout_ms; /*!< Software reset timeout value (Unit: ms) */ uint32_t rx_task_stack_size; /*!< Stack size of the receive task */ uint32_t rx_task_prio; /*!< Priority of the receive task */ uint32_t flags; /*!< Flags that specify extra capability for mac driver */ }{ ... } eth_mac_config_t; #define ETH_MAC_FLAG_WORK_WITH_CACHE_DISABLE (1 << 0) /*!< MAC driver can work when cache is disabled */ #define ETH_MAC_FLAG_PIN_TO_CORE (1 << 1) /*!< Pin MAC task to the CPU core where driver installation happened */ /** * @brief Default configuration for Ethernet MAC object * *//* ... */ #define ETH_MAC_DEFAULT_CONFIG() \ { \ .sw_reset_timeout_ms = 100, \ .rx_task_stack_size = 4096, \ .rx_task_prio = 15, \ .flags = 0, \ }{...} ... #ifdef __cplusplus }{...} #endif
Details