1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2014-2018 Chelsio Communications.
14 #include <netinet/in.h>
16 #include <rte_byteorder.h>
17 #include <rte_common.h>
18 #include <rte_cycles.h>
19 #include <rte_interrupts.h>
21 #include <rte_debug.h>
23 #include <rte_bus_pci.h>
24 #include <rte_atomic.h>
25 #include <rte_branch_prediction.h>
26 #include <rte_memory.h>
27 #include <rte_tailq.h>
29 #include <rte_alarm.h>
30 #include <rte_ether.h>
31 #include <rte_ethdev_driver.h>
32 #include <rte_ethdev_pci.h>
33 #include <rte_malloc.h>
34 #include <rte_random.h>
38 #include "cxgbe_pfvf.h"
39 #include "cxgbe_flow.h"
42 int cxgbe_mbox_logtype;
45 * Macros needed to support the PCI Device ID Table ...
47 #define CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN \
48 static const struct rte_pci_id cxgb4_pci_tbl[] = {
49 #define CH_PCI_DEVICE_ID_FUNCTION 0x4
51 #define PCI_VENDOR_ID_CHELSIO 0x1425
53 #define CH_PCI_ID_TABLE_ENTRY(devid) \
54 { RTE_PCI_DEVICE(PCI_VENDOR_ID_CHELSIO, (devid)) }
56 #define CH_PCI_DEVICE_ID_TABLE_DEFINE_END \
61 *... and the PCI ID Table itself ...
63 #include "base/t4_pci_id_tbl.h"
65 uint16_t cxgbe_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
68 struct sge_eth_txq *txq = (struct sge_eth_txq *)tx_queue;
69 uint16_t pkts_sent, pkts_remain;
70 uint16_t total_sent = 0;
74 t4_os_lock(&txq->txq_lock);
75 /* free up desc from already completed tx */
76 reclaim_completed_tx(&txq->q);
77 rte_prefetch0(rte_pktmbuf_mtod(tx_pkts[0], volatile void *));
78 while (total_sent < nb_pkts) {
79 pkts_remain = nb_pkts - total_sent;
81 for (pkts_sent = 0; pkts_sent < pkts_remain; pkts_sent++) {
82 idx = total_sent + pkts_sent;
83 if ((idx + 1) < nb_pkts)
84 rte_prefetch0(rte_pktmbuf_mtod(tx_pkts[idx + 1],
86 ret = t4_eth_xmit(txq, tx_pkts[idx], nb_pkts);
92 total_sent += pkts_sent;
93 /* reclaim as much as possible */
94 reclaim_completed_tx(&txq->q);
97 t4_os_unlock(&txq->txq_lock);
101 uint16_t cxgbe_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
104 struct sge_eth_rxq *rxq = (struct sge_eth_rxq *)rx_queue;
105 unsigned int work_done;
107 if (cxgbe_poll(&rxq->rspq, rx_pkts, (unsigned int)nb_pkts, &work_done))
108 dev_err(adapter, "error in cxgbe poll\n");
113 int cxgbe_dev_info_get(struct rte_eth_dev *eth_dev,
114 struct rte_eth_dev_info *device_info)
116 struct port_info *pi = eth_dev->data->dev_private;
117 struct adapter *adapter = pi->adapter;
118 int max_queues = adapter->sge.max_ethqsets / adapter->params.nports;
120 static const struct rte_eth_desc_lim cxgbe_desc_lim = {
121 .nb_max = CXGBE_MAX_RING_DESC_SIZE,
122 .nb_min = CXGBE_MIN_RING_DESC_SIZE,
126 device_info->min_rx_bufsize = CXGBE_MIN_RX_BUFSIZE;
127 device_info->max_rx_pktlen = CXGBE_MAX_RX_PKTLEN;
128 device_info->max_rx_queues = max_queues;
129 device_info->max_tx_queues = max_queues;
130 device_info->max_mac_addrs = 1;
131 /* XXX: For now we support one MAC/port */
132 device_info->max_vfs = adapter->params.arch.vfcount;
133 device_info->max_vmdq_pools = 0; /* XXX: For now no support for VMDQ */
135 device_info->rx_queue_offload_capa = 0UL;
136 device_info->rx_offload_capa = CXGBE_RX_OFFLOADS;
138 device_info->tx_queue_offload_capa = 0UL;
139 device_info->tx_offload_capa = CXGBE_TX_OFFLOADS;
141 device_info->reta_size = pi->rss_size;
142 device_info->hash_key_size = CXGBE_DEFAULT_RSS_KEY_LEN;
143 device_info->flow_type_rss_offloads = CXGBE_RSS_HF_ALL;
145 device_info->rx_desc_lim = cxgbe_desc_lim;
146 device_info->tx_desc_lim = cxgbe_desc_lim;
147 cxgbe_get_speed_caps(pi, &device_info->speed_capa);
152 int cxgbe_dev_promiscuous_enable(struct rte_eth_dev *eth_dev)
154 struct port_info *pi = eth_dev->data->dev_private;
155 struct adapter *adapter = pi->adapter;
157 return t4_set_rxmode(adapter, adapter->mbox, pi->viid, -1,
158 1, -1, 1, -1, false);
161 int cxgbe_dev_promiscuous_disable(struct rte_eth_dev *eth_dev)
163 struct port_info *pi = eth_dev->data->dev_private;
164 struct adapter *adapter = pi->adapter;
166 return t4_set_rxmode(adapter, adapter->mbox, pi->viid, -1,
167 0, -1, 1, -1, false);
170 int cxgbe_dev_allmulticast_enable(struct rte_eth_dev *eth_dev)
172 struct port_info *pi = eth_dev->data->dev_private;
173 struct adapter *adapter = pi->adapter;
175 /* TODO: address filters ?? */
177 return t4_set_rxmode(adapter, adapter->mbox, pi->viid, -1,
178 -1, 1, 1, -1, false);
181 int cxgbe_dev_allmulticast_disable(struct rte_eth_dev *eth_dev)
183 struct port_info *pi = eth_dev->data->dev_private;
184 struct adapter *adapter = pi->adapter;
186 /* TODO: address filters ?? */
188 return t4_set_rxmode(adapter, adapter->mbox, pi->viid, -1,
189 -1, 0, 1, -1, false);
192 int cxgbe_dev_link_update(struct rte_eth_dev *eth_dev,
193 int wait_to_complete)
195 struct port_info *pi = eth_dev->data->dev_private;
196 struct adapter *adapter = pi->adapter;
197 struct sge *s = &adapter->sge;
198 struct rte_eth_link new_link = { 0 };
199 unsigned int i, work_done, budget = 32;
200 u8 old_link = pi->link_cfg.link_ok;
202 for (i = 0; i < CXGBE_LINK_STATUS_POLL_CNT; i++) {
203 if (!s->fw_evtq.desc)
206 cxgbe_poll(&s->fw_evtq, NULL, budget, &work_done);
208 /* Exit if link status changed or always forced up */
209 if (pi->link_cfg.link_ok != old_link ||
210 cxgbe_force_linkup(adapter))
213 if (!wait_to_complete)
216 rte_delay_ms(CXGBE_LINK_STATUS_POLL_MS);
219 new_link.link_status = cxgbe_force_linkup(adapter) ?
220 ETH_LINK_UP : pi->link_cfg.link_ok;
221 new_link.link_autoneg = pi->link_cfg.autoneg;
222 new_link.link_duplex = ETH_LINK_FULL_DUPLEX;
223 new_link.link_speed = pi->link_cfg.speed;
225 return rte_eth_linkstatus_set(eth_dev, &new_link);
229 * Set device link up.
231 int cxgbe_dev_set_link_up(struct rte_eth_dev *dev)
233 struct port_info *pi = dev->data->dev_private;
234 struct adapter *adapter = pi->adapter;
235 unsigned int work_done, budget = 32;
236 struct sge *s = &adapter->sge;
239 if (!s->fw_evtq.desc)
242 /* Flush all link events */
243 cxgbe_poll(&s->fw_evtq, NULL, budget, &work_done);
245 /* If link already up, nothing to do */
246 if (pi->link_cfg.link_ok)
249 ret = cxgbe_set_link_status(pi, true);
253 cxgbe_dev_link_update(dev, 1);
258 * Set device link down.
260 int cxgbe_dev_set_link_down(struct rte_eth_dev *dev)
262 struct port_info *pi = dev->data->dev_private;
263 struct adapter *adapter = pi->adapter;
264 unsigned int work_done, budget = 32;
265 struct sge *s = &adapter->sge;
268 if (!s->fw_evtq.desc)
271 /* Flush all link events */
272 cxgbe_poll(&s->fw_evtq, NULL, budget, &work_done);
274 /* If link already down, nothing to do */
275 if (!pi->link_cfg.link_ok)
278 ret = cxgbe_set_link_status(pi, false);
282 cxgbe_dev_link_update(dev, 0);
286 int cxgbe_dev_mtu_set(struct rte_eth_dev *eth_dev, uint16_t mtu)
288 struct port_info *pi = eth_dev->data->dev_private;
289 struct adapter *adapter = pi->adapter;
290 struct rte_eth_dev_info dev_info;
292 uint16_t new_mtu = mtu + RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN;
294 err = cxgbe_dev_info_get(eth_dev, &dev_info);
298 /* Must accommodate at least RTE_ETHER_MIN_MTU */
299 if (new_mtu < RTE_ETHER_MIN_MTU || new_mtu > dev_info.max_rx_pktlen)
302 /* set to jumbo mode if needed */
303 if (new_mtu > RTE_ETHER_MAX_LEN)
304 eth_dev->data->dev_conf.rxmode.offloads |=
305 DEV_RX_OFFLOAD_JUMBO_FRAME;
307 eth_dev->data->dev_conf.rxmode.offloads &=
308 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
310 err = t4_set_rxmode(adapter, adapter->mbox, pi->viid, new_mtu, -1, -1,
313 eth_dev->data->dev_conf.rxmode.max_rx_pkt_len = new_mtu;
321 void cxgbe_dev_close(struct rte_eth_dev *eth_dev)
323 struct port_info *pi = eth_dev->data->dev_private;
324 struct adapter *adapter = pi->adapter;
328 if (!(adapter->flags & FULL_INIT_DONE))
334 * We clear queues only if both tx and rx path of the port
337 t4_sge_eth_clear_queues(pi);
341 * It returns 0 on success.
343 int cxgbe_dev_start(struct rte_eth_dev *eth_dev)
345 struct port_info *pi = eth_dev->data->dev_private;
346 struct rte_eth_rxmode *rx_conf = ð_dev->data->dev_conf.rxmode;
347 struct adapter *adapter = pi->adapter;
353 * If we don't have a connection to the firmware there's nothing we
356 if (!(adapter->flags & FW_OK)) {
361 if (!(adapter->flags & FULL_INIT_DONE)) {
362 err = cxgbe_up(adapter);
367 if (rx_conf->offloads & DEV_RX_OFFLOAD_SCATTER)
368 eth_dev->data->scattered_rx = 1;
370 eth_dev->data->scattered_rx = 0;
372 cxgbe_enable_rx_queues(pi);
374 err = cxgbe_setup_rss(pi);
378 for (i = 0; i < pi->n_tx_qsets; i++) {
379 err = cxgbe_dev_tx_queue_start(eth_dev, i);
384 for (i = 0; i < pi->n_rx_qsets; i++) {
385 err = cxgbe_dev_rx_queue_start(eth_dev, i);
390 err = cxgbe_link_start(pi);
399 * Stop device: disable rx and tx functions to allow for reconfiguring.
401 void cxgbe_dev_stop(struct rte_eth_dev *eth_dev)
403 struct port_info *pi = eth_dev->data->dev_private;
404 struct adapter *adapter = pi->adapter;
408 if (!(adapter->flags & FULL_INIT_DONE))
414 * We clear queues only if both tx and rx path of the port
417 t4_sge_eth_clear_queues(pi);
418 eth_dev->data->scattered_rx = 0;
421 int cxgbe_dev_configure(struct rte_eth_dev *eth_dev)
423 struct port_info *pi = eth_dev->data->dev_private;
424 struct adapter *adapter = pi->adapter;
429 if (!(adapter->flags & FW_QUEUE_BOUND)) {
430 err = cxgbe_setup_sge_fwevtq(adapter);
433 adapter->flags |= FW_QUEUE_BOUND;
434 if (is_pf4(adapter)) {
435 err = cxgbe_setup_sge_ctrl_txq(adapter);
441 err = cxgbe_cfg_queue_count(eth_dev);
448 int cxgbe_dev_tx_queue_start(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
451 struct sge_eth_txq *txq = (struct sge_eth_txq *)
452 (eth_dev->data->tx_queues[tx_queue_id]);
454 dev_debug(NULL, "%s: tx_queue_id = %d\n", __func__, tx_queue_id);
456 ret = t4_sge_eth_txq_start(txq);
458 eth_dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
463 int cxgbe_dev_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
466 struct sge_eth_txq *txq = (struct sge_eth_txq *)
467 (eth_dev->data->tx_queues[tx_queue_id]);
469 dev_debug(NULL, "%s: tx_queue_id = %d\n", __func__, tx_queue_id);
471 ret = t4_sge_eth_txq_stop(txq);
473 eth_dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
478 int cxgbe_dev_tx_queue_setup(struct rte_eth_dev *eth_dev,
479 uint16_t queue_idx, uint16_t nb_desc,
480 unsigned int socket_id,
481 const struct rte_eth_txconf *tx_conf __rte_unused)
483 struct port_info *pi = eth_dev->data->dev_private;
484 struct adapter *adapter = pi->adapter;
485 struct sge *s = &adapter->sge;
486 struct sge_eth_txq *txq = &s->ethtxq[pi->first_qset + queue_idx];
488 unsigned int temp_nb_desc;
490 dev_debug(adapter, "%s: eth_dev->data->nb_tx_queues = %d; queue_idx = %d; nb_desc = %d; socket_id = %d; pi->first_qset = %u\n",
491 __func__, eth_dev->data->nb_tx_queues, queue_idx, nb_desc,
492 socket_id, pi->first_qset);
494 /* Free up the existing queue */
495 if (eth_dev->data->tx_queues[queue_idx]) {
496 cxgbe_dev_tx_queue_release(eth_dev->data->tx_queues[queue_idx]);
497 eth_dev->data->tx_queues[queue_idx] = NULL;
500 eth_dev->data->tx_queues[queue_idx] = (void *)txq;
504 * nb_desc should be > 1023 and <= CXGBE_MAX_RING_DESC_SIZE
506 temp_nb_desc = nb_desc;
507 if (nb_desc < CXGBE_MIN_RING_DESC_SIZE) {
508 dev_warn(adapter, "%s: number of descriptors must be >= %d. Using default [%d]\n",
509 __func__, CXGBE_MIN_RING_DESC_SIZE,
510 CXGBE_DEFAULT_TX_DESC_SIZE);
511 temp_nb_desc = CXGBE_DEFAULT_TX_DESC_SIZE;
512 } else if (nb_desc > CXGBE_MAX_RING_DESC_SIZE) {
513 dev_err(adapter, "%s: number of descriptors must be between %d and %d inclusive. Default [%d]\n",
514 __func__, CXGBE_MIN_RING_DESC_SIZE,
515 CXGBE_MAX_RING_DESC_SIZE, CXGBE_DEFAULT_TX_DESC_SIZE);
519 txq->q.size = temp_nb_desc;
521 err = t4_sge_alloc_eth_txq(adapter, txq, eth_dev, queue_idx,
522 s->fw_evtq.cntxt_id, socket_id);
524 dev_debug(adapter, "%s: txq->q.cntxt_id= %u txq->q.abs_id= %u err = %d\n",
525 __func__, txq->q.cntxt_id, txq->q.abs_id, err);
529 void cxgbe_dev_tx_queue_release(void *q)
531 struct sge_eth_txq *txq = (struct sge_eth_txq *)q;
534 struct port_info *pi = (struct port_info *)
535 (txq->eth_dev->data->dev_private);
536 struct adapter *adap = pi->adapter;
538 dev_debug(adapter, "%s: pi->port_id = %d; tx_queue_id = %d\n",
539 __func__, pi->port_id, txq->q.cntxt_id);
541 t4_sge_eth_txq_release(adap, txq);
545 int cxgbe_dev_rx_queue_start(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
548 struct port_info *pi = eth_dev->data->dev_private;
549 struct adapter *adap = pi->adapter;
552 dev_debug(adapter, "%s: pi->port_id = %d; rx_queue_id = %d\n",
553 __func__, pi->port_id, rx_queue_id);
555 q = eth_dev->data->rx_queues[rx_queue_id];
557 ret = t4_sge_eth_rxq_start(adap, q);
559 eth_dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
564 int cxgbe_dev_rx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
567 struct port_info *pi = eth_dev->data->dev_private;
568 struct adapter *adap = pi->adapter;
571 dev_debug(adapter, "%s: pi->port_id = %d; rx_queue_id = %d\n",
572 __func__, pi->port_id, rx_queue_id);
574 q = eth_dev->data->rx_queues[rx_queue_id];
575 ret = t4_sge_eth_rxq_stop(adap, q);
577 eth_dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
582 int cxgbe_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
583 uint16_t queue_idx, uint16_t nb_desc,
584 unsigned int socket_id,
585 const struct rte_eth_rxconf *rx_conf __rte_unused,
586 struct rte_mempool *mp)
588 struct port_info *pi = eth_dev->data->dev_private;
589 struct adapter *adapter = pi->adapter;
590 struct sge *s = &adapter->sge;
591 struct sge_eth_rxq *rxq = &s->ethrxq[pi->first_qset + queue_idx];
594 unsigned int temp_nb_desc;
595 struct rte_eth_dev_info dev_info;
596 unsigned int pkt_len = eth_dev->data->dev_conf.rxmode.max_rx_pkt_len;
598 dev_debug(adapter, "%s: eth_dev->data->nb_rx_queues = %d; queue_idx = %d; nb_desc = %d; socket_id = %d; mp = %p\n",
599 __func__, eth_dev->data->nb_rx_queues, queue_idx, nb_desc,
602 err = cxgbe_dev_info_get(eth_dev, &dev_info);
604 dev_err(adap, "%s: error during getting ethernet device info",
609 /* Must accommodate at least RTE_ETHER_MIN_MTU */
610 if ((pkt_len < dev_info.min_rx_bufsize) ||
611 (pkt_len > dev_info.max_rx_pktlen)) {
612 dev_err(adap, "%s: max pkt len must be > %d and <= %d\n",
613 __func__, dev_info.min_rx_bufsize,
614 dev_info.max_rx_pktlen);
618 /* Free up the existing queue */
619 if (eth_dev->data->rx_queues[queue_idx]) {
620 cxgbe_dev_rx_queue_release(eth_dev->data->rx_queues[queue_idx]);
621 eth_dev->data->rx_queues[queue_idx] = NULL;
624 eth_dev->data->rx_queues[queue_idx] = (void *)rxq;
628 * nb_desc should be > 0 and <= CXGBE_MAX_RING_DESC_SIZE
630 temp_nb_desc = nb_desc;
631 if (nb_desc < CXGBE_MIN_RING_DESC_SIZE) {
632 dev_warn(adapter, "%s: number of descriptors must be >= %d. Using default [%d]\n",
633 __func__, CXGBE_MIN_RING_DESC_SIZE,
634 CXGBE_DEFAULT_RX_DESC_SIZE);
635 temp_nb_desc = CXGBE_DEFAULT_RX_DESC_SIZE;
636 } else if (nb_desc > CXGBE_MAX_RING_DESC_SIZE) {
637 dev_err(adapter, "%s: number of descriptors must be between %d and %d inclusive. Default [%d]\n",
638 __func__, CXGBE_MIN_RING_DESC_SIZE,
639 CXGBE_MAX_RING_DESC_SIZE, CXGBE_DEFAULT_RX_DESC_SIZE);
643 rxq->rspq.size = temp_nb_desc;
644 if ((&rxq->fl) != NULL)
645 rxq->fl.size = temp_nb_desc;
647 /* Set to jumbo mode if necessary */
648 if (pkt_len > RTE_ETHER_MAX_LEN)
649 eth_dev->data->dev_conf.rxmode.offloads |=
650 DEV_RX_OFFLOAD_JUMBO_FRAME;
652 eth_dev->data->dev_conf.rxmode.offloads &=
653 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
655 err = t4_sge_alloc_rxq(adapter, &rxq->rspq, false, eth_dev, msi_idx,
658 t4_get_tp_ch_map(adapter, pi->tx_chan) : 0, mp,
659 queue_idx, socket_id);
661 dev_debug(adapter, "%s: err = %d; port_id = %d; cntxt_id = %u; abs_id = %u\n",
662 __func__, err, pi->port_id, rxq->rspq.cntxt_id,
667 void cxgbe_dev_rx_queue_release(void *q)
669 struct sge_eth_rxq *rxq = (struct sge_eth_rxq *)q;
670 struct sge_rspq *rq = &rxq->rspq;
673 struct port_info *pi = (struct port_info *)
674 (rq->eth_dev->data->dev_private);
675 struct adapter *adap = pi->adapter;
677 dev_debug(adapter, "%s: pi->port_id = %d; rx_queue_id = %d\n",
678 __func__, pi->port_id, rxq->rspq.cntxt_id);
680 t4_sge_eth_rxq_release(adap, rxq);
685 * Get port statistics.
687 static int cxgbe_dev_stats_get(struct rte_eth_dev *eth_dev,
688 struct rte_eth_stats *eth_stats)
690 struct port_info *pi = eth_dev->data->dev_private;
691 struct adapter *adapter = pi->adapter;
692 struct sge *s = &adapter->sge;
693 struct port_stats ps;
696 cxgbe_stats_get(pi, &ps);
699 eth_stats->imissed = ps.rx_ovflow0 + ps.rx_ovflow1 +
700 ps.rx_ovflow2 + ps.rx_ovflow3 +
701 ps.rx_trunc0 + ps.rx_trunc1 +
702 ps.rx_trunc2 + ps.rx_trunc3;
703 eth_stats->ierrors = ps.rx_symbol_err + ps.rx_fcs_err +
704 ps.rx_jabber + ps.rx_too_long + ps.rx_runt +
708 eth_stats->opackets = ps.tx_frames;
709 eth_stats->obytes = ps.tx_octets;
710 eth_stats->oerrors = ps.tx_error_frames;
712 for (i = 0; i < pi->n_rx_qsets; i++) {
713 struct sge_eth_rxq *rxq =
714 &s->ethrxq[pi->first_qset + i];
716 eth_stats->q_ipackets[i] = rxq->stats.pkts;
717 eth_stats->q_ibytes[i] = rxq->stats.rx_bytes;
718 eth_stats->ipackets += eth_stats->q_ipackets[i];
719 eth_stats->ibytes += eth_stats->q_ibytes[i];
722 for (i = 0; i < pi->n_tx_qsets; i++) {
723 struct sge_eth_txq *txq =
724 &s->ethtxq[pi->first_qset + i];
726 eth_stats->q_opackets[i] = txq->stats.pkts;
727 eth_stats->q_obytes[i] = txq->stats.tx_bytes;
733 * Reset port statistics.
735 static int cxgbe_dev_stats_reset(struct rte_eth_dev *eth_dev)
737 struct port_info *pi = eth_dev->data->dev_private;
738 struct adapter *adapter = pi->adapter;
739 struct sge *s = &adapter->sge;
742 cxgbe_stats_reset(pi);
743 for (i = 0; i < pi->n_rx_qsets; i++) {
744 struct sge_eth_rxq *rxq =
745 &s->ethrxq[pi->first_qset + i];
748 rxq->stats.rx_bytes = 0;
750 for (i = 0; i < pi->n_tx_qsets; i++) {
751 struct sge_eth_txq *txq =
752 &s->ethtxq[pi->first_qset + i];
755 txq->stats.tx_bytes = 0;
756 txq->stats.mapping_err = 0;
762 static int cxgbe_flow_ctrl_get(struct rte_eth_dev *eth_dev,
763 struct rte_eth_fc_conf *fc_conf)
765 struct port_info *pi = eth_dev->data->dev_private;
766 struct link_config *lc = &pi->link_cfg;
767 int rx_pause, tx_pause;
769 fc_conf->autoneg = lc->fc & PAUSE_AUTONEG;
770 rx_pause = lc->fc & PAUSE_RX;
771 tx_pause = lc->fc & PAUSE_TX;
773 if (rx_pause && tx_pause)
774 fc_conf->mode = RTE_FC_FULL;
776 fc_conf->mode = RTE_FC_RX_PAUSE;
778 fc_conf->mode = RTE_FC_TX_PAUSE;
780 fc_conf->mode = RTE_FC_NONE;
784 static int cxgbe_flow_ctrl_set(struct rte_eth_dev *eth_dev,
785 struct rte_eth_fc_conf *fc_conf)
787 struct port_info *pi = eth_dev->data->dev_private;
788 struct adapter *adapter = pi->adapter;
789 struct link_config *lc = &pi->link_cfg;
791 if (lc->pcaps & FW_PORT_CAP32_ANEG) {
792 if (fc_conf->autoneg)
793 lc->requested_fc |= PAUSE_AUTONEG;
795 lc->requested_fc &= ~PAUSE_AUTONEG;
798 if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
799 (fc_conf->mode & RTE_FC_RX_PAUSE))
800 lc->requested_fc |= PAUSE_RX;
802 lc->requested_fc &= ~PAUSE_RX;
804 if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
805 (fc_conf->mode & RTE_FC_TX_PAUSE))
806 lc->requested_fc |= PAUSE_TX;
808 lc->requested_fc &= ~PAUSE_TX;
810 return t4_link_l1cfg(adapter, adapter->mbox, pi->tx_chan,
815 cxgbe_dev_supported_ptypes_get(struct rte_eth_dev *eth_dev)
817 static const uint32_t ptypes[] = {
823 if (eth_dev->rx_pkt_burst == cxgbe_recv_pkts)
828 /* Update RSS hash configuration
830 static int cxgbe_dev_rss_hash_update(struct rte_eth_dev *dev,
831 struct rte_eth_rss_conf *rss_conf)
833 struct port_info *pi = dev->data->dev_private;
834 struct adapter *adapter = pi->adapter;
837 err = cxgbe_write_rss_conf(pi, rss_conf->rss_hf);
841 pi->rss_hf = rss_conf->rss_hf;
843 if (rss_conf->rss_key) {
844 u32 key[10], mod_key[10];
847 memcpy(key, rss_conf->rss_key, CXGBE_DEFAULT_RSS_KEY_LEN);
849 for (i = 9, j = 0; i >= 0; i--, j++)
850 mod_key[j] = cpu_to_be32(key[i]);
852 t4_write_rss_key(adapter, mod_key, -1);
858 /* Get RSS hash configuration
860 static int cxgbe_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
861 struct rte_eth_rss_conf *rss_conf)
863 struct port_info *pi = dev->data->dev_private;
864 struct adapter *adapter = pi->adapter;
869 err = t4_read_config_vi_rss(adapter, adapter->mbox, pi->viid,
875 if (flags & F_FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN) {
876 rss_hf |= CXGBE_RSS_HF_TCP_IPV6_MASK;
877 if (flags & F_FW_RSS_VI_CONFIG_CMD_UDPEN)
878 rss_hf |= CXGBE_RSS_HF_UDP_IPV6_MASK;
881 if (flags & F_FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN)
882 rss_hf |= CXGBE_RSS_HF_IPV6_MASK;
884 if (flags & F_FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN) {
885 rss_hf |= ETH_RSS_NONFRAG_IPV4_TCP;
886 if (flags & F_FW_RSS_VI_CONFIG_CMD_UDPEN)
887 rss_hf |= ETH_RSS_NONFRAG_IPV4_UDP;
890 if (flags & F_FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN)
891 rss_hf |= CXGBE_RSS_HF_IPV4_MASK;
893 rss_conf->rss_hf = rss_hf;
895 if (rss_conf->rss_key) {
896 u32 key[10], mod_key[10];
899 t4_read_rss_key(adapter, key);
901 for (i = 9, j = 0; i >= 0; i--, j++)
902 mod_key[j] = be32_to_cpu(key[i]);
904 memcpy(rss_conf->rss_key, mod_key, CXGBE_DEFAULT_RSS_KEY_LEN);
910 static int cxgbe_get_eeprom_length(struct rte_eth_dev *dev)
917 * eeprom_ptov - translate a physical EEPROM address to virtual
918 * @phys_addr: the physical EEPROM address
919 * @fn: the PCI function number
920 * @sz: size of function-specific area
922 * Translate a physical EEPROM address to virtual. The first 1K is
923 * accessed through virtual addresses starting at 31K, the rest is
924 * accessed through virtual addresses starting at 0.
926 * The mapping is as follows:
927 * [0..1K) -> [31K..32K)
928 * [1K..1K+A) -> [31K-A..31K)
929 * [1K+A..ES) -> [0..ES-A-1K)
931 * where A = @fn * @sz, and ES = EEPROM size.
933 static int eeprom_ptov(unsigned int phys_addr, unsigned int fn, unsigned int sz)
936 if (phys_addr < 1024)
937 return phys_addr + (31 << 10);
938 if (phys_addr < 1024 + fn)
939 return fn + phys_addr - 1024;
940 if (phys_addr < EEPROMSIZE)
941 return phys_addr - 1024 - fn;
942 if (phys_addr < EEPROMVSIZE)
943 return phys_addr - 1024;
947 /* The next two routines implement eeprom read/write from physical addresses.
949 static int eeprom_rd_phys(struct adapter *adap, unsigned int phys_addr, u32 *v)
951 int vaddr = eeprom_ptov(phys_addr, adap->pf, EEPROMPFSIZE);
954 vaddr = t4_seeprom_read(adap, vaddr, v);
955 return vaddr < 0 ? vaddr : 0;
958 static int eeprom_wr_phys(struct adapter *adap, unsigned int phys_addr, u32 v)
960 int vaddr = eeprom_ptov(phys_addr, adap->pf, EEPROMPFSIZE);
963 vaddr = t4_seeprom_write(adap, vaddr, v);
964 return vaddr < 0 ? vaddr : 0;
967 #define EEPROM_MAGIC 0x38E2F10C
969 static int cxgbe_get_eeprom(struct rte_eth_dev *dev,
970 struct rte_dev_eeprom_info *e)
972 struct port_info *pi = dev->data->dev_private;
973 struct adapter *adapter = pi->adapter;
975 u8 *buf = rte_zmalloc(NULL, EEPROMSIZE, 0);
980 e->magic = EEPROM_MAGIC;
981 for (i = e->offset & ~3; !err && i < e->offset + e->length; i += 4)
982 err = eeprom_rd_phys(adapter, i, (u32 *)&buf[i]);
985 rte_memcpy(e->data, buf + e->offset, e->length);
990 static int cxgbe_set_eeprom(struct rte_eth_dev *dev,
991 struct rte_dev_eeprom_info *eeprom)
993 struct port_info *pi = dev->data->dev_private;
994 struct adapter *adapter = pi->adapter;
997 u32 aligned_offset, aligned_len, *p;
999 if (eeprom->magic != EEPROM_MAGIC)
1002 aligned_offset = eeprom->offset & ~3;
1003 aligned_len = (eeprom->length + (eeprom->offset & 3) + 3) & ~3;
1005 if (adapter->pf > 0) {
1006 u32 start = 1024 + adapter->pf * EEPROMPFSIZE;
1008 if (aligned_offset < start ||
1009 aligned_offset + aligned_len > start + EEPROMPFSIZE)
1013 if (aligned_offset != eeprom->offset || aligned_len != eeprom->length) {
1014 /* RMW possibly needed for first or last words.
1016 buf = rte_zmalloc(NULL, aligned_len, 0);
1019 err = eeprom_rd_phys(adapter, aligned_offset, (u32 *)buf);
1020 if (!err && aligned_len > 4)
1021 err = eeprom_rd_phys(adapter,
1022 aligned_offset + aligned_len - 4,
1023 (u32 *)&buf[aligned_len - 4]);
1026 rte_memcpy(buf + (eeprom->offset & 3), eeprom->data,
1032 err = t4_seeprom_wp(adapter, false);
1036 for (p = (u32 *)buf; !err && aligned_len; aligned_len -= 4, p++) {
1037 err = eeprom_wr_phys(adapter, aligned_offset, *p);
1038 aligned_offset += 4;
1042 err = t4_seeprom_wp(adapter, true);
1044 if (buf != eeprom->data)
1049 static int cxgbe_get_regs_len(struct rte_eth_dev *eth_dev)
1051 struct port_info *pi = eth_dev->data->dev_private;
1052 struct adapter *adapter = pi->adapter;
1054 return t4_get_regs_len(adapter) / sizeof(uint32_t);
1057 static int cxgbe_get_regs(struct rte_eth_dev *eth_dev,
1058 struct rte_dev_reg_info *regs)
1060 struct port_info *pi = eth_dev->data->dev_private;
1061 struct adapter *adapter = pi->adapter;
1063 regs->version = CHELSIO_CHIP_VERSION(adapter->params.chip) |
1064 (CHELSIO_CHIP_RELEASE(adapter->params.chip) << 10) |
1067 if (regs->data == NULL) {
1068 regs->length = cxgbe_get_regs_len(eth_dev);
1069 regs->width = sizeof(uint32_t);
1074 t4_get_regs(adapter, regs->data, (regs->length * sizeof(uint32_t)));
1079 int cxgbe_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *addr)
1081 struct port_info *pi = dev->data->dev_private;
1084 ret = cxgbe_mpstcam_modify(pi, (int)pi->xact_addr_filt, (u8 *)addr);
1086 dev_err(adapter, "failed to set mac addr; err = %d\n",
1090 pi->xact_addr_filt = ret;
1094 static const struct eth_dev_ops cxgbe_eth_dev_ops = {
1095 .dev_start = cxgbe_dev_start,
1096 .dev_stop = cxgbe_dev_stop,
1097 .dev_close = cxgbe_dev_close,
1098 .promiscuous_enable = cxgbe_dev_promiscuous_enable,
1099 .promiscuous_disable = cxgbe_dev_promiscuous_disable,
1100 .allmulticast_enable = cxgbe_dev_allmulticast_enable,
1101 .allmulticast_disable = cxgbe_dev_allmulticast_disable,
1102 .dev_configure = cxgbe_dev_configure,
1103 .dev_infos_get = cxgbe_dev_info_get,
1104 .dev_supported_ptypes_get = cxgbe_dev_supported_ptypes_get,
1105 .link_update = cxgbe_dev_link_update,
1106 .dev_set_link_up = cxgbe_dev_set_link_up,
1107 .dev_set_link_down = cxgbe_dev_set_link_down,
1108 .mtu_set = cxgbe_dev_mtu_set,
1109 .tx_queue_setup = cxgbe_dev_tx_queue_setup,
1110 .tx_queue_start = cxgbe_dev_tx_queue_start,
1111 .tx_queue_stop = cxgbe_dev_tx_queue_stop,
1112 .tx_queue_release = cxgbe_dev_tx_queue_release,
1113 .rx_queue_setup = cxgbe_dev_rx_queue_setup,
1114 .rx_queue_start = cxgbe_dev_rx_queue_start,
1115 .rx_queue_stop = cxgbe_dev_rx_queue_stop,
1116 .rx_queue_release = cxgbe_dev_rx_queue_release,
1117 .filter_ctrl = cxgbe_dev_filter_ctrl,
1118 .stats_get = cxgbe_dev_stats_get,
1119 .stats_reset = cxgbe_dev_stats_reset,
1120 .flow_ctrl_get = cxgbe_flow_ctrl_get,
1121 .flow_ctrl_set = cxgbe_flow_ctrl_set,
1122 .get_eeprom_length = cxgbe_get_eeprom_length,
1123 .get_eeprom = cxgbe_get_eeprom,
1124 .set_eeprom = cxgbe_set_eeprom,
1125 .get_reg = cxgbe_get_regs,
1126 .rss_hash_update = cxgbe_dev_rss_hash_update,
1127 .rss_hash_conf_get = cxgbe_dev_rss_hash_conf_get,
1128 .mac_addr_set = cxgbe_mac_addr_set,
1133 * It returns 0 on success.
1135 static int eth_cxgbe_dev_init(struct rte_eth_dev *eth_dev)
1137 struct rte_pci_device *pci_dev;
1138 struct port_info *pi = eth_dev->data->dev_private;
1139 struct adapter *adapter = NULL;
1140 char name[RTE_ETH_NAME_MAX_LEN];
1145 eth_dev->dev_ops = &cxgbe_eth_dev_ops;
1146 eth_dev->rx_pkt_burst = &cxgbe_recv_pkts;
1147 eth_dev->tx_pkt_burst = &cxgbe_xmit_pkts;
1148 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1150 /* for secondary processes, we attach to ethdevs allocated by primary
1151 * and do minimal initialization.
1153 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1156 for (i = 1; i < MAX_NPORTS; i++) {
1157 struct rte_eth_dev *rest_eth_dev;
1158 char namei[RTE_ETH_NAME_MAX_LEN];
1160 snprintf(namei, sizeof(namei), "%s_%d",
1161 pci_dev->device.name, i);
1162 rest_eth_dev = rte_eth_dev_attach_secondary(namei);
1164 rest_eth_dev->device = &pci_dev->device;
1165 rest_eth_dev->dev_ops =
1167 rest_eth_dev->rx_pkt_burst =
1168 eth_dev->rx_pkt_burst;
1169 rest_eth_dev->tx_pkt_burst =
1170 eth_dev->tx_pkt_burst;
1171 rte_eth_dev_probing_finish(rest_eth_dev);
1177 snprintf(name, sizeof(name), "cxgbeadapter%d", eth_dev->data->port_id);
1178 adapter = rte_zmalloc(name, sizeof(*adapter), 0);
1182 adapter->use_unpacked_mode = 1;
1183 adapter->regs = (void *)pci_dev->mem_resource[0].addr;
1184 if (!adapter->regs) {
1185 dev_err(adapter, "%s: cannot map device registers\n", __func__);
1187 goto out_free_adapter;
1189 adapter->pdev = pci_dev;
1190 adapter->eth_dev = eth_dev;
1191 pi->adapter = adapter;
1193 cxgbe_process_devargs(adapter);
1195 err = cxgbe_probe(adapter);
1197 dev_err(adapter, "%s: cxgbe probe failed with err %d\n",
1199 goto out_free_adapter;
1209 static int eth_cxgbe_dev_uninit(struct rte_eth_dev *eth_dev)
1211 struct port_info *pi = eth_dev->data->dev_private;
1212 struct adapter *adap = pi->adapter;
1214 /* Free up other ports and all resources */
1219 static int eth_cxgbe_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1220 struct rte_pci_device *pci_dev)
1222 return rte_eth_dev_pci_generic_probe(pci_dev,
1223 sizeof(struct port_info), eth_cxgbe_dev_init);
1226 static int eth_cxgbe_pci_remove(struct rte_pci_device *pci_dev)
1228 return rte_eth_dev_pci_generic_remove(pci_dev, eth_cxgbe_dev_uninit);
1231 static struct rte_pci_driver rte_cxgbe_pmd = {
1232 .id_table = cxgb4_pci_tbl,
1233 .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1234 .probe = eth_cxgbe_pci_probe,
1235 .remove = eth_cxgbe_pci_remove,
1238 RTE_PMD_REGISTER_PCI(net_cxgbe, rte_cxgbe_pmd);
1239 RTE_PMD_REGISTER_PCI_TABLE(net_cxgbe, cxgb4_pci_tbl);
1240 RTE_PMD_REGISTER_KMOD_DEP(net_cxgbe, "* igb_uio | uio_pci_generic | vfio-pci");
1241 RTE_PMD_REGISTER_PARAM_STRING(net_cxgbe,
1242 CXGBE_DEVARG_CMN_KEEP_OVLAN "=<0|1> "
1243 CXGBE_DEVARG_CMN_TX_MODE_LATENCY "=<0|1> ");
1245 RTE_INIT(cxgbe_init_log)
1247 cxgbe_logtype = rte_log_register("pmd.net.cxgbe");
1248 if (cxgbe_logtype >= 0)
1249 rte_log_set_level(cxgbe_logtype, RTE_LOG_NOTICE);
1250 cxgbe_mbox_logtype = rte_log_register("pmd.net.cxgbe.mbox");
1251 if (cxgbe_mbox_logtype >= 0)
1252 rte_log_set_level(cxgbe_mbox_logtype, RTE_LOG_NOTICE);