35cc4fb186fa80cc270e3f5c337e0fa9b8a9da0c
[dpdk.git] / lib / librte_ethdev / rte_ethdev_driver.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017 Intel Corporation
3  */
4
5 #ifndef _RTE_ETHDEV_DRIVER_H_
6 #define _RTE_ETHDEV_DRIVER_H_
7
8 /**
9  * @file
10  *
11  * RTE Ethernet Device PMD API
12  *
13  * These APIs for the use from Ethernet drivers, user applications shouldn't
14  * use them.
15  *
16  */
17
18 #include <rte_ethdev.h>
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 /*
25  * Definitions of all functions exported by an Ethernet driver through the
26  * generic structure of type *eth_dev_ops* supplied in the *rte_eth_dev*
27  * structure associated with an Ethernet device.
28  */
29
30 typedef int  (*eth_dev_configure_t)(struct rte_eth_dev *dev);
31 /**< @internal Ethernet device configuration. */
32
33 typedef int  (*eth_dev_start_t)(struct rte_eth_dev *dev);
34 /**< @internal Function used to start a configured Ethernet device. */
35
36 typedef void (*eth_dev_stop_t)(struct rte_eth_dev *dev);
37 /**< @internal Function used to stop a configured Ethernet device. */
38
39 typedef int  (*eth_dev_set_link_up_t)(struct rte_eth_dev *dev);
40 /**< @internal Function used to link up a configured Ethernet device. */
41
42 typedef int  (*eth_dev_set_link_down_t)(struct rte_eth_dev *dev);
43 /**< @internal Function used to link down a configured Ethernet device. */
44
45 typedef int (*eth_dev_close_t)(struct rte_eth_dev *dev);
46 /**< @internal Function used to close a configured Ethernet device. */
47
48 typedef int (*eth_dev_reset_t)(struct rte_eth_dev *dev);
49 /** <@internal Function used to reset a configured Ethernet device. */
50
51 typedef int (*eth_is_removed_t)(struct rte_eth_dev *dev);
52 /**< @internal Function used to detect an Ethernet device removal. */
53
54 /**
55  * @internal
56  * Function used to enable the Rx promiscuous mode of an Ethernet device.
57  *
58  * @param dev
59  *   ethdev handle of port.
60  *
61  * @return
62  *   Negative errno value on error, 0 on success.
63  *
64  * @retval 0
65  *   Success, promiscuous mode is enabled.
66  * @retval -ENOTSUP
67  *   Promiscuous mode is not supported.
68  * @retval -ENODEV
69  *   Device is gone.
70  * @retval -E_RTE_SECONDARY
71  *   Function was called from a secondary process instance and not supported.
72  * @retval -ETIMEDOUT
73  *   Attempt to enable promiscuos mode failed because of timeout.
74  * @retval -EAGAIN
75  *   Failed to enable promiscuous mode.
76  */
77 typedef int (*eth_promiscuous_enable_t)(struct rte_eth_dev *dev);
78
79 /**
80  * @internal
81  * Function used to disable the Rx promiscuous mode of an Ethernet device.
82  *
83  * @param dev
84  *   ethdev handle of port.
85  *
86  * @return
87  *   Negative errno value on error, 0 on success.
88  *
89  * @retval 0
90  *   Success, promiscuous mode is disabled.
91  * @retval -ENOTSUP
92  *   Promiscuous mode disabling is not supported.
93  * @retval -ENODEV
94  *   Device is gone.
95  * @retval -E_RTE_SECONDARY
96  *   Function was called from a secondary process instance and not supported.
97  * @retval -ETIMEDOUT
98  *   Attempt to disable promiscuos mode failed because of timeout.
99  * @retval -EAGAIN
100  *   Failed to disable promiscuous mode.
101  */
102 typedef int (*eth_promiscuous_disable_t)(struct rte_eth_dev *dev);
103
104 /**
105  * @internal
106  * Enable the receipt of all multicast packets by an Ethernet device.
107  *
108  * @param dev
109  *   ethdev handle of port.
110  *
111  * @return
112  *   Negative errno value on error, 0 on success.
113  *
114  * @retval 0
115  *   Success, all-multicast mode is enabled.
116  * @retval -ENOTSUP
117  *   All-multicast mode is not supported.
118  * @retval -ENODEV
119  *   Device is gone.
120  * @retval -E_RTE_SECONDARY
121  *   Function was called from a secondary process instance and not supported.
122  * @retval -ETIMEDOUT
123  *   Attempt to enable all-multicast mode failed because of timeout.
124  * @retval -EAGAIN
125  *   Failed to enable all-multicast mode.
126  */
127 typedef int (*eth_allmulticast_enable_t)(struct rte_eth_dev *dev);
128
129 /**
130  * @internal
131  * Disable the receipt of all multicast packets by an Ethernet device.
132  *
133  * @param dev
134  *   ethdev handle of port.
135  *
136  * @return
137  *   Negative errno value on error, 0 on success.
138  *
139  * @retval 0
140  *   Success, all-multicast mode is disabled.
141  * @retval -ENOTSUP
142  *   All-multicast mode disabling is not supported.
143  * @retval -ENODEV
144  *   Device is gone.
145  * @retval -E_RTE_SECONDARY
146  *   Function was called from a secondary process instance and not supported.
147  * @retval -ETIMEDOUT
148  *   Attempt to disable all-multicast mode failed because of timeout.
149  * @retval -EAGAIN
150  *   Failed to disable all-multicast mode.
151  */
152 typedef int (*eth_allmulticast_disable_t)(struct rte_eth_dev *dev);
153
154 typedef int (*eth_link_update_t)(struct rte_eth_dev *dev,
155                                 int wait_to_complete);
156 /**< @internal Get link speed, duplex mode and state (up/down) of an Ethernet device. */
157
158 typedef int (*eth_stats_get_t)(struct rte_eth_dev *dev,
159                                 struct rte_eth_stats *igb_stats);
160 /**< @internal Get global I/O statistics of an Ethernet device. */
161
162 /**
163  * @internal
164  * Reset global I/O statistics of an Ethernet device to 0.
165  *
166  * @param dev
167  *   ethdev handle of port.
168  *
169  * @return
170  *   Negative errno value on error, 0 on success.
171  *
172  * @retval 0
173  *   Success, statistics has been reset.
174  * @retval -ENOTSUP
175  *   Resetting statistics is not supported.
176  * @retval -EINVAL
177  *   Resetting statistics is not valid.
178  * @retval -ENOMEM
179  *   Not enough memory to get the stats.
180  */
181 typedef int (*eth_stats_reset_t)(struct rte_eth_dev *dev);
182
183 typedef int (*eth_xstats_get_t)(struct rte_eth_dev *dev,
184         struct rte_eth_xstat *stats, unsigned int n);
185 /**< @internal Get extended stats of an Ethernet device. */
186
187 typedef int (*eth_xstats_get_by_id_t)(struct rte_eth_dev *dev,
188                                       const uint64_t *ids,
189                                       uint64_t *values,
190                                       unsigned int n);
191 /**< @internal Get extended stats of an Ethernet device. */
192
193 /**
194  * @internal
195  * Reset extended stats of an Ethernet device.
196  *
197  * @param dev
198  *   ethdev handle of port.
199  *
200  * @return
201  *   Negative errno value on error, 0 on success.
202  *
203  * @retval 0
204  *   Success, statistics has been reset.
205  * @retval -ENOTSUP
206  *   Resetting statistics is not supported.
207  * @retval -EINVAL
208  *   Resetting statistics is not valid.
209  * @retval -ENOMEM
210  *   Not enough memory to get the stats.
211  */
212 typedef int (*eth_xstats_reset_t)(struct rte_eth_dev *dev);
213
214 typedef int (*eth_xstats_get_names_t)(struct rte_eth_dev *dev,
215         struct rte_eth_xstat_name *xstats_names, unsigned int size);
216 /**< @internal Get names of extended stats of an Ethernet device. */
217
218 typedef int (*eth_xstats_get_names_by_id_t)(struct rte_eth_dev *dev,
219         struct rte_eth_xstat_name *xstats_names, const uint64_t *ids,
220         unsigned int size);
221 /**< @internal Get names of extended stats of an Ethernet device. */
222
223 typedef int (*eth_queue_stats_mapping_set_t)(struct rte_eth_dev *dev,
224                                              uint16_t queue_id,
225                                              uint8_t stat_idx,
226                                              uint8_t is_rx);
227 /**< @internal Set a queue statistics mapping for a tx/rx queue of an Ethernet device. */
228
229 typedef int (*eth_dev_infos_get_t)(struct rte_eth_dev *dev,
230                                    struct rte_eth_dev_info *dev_info);
231 /**< @internal Get specific information of an Ethernet device. */
232
233 typedef const uint32_t *(*eth_dev_supported_ptypes_get_t)(struct rte_eth_dev *dev);
234 /**< @internal Get supported ptypes of an Ethernet device. */
235
236 /**
237  * @internal
238  * Inform Ethernet device about reduced range of packet types to handle.
239  *
240  * @param dev
241  *   The Ethernet device identifier.
242  * @param ptype_mask
243  *   The ptype family that application is interested in should be bitwise OR of
244  *   RTE_PTYPE_*_MASK or 0.
245  * @return
246  *   - (0) if Success.
247  */
248 typedef int (*eth_dev_ptypes_set_t)(struct rte_eth_dev *dev,
249                                      uint32_t ptype_mask);
250
251 typedef int (*eth_queue_start_t)(struct rte_eth_dev *dev,
252                                     uint16_t queue_id);
253 /**< @internal Start rx and tx of a queue of an Ethernet device. */
254
255 typedef int (*eth_queue_stop_t)(struct rte_eth_dev *dev,
256                                     uint16_t queue_id);
257 /**< @internal Stop rx and tx of a queue of an Ethernet device. */
258
259 typedef int (*eth_rx_queue_setup_t)(struct rte_eth_dev *dev,
260                                     uint16_t rx_queue_id,
261                                     uint16_t nb_rx_desc,
262                                     unsigned int socket_id,
263                                     const struct rte_eth_rxconf *rx_conf,
264                                     struct rte_mempool *mb_pool);
265 /**< @internal Set up a receive queue of an Ethernet device. */
266
267 typedef int (*eth_tx_queue_setup_t)(struct rte_eth_dev *dev,
268                                     uint16_t tx_queue_id,
269                                     uint16_t nb_tx_desc,
270                                     unsigned int socket_id,
271                                     const struct rte_eth_txconf *tx_conf);
272 /**< @internal Setup a transmit queue of an Ethernet device. */
273
274 typedef int (*eth_rx_enable_intr_t)(struct rte_eth_dev *dev,
275                                     uint16_t rx_queue_id);
276 /**< @internal Enable interrupt of a receive queue of an Ethernet device. */
277
278 typedef int (*eth_rx_disable_intr_t)(struct rte_eth_dev *dev,
279                                     uint16_t rx_queue_id);
280 /**< @internal Disable interrupt of a receive queue of an Ethernet device. */
281
282 typedef void (*eth_queue_release_t)(void *queue);
283 /**< @internal Release memory resources allocated by given RX/TX queue. */
284
285 typedef int (*eth_fw_version_get_t)(struct rte_eth_dev *dev,
286                                      char *fw_version, size_t fw_size);
287 /**< @internal Get firmware information of an Ethernet device. */
288
289 typedef int (*eth_tx_done_cleanup_t)(void *txq, uint32_t free_cnt);
290 /**< @internal Force mbufs to be from TX ring. */
291
292 typedef void (*eth_rxq_info_get_t)(struct rte_eth_dev *dev,
293         uint16_t rx_queue_id, struct rte_eth_rxq_info *qinfo);
294
295 typedef void (*eth_txq_info_get_t)(struct rte_eth_dev *dev,
296         uint16_t tx_queue_id, struct rte_eth_txq_info *qinfo);
297
298 typedef int (*eth_burst_mode_get_t)(struct rte_eth_dev *dev,
299         uint16_t queue_id, struct rte_eth_burst_mode *mode);
300
301 typedef int (*mtu_set_t)(struct rte_eth_dev *dev, uint16_t mtu);
302 /**< @internal Set MTU. */
303
304 typedef int (*vlan_filter_set_t)(struct rte_eth_dev *dev,
305                                   uint16_t vlan_id,
306                                   int on);
307 /**< @internal filtering of a VLAN Tag Identifier by an Ethernet device. */
308
309 typedef int (*vlan_tpid_set_t)(struct rte_eth_dev *dev,
310                                enum rte_vlan_type type, uint16_t tpid);
311 /**< @internal set the outer/inner VLAN-TPID by an Ethernet device. */
312
313 typedef int (*vlan_offload_set_t)(struct rte_eth_dev *dev, int mask);
314 /**< @internal set VLAN offload function by an Ethernet device. */
315
316 typedef int (*vlan_pvid_set_t)(struct rte_eth_dev *dev,
317                                uint16_t vlan_id,
318                                int on);
319 /**< @internal set port based TX VLAN insertion by an Ethernet device. */
320
321 typedef void (*vlan_strip_queue_set_t)(struct rte_eth_dev *dev,
322                                   uint16_t rx_queue_id,
323                                   int on);
324 /**< @internal VLAN stripping enable/disable by an queue of Ethernet device. */
325
326 typedef int (*flow_ctrl_get_t)(struct rte_eth_dev *dev,
327                                struct rte_eth_fc_conf *fc_conf);
328 /**< @internal Get current flow control parameter on an Ethernet device */
329
330 typedef int (*flow_ctrl_set_t)(struct rte_eth_dev *dev,
331                                struct rte_eth_fc_conf *fc_conf);
332 /**< @internal Setup flow control parameter on an Ethernet device */
333
334 typedef int (*priority_flow_ctrl_set_t)(struct rte_eth_dev *dev,
335                                 struct rte_eth_pfc_conf *pfc_conf);
336 /**< @internal Setup priority flow control parameter on an Ethernet device */
337
338 typedef int (*reta_update_t)(struct rte_eth_dev *dev,
339                              struct rte_eth_rss_reta_entry64 *reta_conf,
340                              uint16_t reta_size);
341 /**< @internal Update RSS redirection table on an Ethernet device */
342
343 typedef int (*reta_query_t)(struct rte_eth_dev *dev,
344                             struct rte_eth_rss_reta_entry64 *reta_conf,
345                             uint16_t reta_size);
346 /**< @internal Query RSS redirection table on an Ethernet device */
347
348 typedef int (*rss_hash_update_t)(struct rte_eth_dev *dev,
349                                  struct rte_eth_rss_conf *rss_conf);
350 /**< @internal Update RSS hash configuration of an Ethernet device */
351
352 typedef int (*rss_hash_conf_get_t)(struct rte_eth_dev *dev,
353                                    struct rte_eth_rss_conf *rss_conf);
354 /**< @internal Get current RSS hash configuration of an Ethernet device */
355
356 typedef int (*eth_dev_led_on_t)(struct rte_eth_dev *dev);
357 /**< @internal Turn on SW controllable LED on an Ethernet device */
358
359 typedef int (*eth_dev_led_off_t)(struct rte_eth_dev *dev);
360 /**< @internal Turn off SW controllable LED on an Ethernet device */
361
362 typedef void (*eth_mac_addr_remove_t)(struct rte_eth_dev *dev, uint32_t index);
363 /**< @internal Remove MAC address from receive address register */
364
365 typedef int (*eth_mac_addr_add_t)(struct rte_eth_dev *dev,
366                                   struct rte_ether_addr *mac_addr,
367                                   uint32_t index,
368                                   uint32_t vmdq);
369 /**< @internal Set a MAC address into Receive Address Register */
370
371 typedef int (*eth_mac_addr_set_t)(struct rte_eth_dev *dev,
372                                   struct rte_ether_addr *mac_addr);
373 /**< @internal Set a MAC address into Receive Address Register */
374
375 typedef int (*eth_uc_hash_table_set_t)(struct rte_eth_dev *dev,
376                                   struct rte_ether_addr *mac_addr,
377                                   uint8_t on);
378 /**< @internal Set a Unicast Hash bitmap */
379
380 typedef int (*eth_uc_all_hash_table_set_t)(struct rte_eth_dev *dev,
381                                   uint8_t on);
382 /**< @internal Set all Unicast Hash bitmap */
383
384 typedef int (*eth_set_queue_rate_limit_t)(struct rte_eth_dev *dev,
385                                 uint16_t queue_idx,
386                                 uint16_t tx_rate);
387 /**< @internal Set queue TX rate */
388
389 typedef int (*eth_mirror_rule_set_t)(struct rte_eth_dev *dev,
390                                   struct rte_eth_mirror_conf *mirror_conf,
391                                   uint8_t rule_id,
392                                   uint8_t on);
393 /**< @internal Add a traffic mirroring rule on an Ethernet device */
394
395 typedef int (*eth_mirror_rule_reset_t)(struct rte_eth_dev *dev,
396                                   uint8_t rule_id);
397 /**< @internal Remove a traffic mirroring rule on an Ethernet device */
398
399 typedef int (*eth_udp_tunnel_port_add_t)(struct rte_eth_dev *dev,
400                                          struct rte_eth_udp_tunnel *tunnel_udp);
401 /**< @internal Add tunneling UDP port */
402
403 typedef int (*eth_udp_tunnel_port_del_t)(struct rte_eth_dev *dev,
404                                          struct rte_eth_udp_tunnel *tunnel_udp);
405 /**< @internal Delete tunneling UDP port */
406
407 typedef int (*eth_set_mc_addr_list_t)(struct rte_eth_dev *dev,
408                                       struct rte_ether_addr *mc_addr_set,
409                                       uint32_t nb_mc_addr);
410 /**< @internal set the list of multicast addresses on an Ethernet device */
411
412 typedef int (*eth_timesync_enable_t)(struct rte_eth_dev *dev);
413 /**< @internal Function used to enable IEEE1588/802.1AS timestamping. */
414
415 typedef int (*eth_timesync_disable_t)(struct rte_eth_dev *dev);
416 /**< @internal Function used to disable IEEE1588/802.1AS timestamping. */
417
418 typedef int (*eth_timesync_read_rx_timestamp_t)(struct rte_eth_dev *dev,
419                                                 struct timespec *timestamp,
420                                                 uint32_t flags);
421 /**< @internal Function used to read an RX IEEE1588/802.1AS timestamp. */
422
423 typedef int (*eth_timesync_read_tx_timestamp_t)(struct rte_eth_dev *dev,
424                                                 struct timespec *timestamp);
425 /**< @internal Function used to read a TX IEEE1588/802.1AS timestamp. */
426
427 typedef int (*eth_timesync_adjust_time)(struct rte_eth_dev *dev, int64_t);
428 /**< @internal Function used to adjust the device clock */
429
430 typedef int (*eth_timesync_read_time)(struct rte_eth_dev *dev,
431                                       struct timespec *timestamp);
432 /**< @internal Function used to get time from the device clock. */
433
434 typedef int (*eth_timesync_write_time)(struct rte_eth_dev *dev,
435                                        const struct timespec *timestamp);
436 /**< @internal Function used to get time from the device clock */
437
438 typedef int (*eth_read_clock)(struct rte_eth_dev *dev,
439                                       uint64_t *timestamp);
440 /**< @internal Function used to get the current value of the device clock. */
441
442 typedef int (*eth_get_reg_t)(struct rte_eth_dev *dev,
443                                 struct rte_dev_reg_info *info);
444 /**< @internal Retrieve registers  */
445
446 typedef int (*eth_get_eeprom_length_t)(struct rte_eth_dev *dev);
447 /**< @internal Retrieve eeprom size  */
448
449 typedef int (*eth_get_eeprom_t)(struct rte_eth_dev *dev,
450                                 struct rte_dev_eeprom_info *info);
451 /**< @internal Retrieve eeprom data  */
452
453 typedef int (*eth_set_eeprom_t)(struct rte_eth_dev *dev,
454                                 struct rte_dev_eeprom_info *info);
455 /**< @internal Program eeprom data  */
456
457 typedef int (*eth_get_module_info_t)(struct rte_eth_dev *dev,
458                                      struct rte_eth_dev_module_info *modinfo);
459 /**< @internal Retrieve type and size of plugin module eeprom */
460
461 typedef int (*eth_get_module_eeprom_t)(struct rte_eth_dev *dev,
462                                        struct rte_dev_eeprom_info *info);
463 /**< @internal Retrieve plugin module eeprom data */
464
465 typedef int (*eth_l2_tunnel_eth_type_conf_t)
466         (struct rte_eth_dev *dev, struct rte_eth_l2_tunnel_conf *l2_tunnel);
467 /**< @internal config l2 tunnel ether type */
468
469 typedef int (*eth_l2_tunnel_offload_set_t)
470         (struct rte_eth_dev *dev,
471          struct rte_eth_l2_tunnel_conf *l2_tunnel,
472          uint32_t mask,
473          uint8_t en);
474 /**< @internal enable/disable the l2 tunnel offload functions */
475
476
477 typedef int (*eth_filter_ctrl_t)(struct rte_eth_dev *dev,
478                                  enum rte_filter_type filter_type,
479                                  enum rte_filter_op filter_op,
480                                  void *arg);
481 /**< @internal Take operations to assigned filter type on an Ethernet device */
482
483 typedef int (*eth_tm_ops_get_t)(struct rte_eth_dev *dev, void *ops);
484 /**< @internal Get Traffic Management (TM) operations on an Ethernet device */
485
486 typedef int (*eth_mtr_ops_get_t)(struct rte_eth_dev *dev, void *ops);
487 /**< @internal Get Traffic Metering and Policing (MTR) operations */
488
489 typedef int (*eth_get_dcb_info)(struct rte_eth_dev *dev,
490                                  struct rte_eth_dcb_info *dcb_info);
491 /**< @internal Get dcb information on an Ethernet device */
492
493 typedef int (*eth_pool_ops_supported_t)(struct rte_eth_dev *dev,
494                                                 const char *pool);
495 /**< @internal Test if a port supports specific mempool ops */
496
497 /**
498  * @internal
499  * Get the hairpin capabilities.
500  *
501  * @param dev
502  *   ethdev handle of port.
503  * @param cap
504  *   returns the hairpin capabilities from the device.
505  *
506  * @return
507  *   Negative errno value on error, 0 on success.
508  *
509  * @retval 0
510  *   Success, hairpin is supported.
511  * @retval -ENOTSUP
512  *   Hairpin is not supported.
513  */
514 typedef int (*eth_hairpin_cap_get_t)(struct rte_eth_dev *dev,
515                                      struct rte_eth_hairpin_cap *cap);
516
517 /**
518  * @internal
519  * Setup RX hairpin queue.
520  *
521  * @param dev
522  *   ethdev handle of port.
523  * @param rx_queue_id
524  *   the selected RX queue index.
525  * @param nb_rx_desc
526  *   the requested number of descriptors for this queue. 0 - use PMD default.
527  * @param conf
528  *   the RX hairpin configuration structure.
529  *
530  * @return
531  *   Negative errno value on error, 0 on success.
532  *
533  * @retval 0
534  *   Success, hairpin is supported.
535  * @retval -ENOTSUP
536  *   Hairpin is not supported.
537  * @retval -EINVAL
538  *   One of the parameters is invalid.
539  * @retval -ENOMEM
540  *   Unable to allocate resources.
541  */
542 typedef int (*eth_rx_hairpin_queue_setup_t)
543         (struct rte_eth_dev *dev, uint16_t rx_queue_id,
544          uint16_t nb_rx_desc,
545          const struct rte_eth_hairpin_conf *conf);
546
547 /**
548  * @internal
549  * Setup TX hairpin queue.
550  *
551  * @param dev
552  *   ethdev handle of port.
553  * @param tx_queue_id
554  *   the selected TX queue index.
555  * @param nb_tx_desc
556  *   the requested number of descriptors for this queue. 0 - use PMD default.
557  * @param conf
558  *   the TX hairpin configuration structure.
559  *
560  * @return
561  *   Negative errno value on error, 0 on success.
562  *
563  * @retval 0
564  *   Success, hairpin is supported.
565  * @retval -ENOTSUP
566  *   Hairpin is not supported.
567  * @retval -EINVAL
568  *   One of the parameters is invalid.
569  * @retval -ENOMEM
570  *   Unable to allocate resources.
571  */
572 typedef int (*eth_tx_hairpin_queue_setup_t)
573         (struct rte_eth_dev *dev, uint16_t tx_queue_id,
574          uint16_t nb_tx_desc,
575          const struct rte_eth_hairpin_conf *hairpin_conf);
576
577 /**
578  * @internal
579  * Get Forward Error Correction(FEC) capability.
580  *
581  * @param dev
582  *   ethdev handle of port.
583  * @param speed_fec_capa
584  *   speed_fec_capa is out only with per-speed capabilities.
585  * @param num
586  *   a number of elements in an speed_fec_capa array.
587  *
588  * @return
589  *   Negative errno value on error, positive value on success.
590  *
591  * @retval positive value
592  *   A non-negative value lower or equal to num: success. The return value
593  *   is the number of entries filled in the fec capa array.
594  *   A non-negative value higher than num: error, the given fec capa array
595  *   is too small. The return value corresponds to the num that should
596  *   be given to succeed. The entries in the fec capa array are not valid
597  *   and shall not be used by the caller.
598  * @retval -ENOTSUP
599  *   Operation is not supported.
600  * @retval -EIO
601  *   Device is removed.
602  * @retval -EINVAL
603  *   *num* or *speed_fec_capa* invalid.
604  */
605 typedef int (*eth_fec_get_capability_t)(struct rte_eth_dev *dev,
606                 struct rte_eth_fec_capa *speed_fec_capa, unsigned int num);
607
608 /**
609  * @internal
610  * Get Forward Error Correction(FEC) mode.
611  *
612  * @param dev
613  *   ethdev handle of port.
614  * @param fec_capa
615  *   a bitmask of enabled FEC modes. If AUTO bit is set, other
616  *   bits specify FEC modes which may be negotiated. If AUTO
617  *   bit is clear, specify FEC modes to be used (only one valid
618  *   mode per speed may be set).
619  *
620  * @return
621  *   Negative errno value on error, 0 on success.
622  *
623  * @retval 0
624  *   Success, get FEC success.
625  * @retval -ENOTSUP
626  *   Operation is not supported.
627  * @retval -EIO
628  *   Device is removed.
629  */
630 typedef int (*eth_fec_get_t)(struct rte_eth_dev *dev,
631                              uint32_t *fec_capa);
632
633 /**
634  * @internal
635  * Set Forward Error Correction(FEC) mode.
636  *
637  * @param dev
638  *   ethdev handle of port.
639  * @param fec_capa
640  *   bitmask of allowed FEC modes. It must be only one
641  *   if AUTO is disabled. If AUTO is enabled, other
642  *   bits specify FEC modes which may be negotiated.
643  *
644  * @return
645  *   Negative errno value on error, 0 on success.
646  *
647  * @retval 0
648  *   Success, set FEC success.
649  * @retval -ENOTSUP
650  *   Operation is not supported.
651  * @retval -EINVAL
652  *   Unsupported FEC mode requested.
653  * @retval -EIO
654  *   Device is removed.
655  */
656 typedef int (*eth_fec_set_t)(struct rte_eth_dev *dev, uint32_t fec_capa);
657
658 /**
659  * @internal A structure containing the functions exported by an Ethernet driver.
660  */
661 struct eth_dev_ops {
662         eth_dev_configure_t        dev_configure; /**< Configure device. */
663         eth_dev_start_t            dev_start;     /**< Start device. */
664         eth_dev_stop_t             dev_stop;      /**< Stop device. */
665         eth_dev_set_link_up_t      dev_set_link_up;   /**< Device link up. */
666         eth_dev_set_link_down_t    dev_set_link_down; /**< Device link down. */
667         eth_dev_close_t            dev_close;     /**< Close device. */
668         eth_dev_reset_t            dev_reset;     /**< Reset device. */
669         eth_link_update_t          link_update;   /**< Get device link state. */
670         eth_is_removed_t           is_removed;
671         /**< Check if the device was physically removed. */
672
673         eth_promiscuous_enable_t   promiscuous_enable; /**< Promiscuous ON. */
674         eth_promiscuous_disable_t  promiscuous_disable;/**< Promiscuous OFF. */
675         eth_allmulticast_enable_t  allmulticast_enable;/**< RX multicast ON. */
676         eth_allmulticast_disable_t allmulticast_disable;/**< RX multicast OFF. */
677         eth_mac_addr_remove_t      mac_addr_remove; /**< Remove MAC address. */
678         eth_mac_addr_add_t         mac_addr_add;  /**< Add a MAC address. */
679         eth_mac_addr_set_t         mac_addr_set;  /**< Set a MAC address. */
680         eth_set_mc_addr_list_t     set_mc_addr_list; /**< set list of mcast addrs. */
681         mtu_set_t                  mtu_set;       /**< Set MTU. */
682
683         eth_stats_get_t            stats_get;     /**< Get generic device statistics. */
684         eth_stats_reset_t          stats_reset;   /**< Reset generic device statistics. */
685         eth_xstats_get_t           xstats_get;    /**< Get extended device statistics. */
686         eth_xstats_reset_t         xstats_reset;  /**< Reset extended device statistics. */
687         eth_xstats_get_names_t     xstats_get_names;
688         /**< Get names of extended statistics. */
689         eth_queue_stats_mapping_set_t queue_stats_mapping_set;
690         /**< Configure per queue stat counter mapping. */
691
692         eth_dev_infos_get_t        dev_infos_get; /**< Get device info. */
693         eth_rxq_info_get_t         rxq_info_get; /**< retrieve RX queue information. */
694         eth_txq_info_get_t         txq_info_get; /**< retrieve TX queue information. */
695         eth_burst_mode_get_t       rx_burst_mode_get; /**< Get RX burst mode */
696         eth_burst_mode_get_t       tx_burst_mode_get; /**< Get TX burst mode */
697         eth_fw_version_get_t       fw_version_get; /**< Get firmware version. */
698         eth_dev_supported_ptypes_get_t dev_supported_ptypes_get;
699         /**< Get packet types supported and identified by device. */
700         eth_dev_ptypes_set_t dev_ptypes_set;
701         /**< Inform Ethernet device about reduced range of packet types to handle. */
702
703         vlan_filter_set_t          vlan_filter_set; /**< Filter VLAN Setup. */
704         vlan_tpid_set_t            vlan_tpid_set; /**< Outer/Inner VLAN TPID Setup. */
705         vlan_strip_queue_set_t     vlan_strip_queue_set; /**< VLAN Stripping on queue. */
706         vlan_offload_set_t         vlan_offload_set; /**< Set VLAN Offload. */
707         vlan_pvid_set_t            vlan_pvid_set; /**< Set port based TX VLAN insertion. */
708
709         eth_queue_start_t          rx_queue_start;/**< Start RX for a queue. */
710         eth_queue_stop_t           rx_queue_stop; /**< Stop RX for a queue. */
711         eth_queue_start_t          tx_queue_start;/**< Start TX for a queue. */
712         eth_queue_stop_t           tx_queue_stop; /**< Stop TX for a queue. */
713         eth_rx_queue_setup_t       rx_queue_setup;/**< Set up device RX queue. */
714         eth_queue_release_t        rx_queue_release; /**< Release RX queue. */
715
716         eth_rx_enable_intr_t       rx_queue_intr_enable;  /**< Enable Rx queue interrupt. */
717         eth_rx_disable_intr_t      rx_queue_intr_disable; /**< Disable Rx queue interrupt. */
718         eth_tx_queue_setup_t       tx_queue_setup;/**< Set up device TX queue. */
719         eth_queue_release_t        tx_queue_release; /**< Release TX queue. */
720         eth_tx_done_cleanup_t      tx_done_cleanup;/**< Free tx ring mbufs */
721
722         eth_dev_led_on_t           dev_led_on;    /**< Turn on LED. */
723         eth_dev_led_off_t          dev_led_off;   /**< Turn off LED. */
724
725         flow_ctrl_get_t            flow_ctrl_get; /**< Get flow control. */
726         flow_ctrl_set_t            flow_ctrl_set; /**< Setup flow control. */
727         priority_flow_ctrl_set_t   priority_flow_ctrl_set; /**< Setup priority flow control. */
728
729         eth_uc_hash_table_set_t    uc_hash_table_set; /**< Set Unicast Table Array. */
730         eth_uc_all_hash_table_set_t uc_all_hash_table_set; /**< Set Unicast hash bitmap. */
731
732         eth_mirror_rule_set_t      mirror_rule_set; /**< Add a traffic mirror rule. */
733         eth_mirror_rule_reset_t    mirror_rule_reset; /**< reset a traffic mirror rule. */
734
735         eth_udp_tunnel_port_add_t  udp_tunnel_port_add; /** Add UDP tunnel port. */
736         eth_udp_tunnel_port_del_t  udp_tunnel_port_del; /** Del UDP tunnel port. */
737         eth_l2_tunnel_eth_type_conf_t l2_tunnel_eth_type_conf;
738         /** Config ether type of l2 tunnel. */
739         eth_l2_tunnel_offload_set_t   l2_tunnel_offload_set;
740         /** Enable/disable l2 tunnel offload functions. */
741
742         eth_set_queue_rate_limit_t set_queue_rate_limit; /**< Set queue rate limit. */
743
744         rss_hash_update_t          rss_hash_update; /** Configure RSS hash protocols. */
745         rss_hash_conf_get_t        rss_hash_conf_get; /** Get current RSS hash configuration. */
746         reta_update_t              reta_update;   /** Update redirection table. */
747         reta_query_t               reta_query;    /** Query redirection table. */
748
749         eth_get_reg_t              get_reg;           /**< Get registers. */
750         eth_get_eeprom_length_t    get_eeprom_length; /**< Get eeprom length. */
751         eth_get_eeprom_t           get_eeprom;        /**< Get eeprom data. */
752         eth_set_eeprom_t           set_eeprom;        /**< Set eeprom. */
753
754         eth_get_module_info_t      get_module_info;
755         /** Get plugin module eeprom attribute. */
756         eth_get_module_eeprom_t    get_module_eeprom;
757         /** Get plugin module eeprom data. */
758
759         eth_filter_ctrl_t          filter_ctrl; /**< common filter control. */
760
761         eth_get_dcb_info           get_dcb_info; /** Get DCB information. */
762
763         eth_timesync_enable_t      timesync_enable;
764         /** Turn IEEE1588/802.1AS timestamping on. */
765         eth_timesync_disable_t     timesync_disable;
766         /** Turn IEEE1588/802.1AS timestamping off. */
767         eth_timesync_read_rx_timestamp_t timesync_read_rx_timestamp;
768         /** Read the IEEE1588/802.1AS RX timestamp. */
769         eth_timesync_read_tx_timestamp_t timesync_read_tx_timestamp;
770         /** Read the IEEE1588/802.1AS TX timestamp. */
771         eth_timesync_adjust_time   timesync_adjust_time; /** Adjust the device clock. */
772         eth_timesync_read_time     timesync_read_time; /** Get the device clock time. */
773         eth_timesync_write_time    timesync_write_time; /** Set the device clock time. */
774
775         eth_read_clock             read_clock;
776
777         eth_xstats_get_by_id_t     xstats_get_by_id;
778         /**< Get extended device statistic values by ID. */
779         eth_xstats_get_names_by_id_t xstats_get_names_by_id;
780         /**< Get name of extended device statistics by ID. */
781
782         eth_tm_ops_get_t tm_ops_get;
783         /**< Get Traffic Management (TM) operations. */
784
785         eth_mtr_ops_get_t mtr_ops_get;
786         /**< Get Traffic Metering and Policing (MTR) operations. */
787
788         eth_pool_ops_supported_t pool_ops_supported;
789         /**< Test if a port supports specific mempool ops */
790
791         eth_hairpin_cap_get_t hairpin_cap_get;
792         /**< Returns the hairpin capabilities. */
793         eth_rx_hairpin_queue_setup_t rx_hairpin_queue_setup;
794         /**< Set up device RX hairpin queue. */
795         eth_tx_hairpin_queue_setup_t tx_hairpin_queue_setup;
796         /**< Set up device TX hairpin queue. */
797
798         eth_fec_get_capability_t fec_get_capability;
799         /**< Get Forward Error Correction(FEC) capability. */
800         eth_fec_get_t fec_get;
801         /**< Get Forward Error Correction(FEC) mode. */
802         eth_fec_set_t fec_set;
803         /**< Set Forward Error Correction(FEC) mode. */
804 };
805
806 /**
807  * RX/TX queue states
808  */
809 #define RTE_ETH_QUEUE_STATE_STOPPED 0
810 #define RTE_ETH_QUEUE_STATE_STARTED 1
811 #define RTE_ETH_QUEUE_STATE_HAIRPIN 2
812
813 /**
814  * @internal
815  * Check if the selected Rx queue is hairpin queue.
816  *
817  * @param dev
818  *  Pointer to the selected device.
819  * @param queue_id
820  *  The selected queue.
821  *
822  * @return
823  *   - (1) if the queue is hairpin queue, 0 otherwise.
824  */
825 __rte_internal
826 int rte_eth_dev_is_rx_hairpin_queue(struct rte_eth_dev *dev, uint16_t queue_id);
827
828 /**
829  * @internal
830  * Check if the selected Tx queue is hairpin queue.
831  *
832  * @param dev
833  *  Pointer to the selected device.
834  * @param queue_id
835  *  The selected queue.
836  *
837  * @return
838  *   - (1) if the queue is hairpin queue, 0 otherwise.
839  */
840 __rte_internal
841 int rte_eth_dev_is_tx_hairpin_queue(struct rte_eth_dev *dev, uint16_t queue_id);
842
843 /**
844  * @internal
845  * Returns a ethdev slot specified by the unique identifier name.
846  *
847  * @param       name
848  *  The pointer to the Unique identifier name for each Ethernet device
849  * @return
850  *   - The pointer to the ethdev slot, on success. NULL on error
851  */
852 __rte_internal
853 struct rte_eth_dev *rte_eth_dev_allocated(const char *name);
854
855 /**
856  * @internal
857  * Allocates a new ethdev slot for an ethernet device and returns the pointer
858  * to that slot for the driver to use.
859  *
860  * @param       name    Unique identifier name for each Ethernet device
861  * @return
862  *   - Slot in the rte_dev_devices array for a new device;
863  */
864 __rte_internal
865 struct rte_eth_dev *rte_eth_dev_allocate(const char *name);
866
867 /**
868  * @internal
869  * Attach to the ethdev already initialized by the primary
870  * process.
871  *
872  * @param       name    Ethernet device's name.
873  * @return
874  *   - Success: Slot in the rte_dev_devices array for attached
875  *        device.
876  *   - Error: Null pointer.
877  */
878 __rte_internal
879 struct rte_eth_dev *rte_eth_dev_attach_secondary(const char *name);
880
881 /**
882  * @internal
883  * Notify RTE_ETH_EVENT_DESTROY and release the specified ethdev port.
884  *
885  * The following PMD-managed data fields will be freed:
886  *   - dev_private
887  *   - mac_addrs
888  *   - hash_mac_addrs
889  * If one of these fields should not be freed,
890  * it must be reset to NULL by the PMD, typically in dev_close method.
891  *
892  * @param eth_dev
893  * Device to be detached.
894  * @return
895  *   - 0 on success, negative on error
896  */
897 __rte_internal
898 int rte_eth_dev_release_port(struct rte_eth_dev *eth_dev);
899
900 /**
901  * @internal
902  * Release device queues and clear its configuration to force the user
903  * application to reconfigure it. It is for internal use only.
904  *
905  * @param dev
906  *  Pointer to struct rte_eth_dev.
907  *
908  * @return
909  *  void
910  */
911 __rte_internal
912 void rte_eth_dev_internal_reset(struct rte_eth_dev *dev);
913
914 /**
915  * @internal Executes all the user application registered callbacks for
916  * the specific device. It is for DPDK internal user only. User
917  * application should not call it directly.
918  *
919  * @param dev
920  *  Pointer to struct rte_eth_dev.
921  * @param event
922  *  Eth device interrupt event type.
923  * @param ret_param
924  *  To pass data back to user application.
925  *  This allows the user application to decide if a particular function
926  *  is permitted or not.
927  *
928  * @return
929  *  int
930  */
931 __rte_internal
932 int rte_eth_dev_callback_process(struct rte_eth_dev *dev,
933                 enum rte_eth_event_type event, void *ret_param);
934
935 /**
936  * @internal
937  * This is the last step of device probing.
938  * It must be called after a port is allocated and initialized successfully.
939  *
940  * The notification RTE_ETH_EVENT_NEW is sent to other entities
941  * (libraries and applications).
942  * The state is set as RTE_ETH_DEV_ATTACHED.
943  *
944  * @param dev
945  *  New ethdev port.
946  */
947 __rte_internal
948 void rte_eth_dev_probing_finish(struct rte_eth_dev *dev);
949
950 /**
951  * Create memzone for HW rings.
952  * malloc can't be used as the physical address is needed.
953  * If the memzone is already created, then this function returns a ptr
954  * to the old one.
955  *
956  * @param eth_dev
957  *   The *eth_dev* pointer is the address of the *rte_eth_dev* structure
958  * @param name
959  *   The name of the memory zone
960  * @param queue_id
961  *   The index of the queue to add to name
962  * @param size
963  *   The sizeof of the memory area
964  * @param align
965  *   Alignment for resulting memzone. Must be a power of 2.
966  * @param socket_id
967  *   The *socket_id* argument is the socket identifier in case of NUMA.
968  */
969 __rte_internal
970 const struct rte_memzone *
971 rte_eth_dma_zone_reserve(const struct rte_eth_dev *eth_dev, const char *name,
972                          uint16_t queue_id, size_t size,
973                          unsigned align, int socket_id);
974
975 /**
976  * Free previously allocated memzone for HW rings.
977  *
978  * @param eth_dev
979  *   The *eth_dev* pointer is the address of the *rte_eth_dev* structure
980  * @param name
981  *   The name of the memory zone
982  * @param queue_id
983  *   The index of the queue to add to name
984  * @return
985  *   Negative errno value on error, 0 on success.
986  */
987 __rte_internal
988 int
989 rte_eth_dma_zone_free(const struct rte_eth_dev *eth_dev, const char *name,
990                  uint16_t queue_id);
991
992 /**
993  * @internal
994  * Atomically set the link status for the specific device.
995  * It is for use by DPDK device driver use only.
996  * User applications should not call it
997  *
998  * @param dev
999  *  Pointer to struct rte_eth_dev.
1000  * @param link
1001  *  New link status value.
1002  * @return
1003  *  Same convention as eth_link_update operation.
1004  *  0   if link up status has changed
1005  *  -1  if link up status was unchanged
1006  */
1007 static inline int
1008 rte_eth_linkstatus_set(struct rte_eth_dev *dev,
1009                        const struct rte_eth_link *new_link)
1010 {
1011         uint64_t *dev_link = (uint64_t *)&(dev->data->dev_link);
1012         union {
1013                 uint64_t val64;
1014                 struct rte_eth_link link;
1015         } orig;
1016
1017         RTE_BUILD_BUG_ON(sizeof(*new_link) != sizeof(uint64_t));
1018
1019         orig.val64 = __atomic_exchange_n(dev_link, *(const uint64_t *)new_link,
1020                                         __ATOMIC_SEQ_CST);
1021
1022         return (orig.link.link_status == new_link->link_status) ? -1 : 0;
1023 }
1024
1025 /**
1026  * @internal
1027  * Atomically get the link speed and status.
1028  *
1029  * @param dev
1030  *  Pointer to struct rte_eth_dev.
1031  * @param link
1032  *  link status value.
1033  */
1034 static inline void
1035 rte_eth_linkstatus_get(const struct rte_eth_dev *dev,
1036                        struct rte_eth_link *link)
1037 {
1038         uint64_t *src = (uint64_t *)&(dev->data->dev_link);
1039         uint64_t *dst = (uint64_t *)link;
1040
1041         RTE_BUILD_BUG_ON(sizeof(*link) != sizeof(uint64_t));
1042
1043         *dst = __atomic_load_n(src, __ATOMIC_SEQ_CST);
1044 }
1045
1046 /**
1047  * Allocate an unique switch domain identifier.
1048  *
1049  * A pool of switch domain identifiers which can be allocated on request. This
1050  * will enabled devices which support the concept of switch domains to request
1051  * a switch domain id which is guaranteed to be unique from other devices
1052  * running in the same process.
1053  *
1054  * @param domain_id
1055  *  switch domain identifier parameter to pass back to application
1056  *
1057  * @return
1058  *   Negative errno value on error, 0 on success.
1059  */
1060 __rte_internal
1061 int
1062 rte_eth_switch_domain_alloc(uint16_t *domain_id);
1063
1064 /**
1065  * Free switch domain.
1066  *
1067  * Return a switch domain identifier to the pool of free identifiers after it is
1068  * no longer in use by device.
1069  *
1070  * @param domain_id
1071  *  switch domain identifier to free
1072  *
1073  * @return
1074  *   Negative errno value on error, 0 on success.
1075  */
1076 __rte_internal
1077 int
1078 rte_eth_switch_domain_free(uint16_t domain_id);
1079
1080 /** Generic Ethernet device arguments  */
1081 struct rte_eth_devargs {
1082         uint16_t ports[RTE_MAX_ETHPORTS];
1083         /** port/s number to enable on a multi-port single function */
1084         uint16_t nb_ports;
1085         /** number of ports in ports field */
1086         uint16_t representor_ports[RTE_MAX_ETHPORTS];
1087         /** representor port/s identifier to enable on device */
1088         uint16_t nb_representor_ports;
1089         /** number of ports in representor port field */
1090 };
1091
1092 /**
1093  * PMD helper function to parse ethdev arguments
1094  *
1095  * @param devargs
1096  *  device arguments
1097  * @param eth_devargs
1098  *  parsed ethdev specific arguments.
1099  *
1100  * @return
1101  *   Negative errno value on error, 0 on success.
1102  */
1103 __rte_internal
1104 int
1105 rte_eth_devargs_parse(const char *devargs, struct rte_eth_devargs *eth_devargs);
1106
1107
1108 typedef int (*ethdev_init_t)(struct rte_eth_dev *ethdev, void *init_params);
1109 typedef int (*ethdev_bus_specific_init)(struct rte_eth_dev *ethdev,
1110         void *bus_specific_init_params);
1111
1112 /**
1113  * PMD helper function for the creation of a new ethdev ports.
1114  *
1115  * @param device
1116  *  rte_device handle.
1117  * @param name
1118  *  port name.
1119  * @param priv_data_size
1120  *  size of private data required for port.
1121  * @param bus_specific_init
1122  *  port bus specific initialisation callback function
1123  * @param bus_init_params
1124  *  port bus specific initialisation parameters
1125  * @param ethdev_init
1126  *  device specific port initialization callback function
1127  * @param init_params
1128  *  port initialisation parameters
1129  *
1130  * @return
1131  *   Negative errno value on error, 0 on success.
1132  */
1133 __rte_internal
1134 int
1135 rte_eth_dev_create(struct rte_device *device, const char *name,
1136         size_t priv_data_size,
1137         ethdev_bus_specific_init bus_specific_init, void *bus_init_params,
1138         ethdev_init_t ethdev_init, void *init_params);
1139
1140
1141 typedef int (*ethdev_uninit_t)(struct rte_eth_dev *ethdev);
1142
1143 /**
1144  * PMD helper function for cleaning up the resources of a ethdev port on it's
1145  * destruction.
1146  *
1147  * @param ethdev
1148  *   ethdev handle of port.
1149  * @param ethdev_uninit
1150  *   device specific port un-initialise callback function
1151  *
1152  * @return
1153  *   Negative errno value on error, 0 on success.
1154  */
1155 __rte_internal
1156 int
1157 rte_eth_dev_destroy(struct rte_eth_dev *ethdev, ethdev_uninit_t ethdev_uninit);
1158
1159 #ifdef __cplusplus
1160 }
1161 #endif
1162
1163 #endif /* _RTE_ETHDEV_DRIVER_H_ */