1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2017 Marvell International Ltd.
3 * Copyright(c) 2017 Semihalf.
7 #include <rte_string_fns.h>
8 #include <rte_ethdev_driver.h>
9 #include <rte_kvargs.h>
11 #include <rte_malloc.h>
12 #include <rte_bus_vdev.h>
15 #include <linux/ethtool.h>
16 #include <linux/sockios.h>
18 #include <net/if_arp.h>
19 #include <sys/ioctl.h>
20 #include <sys/socket.h>
22 #include <sys/types.h>
24 #include <rte_mvep_common.h>
25 #include "mrvl_ethdev.h"
27 #include "mrvl_flow.h"
31 /* bitmask with reserved hifs */
32 #define MRVL_MUSDK_HIFS_RESERVED 0x0F
33 /* bitmask with reserved bpools */
34 #define MRVL_MUSDK_BPOOLS_RESERVED 0x07
35 /* bitmask with reserved kernel RSS tables */
36 #define MRVL_MUSDK_RSS_RESERVED 0x01
37 /* maximum number of available hifs */
38 #define MRVL_MUSDK_HIFS_MAX 9
41 #define MRVL_MUSDK_PREFETCH_SHIFT 2
43 /* TCAM has 25 entries reserved for uc/mc filter entries */
44 #define MRVL_MAC_ADDRS_MAX 25
45 #define MRVL_MATCH_LEN 16
46 #define MRVL_PKT_EFFEC_OFFS (MRVL_PKT_OFFS + MV_MH_SIZE)
47 /* Maximum allowable packet size */
48 #define MRVL_PKT_SIZE_MAX (10240 - MV_MH_SIZE)
50 #define MRVL_IFACE_NAME_ARG "iface"
51 #define MRVL_CFG_ARG "cfg"
53 #define MRVL_BURST_SIZE 64
55 #define MRVL_ARP_LENGTH 28
57 #define MRVL_COOKIE_ADDR_INVALID ~0ULL
58 #define MRVL_COOKIE_HIGH_ADDR_MASK 0xffffff0000000000
60 /** Port Rx offload capabilities */
61 #define MRVL_RX_OFFLOADS (DEV_RX_OFFLOAD_VLAN_FILTER | \
62 DEV_RX_OFFLOAD_JUMBO_FRAME | \
63 DEV_RX_OFFLOAD_CHECKSUM)
65 /** Port Tx offloads capabilities */
66 #define MRVL_TX_OFFLOADS (DEV_TX_OFFLOAD_IPV4_CKSUM | \
67 DEV_TX_OFFLOAD_UDP_CKSUM | \
68 DEV_TX_OFFLOAD_TCP_CKSUM | \
69 DEV_TX_OFFLOAD_MULTI_SEGS)
71 static const char * const valid_args[] = {
77 static int used_hifs = MRVL_MUSDK_HIFS_RESERVED;
78 static struct pp2_hif *hifs[RTE_MAX_LCORE];
79 static int used_bpools[PP2_NUM_PKT_PROC] = {
80 [0 ... PP2_NUM_PKT_PROC - 1] = MRVL_MUSDK_BPOOLS_RESERVED
83 static struct pp2_bpool *mrvl_port_to_bpool_lookup[RTE_MAX_ETHPORTS];
84 static int mrvl_port_bpool_size[PP2_NUM_PKT_PROC][PP2_BPOOL_NUM_POOLS][RTE_MAX_LCORE];
85 static uint64_t cookie_addr_high = MRVL_COOKIE_ADDR_INVALID;
88 const char *names[PP2_NUM_ETH_PPIO * PP2_NUM_PKT_PROC];
93 * To use buffer harvesting based on loopback port shadow queue structure
94 * was introduced for buffers information bookkeeping.
96 * Before sending the packet, related buffer information (pp2_buff_inf) is
97 * stored in shadow queue. After packet is transmitted no longer used
98 * packet buffer is released back to it's original hardware pool,
99 * on condition it originated from interface.
100 * In case it was generated by application itself i.e: mbuf->port field is
101 * 0xff then its released to software mempool.
103 struct mrvl_shadow_txq {
104 int head; /* write index - used when sending buffers */
105 int tail; /* read index - used when releasing buffers */
106 u16 size; /* queue occupied size */
107 u16 num_to_release; /* number of descriptors sent, that can be
110 struct buff_release_entry ent[MRVL_PP2_TX_SHADOWQ_SIZE]; /* q entries */
114 struct mrvl_priv *priv;
115 struct rte_mempool *mp;
124 struct mrvl_priv *priv;
128 struct mrvl_shadow_txq shadow_txqs[RTE_MAX_LCORE];
129 int tx_deferred_start;
132 static int mrvl_lcore_first;
133 static int mrvl_lcore_last;
134 static int mrvl_dev_num;
136 static int mrvl_fill_bpool(struct mrvl_rxq *rxq, int num);
137 static inline void mrvl_free_sent_buffers(struct pp2_ppio *ppio,
138 struct pp2_hif *hif, unsigned int core_id,
139 struct mrvl_shadow_txq *sq, int qid, int force);
141 static uint16_t mrvl_tx_pkt_burst(void *txq, struct rte_mbuf **tx_pkts,
143 static uint16_t mrvl_tx_sg_pkt_burst(void *txq, struct rte_mbuf **tx_pkts,
145 static int rte_pmd_mrvl_remove(struct rte_vdev_device *vdev);
146 static void mrvl_deinit_pp2(void);
147 static void mrvl_deinit_hifs(void);
150 #define MRVL_XSTATS_TBL_ENTRY(name) { \
151 #name, offsetof(struct pp2_ppio_statistics, name), \
152 sizeof(((struct pp2_ppio_statistics *)0)->name) \
155 /* Table with xstats data */
160 } mrvl_xstats_tbl[] = {
161 MRVL_XSTATS_TBL_ENTRY(rx_bytes),
162 MRVL_XSTATS_TBL_ENTRY(rx_packets),
163 MRVL_XSTATS_TBL_ENTRY(rx_unicast_packets),
164 MRVL_XSTATS_TBL_ENTRY(rx_errors),
165 MRVL_XSTATS_TBL_ENTRY(rx_fullq_dropped),
166 MRVL_XSTATS_TBL_ENTRY(rx_bm_dropped),
167 MRVL_XSTATS_TBL_ENTRY(rx_early_dropped),
168 MRVL_XSTATS_TBL_ENTRY(rx_fifo_dropped),
169 MRVL_XSTATS_TBL_ENTRY(rx_cls_dropped),
170 MRVL_XSTATS_TBL_ENTRY(tx_bytes),
171 MRVL_XSTATS_TBL_ENTRY(tx_packets),
172 MRVL_XSTATS_TBL_ENTRY(tx_unicast_packets),
173 MRVL_XSTATS_TBL_ENTRY(tx_errors)
177 mrvl_fill_shadowq(struct mrvl_shadow_txq *sq, struct rte_mbuf *buf)
179 sq->ent[sq->head].buff.cookie = (uint64_t)buf;
180 sq->ent[sq->head].buff.addr = buf ?
181 rte_mbuf_data_iova_default(buf) : 0;
183 sq->ent[sq->head].bpool =
184 (unlikely(!buf || buf->port >= RTE_MAX_ETHPORTS ||
185 buf->refcnt > 1)) ? NULL :
186 mrvl_port_to_bpool_lookup[buf->port];
188 sq->head = (sq->head + 1) & MRVL_PP2_TX_SHADOWQ_MASK;
193 mrvl_fill_desc(struct pp2_ppio_desc *desc, struct rte_mbuf *buf)
195 pp2_ppio_outq_desc_reset(desc);
196 pp2_ppio_outq_desc_set_phys_addr(desc, rte_pktmbuf_iova(buf));
197 pp2_ppio_outq_desc_set_pkt_offset(desc, 0);
198 pp2_ppio_outq_desc_set_pkt_len(desc, rte_pktmbuf_data_len(buf));
202 mrvl_get_bpool_size(int pp2_id, int pool_id)
207 for (i = mrvl_lcore_first; i <= mrvl_lcore_last; i++)
208 size += mrvl_port_bpool_size[pp2_id][pool_id][i];
214 mrvl_reserve_bit(int *bitmap, int max)
216 int n = sizeof(*bitmap) * 8 - __builtin_clz(*bitmap);
227 mrvl_init_hif(int core_id)
229 struct pp2_hif_params params;
230 char match[MRVL_MATCH_LEN];
233 ret = mrvl_reserve_bit(&used_hifs, MRVL_MUSDK_HIFS_MAX);
235 MRVL_LOG(ERR, "Failed to allocate hif %d", core_id);
239 snprintf(match, sizeof(match), "hif-%d", ret);
240 memset(¶ms, 0, sizeof(params));
241 params.match = match;
242 params.out_size = MRVL_PP2_AGGR_TXQD_MAX;
243 ret = pp2_hif_init(¶ms, &hifs[core_id]);
245 MRVL_LOG(ERR, "Failed to initialize hif %d", core_id);
252 static inline struct pp2_hif*
253 mrvl_get_hif(struct mrvl_priv *priv, int core_id)
257 if (likely(hifs[core_id] != NULL))
258 return hifs[core_id];
260 rte_spinlock_lock(&priv->lock);
262 ret = mrvl_init_hif(core_id);
264 MRVL_LOG(ERR, "Failed to allocate hif %d", core_id);
268 if (core_id < mrvl_lcore_first)
269 mrvl_lcore_first = core_id;
271 if (core_id > mrvl_lcore_last)
272 mrvl_lcore_last = core_id;
274 rte_spinlock_unlock(&priv->lock);
276 return hifs[core_id];
280 * Set tx burst function according to offload flag
283 * Pointer to Ethernet device structure.
286 mrvl_set_tx_function(struct rte_eth_dev *dev)
288 struct mrvl_priv *priv = dev->data->dev_private;
290 /* Use a simple Tx queue (no offloads, no multi segs) if possible */
291 if (priv->multiseg) {
292 RTE_LOG(INFO, PMD, "Using multi-segment tx callback\n");
293 dev->tx_pkt_burst = mrvl_tx_sg_pkt_burst;
295 RTE_LOG(INFO, PMD, "Using single-segment tx callback\n");
296 dev->tx_pkt_burst = mrvl_tx_pkt_burst;
301 * Configure rss based on dpdk rss configuration.
304 * Pointer to private structure.
306 * Pointer to RSS configuration.
309 * 0 on success, negative error value otherwise.
312 mrvl_configure_rss(struct mrvl_priv *priv, struct rte_eth_rss_conf *rss_conf)
314 if (rss_conf->rss_key)
315 MRVL_LOG(WARNING, "Changing hash key is not supported");
317 if (rss_conf->rss_hf == 0) {
318 priv->ppio_params.inqs_params.hash_type = PP2_PPIO_HASH_T_NONE;
319 } else if (rss_conf->rss_hf & ETH_RSS_IPV4) {
320 priv->ppio_params.inqs_params.hash_type =
321 PP2_PPIO_HASH_T_2_TUPLE;
322 } else if (rss_conf->rss_hf & ETH_RSS_NONFRAG_IPV4_TCP) {
323 priv->ppio_params.inqs_params.hash_type =
324 PP2_PPIO_HASH_T_5_TUPLE;
325 priv->rss_hf_tcp = 1;
326 } else if (rss_conf->rss_hf & ETH_RSS_NONFRAG_IPV4_UDP) {
327 priv->ppio_params.inqs_params.hash_type =
328 PP2_PPIO_HASH_T_5_TUPLE;
329 priv->rss_hf_tcp = 0;
338 * Ethernet device configuration.
340 * Prepare the driver for a given number of TX and RX queues and
344 * Pointer to Ethernet device structure.
347 * 0 on success, negative error value otherwise.
350 mrvl_dev_configure(struct rte_eth_dev *dev)
352 struct mrvl_priv *priv = dev->data->dev_private;
356 MRVL_LOG(INFO, "Device reconfiguration is not supported");
360 if (dev->data->dev_conf.rxmode.mq_mode != ETH_MQ_RX_NONE &&
361 dev->data->dev_conf.rxmode.mq_mode != ETH_MQ_RX_RSS) {
362 MRVL_LOG(INFO, "Unsupported rx multi queue mode %d",
363 dev->data->dev_conf.rxmode.mq_mode);
367 if (dev->data->dev_conf.rxmode.split_hdr_size) {
368 MRVL_LOG(INFO, "Split headers not supported");
372 if (dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME)
373 dev->data->mtu = dev->data->dev_conf.rxmode.max_rx_pkt_len -
374 MRVL_PP2_ETH_HDRS_LEN;
376 if (dev->data->dev_conf.txmode.offloads & DEV_TX_OFFLOAD_MULTI_SEGS)
379 ret = mrvl_configure_rxqs(priv, dev->data->port_id,
380 dev->data->nb_rx_queues);
384 ret = mrvl_configure_txqs(priv, dev->data->port_id,
385 dev->data->nb_tx_queues);
389 priv->ppio_params.outqs_params.num_outqs = dev->data->nb_tx_queues;
390 priv->ppio_params.maintain_stats = 1;
391 priv->nb_rx_queues = dev->data->nb_rx_queues;
393 ret = mrvl_tm_init(dev);
397 if (dev->data->nb_rx_queues == 1 &&
398 dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_RSS) {
399 MRVL_LOG(WARNING, "Disabling hash for 1 rx queue");
400 priv->ppio_params.inqs_params.hash_type = PP2_PPIO_HASH_T_NONE;
405 return mrvl_configure_rss(priv,
406 &dev->data->dev_conf.rx_adv_conf.rss_conf);
410 * DPDK callback to change the MTU.
412 * Setting the MTU affects hardware MRU (packets larger than the MRU
416 * Pointer to Ethernet device structure.
421 * 0 on success, negative error value otherwise.
424 mrvl_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
426 struct mrvl_priv *priv = dev->data->dev_private;
428 uint16_t mbuf_data_size = 0; /* SW buffer size */
431 mru = MRVL_PP2_MTU_TO_MRU(mtu);
433 * min_rx_buf_size is equal to mbuf data size
434 * if pmd didn't set it differently
436 mbuf_data_size = dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM;
438 * - setting mru greater than the mbuf size resulting in
439 * hw and sw buffer size mismatch
440 * - setting mtu that requires the support of scattered packets
441 * when this feature has not been enabled/supported so far
442 * (TODO check scattered_rx flag here once scattered RX is supported).
444 if (mru + MRVL_PKT_OFFS > mbuf_data_size) {
445 mru = mbuf_data_size - MRVL_PKT_OFFS;
446 mtu = MRVL_PP2_MRU_TO_MTU(mru);
447 MRVL_LOG(WARNING, "MTU too big, max MTU possible limitted "
448 "by current mbuf size: %u. Set MTU to %u, MRU to %u",
449 mbuf_data_size, mtu, mru);
452 if (mtu < RTE_ETHER_MIN_MTU || mru > MRVL_PKT_SIZE_MAX) {
453 MRVL_LOG(ERR, "Invalid MTU [%u] or MRU [%u]", mtu, mru);
457 dev->data->mtu = mtu;
458 dev->data->dev_conf.rxmode.max_rx_pkt_len = mru - MV_MH_SIZE;
463 ret = pp2_ppio_set_mru(priv->ppio, mru);
465 MRVL_LOG(ERR, "Failed to change MRU");
469 ret = pp2_ppio_set_mtu(priv->ppio, mtu);
471 MRVL_LOG(ERR, "Failed to change MTU");
479 * DPDK callback to bring the link up.
482 * Pointer to Ethernet device structure.
485 * 0 on success, negative error value otherwise.
488 mrvl_dev_set_link_up(struct rte_eth_dev *dev)
490 struct mrvl_priv *priv = dev->data->dev_private;
496 ret = pp2_ppio_enable(priv->ppio);
501 * mtu/mru can be updated if pp2_ppio_enable() was called at least once
502 * as pp2_ppio_enable() changes port->t_mode from default 0 to
503 * PP2_TRAFFIC_INGRESS_EGRESS.
505 * Set mtu to default DPDK value here.
507 ret = mrvl_mtu_set(dev, dev->data->mtu);
509 pp2_ppio_disable(priv->ppio);
515 * DPDK callback to bring the link down.
518 * Pointer to Ethernet device structure.
521 * 0 on success, negative error value otherwise.
524 mrvl_dev_set_link_down(struct rte_eth_dev *dev)
526 struct mrvl_priv *priv = dev->data->dev_private;
531 return pp2_ppio_disable(priv->ppio);
535 * DPDK callback to start tx queue.
538 * Pointer to Ethernet device structure.
540 * Transmit queue index.
543 * 0 on success, negative error value otherwise.
546 mrvl_tx_queue_start(struct rte_eth_dev *dev, uint16_t queue_id)
548 struct mrvl_priv *priv = dev->data->dev_private;
554 /* passing 1 enables given tx queue */
555 ret = pp2_ppio_set_outq_state(priv->ppio, queue_id, 1);
557 MRVL_LOG(ERR, "Failed to start txq %d", queue_id);
561 dev->data->tx_queue_state[queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
567 * DPDK callback to stop tx queue.
570 * Pointer to Ethernet device structure.
572 * Transmit queue index.
575 * 0 on success, negative error value otherwise.
578 mrvl_tx_queue_stop(struct rte_eth_dev *dev, uint16_t queue_id)
580 struct mrvl_priv *priv = dev->data->dev_private;
586 /* passing 0 disables given tx queue */
587 ret = pp2_ppio_set_outq_state(priv->ppio, queue_id, 0);
589 MRVL_LOG(ERR, "Failed to stop txq %d", queue_id);
593 dev->data->tx_queue_state[queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
599 * DPDK callback to start the device.
602 * Pointer to Ethernet device structure.
605 * 0 on success, negative errno value on failure.
608 mrvl_dev_start(struct rte_eth_dev *dev)
610 struct mrvl_priv *priv = dev->data->dev_private;
611 char match[MRVL_MATCH_LEN];
612 int ret = 0, i, def_init_size;
615 return mrvl_dev_set_link_up(dev);
617 snprintf(match, sizeof(match), "ppio-%d:%d",
618 priv->pp_id, priv->ppio_id);
619 priv->ppio_params.match = match;
622 * Calculate the minimum bpool size for refill feature as follows:
623 * 2 default burst sizes multiply by number of rx queues.
624 * If the bpool size will be below this value, new buffers will
625 * be added to the pool.
627 priv->bpool_min_size = priv->nb_rx_queues * MRVL_BURST_SIZE * 2;
629 /* In case initial bpool size configured in queues setup is
630 * smaller than minimum size add more buffers
632 def_init_size = priv->bpool_min_size + MRVL_BURST_SIZE * 2;
633 if (priv->bpool_init_size < def_init_size) {
634 int buffs_to_add = def_init_size - priv->bpool_init_size;
636 priv->bpool_init_size += buffs_to_add;
637 ret = mrvl_fill_bpool(dev->data->rx_queues[0], buffs_to_add);
639 MRVL_LOG(ERR, "Failed to add buffers to bpool");
643 * Calculate the maximum bpool size for refill feature as follows:
644 * maximum number of descriptors in rx queue multiply by number
645 * of rx queues plus minimum bpool size.
646 * In case the bpool size will exceed this value, superfluous buffers
649 priv->bpool_max_size = (priv->nb_rx_queues * MRVL_PP2_RXD_MAX) +
650 priv->bpool_min_size;
652 ret = pp2_ppio_init(&priv->ppio_params, &priv->ppio);
654 MRVL_LOG(ERR, "Failed to init ppio");
659 * In case there are some some stale uc/mc mac addresses flush them
660 * here. It cannot be done during mrvl_dev_close() as port information
661 * is already gone at that point (due to pp2_ppio_deinit() in
664 if (!priv->uc_mc_flushed) {
665 ret = pp2_ppio_flush_mac_addrs(priv->ppio, 1, 1);
668 "Failed to flush uc/mc filter list");
671 priv->uc_mc_flushed = 1;
674 if (!priv->vlan_flushed) {
675 ret = pp2_ppio_flush_vlan(priv->ppio);
677 MRVL_LOG(ERR, "Failed to flush vlan list");
680 * once pp2_ppio_flush_vlan() is supported jump to out
684 priv->vlan_flushed = 1;
686 ret = mrvl_mtu_set(dev, dev->data->mtu);
688 MRVL_LOG(ERR, "Failed to set MTU to %d", dev->data->mtu);
690 /* For default QoS config, don't start classifier. */
692 mrvl_qos_cfg->port[dev->data->port_id].use_global_defaults == 0) {
693 ret = mrvl_start_qos_mapping(priv);
695 MRVL_LOG(ERR, "Failed to setup QoS mapping");
700 ret = mrvl_dev_set_link_up(dev);
702 MRVL_LOG(ERR, "Failed to set link up");
706 /* start tx queues */
707 for (i = 0; i < dev->data->nb_tx_queues; i++) {
708 struct mrvl_txq *txq = dev->data->tx_queues[i];
710 dev->data->tx_queue_state[i] = RTE_ETH_QUEUE_STATE_STARTED;
712 if (!txq->tx_deferred_start)
716 * All txqs are started by default. Stop them
717 * so that tx_deferred_start works as expected.
719 ret = mrvl_tx_queue_stop(dev, i);
726 mrvl_set_tx_function(dev);
730 MRVL_LOG(ERR, "Failed to start device");
731 pp2_ppio_deinit(priv->ppio);
736 * Flush receive queues.
739 * Pointer to Ethernet device structure.
742 mrvl_flush_rx_queues(struct rte_eth_dev *dev)
746 MRVL_LOG(INFO, "Flushing rx queues");
747 for (i = 0; i < dev->data->nb_rx_queues; i++) {
751 struct mrvl_rxq *q = dev->data->rx_queues[i];
752 struct pp2_ppio_desc descs[MRVL_PP2_RXD_MAX];
754 num = MRVL_PP2_RXD_MAX;
755 ret = pp2_ppio_recv(q->priv->ppio,
756 q->priv->rxq_map[q->queue_id].tc,
757 q->priv->rxq_map[q->queue_id].inq,
758 descs, (uint16_t *)&num);
759 } while (ret == 0 && num);
764 * Flush transmit shadow queues.
767 * Pointer to Ethernet device structure.
770 mrvl_flush_tx_shadow_queues(struct rte_eth_dev *dev)
773 struct mrvl_txq *txq;
775 MRVL_LOG(INFO, "Flushing tx shadow queues");
776 for (i = 0; i < dev->data->nb_tx_queues; i++) {
777 txq = (struct mrvl_txq *)dev->data->tx_queues[i];
779 for (j = 0; j < RTE_MAX_LCORE; j++) {
780 struct mrvl_shadow_txq *sq;
785 sq = &txq->shadow_txqs[j];
786 mrvl_free_sent_buffers(txq->priv->ppio,
787 hifs[j], j, sq, txq->queue_id, 1);
788 while (sq->tail != sq->head) {
789 uint64_t addr = cookie_addr_high |
790 sq->ent[sq->tail].buff.cookie;
792 (struct rte_mbuf *)addr);
793 sq->tail = (sq->tail + 1) &
794 MRVL_PP2_TX_SHADOWQ_MASK;
796 memset(sq, 0, sizeof(*sq));
802 * Flush hardware bpool (buffer-pool).
805 * Pointer to Ethernet device structure.
808 mrvl_flush_bpool(struct rte_eth_dev *dev)
810 struct mrvl_priv *priv = dev->data->dev_private;
814 unsigned int core_id = rte_lcore_id();
816 if (core_id == LCORE_ID_ANY)
817 core_id = rte_get_master_lcore();
819 hif = mrvl_get_hif(priv, core_id);
821 ret = pp2_bpool_get_num_buffs(priv->bpool, &num);
823 MRVL_LOG(ERR, "Failed to get bpool buffers number");
828 struct pp2_buff_inf inf;
831 ret = pp2_bpool_get_buff(hif, priv->bpool, &inf);
835 addr = cookie_addr_high | inf.cookie;
836 rte_pktmbuf_free((struct rte_mbuf *)addr);
841 * DPDK callback to stop the device.
844 * Pointer to Ethernet device structure.
847 mrvl_dev_stop(struct rte_eth_dev *dev)
849 mrvl_dev_set_link_down(dev);
853 * DPDK callback to close the device.
856 * Pointer to Ethernet device structure.
859 mrvl_dev_close(struct rte_eth_dev *dev)
861 struct mrvl_priv *priv = dev->data->dev_private;
864 mrvl_flush_rx_queues(dev);
865 mrvl_flush_tx_shadow_queues(dev);
866 mrvl_flow_deinit(dev);
867 mrvl_mtr_deinit(dev);
869 for (i = 0; i < priv->ppio_params.inqs_params.num_tcs; ++i) {
870 struct pp2_ppio_tc_params *tc_params =
871 &priv->ppio_params.inqs_params.tcs_params[i];
873 if (tc_params->inqs_params) {
874 rte_free(tc_params->inqs_params);
875 tc_params->inqs_params = NULL;
880 pp2_cls_tbl_deinit(priv->cls_tbl);
881 priv->cls_tbl = NULL;
885 pp2_cls_qos_tbl_deinit(priv->qos_tbl);
886 priv->qos_tbl = NULL;
889 mrvl_flush_bpool(dev);
893 pp2_ppio_deinit(priv->ppio);
897 /* policer must be released after ppio deinitialization */
898 if (priv->default_policer) {
899 pp2_cls_plcr_deinit(priv->default_policer);
900 priv->default_policer = NULL;
905 pp2_bpool_deinit(priv->bpool);
906 used_bpools[priv->pp_id] &= ~(1 << priv->bpool_bit);
912 if (mrvl_dev_num == 0) {
913 MRVL_LOG(INFO, "Perform MUSDK deinit");
916 rte_mvep_deinit(MVEP_MOD_T_PP2);
923 * DPDK callback to retrieve physical link information.
926 * Pointer to Ethernet device structure.
927 * @param wait_to_complete
928 * Wait for request completion (ignored).
931 * 0 on success, negative error value otherwise.
934 mrvl_link_update(struct rte_eth_dev *dev, int wait_to_complete __rte_unused)
938 * once MUSDK provides necessary API use it here
940 struct mrvl_priv *priv = dev->data->dev_private;
941 struct ethtool_cmd edata;
943 int ret, fd, link_up;
948 edata.cmd = ETHTOOL_GSET;
950 strcpy(req.ifr_name, dev->data->name);
951 req.ifr_data = (void *)&edata;
953 fd = socket(AF_INET, SOCK_DGRAM, 0);
957 ret = ioctl(fd, SIOCETHTOOL, &req);
965 switch (ethtool_cmd_speed(&edata)) {
967 dev->data->dev_link.link_speed = ETH_SPEED_NUM_10M;
970 dev->data->dev_link.link_speed = ETH_SPEED_NUM_100M;
973 dev->data->dev_link.link_speed = ETH_SPEED_NUM_1G;
976 dev->data->dev_link.link_speed = ETH_SPEED_NUM_10G;
979 dev->data->dev_link.link_speed = ETH_SPEED_NUM_NONE;
982 dev->data->dev_link.link_duplex = edata.duplex ? ETH_LINK_FULL_DUPLEX :
983 ETH_LINK_HALF_DUPLEX;
984 dev->data->dev_link.link_autoneg = edata.autoneg ? ETH_LINK_AUTONEG :
986 pp2_ppio_get_link_state(priv->ppio, &link_up);
987 dev->data->dev_link.link_status = link_up ? ETH_LINK_UP : ETH_LINK_DOWN;
993 * DPDK callback to enable promiscuous mode.
996 * Pointer to Ethernet device structure.
999 * 0 on success, negative error value otherwise.
1002 mrvl_promiscuous_enable(struct rte_eth_dev *dev)
1004 struct mrvl_priv *priv = dev->data->dev_private;
1013 ret = pp2_ppio_set_promisc(priv->ppio, 1);
1015 MRVL_LOG(ERR, "Failed to enable promiscuous mode");
1023 * DPDK callback to enable allmulti mode.
1026 * Pointer to Ethernet device structure.
1029 * 0 on success, negative error value otherwise.
1032 mrvl_allmulticast_enable(struct rte_eth_dev *dev)
1034 struct mrvl_priv *priv = dev->data->dev_private;
1043 ret = pp2_ppio_set_mc_promisc(priv->ppio, 1);
1045 MRVL_LOG(ERR, "Failed enable all-multicast mode");
1053 * DPDK callback to disable promiscuous mode.
1056 * Pointer to Ethernet device structure.
1059 * 0 on success, negative error value otherwise.
1062 mrvl_promiscuous_disable(struct rte_eth_dev *dev)
1064 struct mrvl_priv *priv = dev->data->dev_private;
1070 ret = pp2_ppio_set_promisc(priv->ppio, 0);
1072 MRVL_LOG(ERR, "Failed to disable promiscuous mode");
1080 * DPDK callback to disable allmulticast mode.
1083 * Pointer to Ethernet device structure.
1086 * 0 on success, negative error value otherwise.
1089 mrvl_allmulticast_disable(struct rte_eth_dev *dev)
1091 struct mrvl_priv *priv = dev->data->dev_private;
1097 ret = pp2_ppio_set_mc_promisc(priv->ppio, 0);
1099 MRVL_LOG(ERR, "Failed to disable all-multicast mode");
1107 * DPDK callback to remove a MAC address.
1110 * Pointer to Ethernet device structure.
1112 * MAC address index.
1115 mrvl_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
1117 struct mrvl_priv *priv = dev->data->dev_private;
1118 char buf[RTE_ETHER_ADDR_FMT_SIZE];
1127 ret = pp2_ppio_remove_mac_addr(priv->ppio,
1128 dev->data->mac_addrs[index].addr_bytes);
1130 rte_ether_format_addr(buf, sizeof(buf),
1131 &dev->data->mac_addrs[index]);
1132 MRVL_LOG(ERR, "Failed to remove mac %s", buf);
1137 * DPDK callback to add a MAC address.
1140 * Pointer to Ethernet device structure.
1142 * MAC address to register.
1144 * MAC address index.
1146 * VMDq pool index to associate address with (unused).
1149 * 0 on success, negative error value otherwise.
1152 mrvl_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
1153 uint32_t index, uint32_t vmdq __rte_unused)
1155 struct mrvl_priv *priv = dev->data->dev_private;
1156 char buf[RTE_ETHER_ADDR_FMT_SIZE];
1163 /* For setting index 0, mrvl_mac_addr_set() should be used.*/
1170 * Maximum number of uc addresses can be tuned via kernel module mvpp2x
1171 * parameter uc_filter_max. Maximum number of mc addresses is then
1172 * MRVL_MAC_ADDRS_MAX - uc_filter_max. Currently it defaults to 4 and
1175 * If more than uc_filter_max uc addresses were added to filter list
1176 * then NIC will switch to promiscuous mode automatically.
1178 * If more than MRVL_MAC_ADDRS_MAX - uc_filter_max number mc addresses
1179 * were added to filter list then NIC will switch to all-multicast mode
1182 ret = pp2_ppio_add_mac_addr(priv->ppio, mac_addr->addr_bytes);
1184 rte_ether_format_addr(buf, sizeof(buf), mac_addr);
1185 MRVL_LOG(ERR, "Failed to add mac %s", buf);
1193 * DPDK callback to set the primary MAC address.
1196 * Pointer to Ethernet device structure.
1198 * MAC address to register.
1201 * 0 on success, negative error value otherwise.
1204 mrvl_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr)
1206 struct mrvl_priv *priv = dev->data->dev_private;
1215 ret = pp2_ppio_set_mac_addr(priv->ppio, mac_addr->addr_bytes);
1217 char buf[RTE_ETHER_ADDR_FMT_SIZE];
1218 rte_ether_format_addr(buf, sizeof(buf), mac_addr);
1219 MRVL_LOG(ERR, "Failed to set mac to %s", buf);
1226 * DPDK callback to get device statistics.
1229 * Pointer to Ethernet device structure.
1231 * Stats structure output buffer.
1234 * 0 on success, negative error value otherwise.
1237 mrvl_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
1239 struct mrvl_priv *priv = dev->data->dev_private;
1240 struct pp2_ppio_statistics ppio_stats;
1241 uint64_t drop_mac = 0;
1242 unsigned int i, idx, ret;
1247 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1248 struct mrvl_rxq *rxq = dev->data->rx_queues[i];
1249 struct pp2_ppio_inq_statistics rx_stats;
1254 idx = rxq->queue_id;
1255 if (unlikely(idx >= RTE_ETHDEV_QUEUE_STAT_CNTRS)) {
1257 "rx queue %d stats out of range (0 - %d)",
1258 idx, RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
1262 ret = pp2_ppio_inq_get_statistics(priv->ppio,
1263 priv->rxq_map[idx].tc,
1264 priv->rxq_map[idx].inq,
1266 if (unlikely(ret)) {
1268 "Failed to update rx queue %d stats", idx);
1272 stats->q_ibytes[idx] = rxq->bytes_recv;
1273 stats->q_ipackets[idx] = rx_stats.enq_desc - rxq->drop_mac;
1274 stats->q_errors[idx] = rx_stats.drop_early +
1275 rx_stats.drop_fullq +
1278 stats->ibytes += rxq->bytes_recv;
1279 drop_mac += rxq->drop_mac;
1282 for (i = 0; i < dev->data->nb_tx_queues; i++) {
1283 struct mrvl_txq *txq = dev->data->tx_queues[i];
1284 struct pp2_ppio_outq_statistics tx_stats;
1289 idx = txq->queue_id;
1290 if (unlikely(idx >= RTE_ETHDEV_QUEUE_STAT_CNTRS)) {
1292 "tx queue %d stats out of range (0 - %d)",
1293 idx, RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
1296 ret = pp2_ppio_outq_get_statistics(priv->ppio, idx,
1298 if (unlikely(ret)) {
1300 "Failed to update tx queue %d stats", idx);
1304 stats->q_opackets[idx] = tx_stats.deq_desc;
1305 stats->q_obytes[idx] = txq->bytes_sent;
1306 stats->obytes += txq->bytes_sent;
1309 ret = pp2_ppio_get_statistics(priv->ppio, &ppio_stats, 0);
1310 if (unlikely(ret)) {
1311 MRVL_LOG(ERR, "Failed to update port statistics");
1315 stats->ipackets += ppio_stats.rx_packets - drop_mac;
1316 stats->opackets += ppio_stats.tx_packets;
1317 stats->imissed += ppio_stats.rx_fullq_dropped +
1318 ppio_stats.rx_bm_dropped +
1319 ppio_stats.rx_early_dropped +
1320 ppio_stats.rx_fifo_dropped +
1321 ppio_stats.rx_cls_dropped;
1322 stats->ierrors = drop_mac;
1328 * DPDK callback to clear device statistics.
1331 * Pointer to Ethernet device structure.
1334 * 0 on success, negative error value otherwise.
1337 mrvl_stats_reset(struct rte_eth_dev *dev)
1339 struct mrvl_priv *priv = dev->data->dev_private;
1345 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1346 struct mrvl_rxq *rxq = dev->data->rx_queues[i];
1348 pp2_ppio_inq_get_statistics(priv->ppio, priv->rxq_map[i].tc,
1349 priv->rxq_map[i].inq, NULL, 1);
1350 rxq->bytes_recv = 0;
1354 for (i = 0; i < dev->data->nb_tx_queues; i++) {
1355 struct mrvl_txq *txq = dev->data->tx_queues[i];
1357 pp2_ppio_outq_get_statistics(priv->ppio, i, NULL, 1);
1358 txq->bytes_sent = 0;
1361 return pp2_ppio_get_statistics(priv->ppio, NULL, 1);
1365 * DPDK callback to get extended statistics.
1368 * Pointer to Ethernet device structure.
1370 * Pointer to xstats table.
1372 * Number of entries in xstats table.
1374 * Negative value on error, number of read xstats otherwise.
1377 mrvl_xstats_get(struct rte_eth_dev *dev,
1378 struct rte_eth_xstat *stats, unsigned int n)
1380 struct mrvl_priv *priv = dev->data->dev_private;
1381 struct pp2_ppio_statistics ppio_stats;
1387 pp2_ppio_get_statistics(priv->ppio, &ppio_stats, 0);
1388 for (i = 0; i < n && i < RTE_DIM(mrvl_xstats_tbl); i++) {
1391 if (mrvl_xstats_tbl[i].size == sizeof(uint32_t))
1392 val = *(uint32_t *)((uint8_t *)&ppio_stats +
1393 mrvl_xstats_tbl[i].offset);
1394 else if (mrvl_xstats_tbl[i].size == sizeof(uint64_t))
1395 val = *(uint64_t *)((uint8_t *)&ppio_stats +
1396 mrvl_xstats_tbl[i].offset);
1401 stats[i].value = val;
1408 * DPDK callback to reset extended statistics.
1411 * Pointer to Ethernet device structure.
1414 * 0 on success, negative error value otherwise.
1417 mrvl_xstats_reset(struct rte_eth_dev *dev)
1419 return mrvl_stats_reset(dev);
1423 * DPDK callback to get extended statistics names.
1425 * @param dev (unused)
1426 * Pointer to Ethernet device structure.
1427 * @param xstats_names
1428 * Pointer to xstats names table.
1430 * Size of the xstats names table.
1432 * Number of read names.
1435 mrvl_xstats_get_names(struct rte_eth_dev *dev __rte_unused,
1436 struct rte_eth_xstat_name *xstats_names,
1442 return RTE_DIM(mrvl_xstats_tbl);
1444 for (i = 0; i < size && i < RTE_DIM(mrvl_xstats_tbl); i++)
1445 strlcpy(xstats_names[i].name, mrvl_xstats_tbl[i].name,
1446 RTE_ETH_XSTATS_NAME_SIZE);
1452 * DPDK callback to get information about the device.
1455 * Pointer to Ethernet device structure (unused).
1457 * Info structure output buffer.
1460 mrvl_dev_infos_get(struct rte_eth_dev *dev __rte_unused,
1461 struct rte_eth_dev_info *info)
1463 info->speed_capa = ETH_LINK_SPEED_10M |
1464 ETH_LINK_SPEED_100M |
1468 info->max_rx_queues = MRVL_PP2_RXQ_MAX;
1469 info->max_tx_queues = MRVL_PP2_TXQ_MAX;
1470 info->max_mac_addrs = MRVL_MAC_ADDRS_MAX;
1472 info->rx_desc_lim.nb_max = MRVL_PP2_RXD_MAX;
1473 info->rx_desc_lim.nb_min = MRVL_PP2_RXD_MIN;
1474 info->rx_desc_lim.nb_align = MRVL_PP2_RXD_ALIGN;
1476 info->tx_desc_lim.nb_max = MRVL_PP2_TXD_MAX;
1477 info->tx_desc_lim.nb_min = MRVL_PP2_TXD_MIN;
1478 info->tx_desc_lim.nb_align = MRVL_PP2_TXD_ALIGN;
1480 info->rx_offload_capa = MRVL_RX_OFFLOADS;
1481 info->rx_queue_offload_capa = MRVL_RX_OFFLOADS;
1483 info->tx_offload_capa = MRVL_TX_OFFLOADS;
1484 info->tx_queue_offload_capa = MRVL_TX_OFFLOADS;
1486 info->flow_type_rss_offloads = ETH_RSS_IPV4 |
1487 ETH_RSS_NONFRAG_IPV4_TCP |
1488 ETH_RSS_NONFRAG_IPV4_UDP;
1490 /* By default packets are dropped if no descriptors are available */
1491 info->default_rxconf.rx_drop_en = 1;
1493 info->max_rx_pktlen = MRVL_PKT_SIZE_MAX;
1499 * Return supported packet types.
1502 * Pointer to Ethernet device structure (unused).
1505 * Const pointer to the table with supported packet types.
1507 static const uint32_t *
1508 mrvl_dev_supported_ptypes_get(struct rte_eth_dev *dev __rte_unused)
1510 static const uint32_t ptypes[] = {
1512 RTE_PTYPE_L2_ETHER_VLAN,
1513 RTE_PTYPE_L2_ETHER_QINQ,
1515 RTE_PTYPE_L3_IPV4_EXT,
1516 RTE_PTYPE_L3_IPV4_EXT_UNKNOWN,
1518 RTE_PTYPE_L3_IPV6_EXT,
1519 RTE_PTYPE_L2_ETHER_ARP,
1528 * DPDK callback to get information about specific receive queue.
1531 * Pointer to Ethernet device structure.
1532 * @param rx_queue_id
1533 * Receive queue index.
1535 * Receive queue information structure.
1537 static void mrvl_rxq_info_get(struct rte_eth_dev *dev, uint16_t rx_queue_id,
1538 struct rte_eth_rxq_info *qinfo)
1540 struct mrvl_rxq *q = dev->data->rx_queues[rx_queue_id];
1541 struct mrvl_priv *priv = dev->data->dev_private;
1542 int inq = priv->rxq_map[rx_queue_id].inq;
1543 int tc = priv->rxq_map[rx_queue_id].tc;
1544 struct pp2_ppio_tc_params *tc_params =
1545 &priv->ppio_params.inqs_params.tcs_params[tc];
1548 qinfo->nb_desc = tc_params->inqs_params[inq].size;
1552 * DPDK callback to get information about specific transmit queue.
1555 * Pointer to Ethernet device structure.
1556 * @param tx_queue_id
1557 * Transmit queue index.
1559 * Transmit queue information structure.
1561 static void mrvl_txq_info_get(struct rte_eth_dev *dev, uint16_t tx_queue_id,
1562 struct rte_eth_txq_info *qinfo)
1564 struct mrvl_priv *priv = dev->data->dev_private;
1565 struct mrvl_txq *txq = dev->data->tx_queues[tx_queue_id];
1568 priv->ppio_params.outqs_params.outqs_params[tx_queue_id].size;
1569 qinfo->conf.tx_deferred_start = txq->tx_deferred_start;
1573 * DPDK callback to Configure a VLAN filter.
1576 * Pointer to Ethernet device structure.
1578 * VLAN ID to filter.
1583 * 0 on success, negative error value otherwise.
1586 mrvl_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1588 struct mrvl_priv *priv = dev->data->dev_private;
1596 return on ? pp2_ppio_add_vlan(priv->ppio, vlan_id) :
1597 pp2_ppio_remove_vlan(priv->ppio, vlan_id);
1601 * Release buffers to hardware bpool (buffer-pool)
1604 * Receive queue pointer.
1606 * Number of buffers to release to bpool.
1609 * 0 on success, negative error value otherwise.
1612 mrvl_fill_bpool(struct mrvl_rxq *rxq, int num)
1614 struct buff_release_entry entries[MRVL_PP2_RXD_MAX];
1615 struct rte_mbuf *mbufs[MRVL_PP2_RXD_MAX];
1617 unsigned int core_id;
1618 struct pp2_hif *hif;
1619 struct pp2_bpool *bpool;
1621 core_id = rte_lcore_id();
1622 if (core_id == LCORE_ID_ANY)
1623 core_id = rte_get_master_lcore();
1625 hif = mrvl_get_hif(rxq->priv, core_id);
1629 bpool = rxq->priv->bpool;
1631 ret = rte_pktmbuf_alloc_bulk(rxq->mp, mbufs, num);
1635 if (cookie_addr_high == MRVL_COOKIE_ADDR_INVALID)
1637 (uint64_t)mbufs[0] & MRVL_COOKIE_HIGH_ADDR_MASK;
1639 for (i = 0; i < num; i++) {
1640 if (((uint64_t)mbufs[i] & MRVL_COOKIE_HIGH_ADDR_MASK)
1641 != cookie_addr_high) {
1643 "mbuf virtual addr high 0x%lx out of range",
1644 (uint64_t)mbufs[i] >> 32);
1648 entries[i].buff.addr =
1649 rte_mbuf_data_iova_default(mbufs[i]);
1650 entries[i].buff.cookie = (uint64_t)mbufs[i];
1651 entries[i].bpool = bpool;
1654 pp2_bpool_put_buffs(hif, entries, (uint16_t *)&i);
1655 mrvl_port_bpool_size[bpool->pp2_id][bpool->id][core_id] += i;
1662 for (; i < num; i++)
1663 rte_pktmbuf_free(mbufs[i]);
1669 * DPDK callback to configure the receive queue.
1672 * Pointer to Ethernet device structure.
1676 * Number of descriptors to configure in queue.
1678 * NUMA socket on which memory must be allocated.
1680 * Thresholds parameters.
1682 * Memory pool for buffer allocations.
1685 * 0 on success, negative error value otherwise.
1688 mrvl_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1689 unsigned int socket,
1690 const struct rte_eth_rxconf *conf,
1691 struct rte_mempool *mp)
1693 struct mrvl_priv *priv = dev->data->dev_private;
1694 struct mrvl_rxq *rxq;
1695 uint32_t frame_size, buf_size = rte_pktmbuf_data_room_size(mp);
1696 uint32_t max_rx_pkt_len = dev->data->dev_conf.rxmode.max_rx_pkt_len;
1700 offloads = conf->offloads | dev->data->dev_conf.rxmode.offloads;
1702 if (priv->rxq_map[idx].tc == MRVL_UNKNOWN_TC) {
1704 * Unknown TC mapping, mapping will not have a correct queue.
1706 MRVL_LOG(ERR, "Unknown TC mapping for queue %hu eth%hhu",
1707 idx, priv->ppio_id);
1711 frame_size = buf_size - RTE_PKTMBUF_HEADROOM - MRVL_PKT_EFFEC_OFFS;
1712 if (frame_size < max_rx_pkt_len) {
1714 "Mbuf size must be increased to %u bytes to hold up "
1715 "to %u bytes of data.",
1716 buf_size + max_rx_pkt_len - frame_size,
1718 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
1719 MRVL_LOG(INFO, "Setting max rx pkt len to %u",
1720 dev->data->dev_conf.rxmode.max_rx_pkt_len);
1723 if (dev->data->rx_queues[idx]) {
1724 rte_free(dev->data->rx_queues[idx]);
1725 dev->data->rx_queues[idx] = NULL;
1728 rxq = rte_zmalloc_socket("rxq", sizeof(*rxq), 0, socket);
1734 rxq->cksum_enabled = offloads & DEV_RX_OFFLOAD_IPV4_CKSUM;
1735 rxq->queue_id = idx;
1736 rxq->port_id = dev->data->port_id;
1737 mrvl_port_to_bpool_lookup[rxq->port_id] = priv->bpool;
1739 tc = priv->rxq_map[rxq->queue_id].tc,
1740 inq = priv->rxq_map[rxq->queue_id].inq;
1741 priv->ppio_params.inqs_params.tcs_params[tc].inqs_params[inq].size =
1744 ret = mrvl_fill_bpool(rxq, desc);
1750 priv->bpool_init_size += desc;
1752 dev->data->rx_queues[idx] = rxq;
1758 * DPDK callback to release the receive queue.
1761 * Generic receive queue pointer.
1764 mrvl_rx_queue_release(void *rxq)
1766 struct mrvl_rxq *q = rxq;
1767 struct pp2_ppio_tc_params *tc_params;
1768 int i, num, tc, inq;
1769 struct pp2_hif *hif;
1770 unsigned int core_id = rte_lcore_id();
1772 if (core_id == LCORE_ID_ANY)
1773 core_id = rte_get_master_lcore();
1778 hif = mrvl_get_hif(q->priv, core_id);
1783 tc = q->priv->rxq_map[q->queue_id].tc;
1784 inq = q->priv->rxq_map[q->queue_id].inq;
1785 tc_params = &q->priv->ppio_params.inqs_params.tcs_params[tc];
1786 num = tc_params->inqs_params[inq].size;
1787 for (i = 0; i < num; i++) {
1788 struct pp2_buff_inf inf;
1791 pp2_bpool_get_buff(hif, q->priv->bpool, &inf);
1792 addr = cookie_addr_high | inf.cookie;
1793 rte_pktmbuf_free((struct rte_mbuf *)addr);
1800 * DPDK callback to configure the transmit queue.
1803 * Pointer to Ethernet device structure.
1805 * Transmit queue index.
1807 * Number of descriptors to configure in the queue.
1809 * NUMA socket on which memory must be allocated.
1811 * Tx queue configuration parameters.
1814 * 0 on success, negative error value otherwise.
1817 mrvl_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1818 unsigned int socket,
1819 const struct rte_eth_txconf *conf)
1821 struct mrvl_priv *priv = dev->data->dev_private;
1822 struct mrvl_txq *txq;
1824 if (dev->data->tx_queues[idx]) {
1825 rte_free(dev->data->tx_queues[idx]);
1826 dev->data->tx_queues[idx] = NULL;
1829 txq = rte_zmalloc_socket("txq", sizeof(*txq), 0, socket);
1834 txq->queue_id = idx;
1835 txq->port_id = dev->data->port_id;
1836 txq->tx_deferred_start = conf->tx_deferred_start;
1837 dev->data->tx_queues[idx] = txq;
1839 priv->ppio_params.outqs_params.outqs_params[idx].size = desc;
1845 * DPDK callback to release the transmit queue.
1848 * Generic transmit queue pointer.
1851 mrvl_tx_queue_release(void *txq)
1853 struct mrvl_txq *q = txq;
1862 * DPDK callback to get flow control configuration.
1865 * Pointer to Ethernet device structure.
1867 * Pointer to the flow control configuration.
1870 * 0 on success, negative error value otherwise.
1873 mrvl_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1875 struct mrvl_priv *priv = dev->data->dev_private;
1881 ret = pp2_ppio_get_rx_pause(priv->ppio, &en);
1883 MRVL_LOG(ERR, "Failed to read rx pause state");
1887 fc_conf->mode = en ? RTE_FC_RX_PAUSE : RTE_FC_NONE;
1893 * DPDK callback to set flow control configuration.
1896 * Pointer to Ethernet device structure.
1898 * Pointer to the flow control configuration.
1901 * 0 on success, negative error value otherwise.
1904 mrvl_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1906 struct mrvl_priv *priv = dev->data->dev_private;
1911 if (fc_conf->high_water ||
1912 fc_conf->low_water ||
1913 fc_conf->pause_time ||
1914 fc_conf->mac_ctrl_frame_fwd ||
1916 MRVL_LOG(ERR, "Flowctrl parameter is not supported");
1921 if (fc_conf->mode == RTE_FC_NONE ||
1922 fc_conf->mode == RTE_FC_RX_PAUSE) {
1925 en = fc_conf->mode == RTE_FC_NONE ? 0 : 1;
1926 ret = pp2_ppio_set_rx_pause(priv->ppio, en);
1929 "Failed to change flowctrl on RX side");
1938 * Update RSS hash configuration
1941 * Pointer to Ethernet device structure.
1943 * Pointer to RSS configuration.
1946 * 0 on success, negative error value otherwise.
1949 mrvl_rss_hash_update(struct rte_eth_dev *dev,
1950 struct rte_eth_rss_conf *rss_conf)
1952 struct mrvl_priv *priv = dev->data->dev_private;
1957 return mrvl_configure_rss(priv, rss_conf);
1961 * DPDK callback to get RSS hash configuration.
1964 * Pointer to Ethernet device structure.
1966 * Pointer to RSS configuration.
1972 mrvl_rss_hash_conf_get(struct rte_eth_dev *dev,
1973 struct rte_eth_rss_conf *rss_conf)
1975 struct mrvl_priv *priv = dev->data->dev_private;
1976 enum pp2_ppio_hash_type hash_type =
1977 priv->ppio_params.inqs_params.hash_type;
1979 rss_conf->rss_key = NULL;
1981 if (hash_type == PP2_PPIO_HASH_T_NONE)
1982 rss_conf->rss_hf = 0;
1983 else if (hash_type == PP2_PPIO_HASH_T_2_TUPLE)
1984 rss_conf->rss_hf = ETH_RSS_IPV4;
1985 else if (hash_type == PP2_PPIO_HASH_T_5_TUPLE && priv->rss_hf_tcp)
1986 rss_conf->rss_hf = ETH_RSS_NONFRAG_IPV4_TCP;
1987 else if (hash_type == PP2_PPIO_HASH_T_5_TUPLE && !priv->rss_hf_tcp)
1988 rss_conf->rss_hf = ETH_RSS_NONFRAG_IPV4_UDP;
1994 * DPDK callback to get rte_flow callbacks.
1997 * Pointer to the device structure.
2001 * Flow filter operation.
2003 * Pointer to pass the flow ops.
2006 * 0 on success, negative error value otherwise.
2009 mrvl_eth_filter_ctrl(struct rte_eth_dev *dev __rte_unused,
2010 enum rte_filter_type filter_type,
2011 enum rte_filter_op filter_op, void *arg)
2013 switch (filter_type) {
2014 case RTE_ETH_FILTER_GENERIC:
2015 if (filter_op != RTE_ETH_FILTER_GET)
2017 *(const void **)arg = &mrvl_flow_ops;
2020 MRVL_LOG(WARNING, "Filter type (%d) not supported",
2027 * DPDK callback to get rte_mtr callbacks.
2030 * Pointer to the device structure.
2032 * Pointer to pass the mtr ops.
2038 mrvl_mtr_ops_get(struct rte_eth_dev *dev __rte_unused, void *ops)
2040 *(const void **)ops = &mrvl_mtr_ops;
2046 * DPDK callback to get rte_tm callbacks.
2049 * Pointer to the device structure.
2051 * Pointer to pass the tm ops.
2057 mrvl_tm_ops_get(struct rte_eth_dev *dev __rte_unused, void *ops)
2059 *(const void **)ops = &mrvl_tm_ops;
2064 static const struct eth_dev_ops mrvl_ops = {
2065 .dev_configure = mrvl_dev_configure,
2066 .dev_start = mrvl_dev_start,
2067 .dev_stop = mrvl_dev_stop,
2068 .dev_set_link_up = mrvl_dev_set_link_up,
2069 .dev_set_link_down = mrvl_dev_set_link_down,
2070 .dev_close = mrvl_dev_close,
2071 .link_update = mrvl_link_update,
2072 .promiscuous_enable = mrvl_promiscuous_enable,
2073 .allmulticast_enable = mrvl_allmulticast_enable,
2074 .promiscuous_disable = mrvl_promiscuous_disable,
2075 .allmulticast_disable = mrvl_allmulticast_disable,
2076 .mac_addr_remove = mrvl_mac_addr_remove,
2077 .mac_addr_add = mrvl_mac_addr_add,
2078 .mac_addr_set = mrvl_mac_addr_set,
2079 .mtu_set = mrvl_mtu_set,
2080 .stats_get = mrvl_stats_get,
2081 .stats_reset = mrvl_stats_reset,
2082 .xstats_get = mrvl_xstats_get,
2083 .xstats_reset = mrvl_xstats_reset,
2084 .xstats_get_names = mrvl_xstats_get_names,
2085 .dev_infos_get = mrvl_dev_infos_get,
2086 .dev_supported_ptypes_get = mrvl_dev_supported_ptypes_get,
2087 .rxq_info_get = mrvl_rxq_info_get,
2088 .txq_info_get = mrvl_txq_info_get,
2089 .vlan_filter_set = mrvl_vlan_filter_set,
2090 .tx_queue_start = mrvl_tx_queue_start,
2091 .tx_queue_stop = mrvl_tx_queue_stop,
2092 .rx_queue_setup = mrvl_rx_queue_setup,
2093 .rx_queue_release = mrvl_rx_queue_release,
2094 .tx_queue_setup = mrvl_tx_queue_setup,
2095 .tx_queue_release = mrvl_tx_queue_release,
2096 .flow_ctrl_get = mrvl_flow_ctrl_get,
2097 .flow_ctrl_set = mrvl_flow_ctrl_set,
2098 .rss_hash_update = mrvl_rss_hash_update,
2099 .rss_hash_conf_get = mrvl_rss_hash_conf_get,
2100 .filter_ctrl = mrvl_eth_filter_ctrl,
2101 .mtr_ops_get = mrvl_mtr_ops_get,
2102 .tm_ops_get = mrvl_tm_ops_get,
2106 * Return packet type information and l3/l4 offsets.
2109 * Pointer to the received packet descriptor.
2116 * Packet type information.
2118 static inline uint64_t
2119 mrvl_desc_to_packet_type_and_offset(struct pp2_ppio_desc *desc,
2120 uint8_t *l3_offset, uint8_t *l4_offset)
2122 enum pp2_inq_l3_type l3_type;
2123 enum pp2_inq_l4_type l4_type;
2124 enum pp2_inq_vlan_tag vlan_tag;
2125 uint64_t packet_type;
2127 pp2_ppio_inq_desc_get_l3_info(desc, &l3_type, l3_offset);
2128 pp2_ppio_inq_desc_get_l4_info(desc, &l4_type, l4_offset);
2129 pp2_ppio_inq_desc_get_vlan_tag(desc, &vlan_tag);
2131 packet_type = RTE_PTYPE_L2_ETHER;
2134 case PP2_INQ_VLAN_TAG_SINGLE:
2135 packet_type |= RTE_PTYPE_L2_ETHER_VLAN;
2137 case PP2_INQ_VLAN_TAG_DOUBLE:
2138 case PP2_INQ_VLAN_TAG_TRIPLE:
2139 packet_type |= RTE_PTYPE_L2_ETHER_QINQ;
2146 case PP2_INQ_L3_TYPE_IPV4_NO_OPTS:
2147 packet_type |= RTE_PTYPE_L3_IPV4;
2149 case PP2_INQ_L3_TYPE_IPV4_OK:
2150 packet_type |= RTE_PTYPE_L3_IPV4_EXT;
2152 case PP2_INQ_L3_TYPE_IPV4_TTL_ZERO:
2153 packet_type |= RTE_PTYPE_L3_IPV4_EXT_UNKNOWN;
2155 case PP2_INQ_L3_TYPE_IPV6_NO_EXT:
2156 packet_type |= RTE_PTYPE_L3_IPV6;
2158 case PP2_INQ_L3_TYPE_IPV6_EXT:
2159 packet_type |= RTE_PTYPE_L3_IPV6_EXT;
2161 case PP2_INQ_L3_TYPE_ARP:
2162 packet_type |= RTE_PTYPE_L2_ETHER_ARP;
2164 * In case of ARP l4_offset is set to wrong value.
2165 * Set it to proper one so that later on mbuf->l3_len can be
2166 * calculated subtracting l4_offset and l3_offset.
2168 *l4_offset = *l3_offset + MRVL_ARP_LENGTH;
2171 MRVL_LOG(DEBUG, "Failed to recognise l3 packet type");
2176 case PP2_INQ_L4_TYPE_TCP:
2177 packet_type |= RTE_PTYPE_L4_TCP;
2179 case PP2_INQ_L4_TYPE_UDP:
2180 packet_type |= RTE_PTYPE_L4_UDP;
2183 MRVL_LOG(DEBUG, "Failed to recognise l4 packet type");
2191 * Get offload information from the received packet descriptor.
2194 * Pointer to the received packet descriptor.
2197 * Mbuf offload flags.
2199 static inline uint64_t
2200 mrvl_desc_to_ol_flags(struct pp2_ppio_desc *desc)
2203 enum pp2_inq_desc_status status;
2205 status = pp2_ppio_inq_desc_get_l3_pkt_error(desc);
2206 if (unlikely(status != PP2_DESC_ERR_OK))
2207 flags = PKT_RX_IP_CKSUM_BAD;
2209 flags = PKT_RX_IP_CKSUM_GOOD;
2211 status = pp2_ppio_inq_desc_get_l4_pkt_error(desc);
2212 if (unlikely(status != PP2_DESC_ERR_OK))
2213 flags |= PKT_RX_L4_CKSUM_BAD;
2215 flags |= PKT_RX_L4_CKSUM_GOOD;
2221 * DPDK callback for receive.
2224 * Generic pointer to the receive queue.
2226 * Array to store received packets.
2228 * Maximum number of packets in array.
2231 * Number of packets successfully received.
2234 mrvl_rx_pkt_burst(void *rxq, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
2236 struct mrvl_rxq *q = rxq;
2237 struct pp2_ppio_desc descs[nb_pkts];
2238 struct pp2_bpool *bpool;
2239 int i, ret, rx_done = 0;
2241 struct pp2_hif *hif;
2242 unsigned int core_id = rte_lcore_id();
2244 hif = mrvl_get_hif(q->priv, core_id);
2246 if (unlikely(!q->priv->ppio || !hif))
2249 bpool = q->priv->bpool;
2251 ret = pp2_ppio_recv(q->priv->ppio, q->priv->rxq_map[q->queue_id].tc,
2252 q->priv->rxq_map[q->queue_id].inq, descs, &nb_pkts);
2253 if (unlikely(ret < 0)) {
2254 MRVL_LOG(ERR, "Failed to receive packets");
2257 mrvl_port_bpool_size[bpool->pp2_id][bpool->id][core_id] -= nb_pkts;
2259 for (i = 0; i < nb_pkts; i++) {
2260 struct rte_mbuf *mbuf;
2261 uint8_t l3_offset, l4_offset;
2262 enum pp2_inq_desc_status status;
2265 if (likely(nb_pkts - i > MRVL_MUSDK_PREFETCH_SHIFT)) {
2266 struct pp2_ppio_desc *pref_desc;
2269 pref_desc = &descs[i + MRVL_MUSDK_PREFETCH_SHIFT];
2270 pref_addr = cookie_addr_high |
2271 pp2_ppio_inq_desc_get_cookie(pref_desc);
2272 rte_mbuf_prefetch_part1((struct rte_mbuf *)(pref_addr));
2273 rte_mbuf_prefetch_part2((struct rte_mbuf *)(pref_addr));
2276 addr = cookie_addr_high |
2277 pp2_ppio_inq_desc_get_cookie(&descs[i]);
2278 mbuf = (struct rte_mbuf *)addr;
2279 rte_pktmbuf_reset(mbuf);
2281 /* drop packet in case of mac, overrun or resource error */
2282 status = pp2_ppio_inq_desc_get_l2_pkt_error(&descs[i]);
2283 if (unlikely(status != PP2_DESC_ERR_OK)) {
2284 struct pp2_buff_inf binf = {
2285 .addr = rte_mbuf_data_iova_default(mbuf),
2286 .cookie = (uint64_t)mbuf,
2289 pp2_bpool_put_buff(hif, bpool, &binf);
2290 mrvl_port_bpool_size
2291 [bpool->pp2_id][bpool->id][core_id]++;
2296 mbuf->data_off += MRVL_PKT_EFFEC_OFFS;
2297 mbuf->pkt_len = pp2_ppio_inq_desc_get_pkt_len(&descs[i]);
2298 mbuf->data_len = mbuf->pkt_len;
2299 mbuf->port = q->port_id;
2301 mrvl_desc_to_packet_type_and_offset(&descs[i],
2304 mbuf->l2_len = l3_offset;
2305 mbuf->l3_len = l4_offset - l3_offset;
2307 if (likely(q->cksum_enabled))
2308 mbuf->ol_flags = mrvl_desc_to_ol_flags(&descs[i]);
2310 rx_pkts[rx_done++] = mbuf;
2311 q->bytes_recv += mbuf->pkt_len;
2314 if (rte_spinlock_trylock(&q->priv->lock) == 1) {
2315 num = mrvl_get_bpool_size(bpool->pp2_id, bpool->id);
2317 if (unlikely(num <= q->priv->bpool_min_size ||
2318 (!rx_done && num < q->priv->bpool_init_size))) {
2319 ret = mrvl_fill_bpool(q, MRVL_BURST_SIZE);
2321 MRVL_LOG(ERR, "Failed to fill bpool");
2322 } else if (unlikely(num > q->priv->bpool_max_size)) {
2324 int pkt_to_remove = num - q->priv->bpool_init_size;
2325 struct rte_mbuf *mbuf;
2326 struct pp2_buff_inf buff;
2329 "port-%d:%d: bpool %d oversize - remove %d buffers (pool size: %d -> %d)",
2330 bpool->pp2_id, q->priv->ppio->port_id,
2331 bpool->id, pkt_to_remove, num,
2332 q->priv->bpool_init_size);
2334 for (i = 0; i < pkt_to_remove; i++) {
2335 ret = pp2_bpool_get_buff(hif, bpool, &buff);
2338 mbuf = (struct rte_mbuf *)
2339 (cookie_addr_high | buff.cookie);
2340 rte_pktmbuf_free(mbuf);
2342 mrvl_port_bpool_size
2343 [bpool->pp2_id][bpool->id][core_id] -= i;
2345 rte_spinlock_unlock(&q->priv->lock);
2352 * Prepare offload information.
2356 * @param packet_type
2357 * Packet type bitfield.
2359 * Pointer to the pp2_ouq_l3_type structure.
2361 * Pointer to the pp2_outq_l4_type structure.
2362 * @param gen_l3_cksum
2363 * Will be set to 1 in case l3 checksum is computed.
2365 * Will be set to 1 in case l4 checksum is computed.
2368 * 0 on success, negative error value otherwise.
2371 mrvl_prepare_proto_info(uint64_t ol_flags, uint32_t packet_type,
2372 enum pp2_outq_l3_type *l3_type,
2373 enum pp2_outq_l4_type *l4_type,
2378 * Based on ol_flags prepare information
2379 * for pp2_ppio_outq_desc_set_proto_info() which setups descriptor
2382 if (ol_flags & PKT_TX_IPV4) {
2383 *l3_type = PP2_OUTQ_L3_TYPE_IPV4;
2384 *gen_l3_cksum = ol_flags & PKT_TX_IP_CKSUM ? 1 : 0;
2385 } else if (ol_flags & PKT_TX_IPV6) {
2386 *l3_type = PP2_OUTQ_L3_TYPE_IPV6;
2387 /* no checksum for ipv6 header */
2390 /* if something different then stop processing */
2394 ol_flags &= PKT_TX_L4_MASK;
2395 if ((packet_type & RTE_PTYPE_L4_TCP) &&
2396 ol_flags == PKT_TX_TCP_CKSUM) {
2397 *l4_type = PP2_OUTQ_L4_TYPE_TCP;
2399 } else if ((packet_type & RTE_PTYPE_L4_UDP) &&
2400 ol_flags == PKT_TX_UDP_CKSUM) {
2401 *l4_type = PP2_OUTQ_L4_TYPE_UDP;
2404 *l4_type = PP2_OUTQ_L4_TYPE_OTHER;
2405 /* no checksum for other type */
2413 * Release already sent buffers to bpool (buffer-pool).
2416 * Pointer to the port structure.
2418 * Pointer to the MUSDK hardware interface.
2420 * Pointer to the shadow queue.
2424 * Force releasing packets.
2427 mrvl_free_sent_buffers(struct pp2_ppio *ppio, struct pp2_hif *hif,
2428 unsigned int core_id, struct mrvl_shadow_txq *sq,
2431 struct buff_release_entry *entry;
2432 uint16_t nb_done = 0, num = 0, skip_bufs = 0;
2435 pp2_ppio_get_num_outq_done(ppio, hif, qid, &nb_done);
2437 sq->num_to_release += nb_done;
2439 if (likely(!force &&
2440 sq->num_to_release < MRVL_PP2_BUF_RELEASE_BURST_SIZE))
2443 nb_done = sq->num_to_release;
2444 sq->num_to_release = 0;
2446 for (i = 0; i < nb_done; i++) {
2447 entry = &sq->ent[sq->tail + num];
2448 if (unlikely(!entry->buff.addr)) {
2450 "Shadow memory @%d: cookie(%lx), pa(%lx)!",
2451 sq->tail, (u64)entry->buff.cookie,
2452 (u64)entry->buff.addr);
2457 if (unlikely(!entry->bpool)) {
2458 struct rte_mbuf *mbuf;
2460 mbuf = (struct rte_mbuf *)
2461 (cookie_addr_high | entry->buff.cookie);
2462 rte_pktmbuf_free(mbuf);
2467 mrvl_port_bpool_size
2468 [entry->bpool->pp2_id][entry->bpool->id][core_id]++;
2470 if (unlikely(sq->tail + num == MRVL_PP2_TX_SHADOWQ_SIZE))
2475 pp2_bpool_put_buffs(hif, &sq->ent[sq->tail], &num);
2477 sq->tail = (sq->tail + num) & MRVL_PP2_TX_SHADOWQ_MASK;
2484 pp2_bpool_put_buffs(hif, &sq->ent[sq->tail], &num);
2485 sq->tail = (sq->tail + num) & MRVL_PP2_TX_SHADOWQ_MASK;
2491 * DPDK callback for transmit.
2494 * Generic pointer transmit queue.
2496 * Packets to transmit.
2498 * Number of packets in array.
2501 * Number of packets successfully transmitted.
2504 mrvl_tx_pkt_burst(void *txq, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
2506 struct mrvl_txq *q = txq;
2507 struct mrvl_shadow_txq *sq;
2508 struct pp2_hif *hif;
2509 struct pp2_ppio_desc descs[nb_pkts];
2510 unsigned int core_id = rte_lcore_id();
2511 int i, ret, bytes_sent = 0;
2512 uint16_t num, sq_free_size;
2515 hif = mrvl_get_hif(q->priv, core_id);
2516 sq = &q->shadow_txqs[core_id];
2518 if (unlikely(!q->priv->ppio || !hif))
2522 mrvl_free_sent_buffers(q->priv->ppio, hif, core_id,
2523 sq, q->queue_id, 0);
2525 sq_free_size = MRVL_PP2_TX_SHADOWQ_SIZE - sq->size - 1;
2526 if (unlikely(nb_pkts > sq_free_size)) {
2528 "No room in shadow queue for %d packets! %d packets will be sent.",
2529 nb_pkts, sq_free_size);
2530 nb_pkts = sq_free_size;
2533 for (i = 0; i < nb_pkts; i++) {
2534 struct rte_mbuf *mbuf = tx_pkts[i];
2535 int gen_l3_cksum, gen_l4_cksum;
2536 enum pp2_outq_l3_type l3_type;
2537 enum pp2_outq_l4_type l4_type;
2539 if (likely(nb_pkts - i > MRVL_MUSDK_PREFETCH_SHIFT)) {
2540 struct rte_mbuf *pref_pkt_hdr;
2542 pref_pkt_hdr = tx_pkts[i + MRVL_MUSDK_PREFETCH_SHIFT];
2543 rte_mbuf_prefetch_part1(pref_pkt_hdr);
2544 rte_mbuf_prefetch_part2(pref_pkt_hdr);
2547 mrvl_fill_shadowq(sq, mbuf);
2548 mrvl_fill_desc(&descs[i], mbuf);
2550 bytes_sent += rte_pktmbuf_pkt_len(mbuf);
2552 * in case unsupported ol_flags were passed
2553 * do not update descriptor offload information
2555 ret = mrvl_prepare_proto_info(mbuf->ol_flags, mbuf->packet_type,
2556 &l3_type, &l4_type, &gen_l3_cksum,
2561 pp2_ppio_outq_desc_set_proto_info(&descs[i], l3_type, l4_type,
2563 mbuf->l2_len + mbuf->l3_len,
2564 gen_l3_cksum, gen_l4_cksum);
2568 pp2_ppio_send(q->priv->ppio, hif, q->queue_id, descs, &nb_pkts);
2569 /* number of packets that were not sent */
2570 if (unlikely(num > nb_pkts)) {
2571 for (i = nb_pkts; i < num; i++) {
2572 sq->head = (MRVL_PP2_TX_SHADOWQ_SIZE + sq->head - 1) &
2573 MRVL_PP2_TX_SHADOWQ_MASK;
2574 addr = cookie_addr_high | sq->ent[sq->head].buff.cookie;
2576 rte_pktmbuf_pkt_len((struct rte_mbuf *)addr);
2578 sq->size -= num - nb_pkts;
2581 q->bytes_sent += bytes_sent;
2586 /** DPDK callback for S/G transmit.
2589 * Generic pointer transmit queue.
2591 * Packets to transmit.
2593 * Number of packets in array.
2596 * Number of packets successfully transmitted.
2599 mrvl_tx_sg_pkt_burst(void *txq, struct rte_mbuf **tx_pkts,
2602 struct mrvl_txq *q = txq;
2603 struct mrvl_shadow_txq *sq;
2604 struct pp2_hif *hif;
2605 struct pp2_ppio_desc descs[nb_pkts * PP2_PPIO_DESC_NUM_FRAGS];
2606 struct pp2_ppio_sg_pkts pkts;
2607 uint8_t frags[nb_pkts];
2608 unsigned int core_id = rte_lcore_id();
2609 int i, j, ret, bytes_sent = 0;
2610 int tail, tail_first;
2611 uint16_t num, sq_free_size;
2612 uint16_t nb_segs, total_descs = 0;
2615 hif = mrvl_get_hif(q->priv, core_id);
2616 sq = &q->shadow_txqs[core_id];
2620 if (unlikely(!q->priv->ppio || !hif))
2624 mrvl_free_sent_buffers(q->priv->ppio, hif, core_id,
2625 sq, q->queue_id, 0);
2627 /* Save shadow queue free size */
2628 sq_free_size = MRVL_PP2_TX_SHADOWQ_SIZE - sq->size - 1;
2631 for (i = 0; i < nb_pkts; i++) {
2632 struct rte_mbuf *mbuf = tx_pkts[i];
2633 struct rte_mbuf *seg = NULL;
2634 int gen_l3_cksum, gen_l4_cksum;
2635 enum pp2_outq_l3_type l3_type;
2636 enum pp2_outq_l4_type l4_type;
2638 nb_segs = mbuf->nb_segs;
2640 total_descs += nb_segs;
2643 * Check if total_descs does not exceed
2644 * shadow queue free size
2646 if (unlikely(total_descs > sq_free_size)) {
2647 total_descs -= nb_segs;
2649 "No room in shadow queue for %d packets! "
2650 "%d packets will be sent.\n",
2655 /* Check if nb_segs does not exceed the max nb of desc per
2658 if (nb_segs > PP2_PPIO_DESC_NUM_FRAGS) {
2659 total_descs -= nb_segs;
2661 "Too many segments. Packet won't be sent.\n");
2665 if (likely(nb_pkts - i > MRVL_MUSDK_PREFETCH_SHIFT)) {
2666 struct rte_mbuf *pref_pkt_hdr;
2668 pref_pkt_hdr = tx_pkts[i + MRVL_MUSDK_PREFETCH_SHIFT];
2669 rte_mbuf_prefetch_part1(pref_pkt_hdr);
2670 rte_mbuf_prefetch_part2(pref_pkt_hdr);
2673 pkts.frags[pkts.num] = nb_segs;
2677 for (j = 0; j < nb_segs - 1; j++) {
2678 /* For the subsequent segments, set shadow queue
2681 mrvl_fill_shadowq(sq, NULL);
2682 mrvl_fill_desc(&descs[tail], seg);
2687 /* Put first mbuf info in last shadow queue entry */
2688 mrvl_fill_shadowq(sq, mbuf);
2689 /* Update descriptor with last segment */
2690 mrvl_fill_desc(&descs[tail++], seg);
2692 bytes_sent += rte_pktmbuf_pkt_len(mbuf);
2693 /* In case unsupported ol_flags were passed
2694 * do not update descriptor offload information
2696 ret = mrvl_prepare_proto_info(mbuf->ol_flags, mbuf->packet_type,
2697 &l3_type, &l4_type, &gen_l3_cksum,
2702 pp2_ppio_outq_desc_set_proto_info(&descs[tail_first], l3_type,
2703 l4_type, mbuf->l2_len,
2704 mbuf->l2_len + mbuf->l3_len,
2705 gen_l3_cksum, gen_l4_cksum);
2709 pp2_ppio_send_sg(q->priv->ppio, hif, q->queue_id, descs,
2710 &total_descs, &pkts);
2711 /* number of packets that were not sent */
2712 if (unlikely(num > total_descs)) {
2713 for (i = total_descs; i < num; i++) {
2714 sq->head = (MRVL_PP2_TX_SHADOWQ_SIZE + sq->head - 1) &
2715 MRVL_PP2_TX_SHADOWQ_MASK;
2717 addr = sq->ent[sq->head].buff.cookie;
2720 rte_pktmbuf_pkt_len((struct rte_mbuf *)
2721 (cookie_addr_high | addr));
2723 sq->size -= num - total_descs;
2727 q->bytes_sent += bytes_sent;
2733 * Initialize packet processor.
2736 * 0 on success, negative error value otherwise.
2741 struct pp2_init_params init_params;
2743 memset(&init_params, 0, sizeof(init_params));
2744 init_params.hif_reserved_map = MRVL_MUSDK_HIFS_RESERVED;
2745 init_params.bm_pool_reserved_map = MRVL_MUSDK_BPOOLS_RESERVED;
2746 init_params.rss_tbl_reserved_map = MRVL_MUSDK_RSS_RESERVED;
2748 return pp2_init(&init_params);
2752 * Deinitialize packet processor.
2755 * 0 on success, negative error value otherwise.
2758 mrvl_deinit_pp2(void)
2764 * Create private device structure.
2767 * Pointer to the port name passed in the initialization parameters.
2770 * Pointer to the newly allocated private device structure.
2772 static struct mrvl_priv *
2773 mrvl_priv_create(const char *dev_name)
2775 struct pp2_bpool_params bpool_params;
2776 char match[MRVL_MATCH_LEN];
2777 struct mrvl_priv *priv;
2780 priv = rte_zmalloc_socket(dev_name, sizeof(*priv), 0, rte_socket_id());
2784 ret = pp2_netdev_get_ppio_info((char *)(uintptr_t)dev_name,
2785 &priv->pp_id, &priv->ppio_id);
2789 bpool_bit = mrvl_reserve_bit(&used_bpools[priv->pp_id],
2790 PP2_BPOOL_NUM_POOLS);
2793 priv->bpool_bit = bpool_bit;
2795 snprintf(match, sizeof(match), "pool-%d:%d", priv->pp_id,
2797 memset(&bpool_params, 0, sizeof(bpool_params));
2798 bpool_params.match = match;
2799 bpool_params.buff_len = MRVL_PKT_SIZE_MAX + MRVL_PKT_EFFEC_OFFS;
2800 ret = pp2_bpool_init(&bpool_params, &priv->bpool);
2802 goto out_clear_bpool_bit;
2804 priv->ppio_params.type = PP2_PPIO_T_NIC;
2805 rte_spinlock_init(&priv->lock);
2808 out_clear_bpool_bit:
2809 used_bpools[priv->pp_id] &= ~(1 << priv->bpool_bit);
2816 * Create device representing Ethernet port.
2819 * Pointer to the port's name.
2822 * 0 on success, negative error value otherwise.
2825 mrvl_eth_dev_create(struct rte_vdev_device *vdev, const char *name)
2827 int ret, fd = socket(AF_INET, SOCK_DGRAM, 0);
2828 struct rte_eth_dev *eth_dev;
2829 struct mrvl_priv *priv;
2832 eth_dev = rte_eth_dev_allocate(name);
2836 priv = mrvl_priv_create(name);
2841 eth_dev->data->dev_private = priv;
2843 eth_dev->data->mac_addrs =
2844 rte_zmalloc("mac_addrs",
2845 RTE_ETHER_ADDR_LEN * MRVL_MAC_ADDRS_MAX, 0);
2846 if (!eth_dev->data->mac_addrs) {
2847 MRVL_LOG(ERR, "Failed to allocate space for eth addrs");
2852 memset(&req, 0, sizeof(req));
2853 strcpy(req.ifr_name, name);
2854 ret = ioctl(fd, SIOCGIFHWADDR, &req);
2858 memcpy(eth_dev->data->mac_addrs[0].addr_bytes,
2859 req.ifr_addr.sa_data, RTE_ETHER_ADDR_LEN);
2861 eth_dev->device = &vdev->device;
2862 eth_dev->rx_pkt_burst = mrvl_rx_pkt_burst;
2863 mrvl_set_tx_function(eth_dev);
2864 eth_dev->dev_ops = &mrvl_ops;
2866 rte_eth_dev_probing_finish(eth_dev);
2869 rte_eth_dev_release_port(eth_dev);
2875 * Callback used by rte_kvargs_process() during argument parsing.
2878 * Pointer to the parsed key (unused).
2880 * Pointer to the parsed value.
2882 * Pointer to the extra arguments which contains address of the
2883 * table of pointers to parsed interface names.
2889 mrvl_get_ifnames(const char *key __rte_unused, const char *value,
2892 struct mrvl_ifnames *ifnames = extra_args;
2894 ifnames->names[ifnames->idx++] = value;
2900 * Deinitialize per-lcore MUSDK hardware interfaces (hifs).
2903 mrvl_deinit_hifs(void)
2907 for (i = mrvl_lcore_first; i <= mrvl_lcore_last; i++) {
2909 pp2_hif_deinit(hifs[i]);
2911 used_hifs = MRVL_MUSDK_HIFS_RESERVED;
2912 memset(hifs, 0, sizeof(hifs));
2916 * DPDK callback to register the virtual device.
2919 * Pointer to the virtual device.
2922 * 0 on success, negative error value otherwise.
2925 rte_pmd_mrvl_probe(struct rte_vdev_device *vdev)
2927 struct rte_kvargs *kvlist;
2928 struct mrvl_ifnames ifnames;
2930 uint32_t i, ifnum, cfgnum;
2933 params = rte_vdev_device_args(vdev);
2937 kvlist = rte_kvargs_parse(params, valid_args);
2941 ifnum = rte_kvargs_count(kvlist, MRVL_IFACE_NAME_ARG);
2942 if (ifnum > RTE_DIM(ifnames.names))
2943 goto out_free_kvlist;
2946 rte_kvargs_process(kvlist, MRVL_IFACE_NAME_ARG,
2947 mrvl_get_ifnames, &ifnames);
2951 * The below system initialization should be done only once,
2952 * on the first provided configuration file
2954 if (!mrvl_qos_cfg) {
2955 cfgnum = rte_kvargs_count(kvlist, MRVL_CFG_ARG);
2956 MRVL_LOG(INFO, "Parsing config file!");
2958 MRVL_LOG(ERR, "Cannot handle more than one config file!");
2959 goto out_free_kvlist;
2960 } else if (cfgnum == 1) {
2961 rte_kvargs_process(kvlist, MRVL_CFG_ARG,
2962 mrvl_get_qoscfg, &mrvl_qos_cfg);
2969 MRVL_LOG(INFO, "Perform MUSDK initializations");
2971 ret = rte_mvep_init(MVEP_MOD_T_PP2, kvlist);
2973 goto out_free_kvlist;
2975 ret = mrvl_init_pp2();
2977 MRVL_LOG(ERR, "Failed to init PP!");
2978 rte_mvep_deinit(MVEP_MOD_T_PP2);
2979 goto out_free_kvlist;
2982 memset(mrvl_port_bpool_size, 0, sizeof(mrvl_port_bpool_size));
2983 memset(mrvl_port_to_bpool_lookup, 0, sizeof(mrvl_port_to_bpool_lookup));
2985 mrvl_lcore_first = RTE_MAX_LCORE;
2986 mrvl_lcore_last = 0;
2989 for (i = 0; i < ifnum; i++) {
2990 MRVL_LOG(INFO, "Creating %s", ifnames.names[i]);
2991 ret = mrvl_eth_dev_create(vdev, ifnames.names[i]);
2997 rte_kvargs_free(kvlist);
3001 rte_pmd_mrvl_remove(vdev);
3004 rte_kvargs_free(kvlist);
3010 * DPDK callback to remove virtual device.
3013 * Pointer to the removed virtual device.
3016 * 0 on success, negative error value otherwise.
3019 rte_pmd_mrvl_remove(struct rte_vdev_device *vdev)
3023 RTE_ETH_FOREACH_DEV(port_id) {
3024 if (rte_eth_devices[port_id].device != &vdev->device)
3026 rte_eth_dev_close(port_id);
3032 static struct rte_vdev_driver pmd_mrvl_drv = {
3033 .probe = rte_pmd_mrvl_probe,
3034 .remove = rte_pmd_mrvl_remove,
3037 RTE_PMD_REGISTER_VDEV(net_mvpp2, pmd_mrvl_drv);
3038 RTE_PMD_REGISTER_ALIAS(net_mvpp2, eth_mvpp2);
3039 RTE_LOG_REGISTER(mrvl_logtype, pmd.net.mvpp2, NOTICE);