ip_frag: fix double free of chained mbufs
[dpdk.git] / lib / librte_ether / rte_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4
5 #include <sys/types.h>
6 #include <sys/queue.h>
7 #include <ctype.h>
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <stdarg.h>
12 #include <errno.h>
13 #include <stdint.h>
14 #include <inttypes.h>
15 #include <netinet/in.h>
16
17 #include <rte_byteorder.h>
18 #include <rte_log.h>
19 #include <rte_debug.h>
20 #include <rte_interrupts.h>
21 #include <rte_memory.h>
22 #include <rte_memcpy.h>
23 #include <rte_memzone.h>
24 #include <rte_launch.h>
25 #include <rte_eal.h>
26 #include <rte_per_lcore.h>
27 #include <rte_lcore.h>
28 #include <rte_atomic.h>
29 #include <rte_branch_prediction.h>
30 #include <rte_common.h>
31 #include <rte_mempool.h>
32 #include <rte_malloc.h>
33 #include <rte_mbuf.h>
34 #include <rte_errno.h>
35 #include <rte_spinlock.h>
36 #include <rte_string_fns.h>
37
38 #include "rte_ether.h"
39 #include "rte_ethdev.h"
40 #include "rte_ethdev_driver.h"
41 #include "ethdev_profile.h"
42
43 static int ethdev_logtype;
44
45 #define ethdev_log(level, fmt, ...) \
46         rte_log(RTE_LOG_ ## level, ethdev_logtype, fmt "\n", ## __VA_ARGS__)
47
48 static const char *MZ_RTE_ETH_DEV_DATA = "rte_eth_dev_data";
49 struct rte_eth_dev rte_eth_devices[RTE_MAX_ETHPORTS];
50 static uint8_t eth_dev_last_created_port;
51
52 /* spinlock for eth device callbacks */
53 static rte_spinlock_t rte_eth_dev_cb_lock = RTE_SPINLOCK_INITIALIZER;
54
55 /* spinlock for add/remove rx callbacks */
56 static rte_spinlock_t rte_eth_rx_cb_lock = RTE_SPINLOCK_INITIALIZER;
57
58 /* spinlock for add/remove tx callbacks */
59 static rte_spinlock_t rte_eth_tx_cb_lock = RTE_SPINLOCK_INITIALIZER;
60
61 /* spinlock for shared data allocation */
62 static rte_spinlock_t rte_eth_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
63
64 /* store statistics names and its offset in stats structure  */
65 struct rte_eth_xstats_name_off {
66         char name[RTE_ETH_XSTATS_NAME_SIZE];
67         unsigned offset;
68 };
69
70 /* Shared memory between primary and secondary processes. */
71 static struct {
72         uint64_t next_owner_id;
73         rte_spinlock_t ownership_lock;
74         struct rte_eth_dev_data data[RTE_MAX_ETHPORTS];
75 } *rte_eth_dev_shared_data;
76
77 static const struct rte_eth_xstats_name_off rte_stats_strings[] = {
78         {"rx_good_packets", offsetof(struct rte_eth_stats, ipackets)},
79         {"tx_good_packets", offsetof(struct rte_eth_stats, opackets)},
80         {"rx_good_bytes", offsetof(struct rte_eth_stats, ibytes)},
81         {"tx_good_bytes", offsetof(struct rte_eth_stats, obytes)},
82         {"rx_missed_errors", offsetof(struct rte_eth_stats, imissed)},
83         {"rx_errors", offsetof(struct rte_eth_stats, ierrors)},
84         {"tx_errors", offsetof(struct rte_eth_stats, oerrors)},
85         {"rx_mbuf_allocation_errors", offsetof(struct rte_eth_stats,
86                 rx_nombuf)},
87 };
88
89 #define RTE_NB_STATS (sizeof(rte_stats_strings) / sizeof(rte_stats_strings[0]))
90
91 static const struct rte_eth_xstats_name_off rte_rxq_stats_strings[] = {
92         {"packets", offsetof(struct rte_eth_stats, q_ipackets)},
93         {"bytes", offsetof(struct rte_eth_stats, q_ibytes)},
94         {"errors", offsetof(struct rte_eth_stats, q_errors)},
95 };
96
97 #define RTE_NB_RXQ_STATS (sizeof(rte_rxq_stats_strings) /       \
98                 sizeof(rte_rxq_stats_strings[0]))
99
100 static const struct rte_eth_xstats_name_off rte_txq_stats_strings[] = {
101         {"packets", offsetof(struct rte_eth_stats, q_opackets)},
102         {"bytes", offsetof(struct rte_eth_stats, q_obytes)},
103 };
104 #define RTE_NB_TXQ_STATS (sizeof(rte_txq_stats_strings) /       \
105                 sizeof(rte_txq_stats_strings[0]))
106
107 #define RTE_RX_OFFLOAD_BIT2STR(_name)   \
108         { DEV_RX_OFFLOAD_##_name, #_name }
109
110 static const struct {
111         uint64_t offload;
112         const char *name;
113 } rte_rx_offload_names[] = {
114         RTE_RX_OFFLOAD_BIT2STR(VLAN_STRIP),
115         RTE_RX_OFFLOAD_BIT2STR(IPV4_CKSUM),
116         RTE_RX_OFFLOAD_BIT2STR(UDP_CKSUM),
117         RTE_RX_OFFLOAD_BIT2STR(TCP_CKSUM),
118         RTE_RX_OFFLOAD_BIT2STR(TCP_LRO),
119         RTE_RX_OFFLOAD_BIT2STR(QINQ_STRIP),
120         RTE_RX_OFFLOAD_BIT2STR(OUTER_IPV4_CKSUM),
121         RTE_RX_OFFLOAD_BIT2STR(MACSEC_STRIP),
122         RTE_RX_OFFLOAD_BIT2STR(HEADER_SPLIT),
123         RTE_RX_OFFLOAD_BIT2STR(VLAN_FILTER),
124         RTE_RX_OFFLOAD_BIT2STR(VLAN_EXTEND),
125         RTE_RX_OFFLOAD_BIT2STR(JUMBO_FRAME),
126         RTE_RX_OFFLOAD_BIT2STR(CRC_STRIP),
127         RTE_RX_OFFLOAD_BIT2STR(SCATTER),
128         RTE_RX_OFFLOAD_BIT2STR(TIMESTAMP),
129         RTE_RX_OFFLOAD_BIT2STR(SECURITY),
130 };
131
132 #undef RTE_RX_OFFLOAD_BIT2STR
133
134 #define RTE_TX_OFFLOAD_BIT2STR(_name)   \
135         { DEV_TX_OFFLOAD_##_name, #_name }
136
137 static const struct {
138         uint64_t offload;
139         const char *name;
140 } rte_tx_offload_names[] = {
141         RTE_TX_OFFLOAD_BIT2STR(VLAN_INSERT),
142         RTE_TX_OFFLOAD_BIT2STR(IPV4_CKSUM),
143         RTE_TX_OFFLOAD_BIT2STR(UDP_CKSUM),
144         RTE_TX_OFFLOAD_BIT2STR(TCP_CKSUM),
145         RTE_TX_OFFLOAD_BIT2STR(SCTP_CKSUM),
146         RTE_TX_OFFLOAD_BIT2STR(TCP_TSO),
147         RTE_TX_OFFLOAD_BIT2STR(UDP_TSO),
148         RTE_TX_OFFLOAD_BIT2STR(OUTER_IPV4_CKSUM),
149         RTE_TX_OFFLOAD_BIT2STR(QINQ_INSERT),
150         RTE_TX_OFFLOAD_BIT2STR(VXLAN_TNL_TSO),
151         RTE_TX_OFFLOAD_BIT2STR(GRE_TNL_TSO),
152         RTE_TX_OFFLOAD_BIT2STR(IPIP_TNL_TSO),
153         RTE_TX_OFFLOAD_BIT2STR(GENEVE_TNL_TSO),
154         RTE_TX_OFFLOAD_BIT2STR(MACSEC_INSERT),
155         RTE_TX_OFFLOAD_BIT2STR(MT_LOCKFREE),
156         RTE_TX_OFFLOAD_BIT2STR(MULTI_SEGS),
157         RTE_TX_OFFLOAD_BIT2STR(MBUF_FAST_FREE),
158         RTE_TX_OFFLOAD_BIT2STR(SECURITY),
159 };
160
161 #undef RTE_TX_OFFLOAD_BIT2STR
162
163 /**
164  * The user application callback description.
165  *
166  * It contains callback address to be registered by user application,
167  * the pointer to the parameters for callback, and the event type.
168  */
169 struct rte_eth_dev_callback {
170         TAILQ_ENTRY(rte_eth_dev_callback) next; /**< Callbacks list */
171         rte_eth_dev_cb_fn cb_fn;                /**< Callback address */
172         void *cb_arg;                           /**< Parameter for callback */
173         void *ret_param;                        /**< Return parameter */
174         enum rte_eth_event_type event;          /**< Interrupt event type */
175         uint32_t active;                        /**< Callback is executing */
176 };
177
178 enum {
179         STAT_QMAP_TX = 0,
180         STAT_QMAP_RX
181 };
182
183 uint16_t
184 rte_eth_find_next(uint16_t port_id)
185 {
186         while (port_id < RTE_MAX_ETHPORTS &&
187                rte_eth_devices[port_id].state != RTE_ETH_DEV_ATTACHED &&
188                rte_eth_devices[port_id].state != RTE_ETH_DEV_REMOVED)
189                 port_id++;
190
191         if (port_id >= RTE_MAX_ETHPORTS)
192                 return RTE_MAX_ETHPORTS;
193
194         return port_id;
195 }
196
197 static void
198 rte_eth_dev_shared_data_prepare(void)
199 {
200         const unsigned flags = 0;
201         const struct rte_memzone *mz;
202
203         rte_spinlock_lock(&rte_eth_shared_data_lock);
204
205         if (rte_eth_dev_shared_data == NULL) {
206                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
207                         /* Allocate port data and ownership shared memory. */
208                         mz = rte_memzone_reserve(MZ_RTE_ETH_DEV_DATA,
209                                         sizeof(*rte_eth_dev_shared_data),
210                                         rte_socket_id(), flags);
211                 } else
212                         mz = rte_memzone_lookup(MZ_RTE_ETH_DEV_DATA);
213                 if (mz == NULL)
214                         rte_panic("Cannot allocate ethdev shared data\n");
215
216                 rte_eth_dev_shared_data = mz->addr;
217                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
218                         rte_eth_dev_shared_data->next_owner_id =
219                                         RTE_ETH_DEV_NO_OWNER + 1;
220                         rte_spinlock_init(&rte_eth_dev_shared_data->ownership_lock);
221                         memset(rte_eth_dev_shared_data->data, 0,
222                                sizeof(rte_eth_dev_shared_data->data));
223                 }
224         }
225
226         rte_spinlock_unlock(&rte_eth_shared_data_lock);
227 }
228
229 struct rte_eth_dev *
230 rte_eth_dev_allocated(const char *name)
231 {
232         unsigned i;
233
234         for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
235                 if ((rte_eth_devices[i].state == RTE_ETH_DEV_ATTACHED) &&
236                     strcmp(rte_eth_devices[i].data->name, name) == 0)
237                         return &rte_eth_devices[i];
238         }
239         return NULL;
240 }
241
242 static uint16_t
243 rte_eth_dev_find_free_port(void)
244 {
245         unsigned i;
246
247         for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
248                 /* Using shared name field to find a free port. */
249                 if (rte_eth_dev_shared_data->data[i].name[0] == '\0') {
250                         RTE_ASSERT(rte_eth_devices[i].state ==
251                                    RTE_ETH_DEV_UNUSED);
252                         return i;
253                 }
254         }
255         return RTE_MAX_ETHPORTS;
256 }
257
258 static struct rte_eth_dev *
259 eth_dev_get(uint16_t port_id)
260 {
261         struct rte_eth_dev *eth_dev = &rte_eth_devices[port_id];
262
263         eth_dev->data = &rte_eth_dev_shared_data->data[port_id];
264         eth_dev->state = RTE_ETH_DEV_ATTACHED;
265
266         eth_dev_last_created_port = port_id;
267
268         return eth_dev;
269 }
270
271 struct rte_eth_dev *
272 rte_eth_dev_allocate(const char *name)
273 {
274         uint16_t port_id;
275         struct rte_eth_dev *eth_dev = NULL;
276
277         rte_eth_dev_shared_data_prepare();
278
279         /* Synchronize port creation between primary and secondary threads. */
280         rte_spinlock_lock(&rte_eth_dev_shared_data->ownership_lock);
281
282         port_id = rte_eth_dev_find_free_port();
283         if (port_id == RTE_MAX_ETHPORTS) {
284                 ethdev_log(ERR, "Reached maximum number of Ethernet ports");
285                 goto unlock;
286         }
287
288         if (rte_eth_dev_allocated(name) != NULL) {
289                 ethdev_log(ERR,
290                         "Ethernet Device with name %s already allocated!",
291                         name);
292                 goto unlock;
293         }
294
295         eth_dev = eth_dev_get(port_id);
296         snprintf(eth_dev->data->name, sizeof(eth_dev->data->name), "%s", name);
297         eth_dev->data->port_id = port_id;
298         eth_dev->data->mtu = ETHER_MTU;
299
300 unlock:
301         rte_spinlock_unlock(&rte_eth_dev_shared_data->ownership_lock);
302
303         if (eth_dev != NULL)
304                 _rte_eth_dev_callback_process(eth_dev, RTE_ETH_EVENT_NEW, NULL);
305
306         return eth_dev;
307 }
308
309 /*
310  * Attach to a port already registered by the primary process, which
311  * makes sure that the same device would have the same port id both
312  * in the primary and secondary process.
313  */
314 struct rte_eth_dev *
315 rte_eth_dev_attach_secondary(const char *name)
316 {
317         uint16_t i;
318         struct rte_eth_dev *eth_dev = NULL;
319
320         rte_eth_dev_shared_data_prepare();
321
322         /* Synchronize port attachment to primary port creation and release. */
323         rte_spinlock_lock(&rte_eth_dev_shared_data->ownership_lock);
324
325         for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
326                 if (strcmp(rte_eth_dev_shared_data->data[i].name, name) == 0)
327                         break;
328         }
329         if (i == RTE_MAX_ETHPORTS) {
330                 RTE_PMD_DEBUG_TRACE(
331                         "device %s is not driven by the primary process\n",
332                         name);
333         } else {
334                 eth_dev = eth_dev_get(i);
335                 RTE_ASSERT(eth_dev->data->port_id == i);
336         }
337
338         rte_spinlock_unlock(&rte_eth_dev_shared_data->ownership_lock);
339         return eth_dev;
340 }
341
342 int
343 rte_eth_dev_release_port(struct rte_eth_dev *eth_dev)
344 {
345         if (eth_dev == NULL)
346                 return -EINVAL;
347
348         rte_eth_dev_shared_data_prepare();
349
350         rte_spinlock_lock(&rte_eth_dev_shared_data->ownership_lock);
351
352         eth_dev->state = RTE_ETH_DEV_UNUSED;
353
354         memset(eth_dev->data, 0, sizeof(struct rte_eth_dev_data));
355
356         rte_spinlock_unlock(&rte_eth_dev_shared_data->ownership_lock);
357
358         _rte_eth_dev_callback_process(eth_dev, RTE_ETH_EVENT_DESTROY, NULL);
359
360         return 0;
361 }
362
363 int
364 rte_eth_dev_is_valid_port(uint16_t port_id)
365 {
366         if (port_id >= RTE_MAX_ETHPORTS ||
367             (rte_eth_devices[port_id].state == RTE_ETH_DEV_UNUSED))
368                 return 0;
369         else
370                 return 1;
371 }
372
373 static int
374 rte_eth_is_valid_owner_id(uint64_t owner_id)
375 {
376         if (owner_id == RTE_ETH_DEV_NO_OWNER ||
377             rte_eth_dev_shared_data->next_owner_id <= owner_id) {
378                 RTE_PMD_DEBUG_TRACE("Invalid owner_id=%016lX.\n", owner_id);
379                 return 0;
380         }
381         return 1;
382 }
383
384 uint64_t __rte_experimental
385 rte_eth_find_next_owned_by(uint16_t port_id, const uint64_t owner_id)
386 {
387         while (port_id < RTE_MAX_ETHPORTS &&
388                ((rte_eth_devices[port_id].state != RTE_ETH_DEV_ATTACHED &&
389                rte_eth_devices[port_id].state != RTE_ETH_DEV_REMOVED) ||
390                rte_eth_devices[port_id].data->owner.id != owner_id))
391                 port_id++;
392
393         if (port_id >= RTE_MAX_ETHPORTS)
394                 return RTE_MAX_ETHPORTS;
395
396         return port_id;
397 }
398
399 int __rte_experimental
400 rte_eth_dev_owner_new(uint64_t *owner_id)
401 {
402         rte_eth_dev_shared_data_prepare();
403
404         rte_spinlock_lock(&rte_eth_dev_shared_data->ownership_lock);
405
406         *owner_id = rte_eth_dev_shared_data->next_owner_id++;
407
408         rte_spinlock_unlock(&rte_eth_dev_shared_data->ownership_lock);
409         return 0;
410 }
411
412 static int
413 _rte_eth_dev_owner_set(const uint16_t port_id, const uint64_t old_owner_id,
414                        const struct rte_eth_dev_owner *new_owner)
415 {
416         struct rte_eth_dev_owner *port_owner;
417         int sret;
418
419         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
420
421         if (!rte_eth_is_valid_owner_id(new_owner->id) &&
422             !rte_eth_is_valid_owner_id(old_owner_id))
423                 return -EINVAL;
424
425         port_owner = &rte_eth_devices[port_id].data->owner;
426         if (port_owner->id != old_owner_id) {
427                 RTE_PMD_DEBUG_TRACE("Cannot set owner to port %d already owned"
428                                     " by %s_%016lX.\n", port_id,
429                                     port_owner->name, port_owner->id);
430                 return -EPERM;
431         }
432
433         sret = snprintf(port_owner->name, RTE_ETH_MAX_OWNER_NAME_LEN, "%s",
434                         new_owner->name);
435         if (sret < 0 || sret >= RTE_ETH_MAX_OWNER_NAME_LEN)
436                 RTE_PMD_DEBUG_TRACE("Port %d owner name was truncated.\n",
437                                     port_id);
438
439         port_owner->id = new_owner->id;
440
441         RTE_PMD_DEBUG_TRACE("Port %d owner is %s_%016lX.\n", port_id,
442                             new_owner->name, new_owner->id);
443
444         return 0;
445 }
446
447 int __rte_experimental
448 rte_eth_dev_owner_set(const uint16_t port_id,
449                       const struct rte_eth_dev_owner *owner)
450 {
451         int ret;
452
453         rte_eth_dev_shared_data_prepare();
454
455         rte_spinlock_lock(&rte_eth_dev_shared_data->ownership_lock);
456
457         ret = _rte_eth_dev_owner_set(port_id, RTE_ETH_DEV_NO_OWNER, owner);
458
459         rte_spinlock_unlock(&rte_eth_dev_shared_data->ownership_lock);
460         return ret;
461 }
462
463 int __rte_experimental
464 rte_eth_dev_owner_unset(const uint16_t port_id, const uint64_t owner_id)
465 {
466         const struct rte_eth_dev_owner new_owner = (struct rte_eth_dev_owner)
467                         {.id = RTE_ETH_DEV_NO_OWNER, .name = ""};
468         int ret;
469
470         rte_eth_dev_shared_data_prepare();
471
472         rte_spinlock_lock(&rte_eth_dev_shared_data->ownership_lock);
473
474         ret = _rte_eth_dev_owner_set(port_id, owner_id, &new_owner);
475
476         rte_spinlock_unlock(&rte_eth_dev_shared_data->ownership_lock);
477         return ret;
478 }
479
480 void __rte_experimental
481 rte_eth_dev_owner_delete(const uint64_t owner_id)
482 {
483         uint16_t port_id;
484
485         rte_eth_dev_shared_data_prepare();
486
487         rte_spinlock_lock(&rte_eth_dev_shared_data->ownership_lock);
488
489         if (rte_eth_is_valid_owner_id(owner_id)) {
490                 RTE_ETH_FOREACH_DEV_OWNED_BY(port_id, owner_id)
491                         memset(&rte_eth_devices[port_id].data->owner, 0,
492                                sizeof(struct rte_eth_dev_owner));
493                 RTE_PMD_DEBUG_TRACE("All port owners owned by %016X identifier"
494                                     " have removed.\n", owner_id);
495         }
496
497         rte_spinlock_unlock(&rte_eth_dev_shared_data->ownership_lock);
498 }
499
500 int __rte_experimental
501 rte_eth_dev_owner_get(const uint16_t port_id, struct rte_eth_dev_owner *owner)
502 {
503         int ret = 0;
504
505         rte_eth_dev_shared_data_prepare();
506
507         rte_spinlock_lock(&rte_eth_dev_shared_data->ownership_lock);
508
509         if (!rte_eth_dev_is_valid_port(port_id)) {
510                 RTE_PMD_DEBUG_TRACE("Invalid port_id=%d\n", port_id);
511                 ret = -ENODEV;
512         } else {
513                 rte_memcpy(owner, &rte_eth_devices[port_id].data->owner,
514                            sizeof(*owner));
515         }
516
517         rte_spinlock_unlock(&rte_eth_dev_shared_data->ownership_lock);
518         return ret;
519 }
520
521 int
522 rte_eth_dev_socket_id(uint16_t port_id)
523 {
524         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
525         return rte_eth_devices[port_id].data->numa_node;
526 }
527
528 void *
529 rte_eth_dev_get_sec_ctx(uint16_t port_id)
530 {
531         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, NULL);
532         return rte_eth_devices[port_id].security_ctx;
533 }
534
535 uint16_t
536 rte_eth_dev_count(void)
537 {
538         uint16_t p;
539         uint16_t count;
540
541         count = 0;
542
543         RTE_ETH_FOREACH_DEV(p)
544                 count++;
545
546         return count;
547 }
548
549 int
550 rte_eth_dev_get_name_by_port(uint16_t port_id, char *name)
551 {
552         char *tmp;
553
554         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
555
556         if (name == NULL) {
557                 RTE_PMD_DEBUG_TRACE("Null pointer is specified\n");
558                 return -EINVAL;
559         }
560
561         /* shouldn't check 'rte_eth_devices[i].data',
562          * because it might be overwritten by VDEV PMD */
563         tmp = rte_eth_dev_shared_data->data[port_id].name;
564         strcpy(name, tmp);
565         return 0;
566 }
567
568 int
569 rte_eth_dev_get_port_by_name(const char *name, uint16_t *port_id)
570 {
571         uint32_t pid;
572
573         if (name == NULL) {
574                 RTE_PMD_DEBUG_TRACE("Null pointer is specified\n");
575                 return -EINVAL;
576         }
577
578         for (pid = 0; pid < RTE_MAX_ETHPORTS; pid++) {
579                 if (rte_eth_devices[pid].state != RTE_ETH_DEV_UNUSED &&
580                     !strcmp(name, rte_eth_dev_shared_data->data[pid].name)) {
581                         *port_id = pid;
582                         return 0;
583                 }
584         }
585
586         return -ENODEV;
587 }
588
589 static int
590 eth_err(uint16_t port_id, int ret)
591 {
592         if (ret == 0)
593                 return 0;
594         if (rte_eth_dev_is_removed(port_id))
595                 return -EIO;
596         return ret;
597 }
598
599 /* attach the new device, then store port_id of the device */
600 int
601 rte_eth_dev_attach(const char *devargs, uint16_t *port_id)
602 {
603         int ret = -1;
604         int current = rte_eth_dev_count();
605         char *name = NULL;
606         char *args = NULL;
607
608         if ((devargs == NULL) || (port_id == NULL)) {
609                 ret = -EINVAL;
610                 goto err;
611         }
612
613         /* parse devargs, then retrieve device name and args */
614         if (rte_eal_parse_devargs_str(devargs, &name, &args))
615                 goto err;
616
617         ret = rte_eal_dev_attach(name, args);
618         if (ret < 0)
619                 goto err;
620
621         /* no point looking at the port count if no port exists */
622         if (!rte_eth_dev_count()) {
623                 ethdev_log(ERR, "No port found for device (%s)", name);
624                 ret = -1;
625                 goto err;
626         }
627
628         /* if nothing happened, there is a bug here, since some driver told us
629          * it did attach a device, but did not create a port.
630          */
631         if (current == rte_eth_dev_count()) {
632                 ret = -1;
633                 goto err;
634         }
635
636         *port_id = eth_dev_last_created_port;
637         ret = 0;
638
639 err:
640         free(name);
641         free(args);
642         return ret;
643 }
644
645 /* detach the device, then store the name of the device */
646 int
647 rte_eth_dev_detach(uint16_t port_id, char *name)
648 {
649         uint32_t dev_flags;
650         int ret = -1;
651
652         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
653
654         if (name == NULL) {
655                 ret = -EINVAL;
656                 goto err;
657         }
658
659         dev_flags = rte_eth_devices[port_id].data->dev_flags;
660         if (dev_flags & RTE_ETH_DEV_BONDED_SLAVE) {
661                 ethdev_log(ERR,
662                         "Port %" PRIu16 " is bonded, cannot detach", port_id);
663                 ret = -ENOTSUP;
664                 goto err;
665         }
666
667         snprintf(name, sizeof(rte_eth_devices[port_id].data->name),
668                  "%s", rte_eth_devices[port_id].data->name);
669
670         ret = rte_eal_dev_detach(rte_eth_devices[port_id].device);
671         if (ret < 0)
672                 goto err;
673
674         rte_eth_dev_release_port(&rte_eth_devices[port_id]);
675         return 0;
676
677 err:
678         return ret;
679 }
680
681 static int
682 rte_eth_dev_rx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues)
683 {
684         uint16_t old_nb_queues = dev->data->nb_rx_queues;
685         void **rxq;
686         unsigned i;
687
688         if (dev->data->rx_queues == NULL && nb_queues != 0) { /* first time configuration */
689                 dev->data->rx_queues = rte_zmalloc("ethdev->rx_queues",
690                                 sizeof(dev->data->rx_queues[0]) * nb_queues,
691                                 RTE_CACHE_LINE_SIZE);
692                 if (dev->data->rx_queues == NULL) {
693                         dev->data->nb_rx_queues = 0;
694                         return -(ENOMEM);
695                 }
696         } else if (dev->data->rx_queues != NULL && nb_queues != 0) { /* re-configure */
697                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release, -ENOTSUP);
698
699                 rxq = dev->data->rx_queues;
700
701                 for (i = nb_queues; i < old_nb_queues; i++)
702                         (*dev->dev_ops->rx_queue_release)(rxq[i]);
703                 rxq = rte_realloc(rxq, sizeof(rxq[0]) * nb_queues,
704                                 RTE_CACHE_LINE_SIZE);
705                 if (rxq == NULL)
706                         return -(ENOMEM);
707                 if (nb_queues > old_nb_queues) {
708                         uint16_t new_qs = nb_queues - old_nb_queues;
709
710                         memset(rxq + old_nb_queues, 0,
711                                 sizeof(rxq[0]) * new_qs);
712                 }
713
714                 dev->data->rx_queues = rxq;
715
716         } else if (dev->data->rx_queues != NULL && nb_queues == 0) {
717                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release, -ENOTSUP);
718
719                 rxq = dev->data->rx_queues;
720
721                 for (i = nb_queues; i < old_nb_queues; i++)
722                         (*dev->dev_ops->rx_queue_release)(rxq[i]);
723
724                 rte_free(dev->data->rx_queues);
725                 dev->data->rx_queues = NULL;
726         }
727         dev->data->nb_rx_queues = nb_queues;
728         return 0;
729 }
730
731 int
732 rte_eth_dev_rx_queue_start(uint16_t port_id, uint16_t rx_queue_id)
733 {
734         struct rte_eth_dev *dev;
735
736         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
737
738         dev = &rte_eth_devices[port_id];
739         if (!dev->data->dev_started) {
740                 RTE_PMD_DEBUG_TRACE(
741                     "port %d must be started before start any queue\n", port_id);
742                 return -EINVAL;
743         }
744
745         if (rx_queue_id >= dev->data->nb_rx_queues) {
746                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%d\n", rx_queue_id);
747                 return -EINVAL;
748         }
749
750         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_start, -ENOTSUP);
751
752         if (dev->data->rx_queue_state[rx_queue_id] != RTE_ETH_QUEUE_STATE_STOPPED) {
753                 RTE_PMD_DEBUG_TRACE("Queue %" PRIu16" of device with port_id=%" PRIu8
754                         " already started\n",
755                         rx_queue_id, port_id);
756                 return 0;
757         }
758
759         return eth_err(port_id, dev->dev_ops->rx_queue_start(dev,
760                                                              rx_queue_id));
761
762 }
763
764 int
765 rte_eth_dev_rx_queue_stop(uint16_t port_id, uint16_t rx_queue_id)
766 {
767         struct rte_eth_dev *dev;
768
769         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
770
771         dev = &rte_eth_devices[port_id];
772         if (rx_queue_id >= dev->data->nb_rx_queues) {
773                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%d\n", rx_queue_id);
774                 return -EINVAL;
775         }
776
777         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_stop, -ENOTSUP);
778
779         if (dev->data->rx_queue_state[rx_queue_id] == RTE_ETH_QUEUE_STATE_STOPPED) {
780                 RTE_PMD_DEBUG_TRACE("Queue %" PRIu16" of device with port_id=%" PRIu8
781                         " already stopped\n",
782                         rx_queue_id, port_id);
783                 return 0;
784         }
785
786         return eth_err(port_id, dev->dev_ops->rx_queue_stop(dev, rx_queue_id));
787
788 }
789
790 int
791 rte_eth_dev_tx_queue_start(uint16_t port_id, uint16_t tx_queue_id)
792 {
793         struct rte_eth_dev *dev;
794
795         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
796
797         dev = &rte_eth_devices[port_id];
798         if (!dev->data->dev_started) {
799                 RTE_PMD_DEBUG_TRACE(
800                     "port %d must be started before start any queue\n", port_id);
801                 return -EINVAL;
802         }
803
804         if (tx_queue_id >= dev->data->nb_tx_queues) {
805                 RTE_PMD_DEBUG_TRACE("Invalid TX queue_id=%d\n", tx_queue_id);
806                 return -EINVAL;
807         }
808
809         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_start, -ENOTSUP);
810
811         if (dev->data->tx_queue_state[tx_queue_id] != RTE_ETH_QUEUE_STATE_STOPPED) {
812                 RTE_PMD_DEBUG_TRACE("Queue %" PRIu16" of device with port_id=%" PRIu8
813                         " already started\n",
814                         tx_queue_id, port_id);
815                 return 0;
816         }
817
818         return eth_err(port_id, dev->dev_ops->tx_queue_start(dev,
819                                                              tx_queue_id));
820
821 }
822
823 int
824 rte_eth_dev_tx_queue_stop(uint16_t port_id, uint16_t tx_queue_id)
825 {
826         struct rte_eth_dev *dev;
827
828         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
829
830         dev = &rte_eth_devices[port_id];
831         if (tx_queue_id >= dev->data->nb_tx_queues) {
832                 RTE_PMD_DEBUG_TRACE("Invalid TX queue_id=%d\n", tx_queue_id);
833                 return -EINVAL;
834         }
835
836         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_stop, -ENOTSUP);
837
838         if (dev->data->tx_queue_state[tx_queue_id] == RTE_ETH_QUEUE_STATE_STOPPED) {
839                 RTE_PMD_DEBUG_TRACE("Queue %" PRIu16" of device with port_id=%" PRIu8
840                         " already stopped\n",
841                         tx_queue_id, port_id);
842                 return 0;
843         }
844
845         return eth_err(port_id, dev->dev_ops->tx_queue_stop(dev, tx_queue_id));
846
847 }
848
849 static int
850 rte_eth_dev_tx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues)
851 {
852         uint16_t old_nb_queues = dev->data->nb_tx_queues;
853         void **txq;
854         unsigned i;
855
856         if (dev->data->tx_queues == NULL && nb_queues != 0) { /* first time configuration */
857                 dev->data->tx_queues = rte_zmalloc("ethdev->tx_queues",
858                                                    sizeof(dev->data->tx_queues[0]) * nb_queues,
859                                                    RTE_CACHE_LINE_SIZE);
860                 if (dev->data->tx_queues == NULL) {
861                         dev->data->nb_tx_queues = 0;
862                         return -(ENOMEM);
863                 }
864         } else if (dev->data->tx_queues != NULL && nb_queues != 0) { /* re-configure */
865                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release, -ENOTSUP);
866
867                 txq = dev->data->tx_queues;
868
869                 for (i = nb_queues; i < old_nb_queues; i++)
870                         (*dev->dev_ops->tx_queue_release)(txq[i]);
871                 txq = rte_realloc(txq, sizeof(txq[0]) * nb_queues,
872                                   RTE_CACHE_LINE_SIZE);
873                 if (txq == NULL)
874                         return -ENOMEM;
875                 if (nb_queues > old_nb_queues) {
876                         uint16_t new_qs = nb_queues - old_nb_queues;
877
878                         memset(txq + old_nb_queues, 0,
879                                sizeof(txq[0]) * new_qs);
880                 }
881
882                 dev->data->tx_queues = txq;
883
884         } else if (dev->data->tx_queues != NULL && nb_queues == 0) {
885                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release, -ENOTSUP);
886
887                 txq = dev->data->tx_queues;
888
889                 for (i = nb_queues; i < old_nb_queues; i++)
890                         (*dev->dev_ops->tx_queue_release)(txq[i]);
891
892                 rte_free(dev->data->tx_queues);
893                 dev->data->tx_queues = NULL;
894         }
895         dev->data->nb_tx_queues = nb_queues;
896         return 0;
897 }
898
899 uint32_t
900 rte_eth_speed_bitflag(uint32_t speed, int duplex)
901 {
902         switch (speed) {
903         case ETH_SPEED_NUM_10M:
904                 return duplex ? ETH_LINK_SPEED_10M : ETH_LINK_SPEED_10M_HD;
905         case ETH_SPEED_NUM_100M:
906                 return duplex ? ETH_LINK_SPEED_100M : ETH_LINK_SPEED_100M_HD;
907         case ETH_SPEED_NUM_1G:
908                 return ETH_LINK_SPEED_1G;
909         case ETH_SPEED_NUM_2_5G:
910                 return ETH_LINK_SPEED_2_5G;
911         case ETH_SPEED_NUM_5G:
912                 return ETH_LINK_SPEED_5G;
913         case ETH_SPEED_NUM_10G:
914                 return ETH_LINK_SPEED_10G;
915         case ETH_SPEED_NUM_20G:
916                 return ETH_LINK_SPEED_20G;
917         case ETH_SPEED_NUM_25G:
918                 return ETH_LINK_SPEED_25G;
919         case ETH_SPEED_NUM_40G:
920                 return ETH_LINK_SPEED_40G;
921         case ETH_SPEED_NUM_50G:
922                 return ETH_LINK_SPEED_50G;
923         case ETH_SPEED_NUM_56G:
924                 return ETH_LINK_SPEED_56G;
925         case ETH_SPEED_NUM_100G:
926                 return ETH_LINK_SPEED_100G;
927         default:
928                 return 0;
929         }
930 }
931
932 /**
933  * A conversion function from rxmode bitfield API.
934  */
935 static void
936 rte_eth_convert_rx_offload_bitfield(const struct rte_eth_rxmode *rxmode,
937                                     uint64_t *rx_offloads)
938 {
939         uint64_t offloads = 0;
940
941         if (rxmode->header_split == 1)
942                 offloads |= DEV_RX_OFFLOAD_HEADER_SPLIT;
943         if (rxmode->hw_ip_checksum == 1)
944                 offloads |= DEV_RX_OFFLOAD_CHECKSUM;
945         if (rxmode->hw_vlan_filter == 1)
946                 offloads |= DEV_RX_OFFLOAD_VLAN_FILTER;
947         if (rxmode->hw_vlan_strip == 1)
948                 offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
949         if (rxmode->hw_vlan_extend == 1)
950                 offloads |= DEV_RX_OFFLOAD_VLAN_EXTEND;
951         if (rxmode->jumbo_frame == 1)
952                 offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
953         if (rxmode->hw_strip_crc == 1)
954                 offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
955         if (rxmode->enable_scatter == 1)
956                 offloads |= DEV_RX_OFFLOAD_SCATTER;
957         if (rxmode->enable_lro == 1)
958                 offloads |= DEV_RX_OFFLOAD_TCP_LRO;
959         if (rxmode->hw_timestamp == 1)
960                 offloads |= DEV_RX_OFFLOAD_TIMESTAMP;
961         if (rxmode->security == 1)
962                 offloads |= DEV_RX_OFFLOAD_SECURITY;
963
964         *rx_offloads = offloads;
965 }
966
967 /**
968  * A conversion function from rxmode offloads API.
969  */
970 static void
971 rte_eth_convert_rx_offloads(const uint64_t rx_offloads,
972                             struct rte_eth_rxmode *rxmode)
973 {
974
975         if (rx_offloads & DEV_RX_OFFLOAD_HEADER_SPLIT)
976                 rxmode->header_split = 1;
977         else
978                 rxmode->header_split = 0;
979         if (rx_offloads & DEV_RX_OFFLOAD_CHECKSUM)
980                 rxmode->hw_ip_checksum = 1;
981         else
982                 rxmode->hw_ip_checksum = 0;
983         if (rx_offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
984                 rxmode->hw_vlan_filter = 1;
985         else
986                 rxmode->hw_vlan_filter = 0;
987         if (rx_offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
988                 rxmode->hw_vlan_strip = 1;
989         else
990                 rxmode->hw_vlan_strip = 0;
991         if (rx_offloads & DEV_RX_OFFLOAD_VLAN_EXTEND)
992                 rxmode->hw_vlan_extend = 1;
993         else
994                 rxmode->hw_vlan_extend = 0;
995         if (rx_offloads & DEV_RX_OFFLOAD_JUMBO_FRAME)
996                 rxmode->jumbo_frame = 1;
997         else
998                 rxmode->jumbo_frame = 0;
999         if (rx_offloads & DEV_RX_OFFLOAD_CRC_STRIP)
1000                 rxmode->hw_strip_crc = 1;
1001         else
1002                 rxmode->hw_strip_crc = 0;
1003         if (rx_offloads & DEV_RX_OFFLOAD_SCATTER)
1004                 rxmode->enable_scatter = 1;
1005         else
1006                 rxmode->enable_scatter = 0;
1007         if (rx_offloads & DEV_RX_OFFLOAD_TCP_LRO)
1008                 rxmode->enable_lro = 1;
1009         else
1010                 rxmode->enable_lro = 0;
1011         if (rx_offloads & DEV_RX_OFFLOAD_TIMESTAMP)
1012                 rxmode->hw_timestamp = 1;
1013         else
1014                 rxmode->hw_timestamp = 0;
1015         if (rx_offloads & DEV_RX_OFFLOAD_SECURITY)
1016                 rxmode->security = 1;
1017         else
1018                 rxmode->security = 0;
1019 }
1020
1021 const char * __rte_experimental
1022 rte_eth_dev_rx_offload_name(uint64_t offload)
1023 {
1024         const char *name = "UNKNOWN";
1025         unsigned int i;
1026
1027         for (i = 0; i < RTE_DIM(rte_rx_offload_names); ++i) {
1028                 if (offload == rte_rx_offload_names[i].offload) {
1029                         name = rte_rx_offload_names[i].name;
1030                         break;
1031                 }
1032         }
1033
1034         return name;
1035 }
1036
1037 const char * __rte_experimental
1038 rte_eth_dev_tx_offload_name(uint64_t offload)
1039 {
1040         const char *name = "UNKNOWN";
1041         unsigned int i;
1042
1043         for (i = 0; i < RTE_DIM(rte_tx_offload_names); ++i) {
1044                 if (offload == rte_tx_offload_names[i].offload) {
1045                         name = rte_tx_offload_names[i].name;
1046                         break;
1047                 }
1048         }
1049
1050         return name;
1051 }
1052
1053 int
1054 rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
1055                       const struct rte_eth_conf *dev_conf)
1056 {
1057         struct rte_eth_dev *dev;
1058         struct rte_eth_dev_info dev_info;
1059         struct rte_eth_conf local_conf = *dev_conf;
1060         int diag;
1061
1062         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1063
1064         if (nb_rx_q > RTE_MAX_QUEUES_PER_PORT) {
1065                 RTE_PMD_DEBUG_TRACE(
1066                         "Number of RX queues requested (%u) is greater than max supported(%d)\n",
1067                         nb_rx_q, RTE_MAX_QUEUES_PER_PORT);
1068                 return -EINVAL;
1069         }
1070
1071         if (nb_tx_q > RTE_MAX_QUEUES_PER_PORT) {
1072                 RTE_PMD_DEBUG_TRACE(
1073                         "Number of TX queues requested (%u) is greater than max supported(%d)\n",
1074                         nb_tx_q, RTE_MAX_QUEUES_PER_PORT);
1075                 return -EINVAL;
1076         }
1077
1078         dev = &rte_eth_devices[port_id];
1079
1080         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
1081         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_configure, -ENOTSUP);
1082
1083         if (dev->data->dev_started) {
1084                 RTE_PMD_DEBUG_TRACE(
1085                     "port %d must be stopped to allow configuration\n", port_id);
1086                 return -EBUSY;
1087         }
1088
1089         /*
1090          * Convert between the offloads API to enable PMDs to support
1091          * only one of them.
1092          */
1093         if (dev_conf->rxmode.ignore_offload_bitfield == 0) {
1094                 rte_eth_convert_rx_offload_bitfield(
1095                                 &dev_conf->rxmode, &local_conf.rxmode.offloads);
1096         } else {
1097                 rte_eth_convert_rx_offloads(dev_conf->rxmode.offloads,
1098                                             &local_conf.rxmode);
1099         }
1100
1101         /* Copy the dev_conf parameter into the dev structure */
1102         memcpy(&dev->data->dev_conf, &local_conf, sizeof(dev->data->dev_conf));
1103
1104         /*
1105          * Check that the numbers of RX and TX queues are not greater
1106          * than the maximum number of RX and TX queues supported by the
1107          * configured device.
1108          */
1109         (*dev->dev_ops->dev_infos_get)(dev, &dev_info);
1110
1111         if (nb_rx_q == 0 && nb_tx_q == 0) {
1112                 RTE_PMD_DEBUG_TRACE("ethdev port_id=%d both rx and tx queue cannot be 0\n", port_id);
1113                 return -EINVAL;
1114         }
1115
1116         if (nb_rx_q > dev_info.max_rx_queues) {
1117                 RTE_PMD_DEBUG_TRACE("ethdev port_id=%d nb_rx_queues=%d > %d\n",
1118                                 port_id, nb_rx_q, dev_info.max_rx_queues);
1119                 return -EINVAL;
1120         }
1121
1122         if (nb_tx_q > dev_info.max_tx_queues) {
1123                 RTE_PMD_DEBUG_TRACE("ethdev port_id=%d nb_tx_queues=%d > %d\n",
1124                                 port_id, nb_tx_q, dev_info.max_tx_queues);
1125                 return -EINVAL;
1126         }
1127
1128         /* Check that the device supports requested interrupts */
1129         if ((dev_conf->intr_conf.lsc == 1) &&
1130                 (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC))) {
1131                         RTE_PMD_DEBUG_TRACE("driver %s does not support lsc\n",
1132                                         dev->device->driver->name);
1133                         return -EINVAL;
1134         }
1135         if ((dev_conf->intr_conf.rmv == 1) &&
1136             (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_RMV))) {
1137                 RTE_PMD_DEBUG_TRACE("driver %s does not support rmv\n",
1138                                     dev->device->driver->name);
1139                 return -EINVAL;
1140         }
1141
1142         /*
1143          * If jumbo frames are enabled, check that the maximum RX packet
1144          * length is supported by the configured device.
1145          */
1146         if (local_conf.rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
1147                 if (dev_conf->rxmode.max_rx_pkt_len >
1148                     dev_info.max_rx_pktlen) {
1149                         RTE_PMD_DEBUG_TRACE("ethdev port_id=%d max_rx_pkt_len %u"
1150                                 " > max valid value %u\n",
1151                                 port_id,
1152                                 (unsigned)dev_conf->rxmode.max_rx_pkt_len,
1153                                 (unsigned)dev_info.max_rx_pktlen);
1154                         return -EINVAL;
1155                 } else if (dev_conf->rxmode.max_rx_pkt_len < ETHER_MIN_LEN) {
1156                         RTE_PMD_DEBUG_TRACE("ethdev port_id=%d max_rx_pkt_len %u"
1157                                 " < min valid value %u\n",
1158                                 port_id,
1159                                 (unsigned)dev_conf->rxmode.max_rx_pkt_len,
1160                                 (unsigned)ETHER_MIN_LEN);
1161                         return -EINVAL;
1162                 }
1163         } else {
1164                 if (dev_conf->rxmode.max_rx_pkt_len < ETHER_MIN_LEN ||
1165                         dev_conf->rxmode.max_rx_pkt_len > ETHER_MAX_LEN)
1166                         /* Use default value */
1167                         dev->data->dev_conf.rxmode.max_rx_pkt_len =
1168                                                         ETHER_MAX_LEN;
1169         }
1170
1171         /*
1172          * Setup new number of RX/TX queues and reconfigure device.
1173          */
1174         diag = rte_eth_dev_rx_queue_config(dev, nb_rx_q);
1175         if (diag != 0) {
1176                 RTE_PMD_DEBUG_TRACE("port%d rte_eth_dev_rx_queue_config = %d\n",
1177                                 port_id, diag);
1178                 return diag;
1179         }
1180
1181         diag = rte_eth_dev_tx_queue_config(dev, nb_tx_q);
1182         if (diag != 0) {
1183                 RTE_PMD_DEBUG_TRACE("port%d rte_eth_dev_tx_queue_config = %d\n",
1184                                 port_id, diag);
1185                 rte_eth_dev_rx_queue_config(dev, 0);
1186                 return diag;
1187         }
1188
1189         diag = (*dev->dev_ops->dev_configure)(dev);
1190         if (diag != 0) {
1191                 RTE_PMD_DEBUG_TRACE("port%d dev_configure = %d\n",
1192                                 port_id, diag);
1193                 rte_eth_dev_rx_queue_config(dev, 0);
1194                 rte_eth_dev_tx_queue_config(dev, 0);
1195                 return eth_err(port_id, diag);
1196         }
1197
1198         /* Initialize Rx profiling if enabled at compilation time. */
1199         diag = __rte_eth_profile_rx_init(port_id, dev);
1200         if (diag != 0) {
1201                 RTE_PMD_DEBUG_TRACE("port%d __rte_eth_profile_rx_init = %d\n",
1202                                 port_id, diag);
1203                 rte_eth_dev_rx_queue_config(dev, 0);
1204                 rte_eth_dev_tx_queue_config(dev, 0);
1205                 return eth_err(port_id, diag);
1206         }
1207
1208         return 0;
1209 }
1210
1211 void
1212 _rte_eth_dev_reset(struct rte_eth_dev *dev)
1213 {
1214         if (dev->data->dev_started) {
1215                 RTE_PMD_DEBUG_TRACE(
1216                         "port %d must be stopped to allow reset\n",
1217                         dev->data->port_id);
1218                 return;
1219         }
1220
1221         rte_eth_dev_rx_queue_config(dev, 0);
1222         rte_eth_dev_tx_queue_config(dev, 0);
1223
1224         memset(&dev->data->dev_conf, 0, sizeof(dev->data->dev_conf));
1225 }
1226
1227 static void
1228 rte_eth_dev_config_restore(uint16_t port_id)
1229 {
1230         struct rte_eth_dev *dev;
1231         struct rte_eth_dev_info dev_info;
1232         struct ether_addr *addr;
1233         uint16_t i;
1234         uint32_t pool = 0;
1235         uint64_t pool_mask;
1236
1237         dev = &rte_eth_devices[port_id];
1238
1239         rte_eth_dev_info_get(port_id, &dev_info);
1240
1241         /* replay MAC address configuration including default MAC */
1242         addr = &dev->data->mac_addrs[0];
1243         if (*dev->dev_ops->mac_addr_set != NULL)
1244                 (*dev->dev_ops->mac_addr_set)(dev, addr);
1245         else if (*dev->dev_ops->mac_addr_add != NULL)
1246                 (*dev->dev_ops->mac_addr_add)(dev, addr, 0, pool);
1247
1248         if (*dev->dev_ops->mac_addr_add != NULL) {
1249                 for (i = 1; i < dev_info.max_mac_addrs; i++) {
1250                         addr = &dev->data->mac_addrs[i];
1251
1252                         /* skip zero address */
1253                         if (is_zero_ether_addr(addr))
1254                                 continue;
1255
1256                         pool = 0;
1257                         pool_mask = dev->data->mac_pool_sel[i];
1258
1259                         do {
1260                                 if (pool_mask & 1ULL)
1261                                         (*dev->dev_ops->mac_addr_add)(dev,
1262                                                 addr, i, pool);
1263                                 pool_mask >>= 1;
1264                                 pool++;
1265                         } while (pool_mask);
1266                 }
1267         }
1268
1269         /* replay promiscuous configuration */
1270         if (rte_eth_promiscuous_get(port_id) == 1)
1271                 rte_eth_promiscuous_enable(port_id);
1272         else if (rte_eth_promiscuous_get(port_id) == 0)
1273                 rte_eth_promiscuous_disable(port_id);
1274
1275         /* replay all multicast configuration */
1276         if (rte_eth_allmulticast_get(port_id) == 1)
1277                 rte_eth_allmulticast_enable(port_id);
1278         else if (rte_eth_allmulticast_get(port_id) == 0)
1279                 rte_eth_allmulticast_disable(port_id);
1280 }
1281
1282 int
1283 rte_eth_dev_start(uint16_t port_id)
1284 {
1285         struct rte_eth_dev *dev;
1286         int diag;
1287
1288         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1289
1290         dev = &rte_eth_devices[port_id];
1291
1292         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_start, -ENOTSUP);
1293
1294         if (dev->data->dev_started != 0) {
1295                 RTE_PMD_DEBUG_TRACE("Device with port_id=%" PRIu16
1296                         " already started\n",
1297                         port_id);
1298                 return 0;
1299         }
1300
1301         diag = (*dev->dev_ops->dev_start)(dev);
1302         if (diag == 0)
1303                 dev->data->dev_started = 1;
1304         else
1305                 return eth_err(port_id, diag);
1306
1307         rte_eth_dev_config_restore(port_id);
1308
1309         if (dev->data->dev_conf.intr_conf.lsc == 0) {
1310                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->link_update, -ENOTSUP);
1311                 (*dev->dev_ops->link_update)(dev, 0);
1312         }
1313         return 0;
1314 }
1315
1316 void
1317 rte_eth_dev_stop(uint16_t port_id)
1318 {
1319         struct rte_eth_dev *dev;
1320
1321         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1322         dev = &rte_eth_devices[port_id];
1323
1324         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->dev_stop);
1325
1326         if (dev->data->dev_started == 0) {
1327                 RTE_PMD_DEBUG_TRACE("Device with port_id=%" PRIu16
1328                         " already stopped\n",
1329                         port_id);
1330                 return;
1331         }
1332
1333         dev->data->dev_started = 0;
1334         (*dev->dev_ops->dev_stop)(dev);
1335 }
1336
1337 int
1338 rte_eth_dev_set_link_up(uint16_t port_id)
1339 {
1340         struct rte_eth_dev *dev;
1341
1342         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1343
1344         dev = &rte_eth_devices[port_id];
1345
1346         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_set_link_up, -ENOTSUP);
1347         return eth_err(port_id, (*dev->dev_ops->dev_set_link_up)(dev));
1348 }
1349
1350 int
1351 rte_eth_dev_set_link_down(uint16_t port_id)
1352 {
1353         struct rte_eth_dev *dev;
1354
1355         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1356
1357         dev = &rte_eth_devices[port_id];
1358
1359         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_set_link_down, -ENOTSUP);
1360         return eth_err(port_id, (*dev->dev_ops->dev_set_link_down)(dev));
1361 }
1362
1363 void
1364 rte_eth_dev_close(uint16_t port_id)
1365 {
1366         struct rte_eth_dev *dev;
1367
1368         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1369         dev = &rte_eth_devices[port_id];
1370
1371         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->dev_close);
1372         dev->data->dev_started = 0;
1373         (*dev->dev_ops->dev_close)(dev);
1374
1375         dev->data->nb_rx_queues = 0;
1376         rte_free(dev->data->rx_queues);
1377         dev->data->rx_queues = NULL;
1378         dev->data->nb_tx_queues = 0;
1379         rte_free(dev->data->tx_queues);
1380         dev->data->tx_queues = NULL;
1381 }
1382
1383 int
1384 rte_eth_dev_reset(uint16_t port_id)
1385 {
1386         struct rte_eth_dev *dev;
1387         int ret;
1388
1389         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1390         dev = &rte_eth_devices[port_id];
1391
1392         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_reset, -ENOTSUP);
1393
1394         rte_eth_dev_stop(port_id);
1395         ret = dev->dev_ops->dev_reset(dev);
1396
1397         return eth_err(port_id, ret);
1398 }
1399
1400 int __rte_experimental
1401 rte_eth_dev_is_removed(uint16_t port_id)
1402 {
1403         struct rte_eth_dev *dev;
1404         int ret;
1405
1406         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, 0);
1407
1408         dev = &rte_eth_devices[port_id];
1409
1410         if (dev->state == RTE_ETH_DEV_REMOVED)
1411                 return 1;
1412
1413         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->is_removed, 0);
1414
1415         ret = dev->dev_ops->is_removed(dev);
1416         if (ret != 0)
1417                 /* Device is physically removed. */
1418                 dev->state = RTE_ETH_DEV_REMOVED;
1419
1420         return ret;
1421 }
1422
1423 int
1424 rte_eth_rx_queue_setup(uint16_t port_id, uint16_t rx_queue_id,
1425                        uint16_t nb_rx_desc, unsigned int socket_id,
1426                        const struct rte_eth_rxconf *rx_conf,
1427                        struct rte_mempool *mp)
1428 {
1429         int ret;
1430         uint32_t mbp_buf_size;
1431         struct rte_eth_dev *dev;
1432         struct rte_eth_dev_info dev_info;
1433         struct rte_eth_rxconf local_conf;
1434         void **rxq;
1435
1436         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1437
1438         dev = &rte_eth_devices[port_id];
1439         if (rx_queue_id >= dev->data->nb_rx_queues) {
1440                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%d\n", rx_queue_id);
1441                 return -EINVAL;
1442         }
1443
1444         if (dev->data->dev_started) {
1445                 RTE_PMD_DEBUG_TRACE(
1446                     "port %d must be stopped to allow configuration\n", port_id);
1447                 return -EBUSY;
1448         }
1449
1450         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
1451         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_setup, -ENOTSUP);
1452
1453         /*
1454          * Check the size of the mbuf data buffer.
1455          * This value must be provided in the private data of the memory pool.
1456          * First check that the memory pool has a valid private data.
1457          */
1458         rte_eth_dev_info_get(port_id, &dev_info);
1459         if (mp->private_data_size < sizeof(struct rte_pktmbuf_pool_private)) {
1460                 RTE_PMD_DEBUG_TRACE("%s private_data_size %d < %d\n",
1461                                 mp->name, (int) mp->private_data_size,
1462                                 (int) sizeof(struct rte_pktmbuf_pool_private));
1463                 return -ENOSPC;
1464         }
1465         mbp_buf_size = rte_pktmbuf_data_room_size(mp);
1466
1467         if ((mbp_buf_size - RTE_PKTMBUF_HEADROOM) < dev_info.min_rx_bufsize) {
1468                 RTE_PMD_DEBUG_TRACE("%s mbuf_data_room_size %d < %d "
1469                                 "(RTE_PKTMBUF_HEADROOM=%d + min_rx_bufsize(dev)"
1470                                 "=%d)\n",
1471                                 mp->name,
1472                                 (int)mbp_buf_size,
1473                                 (int)(RTE_PKTMBUF_HEADROOM +
1474                                       dev_info.min_rx_bufsize),
1475                                 (int)RTE_PKTMBUF_HEADROOM,
1476                                 (int)dev_info.min_rx_bufsize);
1477                 return -EINVAL;
1478         }
1479
1480         if (nb_rx_desc > dev_info.rx_desc_lim.nb_max ||
1481                         nb_rx_desc < dev_info.rx_desc_lim.nb_min ||
1482                         nb_rx_desc % dev_info.rx_desc_lim.nb_align != 0) {
1483
1484                 RTE_PMD_DEBUG_TRACE("Invalid value for nb_rx_desc(=%hu), "
1485                         "should be: <= %hu, = %hu, and a product of %hu\n",
1486                         nb_rx_desc,
1487                         dev_info.rx_desc_lim.nb_max,
1488                         dev_info.rx_desc_lim.nb_min,
1489                         dev_info.rx_desc_lim.nb_align);
1490                 return -EINVAL;
1491         }
1492
1493         rxq = dev->data->rx_queues;
1494         if (rxq[rx_queue_id]) {
1495                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release,
1496                                         -ENOTSUP);
1497                 (*dev->dev_ops->rx_queue_release)(rxq[rx_queue_id]);
1498                 rxq[rx_queue_id] = NULL;
1499         }
1500
1501         if (rx_conf == NULL)
1502                 rx_conf = &dev_info.default_rxconf;
1503
1504         local_conf = *rx_conf;
1505         if (dev->data->dev_conf.rxmode.ignore_offload_bitfield == 0) {
1506                 /**
1507                  * Reflect port offloads to queue offloads in order for
1508                  * offloads to not be discarded.
1509                  */
1510                 rte_eth_convert_rx_offload_bitfield(&dev->data->dev_conf.rxmode,
1511                                                     &local_conf.offloads);
1512         }
1513
1514         ret = (*dev->dev_ops->rx_queue_setup)(dev, rx_queue_id, nb_rx_desc,
1515                                               socket_id, &local_conf, mp);
1516         if (!ret) {
1517                 if (!dev->data->min_rx_buf_size ||
1518                     dev->data->min_rx_buf_size > mbp_buf_size)
1519                         dev->data->min_rx_buf_size = mbp_buf_size;
1520         }
1521
1522         return eth_err(port_id, ret);
1523 }
1524
1525 /**
1526  * A conversion function from txq_flags API.
1527  */
1528 static void
1529 rte_eth_convert_txq_flags(const uint32_t txq_flags, uint64_t *tx_offloads)
1530 {
1531         uint64_t offloads = 0;
1532
1533         if (!(txq_flags & ETH_TXQ_FLAGS_NOMULTSEGS))
1534                 offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
1535         if (!(txq_flags & ETH_TXQ_FLAGS_NOVLANOFFL))
1536                 offloads |= DEV_TX_OFFLOAD_VLAN_INSERT;
1537         if (!(txq_flags & ETH_TXQ_FLAGS_NOXSUMSCTP))
1538                 offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM;
1539         if (!(txq_flags & ETH_TXQ_FLAGS_NOXSUMUDP))
1540                 offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
1541         if (!(txq_flags & ETH_TXQ_FLAGS_NOXSUMTCP))
1542                 offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
1543         if ((txq_flags & ETH_TXQ_FLAGS_NOREFCOUNT) &&
1544             (txq_flags & ETH_TXQ_FLAGS_NOMULTMEMP))
1545                 offloads |= DEV_TX_OFFLOAD_MBUF_FAST_FREE;
1546
1547         *tx_offloads = offloads;
1548 }
1549
1550 /**
1551  * A conversion function from offloads API.
1552  */
1553 static void
1554 rte_eth_convert_txq_offloads(const uint64_t tx_offloads, uint32_t *txq_flags)
1555 {
1556         uint32_t flags = 0;
1557
1558         if (!(tx_offloads & DEV_TX_OFFLOAD_MULTI_SEGS))
1559                 flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
1560         if (!(tx_offloads & DEV_TX_OFFLOAD_VLAN_INSERT))
1561                 flags |= ETH_TXQ_FLAGS_NOVLANOFFL;
1562         if (!(tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM))
1563                 flags |= ETH_TXQ_FLAGS_NOXSUMSCTP;
1564         if (!(tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM))
1565                 flags |= ETH_TXQ_FLAGS_NOXSUMUDP;
1566         if (!(tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM))
1567                 flags |= ETH_TXQ_FLAGS_NOXSUMTCP;
1568         if (tx_offloads & DEV_TX_OFFLOAD_MBUF_FAST_FREE)
1569                 flags |= (ETH_TXQ_FLAGS_NOREFCOUNT | ETH_TXQ_FLAGS_NOMULTMEMP);
1570
1571         *txq_flags = flags;
1572 }
1573
1574 int
1575 rte_eth_tx_queue_setup(uint16_t port_id, uint16_t tx_queue_id,
1576                        uint16_t nb_tx_desc, unsigned int socket_id,
1577                        const struct rte_eth_txconf *tx_conf)
1578 {
1579         struct rte_eth_dev *dev;
1580         struct rte_eth_dev_info dev_info;
1581         struct rte_eth_txconf local_conf;
1582         void **txq;
1583
1584         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1585
1586         dev = &rte_eth_devices[port_id];
1587         if (tx_queue_id >= dev->data->nb_tx_queues) {
1588                 RTE_PMD_DEBUG_TRACE("Invalid TX queue_id=%d\n", tx_queue_id);
1589                 return -EINVAL;
1590         }
1591
1592         if (dev->data->dev_started) {
1593                 RTE_PMD_DEBUG_TRACE(
1594                     "port %d must be stopped to allow configuration\n", port_id);
1595                 return -EBUSY;
1596         }
1597
1598         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
1599         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_setup, -ENOTSUP);
1600
1601         rte_eth_dev_info_get(port_id, &dev_info);
1602
1603         if (nb_tx_desc > dev_info.tx_desc_lim.nb_max ||
1604             nb_tx_desc < dev_info.tx_desc_lim.nb_min ||
1605             nb_tx_desc % dev_info.tx_desc_lim.nb_align != 0) {
1606                 RTE_PMD_DEBUG_TRACE("Invalid value for nb_tx_desc(=%hu), "
1607                                 "should be: <= %hu, = %hu, and a product of %hu\n",
1608                                 nb_tx_desc,
1609                                 dev_info.tx_desc_lim.nb_max,
1610                                 dev_info.tx_desc_lim.nb_min,
1611                                 dev_info.tx_desc_lim.nb_align);
1612                 return -EINVAL;
1613         }
1614
1615         txq = dev->data->tx_queues;
1616         if (txq[tx_queue_id]) {
1617                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release,
1618                                         -ENOTSUP);
1619                 (*dev->dev_ops->tx_queue_release)(txq[tx_queue_id]);
1620                 txq[tx_queue_id] = NULL;
1621         }
1622
1623         if (tx_conf == NULL)
1624                 tx_conf = &dev_info.default_txconf;
1625
1626         /*
1627          * Convert between the offloads API to enable PMDs to support
1628          * only one of them.
1629          */
1630         local_conf = *tx_conf;
1631         if (tx_conf->txq_flags & ETH_TXQ_FLAGS_IGNORE) {
1632                 rte_eth_convert_txq_offloads(tx_conf->offloads,
1633                                              &local_conf.txq_flags);
1634                 /* Keep the ignore flag. */
1635                 local_conf.txq_flags |= ETH_TXQ_FLAGS_IGNORE;
1636         } else {
1637                 rte_eth_convert_txq_flags(tx_conf->txq_flags,
1638                                           &local_conf.offloads);
1639         }
1640
1641         return eth_err(port_id, (*dev->dev_ops->tx_queue_setup)(dev,
1642                        tx_queue_id, nb_tx_desc, socket_id, &local_conf));
1643 }
1644
1645 void
1646 rte_eth_tx_buffer_drop_callback(struct rte_mbuf **pkts, uint16_t unsent,
1647                 void *userdata __rte_unused)
1648 {
1649         unsigned i;
1650
1651         for (i = 0; i < unsent; i++)
1652                 rte_pktmbuf_free(pkts[i]);
1653 }
1654
1655 void
1656 rte_eth_tx_buffer_count_callback(struct rte_mbuf **pkts, uint16_t unsent,
1657                 void *userdata)
1658 {
1659         uint64_t *count = userdata;
1660         unsigned i;
1661
1662         for (i = 0; i < unsent; i++)
1663                 rte_pktmbuf_free(pkts[i]);
1664
1665         *count += unsent;
1666 }
1667
1668 int
1669 rte_eth_tx_buffer_set_err_callback(struct rte_eth_dev_tx_buffer *buffer,
1670                 buffer_tx_error_fn cbfn, void *userdata)
1671 {
1672         buffer->error_callback = cbfn;
1673         buffer->error_userdata = userdata;
1674         return 0;
1675 }
1676
1677 int
1678 rte_eth_tx_buffer_init(struct rte_eth_dev_tx_buffer *buffer, uint16_t size)
1679 {
1680         int ret = 0;
1681
1682         if (buffer == NULL)
1683                 return -EINVAL;
1684
1685         buffer->size = size;
1686         if (buffer->error_callback == NULL) {
1687                 ret = rte_eth_tx_buffer_set_err_callback(
1688                         buffer, rte_eth_tx_buffer_drop_callback, NULL);
1689         }
1690
1691         return ret;
1692 }
1693
1694 int
1695 rte_eth_tx_done_cleanup(uint16_t port_id, uint16_t queue_id, uint32_t free_cnt)
1696 {
1697         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
1698         int ret;
1699
1700         /* Validate Input Data. Bail if not valid or not supported. */
1701         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1702         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_done_cleanup, -ENOTSUP);
1703
1704         /* Call driver to free pending mbufs. */
1705         ret = (*dev->dev_ops->tx_done_cleanup)(dev->data->tx_queues[queue_id],
1706                                                free_cnt);
1707         return eth_err(port_id, ret);
1708 }
1709
1710 void
1711 rte_eth_promiscuous_enable(uint16_t port_id)
1712 {
1713         struct rte_eth_dev *dev;
1714
1715         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1716         dev = &rte_eth_devices[port_id];
1717
1718         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->promiscuous_enable);
1719         (*dev->dev_ops->promiscuous_enable)(dev);
1720         dev->data->promiscuous = 1;
1721 }
1722
1723 void
1724 rte_eth_promiscuous_disable(uint16_t port_id)
1725 {
1726         struct rte_eth_dev *dev;
1727
1728         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1729         dev = &rte_eth_devices[port_id];
1730
1731         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->promiscuous_disable);
1732         dev->data->promiscuous = 0;
1733         (*dev->dev_ops->promiscuous_disable)(dev);
1734 }
1735
1736 int
1737 rte_eth_promiscuous_get(uint16_t port_id)
1738 {
1739         struct rte_eth_dev *dev;
1740
1741         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1742
1743         dev = &rte_eth_devices[port_id];
1744         return dev->data->promiscuous;
1745 }
1746
1747 void
1748 rte_eth_allmulticast_enable(uint16_t port_id)
1749 {
1750         struct rte_eth_dev *dev;
1751
1752         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1753         dev = &rte_eth_devices[port_id];
1754
1755         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->allmulticast_enable);
1756         (*dev->dev_ops->allmulticast_enable)(dev);
1757         dev->data->all_multicast = 1;
1758 }
1759
1760 void
1761 rte_eth_allmulticast_disable(uint16_t port_id)
1762 {
1763         struct rte_eth_dev *dev;
1764
1765         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1766         dev = &rte_eth_devices[port_id];
1767
1768         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->allmulticast_disable);
1769         dev->data->all_multicast = 0;
1770         (*dev->dev_ops->allmulticast_disable)(dev);
1771 }
1772
1773 int
1774 rte_eth_allmulticast_get(uint16_t port_id)
1775 {
1776         struct rte_eth_dev *dev;
1777
1778         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1779
1780         dev = &rte_eth_devices[port_id];
1781         return dev->data->all_multicast;
1782 }
1783
1784 void
1785 rte_eth_link_get(uint16_t port_id, struct rte_eth_link *eth_link)
1786 {
1787         struct rte_eth_dev *dev;
1788
1789         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1790         dev = &rte_eth_devices[port_id];
1791
1792         if (dev->data->dev_conf.intr_conf.lsc)
1793                 rte_eth_linkstatus_get(dev, eth_link);
1794         else {
1795                 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->link_update);
1796                 (*dev->dev_ops->link_update)(dev, 1);
1797                 *eth_link = dev->data->dev_link;
1798         }
1799 }
1800
1801 void
1802 rte_eth_link_get_nowait(uint16_t port_id, struct rte_eth_link *eth_link)
1803 {
1804         struct rte_eth_dev *dev;
1805
1806         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1807         dev = &rte_eth_devices[port_id];
1808
1809         if (dev->data->dev_conf.intr_conf.lsc)
1810                 rte_eth_linkstatus_get(dev, eth_link);
1811         else {
1812                 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->link_update);
1813                 (*dev->dev_ops->link_update)(dev, 0);
1814                 *eth_link = dev->data->dev_link;
1815         }
1816 }
1817
1818 int
1819 rte_eth_stats_get(uint16_t port_id, struct rte_eth_stats *stats)
1820 {
1821         struct rte_eth_dev *dev;
1822
1823         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1824
1825         dev = &rte_eth_devices[port_id];
1826         memset(stats, 0, sizeof(*stats));
1827
1828         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->stats_get, -ENOTSUP);
1829         stats->rx_nombuf = dev->data->rx_mbuf_alloc_failed;
1830         return eth_err(port_id, (*dev->dev_ops->stats_get)(dev, stats));
1831 }
1832
1833 int
1834 rte_eth_stats_reset(uint16_t port_id)
1835 {
1836         struct rte_eth_dev *dev;
1837
1838         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1839         dev = &rte_eth_devices[port_id];
1840
1841         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->stats_reset, -ENOTSUP);
1842         (*dev->dev_ops->stats_reset)(dev);
1843         dev->data->rx_mbuf_alloc_failed = 0;
1844
1845         return 0;
1846 }
1847
1848 static inline int
1849 get_xstats_basic_count(struct rte_eth_dev *dev)
1850 {
1851         uint16_t nb_rxqs, nb_txqs;
1852         int count;
1853
1854         nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
1855         nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
1856
1857         count = RTE_NB_STATS;
1858         count += nb_rxqs * RTE_NB_RXQ_STATS;
1859         count += nb_txqs * RTE_NB_TXQ_STATS;
1860
1861         return count;
1862 }
1863
1864 static int
1865 get_xstats_count(uint16_t port_id)
1866 {
1867         struct rte_eth_dev *dev;
1868         int count;
1869
1870         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1871         dev = &rte_eth_devices[port_id];
1872         if (dev->dev_ops->xstats_get_names_by_id != NULL) {
1873                 count = (*dev->dev_ops->xstats_get_names_by_id)(dev, NULL,
1874                                 NULL, 0);
1875                 if (count < 0)
1876                         return eth_err(port_id, count);
1877         }
1878         if (dev->dev_ops->xstats_get_names != NULL) {
1879                 count = (*dev->dev_ops->xstats_get_names)(dev, NULL, 0);
1880                 if (count < 0)
1881                         return eth_err(port_id, count);
1882         } else
1883                 count = 0;
1884
1885
1886         count += get_xstats_basic_count(dev);
1887
1888         return count;
1889 }
1890
1891 int
1892 rte_eth_xstats_get_id_by_name(uint16_t port_id, const char *xstat_name,
1893                 uint64_t *id)
1894 {
1895         int cnt_xstats, idx_xstat;
1896
1897         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1898
1899         if (!id) {
1900                 RTE_PMD_DEBUG_TRACE("Error: id pointer is NULL\n");
1901                 return -ENOMEM;
1902         }
1903
1904         if (!xstat_name) {
1905                 RTE_PMD_DEBUG_TRACE("Error: xstat_name pointer is NULL\n");
1906                 return -ENOMEM;
1907         }
1908
1909         /* Get count */
1910         cnt_xstats = rte_eth_xstats_get_names_by_id(port_id, NULL, 0, NULL);
1911         if (cnt_xstats  < 0) {
1912                 RTE_PMD_DEBUG_TRACE("Error: Cannot get count of xstats\n");
1913                 return -ENODEV;
1914         }
1915
1916         /* Get id-name lookup table */
1917         struct rte_eth_xstat_name xstats_names[cnt_xstats];
1918
1919         if (cnt_xstats != rte_eth_xstats_get_names_by_id(
1920                         port_id, xstats_names, cnt_xstats, NULL)) {
1921                 RTE_PMD_DEBUG_TRACE("Error: Cannot get xstats lookup\n");
1922                 return -1;
1923         }
1924
1925         for (idx_xstat = 0; idx_xstat < cnt_xstats; idx_xstat++) {
1926                 if (!strcmp(xstats_names[idx_xstat].name, xstat_name)) {
1927                         *id = idx_xstat;
1928                         return 0;
1929                 };
1930         }
1931
1932         return -EINVAL;
1933 }
1934
1935 /* retrieve basic stats names */
1936 static int
1937 rte_eth_basic_stats_get_names(struct rte_eth_dev *dev,
1938         struct rte_eth_xstat_name *xstats_names)
1939 {
1940         int cnt_used_entries = 0;
1941         uint32_t idx, id_queue;
1942         uint16_t num_q;
1943
1944         for (idx = 0; idx < RTE_NB_STATS; idx++) {
1945                 snprintf(xstats_names[cnt_used_entries].name,
1946                         sizeof(xstats_names[0].name),
1947                         "%s", rte_stats_strings[idx].name);
1948                 cnt_used_entries++;
1949         }
1950         num_q = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
1951         for (id_queue = 0; id_queue < num_q; id_queue++) {
1952                 for (idx = 0; idx < RTE_NB_RXQ_STATS; idx++) {
1953                         snprintf(xstats_names[cnt_used_entries].name,
1954                                 sizeof(xstats_names[0].name),
1955                                 "rx_q%u%s",
1956                                 id_queue, rte_rxq_stats_strings[idx].name);
1957                         cnt_used_entries++;
1958                 }
1959
1960         }
1961         num_q = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
1962         for (id_queue = 0; id_queue < num_q; id_queue++) {
1963                 for (idx = 0; idx < RTE_NB_TXQ_STATS; idx++) {
1964                         snprintf(xstats_names[cnt_used_entries].name,
1965                                 sizeof(xstats_names[0].name),
1966                                 "tx_q%u%s",
1967                                 id_queue, rte_txq_stats_strings[idx].name);
1968                         cnt_used_entries++;
1969                 }
1970         }
1971         return cnt_used_entries;
1972 }
1973
1974 /* retrieve ethdev extended statistics names */
1975 int
1976 rte_eth_xstats_get_names_by_id(uint16_t port_id,
1977         struct rte_eth_xstat_name *xstats_names, unsigned int size,
1978         uint64_t *ids)
1979 {
1980         struct rte_eth_xstat_name *xstats_names_copy;
1981         unsigned int no_basic_stat_requested = 1;
1982         unsigned int no_ext_stat_requested = 1;
1983         unsigned int expected_entries;
1984         unsigned int basic_count;
1985         struct rte_eth_dev *dev;
1986         unsigned int i;
1987         int ret;
1988
1989         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1990         dev = &rte_eth_devices[port_id];
1991
1992         basic_count = get_xstats_basic_count(dev);
1993         ret = get_xstats_count(port_id);
1994         if (ret < 0)
1995                 return ret;
1996         expected_entries = (unsigned int)ret;
1997
1998         /* Return max number of stats if no ids given */
1999         if (!ids) {
2000                 if (!xstats_names)
2001                         return expected_entries;
2002                 else if (xstats_names && size < expected_entries)
2003                         return expected_entries;
2004         }
2005
2006         if (ids && !xstats_names)
2007                 return -EINVAL;
2008
2009         if (ids && dev->dev_ops->xstats_get_names_by_id != NULL && size > 0) {
2010                 uint64_t ids_copy[size];
2011
2012                 for (i = 0; i < size; i++) {
2013                         if (ids[i] < basic_count) {
2014                                 no_basic_stat_requested = 0;
2015                                 break;
2016                         }
2017
2018                         /*
2019                          * Convert ids to xstats ids that PMD knows.
2020                          * ids known by user are basic + extended stats.
2021                          */
2022                         ids_copy[i] = ids[i] - basic_count;
2023                 }
2024
2025                 if (no_basic_stat_requested)
2026                         return (*dev->dev_ops->xstats_get_names_by_id)(dev,
2027                                         xstats_names, ids_copy, size);
2028         }
2029
2030         /* Retrieve all stats */
2031         if (!ids) {
2032                 int num_stats = rte_eth_xstats_get_names(port_id, xstats_names,
2033                                 expected_entries);
2034                 if (num_stats < 0 || num_stats > (int)expected_entries)
2035                         return num_stats;
2036                 else
2037                         return expected_entries;
2038         }
2039
2040         xstats_names_copy = calloc(expected_entries,
2041                 sizeof(struct rte_eth_xstat_name));
2042
2043         if (!xstats_names_copy) {
2044                 RTE_PMD_DEBUG_TRACE("ERROR: can't allocate memory");
2045                 return -ENOMEM;
2046         }
2047
2048         if (ids) {
2049                 for (i = 0; i < size; i++) {
2050                         if (ids[i] >= basic_count) {
2051                                 no_ext_stat_requested = 0;
2052                                 break;
2053                         }
2054                 }
2055         }
2056
2057         /* Fill xstats_names_copy structure */
2058         if (ids && no_ext_stat_requested) {
2059                 rte_eth_basic_stats_get_names(dev, xstats_names_copy);
2060         } else {
2061                 ret = rte_eth_xstats_get_names(port_id, xstats_names_copy,
2062                         expected_entries);
2063                 if (ret < 0) {
2064                         free(xstats_names_copy);
2065                         return ret;
2066                 }
2067         }
2068
2069         /* Filter stats */
2070         for (i = 0; i < size; i++) {
2071                 if (ids[i] >= expected_entries) {
2072                         RTE_PMD_DEBUG_TRACE("ERROR: id value isn't valid\n");
2073                         free(xstats_names_copy);
2074                         return -1;
2075                 }
2076                 xstats_names[i] = xstats_names_copy[ids[i]];
2077         }
2078
2079         free(xstats_names_copy);
2080         return size;
2081 }
2082
2083 int
2084 rte_eth_xstats_get_names(uint16_t port_id,
2085         struct rte_eth_xstat_name *xstats_names,
2086         unsigned int size)
2087 {
2088         struct rte_eth_dev *dev;
2089         int cnt_used_entries;
2090         int cnt_expected_entries;
2091         int cnt_driver_entries;
2092
2093         cnt_expected_entries = get_xstats_count(port_id);
2094         if (xstats_names == NULL || cnt_expected_entries < 0 ||
2095                         (int)size < cnt_expected_entries)
2096                 return cnt_expected_entries;
2097
2098         /* port_id checked in get_xstats_count() */
2099         dev = &rte_eth_devices[port_id];
2100
2101         cnt_used_entries = rte_eth_basic_stats_get_names(
2102                 dev, xstats_names);
2103
2104         if (dev->dev_ops->xstats_get_names != NULL) {
2105                 /* If there are any driver-specific xstats, append them
2106                  * to end of list.
2107                  */
2108                 cnt_driver_entries = (*dev->dev_ops->xstats_get_names)(
2109                         dev,
2110                         xstats_names + cnt_used_entries,
2111                         size - cnt_used_entries);
2112                 if (cnt_driver_entries < 0)
2113                         return eth_err(port_id, cnt_driver_entries);
2114                 cnt_used_entries += cnt_driver_entries;
2115         }
2116
2117         return cnt_used_entries;
2118 }
2119
2120
2121 static int
2122 rte_eth_basic_stats_get(uint16_t port_id, struct rte_eth_xstat *xstats)
2123 {
2124         struct rte_eth_dev *dev;
2125         struct rte_eth_stats eth_stats;
2126         unsigned int count = 0, i, q;
2127         uint64_t val, *stats_ptr;
2128         uint16_t nb_rxqs, nb_txqs;
2129         int ret;
2130
2131         ret = rte_eth_stats_get(port_id, &eth_stats);
2132         if (ret < 0)
2133                 return ret;
2134
2135         dev = &rte_eth_devices[port_id];
2136
2137         nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
2138         nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
2139
2140         /* global stats */
2141         for (i = 0; i < RTE_NB_STATS; i++) {
2142                 stats_ptr = RTE_PTR_ADD(&eth_stats,
2143                                         rte_stats_strings[i].offset);
2144                 val = *stats_ptr;
2145                 xstats[count++].value = val;
2146         }
2147
2148         /* per-rxq stats */
2149         for (q = 0; q < nb_rxqs; q++) {
2150                 for (i = 0; i < RTE_NB_RXQ_STATS; i++) {
2151                         stats_ptr = RTE_PTR_ADD(&eth_stats,
2152                                         rte_rxq_stats_strings[i].offset +
2153                                         q * sizeof(uint64_t));
2154                         val = *stats_ptr;
2155                         xstats[count++].value = val;
2156                 }
2157         }
2158
2159         /* per-txq stats */
2160         for (q = 0; q < nb_txqs; q++) {
2161                 for (i = 0; i < RTE_NB_TXQ_STATS; i++) {
2162                         stats_ptr = RTE_PTR_ADD(&eth_stats,
2163                                         rte_txq_stats_strings[i].offset +
2164                                         q * sizeof(uint64_t));
2165                         val = *stats_ptr;
2166                         xstats[count++].value = val;
2167                 }
2168         }
2169         return count;
2170 }
2171
2172 /* retrieve ethdev extended statistics */
2173 int
2174 rte_eth_xstats_get_by_id(uint16_t port_id, const uint64_t *ids,
2175                          uint64_t *values, unsigned int size)
2176 {
2177         unsigned int no_basic_stat_requested = 1;
2178         unsigned int no_ext_stat_requested = 1;
2179         unsigned int num_xstats_filled;
2180         unsigned int basic_count;
2181         uint16_t expected_entries;
2182         struct rte_eth_dev *dev;
2183         unsigned int i;
2184         int ret;
2185
2186         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2187         ret = get_xstats_count(port_id);
2188         if (ret < 0)
2189                 return ret;
2190         expected_entries = (uint16_t)ret;
2191         struct rte_eth_xstat xstats[expected_entries];
2192         dev = &rte_eth_devices[port_id];
2193         basic_count = get_xstats_basic_count(dev);
2194
2195         /* Return max number of stats if no ids given */
2196         if (!ids) {
2197                 if (!values)
2198                         return expected_entries;
2199                 else if (values && size < expected_entries)
2200                         return expected_entries;
2201         }
2202
2203         if (ids && !values)
2204                 return -EINVAL;
2205
2206         if (ids && dev->dev_ops->xstats_get_by_id != NULL && size) {
2207                 unsigned int basic_count = get_xstats_basic_count(dev);
2208                 uint64_t ids_copy[size];
2209
2210                 for (i = 0; i < size; i++) {
2211                         if (ids[i] < basic_count) {
2212                                 no_basic_stat_requested = 0;
2213                                 break;
2214                         }
2215
2216                         /*
2217                          * Convert ids to xstats ids that PMD knows.
2218                          * ids known by user are basic + extended stats.
2219                          */
2220                         ids_copy[i] = ids[i] - basic_count;
2221                 }
2222
2223                 if (no_basic_stat_requested)
2224                         return (*dev->dev_ops->xstats_get_by_id)(dev, ids_copy,
2225                                         values, size);
2226         }
2227
2228         if (ids) {
2229                 for (i = 0; i < size; i++) {
2230                         if (ids[i] >= basic_count) {
2231                                 no_ext_stat_requested = 0;
2232                                 break;
2233                         }
2234                 }
2235         }
2236
2237         /* Fill the xstats structure */
2238         if (ids && no_ext_stat_requested)
2239                 ret = rte_eth_basic_stats_get(port_id, xstats);
2240         else
2241                 ret = rte_eth_xstats_get(port_id, xstats, expected_entries);
2242
2243         if (ret < 0)
2244                 return ret;
2245         num_xstats_filled = (unsigned int)ret;
2246
2247         /* Return all stats */
2248         if (!ids) {
2249                 for (i = 0; i < num_xstats_filled; i++)
2250                         values[i] = xstats[i].value;
2251                 return expected_entries;
2252         }
2253
2254         /* Filter stats */
2255         for (i = 0; i < size; i++) {
2256                 if (ids[i] >= expected_entries) {
2257                         RTE_PMD_DEBUG_TRACE("ERROR: id value isn't valid\n");
2258                         return -1;
2259                 }
2260                 values[i] = xstats[ids[i]].value;
2261         }
2262         return size;
2263 }
2264
2265 int
2266 rte_eth_xstats_get(uint16_t port_id, struct rte_eth_xstat *xstats,
2267         unsigned int n)
2268 {
2269         struct rte_eth_dev *dev;
2270         unsigned int count = 0, i;
2271         signed int xcount = 0;
2272         uint16_t nb_rxqs, nb_txqs;
2273         int ret;
2274
2275         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
2276
2277         dev = &rte_eth_devices[port_id];
2278
2279         nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
2280         nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
2281
2282         /* Return generic statistics */
2283         count = RTE_NB_STATS + (nb_rxqs * RTE_NB_RXQ_STATS) +
2284                 (nb_txqs * RTE_NB_TXQ_STATS);
2285
2286         /* implemented by the driver */
2287         if (dev->dev_ops->xstats_get != NULL) {
2288                 /* Retrieve the xstats from the driver at the end of the
2289                  * xstats struct.
2290                  */
2291                 xcount = (*dev->dev_ops->xstats_get)(dev,
2292                                      xstats ? xstats + count : NULL,
2293                                      (n > count) ? n - count : 0);
2294
2295                 if (xcount < 0)
2296                         return eth_err(port_id, xcount);
2297         }
2298
2299         if (n < count + xcount || xstats == NULL)
2300                 return count + xcount;
2301
2302         /* now fill the xstats structure */
2303         ret = rte_eth_basic_stats_get(port_id, xstats);
2304         if (ret < 0)
2305                 return ret;
2306         count = ret;
2307
2308         for (i = 0; i < count; i++)
2309                 xstats[i].id = i;
2310         /* add an offset to driver-specific stats */
2311         for ( ; i < count + xcount; i++)
2312                 xstats[i].id += count;
2313
2314         return count + xcount;
2315 }
2316
2317 /* reset ethdev extended statistics */
2318 void
2319 rte_eth_xstats_reset(uint16_t port_id)
2320 {
2321         struct rte_eth_dev *dev;
2322
2323         RTE_ETH_VALID_PORTID_OR_RET(port_id);
2324         dev = &rte_eth_devices[port_id];
2325
2326         /* implemented by the driver */
2327         if (dev->dev_ops->xstats_reset != NULL) {
2328                 (*dev->dev_ops->xstats_reset)(dev);
2329                 return;
2330         }
2331
2332         /* fallback to default */
2333         rte_eth_stats_reset(port_id);
2334 }
2335
2336 static int
2337 set_queue_stats_mapping(uint16_t port_id, uint16_t queue_id, uint8_t stat_idx,
2338                 uint8_t is_rx)
2339 {
2340         struct rte_eth_dev *dev;
2341
2342         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2343
2344         dev = &rte_eth_devices[port_id];
2345
2346         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->queue_stats_mapping_set, -ENOTSUP);
2347         return (*dev->dev_ops->queue_stats_mapping_set)
2348                         (dev, queue_id, stat_idx, is_rx);
2349 }
2350
2351
2352 int
2353 rte_eth_dev_set_tx_queue_stats_mapping(uint16_t port_id, uint16_t tx_queue_id,
2354                 uint8_t stat_idx)
2355 {
2356         return eth_err(port_id, set_queue_stats_mapping(port_id, tx_queue_id,
2357                                                 stat_idx, STAT_QMAP_TX));
2358 }
2359
2360
2361 int
2362 rte_eth_dev_set_rx_queue_stats_mapping(uint16_t port_id, uint16_t rx_queue_id,
2363                 uint8_t stat_idx)
2364 {
2365         return eth_err(port_id, set_queue_stats_mapping(port_id, rx_queue_id,
2366                                                 stat_idx, STAT_QMAP_RX));
2367 }
2368
2369 int
2370 rte_eth_dev_fw_version_get(uint16_t port_id, char *fw_version, size_t fw_size)
2371 {
2372         struct rte_eth_dev *dev;
2373
2374         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2375         dev = &rte_eth_devices[port_id];
2376
2377         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fw_version_get, -ENOTSUP);
2378         return eth_err(port_id, (*dev->dev_ops->fw_version_get)(dev,
2379                                                         fw_version, fw_size));
2380 }
2381
2382 void
2383 rte_eth_dev_info_get(uint16_t port_id, struct rte_eth_dev_info *dev_info)
2384 {
2385         struct rte_eth_dev *dev;
2386         const struct rte_eth_desc_lim lim = {
2387                 .nb_max = UINT16_MAX,
2388                 .nb_min = 0,
2389                 .nb_align = 1,
2390         };
2391
2392         RTE_ETH_VALID_PORTID_OR_RET(port_id);
2393         dev = &rte_eth_devices[port_id];
2394
2395         memset(dev_info, 0, sizeof(struct rte_eth_dev_info));
2396         dev_info->rx_desc_lim = lim;
2397         dev_info->tx_desc_lim = lim;
2398
2399         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->dev_infos_get);
2400         (*dev->dev_ops->dev_infos_get)(dev, dev_info);
2401         dev_info->driver_name = dev->device->driver->name;
2402         dev_info->nb_rx_queues = dev->data->nb_rx_queues;
2403         dev_info->nb_tx_queues = dev->data->nb_tx_queues;
2404 }
2405
2406 int
2407 rte_eth_dev_get_supported_ptypes(uint16_t port_id, uint32_t ptype_mask,
2408                                  uint32_t *ptypes, int num)
2409 {
2410         int i, j;
2411         struct rte_eth_dev *dev;
2412         const uint32_t *all_ptypes;
2413
2414         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2415         dev = &rte_eth_devices[port_id];
2416         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_supported_ptypes_get, 0);
2417         all_ptypes = (*dev->dev_ops->dev_supported_ptypes_get)(dev);
2418
2419         if (!all_ptypes)
2420                 return 0;
2421
2422         for (i = 0, j = 0; all_ptypes[i] != RTE_PTYPE_UNKNOWN; ++i)
2423                 if (all_ptypes[i] & ptype_mask) {
2424                         if (j < num)
2425                                 ptypes[j] = all_ptypes[i];
2426                         j++;
2427                 }
2428
2429         return j;
2430 }
2431
2432 void
2433 rte_eth_macaddr_get(uint16_t port_id, struct ether_addr *mac_addr)
2434 {
2435         struct rte_eth_dev *dev;
2436
2437         RTE_ETH_VALID_PORTID_OR_RET(port_id);
2438         dev = &rte_eth_devices[port_id];
2439         ether_addr_copy(&dev->data->mac_addrs[0], mac_addr);
2440 }
2441
2442
2443 int
2444 rte_eth_dev_get_mtu(uint16_t port_id, uint16_t *mtu)
2445 {
2446         struct rte_eth_dev *dev;
2447
2448         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2449
2450         dev = &rte_eth_devices[port_id];
2451         *mtu = dev->data->mtu;
2452         return 0;
2453 }
2454
2455 int
2456 rte_eth_dev_set_mtu(uint16_t port_id, uint16_t mtu)
2457 {
2458         int ret;
2459         struct rte_eth_dev *dev;
2460
2461         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2462         dev = &rte_eth_devices[port_id];
2463         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mtu_set, -ENOTSUP);
2464
2465         ret = (*dev->dev_ops->mtu_set)(dev, mtu);
2466         if (!ret)
2467                 dev->data->mtu = mtu;
2468
2469         return eth_err(port_id, ret);
2470 }
2471
2472 int
2473 rte_eth_dev_vlan_filter(uint16_t port_id, uint16_t vlan_id, int on)
2474 {
2475         struct rte_eth_dev *dev;
2476         int ret;
2477
2478         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2479         dev = &rte_eth_devices[port_id];
2480         if (!(dev->data->dev_conf.rxmode.offloads &
2481               DEV_RX_OFFLOAD_VLAN_FILTER)) {
2482                 RTE_PMD_DEBUG_TRACE("port %d: vlan-filtering disabled\n", port_id);
2483                 return -ENOSYS;
2484         }
2485
2486         if (vlan_id > 4095) {
2487                 RTE_PMD_DEBUG_TRACE("(port_id=%d) invalid vlan_id=%u > 4095\n",
2488                                 port_id, (unsigned) vlan_id);
2489                 return -EINVAL;
2490         }
2491         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_filter_set, -ENOTSUP);
2492
2493         ret = (*dev->dev_ops->vlan_filter_set)(dev, vlan_id, on);
2494         if (ret == 0) {
2495                 struct rte_vlan_filter_conf *vfc;
2496                 int vidx;
2497                 int vbit;
2498
2499                 vfc = &dev->data->vlan_filter_conf;
2500                 vidx = vlan_id / 64;
2501                 vbit = vlan_id % 64;
2502
2503                 if (on)
2504                         vfc->ids[vidx] |= UINT64_C(1) << vbit;
2505                 else
2506                         vfc->ids[vidx] &= ~(UINT64_C(1) << vbit);
2507         }
2508
2509         return eth_err(port_id, ret);
2510 }
2511
2512 int
2513 rte_eth_dev_set_vlan_strip_on_queue(uint16_t port_id, uint16_t rx_queue_id,
2514                                     int on)
2515 {
2516         struct rte_eth_dev *dev;
2517
2518         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2519         dev = &rte_eth_devices[port_id];
2520         if (rx_queue_id >= dev->data->nb_rx_queues) {
2521                 RTE_PMD_DEBUG_TRACE("Invalid rx_queue_id=%d\n", port_id);
2522                 return -EINVAL;
2523         }
2524
2525         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_strip_queue_set, -ENOTSUP);
2526         (*dev->dev_ops->vlan_strip_queue_set)(dev, rx_queue_id, on);
2527
2528         return 0;
2529 }
2530
2531 int
2532 rte_eth_dev_set_vlan_ether_type(uint16_t port_id,
2533                                 enum rte_vlan_type vlan_type,
2534                                 uint16_t tpid)
2535 {
2536         struct rte_eth_dev *dev;
2537
2538         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2539         dev = &rte_eth_devices[port_id];
2540         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_tpid_set, -ENOTSUP);
2541
2542         return eth_err(port_id, (*dev->dev_ops->vlan_tpid_set)(dev, vlan_type,
2543                                                                tpid));
2544 }
2545
2546 int
2547 rte_eth_dev_set_vlan_offload(uint16_t port_id, int offload_mask)
2548 {
2549         struct rte_eth_dev *dev;
2550         int ret = 0;
2551         int mask = 0;
2552         int cur, org = 0;
2553         uint64_t orig_offloads;
2554
2555         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2556         dev = &rte_eth_devices[port_id];
2557
2558         /* save original values in case of failure */
2559         orig_offloads = dev->data->dev_conf.rxmode.offloads;
2560
2561         /*check which option changed by application*/
2562         cur = !!(offload_mask & ETH_VLAN_STRIP_OFFLOAD);
2563         org = !!(dev->data->dev_conf.rxmode.offloads &
2564                  DEV_RX_OFFLOAD_VLAN_STRIP);
2565         if (cur != org) {
2566                 if (cur)
2567                         dev->data->dev_conf.rxmode.offloads |=
2568                                 DEV_RX_OFFLOAD_VLAN_STRIP;
2569                 else
2570                         dev->data->dev_conf.rxmode.offloads &=
2571                                 ~DEV_RX_OFFLOAD_VLAN_STRIP;
2572                 mask |= ETH_VLAN_STRIP_MASK;
2573         }
2574
2575         cur = !!(offload_mask & ETH_VLAN_FILTER_OFFLOAD);
2576         org = !!(dev->data->dev_conf.rxmode.offloads &
2577                  DEV_RX_OFFLOAD_VLAN_FILTER);
2578         if (cur != org) {
2579                 if (cur)
2580                         dev->data->dev_conf.rxmode.offloads |=
2581                                 DEV_RX_OFFLOAD_VLAN_FILTER;
2582                 else
2583                         dev->data->dev_conf.rxmode.offloads &=
2584                                 ~DEV_RX_OFFLOAD_VLAN_FILTER;
2585                 mask |= ETH_VLAN_FILTER_MASK;
2586         }
2587
2588         cur = !!(offload_mask & ETH_VLAN_EXTEND_OFFLOAD);
2589         org = !!(dev->data->dev_conf.rxmode.offloads &
2590                  DEV_RX_OFFLOAD_VLAN_EXTEND);
2591         if (cur != org) {
2592                 if (cur)
2593                         dev->data->dev_conf.rxmode.offloads |=
2594                                 DEV_RX_OFFLOAD_VLAN_EXTEND;
2595                 else
2596                         dev->data->dev_conf.rxmode.offloads &=
2597                                 ~DEV_RX_OFFLOAD_VLAN_EXTEND;
2598                 mask |= ETH_VLAN_EXTEND_MASK;
2599         }
2600
2601         /*no change*/
2602         if (mask == 0)
2603                 return ret;
2604
2605         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_offload_set, -ENOTSUP);
2606
2607         /*
2608          * Convert to the offload bitfield API just in case the underlying PMD
2609          * still supporting it.
2610          */
2611         rte_eth_convert_rx_offloads(dev->data->dev_conf.rxmode.offloads,
2612                                     &dev->data->dev_conf.rxmode);
2613         ret = (*dev->dev_ops->vlan_offload_set)(dev, mask);
2614         if (ret) {
2615                 /* hit an error restore  original values */
2616                 dev->data->dev_conf.rxmode.offloads = orig_offloads;
2617                 rte_eth_convert_rx_offloads(dev->data->dev_conf.rxmode.offloads,
2618                                             &dev->data->dev_conf.rxmode);
2619         }
2620
2621         return eth_err(port_id, ret);
2622 }
2623
2624 int
2625 rte_eth_dev_get_vlan_offload(uint16_t port_id)
2626 {
2627         struct rte_eth_dev *dev;
2628         int ret = 0;
2629
2630         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2631         dev = &rte_eth_devices[port_id];
2632
2633         if (dev->data->dev_conf.rxmode.offloads &
2634             DEV_RX_OFFLOAD_VLAN_STRIP)
2635                 ret |= ETH_VLAN_STRIP_OFFLOAD;
2636
2637         if (dev->data->dev_conf.rxmode.offloads &
2638             DEV_RX_OFFLOAD_VLAN_FILTER)
2639                 ret |= ETH_VLAN_FILTER_OFFLOAD;
2640
2641         if (dev->data->dev_conf.rxmode.offloads &
2642             DEV_RX_OFFLOAD_VLAN_EXTEND)
2643                 ret |= ETH_VLAN_EXTEND_OFFLOAD;
2644
2645         return ret;
2646 }
2647
2648 int
2649 rte_eth_dev_set_vlan_pvid(uint16_t port_id, uint16_t pvid, int on)
2650 {
2651         struct rte_eth_dev *dev;
2652
2653         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2654         dev = &rte_eth_devices[port_id];
2655         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_pvid_set, -ENOTSUP);
2656
2657         return eth_err(port_id, (*dev->dev_ops->vlan_pvid_set)(dev, pvid, on));
2658 }
2659
2660 int
2661 rte_eth_dev_flow_ctrl_get(uint16_t port_id, struct rte_eth_fc_conf *fc_conf)
2662 {
2663         struct rte_eth_dev *dev;
2664
2665         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2666         dev = &rte_eth_devices[port_id];
2667         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->flow_ctrl_get, -ENOTSUP);
2668         memset(fc_conf, 0, sizeof(*fc_conf));
2669         return eth_err(port_id, (*dev->dev_ops->flow_ctrl_get)(dev, fc_conf));
2670 }
2671
2672 int
2673 rte_eth_dev_flow_ctrl_set(uint16_t port_id, struct rte_eth_fc_conf *fc_conf)
2674 {
2675         struct rte_eth_dev *dev;
2676
2677         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2678         if ((fc_conf->send_xon != 0) && (fc_conf->send_xon != 1)) {
2679                 RTE_PMD_DEBUG_TRACE("Invalid send_xon, only 0/1 allowed\n");
2680                 return -EINVAL;
2681         }
2682
2683         dev = &rte_eth_devices[port_id];
2684         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->flow_ctrl_set, -ENOTSUP);
2685         return eth_err(port_id, (*dev->dev_ops->flow_ctrl_set)(dev, fc_conf));
2686 }
2687
2688 int
2689 rte_eth_dev_priority_flow_ctrl_set(uint16_t port_id,
2690                                    struct rte_eth_pfc_conf *pfc_conf)
2691 {
2692         struct rte_eth_dev *dev;
2693
2694         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2695         if (pfc_conf->priority > (ETH_DCB_NUM_USER_PRIORITIES - 1)) {
2696                 RTE_PMD_DEBUG_TRACE("Invalid priority, only 0-7 allowed\n");
2697                 return -EINVAL;
2698         }
2699
2700         dev = &rte_eth_devices[port_id];
2701         /* High water, low water validation are device specific */
2702         if  (*dev->dev_ops->priority_flow_ctrl_set)
2703                 return eth_err(port_id, (*dev->dev_ops->priority_flow_ctrl_set)
2704                                         (dev, pfc_conf));
2705         return -ENOTSUP;
2706 }
2707
2708 static int
2709 rte_eth_check_reta_mask(struct rte_eth_rss_reta_entry64 *reta_conf,
2710                         uint16_t reta_size)
2711 {
2712         uint16_t i, num;
2713
2714         if (!reta_conf)
2715                 return -EINVAL;
2716
2717         num = (reta_size + RTE_RETA_GROUP_SIZE - 1) / RTE_RETA_GROUP_SIZE;
2718         for (i = 0; i < num; i++) {
2719                 if (reta_conf[i].mask)
2720                         return 0;
2721         }
2722
2723         return -EINVAL;
2724 }
2725
2726 static int
2727 rte_eth_check_reta_entry(struct rte_eth_rss_reta_entry64 *reta_conf,
2728                          uint16_t reta_size,
2729                          uint16_t max_rxq)
2730 {
2731         uint16_t i, idx, shift;
2732
2733         if (!reta_conf)
2734                 return -EINVAL;
2735
2736         if (max_rxq == 0) {
2737                 RTE_PMD_DEBUG_TRACE("No receive queue is available\n");
2738                 return -EINVAL;
2739         }
2740
2741         for (i = 0; i < reta_size; i++) {
2742                 idx = i / RTE_RETA_GROUP_SIZE;
2743                 shift = i % RTE_RETA_GROUP_SIZE;
2744                 if ((reta_conf[idx].mask & (1ULL << shift)) &&
2745                         (reta_conf[idx].reta[shift] >= max_rxq)) {
2746                         RTE_PMD_DEBUG_TRACE("reta_conf[%u]->reta[%u]: %u exceeds "
2747                                 "the maximum rxq index: %u\n", idx, shift,
2748                                 reta_conf[idx].reta[shift], max_rxq);
2749                         return -EINVAL;
2750                 }
2751         }
2752
2753         return 0;
2754 }
2755
2756 int
2757 rte_eth_dev_rss_reta_update(uint16_t port_id,
2758                             struct rte_eth_rss_reta_entry64 *reta_conf,
2759                             uint16_t reta_size)
2760 {
2761         struct rte_eth_dev *dev;
2762         int ret;
2763
2764         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2765         /* Check mask bits */
2766         ret = rte_eth_check_reta_mask(reta_conf, reta_size);
2767         if (ret < 0)
2768                 return ret;
2769
2770         dev = &rte_eth_devices[port_id];
2771
2772         /* Check entry value */
2773         ret = rte_eth_check_reta_entry(reta_conf, reta_size,
2774                                 dev->data->nb_rx_queues);
2775         if (ret < 0)
2776                 return ret;
2777
2778         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->reta_update, -ENOTSUP);
2779         return eth_err(port_id, (*dev->dev_ops->reta_update)(dev, reta_conf,
2780                                                              reta_size));
2781 }
2782
2783 int
2784 rte_eth_dev_rss_reta_query(uint16_t port_id,
2785                            struct rte_eth_rss_reta_entry64 *reta_conf,
2786                            uint16_t reta_size)
2787 {
2788         struct rte_eth_dev *dev;
2789         int ret;
2790
2791         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2792
2793         /* Check mask bits */
2794         ret = rte_eth_check_reta_mask(reta_conf, reta_size);
2795         if (ret < 0)
2796                 return ret;
2797
2798         dev = &rte_eth_devices[port_id];
2799         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->reta_query, -ENOTSUP);
2800         return eth_err(port_id, (*dev->dev_ops->reta_query)(dev, reta_conf,
2801                                                             reta_size));
2802 }
2803
2804 int
2805 rte_eth_dev_rss_hash_update(uint16_t port_id,
2806                             struct rte_eth_rss_conf *rss_conf)
2807 {
2808         struct rte_eth_dev *dev;
2809
2810         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2811         dev = &rte_eth_devices[port_id];
2812         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rss_hash_update, -ENOTSUP);
2813         return eth_err(port_id, (*dev->dev_ops->rss_hash_update)(dev,
2814                                                                  rss_conf));
2815 }
2816
2817 int
2818 rte_eth_dev_rss_hash_conf_get(uint16_t port_id,
2819                               struct rte_eth_rss_conf *rss_conf)
2820 {
2821         struct rte_eth_dev *dev;
2822
2823         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2824         dev = &rte_eth_devices[port_id];
2825         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rss_hash_conf_get, -ENOTSUP);
2826         return eth_err(port_id, (*dev->dev_ops->rss_hash_conf_get)(dev,
2827                                                                    rss_conf));
2828 }
2829
2830 int
2831 rte_eth_dev_udp_tunnel_port_add(uint16_t port_id,
2832                                 struct rte_eth_udp_tunnel *udp_tunnel)
2833 {
2834         struct rte_eth_dev *dev;
2835
2836         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2837         if (udp_tunnel == NULL) {
2838                 RTE_PMD_DEBUG_TRACE("Invalid udp_tunnel parameter\n");
2839                 return -EINVAL;
2840         }
2841
2842         if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) {
2843                 RTE_PMD_DEBUG_TRACE("Invalid tunnel type\n");
2844                 return -EINVAL;
2845         }
2846
2847         dev = &rte_eth_devices[port_id];
2848         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->udp_tunnel_port_add, -ENOTSUP);
2849         return eth_err(port_id, (*dev->dev_ops->udp_tunnel_port_add)(dev,
2850                                                                 udp_tunnel));
2851 }
2852
2853 int
2854 rte_eth_dev_udp_tunnel_port_delete(uint16_t port_id,
2855                                    struct rte_eth_udp_tunnel *udp_tunnel)
2856 {
2857         struct rte_eth_dev *dev;
2858
2859         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2860         dev = &rte_eth_devices[port_id];
2861
2862         if (udp_tunnel == NULL) {
2863                 RTE_PMD_DEBUG_TRACE("Invalid udp_tunnel parameter\n");
2864                 return -EINVAL;
2865         }
2866
2867         if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) {
2868                 RTE_PMD_DEBUG_TRACE("Invalid tunnel type\n");
2869                 return -EINVAL;
2870         }
2871
2872         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->udp_tunnel_port_del, -ENOTSUP);
2873         return eth_err(port_id, (*dev->dev_ops->udp_tunnel_port_del)(dev,
2874                                                                 udp_tunnel));
2875 }
2876
2877 int
2878 rte_eth_led_on(uint16_t port_id)
2879 {
2880         struct rte_eth_dev *dev;
2881
2882         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2883         dev = &rte_eth_devices[port_id];
2884         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_led_on, -ENOTSUP);
2885         return eth_err(port_id, (*dev->dev_ops->dev_led_on)(dev));
2886 }
2887
2888 int
2889 rte_eth_led_off(uint16_t port_id)
2890 {
2891         struct rte_eth_dev *dev;
2892
2893         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2894         dev = &rte_eth_devices[port_id];
2895         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_led_off, -ENOTSUP);
2896         return eth_err(port_id, (*dev->dev_ops->dev_led_off)(dev));
2897 }
2898
2899 /*
2900  * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find
2901  * an empty spot.
2902  */
2903 static int
2904 get_mac_addr_index(uint16_t port_id, const struct ether_addr *addr)
2905 {
2906         struct rte_eth_dev_info dev_info;
2907         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
2908         unsigned i;
2909
2910         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2911         rte_eth_dev_info_get(port_id, &dev_info);
2912
2913         for (i = 0; i < dev_info.max_mac_addrs; i++)
2914                 if (memcmp(addr, &dev->data->mac_addrs[i], ETHER_ADDR_LEN) == 0)
2915                         return i;
2916
2917         return -1;
2918 }
2919
2920 static const struct ether_addr null_mac_addr;
2921
2922 int
2923 rte_eth_dev_mac_addr_add(uint16_t port_id, struct ether_addr *addr,
2924                         uint32_t pool)
2925 {
2926         struct rte_eth_dev *dev;
2927         int index;
2928         uint64_t pool_mask;
2929         int ret;
2930
2931         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2932         dev = &rte_eth_devices[port_id];
2933         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_add, -ENOTSUP);
2934
2935         if (is_zero_ether_addr(addr)) {
2936                 RTE_PMD_DEBUG_TRACE("port %d: Cannot add NULL MAC address\n",
2937                         port_id);
2938                 return -EINVAL;
2939         }
2940         if (pool >= ETH_64_POOLS) {
2941                 RTE_PMD_DEBUG_TRACE("pool id must be 0-%d\n", ETH_64_POOLS - 1);
2942                 return -EINVAL;
2943         }
2944
2945         index = get_mac_addr_index(port_id, addr);
2946         if (index < 0) {
2947                 index = get_mac_addr_index(port_id, &null_mac_addr);
2948                 if (index < 0) {
2949                         RTE_PMD_DEBUG_TRACE("port %d: MAC address array full\n",
2950                                 port_id);
2951                         return -ENOSPC;
2952                 }
2953         } else {
2954                 pool_mask = dev->data->mac_pool_sel[index];
2955
2956                 /* Check if both MAC address and pool is already there, and do nothing */
2957                 if (pool_mask & (1ULL << pool))
2958                         return 0;
2959         }
2960
2961         /* Update NIC */
2962         ret = (*dev->dev_ops->mac_addr_add)(dev, addr, index, pool);
2963
2964         if (ret == 0) {
2965                 /* Update address in NIC data structure */
2966                 ether_addr_copy(addr, &dev->data->mac_addrs[index]);
2967
2968                 /* Update pool bitmap in NIC data structure */
2969                 dev->data->mac_pool_sel[index] |= (1ULL << pool);
2970         }
2971
2972         return eth_err(port_id, ret);
2973 }
2974
2975 int
2976 rte_eth_dev_mac_addr_remove(uint16_t port_id, struct ether_addr *addr)
2977 {
2978         struct rte_eth_dev *dev;
2979         int index;
2980
2981         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2982         dev = &rte_eth_devices[port_id];
2983         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_remove, -ENOTSUP);
2984
2985         index = get_mac_addr_index(port_id, addr);
2986         if (index == 0) {
2987                 RTE_PMD_DEBUG_TRACE("port %d: Cannot remove default MAC address\n", port_id);
2988                 return -EADDRINUSE;
2989         } else if (index < 0)
2990                 return 0;  /* Do nothing if address wasn't found */
2991
2992         /* Update NIC */
2993         (*dev->dev_ops->mac_addr_remove)(dev, index);
2994
2995         /* Update address in NIC data structure */
2996         ether_addr_copy(&null_mac_addr, &dev->data->mac_addrs[index]);
2997
2998         /* reset pool bitmap */
2999         dev->data->mac_pool_sel[index] = 0;
3000
3001         return 0;
3002 }
3003
3004 int
3005 rte_eth_dev_default_mac_addr_set(uint16_t port_id, struct ether_addr *addr)
3006 {
3007         struct rte_eth_dev *dev;
3008
3009         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3010
3011         if (!is_valid_assigned_ether_addr(addr))
3012                 return -EINVAL;
3013
3014         dev = &rte_eth_devices[port_id];
3015         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_set, -ENOTSUP);
3016
3017         /* Update default address in NIC data structure */
3018         ether_addr_copy(addr, &dev->data->mac_addrs[0]);
3019
3020         (*dev->dev_ops->mac_addr_set)(dev, addr);
3021
3022         return 0;
3023 }
3024
3025
3026 /*
3027  * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find
3028  * an empty spot.
3029  */
3030 static int
3031 get_hash_mac_addr_index(uint16_t port_id, const struct ether_addr *addr)
3032 {
3033         struct rte_eth_dev_info dev_info;
3034         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
3035         unsigned i;
3036
3037         rte_eth_dev_info_get(port_id, &dev_info);
3038         if (!dev->data->hash_mac_addrs)
3039                 return -1;
3040
3041         for (i = 0; i < dev_info.max_hash_mac_addrs; i++)
3042                 if (memcmp(addr, &dev->data->hash_mac_addrs[i],
3043                         ETHER_ADDR_LEN) == 0)
3044                         return i;
3045
3046         return -1;
3047 }
3048
3049 int
3050 rte_eth_dev_uc_hash_table_set(uint16_t port_id, struct ether_addr *addr,
3051                                 uint8_t on)
3052 {
3053         int index;
3054         int ret;
3055         struct rte_eth_dev *dev;
3056
3057         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3058
3059         dev = &rte_eth_devices[port_id];
3060         if (is_zero_ether_addr(addr)) {
3061                 RTE_PMD_DEBUG_TRACE("port %d: Cannot add NULL MAC address\n",
3062                         port_id);
3063                 return -EINVAL;
3064         }
3065
3066         index = get_hash_mac_addr_index(port_id, addr);
3067         /* Check if it's already there, and do nothing */
3068         if ((index >= 0) && on)
3069                 return 0;
3070
3071         if (index < 0) {
3072                 if (!on) {
3073                         RTE_PMD_DEBUG_TRACE("port %d: the MAC address was not "
3074                                 "set in UTA\n", port_id);
3075                         return -EINVAL;
3076                 }
3077
3078                 index = get_hash_mac_addr_index(port_id, &null_mac_addr);
3079                 if (index < 0) {
3080                         RTE_PMD_DEBUG_TRACE("port %d: MAC address array full\n",
3081                                         port_id);
3082                         return -ENOSPC;
3083                 }
3084         }
3085
3086         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_hash_table_set, -ENOTSUP);
3087         ret = (*dev->dev_ops->uc_hash_table_set)(dev, addr, on);
3088         if (ret == 0) {
3089                 /* Update address in NIC data structure */
3090                 if (on)
3091                         ether_addr_copy(addr,
3092                                         &dev->data->hash_mac_addrs[index]);
3093                 else
3094                         ether_addr_copy(&null_mac_addr,
3095                                         &dev->data->hash_mac_addrs[index]);
3096         }
3097
3098         return eth_err(port_id, ret);
3099 }
3100
3101 int
3102 rte_eth_dev_uc_all_hash_table_set(uint16_t port_id, uint8_t on)
3103 {
3104         struct rte_eth_dev *dev;
3105
3106         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3107
3108         dev = &rte_eth_devices[port_id];
3109
3110         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_all_hash_table_set, -ENOTSUP);
3111         return eth_err(port_id, (*dev->dev_ops->uc_all_hash_table_set)(dev,
3112                                                                        on));
3113 }
3114
3115 int rte_eth_set_queue_rate_limit(uint16_t port_id, uint16_t queue_idx,
3116                                         uint16_t tx_rate)
3117 {
3118         struct rte_eth_dev *dev;
3119         struct rte_eth_dev_info dev_info;
3120         struct rte_eth_link link;
3121
3122         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3123
3124         dev = &rte_eth_devices[port_id];
3125         rte_eth_dev_info_get(port_id, &dev_info);
3126         link = dev->data->dev_link;
3127
3128         if (queue_idx > dev_info.max_tx_queues) {
3129                 RTE_PMD_DEBUG_TRACE("set queue rate limit:port %d: "
3130                                 "invalid queue id=%d\n", port_id, queue_idx);
3131                 return -EINVAL;
3132         }
3133
3134         if (tx_rate > link.link_speed) {
3135                 RTE_PMD_DEBUG_TRACE("set queue rate limit:invalid tx_rate=%d, "
3136                                 "bigger than link speed= %d\n",
3137                         tx_rate, link.link_speed);
3138                 return -EINVAL;
3139         }
3140
3141         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_queue_rate_limit, -ENOTSUP);
3142         return eth_err(port_id, (*dev->dev_ops->set_queue_rate_limit)(dev,
3143                                                         queue_idx, tx_rate));
3144 }
3145
3146 int
3147 rte_eth_mirror_rule_set(uint16_t port_id,
3148                         struct rte_eth_mirror_conf *mirror_conf,
3149                         uint8_t rule_id, uint8_t on)
3150 {
3151         struct rte_eth_dev *dev;
3152
3153         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3154         if (mirror_conf->rule_type == 0) {
3155                 RTE_PMD_DEBUG_TRACE("mirror rule type can not be 0.\n");
3156                 return -EINVAL;
3157         }
3158
3159         if (mirror_conf->dst_pool >= ETH_64_POOLS) {
3160                 RTE_PMD_DEBUG_TRACE("Invalid dst pool, pool id must be 0-%d\n",
3161                                 ETH_64_POOLS - 1);
3162                 return -EINVAL;
3163         }
3164
3165         if ((mirror_conf->rule_type & (ETH_MIRROR_VIRTUAL_POOL_UP |
3166              ETH_MIRROR_VIRTUAL_POOL_DOWN)) &&
3167             (mirror_conf->pool_mask == 0)) {
3168                 RTE_PMD_DEBUG_TRACE("Invalid mirror pool, pool mask can not be 0.\n");
3169                 return -EINVAL;
3170         }
3171
3172         if ((mirror_conf->rule_type & ETH_MIRROR_VLAN) &&
3173             mirror_conf->vlan.vlan_mask == 0) {
3174                 RTE_PMD_DEBUG_TRACE("Invalid vlan mask, vlan mask can not be 0.\n");
3175                 return -EINVAL;
3176         }
3177
3178         dev = &rte_eth_devices[port_id];
3179         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mirror_rule_set, -ENOTSUP);
3180
3181         return eth_err(port_id, (*dev->dev_ops->mirror_rule_set)(dev,
3182                                                 mirror_conf, rule_id, on));
3183 }
3184
3185 int
3186 rte_eth_mirror_rule_reset(uint16_t port_id, uint8_t rule_id)
3187 {
3188         struct rte_eth_dev *dev;
3189
3190         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3191
3192         dev = &rte_eth_devices[port_id];
3193         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mirror_rule_reset, -ENOTSUP);
3194
3195         return eth_err(port_id, (*dev->dev_ops->mirror_rule_reset)(dev,
3196                                                                    rule_id));
3197 }
3198
3199 RTE_INIT(eth_dev_init_cb_lists)
3200 {
3201         int i;
3202
3203         for (i = 0; i < RTE_MAX_ETHPORTS; i++)
3204                 TAILQ_INIT(&rte_eth_devices[i].link_intr_cbs);
3205 }
3206
3207 int
3208 rte_eth_dev_callback_register(uint16_t port_id,
3209                         enum rte_eth_event_type event,
3210                         rte_eth_dev_cb_fn cb_fn, void *cb_arg)
3211 {
3212         struct rte_eth_dev *dev;
3213         struct rte_eth_dev_callback *user_cb;
3214         uint32_t next_port; /* size is 32-bit to prevent loop wrap-around */
3215         uint16_t last_port;
3216
3217         if (!cb_fn)
3218                 return -EINVAL;
3219
3220         if (!rte_eth_dev_is_valid_port(port_id) && port_id != RTE_ETH_ALL) {
3221                 ethdev_log(ERR, "Invalid port_id=%d", port_id);
3222                 return -EINVAL;
3223         }
3224
3225         if (port_id == RTE_ETH_ALL) {
3226                 next_port = 0;
3227                 last_port = RTE_MAX_ETHPORTS - 1;
3228         } else {
3229                 next_port = last_port = port_id;
3230         }
3231
3232         rte_spinlock_lock(&rte_eth_dev_cb_lock);
3233
3234         do {
3235                 dev = &rte_eth_devices[next_port];
3236
3237                 TAILQ_FOREACH(user_cb, &(dev->link_intr_cbs), next) {
3238                         if (user_cb->cb_fn == cb_fn &&
3239                                 user_cb->cb_arg == cb_arg &&
3240                                 user_cb->event == event) {
3241                                 break;
3242                         }
3243                 }
3244
3245                 /* create a new callback. */
3246                 if (user_cb == NULL) {
3247                         user_cb = rte_zmalloc("INTR_USER_CALLBACK",
3248                                 sizeof(struct rte_eth_dev_callback), 0);
3249                         if (user_cb != NULL) {
3250                                 user_cb->cb_fn = cb_fn;
3251                                 user_cb->cb_arg = cb_arg;
3252                                 user_cb->event = event;
3253                                 TAILQ_INSERT_TAIL(&(dev->link_intr_cbs),
3254                                                   user_cb, next);
3255                         } else {
3256                                 rte_spinlock_unlock(&rte_eth_dev_cb_lock);
3257                                 rte_eth_dev_callback_unregister(port_id, event,
3258                                                                 cb_fn, cb_arg);
3259                                 return -ENOMEM;
3260                         }
3261
3262                 }
3263         } while (++next_port <= last_port);
3264
3265         rte_spinlock_unlock(&rte_eth_dev_cb_lock);
3266         return 0;
3267 }
3268
3269 int
3270 rte_eth_dev_callback_unregister(uint16_t port_id,
3271                         enum rte_eth_event_type event,
3272                         rte_eth_dev_cb_fn cb_fn, void *cb_arg)
3273 {
3274         int ret;
3275         struct rte_eth_dev *dev;
3276         struct rte_eth_dev_callback *cb, *next;
3277         uint32_t next_port; /* size is 32-bit to prevent loop wrap-around */
3278         uint16_t last_port;
3279
3280         if (!cb_fn)
3281                 return -EINVAL;
3282
3283         if (!rte_eth_dev_is_valid_port(port_id) && port_id != RTE_ETH_ALL) {
3284                 ethdev_log(ERR, "Invalid port_id=%d", port_id);
3285                 return -EINVAL;
3286         }
3287
3288         if (port_id == RTE_ETH_ALL) {
3289                 next_port = 0;
3290                 last_port = RTE_MAX_ETHPORTS - 1;
3291         } else {
3292                 next_port = last_port = port_id;
3293         }
3294
3295         rte_spinlock_lock(&rte_eth_dev_cb_lock);
3296
3297         do {
3298                 dev = &rte_eth_devices[next_port];
3299                 ret = 0;
3300                 for (cb = TAILQ_FIRST(&dev->link_intr_cbs); cb != NULL;
3301                      cb = next) {
3302
3303                         next = TAILQ_NEXT(cb, next);
3304
3305                         if (cb->cb_fn != cb_fn || cb->event != event ||
3306                             (cb->cb_arg != (void *)-1 && cb->cb_arg != cb_arg))
3307                                 continue;
3308
3309                         /*
3310                          * if this callback is not executing right now,
3311                          * then remove it.
3312                          */
3313                         if (cb->active == 0) {
3314                                 TAILQ_REMOVE(&(dev->link_intr_cbs), cb, next);
3315                                 rte_free(cb);
3316                         } else {
3317                                 ret = -EAGAIN;
3318                         }
3319                 }
3320         } while (++next_port <= last_port);
3321
3322         rte_spinlock_unlock(&rte_eth_dev_cb_lock);
3323         return ret;
3324 }
3325
3326 int
3327 _rte_eth_dev_callback_process(struct rte_eth_dev *dev,
3328         enum rte_eth_event_type event, void *ret_param)
3329 {
3330         struct rte_eth_dev_callback *cb_lst;
3331         struct rte_eth_dev_callback dev_cb;
3332         int rc = 0;
3333
3334         rte_spinlock_lock(&rte_eth_dev_cb_lock);
3335         TAILQ_FOREACH(cb_lst, &(dev->link_intr_cbs), next) {
3336                 if (cb_lst->cb_fn == NULL || cb_lst->event != event)
3337                         continue;
3338                 dev_cb = *cb_lst;
3339                 cb_lst->active = 1;
3340                 if (ret_param != NULL)
3341                         dev_cb.ret_param = ret_param;
3342
3343                 rte_spinlock_unlock(&rte_eth_dev_cb_lock);
3344                 rc = dev_cb.cb_fn(dev->data->port_id, dev_cb.event,
3345                                 dev_cb.cb_arg, dev_cb.ret_param);
3346                 rte_spinlock_lock(&rte_eth_dev_cb_lock);
3347                 cb_lst->active = 0;
3348         }
3349         rte_spinlock_unlock(&rte_eth_dev_cb_lock);
3350         return rc;
3351 }
3352
3353 int
3354 rte_eth_dev_rx_intr_ctl(uint16_t port_id, int epfd, int op, void *data)
3355 {
3356         uint32_t vec;
3357         struct rte_eth_dev *dev;
3358         struct rte_intr_handle *intr_handle;
3359         uint16_t qid;
3360         int rc;
3361
3362         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3363
3364         dev = &rte_eth_devices[port_id];
3365
3366         if (!dev->intr_handle) {
3367                 RTE_PMD_DEBUG_TRACE("RX Intr handle unset\n");
3368                 return -ENOTSUP;
3369         }
3370
3371         intr_handle = dev->intr_handle;
3372         if (!intr_handle->intr_vec) {
3373                 RTE_PMD_DEBUG_TRACE("RX Intr vector unset\n");
3374                 return -EPERM;
3375         }
3376
3377         for (qid = 0; qid < dev->data->nb_rx_queues; qid++) {
3378                 vec = intr_handle->intr_vec[qid];
3379                 rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data);
3380                 if (rc && rc != -EEXIST) {
3381                         RTE_PMD_DEBUG_TRACE("p %u q %u rx ctl error"
3382                                         " op %d epfd %d vec %u\n",
3383                                         port_id, qid, op, epfd, vec);
3384                 }
3385         }
3386
3387         return 0;
3388 }
3389
3390 const struct rte_memzone *
3391 rte_eth_dma_zone_reserve(const struct rte_eth_dev *dev, const char *ring_name,
3392                          uint16_t queue_id, size_t size, unsigned align,
3393                          int socket_id)
3394 {
3395         char z_name[RTE_MEMZONE_NAMESIZE];
3396         const struct rte_memzone *mz;
3397
3398         snprintf(z_name, sizeof(z_name), "%s_%s_%d_%d",
3399                  dev->device->driver->name, ring_name,
3400                  dev->data->port_id, queue_id);
3401
3402         mz = rte_memzone_lookup(z_name);
3403         if (mz)
3404                 return mz;
3405
3406         return rte_memzone_reserve_aligned(z_name, size, socket_id,
3407                         RTE_MEMZONE_IOVA_CONTIG, align);
3408 }
3409
3410 int
3411 rte_eth_dev_rx_intr_ctl_q(uint16_t port_id, uint16_t queue_id,
3412                           int epfd, int op, void *data)
3413 {
3414         uint32_t vec;
3415         struct rte_eth_dev *dev;
3416         struct rte_intr_handle *intr_handle;
3417         int rc;
3418
3419         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3420
3421         dev = &rte_eth_devices[port_id];
3422         if (queue_id >= dev->data->nb_rx_queues) {
3423                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%u\n", queue_id);
3424                 return -EINVAL;
3425         }
3426
3427         if (!dev->intr_handle) {
3428                 RTE_PMD_DEBUG_TRACE("RX Intr handle unset\n");
3429                 return -ENOTSUP;
3430         }
3431
3432         intr_handle = dev->intr_handle;
3433         if (!intr_handle->intr_vec) {
3434                 RTE_PMD_DEBUG_TRACE("RX Intr vector unset\n");
3435                 return -EPERM;
3436         }
3437
3438         vec = intr_handle->intr_vec[queue_id];
3439         rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data);
3440         if (rc && rc != -EEXIST) {
3441                 RTE_PMD_DEBUG_TRACE("p %u q %u rx ctl error"
3442                                 " op %d epfd %d vec %u\n",
3443                                 port_id, queue_id, op, epfd, vec);
3444                 return rc;
3445         }
3446
3447         return 0;
3448 }
3449
3450 int
3451 rte_eth_dev_rx_intr_enable(uint16_t port_id,
3452                            uint16_t queue_id)
3453 {
3454         struct rte_eth_dev *dev;
3455
3456         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3457
3458         dev = &rte_eth_devices[port_id];
3459
3460         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_enable, -ENOTSUP);
3461         return eth_err(port_id, (*dev->dev_ops->rx_queue_intr_enable)(dev,
3462                                                                 queue_id));
3463 }
3464
3465 int
3466 rte_eth_dev_rx_intr_disable(uint16_t port_id,
3467                             uint16_t queue_id)
3468 {
3469         struct rte_eth_dev *dev;
3470
3471         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3472
3473         dev = &rte_eth_devices[port_id];
3474
3475         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_disable, -ENOTSUP);
3476         return eth_err(port_id, (*dev->dev_ops->rx_queue_intr_disable)(dev,
3477                                                                 queue_id));
3478 }
3479
3480
3481 int
3482 rte_eth_dev_filter_supported(uint16_t port_id,
3483                              enum rte_filter_type filter_type)
3484 {
3485         struct rte_eth_dev *dev;
3486
3487         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3488
3489         dev = &rte_eth_devices[port_id];
3490         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->filter_ctrl, -ENOTSUP);
3491         return (*dev->dev_ops->filter_ctrl)(dev, filter_type,
3492                                 RTE_ETH_FILTER_NOP, NULL);
3493 }
3494
3495 int
3496 rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
3497                         enum rte_filter_op filter_op, void *arg)
3498 {
3499         struct rte_eth_dev *dev;
3500
3501         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3502
3503         dev = &rte_eth_devices[port_id];
3504         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->filter_ctrl, -ENOTSUP);
3505         return eth_err(port_id, (*dev->dev_ops->filter_ctrl)(dev, filter_type,
3506                                                              filter_op, arg));
3507 }
3508
3509 const struct rte_eth_rxtx_callback *
3510 rte_eth_add_rx_callback(uint16_t port_id, uint16_t queue_id,
3511                 rte_rx_callback_fn fn, void *user_param)
3512 {
3513 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3514         rte_errno = ENOTSUP;
3515         return NULL;
3516 #endif
3517         /* check input parameters */
3518         if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
3519                     queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) {
3520                 rte_errno = EINVAL;
3521                 return NULL;
3522         }
3523         struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
3524
3525         if (cb == NULL) {
3526                 rte_errno = ENOMEM;
3527                 return NULL;
3528         }
3529
3530         cb->fn.rx = fn;
3531         cb->param = user_param;
3532
3533         rte_spinlock_lock(&rte_eth_rx_cb_lock);
3534         /* Add the callbacks in fifo order. */
3535         struct rte_eth_rxtx_callback *tail =
3536                 rte_eth_devices[port_id].post_rx_burst_cbs[queue_id];
3537
3538         if (!tail) {
3539                 rte_eth_devices[port_id].post_rx_burst_cbs[queue_id] = cb;
3540
3541         } else {
3542                 while (tail->next)
3543                         tail = tail->next;
3544                 tail->next = cb;
3545         }
3546         rte_spinlock_unlock(&rte_eth_rx_cb_lock);
3547
3548         return cb;
3549 }
3550
3551 const struct rte_eth_rxtx_callback *
3552 rte_eth_add_first_rx_callback(uint16_t port_id, uint16_t queue_id,
3553                 rte_rx_callback_fn fn, void *user_param)
3554 {
3555 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3556         rte_errno = ENOTSUP;
3557         return NULL;
3558 #endif
3559         /* check input parameters */
3560         if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
3561                 queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) {
3562                 rte_errno = EINVAL;
3563                 return NULL;
3564         }
3565
3566         struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
3567
3568         if (cb == NULL) {
3569                 rte_errno = ENOMEM;
3570                 return NULL;
3571         }
3572
3573         cb->fn.rx = fn;
3574         cb->param = user_param;
3575
3576         rte_spinlock_lock(&rte_eth_rx_cb_lock);
3577         /* Add the callbacks at fisrt position*/
3578         cb->next = rte_eth_devices[port_id].post_rx_burst_cbs[queue_id];
3579         rte_smp_wmb();
3580         rte_eth_devices[port_id].post_rx_burst_cbs[queue_id] = cb;
3581         rte_spinlock_unlock(&rte_eth_rx_cb_lock);
3582
3583         return cb;
3584 }
3585
3586 const struct rte_eth_rxtx_callback *
3587 rte_eth_add_tx_callback(uint16_t port_id, uint16_t queue_id,
3588                 rte_tx_callback_fn fn, void *user_param)
3589 {
3590 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3591         rte_errno = ENOTSUP;
3592         return NULL;
3593 #endif
3594         /* check input parameters */
3595         if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
3596                     queue_id >= rte_eth_devices[port_id].data->nb_tx_queues) {
3597                 rte_errno = EINVAL;
3598                 return NULL;
3599         }
3600
3601         struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
3602
3603         if (cb == NULL) {
3604                 rte_errno = ENOMEM;
3605                 return NULL;
3606         }
3607
3608         cb->fn.tx = fn;
3609         cb->param = user_param;
3610
3611         rte_spinlock_lock(&rte_eth_tx_cb_lock);
3612         /* Add the callbacks in fifo order. */
3613         struct rte_eth_rxtx_callback *tail =
3614                 rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id];
3615
3616         if (!tail) {
3617                 rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id] = cb;
3618
3619         } else {
3620                 while (tail->next)
3621                         tail = tail->next;
3622                 tail->next = cb;
3623         }
3624         rte_spinlock_unlock(&rte_eth_tx_cb_lock);
3625
3626         return cb;
3627 }
3628
3629 int
3630 rte_eth_remove_rx_callback(uint16_t port_id, uint16_t queue_id,
3631                 const struct rte_eth_rxtx_callback *user_cb)
3632 {
3633 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3634         return -ENOTSUP;
3635 #endif
3636         /* Check input parameters. */
3637         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
3638         if (user_cb == NULL ||
3639                         queue_id >= rte_eth_devices[port_id].data->nb_rx_queues)
3640                 return -EINVAL;
3641
3642         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
3643         struct rte_eth_rxtx_callback *cb;
3644         struct rte_eth_rxtx_callback **prev_cb;
3645         int ret = -EINVAL;
3646
3647         rte_spinlock_lock(&rte_eth_rx_cb_lock);
3648         prev_cb = &dev->post_rx_burst_cbs[queue_id];
3649         for (; *prev_cb != NULL; prev_cb = &cb->next) {
3650                 cb = *prev_cb;
3651                 if (cb == user_cb) {
3652                         /* Remove the user cb from the callback list. */
3653                         *prev_cb = cb->next;
3654                         ret = 0;
3655                         break;
3656                 }
3657         }
3658         rte_spinlock_unlock(&rte_eth_rx_cb_lock);
3659
3660         return ret;
3661 }
3662
3663 int
3664 rte_eth_remove_tx_callback(uint16_t port_id, uint16_t queue_id,
3665                 const struct rte_eth_rxtx_callback *user_cb)
3666 {
3667 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3668         return -ENOTSUP;
3669 #endif
3670         /* Check input parameters. */
3671         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
3672         if (user_cb == NULL ||
3673                         queue_id >= rte_eth_devices[port_id].data->nb_tx_queues)
3674                 return -EINVAL;
3675
3676         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
3677         int ret = -EINVAL;
3678         struct rte_eth_rxtx_callback *cb;
3679         struct rte_eth_rxtx_callback **prev_cb;
3680
3681         rte_spinlock_lock(&rte_eth_tx_cb_lock);
3682         prev_cb = &dev->pre_tx_burst_cbs[queue_id];
3683         for (; *prev_cb != NULL; prev_cb = &cb->next) {
3684                 cb = *prev_cb;
3685                 if (cb == user_cb) {
3686                         /* Remove the user cb from the callback list. */
3687                         *prev_cb = cb->next;
3688                         ret = 0;
3689                         break;
3690                 }
3691         }
3692         rte_spinlock_unlock(&rte_eth_tx_cb_lock);
3693
3694         return ret;
3695 }
3696
3697 int
3698 rte_eth_rx_queue_info_get(uint16_t port_id, uint16_t queue_id,
3699         struct rte_eth_rxq_info *qinfo)
3700 {
3701         struct rte_eth_dev *dev;
3702
3703         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3704
3705         if (qinfo == NULL)
3706                 return -EINVAL;
3707
3708         dev = &rte_eth_devices[port_id];
3709         if (queue_id >= dev->data->nb_rx_queues) {
3710                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%d\n", queue_id);
3711                 return -EINVAL;
3712         }
3713
3714         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rxq_info_get, -ENOTSUP);
3715
3716         memset(qinfo, 0, sizeof(*qinfo));
3717         dev->dev_ops->rxq_info_get(dev, queue_id, qinfo);
3718         return 0;
3719 }
3720
3721 int
3722 rte_eth_tx_queue_info_get(uint16_t port_id, uint16_t queue_id,
3723         struct rte_eth_txq_info *qinfo)
3724 {
3725         struct rte_eth_dev *dev;
3726
3727         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3728
3729         if (qinfo == NULL)
3730                 return -EINVAL;
3731
3732         dev = &rte_eth_devices[port_id];
3733         if (queue_id >= dev->data->nb_tx_queues) {
3734                 RTE_PMD_DEBUG_TRACE("Invalid TX queue_id=%d\n", queue_id);
3735                 return -EINVAL;
3736         }
3737
3738         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->txq_info_get, -ENOTSUP);
3739
3740         memset(qinfo, 0, sizeof(*qinfo));
3741         dev->dev_ops->txq_info_get(dev, queue_id, qinfo);
3742         return 0;
3743 }
3744
3745 int
3746 rte_eth_dev_set_mc_addr_list(uint16_t port_id,
3747                              struct ether_addr *mc_addr_set,
3748                              uint32_t nb_mc_addr)
3749 {
3750         struct rte_eth_dev *dev;
3751
3752         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3753
3754         dev = &rte_eth_devices[port_id];
3755         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_mc_addr_list, -ENOTSUP);
3756         return eth_err(port_id, dev->dev_ops->set_mc_addr_list(dev,
3757                                                 mc_addr_set, nb_mc_addr));
3758 }
3759
3760 int
3761 rte_eth_timesync_enable(uint16_t port_id)
3762 {
3763         struct rte_eth_dev *dev;
3764
3765         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3766         dev = &rte_eth_devices[port_id];
3767
3768         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_enable, -ENOTSUP);
3769         return eth_err(port_id, (*dev->dev_ops->timesync_enable)(dev));
3770 }
3771
3772 int
3773 rte_eth_timesync_disable(uint16_t port_id)
3774 {
3775         struct rte_eth_dev *dev;
3776
3777         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3778         dev = &rte_eth_devices[port_id];
3779
3780         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_disable, -ENOTSUP);
3781         return eth_err(port_id, (*dev->dev_ops->timesync_disable)(dev));
3782 }
3783
3784 int
3785 rte_eth_timesync_read_rx_timestamp(uint16_t port_id, struct timespec *timestamp,
3786                                    uint32_t flags)
3787 {
3788         struct rte_eth_dev *dev;
3789
3790         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3791         dev = &rte_eth_devices[port_id];
3792
3793         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_rx_timestamp, -ENOTSUP);
3794         return eth_err(port_id, (*dev->dev_ops->timesync_read_rx_timestamp)
3795                                 (dev, timestamp, flags));
3796 }
3797
3798 int
3799 rte_eth_timesync_read_tx_timestamp(uint16_t port_id,
3800                                    struct timespec *timestamp)
3801 {
3802         struct rte_eth_dev *dev;
3803
3804         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3805         dev = &rte_eth_devices[port_id];
3806
3807         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_tx_timestamp, -ENOTSUP);
3808         return eth_err(port_id, (*dev->dev_ops->timesync_read_tx_timestamp)
3809                                 (dev, timestamp));
3810 }
3811
3812 int
3813 rte_eth_timesync_adjust_time(uint16_t port_id, int64_t delta)
3814 {
3815         struct rte_eth_dev *dev;
3816
3817         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3818         dev = &rte_eth_devices[port_id];
3819
3820         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_adjust_time, -ENOTSUP);
3821         return eth_err(port_id, (*dev->dev_ops->timesync_adjust_time)(dev,
3822                                                                       delta));
3823 }
3824
3825 int
3826 rte_eth_timesync_read_time(uint16_t port_id, struct timespec *timestamp)
3827 {
3828         struct rte_eth_dev *dev;
3829
3830         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3831         dev = &rte_eth_devices[port_id];
3832
3833         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_time, -ENOTSUP);
3834         return eth_err(port_id, (*dev->dev_ops->timesync_read_time)(dev,
3835                                                                 timestamp));
3836 }
3837
3838 int
3839 rte_eth_timesync_write_time(uint16_t port_id, const struct timespec *timestamp)
3840 {
3841         struct rte_eth_dev *dev;
3842
3843         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3844         dev = &rte_eth_devices[port_id];
3845
3846         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_write_time, -ENOTSUP);
3847         return eth_err(port_id, (*dev->dev_ops->timesync_write_time)(dev,
3848                                                                 timestamp));
3849 }
3850
3851 int
3852 rte_eth_dev_get_reg_info(uint16_t port_id, struct rte_dev_reg_info *info)
3853 {
3854         struct rte_eth_dev *dev;
3855
3856         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3857
3858         dev = &rte_eth_devices[port_id];
3859         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_reg, -ENOTSUP);
3860         return eth_err(port_id, (*dev->dev_ops->get_reg)(dev, info));
3861 }
3862
3863 int
3864 rte_eth_dev_get_eeprom_length(uint16_t port_id)
3865 {
3866         struct rte_eth_dev *dev;
3867
3868         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3869
3870         dev = &rte_eth_devices[port_id];
3871         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom_length, -ENOTSUP);
3872         return eth_err(port_id, (*dev->dev_ops->get_eeprom_length)(dev));
3873 }
3874
3875 int
3876 rte_eth_dev_get_eeprom(uint16_t port_id, struct rte_dev_eeprom_info *info)
3877 {
3878         struct rte_eth_dev *dev;
3879
3880         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3881
3882         dev = &rte_eth_devices[port_id];
3883         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom, -ENOTSUP);
3884         return eth_err(port_id, (*dev->dev_ops->get_eeprom)(dev, info));
3885 }
3886
3887 int
3888 rte_eth_dev_set_eeprom(uint16_t port_id, struct rte_dev_eeprom_info *info)
3889 {
3890         struct rte_eth_dev *dev;
3891
3892         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3893
3894         dev = &rte_eth_devices[port_id];
3895         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_eeprom, -ENOTSUP);
3896         return eth_err(port_id, (*dev->dev_ops->set_eeprom)(dev, info));
3897 }
3898
3899 int
3900 rte_eth_dev_get_dcb_info(uint16_t port_id,
3901                              struct rte_eth_dcb_info *dcb_info)
3902 {
3903         struct rte_eth_dev *dev;
3904
3905         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3906
3907         dev = &rte_eth_devices[port_id];
3908         memset(dcb_info, 0, sizeof(struct rte_eth_dcb_info));
3909
3910         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_dcb_info, -ENOTSUP);
3911         return eth_err(port_id, (*dev->dev_ops->get_dcb_info)(dev, dcb_info));
3912 }
3913
3914 int
3915 rte_eth_dev_l2_tunnel_eth_type_conf(uint16_t port_id,
3916                                     struct rte_eth_l2_tunnel_conf *l2_tunnel)
3917 {
3918         struct rte_eth_dev *dev;
3919
3920         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3921         if (l2_tunnel == NULL) {
3922                 RTE_PMD_DEBUG_TRACE("Invalid l2_tunnel parameter\n");
3923                 return -EINVAL;
3924         }
3925
3926         if (l2_tunnel->l2_tunnel_type >= RTE_TUNNEL_TYPE_MAX) {
3927                 RTE_PMD_DEBUG_TRACE("Invalid tunnel type\n");
3928                 return -EINVAL;
3929         }
3930
3931         dev = &rte_eth_devices[port_id];
3932         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->l2_tunnel_eth_type_conf,
3933                                 -ENOTSUP);
3934         return eth_err(port_id, (*dev->dev_ops->l2_tunnel_eth_type_conf)(dev,
3935                                                                 l2_tunnel));
3936 }
3937
3938 int
3939 rte_eth_dev_l2_tunnel_offload_set(uint16_t port_id,
3940                                   struct rte_eth_l2_tunnel_conf *l2_tunnel,
3941                                   uint32_t mask,
3942                                   uint8_t en)
3943 {
3944         struct rte_eth_dev *dev;
3945
3946         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3947
3948         if (l2_tunnel == NULL) {
3949                 RTE_PMD_DEBUG_TRACE("Invalid l2_tunnel parameter\n");
3950                 return -EINVAL;
3951         }
3952
3953         if (l2_tunnel->l2_tunnel_type >= RTE_TUNNEL_TYPE_MAX) {
3954                 RTE_PMD_DEBUG_TRACE("Invalid tunnel type.\n");
3955                 return -EINVAL;
3956         }
3957
3958         if (mask == 0) {
3959                 RTE_PMD_DEBUG_TRACE("Mask should have a value.\n");
3960                 return -EINVAL;
3961         }
3962
3963         dev = &rte_eth_devices[port_id];
3964         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->l2_tunnel_offload_set,
3965                                 -ENOTSUP);
3966         return eth_err(port_id, (*dev->dev_ops->l2_tunnel_offload_set)(dev,
3967                                                         l2_tunnel, mask, en));
3968 }
3969
3970 static void
3971 rte_eth_dev_adjust_nb_desc(uint16_t *nb_desc,
3972                            const struct rte_eth_desc_lim *desc_lim)
3973 {
3974         if (desc_lim->nb_align != 0)
3975                 *nb_desc = RTE_ALIGN_CEIL(*nb_desc, desc_lim->nb_align);
3976
3977         if (desc_lim->nb_max != 0)
3978                 *nb_desc = RTE_MIN(*nb_desc, desc_lim->nb_max);
3979
3980         *nb_desc = RTE_MAX(*nb_desc, desc_lim->nb_min);
3981 }
3982
3983 int
3984 rte_eth_dev_adjust_nb_rx_tx_desc(uint16_t port_id,
3985                                  uint16_t *nb_rx_desc,
3986                                  uint16_t *nb_tx_desc)
3987 {
3988         struct rte_eth_dev *dev;
3989         struct rte_eth_dev_info dev_info;
3990
3991         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3992
3993         dev = &rte_eth_devices[port_id];
3994         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
3995
3996         rte_eth_dev_info_get(port_id, &dev_info);
3997
3998         if (nb_rx_desc != NULL)
3999                 rte_eth_dev_adjust_nb_desc(nb_rx_desc, &dev_info.rx_desc_lim);
4000
4001         if (nb_tx_desc != NULL)
4002                 rte_eth_dev_adjust_nb_desc(nb_tx_desc, &dev_info.tx_desc_lim);
4003
4004         return 0;
4005 }
4006
4007 int
4008 rte_eth_dev_pool_ops_supported(uint16_t port_id, const char *pool)
4009 {
4010         struct rte_eth_dev *dev;
4011
4012         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4013
4014         if (pool == NULL)
4015                 return -EINVAL;
4016
4017         dev = &rte_eth_devices[port_id];
4018
4019         if (*dev->dev_ops->pool_ops_supported == NULL)
4020                 return 1; /* all pools are supported */
4021
4022         return (*dev->dev_ops->pool_ops_supported)(dev, pool);
4023 }
4024
4025 RTE_INIT(ethdev_init_log);
4026 static void
4027 ethdev_init_log(void)
4028 {
4029         ethdev_logtype = rte_log_register("lib.ethdev");
4030         if (ethdev_logtype >= 0)
4031                 rte_log_set_level(ethdev_logtype, RTE_LOG_INFO);
4032 }