4 * Copyright(c) 2014-2017 Chelsio Communications.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Chelsio Communications nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include <sys/queue.h>
42 #include <netinet/in.h>
44 #include <rte_byteorder.h>
45 #include <rte_common.h>
46 #include <rte_cycles.h>
47 #include <rte_interrupts.h>
49 #include <rte_debug.h>
51 #include <rte_atomic.h>
52 #include <rte_branch_prediction.h>
53 #include <rte_memory.h>
54 #include <rte_memzone.h>
55 #include <rte_tailq.h>
57 #include <rte_alarm.h>
58 #include <rte_ether.h>
59 #include <rte_ethdev.h>
60 #include <rte_ethdev_pci.h>
61 #include <rte_atomic.h>
62 #include <rte_malloc.h>
63 #include <rte_random.h>
72 * Response queue handler for the FW event queue.
74 static int fwevtq_handler(struct sge_rspq *q, const __be64 *rsp,
75 __rte_unused const struct pkt_gl *gl)
77 u8 opcode = ((const struct rss_header *)rsp)->opcode;
79 rsp++; /* skip RSS header */
82 * FW can send EGR_UPDATEs encapsulated in a CPL_FW4_MSG.
84 if (unlikely(opcode == CPL_FW4_MSG &&
85 ((const struct cpl_fw4_msg *)rsp)->type ==
88 opcode = ((const struct rss_header *)rsp)->opcode;
90 if (opcode != CPL_SGE_EGR_UPDATE) {
91 dev_err(q->adapter, "unexpected FW4/CPL %#x on FW event queue\n",
97 if (likely(opcode == CPL_SGE_EGR_UPDATE)) {
99 } else if (opcode == CPL_FW6_MSG || opcode == CPL_FW4_MSG) {
100 const struct cpl_fw6_msg *msg = (const void *)rsp;
102 t4_handle_fw_rpl(q->adapter, msg->data);
104 dev_err(adapter, "unexpected CPL %#x on FW event queue\n",
111 int setup_sge_fwevtq(struct adapter *adapter)
113 struct sge *s = &adapter->sge;
117 err = t4_sge_alloc_rxq(adapter, &s->fw_evtq, true, adapter->eth_dev,
118 msi_idx, NULL, fwevtq_handler, -1, NULL, 0,
123 static int closest_timer(const struct sge *s, int time)
125 unsigned int i, match = 0;
126 int delta, min_delta = INT_MAX;
128 for (i = 0; i < ARRAY_SIZE(s->timer_val); i++) {
129 delta = time - s->timer_val[i];
132 if (delta < min_delta) {
140 static int closest_thres(const struct sge *s, int thres)
142 unsigned int i, match = 0;
143 int delta, min_delta = INT_MAX;
145 for (i = 0; i < ARRAY_SIZE(s->counter_val); i++) {
146 delta = thres - s->counter_val[i];
149 if (delta < min_delta) {
158 * cxgb4_set_rspq_intr_params - set a queue's interrupt holdoff parameters
160 * @us: the hold-off time in us, or 0 to disable timer
161 * @cnt: the hold-off packet count, or 0 to disable counter
163 * Sets an Rx queue's interrupt hold-off time and packet count. At least
164 * one of the two needs to be enabled for the queue to generate interrupts.
166 int cxgb4_set_rspq_intr_params(struct sge_rspq *q, unsigned int us,
169 struct adapter *adap = q->adapter;
170 unsigned int timer_val;
176 new_idx = closest_thres(&adap->sge, cnt);
177 if (q->desc && q->pktcnt_idx != new_idx) {
178 /* the queue has already been created, update it */
179 v = V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_DMAQ) |
181 FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH) |
182 V_FW_PARAMS_PARAM_YZ(q->cntxt_id);
183 err = t4_set_params(adap, adap->mbox, adap->pf, 0, 1,
188 q->pktcnt_idx = new_idx;
191 timer_val = (us == 0) ? X_TIMERREG_RESTART_COUNTER :
192 closest_timer(&adap->sge, us);
195 q->intr_params = V_QINTR_TIMER_IDX(X_TIMERREG_UPDATE_CIDX);
197 q->intr_params = V_QINTR_TIMER_IDX(timer_val) |
198 V_QINTR_CNT_EN(cnt > 0);
202 static inline bool is_x_1g_port(const struct link_config *lc)
204 return (lc->supported & FW_PORT_CAP_SPEED_1G) != 0;
207 static inline bool is_x_10g_port(const struct link_config *lc)
209 unsigned int speeds, high_speeds;
211 speeds = V_FW_PORT_CAP_SPEED(G_FW_PORT_CAP_SPEED(lc->supported));
212 high_speeds = speeds & ~(FW_PORT_CAP_SPEED_100M | FW_PORT_CAP_SPEED_1G);
214 return high_speeds != 0;
217 inline void init_rspq(struct adapter *adap, struct sge_rspq *q,
218 unsigned int us, unsigned int cnt,
219 unsigned int size, unsigned int iqe_size)
222 cxgb4_set_rspq_intr_params(q, us, cnt);
223 q->iqe_len = iqe_size;
227 int cfg_queue_count(struct rte_eth_dev *eth_dev)
229 struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
230 struct adapter *adap = pi->adapter;
231 struct sge *s = &adap->sge;
232 unsigned int max_queues = s->max_ethqsets / adap->params.nports;
234 if ((eth_dev->data->nb_rx_queues < 1) ||
235 (eth_dev->data->nb_tx_queues < 1))
238 if ((eth_dev->data->nb_rx_queues > max_queues) ||
239 (eth_dev->data->nb_tx_queues > max_queues))
242 if (eth_dev->data->nb_rx_queues > pi->rss_size)
245 /* We must configure RSS, since config has changed*/
246 pi->flags &= ~PORT_RSS_DONE;
248 pi->n_rx_qsets = eth_dev->data->nb_rx_queues;
249 pi->n_tx_qsets = eth_dev->data->nb_tx_queues;
254 void cfg_queues(struct rte_eth_dev *eth_dev)
256 struct rte_config *config = rte_eal_get_configuration();
257 struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
258 struct adapter *adap = pi->adapter;
259 struct sge *s = &adap->sge;
260 unsigned int i, nb_ports = 0, qidx = 0;
261 unsigned int q_per_port = 0;
263 if (!(adap->flags & CFG_QUEUES)) {
264 for_each_port(adap, i) {
265 struct port_info *tpi = adap2pinfo(adap, i);
267 nb_ports += (is_x_10g_port(&tpi->link_cfg)) ||
268 is_x_1g_port(&tpi->link_cfg) ? 1 : 0;
272 * We default up to # of cores queues per 1G/10G port.
275 q_per_port = (MAX_ETH_QSETS -
276 (adap->params.nports - nb_ports)) /
279 if (q_per_port > config->lcore_count)
280 q_per_port = config->lcore_count;
282 for_each_port(adap, i) {
283 struct port_info *pi = adap2pinfo(adap, i);
285 pi->first_qset = qidx;
287 /* Initially n_rx_qsets == n_tx_qsets */
288 pi->n_rx_qsets = (is_x_10g_port(&pi->link_cfg) ||
289 is_x_1g_port(&pi->link_cfg)) ?
291 pi->n_tx_qsets = pi->n_rx_qsets;
293 if (pi->n_rx_qsets > pi->rss_size)
294 pi->n_rx_qsets = pi->rss_size;
296 qidx += pi->n_rx_qsets;
299 s->max_ethqsets = qidx;
301 for (i = 0; i < ARRAY_SIZE(s->ethrxq); i++) {
302 struct sge_eth_rxq *r = &s->ethrxq[i];
304 init_rspq(adap, &r->rspq, 5, 32, 1024, 64);
306 r->fl.size = (r->usembufs ? 1024 : 72);
309 for (i = 0; i < ARRAY_SIZE(s->ethtxq); i++)
310 s->ethtxq[i].q.size = 1024;
312 init_rspq(adap, &adap->sge.fw_evtq, 0, 0, 1024, 64);
313 adap->flags |= CFG_QUEUES;
317 void cxgbe_stats_get(struct port_info *pi, struct port_stats *stats)
319 t4_get_port_stats_offset(pi->adapter, pi->tx_chan, stats,
323 void cxgbe_stats_reset(struct port_info *pi)
325 t4_clr_port_stats(pi->adapter, pi->tx_chan);
328 static void setup_memwin(struct adapter *adap)
332 /* For T5, only relative offset inside the PCIe BAR is passed */
333 mem_win0_base = MEMWIN0_BASE;
336 * Set up memory window for accessing adapter memory ranges. (Read
337 * back MA register to ensure that changes propagate before we attempt
338 * to use the new values.)
341 PCIE_MEM_ACCESS_REG(A_PCIE_MEM_ACCESS_BASE_WIN,
343 mem_win0_base | V_BIR(0) |
344 V_WINDOW(ilog2(MEMWIN0_APERTURE) - X_WINDOW_SHIFT));
346 PCIE_MEM_ACCESS_REG(A_PCIE_MEM_ACCESS_BASE_WIN,
350 static int init_rss(struct adapter *adap)
355 err = t4_init_rss_mode(adap, adap->mbox);
359 for_each_port(adap, i) {
360 struct port_info *pi = adap2pinfo(adap, i);
362 pi->rss = rte_zmalloc(NULL, pi->rss_size * sizeof(u16), 0);
370 * Dump basic information about the adapter.
372 static void print_adapter_info(struct adapter *adap)
375 * Hardware/Firmware/etc. Version/Revision IDs.
377 t4_dump_version_info(adap);
380 static void print_port_info(struct adapter *adap)
384 struct rte_pci_addr *loc = &adap->pdev->addr;
386 for_each_port(adap, i) {
387 const struct port_info *pi = &adap->port[i];
390 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_100M)
391 bufp += sprintf(bufp, "100M/");
392 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_1G)
393 bufp += sprintf(bufp, "1G/");
394 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_10G)
395 bufp += sprintf(bufp, "10G/");
396 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_25G)
397 bufp += sprintf(bufp, "25G/");
398 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_40G)
399 bufp += sprintf(bufp, "40G/");
400 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_100G)
401 bufp += sprintf(bufp, "100G/");
404 sprintf(bufp, "BASE-%s",
405 t4_get_port_type_description(
406 (enum fw_port_type)pi->port_type));
409 " " PCI_PRI_FMT " Chelsio rev %d %s %s\n",
410 loc->domain, loc->bus, loc->devid, loc->function,
411 CHELSIO_CHIP_RELEASE(adap->params.chip), buf,
412 (adap->flags & USING_MSIX) ? " MSI-X" :
413 (adap->flags & USING_MSI) ? " MSI" : "");
417 static void configure_pcie_ext_tag(struct adapter *adapter)
420 int pos = t4_os_find_pci_capability(adapter, PCI_CAP_ID_EXP);
426 t4_os_pci_read_cfg2(adapter, pos + PCI_EXP_DEVCTL, &v);
427 v |= PCI_EXP_DEVCTL_EXT_TAG;
428 t4_os_pci_write_cfg2(adapter, pos + PCI_EXP_DEVCTL, v);
429 if (is_t6(adapter->params.chip)) {
430 t4_set_reg_field(adapter, A_PCIE_CFG2,
431 V_T6_TOTMAXTAG(M_T6_TOTMAXTAG),
433 t4_set_reg_field(adapter, A_PCIE_CMD_CFG,
434 V_T6_MINTAG(M_T6_MINTAG),
437 t4_set_reg_field(adapter, A_PCIE_CFG2,
438 V_TOTMAXTAG(M_TOTMAXTAG),
440 t4_set_reg_field(adapter, A_PCIE_CMD_CFG,
448 * Tweak configuration based on system architecture, etc. Most of these have
449 * defaults assigned to them by Firmware Configuration Files (if we're using
450 * them) but need to be explicitly set if we're using hard-coded
451 * initialization. So these are essentially common tweaks/settings for
452 * Configuration Files and hard-coded initialization ...
454 static int adap_init0_tweaks(struct adapter *adapter)
459 * Fix up various Host-Dependent Parameters like Page Size, Cache
460 * Line Size, etc. The firmware default is for a 4KB Page Size and
461 * 64B Cache Line Size ...
463 t4_fixup_host_params_compat(adapter, CXGBE_PAGE_SIZE, L1_CACHE_BYTES,
467 * Keep the chip default offset to deliver Ingress packets into our
468 * DMA buffers to zero
471 t4_set_reg_field(adapter, A_SGE_CONTROL, V_PKTSHIFT(M_PKTSHIFT),
472 V_PKTSHIFT(rx_dma_offset));
474 t4_set_reg_field(adapter, A_SGE_FLM_CFG,
475 V_CREDITCNT(M_CREDITCNT) | M_CREDITCNTPACKING,
476 V_CREDITCNT(3) | V_CREDITCNTPACKING(1));
478 t4_set_reg_field(adapter, A_SGE_INGRESS_RX_THRESHOLD,
479 V_THRESHOLD_3(M_THRESHOLD_3), V_THRESHOLD_3(32U));
481 t4_set_reg_field(adapter, A_SGE_CONTROL2, V_IDMAARBROUNDROBIN(1U),
482 V_IDMAARBROUNDROBIN(1U));
485 * Don't include the "IP Pseudo Header" in CPL_RX_PKT checksums: Linux
486 * adds the pseudo header itself.
488 t4_tp_wr_bits_indirect(adapter, A_TP_INGRESS_CONFIG,
489 F_CSUM_HAS_PSEUDO_HDR, 0);
495 * Attempt to initialize the adapter via a Firmware Configuration File.
497 static int adap_init0_config(struct adapter *adapter, int reset)
499 struct fw_caps_config_cmd caps_cmd;
500 unsigned long mtype = 0, maddr = 0;
501 u32 finiver, finicsum, cfcsum;
503 int config_issued = 0;
505 char config_name[20];
508 * Reset device if necessary.
511 ret = t4_fw_reset(adapter, adapter->mbox,
512 F_PIORSTMODE | F_PIORST);
514 dev_warn(adapter, "Firmware reset failed, error %d\n",
520 cfg_addr = t4_flash_cfg_addr(adapter);
523 dev_warn(adapter, "Finding address for firmware config file in flash failed, error %d\n",
528 strcpy(config_name, "On Flash");
529 mtype = FW_MEMTYPE_CF_FLASH;
533 * Issue a Capability Configuration command to the firmware to get it
534 * to parse the Configuration File. We don't use t4_fw_config_file()
535 * because we want the ability to modify various features after we've
536 * processed the configuration file ...
538 memset(&caps_cmd, 0, sizeof(caps_cmd));
539 caps_cmd.op_to_write = cpu_to_be32(V_FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
540 F_FW_CMD_REQUEST | F_FW_CMD_READ);
541 caps_cmd.cfvalid_to_len16 =
542 cpu_to_be32(F_FW_CAPS_CONFIG_CMD_CFVALID |
543 V_FW_CAPS_CONFIG_CMD_MEMTYPE_CF(mtype) |
544 V_FW_CAPS_CONFIG_CMD_MEMADDR64K_CF(maddr >> 16) |
546 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
549 * If the CAPS_CONFIG failed with an ENOENT (for a Firmware
550 * Configuration File in FLASH), our last gasp effort is to use the
551 * Firmware Configuration File which is embedded in the firmware. A
552 * very few early versions of the firmware didn't have one embedded
553 * but we can ignore those.
555 if (ret == -ENOENT) {
556 dev_info(adapter, "%s: Going for embedded config in firmware..\n",
559 memset(&caps_cmd, 0, sizeof(caps_cmd));
560 caps_cmd.op_to_write =
561 cpu_to_be32(V_FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
562 F_FW_CMD_REQUEST | F_FW_CMD_READ);
563 caps_cmd.cfvalid_to_len16 = cpu_to_be32(FW_LEN16(caps_cmd));
564 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd,
565 sizeof(caps_cmd), &caps_cmd);
566 strcpy(config_name, "Firmware Default");
573 finiver = be32_to_cpu(caps_cmd.finiver);
574 finicsum = be32_to_cpu(caps_cmd.finicsum);
575 cfcsum = be32_to_cpu(caps_cmd.cfcsum);
576 if (finicsum != cfcsum)
577 dev_warn(adapter, "Configuration File checksum mismatch: [fini] csum=%#x, computed csum=%#x\n",
581 * If we're a pure NIC driver then disable all offloading facilities.
582 * This will allow the firmware to optimize aspects of the hardware
583 * configuration which will result in improved performance.
585 caps_cmd.niccaps &= cpu_to_be16(~(FW_CAPS_CONFIG_NIC_HASHFILTER |
586 FW_CAPS_CONFIG_NIC_ETHOFLD));
587 caps_cmd.toecaps = 0;
588 caps_cmd.iscsicaps = 0;
589 caps_cmd.rdmacaps = 0;
590 caps_cmd.fcoecaps = 0;
593 * And now tell the firmware to use the configuration we just loaded.
595 caps_cmd.op_to_write = cpu_to_be32(V_FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
596 F_FW_CMD_REQUEST | F_FW_CMD_WRITE);
597 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
598 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
601 dev_warn(adapter, "Unable to finalize Firmware Capabilities %d\n",
607 * Tweak configuration based on system architecture, etc.
609 ret = adap_init0_tweaks(adapter);
611 dev_warn(adapter, "Unable to do init0-tweaks %d\n", -ret);
616 * And finally tell the firmware to initialize itself using the
617 * parameters from the Configuration File.
619 ret = t4_fw_initialize(adapter, adapter->mbox);
621 dev_warn(adapter, "Initializing Firmware failed, error %d\n",
627 * Return successfully and note that we're operating with parameters
628 * not supplied by the driver, rather than from hard-wired
629 * initialization constants burried in the driver.
632 "Successfully configured using Firmware Configuration File \"%s\", version %#x, computed checksum %#x\n",
633 config_name, finiver, cfcsum);
638 * Something bad happened. Return the error ... (If the "error"
639 * is that there's no Configuration File on the adapter we don't
640 * want to issue a warning since this is fairly common.)
643 if (config_issued && ret != -ENOENT)
644 dev_warn(adapter, "\"%s\" configuration file error %d\n",
647 dev_debug(adapter, "%s: returning ret = %d ..\n", __func__, ret);
651 static int adap_init0(struct adapter *adap)
655 enum dev_state state;
656 u32 params[7], val[7];
658 int mbox = adap->mbox;
661 * Contact FW, advertising Master capability.
663 ret = t4_fw_hello(adap, adap->mbox, adap->mbox, MASTER_MAY, &state);
665 dev_err(adap, "%s: could not connect to FW, error %d\n",
670 CXGBE_DEBUG_MBOX(adap, "%s: adap->mbox = %d; ret = %d\n", __func__,
674 adap->flags |= MASTER_PF;
676 if (state == DEV_STATE_INIT) {
678 * Force halt and reset FW because a previous instance may have
679 * exited abnormally without properly shutting down
681 ret = t4_fw_halt(adap, adap->mbox, reset);
683 dev_err(adap, "Failed to halt. Exit.\n");
687 ret = t4_fw_restart(adap, adap->mbox, reset);
689 dev_err(adap, "Failed to restart. Exit.\n");
692 state = (enum dev_state)((unsigned)state & ~DEV_STATE_INIT);
695 t4_get_version_info(adap);
697 ret = t4_get_core_clock(adap, &adap->params.vpd);
699 dev_err(adap, "%s: could not get core clock, error %d\n",
705 * If the firmware is initialized already (and we're not forcing a
706 * master initialization), note that we're living with existing
707 * adapter parameters. Otherwise, it's time to try initializing the
710 if (state == DEV_STATE_INIT) {
711 dev_info(adap, "Coming up as %s: Adapter already initialized\n",
712 adap->flags & MASTER_PF ? "MASTER" : "SLAVE");
714 dev_info(adap, "Coming up as MASTER: Initializing adapter\n");
716 ret = adap_init0_config(adap, reset);
717 if (ret == -ENOENT) {
719 "No Configuration File present on adapter. Using hard-wired configuration parameters.\n");
724 dev_err(adap, "could not initialize adapter, error %d\n", -ret);
728 /* Find out what ports are available to us. */
729 v = V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_DEV) |
730 V_FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DEV_PORTVEC);
731 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1, &v, &port_vec);
733 dev_err(adap, "%s: failure in t4_query_params; error = %d\n",
738 adap->params.nports = hweight32(port_vec);
739 adap->params.portvec = port_vec;
741 dev_debug(adap, "%s: adap->params.nports = %u\n", __func__,
742 adap->params.nports);
745 * Give the SGE code a chance to pull in anything that it needs ...
746 * Note that this must be called after we retrieve our VPD parameters
747 * in order to know how to convert core ticks to seconds, etc.
749 ret = t4_sge_init(adap);
751 dev_err(adap, "t4_sge_init failed with error %d\n",
757 * Grab some of our basic fundamental operating parameters.
759 #define FW_PARAM_DEV(param) \
760 (V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_DEV) | \
761 V_FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DEV_##param))
763 #define FW_PARAM_PFVF(param) \
764 (V_FW_PARAMS_MNEM(FW_PARAMS_MNEM_PFVF) | \
765 V_FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_PFVF_##param) | \
766 V_FW_PARAMS_PARAM_Y(0) | \
767 V_FW_PARAMS_PARAM_Z(0))
769 /* If we're running on newer firmware, let it know that we're
770 * prepared to deal with encapsulated CPL messages. Older
771 * firmware won't understand this and we'll just get
772 * unencapsulated messages ...
774 params[0] = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
776 (void)t4_set_params(adap, adap->mbox, adap->pf, 0, 1, params, val);
779 * Find out whether we're allowed to use the T5+ ULPTX MEMWRITE DSGL
780 * capability. Earlier versions of the firmware didn't have the
781 * ULPTX_MEMWRITE_DSGL so we'll interpret a query failure as no
782 * permission to use ULPTX MEMWRITE DSGL.
784 if (is_t4(adap->params.chip)) {
785 adap->params.ulptx_memwrite_dsgl = false;
787 params[0] = FW_PARAM_DEV(ULPTX_MEMWRITE_DSGL);
788 ret = t4_query_params(adap, adap->mbox, adap->pf, 0,
790 adap->params.ulptx_memwrite_dsgl = (ret == 0 && val[0] != 0);
794 * The MTU/MSS Table is initialized by now, so load their values. If
795 * we're initializing the adapter, then we'll make any modifications
796 * we want to the MTU/MSS Table and also initialize the congestion
799 t4_read_mtu_tbl(adap, adap->params.mtus, NULL);
800 if (state != DEV_STATE_INIT) {
804 * The default MTU Table contains values 1492 and 1500.
805 * However, for TCP, it's better to have two values which are
806 * a multiple of 8 +/- 4 bytes apart near this popular MTU.
807 * This allows us to have a TCP Data Payload which is a
808 * multiple of 8 regardless of what combination of TCP Options
809 * are in use (always a multiple of 4 bytes) which is
810 * important for performance reasons. For instance, if no
811 * options are in use, then we have a 20-byte IP header and a
812 * 20-byte TCP header. In this case, a 1500-byte MSS would
813 * result in a TCP Data Payload of 1500 - 40 == 1460 bytes
814 * which is not a multiple of 8. So using an MSS of 1488 in
815 * this case results in a TCP Data Payload of 1448 bytes which
816 * is a multiple of 8. On the other hand, if 12-byte TCP Time
817 * Stamps have been negotiated, then an MTU of 1500 bytes
818 * results in a TCP Data Payload of 1448 bytes which, as
819 * above, is a multiple of 8 bytes ...
821 for (i = 0; i < NMTUS; i++)
822 if (adap->params.mtus[i] == 1492) {
823 adap->params.mtus[i] = 1488;
827 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
830 t4_init_sge_params(adap);
831 t4_init_tp_params(adap);
832 configure_pcie_ext_tag(adap);
834 adap->params.drv_memwin = MEMWIN_NIC;
835 adap->flags |= FW_OK;
836 dev_debug(adap, "%s: returning zero..\n", __func__);
840 * Something bad happened. If a command timed out or failed with EIO
841 * FW does not operate within its spec or something catastrophic
842 * happened to HW/FW, stop issuing commands.
845 if (ret != -ETIMEDOUT && ret != -EIO)
846 t4_fw_bye(adap, adap->mbox);
851 * t4_os_portmod_changed - handle port module changes
852 * @adap: the adapter associated with the module change
853 * @port_id: the port index whose module status has changed
855 * This is the OS-dependent handler for port module changes. It is
856 * invoked when a port module is removed or inserted for any OS-specific
859 void t4_os_portmod_changed(const struct adapter *adap, int port_id)
861 static const char * const mod_str[] = {
862 NULL, "LR", "SR", "ER", "passive DA", "active DA", "LRM"
865 const struct port_info *pi = &adap->port[port_id];
867 if (pi->mod_type == FW_PORT_MOD_TYPE_NONE)
868 dev_info(adap, "Port%d: port module unplugged\n", pi->port_id);
869 else if (pi->mod_type < ARRAY_SIZE(mod_str))
870 dev_info(adap, "Port%d: %s port module inserted\n", pi->port_id,
871 mod_str[pi->mod_type]);
872 else if (pi->mod_type == FW_PORT_MOD_TYPE_NOTSUPPORTED)
873 dev_info(adap, "Port%d: unsupported port module inserted\n",
875 else if (pi->mod_type == FW_PORT_MOD_TYPE_UNKNOWN)
876 dev_info(adap, "Port%d: unknown port module inserted\n",
878 else if (pi->mod_type == FW_PORT_MOD_TYPE_ERROR)
879 dev_info(adap, "Port%d: transceiver module error\n",
882 dev_info(adap, "Port%d: unknown module type %d inserted\n",
883 pi->port_id, pi->mod_type);
887 * link_start - enable a port
888 * @dev: the port to enable
890 * Performs the MAC and PHY actions needed to enable a port.
892 int link_start(struct port_info *pi)
894 struct adapter *adapter = pi->adapter;
898 mtu = pi->eth_dev->data->dev_conf.rxmode.max_rx_pkt_len -
899 (ETHER_HDR_LEN + ETHER_CRC_LEN);
902 * We do not set address filters and promiscuity here, the stack does
903 * that step explicitly.
905 ret = t4_set_rxmode(adapter, adapter->mbox, pi->viid, mtu, -1, -1,
908 ret = t4_change_mac(adapter, adapter->mbox, pi->viid,
910 (u8 *)&pi->eth_dev->data->mac_addrs[0],
913 pi->xact_addr_filt = ret;
918 ret = t4_link_l1cfg(adapter, adapter->mbox, pi->tx_chan,
922 * Enabling a Virtual Interface can result in an interrupt
923 * during the processing of the VI Enable command and, in some
924 * paths, result in an attempt to issue another command in the
925 * interrupt context. Thus, we disable interrupts during the
926 * course of the VI Enable command ...
928 ret = t4_enable_vi_params(adapter, adapter->mbox, pi->viid,
935 * cxgb4_write_rss - write the RSS table for a given port
937 * @queues: array of queue indices for RSS
939 * Sets up the portion of the HW RSS table for the port's VI to distribute
940 * packets to the Rx queues in @queues.
942 int cxgb4_write_rss(const struct port_info *pi, const u16 *queues)
946 struct adapter *adapter = pi->adapter;
947 const struct sge_eth_rxq *rxq;
949 /* Should never be called before setting up sge eth rx queues */
950 BUG_ON(!(adapter->flags & FULL_INIT_DONE));
952 rxq = &adapter->sge.ethrxq[pi->first_qset];
953 rss = rte_zmalloc(NULL, pi->rss_size * sizeof(u16), 0);
957 /* map the queue indices to queue ids */
958 for (i = 0; i < pi->rss_size; i++, queues++)
959 rss[i] = rxq[*queues].rspq.abs_id;
961 err = t4_config_rss_range(adapter, adapter->pf, pi->viid, 0,
962 pi->rss_size, rss, pi->rss_size);
964 * If Tunnel All Lookup isn't specified in the global RSS
965 * Configuration, then we need to specify a default Ingress
966 * Queue for any ingress packets which aren't hashed. We'll
967 * use our first ingress queue ...
970 err = t4_config_vi_rss(adapter, adapter->mbox, pi->viid,
971 F_FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN |
972 F_FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN |
973 F_FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN |
974 F_FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN |
975 F_FW_RSS_VI_CONFIG_CMD_UDPEN,
982 * setup_rss - configure RSS
983 * @adapter: the adapter
985 * Sets up RSS to distribute packets to multiple receive queues. We
986 * configure the RSS CPU lookup table to distribute to the number of HW
987 * receive queues, and the response queue lookup table to narrow that
988 * down to the response queues actually configured for each port.
989 * We always configure the RSS mapping for all ports since the mapping
990 * table has plenty of entries.
992 int setup_rss(struct port_info *pi)
995 struct adapter *adapter = pi->adapter;
997 dev_debug(adapter, "%s: pi->rss_size = %u; pi->n_rx_qsets = %u\n",
998 __func__, pi->rss_size, pi->n_rx_qsets);
1000 if (!(pi->flags & PORT_RSS_DONE)) {
1001 if (adapter->flags & FULL_INIT_DONE) {
1002 /* Fill default values with equal distribution */
1003 for (j = 0; j < pi->rss_size; j++)
1004 pi->rss[j] = j % pi->n_rx_qsets;
1006 err = cxgb4_write_rss(pi, pi->rss);
1009 pi->flags |= PORT_RSS_DONE;
1016 * Enable NAPI scheduling and interrupt generation for all Rx queues.
1018 static void enable_rx(struct adapter *adap, struct sge_rspq *q)
1020 /* 0-increment GTS to start the timer and enable interrupts */
1021 t4_write_reg(adap, MYPF_REG(A_SGE_PF_GTS),
1022 V_SEINTARM(q->intr_params) |
1023 V_INGRESSQID(q->cntxt_id));
1026 void cxgbe_enable_rx_queues(struct port_info *pi)
1028 struct adapter *adap = pi->adapter;
1029 struct sge *s = &adap->sge;
1032 for (i = 0; i < pi->n_rx_qsets; i++)
1033 enable_rx(adap, &s->ethrxq[pi->first_qset + i].rspq);
1037 * cxgb_up - enable the adapter
1038 * @adap: adapter being enabled
1040 * Called when the first port is enabled, this function performs the
1041 * actions necessary to make an adapter operational, such as completing
1042 * the initialization of HW modules, and enabling interrupts.
1044 int cxgbe_up(struct adapter *adap)
1046 enable_rx(adap, &adap->sge.fw_evtq);
1047 t4_sge_tx_monitor_start(adap);
1048 t4_intr_enable(adap);
1049 adap->flags |= FULL_INIT_DONE;
1051 /* TODO: deadman watchdog ?? */
1058 int cxgbe_down(struct port_info *pi)
1060 struct adapter *adapter = pi->adapter;
1063 err = t4_enable_vi(adapter, adapter->mbox, pi->viid, false, false);
1065 dev_err(adapter, "%s: disable_vi failed: %d\n", __func__, err);
1069 t4_reset_link_config(adapter, pi->port_id);
1074 * Release resources when all the ports have been stopped.
1076 void cxgbe_close(struct adapter *adapter)
1078 struct port_info *pi;
1081 if (adapter->flags & FULL_INIT_DONE) {
1082 t4_intr_disable(adapter);
1083 t4_sge_tx_monitor_stop(adapter);
1084 t4_free_sge_resources(adapter);
1085 for_each_port(adapter, i) {
1086 pi = adap2pinfo(adapter, i);
1088 t4_free_vi(adapter, adapter->mbox,
1089 adapter->pf, 0, pi->viid);
1090 rte_free(pi->eth_dev->data->mac_addrs);
1092 adapter->flags &= ~FULL_INIT_DONE;
1095 if (adapter->flags & FW_OK)
1096 t4_fw_bye(adapter, adapter->mbox);
1099 int cxgbe_probe(struct adapter *adapter)
1101 struct port_info *pi;
1107 whoami = t4_read_reg(adapter, A_PL_WHOAMI);
1108 chip = t4_get_chip_type(adapter,
1109 CHELSIO_PCI_ID_VER(adapter->pdev->id.device_id));
1113 func = CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5 ?
1114 G_SOURCEPF(whoami) : G_T6_SOURCEPF(whoami);
1116 adapter->mbox = func;
1119 t4_os_lock_init(&adapter->mbox_lock);
1120 TAILQ_INIT(&adapter->mbox_list);
1122 err = t4_prep_adapter(adapter);
1126 setup_memwin(adapter);
1127 err = adap_init0(adapter);
1129 dev_err(adapter, "%s: Adapter initialization failed, error %d\n",
1134 if (!is_t4(adapter->params.chip)) {
1136 * The userspace doorbell BAR is split evenly into doorbell
1137 * regions, each associated with an egress queue. If this
1138 * per-queue region is large enough (at least UDBS_SEG_SIZE)
1139 * then it can be used to submit a tx work request with an
1140 * implied doorbell. Enable write combining on the BAR if
1141 * there is room for such work requests.
1143 int s_qpp, qpp, num_seg;
1145 s_qpp = (S_QUEUESPERPAGEPF0 +
1146 (S_QUEUESPERPAGEPF1 - S_QUEUESPERPAGEPF0) *
1148 qpp = 1 << ((t4_read_reg(adapter,
1149 A_SGE_EGRESS_QUEUES_PER_PAGE_PF) >> s_qpp)
1150 & M_QUEUESPERPAGEPF0);
1151 num_seg = CXGBE_PAGE_SIZE / UDBS_SEG_SIZE;
1153 dev_warn(adapter, "Incorrect SGE EGRESS QUEUES_PER_PAGE configuration, continuing in debug mode\n");
1155 adapter->bar2 = (void *)adapter->pdev->mem_resource[2].addr;
1156 if (!adapter->bar2) {
1157 dev_err(adapter, "cannot map device bar2 region\n");
1161 t4_write_reg(adapter, A_SGE_STAT_CFG, V_STATSOURCE_T5(7) |
1165 for_each_port(adapter, i) {
1166 char name[RTE_ETH_NAME_MAX_LEN];
1167 struct rte_eth_dev_data *data = NULL;
1168 const unsigned int numa_node = rte_socket_id();
1170 pi = &adapter->port[i];
1171 pi->adapter = adapter;
1172 pi->xact_addr_filt = -1;
1175 snprintf(name, sizeof(name), "cxgbe%d",
1176 adapter->eth_dev->data->port_id + i);
1179 /* First port is already allocated by DPDK */
1180 pi->eth_dev = adapter->eth_dev;
1185 * now do all data allocation - for eth_dev structure,
1186 * and internal (private) data for the remaining ports
1189 /* reserve an ethdev entry */
1190 pi->eth_dev = rte_eth_dev_allocate(name);
1194 data = rte_zmalloc_socket(name, sizeof(*data), 0, numa_node);
1198 data->port_id = adapter->eth_dev->data->port_id + i;
1200 pi->eth_dev->data = data;
1203 pi->eth_dev->device = &adapter->pdev->device;
1204 pi->eth_dev->data->dev_private = pi;
1205 pi->eth_dev->dev_ops = adapter->eth_dev->dev_ops;
1206 pi->eth_dev->tx_pkt_burst = adapter->eth_dev->tx_pkt_burst;
1207 pi->eth_dev->rx_pkt_burst = adapter->eth_dev->rx_pkt_burst;
1209 rte_eth_copy_pci_info(pi->eth_dev, adapter->pdev);
1211 pi->eth_dev->data->mac_addrs = rte_zmalloc(name,
1213 if (!pi->eth_dev->data->mac_addrs) {
1214 dev_err(adapter, "%s: Mem allocation failed for storing mac addr, aborting\n",
1221 if (adapter->flags & FW_OK) {
1222 err = t4_port_init(adapter, adapter->mbox, adapter->pf, 0);
1224 dev_err(adapter, "%s: t4_port_init failed with err %d\n",
1230 cfg_queues(adapter->eth_dev);
1232 print_adapter_info(adapter);
1233 print_port_info(adapter);
1235 err = init_rss(adapter);
1242 for_each_port(adapter, i) {
1243 pi = adap2pinfo(adapter, i);
1245 t4_free_vi(adapter, adapter->mbox, adapter->pf,
1247 /* Skip first port since it'll be de-allocated by DPDK */
1250 if (pi->eth_dev->data)
1251 rte_free(pi->eth_dev->data);
1254 if (adapter->flags & FW_OK)
1255 t4_fw_bye(adapter, adapter->mbox);