1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2015-2018 Atomic Rules LLC
7 #include "ark_ethdev_rx.h"
8 #include "ark_global.h"
13 #define ARK_RX_META_SIZE 32
14 #define ARK_RX_META_OFFSET (RTE_PKTMBUF_HEADROOM - ARK_RX_META_SIZE)
15 #define ARK_RX_MAX_NOCHAIN (RTE_MBUF_DEFAULT_DATAROOM)
17 /* Forward declarations */
21 static void dump_mbuf_data(struct rte_mbuf *mbuf, uint16_t lo, uint16_t hi);
22 static void ark_ethdev_rx_dump(const char *name, struct ark_rx_queue *queue);
23 static uint32_t eth_ark_rx_jumbo(struct ark_rx_queue *queue,
24 struct ark_rx_meta *meta,
25 struct rte_mbuf *mbuf0,
27 static inline int eth_ark_rx_seed_mbufs(struct ark_rx_queue *queue);
29 /* ************************************************************************* */
31 /* array of mbufs to populate */
32 struct rte_mbuf **reserve_q;
33 /* array of physical addresses of the mbuf data pointer */
34 /* This point is a virtual address */
35 rte_iova_t *paddress_q;
36 struct rte_mempool *mb_pool;
38 struct ark_udm_t *udm;
39 struct ark_mpu_t *mpu;
41 rx_user_meta_hook_fn rx_user_meta_hook;
47 uint32_t seed_index; /* step 1 set with empty mbuf */
48 uint32_t cons_index; /* step 3 consumed by driver */
50 /* The queue Id is used to identify the HW Q */
53 /* The queue Index is used within the dpdk device structures */
58 /* next cache line - fields written by device */
59 RTE_MARKER cacheline1 __rte_cache_min_aligned;
61 volatile uint32_t prod_index; /* step 2 filled by FPGA */
62 } __rte_cache_aligned;
64 /* ************************************************************************* */
66 eth_ark_rx_hw_setup(struct rte_eth_dev *dev,
67 struct ark_rx_queue *queue,
68 uint16_t rx_queue_id __rte_unused, uint16_t rx_queue_idx)
70 rte_iova_t queue_base;
71 rte_iova_t phys_addr_q_base;
72 rte_iova_t phys_addr_prod_index;
74 queue_base = rte_malloc_virt2iova(queue);
75 phys_addr_prod_index = queue_base +
76 offsetof(struct ark_rx_queue, prod_index);
78 phys_addr_q_base = rte_malloc_virt2iova(queue->paddress_q);
81 if (ark_mpu_verify(queue->mpu, sizeof(rte_iova_t))) {
82 ARK_PMD_LOG(ERR, "Illegal configuration rx queue\n");
86 /* Stop and Reset and configure MPU */
87 ark_mpu_configure(queue->mpu, phys_addr_q_base, queue->queue_size, 0);
89 ark_udm_write_addr(queue->udm, phys_addr_prod_index);
91 /* advance the valid pointer, but don't start until the queue starts */
92 ark_mpu_reset_stats(queue->mpu);
94 /* The seed is the producer index for the HW */
95 ark_mpu_set_producer(queue->mpu, queue->seed_index);
96 dev->data->rx_queue_state[rx_queue_idx] = RTE_ETH_QUEUE_STATE_STOPPED;
102 eth_ark_rx_update_cons_index(struct ark_rx_queue *queue, uint32_t cons_index)
104 queue->cons_index = cons_index;
105 if ((cons_index + queue->queue_size - queue->seed_index) >= 64U) {
106 eth_ark_rx_seed_mbufs(queue);
107 ark_mpu_set_producer(queue->mpu, queue->seed_index);
111 /* ************************************************************************* */
113 eth_ark_dev_rx_queue_setup(struct rte_eth_dev *dev,
116 unsigned int socket_id,
117 const struct rte_eth_rxconf *rx_conf,
118 struct rte_mempool *mb_pool)
120 static int warning1; /* = 0 */
121 struct ark_adapter *ark = dev->data->dev_private;
123 struct ark_rx_queue *queue;
127 int qidx = queue_idx;
129 /* We may already be setup, free memory prior to re-allocation */
130 if (dev->data->rx_queues[queue_idx] != NULL) {
131 eth_ark_dev_rx_queue_release(dev->data->rx_queues[queue_idx]);
132 dev->data->rx_queues[queue_idx] = NULL;
135 if (rx_conf != NULL && warning1 == 0) {
138 "Arkville ignores rte_eth_rxconf argument.\n");
141 if (RTE_PKTMBUF_HEADROOM < ARK_RX_META_SIZE) {
143 "Error: DPDK Arkville requires head room > %d bytes (%s)\n",
144 ARK_RX_META_SIZE, __func__);
145 return -1; /* ERROR CODE */
148 if (!rte_is_power_of_2(nb_desc)) {
150 "DPDK Arkville configuration queue size must be power of two %u (%s)\n",
152 return -1; /* ERROR CODE */
155 /* Allocate queue struct */
156 queue = rte_zmalloc_socket("Ark_rxqueue",
157 sizeof(struct ark_rx_queue),
161 ARK_PMD_LOG(ERR, "Failed to allocate memory in %s\n", __func__);
165 /* NOTE zmalloc is used, no need to 0 indexes, etc. */
166 queue->mb_pool = mb_pool;
167 queue->phys_qid = qidx;
168 queue->queue_index = queue_idx;
169 queue->queue_size = nb_desc;
170 queue->queue_mask = nb_desc - 1;
171 queue->rx_user_meta_hook = ark->user_ext.rx_user_meta_hook;
172 queue->ext_user_data = ark->user_data[dev->data->port_id];
175 rte_zmalloc_socket("Ark_rx_queue mbuf",
176 nb_desc * sizeof(struct rte_mbuf *),
180 rte_zmalloc_socket("Ark_rx_queue paddr",
181 nb_desc * sizeof(rte_iova_t),
185 if (queue->reserve_q == 0 || queue->paddress_q == 0) {
187 "Failed to allocate queue memory in %s\n",
189 rte_free(queue->reserve_q);
190 rte_free(queue->paddress_q);
195 dev->data->rx_queues[queue_idx] = queue;
196 queue->udm = RTE_PTR_ADD(ark->udm.v, qidx * ARK_UDM_QOFFSET);
197 queue->mpu = RTE_PTR_ADD(ark->mpurx.v, qidx * ARK_MPU_QOFFSET);
199 /* populate mbuf reserve */
200 status = eth_ark_rx_seed_mbufs(queue);
202 if (queue->seed_index != nb_desc) {
203 ARK_PMD_LOG(ERR, "Failed to allocate %u mbufs for RX queue %d\n",
209 status = eth_ark_rx_hw_setup(dev, queue, qidx, queue_idx);
211 if (unlikely(status != 0)) {
212 struct rte_mbuf **mbuf;
214 ARK_PMD_LOG(ERR, "Failed to initialize RX queue %d %s\n",
217 /* Free the mbufs allocated */
218 for (i = 0, mbuf = queue->reserve_q;
219 i < queue->seed_index; ++i, mbuf++) {
220 rte_pktmbuf_free(*mbuf);
222 rte_free(queue->reserve_q);
223 rte_free(queue->paddress_q);
225 return -1; /* ERROR CODE */
231 /* ************************************************************************* */
233 eth_ark_recv_pkts_noop(void *rx_queue __rte_unused,
234 struct rte_mbuf **rx_pkts __rte_unused,
235 uint16_t nb_pkts __rte_unused)
240 /* ************************************************************************* */
242 eth_ark_recv_pkts(void *rx_queue,
243 struct rte_mbuf **rx_pkts,
246 struct ark_rx_queue *queue;
247 register uint32_t cons_index, prod_index;
250 struct rte_mbuf *mbuf;
251 struct rte_mbuf **pmbuf;
252 struct ark_rx_meta *meta;
253 rx_user_meta_hook_fn rx_user_meta_hook;
255 queue = (struct ark_rx_queue *)rx_queue;
256 if (unlikely(queue == 0))
258 if (unlikely(nb_pkts == 0))
260 prod_index = queue->prod_index;
261 cons_index = queue->cons_index;
262 if (prod_index == cons_index)
266 while (prod_index != cons_index) {
267 mbuf = queue->reserve_q[cons_index & queue->queue_mask];
269 rte_mbuf_prefetch_part1(mbuf);
270 rte_mbuf_prefetch_part2(mbuf);
272 /* META DATA embedded in headroom */
273 meta = RTE_PTR_ADD(mbuf->buf_addr, ARK_RX_META_OFFSET);
275 mbuf->pkt_len = meta->pkt_len;
276 mbuf->data_len = meta->pkt_len;
278 if (ARK_DEBUG_CORE) { /* debug sanity checks */
279 if ((meta->pkt_len > (1024 * 16)) ||
280 (meta->pkt_len == 0)) {
281 ARK_PMD_LOG(DEBUG, "RX: Bad Meta Q: %u"
284 " seed_index %" PRIU32
292 ARK_PMD_LOG(DEBUG, " : UDM"
295 queue->udm->rt_cfg.prod_idx,
297 ark_mpu_dump(queue->mpu,
300 dump_mbuf_data(mbuf, 0, 256);
301 /* its FUBAR so fix it */
307 if (unlikely(meta->pkt_len > ARK_RX_MAX_NOCHAIN))
308 cons_index = eth_ark_rx_jumbo
309 (queue, meta, mbuf, cons_index + 1);
319 rx_user_meta_hook = queue->rx_user_meta_hook;
320 for (pmbuf = rx_pkts, i = 0; rx_user_meta_hook && i < nb; i++) {
322 meta = RTE_PTR_ADD(mbuf->buf_addr, ARK_RX_META_OFFSET);
323 rx_user_meta_hook(mbuf, meta->user_meta, queue->ext_user_data);
326 eth_ark_rx_update_cons_index(queue, cons_index);
331 /* ************************************************************************* */
333 eth_ark_rx_jumbo(struct ark_rx_queue *queue,
334 struct ark_rx_meta *meta,
335 struct rte_mbuf *mbuf0,
338 struct rte_mbuf *mbuf_prev;
339 struct rte_mbuf *mbuf;
345 /* first buf populated by called */
348 data_len = RTE_MIN(meta->pkt_len, RTE_MBUF_DEFAULT_DATAROOM);
349 remaining = meta->pkt_len - data_len;
350 mbuf0->data_len = data_len;
352 /* HW guarantees that the data does not exceed prod_index! */
353 while (remaining != 0) {
354 data_len = RTE_MIN(remaining,
355 RTE_MBUF_DEFAULT_DATAROOM);
357 remaining -= data_len;
360 mbuf = queue->reserve_q[cons_index & queue->queue_mask];
361 mbuf_prev->next = mbuf;
363 mbuf->data_len = data_len;
368 mbuf0->nb_segs = segments;
372 /* Drain the internal queue allowing hw to clear out. */
374 eth_ark_rx_queue_drain(struct ark_rx_queue *queue)
376 register uint32_t cons_index;
377 struct rte_mbuf *mbuf;
379 cons_index = queue->cons_index;
381 /* NOT performance optimized, since this is a one-shot call */
382 while ((cons_index ^ queue->prod_index) & queue->queue_mask) {
383 mbuf = queue->reserve_q[cons_index & queue->queue_mask];
384 rte_pktmbuf_free(mbuf);
386 eth_ark_rx_update_cons_index(queue, cons_index);
391 eth_ark_dev_rx_queue_count(struct rte_eth_dev *dev, uint16_t queue_id)
393 struct ark_rx_queue *queue;
395 queue = dev->data->rx_queues[queue_id];
396 return (queue->prod_index - queue->cons_index); /* mod arith */
399 /* ************************************************************************* */
401 eth_ark_rx_start_queue(struct rte_eth_dev *dev, uint16_t queue_id)
403 struct ark_rx_queue *queue;
405 queue = dev->data->rx_queues[queue_id];
409 dev->data->rx_queue_state[queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
411 ark_mpu_set_producer(queue->mpu, queue->seed_index);
412 ark_mpu_start(queue->mpu);
414 ark_udm_queue_enable(queue->udm, 1);
419 /* ************************************************************************* */
421 /* Queue can be restarted. data remains
424 eth_ark_rx_stop_queue(struct rte_eth_dev *dev, uint16_t queue_id)
426 struct ark_rx_queue *queue;
428 queue = dev->data->rx_queues[queue_id];
432 ark_udm_queue_enable(queue->udm, 0);
434 dev->data->rx_queue_state[queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
439 /* ************************************************************************* */
441 eth_ark_rx_seed_mbufs(struct ark_rx_queue *queue)
443 uint32_t limit = queue->cons_index + queue->queue_size;
444 uint32_t seed_index = queue->seed_index;
447 uint32_t seed_m = queue->seed_index & queue->queue_mask;
449 uint32_t nb = limit - seed_index;
451 /* Handle wrap around -- remainder is filled on the next call */
452 if (unlikely(seed_m + nb > queue->queue_size))
453 nb = queue->queue_size - seed_m;
455 struct rte_mbuf **mbufs = &queue->reserve_q[seed_m];
456 int status = rte_pktmbuf_alloc_bulk(queue->mb_pool, mbufs, nb);
458 if (unlikely(status != 0)) {
460 "Could not allocate %u mbufs from pool"
462 " %u free buffers remaining in queue\n",
463 nb, queue->queue_index,
464 queue->seed_index - queue->cons_index);
468 if (ARK_DEBUG_CORE) { /* DEBUG */
469 while (count != nb) {
470 struct rte_mbuf *mbuf_init =
471 queue->reserve_q[seed_m + count];
473 memset(mbuf_init->buf_addr, -1, 512);
474 *((uint32_t *)mbuf_init->buf_addr) =
476 *(uint16_t *)RTE_PTR_ADD(mbuf_init->buf_addr, 4) =
482 queue->seed_index += nb;
484 /* Duff's device https://en.wikipedia.org/wiki/Duff's_device */
487 while (count != nb) {
488 queue->paddress_q[seed_m++] =
489 (*mbufs++)->buf_iova;
493 queue->paddress_q[seed_m++] =
494 (*mbufs++)->buf_iova;
498 queue->paddress_q[seed_m++] =
499 (*mbufs++)->buf_iova;
503 queue->paddress_q[seed_m++] =
504 (*mbufs++)->buf_iova;
508 } /* while (count != nb) */
515 eth_ark_rx_dump_queue(struct rte_eth_dev *dev, uint16_t queue_id,
518 struct ark_rx_queue *queue;
520 queue = dev->data->rx_queues[queue_id];
522 ark_ethdev_rx_dump(msg, queue);
525 /* ************************************************************************* */
526 /* Call on device closed no user API, queue is stopped */
528 eth_ark_dev_rx_queue_release(void *vqueue)
530 struct ark_rx_queue *queue;
533 queue = (struct ark_rx_queue *)vqueue;
537 ark_udm_queue_enable(queue->udm, 0);
538 /* Stop the MPU since pointer are going away */
539 ark_mpu_stop(queue->mpu);
541 /* Need to clear out mbufs here, dropping packets along the way */
542 eth_ark_rx_queue_drain(queue);
544 for (i = 0; i < queue->queue_size; ++i)
545 rte_pktmbuf_free(queue->reserve_q[i]);
547 rte_free(queue->reserve_q);
548 rte_free(queue->paddress_q);
553 eth_rx_queue_stats_get(void *vqueue, struct rte_eth_stats *stats)
555 struct ark_rx_queue *queue;
556 struct ark_udm_t *udm;
563 uint64_t ibytes = ark_udm_bytes(udm);
564 uint64_t ipackets = ark_udm_packets(udm);
565 uint64_t idropped = ark_udm_dropped(queue->udm);
567 stats->q_ipackets[queue->queue_index] = ipackets;
568 stats->q_ibytes[queue->queue_index] = ibytes;
569 stats->q_errors[queue->queue_index] = idropped;
570 stats->ipackets += ipackets;
571 stats->ibytes += ibytes;
572 stats->imissed += idropped;
576 eth_rx_queue_stats_reset(void *vqueue)
578 struct ark_rx_queue *queue;
584 ark_mpu_reset_stats(queue->mpu);
585 ark_udm_queue_stats_reset(queue->udm);
589 eth_ark_udm_force_close(struct rte_eth_dev *dev)
591 struct ark_adapter *ark = dev->data->dev_private;
592 struct ark_rx_queue *queue;
596 if (!ark_udm_is_flushed(ark->udm.v)) {
597 /* restart the MPUs */
598 ARK_PMD_LOG(NOTICE, "UDM not flushed -- forcing flush\n");
599 for (i = 0; i < dev->data->nb_rx_queues; i++) {
600 queue = (struct ark_rx_queue *)dev->data->rx_queues[i];
604 ark_mpu_start(queue->mpu);
605 /* Add some buffers */
606 index = 100000 + queue->seed_index;
607 ark_mpu_set_producer(queue->mpu, index);
609 /* Wait to allow data to pass */
612 ARK_PMD_LOG(DEBUG, "UDM forced flush attempt, stopped = %d\n",
613 ark_udm_is_flushed(ark->udm.v));
615 ark_udm_reset(ark->udm.v);
619 ark_ethdev_rx_dump(const char *name, struct ark_rx_queue *queue)
623 ARK_PMD_LOG(DEBUG, "RX QUEUE %d -- %s", queue->phys_qid, name);
624 ARK_PMD_LOG(DEBUG, ARK_SU32 ARK_SU32 ARK_SU32 ARK_SU32 "\n",
625 "queue_size", queue->queue_size,
626 "seed_index", queue->seed_index,
627 "prod_index", queue->prod_index,
628 "cons_index", queue->cons_index);
630 ark_mpu_dump(queue->mpu, name, queue->phys_qid);
631 ark_mpu_dump_setup(queue->mpu, queue->phys_qid);
632 ark_udm_dump(queue->udm, name);
633 ark_udm_dump_setup(queue->udm, queue->phys_qid);
636 /* Only used in debug.
637 * This function is a raw memory dump of a portion of an mbuf's memory
638 * region. The usual function, rte_pktmbuf_dump() only shows data
639 * with respect to the data_off field. This function show data
640 * anywhere in the mbuf's buffer. This is useful for examining
641 * data in the headroom or tailroom portion of an mbuf.
644 dump_mbuf_data(struct rte_mbuf *mbuf, uint16_t lo, uint16_t hi)
648 ARK_PMD_LOG(DEBUG, " MBUF: %p len %d, off: %d\n",
649 mbuf, mbuf->pkt_len, mbuf->data_off);
650 for (i = lo; i < hi; i += 16) {
651 uint8_t *dp = RTE_PTR_ADD(mbuf->buf_addr, i);
653 ARK_PMD_LOG(DEBUG, " %6d: ", i);
654 for (j = 0; j < 16; j++)
655 ARK_PMD_LOG(DEBUG, " %02x", dp[j]);
657 ARK_PMD_LOG(DEBUG, "\n");