4 * Copyright(c) 2015 EZchip Semiconductor Ltd. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
16 * * Neither the name of EZchip Semiconductor nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include <rte_eal_memconfig.h>
38 #include <rte_ethdev.h>
39 #include <rte_malloc.h>
40 #include <rte_cycles.h>
42 #include <arch/mpipe_xaui_def.h>
43 #include <arch/mpipe_gbe_def.h>
45 #include <gxio/mpipe.h>
47 #ifdef RTE_LIBRTE_MPIPE_PMD_DEBUG
48 #define PMD_DEBUG_RX(...) RTE_LOG(DEBUG, PMD, __VA_ARGS__)
49 #define PMD_DEBUG_TX(...) RTE_LOG(DEBUG, PMD, __VA_ARGS__)
51 #define PMD_DEBUG_RX(...)
52 #define PMD_DEBUG_TX(...)
55 #define MPIPE_MAX_CHANNELS 128
56 #define MPIPE_TX_MAX_QUEUES 128
57 #define MPIPE_RX_MAX_QUEUES 16
58 #define MPIPE_TX_DESCS 512
59 #define MPIPE_RX_BUCKETS 256
60 #define MPIPE_RX_STACK_SIZE 65536
61 #define MPIPE_RX_IP_ALIGN 2
62 #define MPIPE_BSM_ALIGN 128
64 #define MPIPE_LINK_UPDATE_TIMEOUT 10 /* s */
65 #define MPIPE_LINK_UPDATE_INTERVAL 100000 /* us */
67 struct mpipe_channel_config {
72 gxio_mpipe_rules_stacks_t stacks;
75 struct mpipe_context {
77 gxio_mpipe_context_t context;
78 struct mpipe_channel_config channels[MPIPE_MAX_CHANNELS];
81 /* Per-core local data. */
83 int mbuf_push_debt[RTE_MAX_ETHPORTS]; /* Buffer push debt. */
84 } __rte_cache_aligned;
86 #define MPIPE_BUF_DEBT_THRESHOLD 32
87 static __thread struct mpipe_local mpipe_local;
88 static struct mpipe_context mpipe_contexts[GXIO_MPIPE_INSTANCE_MAX];
89 static int mpipe_instances;
90 static const char *drivername = "MPIPE PMD";
92 /* Per queue statistics. */
93 struct mpipe_queue_stats {
94 uint64_t packets, bytes, errors, nomem;
97 /* Common tx/rx queue fields. */
99 struct mpipe_dev_priv *priv; /* "priv" data of its device. */
100 uint16_t nb_desc; /* Number of tx descriptors. */
101 uint16_t port_id; /* Device index. */
102 uint16_t stat_idx; /* Queue stats index. */
103 uint8_t queue_idx; /* Queue index. */
104 uint8_t link_status; /* 0 = link down. */
105 struct mpipe_queue_stats stats; /* Stat data for the queue. */
108 /* Transmit queue description. */
109 struct mpipe_tx_queue {
110 struct mpipe_queue q; /* Common stuff. */
113 /* Receive queue description. */
114 struct mpipe_rx_queue {
115 struct mpipe_queue q; /* Common stuff. */
116 gxio_mpipe_iqueue_t iqueue; /* mPIPE iqueue. */
117 gxio_mpipe_idesc_t *next_desc; /* Next idesc to process. */
118 int avail_descs; /* Number of available descs. */
119 void *rx_ring_mem; /* DMA ring memory. */
122 struct mpipe_dev_priv {
123 gxio_mpipe_context_t *context; /* mPIPE context. */
124 gxio_mpipe_link_t link; /* mPIPE link for the device. */
125 gxio_mpipe_equeue_t equeue; /* mPIPE equeue. */
126 unsigned equeue_size; /* mPIPE equeue desc count. */
127 int instance; /* mPIPE instance. */
128 int ering; /* mPIPE eDMA ring. */
129 int stack; /* mPIPE buffer stack. */
130 int channel; /* Device channel. */
131 int port_id; /* DPDK port index. */
132 struct rte_eth_dev *eth_dev; /* DPDK device. */
133 struct rte_mbuf **tx_comps; /* TX completion array. */
134 struct rte_mempool *rx_mpool; /* mpool used by the rx queues. */
135 unsigned rx_offset; /* Receive head room. */
136 unsigned rx_size_code; /* mPIPE rx buffer size code. */
137 int is_xaui:1, /* Is this an xgbe or gbe? */
138 initialized:1, /* Initialized port? */
139 running:1; /* Running port? */
140 struct ether_addr mac_addr; /* MAC address. */
141 unsigned nb_rx_queues; /* Configured tx queues. */
142 unsigned nb_tx_queues; /* Configured rx queues. */
143 int first_bucket; /* mPIPE bucket start index. */
144 int first_ring; /* mPIPE notif ring start index. */
145 int notif_group; /* mPIPE notif group. */
146 rte_atomic32_t dp_count __rte_cache_aligned; /* DP Entry count. */
147 int tx_stat_mapping[RTE_ETHDEV_QUEUE_STAT_CNTRS];
148 int rx_stat_mapping[RTE_ETHDEV_QUEUE_STAT_CNTRS];
151 #define mpipe_priv(dev) \
152 ((struct mpipe_dev_priv*)(dev)->data->dev_private)
154 #define mpipe_name(priv) \
155 ((priv)->eth_dev->data->name)
157 #define mpipe_rx_queue(priv, n) \
158 ((struct mpipe_rx_queue *)(priv)->eth_dev->data->rx_queues[n])
160 #define mpipe_tx_queue(priv, n) \
161 ((struct mpipe_tx_queue *)(priv)->eth_dev->data->tx_queues[n])
164 mpipe_xmit_flush(struct mpipe_dev_priv *priv);
167 mpipe_recv_flush(struct mpipe_dev_priv *priv);
169 static int mpipe_equeue_sizes[] = {
170 [GXIO_MPIPE_EQUEUE_ENTRY_512] = 512,
171 [GXIO_MPIPE_EQUEUE_ENTRY_2K] = 2048,
172 [GXIO_MPIPE_EQUEUE_ENTRY_8K] = 8192,
173 [GXIO_MPIPE_EQUEUE_ENTRY_64K] = 65536,
176 static int mpipe_iqueue_sizes[] = {
177 [GXIO_MPIPE_IQUEUE_ENTRY_128] = 128,
178 [GXIO_MPIPE_IQUEUE_ENTRY_512] = 512,
179 [GXIO_MPIPE_IQUEUE_ENTRY_2K] = 2048,
180 [GXIO_MPIPE_IQUEUE_ENTRY_64K] = 65536,
183 static int mpipe_buffer_sizes[] = {
184 [GXIO_MPIPE_BUFFER_SIZE_128] = 128,
185 [GXIO_MPIPE_BUFFER_SIZE_256] = 256,
186 [GXIO_MPIPE_BUFFER_SIZE_512] = 512,
187 [GXIO_MPIPE_BUFFER_SIZE_1024] = 1024,
188 [GXIO_MPIPE_BUFFER_SIZE_1664] = 1664,
189 [GXIO_MPIPE_BUFFER_SIZE_4096] = 4096,
190 [GXIO_MPIPE_BUFFER_SIZE_10368] = 10368,
191 [GXIO_MPIPE_BUFFER_SIZE_16384] = 16384,
194 static gxio_mpipe_context_t *
195 mpipe_context(int instance)
197 if (instance < 0 || instance >= mpipe_instances)
199 return &mpipe_contexts[instance].context;
202 static int mpipe_channel_config(int instance, int channel,
203 struct mpipe_channel_config *config)
205 struct mpipe_channel_config *data;
206 struct mpipe_context *context;
207 gxio_mpipe_rules_t rules;
210 if (instance < 0 || instance >= mpipe_instances ||
211 channel < 0 || channel >= MPIPE_MAX_CHANNELS)
214 context = &mpipe_contexts[instance];
216 rte_spinlock_lock(&context->lock);
218 gxio_mpipe_rules_init(&rules, &context->context);
220 for (idx = 0; idx < MPIPE_MAX_CHANNELS; idx++) {
221 data = (channel == idx) ? config : &context->channels[idx];
226 rc = gxio_mpipe_rules_begin(&rules, data->first_bucket,
227 data->num_buckets, &data->stacks);
232 rc = gxio_mpipe_rules_add_channel(&rules, idx);
237 rc = gxio_mpipe_rules_set_headroom(&rules, data->head_room);
243 rc = gxio_mpipe_rules_commit(&rules);
245 memcpy(&context->channels[channel], config, sizeof(*config));
249 rte_spinlock_unlock(&context->lock);
255 mpipe_get_size_index(int *array, int count, int size,
260 for (i = 0; i < count && array[i] < size; i++) {
266 return i < count ? (int)i : -ENOENT;
268 return last >= 0 ? last : -ENOENT;
272 mpipe_calc_size(int *array, int count, int size)
274 int index = mpipe_get_size_index(array, count, size, 1);
275 return index < 0 ? index : array[index];
278 static int mpipe_equeue_size(int size)
281 result = mpipe_calc_size(mpipe_equeue_sizes,
282 RTE_DIM(mpipe_equeue_sizes), size);
286 static int mpipe_iqueue_size(int size)
289 result = mpipe_calc_size(mpipe_iqueue_sizes,
290 RTE_DIM(mpipe_iqueue_sizes), size);
294 static int mpipe_buffer_size_index(int size)
297 result = mpipe_get_size_index(mpipe_buffer_sizes,
298 RTE_DIM(mpipe_buffer_sizes), size, 0);
303 mpipe_dev_atomic_read_link_status(struct rte_eth_dev *dev,
304 struct rte_eth_link *link)
306 struct rte_eth_link *dst = link;
307 struct rte_eth_link *src = &(dev->data->dev_link);
309 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
310 *(uint64_t *)src) == 0)
317 mpipe_dev_atomic_write_link_status(struct rte_eth_dev *dev,
318 struct rte_eth_link *link)
320 struct rte_eth_link *dst = &(dev->data->dev_link);
321 struct rte_eth_link *src = link;
323 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
324 *(uint64_t *)src) == 0)
331 mpipe_infos_get(struct rte_eth_dev *dev __rte_unused,
332 struct rte_eth_dev_info *dev_info)
334 dev_info->min_rx_bufsize = 128;
335 dev_info->max_rx_pktlen = 1518;
336 dev_info->max_tx_queues = MPIPE_TX_MAX_QUEUES;
337 dev_info->max_rx_queues = MPIPE_RX_MAX_QUEUES;
338 dev_info->max_mac_addrs = 1;
339 dev_info->rx_offload_capa = 0;
340 dev_info->tx_offload_capa = 0;
344 mpipe_configure(struct rte_eth_dev *dev)
346 struct mpipe_dev_priv *priv = mpipe_priv(dev);
348 if (dev->data->nb_tx_queues > MPIPE_TX_MAX_QUEUES) {
349 RTE_LOG(ERR, PMD, "%s: Too many tx queues: %d > %d\n",
350 mpipe_name(priv), dev->data->nb_tx_queues,
351 MPIPE_TX_MAX_QUEUES);
354 priv->nb_tx_queues = dev->data->nb_tx_queues;
356 if (dev->data->nb_rx_queues > MPIPE_RX_MAX_QUEUES) {
357 RTE_LOG(ERR, PMD, "%s: Too many rx queues: %d > %d\n",
358 mpipe_name(priv), dev->data->nb_rx_queues,
359 MPIPE_RX_MAX_QUEUES);
361 priv->nb_rx_queues = dev->data->nb_rx_queues;
367 mpipe_link_compare(struct rte_eth_link *link1,
368 struct rte_eth_link *link2)
370 return (*(uint64_t *)link1 == *(uint64_t *)link2)
375 mpipe_link_update(struct rte_eth_dev *dev, int wait_to_complete)
377 struct mpipe_dev_priv *priv = mpipe_priv(dev);
378 struct rte_eth_link old, new;
379 int64_t state, speed;
382 memset(&old, 0, sizeof(old));
383 memset(&new, 0, sizeof(new));
384 mpipe_dev_atomic_read_link_status(dev, &old);
386 for (count = 0, rc = 0; count < MPIPE_LINK_UPDATE_TIMEOUT; count++) {
387 if (!priv->initialized)
390 state = gxio_mpipe_link_get_attr(&priv->link,
391 GXIO_MPIPE_LINK_CURRENT_STATE);
395 speed = state & GXIO_MPIPE_LINK_SPEED_MASK;
397 new.link_autoneg = (dev->data->dev_conf.link_speeds &
398 ETH_LINK_SPEED_AUTONEG);
399 if (speed == GXIO_MPIPE_LINK_1G) {
400 new.link_speed = ETH_SPEED_NUM_1G;
401 new.link_duplex = ETH_LINK_FULL_DUPLEX;
402 new.link_status = ETH_LINK_UP;
403 } else if (speed == GXIO_MPIPE_LINK_10G) {
404 new.link_speed = ETH_SPEED_NUM_10G;
405 new.link_duplex = ETH_LINK_FULL_DUPLEX;
406 new.link_status = ETH_LINK_UP;
409 rc = mpipe_link_compare(&old, &new);
410 if (rc == 0 || !wait_to_complete)
413 rte_delay_us(MPIPE_LINK_UPDATE_INTERVAL);
416 mpipe_dev_atomic_write_link_status(dev, &new);
421 mpipe_set_link(struct rte_eth_dev *dev, int up)
423 struct mpipe_dev_priv *priv = mpipe_priv(dev);
426 rc = gxio_mpipe_link_set_attr(&priv->link,
427 GXIO_MPIPE_LINK_DESIRED_STATE,
428 up ? GXIO_MPIPE_LINK_ANYSPEED : 0);
430 RTE_LOG(ERR, PMD, "%s: Failed to set link %s.\n",
431 mpipe_name(priv), up ? "up" : "down");
433 mpipe_link_update(dev, 0);
440 mpipe_set_link_up(struct rte_eth_dev *dev)
442 return mpipe_set_link(dev, 1);
446 mpipe_set_link_down(struct rte_eth_dev *dev)
448 return mpipe_set_link(dev, 0);
452 mpipe_dp_enter(struct mpipe_dev_priv *priv)
454 __insn_mtspr(SPR_DSTREAM_PF, 0);
455 rte_atomic32_inc(&priv->dp_count);
459 mpipe_dp_exit(struct mpipe_dev_priv *priv)
461 rte_atomic32_dec(&priv->dp_count);
465 mpipe_dp_wait(struct mpipe_dev_priv *priv)
467 while (rte_atomic32_read(&priv->dp_count) != 0) {
473 mpipe_mbuf_stack_index(struct mpipe_dev_priv *priv, struct rte_mbuf *mbuf)
475 return (mbuf->port < RTE_MAX_ETHPORTS) ?
476 mpipe_priv(&rte_eth_devices[mbuf->port])->stack :
480 static inline struct rte_mbuf *
481 mpipe_recv_mbuf(struct mpipe_dev_priv *priv, gxio_mpipe_idesc_t *idesc,
484 void *va = gxio_mpipe_idesc_get_va(idesc);
485 uint16_t size = gxio_mpipe_idesc_get_xfer_size(idesc);
486 struct rte_mbuf *mbuf = RTE_PTR_SUB(va, priv->rx_offset);
488 rte_pktmbuf_reset(mbuf);
489 mbuf->data_off = (uintptr_t)va - (uintptr_t)mbuf->buf_addr;
490 mbuf->port = in_port;
491 mbuf->data_len = size;
492 mbuf->pkt_len = size;
493 mbuf->hash.rss = gxio_mpipe_idesc_get_flow_hash(idesc);
495 PMD_DEBUG_RX("%s: RX mbuf %p, buffer %p, buf_addr %p, size %d\n",
496 mpipe_name(priv), mbuf, va, mbuf->buf_addr, size);
502 mpipe_recv_push(struct mpipe_dev_priv *priv, struct rte_mbuf *mbuf)
504 const int offset = RTE_PKTMBUF_HEADROOM + MPIPE_RX_IP_ALIGN;
505 void *buf_addr = RTE_PTR_ADD(mbuf->buf_addr, offset);
507 gxio_mpipe_push_buffer(priv->context, priv->stack, buf_addr);
508 PMD_DEBUG_RX("%s: Pushed mbuf %p, buffer %p into stack %d\n",
509 mpipe_name(priv), mbuf, buf_addr, priv->stack);
513 mpipe_recv_fill_stack(struct mpipe_dev_priv *priv, int count)
515 struct rte_mbuf *mbuf;
518 for (i = 0; i < count; i++) {
519 mbuf = rte_mbuf_raw_alloc(priv->rx_mpool);
522 mpipe_recv_push(priv, mbuf);
525 PMD_DEBUG_RX("%s: Filled %d/%d buffers\n", mpipe_name(priv), i, count);
529 mpipe_recv_flush_stack(struct mpipe_dev_priv *priv)
531 const int offset = priv->rx_offset & ~RTE_MEMPOOL_ALIGN_MASK;
532 uint8_t in_port = priv->port_id;
533 struct rte_mbuf *mbuf;
537 va = gxio_mpipe_pop_buffer(priv->context, priv->stack);
540 mbuf = RTE_PTR_SUB(va, offset);
542 PMD_DEBUG_RX("%s: Flushing mbuf %p, va %p\n",
543 mpipe_name(priv), mbuf, va);
545 mbuf->data_off = (uintptr_t)va - (uintptr_t)mbuf->buf_addr;
548 mbuf->port = in_port;
549 mbuf->packet_type = 0;
553 __rte_mbuf_raw_free(mbuf);
558 mpipe_register_segment(struct mpipe_dev_priv *priv, const struct rte_memseg *ms)
560 size_t size = ms->hugepage_sz;
564 for (addr = ms->addr, end = addr + ms->len; addr < end; addr += size) {
565 rc = gxio_mpipe_register_page(priv->context, priv->stack, addr,
572 RTE_LOG(ERR, PMD, "%s: Could not register memseg @%p, %d.\n",
573 mpipe_name(priv), ms->addr, rc);
575 RTE_LOG(DEBUG, PMD, "%s: Registered segment %p - %p\n",
576 mpipe_name(priv), ms->addr,
577 RTE_PTR_ADD(ms->addr, ms->len - 1));
582 mpipe_recv_init(struct mpipe_dev_priv *priv)
584 const struct rte_memseg *seg = rte_eal_get_physmem_layout();
589 if (!priv->rx_mpool) {
590 RTE_LOG(ERR, PMD, "%s: No buffer pool.\n",
595 /* Allocate one NotifRing for each queue. */
596 rc = gxio_mpipe_alloc_notif_rings(priv->context, MPIPE_RX_MAX_QUEUES,
599 RTE_LOG(ERR, PMD, "%s: Failed to allocate notif rings.\n",
603 priv->first_ring = rc;
605 /* Allocate a NotifGroup. */
606 rc = gxio_mpipe_alloc_notif_groups(priv->context, 1, 0, 0);
608 RTE_LOG(ERR, PMD, "%s: Failed to allocate rx group.\n",
612 priv->notif_group = rc;
614 /* Allocate required buckets. */
615 rc = gxio_mpipe_alloc_buckets(priv->context, MPIPE_RX_BUCKETS, 0, 0);
617 RTE_LOG(ERR, PMD, "%s: Failed to allocate buckets.\n",
621 priv->first_bucket = rc;
623 rc = gxio_mpipe_alloc_buffer_stacks(priv->context, 1, 0, 0);
625 RTE_LOG(ERR, PMD, "%s: Failed to allocate buffer stack.\n",
631 while (seg && seg->addr)
632 mpipe_register_segment(priv, seg++);
634 stack_size = gxio_mpipe_calc_buffer_stack_bytes(MPIPE_RX_STACK_SIZE);
635 stack_mem = rte_zmalloc(NULL, stack_size, 65536);
637 RTE_LOG(ERR, PMD, "%s: Failed to allocate buffer memory.\n",
641 RTE_LOG(DEBUG, PMD, "%s: Buffer stack memory %p - %p.\n",
642 mpipe_name(priv), stack_mem,
643 RTE_PTR_ADD(stack_mem, stack_size - 1));
646 rc = gxio_mpipe_init_buffer_stack(priv->context, priv->stack,
647 priv->rx_size_code, stack_mem,
650 RTE_LOG(ERR, PMD, "%s: Failed to initialize buffer stack.\n",
659 mpipe_xmit_init(struct mpipe_dev_priv *priv)
665 /* Allocate eDMA ring. */
666 rc = gxio_mpipe_alloc_edma_rings(priv->context, 1, 0, 0);
668 RTE_LOG(ERR, PMD, "%s: Failed to alloc tx ring.\n",
674 rc = mpipe_equeue_size(MPIPE_TX_DESCS);
676 RTE_LOG(ERR, PMD, "%s: Cannot allocate %d equeue descs.\n",
677 mpipe_name(priv), (int)MPIPE_TX_DESCS);
680 priv->equeue_size = rc;
682 /* Initialize completion array. */
683 ring_size = sizeof(priv->tx_comps[0]) * priv->equeue_size;
684 priv->tx_comps = rte_zmalloc(NULL, ring_size, RTE_CACHE_LINE_SIZE);
685 if (!priv->tx_comps) {
686 RTE_LOG(ERR, PMD, "%s: Failed to allocate egress comps.\n",
691 /* Allocate eDMA ring memory. */
692 ring_size = sizeof(gxio_mpipe_edesc_t) * priv->equeue_size;
693 ring_mem = rte_zmalloc(NULL, ring_size, ring_size);
695 RTE_LOG(ERR, PMD, "%s: Failed to allocate egress descs.\n",
699 RTE_LOG(DEBUG, PMD, "%s: eDMA ring memory %p - %p.\n",
700 mpipe_name(priv), ring_mem,
701 RTE_PTR_ADD(ring_mem, ring_size - 1));
704 /* Initialize eDMA ring. */
705 rc = gxio_mpipe_equeue_init(&priv->equeue, priv->context, priv->ering,
706 priv->channel, ring_mem, ring_size, 0);
708 RTE_LOG(ERR, PMD, "%s: Failed to init equeue\n",
717 mpipe_link_init(struct mpipe_dev_priv *priv)
722 rc = gxio_mpipe_link_open(&priv->link, priv->context,
723 mpipe_name(priv), GXIO_MPIPE_LINK_AUTO_NONE);
725 RTE_LOG(ERR, PMD, "%s: Failed to open link.\n",
730 /* Get the channel index. */
731 rc = gxio_mpipe_link_channel(&priv->link);
733 RTE_LOG(ERR, PMD, "%s: Bad channel\n",
743 mpipe_init(struct mpipe_dev_priv *priv)
747 if (priv->initialized)
750 rc = mpipe_recv_init(priv);
752 RTE_LOG(ERR, PMD, "%s: Failed to init rx.\n",
757 rc = mpipe_xmit_init(priv);
759 RTE_LOG(ERR, PMD, "%s: Failed to init tx.\n",
765 priv->initialized = 1;
771 mpipe_start(struct rte_eth_dev *dev)
773 struct mpipe_dev_priv *priv = mpipe_priv(dev);
774 struct mpipe_channel_config config;
775 struct mpipe_rx_queue *rx_queue;
776 struct rte_eth_link eth_link;
777 unsigned queue, buffers = 0;
782 memset(ð_link, 0, sizeof(eth_link));
783 mpipe_dev_atomic_write_link_status(dev, ð_link);
785 rc = mpipe_init(priv);
789 /* Initialize NotifRings. */
790 for (queue = 0; queue < priv->nb_rx_queues; queue++) {
791 rx_queue = mpipe_rx_queue(priv, queue);
792 ring_size = rx_queue->q.nb_desc * sizeof(gxio_mpipe_idesc_t);
794 ring_mem = rte_malloc(NULL, ring_size, ring_size);
796 RTE_LOG(ERR, PMD, "%s: Failed to alloc rx descs.\n",
800 RTE_LOG(DEBUG, PMD, "%s: iDMA ring %d memory %p - %p.\n",
801 mpipe_name(priv), queue, ring_mem,
802 RTE_PTR_ADD(ring_mem, ring_size - 1));
805 rc = gxio_mpipe_iqueue_init(&rx_queue->iqueue, priv->context,
806 priv->first_ring + queue, ring_mem,
809 RTE_LOG(ERR, PMD, "%s: Failed to init rx queue.\n",
814 rx_queue->rx_ring_mem = ring_mem;
815 buffers += rx_queue->q.nb_desc;
818 /* Initialize ingress NotifGroup and buckets. */
819 rc = gxio_mpipe_init_notif_group_and_buckets(priv->context,
820 priv->notif_group, priv->first_ring, priv->nb_rx_queues,
821 priv->first_bucket, MPIPE_RX_BUCKETS,
822 GXIO_MPIPE_BUCKET_STATIC_FLOW_AFFINITY);
824 RTE_LOG(ERR, PMD, "%s: Failed to init group and buckets.\n",
829 /* Configure the classifier to deliver packets from this port. */
831 config.first_bucket = priv->first_bucket;
832 config.num_buckets = MPIPE_RX_BUCKETS;
833 memset(&config.stacks, 0xff, sizeof(config.stacks));
834 config.stacks.stacks[priv->rx_size_code] = priv->stack;
835 config.head_room = priv->rx_offset & RTE_MEMPOOL_ALIGN_MASK;
837 rc = mpipe_channel_config(priv->instance, priv->channel,
840 RTE_LOG(ERR, PMD, "%s: Failed to setup classifier.\n",
845 /* Fill empty buffers into the buffer stack. */
846 mpipe_recv_fill_stack(priv, buffers);
848 /* Bring up the link. */
849 mpipe_set_link_up(dev);
851 /* Start xmit/recv on queues. */
852 for (queue = 0; queue < priv->nb_tx_queues; queue++)
853 mpipe_tx_queue(priv, queue)->q.link_status = ETH_LINK_UP;
854 for (queue = 0; queue < priv->nb_rx_queues; queue++)
855 mpipe_rx_queue(priv, queue)->q.link_status = ETH_LINK_UP;
862 mpipe_stop(struct rte_eth_dev *dev)
864 struct mpipe_dev_priv *priv = mpipe_priv(dev);
865 struct mpipe_channel_config config;
869 for (queue = 0; queue < priv->nb_tx_queues; queue++)
870 mpipe_tx_queue(priv, queue)->q.link_status = ETH_LINK_DOWN;
871 for (queue = 0; queue < priv->nb_rx_queues; queue++)
872 mpipe_rx_queue(priv, queue)->q.link_status = ETH_LINK_DOWN;
874 /* Make sure the link_status writes land. */
878 * Wait for link_status change to register with straggling datapath
883 /* Bring down the link. */
884 mpipe_set_link_down(dev);
886 /* Remove classifier rules. */
887 memset(&config, 0, sizeof(config));
888 rc = mpipe_channel_config(priv->instance, priv->channel,
891 RTE_LOG(ERR, PMD, "%s: Failed to stop classifier.\n",
895 /* Flush completed xmit packets. */
896 mpipe_xmit_flush(priv);
898 /* Flush buffer stacks. */
899 mpipe_recv_flush(priv);
905 mpipe_close(struct rte_eth_dev *dev)
907 struct mpipe_dev_priv *priv = mpipe_priv(dev);
913 mpipe_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
915 struct mpipe_dev_priv *priv = mpipe_priv(dev);
916 struct mpipe_tx_queue *tx_queue;
917 struct mpipe_rx_queue *rx_queue;
921 memset(stats, 0, sizeof(*stats));
923 for (i = 0; i < priv->nb_tx_queues; i++) {
924 tx_queue = mpipe_tx_queue(priv, i);
926 stats->opackets += tx_queue->q.stats.packets;
927 stats->obytes += tx_queue->q.stats.bytes;
928 stats->oerrors += tx_queue->q.stats.errors;
930 idx = tx_queue->q.stat_idx;
931 if (idx != (uint16_t)-1) {
932 stats->q_opackets[idx] += tx_queue->q.stats.packets;
933 stats->q_obytes[idx] += tx_queue->q.stats.bytes;
934 stats->q_errors[idx] += tx_queue->q.stats.errors;
938 for (i = 0; i < priv->nb_rx_queues; i++) {
939 rx_queue = mpipe_rx_queue(priv, i);
941 stats->ipackets += rx_queue->q.stats.packets;
942 stats->ibytes += rx_queue->q.stats.bytes;
943 stats->ierrors += rx_queue->q.stats.errors;
944 stats->rx_nombuf += rx_queue->q.stats.nomem;
946 idx = rx_queue->q.stat_idx;
947 if (idx != (uint16_t)-1) {
948 stats->q_ipackets[idx] += rx_queue->q.stats.packets;
949 stats->q_ibytes[idx] += rx_queue->q.stats.bytes;
950 stats->q_errors[idx] += rx_queue->q.stats.errors;
956 mpipe_stats_reset(struct rte_eth_dev *dev)
958 struct mpipe_dev_priv *priv = mpipe_priv(dev);
959 struct mpipe_tx_queue *tx_queue;
960 struct mpipe_rx_queue *rx_queue;
963 for (i = 0; i < priv->nb_tx_queues; i++) {
964 tx_queue = mpipe_tx_queue(priv, i);
965 memset(&tx_queue->q.stats, 0, sizeof(tx_queue->q.stats));
968 for (i = 0; i < priv->nb_rx_queues; i++) {
969 rx_queue = mpipe_rx_queue(priv, i);
970 memset(&rx_queue->q.stats, 0, sizeof(rx_queue->q.stats));
975 mpipe_queue_stats_mapping_set(struct rte_eth_dev *dev, uint16_t queue_id,
976 uint8_t stat_idx, uint8_t is_rx)
978 struct mpipe_dev_priv *priv = mpipe_priv(dev);
981 priv->rx_stat_mapping[stat_idx] = queue_id;
983 priv->tx_stat_mapping[stat_idx] = queue_id;
990 mpipe_tx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
991 uint16_t nb_desc, unsigned int socket_id __rte_unused,
992 const struct rte_eth_txconf *tx_conf __rte_unused)
994 struct mpipe_tx_queue *tx_queue = dev->data->tx_queues[queue_idx];
995 struct mpipe_dev_priv *priv = mpipe_priv(dev);
998 tx_queue = rte_realloc(tx_queue, sizeof(*tx_queue),
999 RTE_CACHE_LINE_SIZE);
1001 RTE_LOG(ERR, PMD, "%s: Failed to allocate TX queue.\n",
1006 memset(&tx_queue->q, 0, sizeof(tx_queue->q));
1007 tx_queue->q.priv = priv;
1008 tx_queue->q.queue_idx = queue_idx;
1009 tx_queue->q.port_id = dev->data->port_id;
1010 tx_queue->q.nb_desc = nb_desc;
1012 tx_queue->q.stat_idx = -1;
1013 for (idx = 0; idx < RTE_ETHDEV_QUEUE_STAT_CNTRS; idx++) {
1014 if (priv->tx_stat_mapping[idx] == queue_idx)
1015 tx_queue->q.stat_idx = idx;
1018 dev->data->tx_queues[queue_idx] = tx_queue;
1024 mpipe_tx_queue_release(void *_txq)
1030 mpipe_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
1031 uint16_t nb_desc, unsigned int socket_id __rte_unused,
1032 const struct rte_eth_rxconf *rx_conf __rte_unused,
1033 struct rte_mempool *mp)
1035 struct mpipe_rx_queue *rx_queue = dev->data->rx_queues[queue_idx];
1036 struct mpipe_dev_priv *priv = mpipe_priv(dev);
1040 rc = mpipe_iqueue_size(nb_desc);
1042 RTE_LOG(ERR, PMD, "%s: Cannot allocate %d iqueue descs.\n",
1043 mpipe_name(priv), (int)nb_desc);
1047 if (rc != nb_desc) {
1048 RTE_LOG(WARNING, PMD, "%s: Extending RX descs from %d to %d.\n",
1049 mpipe_name(priv), (int)nb_desc, rc);
1053 size = sizeof(*rx_queue);
1054 rx_queue = rte_realloc(rx_queue, size, RTE_CACHE_LINE_SIZE);
1056 RTE_LOG(ERR, PMD, "%s: Failed to allocate RX queue.\n",
1061 memset(&rx_queue->q, 0, sizeof(rx_queue->q));
1062 rx_queue->q.priv = priv;
1063 rx_queue->q.nb_desc = nb_desc;
1064 rx_queue->q.port_id = dev->data->port_id;
1065 rx_queue->q.queue_idx = queue_idx;
1067 if (!priv->rx_mpool) {
1068 int size = (rte_pktmbuf_data_room_size(mp) -
1069 RTE_PKTMBUF_HEADROOM -
1072 priv->rx_offset = (sizeof(struct rte_mbuf) +
1073 rte_pktmbuf_priv_size(mp) +
1074 RTE_PKTMBUF_HEADROOM +
1077 RTE_LOG(ERR, PMD, "%s: Bad buffer size %d.\n",
1079 rte_pktmbuf_data_room_size(mp));
1083 priv->rx_size_code = mpipe_buffer_size_index(size);
1084 priv->rx_mpool = mp;
1087 if (priv->rx_mpool != mp) {
1088 RTE_LOG(WARNING, PMD, "%s: Ignoring multiple buffer pools.\n",
1092 rx_queue->q.stat_idx = -1;
1093 for (idx = 0; idx < RTE_ETHDEV_QUEUE_STAT_CNTRS; idx++) {
1094 if (priv->rx_stat_mapping[idx] == queue_idx)
1095 rx_queue->q.stat_idx = idx;
1098 dev->data->rx_queues[queue_idx] = rx_queue;
1104 mpipe_rx_queue_release(void *_rxq)
1109 #define MPIPE_XGBE_ENA_HASH_MULTI \
1110 (1UL << MPIPE_XAUI_RECEIVE_CONFIGURATION__ENA_HASH_MULTI_SHIFT)
1111 #define MPIPE_XGBE_ENA_HASH_UNI \
1112 (1UL << MPIPE_XAUI_RECEIVE_CONFIGURATION__ENA_HASH_UNI_SHIFT)
1113 #define MPIPE_XGBE_COPY_ALL \
1114 (1UL << MPIPE_XAUI_RECEIVE_CONFIGURATION__COPY_ALL_SHIFT)
1115 #define MPIPE_GBE_ENA_MULTI_HASH \
1116 (1UL << MPIPE_GBE_NETWORK_CONFIGURATION__MULTI_HASH_ENA_SHIFT)
1117 #define MPIPE_GBE_ENA_UNI_HASH \
1118 (1UL << MPIPE_GBE_NETWORK_CONFIGURATION__UNI_HASH_ENA_SHIFT)
1119 #define MPIPE_GBE_COPY_ALL \
1120 (1UL << MPIPE_GBE_NETWORK_CONFIGURATION__COPY_ALL_SHIFT)
1123 mpipe_promiscuous_enable(struct rte_eth_dev *dev)
1125 struct mpipe_dev_priv *priv = mpipe_priv(dev);
1129 if (priv->is_xaui) {
1130 addr = MPIPE_XAUI_RECEIVE_CONFIGURATION;
1131 reg = gxio_mpipe_link_mac_rd(&priv->link, addr);
1132 reg &= ~MPIPE_XGBE_ENA_HASH_MULTI;
1133 reg &= ~MPIPE_XGBE_ENA_HASH_UNI;
1134 reg |= MPIPE_XGBE_COPY_ALL;
1135 gxio_mpipe_link_mac_wr(&priv->link, addr, reg);
1137 addr = MPIPE_GBE_NETWORK_CONFIGURATION;
1138 reg = gxio_mpipe_link_mac_rd(&priv->link, addr);
1139 reg &= ~MPIPE_GBE_ENA_MULTI_HASH;
1140 reg &= ~MPIPE_GBE_ENA_UNI_HASH;
1141 reg |= MPIPE_GBE_COPY_ALL;
1142 gxio_mpipe_link_mac_wr(&priv->link, addr, reg);
1147 mpipe_promiscuous_disable(struct rte_eth_dev *dev)
1149 struct mpipe_dev_priv *priv = mpipe_priv(dev);
1153 if (priv->is_xaui) {
1154 addr = MPIPE_XAUI_RECEIVE_CONFIGURATION;
1155 reg = gxio_mpipe_link_mac_rd(&priv->link, addr);
1156 reg |= MPIPE_XGBE_ENA_HASH_MULTI;
1157 reg |= MPIPE_XGBE_ENA_HASH_UNI;
1158 reg &= ~MPIPE_XGBE_COPY_ALL;
1159 gxio_mpipe_link_mac_wr(&priv->link, addr, reg);
1161 addr = MPIPE_GBE_NETWORK_CONFIGURATION;
1162 reg = gxio_mpipe_link_mac_rd(&priv->link, addr);
1163 reg |= MPIPE_GBE_ENA_MULTI_HASH;
1164 reg |= MPIPE_GBE_ENA_UNI_HASH;
1165 reg &= ~MPIPE_GBE_COPY_ALL;
1166 gxio_mpipe_link_mac_wr(&priv->link, addr, reg);
1170 static const struct eth_dev_ops mpipe_dev_ops = {
1171 .dev_infos_get = mpipe_infos_get,
1172 .dev_configure = mpipe_configure,
1173 .dev_start = mpipe_start,
1174 .dev_stop = mpipe_stop,
1175 .dev_close = mpipe_close,
1176 .stats_get = mpipe_stats_get,
1177 .stats_reset = mpipe_stats_reset,
1178 .queue_stats_mapping_set = mpipe_queue_stats_mapping_set,
1179 .tx_queue_setup = mpipe_tx_queue_setup,
1180 .rx_queue_setup = mpipe_rx_queue_setup,
1181 .tx_queue_release = mpipe_tx_queue_release,
1182 .rx_queue_release = mpipe_rx_queue_release,
1183 .link_update = mpipe_link_update,
1184 .dev_set_link_up = mpipe_set_link_up,
1185 .dev_set_link_down = mpipe_set_link_down,
1186 .promiscuous_enable = mpipe_promiscuous_enable,
1187 .promiscuous_disable = mpipe_promiscuous_disable,
1191 mpipe_xmit_null(struct mpipe_dev_priv *priv, int64_t start, int64_t end)
1193 gxio_mpipe_edesc_t null_desc = { { .bound = 1, .ns = 1 } };
1194 gxio_mpipe_equeue_t *equeue = &priv->equeue;
1197 for (slot = start; slot < end; slot++) {
1198 gxio_mpipe_equeue_put_at(equeue, null_desc, slot);
1203 mpipe_xmit_flush(struct mpipe_dev_priv *priv)
1205 gxio_mpipe_equeue_t *equeue = &priv->equeue;
1208 /* Post a dummy descriptor and wait for its return. */
1209 slot = gxio_mpipe_equeue_reserve(equeue, 1);
1211 RTE_LOG(ERR, PMD, "%s: Failed to reserve stop slot.\n",
1216 mpipe_xmit_null(priv, slot, slot + 1);
1218 while (!gxio_mpipe_equeue_is_complete(equeue, slot, 1)) {
1222 for (slot = 0; slot < priv->equeue_size; slot++) {
1223 if (priv->tx_comps[slot])
1224 rte_pktmbuf_free_seg(priv->tx_comps[slot]);
1229 mpipe_recv_flush(struct mpipe_dev_priv *priv)
1231 uint8_t in_port = priv->port_id;
1232 struct mpipe_rx_queue *rx_queue;
1233 gxio_mpipe_iqueue_t *iqueue;
1234 gxio_mpipe_idesc_t idesc;
1235 struct rte_mbuf *mbuf;
1238 /* Release packets on the buffer stack. */
1239 mpipe_recv_flush_stack(priv);
1241 /* Flush packets sitting in recv queues. */
1242 for (queue = 0; queue < priv->nb_rx_queues; queue++) {
1243 rx_queue = mpipe_rx_queue(priv, queue);
1244 iqueue = &rx_queue->iqueue;
1245 while (gxio_mpipe_iqueue_try_get(iqueue, &idesc) >= 0) {
1246 /* Skip idesc with the 'buffer error' bit set. */
1249 mbuf = mpipe_recv_mbuf(priv, &idesc, in_port);
1250 rte_pktmbuf_free(mbuf);
1252 rte_free(rx_queue->rx_ring_mem);
1256 static inline uint16_t
1257 mpipe_do_xmit(struct mpipe_tx_queue *tx_queue, struct rte_mbuf **tx_pkts,
1260 struct mpipe_dev_priv *priv = tx_queue->q.priv;
1261 gxio_mpipe_equeue_t *equeue = &priv->equeue;
1262 unsigned nb_bytes = 0;
1263 unsigned nb_sent = 0;
1267 PMD_DEBUG_TX("Trying to transmit %d packets on %s:%d.\n",
1268 nb_pkts, mpipe_name(tx_queue->q.priv),
1269 tx_queue->q.queue_idx);
1271 /* Optimistic assumption that we need exactly one slot per packet. */
1272 nb_slots = RTE_MIN(nb_pkts, MPIPE_TX_DESCS / 2);
1275 struct rte_mbuf *mbuf = NULL, *pkt = NULL;
1278 /* Reserve eDMA ring slots. */
1279 slot = gxio_mpipe_equeue_try_reserve_fast(equeue, nb_slots);
1280 if (unlikely(slot < 0)) {
1284 for (i = 0; i < nb_slots; i++) {
1285 unsigned idx = (slot + i) & (priv->equeue_size - 1);
1286 rte_prefetch0(priv->tx_comps[idx]);
1289 /* Fill up slots with descriptor and completion info. */
1290 for (i = 0; i < nb_slots; i++) {
1291 unsigned idx = (slot + i) & (priv->equeue_size - 1);
1292 gxio_mpipe_edesc_t desc;
1293 struct rte_mbuf *next;
1295 /* Starting on a new packet? */
1296 if (likely(!mbuf)) {
1297 int room = nb_slots - i;
1299 pkt = mbuf = tx_pkts[nb_sent];
1301 /* Bail out if we run out of descs. */
1302 if (unlikely(pkt->nb_segs > room))
1308 /* We have a segment to send. */
1311 if (priv->tx_comps[idx])
1312 rte_pktmbuf_free_seg(priv->tx_comps[idx]);
1314 port_id = (mbuf->port < RTE_MAX_ETHPORTS) ?
1315 mbuf->port : priv->port_id;
1316 desc = (gxio_mpipe_edesc_t) { {
1317 .va = rte_pktmbuf_mtod(mbuf, uintptr_t),
1318 .xfer_size = rte_pktmbuf_data_len(mbuf),
1319 .bound = next ? 0 : 1,
1320 .stack_idx = mpipe_mbuf_stack_index(priv, mbuf),
1321 .size = priv->rx_size_code,
1323 if (mpipe_local.mbuf_push_debt[port_id] > 0) {
1324 mpipe_local.mbuf_push_debt[port_id]--;
1326 priv->tx_comps[idx] = NULL;
1328 priv->tx_comps[idx] = mbuf;
1330 nb_bytes += mbuf->data_len;
1331 gxio_mpipe_equeue_put_at(equeue, desc, slot + i);
1333 PMD_DEBUG_TX("%s:%d: Sending packet %p, len %d\n",
1335 tx_queue->q.queue_idx,
1336 rte_pktmbuf_mtod(mbuf, void *),
1337 rte_pktmbuf_data_len(mbuf));
1342 if (unlikely(nb_sent < nb_pkts)) {
1344 /* Fill remaining slots with null descriptors. */
1345 mpipe_xmit_null(priv, slot + i, slot + nb_slots);
1348 * Calculate exact number of descriptors needed for
1349 * the next go around.
1352 for (i = nb_sent; i < nb_pkts; i++) {
1353 nb_slots += tx_pkts[i]->nb_segs;
1356 nb_slots = RTE_MIN(nb_slots, MPIPE_TX_DESCS / 2);
1358 } while (nb_sent < nb_pkts);
1360 tx_queue->q.stats.packets += nb_sent;
1361 tx_queue->q.stats.bytes += nb_bytes;
1366 static inline uint16_t
1367 mpipe_do_recv(struct mpipe_rx_queue *rx_queue, struct rte_mbuf **rx_pkts,
1370 struct mpipe_dev_priv *priv = rx_queue->q.priv;
1371 gxio_mpipe_iqueue_t *iqueue = &rx_queue->iqueue;
1372 gxio_mpipe_idesc_t *first_idesc, *idesc, *last_idesc;
1373 uint8_t in_port = rx_queue->q.port_id;
1374 const unsigned look_ahead = 8;
1375 int room = nb_pkts, rc = 0;
1376 unsigned nb_packets = 0;
1377 unsigned nb_dropped = 0;
1378 unsigned nb_nomem = 0;
1379 unsigned nb_bytes = 0;
1380 unsigned nb_descs, i;
1382 while (room && !rc) {
1383 if (rx_queue->avail_descs < room) {
1384 rc = gxio_mpipe_iqueue_try_peek(iqueue,
1385 &rx_queue->next_desc);
1386 rx_queue->avail_descs = rc < 0 ? 0 : rc;
1389 if (unlikely(!rx_queue->avail_descs)) {
1393 nb_descs = RTE_MIN(room, rx_queue->avail_descs);
1395 first_idesc = rx_queue->next_desc;
1396 last_idesc = first_idesc + nb_descs;
1398 rx_queue->next_desc += nb_descs;
1399 rx_queue->avail_descs -= nb_descs;
1401 for (i = 1; i < look_ahead; i++) {
1402 rte_prefetch0(first_idesc + i);
1405 PMD_DEBUG_RX("%s:%d: Trying to receive %d packets\n",
1406 mpipe_name(rx_queue->q.priv),
1407 rx_queue->q.queue_idx,
1410 for (idesc = first_idesc; idesc < last_idesc; idesc++) {
1411 struct rte_mbuf *mbuf;
1413 PMD_DEBUG_RX("%s:%d: processing idesc %d/%d\n",
1415 rx_queue->q.queue_idx,
1416 nb_packets, nb_descs);
1418 rte_prefetch0(idesc + look_ahead);
1420 PMD_DEBUG_RX("%s:%d: idesc %p, %s%s%s%s%s%s%s%s%s%s"
1421 "size: %d, bkt: %d, chan: %d, ring: %d, sqn: %lu, va: %lu\n",
1423 rx_queue->q.queue_idx,
1425 idesc->me ? "me, " : "",
1426 idesc->tr ? "tr, " : "",
1427 idesc->ce ? "ce, " : "",
1428 idesc->ct ? "ct, " : "",
1429 idesc->cs ? "cs, " : "",
1430 idesc->nr ? "nr, " : "",
1431 idesc->sq ? "sq, " : "",
1432 idesc->ts ? "ts, " : "",
1433 idesc->ps ? "ps, " : "",
1434 idesc->be ? "be, " : "",
1439 (unsigned long)idesc->packet_sqn,
1440 (unsigned long)idesc->va);
1442 if (unlikely(gxio_mpipe_idesc_has_error(idesc))) {
1444 gxio_mpipe_iqueue_drop(iqueue, idesc);
1445 PMD_DEBUG_RX("%s:%d: Descriptor error\n",
1446 mpipe_name(rx_queue->q.priv),
1447 rx_queue->q.queue_idx);
1451 if (mpipe_local.mbuf_push_debt[in_port] <
1452 MPIPE_BUF_DEBT_THRESHOLD)
1453 mpipe_local.mbuf_push_debt[in_port]++;
1455 mbuf = rte_mbuf_raw_alloc(priv->rx_mpool);
1456 if (unlikely(!mbuf)) {
1458 gxio_mpipe_iqueue_drop(iqueue, idesc);
1459 PMD_DEBUG_RX("%s:%d: alloc failure\n",
1460 mpipe_name(rx_queue->q.priv),
1461 rx_queue->q.queue_idx);
1465 mpipe_recv_push(priv, mbuf);
1468 /* Get and setup the mbuf for the received packet. */
1469 mbuf = mpipe_recv_mbuf(priv, idesc, in_port);
1471 /* Update results and statistics counters. */
1472 rx_pkts[nb_packets] = mbuf;
1473 nb_bytes += mbuf->pkt_len;
1478 * We release the ring in bursts, but do not track and release
1479 * buckets. This therefore breaks dynamic flow affinity, but
1480 * we always operate in static affinity mode, and so we're OK
1481 * with this optimization.
1483 gxio_mpipe_iqueue_advance(iqueue, nb_descs);
1484 gxio_mpipe_credit(iqueue->context, iqueue->ring, -1, nb_descs);
1487 * Go around once more if we haven't yet peeked the queue, and
1488 * if we have more room to receive.
1490 room = nb_pkts - nb_packets;
1493 rx_queue->q.stats.packets += nb_packets;
1494 rx_queue->q.stats.bytes += nb_bytes;
1495 rx_queue->q.stats.errors += nb_dropped;
1496 rx_queue->q.stats.nomem += nb_nomem;
1498 PMD_DEBUG_RX("%s:%d: RX: %d/%d pkts/bytes, %d/%d drops/nomem\n",
1499 mpipe_name(rx_queue->q.priv), rx_queue->q.queue_idx,
1500 nb_packets, nb_bytes, nb_dropped, nb_nomem);
1506 mpipe_recv_pkts(void *_rxq, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
1508 struct mpipe_rx_queue *rx_queue = _rxq;
1509 uint16_t result = 0;
1512 mpipe_dp_enter(rx_queue->q.priv);
1513 if (likely(rx_queue->q.link_status))
1514 result = mpipe_do_recv(rx_queue, rx_pkts, nb_pkts);
1515 mpipe_dp_exit(rx_queue->q.priv);
1522 mpipe_xmit_pkts(void *_txq, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
1524 struct mpipe_tx_queue *tx_queue = _txq;
1525 uint16_t result = 0;
1528 mpipe_dp_enter(tx_queue->q.priv);
1529 if (likely(tx_queue->q.link_status))
1530 result = mpipe_do_xmit(tx_queue, tx_pkts, nb_pkts);
1531 mpipe_dp_exit(tx_queue->q.priv);
1538 mpipe_link_mac(const char *ifname, uint8_t *mac)
1541 char name[GXIO_MPIPE_LINK_NAME_LEN];
1543 for (idx = 0, rc = 0; !rc; idx++) {
1544 rc = gxio_mpipe_link_enumerate_mac(idx, name, mac);
1545 if (!rc && !strncmp(name, ifname, GXIO_MPIPE_LINK_NAME_LEN))
1552 rte_pmd_mpipe_probe(const char *ifname,
1553 const char *params __rte_unused)
1555 gxio_mpipe_context_t *context;
1556 struct rte_eth_dev *eth_dev;
1557 struct mpipe_dev_priv *priv;
1561 /* Get the mPIPE instance that the device belongs to. */
1562 instance = gxio_mpipe_link_instance(ifname);
1563 context = mpipe_context(instance);
1565 RTE_LOG(ERR, PMD, "%s: No device for link.\n", ifname);
1569 priv = rte_zmalloc(NULL, sizeof(*priv), 0);
1571 RTE_LOG(ERR, PMD, "%s: Failed to allocate priv.\n", ifname);
1575 memset(&priv->tx_stat_mapping, 0xff, sizeof(priv->tx_stat_mapping));
1576 memset(&priv->rx_stat_mapping, 0xff, sizeof(priv->rx_stat_mapping));
1577 priv->context = context;
1578 priv->instance = instance;
1579 priv->is_xaui = (strncmp(ifname, "xgbe", 4) == 0);
1582 mac = priv->mac_addr.addr_bytes;
1583 rc = mpipe_link_mac(ifname, mac);
1585 RTE_LOG(ERR, PMD, "%s: Failed to enumerate link.\n", ifname);
1590 eth_dev = rte_eth_dev_allocate(ifname);
1592 RTE_LOG(ERR, PMD, "%s: Failed to allocate device.\n", ifname);
1597 RTE_LOG(INFO, PMD, "%s: Initialized mpipe device"
1598 "(mac %02x:%02x:%02x:%02x:%02x:%02x).\n",
1599 ifname, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
1601 priv->eth_dev = eth_dev;
1602 priv->port_id = eth_dev->data->port_id;
1603 eth_dev->data->dev_private = priv;
1604 eth_dev->data->mac_addrs = &priv->mac_addr;
1606 eth_dev->data->dev_flags = 0;
1607 eth_dev->data->kdrv = RTE_KDRV_NONE;
1608 eth_dev->driver = NULL;
1609 eth_dev->data->drv_name = drivername;
1610 eth_dev->data->numa_node = instance;
1612 eth_dev->dev_ops = &mpipe_dev_ops;
1613 eth_dev->rx_pkt_burst = &mpipe_recv_pkts;
1614 eth_dev->tx_pkt_burst = &mpipe_xmit_pkts;
1616 rc = mpipe_link_init(priv);
1618 RTE_LOG(ERR, PMD, "%s: Failed to init link.\n",
1626 static struct rte_vdev_driver pmd_mpipe_xgbe_drv = {
1627 .probe = rte_pmd_mpipe_probe,
1630 static struct rte_vdev_driver pmd_mpipe_gbe_drv = {
1631 .probe = rte_pmd_mpipe_probe,
1634 DRIVER_REGISTER_VDEV(net_mpipe_xgbe, pmd_mpipe_xgbe_drv);
1635 DRIVER_REGISTER_VDEV(net_mpipe_gbe, pmd_mpipe_gbe_drv);
1637 static void __attribute__((constructor, used))
1638 mpipe_init_contexts(void)
1640 struct mpipe_context *context;
1643 for (instance = 0; instance < GXIO_MPIPE_INSTANCE_MAX; instance++) {
1644 context = &mpipe_contexts[instance];
1646 rte_spinlock_init(&context->lock);
1647 rc = gxio_mpipe_init(&context->context, instance);
1652 mpipe_instances = instance;