staging/lustre: Disable InfiniBand support
[cascardo/linux.git] / drivers / net / ethernet / chelsio / cxgb4 / cxgb4_main.c
1 /*
2  * This file is part of the Chelsio T4 Ethernet driver for Linux.
3  *
4  * Copyright (c) 2003-2014 Chelsio Communications, Inc. All rights reserved.
5  *
6  * This software is available to you under a choice of one of two
7  * licenses.  You may choose to be licensed under the terms of the GNU
8  * General Public License (GPL) Version 2, available from the file
9  * COPYING in the main directory of this source tree, or the
10  * OpenIB.org BSD license below:
11  *
12  *     Redistribution and use in source and binary forms, with or
13  *     without modification, are permitted provided that the following
14  *     conditions are met:
15  *
16  *      - Redistributions of source code must retain the above
17  *        copyright notice, this list of conditions and the following
18  *        disclaimer.
19  *
20  *      - Redistributions in binary form must reproduce the above
21  *        copyright notice, this list of conditions and the following
22  *        disclaimer in the documentation and/or other materials
23  *        provided with the distribution.
24  *
25  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32  * SOFTWARE.
33  */
34
35 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
36
37 #include <linux/bitmap.h>
38 #include <linux/crc32.h>
39 #include <linux/ctype.h>
40 #include <linux/debugfs.h>
41 #include <linux/err.h>
42 #include <linux/etherdevice.h>
43 #include <linux/firmware.h>
44 #include <linux/if.h>
45 #include <linux/if_vlan.h>
46 #include <linux/init.h>
47 #include <linux/log2.h>
48 #include <linux/mdio.h>
49 #include <linux/module.h>
50 #include <linux/moduleparam.h>
51 #include <linux/mutex.h>
52 #include <linux/netdevice.h>
53 #include <linux/pci.h>
54 #include <linux/aer.h>
55 #include <linux/rtnetlink.h>
56 #include <linux/sched.h>
57 #include <linux/seq_file.h>
58 #include <linux/sockios.h>
59 #include <linux/vmalloc.h>
60 #include <linux/workqueue.h>
61 #include <net/neighbour.h>
62 #include <net/netevent.h>
63 #include <net/addrconf.h>
64 #include <net/bonding.h>
65 #include <net/addrconf.h>
66 #include <asm/uaccess.h>
67 #include <linux/crash_dump.h>
68
69 #include "cxgb4.h"
70 #include "t4_regs.h"
71 #include "t4_values.h"
72 #include "t4_msg.h"
73 #include "t4fw_api.h"
74 #include "t4fw_version.h"
75 #include "cxgb4_dcb.h"
76 #include "cxgb4_debugfs.h"
77 #include "clip_tbl.h"
78 #include "l2t.h"
79
80 char cxgb4_driver_name[] = KBUILD_MODNAME;
81
82 #ifdef DRV_VERSION
83 #undef DRV_VERSION
84 #endif
85 #define DRV_VERSION "2.0.0-ko"
86 const char cxgb4_driver_version[] = DRV_VERSION;
87 #define DRV_DESC "Chelsio T4/T5/T6 Network Driver"
88
89 /* Host shadow copy of ingress filter entry.  This is in host native format
90  * and doesn't match the ordering or bit order, etc. of the hardware of the
91  * firmware command.  The use of bit-field structure elements is purely to
92  * remind ourselves of the field size limitations and save memory in the case
93  * where the filter table is large.
94  */
95 struct filter_entry {
96         /* Administrative fields for filter.
97          */
98         u32 valid:1;            /* filter allocated and valid */
99         u32 locked:1;           /* filter is administratively locked */
100
101         u32 pending:1;          /* filter action is pending firmware reply */
102         u32 smtidx:8;           /* Source MAC Table index for smac */
103         struct l2t_entry *l2t;  /* Layer Two Table entry for dmac */
104
105         /* The filter itself.  Most of this is a straight copy of information
106          * provided by the extended ioctl().  Some fields are translated to
107          * internal forms -- for instance the Ingress Queue ID passed in from
108          * the ioctl() is translated into the Absolute Ingress Queue ID.
109          */
110         struct ch_filter_specification fs;
111 };
112
113 #define DFLT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK | \
114                          NETIF_MSG_TIMER | NETIF_MSG_IFDOWN | NETIF_MSG_IFUP |\
115                          NETIF_MSG_RX_ERR | NETIF_MSG_TX_ERR)
116
117 /* Macros needed to support the PCI Device ID Table ...
118  */
119 #define CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN \
120         static const struct pci_device_id cxgb4_pci_tbl[] = {
121 #define CH_PCI_DEVICE_ID_FUNCTION 0x4
122
123 /* Include PCI Device IDs for both PF4 and PF0-3 so our PCI probe() routine is
124  * called for both.
125  */
126 #define CH_PCI_DEVICE_ID_FUNCTION2 0x0
127
128 #define CH_PCI_ID_TABLE_ENTRY(devid) \
129                 {PCI_VDEVICE(CHELSIO, (devid)), 4}
130
131 #define CH_PCI_DEVICE_ID_TABLE_DEFINE_END \
132                 { 0, } \
133         }
134
135 #include "t4_pci_id_tbl.h"
136
137 #define FW4_FNAME "cxgb4/t4fw.bin"
138 #define FW5_FNAME "cxgb4/t5fw.bin"
139 #define FW6_FNAME "cxgb4/t6fw.bin"
140 #define FW4_CFNAME "cxgb4/t4-config.txt"
141 #define FW5_CFNAME "cxgb4/t5-config.txt"
142 #define FW6_CFNAME "cxgb4/t6-config.txt"
143 #define PHY_AQ1202_FIRMWARE "cxgb4/aq1202_fw.cld"
144 #define PHY_BCM84834_FIRMWARE "cxgb4/bcm8483.bin"
145 #define PHY_AQ1202_DEVICEID 0x4409
146 #define PHY_BCM84834_DEVICEID 0x4486
147
148 MODULE_DESCRIPTION(DRV_DESC);
149 MODULE_AUTHOR("Chelsio Communications");
150 MODULE_LICENSE("Dual BSD/GPL");
151 MODULE_VERSION(DRV_VERSION);
152 MODULE_DEVICE_TABLE(pci, cxgb4_pci_tbl);
153 MODULE_FIRMWARE(FW4_FNAME);
154 MODULE_FIRMWARE(FW5_FNAME);
155 MODULE_FIRMWARE(FW6_FNAME);
156
157 /*
158  * Normally we're willing to become the firmware's Master PF but will be happy
159  * if another PF has already become the Master and initialized the adapter.
160  * Setting "force_init" will cause this driver to forcibly establish itself as
161  * the Master PF and initialize the adapter.
162  */
163 static uint force_init;
164
165 module_param(force_init, uint, 0644);
166 MODULE_PARM_DESC(force_init, "Forcibly become Master PF and initialize adapter,"
167                  "deprecated parameter");
168
169 static int dflt_msg_enable = DFLT_MSG_ENABLE;
170
171 module_param(dflt_msg_enable, int, 0644);
172 MODULE_PARM_DESC(dflt_msg_enable, "Chelsio T4 default message enable bitmap, "
173                  "deprecated parameter");
174
175 /*
176  * The driver uses the best interrupt scheme available on a platform in the
177  * order MSI-X, MSI, legacy INTx interrupts.  This parameter determines which
178  * of these schemes the driver may consider as follows:
179  *
180  * msi = 2: choose from among all three options
181  * msi = 1: only consider MSI and INTx interrupts
182  * msi = 0: force INTx interrupts
183  */
184 static int msi = 2;
185
186 module_param(msi, int, 0644);
187 MODULE_PARM_DESC(msi, "whether to use INTx (0), MSI (1) or MSI-X (2)");
188
189 /*
190  * Normally we tell the chip to deliver Ingress Packets into our DMA buffers
191  * offset by 2 bytes in order to have the IP headers line up on 4-byte
192  * boundaries.  This is a requirement for many architectures which will throw
193  * a machine check fault if an attempt is made to access one of the 4-byte IP
194  * header fields on a non-4-byte boundary.  And it's a major performance issue
195  * even on some architectures which allow it like some implementations of the
196  * x86 ISA.  However, some architectures don't mind this and for some very
197  * edge-case performance sensitive applications (like forwarding large volumes
198  * of small packets), setting this DMA offset to 0 will decrease the number of
199  * PCI-E Bus transfers enough to measurably affect performance.
200  */
201 static int rx_dma_offset = 2;
202
203 #ifdef CONFIG_PCI_IOV
204 /* Configure the number of PCI-E Virtual Function which are to be instantiated
205  * on SR-IOV Capable Physical Functions.
206  */
207 static unsigned int num_vf[NUM_OF_PF_WITH_SRIOV];
208
209 module_param_array(num_vf, uint, NULL, 0644);
210 MODULE_PARM_DESC(num_vf, "number of VFs for each of PFs 0-3, deprecated parameter - please use the pci sysfs interface.");
211 #endif
212
213 /* TX Queue select used to determine what algorithm to use for selecting TX
214  * queue. Select between the kernel provided function (select_queue=0) or user
215  * cxgb_select_queue function (select_queue=1)
216  *
217  * Default: select_queue=0
218  */
219 static int select_queue;
220 module_param(select_queue, int, 0644);
221 MODULE_PARM_DESC(select_queue,
222                  "Select between kernel provided method of selecting or driver method of selecting TX queue. Default is kernel method.");
223
224 static struct dentry *cxgb4_debugfs_root;
225
226 LIST_HEAD(adapter_list);
227 DEFINE_MUTEX(uld_mutex);
228 /* Adapter list to be accessed from atomic context */
229 static LIST_HEAD(adap_rcu_list);
230 static DEFINE_SPINLOCK(adap_rcu_lock);
231 static struct cxgb4_uld_info ulds[CXGB4_ULD_MAX];
232 static const char *const uld_str[] = { "RDMA", "iSCSI", "iSCSIT" };
233
234 static void link_report(struct net_device *dev)
235 {
236         if (!netif_carrier_ok(dev))
237                 netdev_info(dev, "link down\n");
238         else {
239                 static const char *fc[] = { "no", "Rx", "Tx", "Tx/Rx" };
240
241                 const char *s;
242                 const struct port_info *p = netdev_priv(dev);
243
244                 switch (p->link_cfg.speed) {
245                 case 10000:
246                         s = "10Gbps";
247                         break;
248                 case 1000:
249                         s = "1000Mbps";
250                         break;
251                 case 100:
252                         s = "100Mbps";
253                         break;
254                 case 40000:
255                         s = "40Gbps";
256                         break;
257                 default:
258                         pr_info("%s: unsupported speed: %d\n",
259                                 dev->name, p->link_cfg.speed);
260                         return;
261                 }
262
263                 netdev_info(dev, "link up, %s, full-duplex, %s PAUSE\n", s,
264                             fc[p->link_cfg.fc]);
265         }
266 }
267
268 #ifdef CONFIG_CHELSIO_T4_DCB
269 /* Set up/tear down Data Center Bridging Priority mapping for a net device. */
270 static void dcb_tx_queue_prio_enable(struct net_device *dev, int enable)
271 {
272         struct port_info *pi = netdev_priv(dev);
273         struct adapter *adap = pi->adapter;
274         struct sge_eth_txq *txq = &adap->sge.ethtxq[pi->first_qset];
275         int i;
276
277         /* We use a simple mapping of Port TX Queue Index to DCB
278          * Priority when we're enabling DCB.
279          */
280         for (i = 0; i < pi->nqsets; i++, txq++) {
281                 u32 name, value;
282                 int err;
283
284                 name = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
285                         FW_PARAMS_PARAM_X_V(
286                                 FW_PARAMS_PARAM_DMAQ_EQ_DCBPRIO_ETH) |
287                         FW_PARAMS_PARAM_YZ_V(txq->q.cntxt_id));
288                 value = enable ? i : 0xffffffff;
289
290                 /* Since we can be called while atomic (from "interrupt
291                  * level") we need to issue the Set Parameters Commannd
292                  * without sleeping (timeout < 0).
293                  */
294                 err = t4_set_params_timeout(adap, adap->mbox, adap->pf, 0, 1,
295                                             &name, &value,
296                                             -FW_CMD_MAX_TIMEOUT);
297
298                 if (err)
299                         dev_err(adap->pdev_dev,
300                                 "Can't %s DCB Priority on port %d, TX Queue %d: err=%d\n",
301                                 enable ? "set" : "unset", pi->port_id, i, -err);
302                 else
303                         txq->dcb_prio = value;
304         }
305 }
306 #endif /* CONFIG_CHELSIO_T4_DCB */
307
308 int cxgb4_dcb_enabled(const struct net_device *dev)
309 {
310 #ifdef CONFIG_CHELSIO_T4_DCB
311         struct port_info *pi = netdev_priv(dev);
312
313         if (!pi->dcb.enabled)
314                 return 0;
315
316         return ((pi->dcb.state == CXGB4_DCB_STATE_FW_ALLSYNCED) ||
317                 (pi->dcb.state == CXGB4_DCB_STATE_HOST));
318 #else
319         return 0;
320 #endif
321 }
322 EXPORT_SYMBOL(cxgb4_dcb_enabled);
323
324 void t4_os_link_changed(struct adapter *adapter, int port_id, int link_stat)
325 {
326         struct net_device *dev = adapter->port[port_id];
327
328         /* Skip changes from disabled ports. */
329         if (netif_running(dev) && link_stat != netif_carrier_ok(dev)) {
330                 if (link_stat)
331                         netif_carrier_on(dev);
332                 else {
333 #ifdef CONFIG_CHELSIO_T4_DCB
334                         if (cxgb4_dcb_enabled(dev)) {
335                                 cxgb4_dcb_state_init(dev);
336                                 dcb_tx_queue_prio_enable(dev, false);
337                         }
338 #endif /* CONFIG_CHELSIO_T4_DCB */
339                         netif_carrier_off(dev);
340                 }
341
342                 link_report(dev);
343         }
344 }
345
346 void t4_os_portmod_changed(const struct adapter *adap, int port_id)
347 {
348         static const char *mod_str[] = {
349                 NULL, "LR", "SR", "ER", "passive DA", "active DA", "LRM"
350         };
351
352         const struct net_device *dev = adap->port[port_id];
353         const struct port_info *pi = netdev_priv(dev);
354
355         if (pi->mod_type == FW_PORT_MOD_TYPE_NONE)
356                 netdev_info(dev, "port module unplugged\n");
357         else if (pi->mod_type < ARRAY_SIZE(mod_str))
358                 netdev_info(dev, "%s module inserted\n", mod_str[pi->mod_type]);
359         else if (pi->mod_type == FW_PORT_MOD_TYPE_NOTSUPPORTED)
360                 netdev_info(dev, "%s: unsupported port module inserted\n",
361                             dev->name);
362         else if (pi->mod_type == FW_PORT_MOD_TYPE_UNKNOWN)
363                 netdev_info(dev, "%s: unknown port module inserted\n",
364                             dev->name);
365         else if (pi->mod_type == FW_PORT_MOD_TYPE_ERROR)
366                 netdev_info(dev, "%s: transceiver module error\n", dev->name);
367         else
368                 netdev_info(dev, "%s: unknown module type %d inserted\n",
369                             dev->name, pi->mod_type);
370 }
371
372 int dbfifo_int_thresh = 10; /* 10 == 640 entry threshold */
373 module_param(dbfifo_int_thresh, int, 0644);
374 MODULE_PARM_DESC(dbfifo_int_thresh, "doorbell fifo interrupt threshold");
375
376 /*
377  * usecs to sleep while draining the dbfifo
378  */
379 static int dbfifo_drain_delay = 1000;
380 module_param(dbfifo_drain_delay, int, 0644);
381 MODULE_PARM_DESC(dbfifo_drain_delay,
382                  "usecs to sleep while draining the dbfifo");
383
384 static inline int cxgb4_set_addr_hash(struct port_info *pi)
385 {
386         struct adapter *adap = pi->adapter;
387         u64 vec = 0;
388         bool ucast = false;
389         struct hash_mac_addr *entry;
390
391         /* Calculate the hash vector for the updated list and program it */
392         list_for_each_entry(entry, &adap->mac_hlist, list) {
393                 ucast |= is_unicast_ether_addr(entry->addr);
394                 vec |= (1ULL << hash_mac_addr(entry->addr));
395         }
396         return t4_set_addr_hash(adap, adap->mbox, pi->viid, ucast,
397                                 vec, false);
398 }
399
400 static int cxgb4_mac_sync(struct net_device *netdev, const u8 *mac_addr)
401 {
402         struct port_info *pi = netdev_priv(netdev);
403         struct adapter *adap = pi->adapter;
404         int ret;
405         u64 mhash = 0;
406         u64 uhash = 0;
407         bool free = false;
408         bool ucast = is_unicast_ether_addr(mac_addr);
409         const u8 *maclist[1] = {mac_addr};
410         struct hash_mac_addr *new_entry;
411
412         ret = t4_alloc_mac_filt(adap, adap->mbox, pi->viid, free, 1, maclist,
413                                 NULL, ucast ? &uhash : &mhash, false);
414         if (ret < 0)
415                 goto out;
416         /* if hash != 0, then add the addr to hash addr list
417          * so on the end we will calculate the hash for the
418          * list and program it
419          */
420         if (uhash || mhash) {
421                 new_entry = kzalloc(sizeof(*new_entry), GFP_ATOMIC);
422                 if (!new_entry)
423                         return -ENOMEM;
424                 ether_addr_copy(new_entry->addr, mac_addr);
425                 list_add_tail(&new_entry->list, &adap->mac_hlist);
426                 ret = cxgb4_set_addr_hash(pi);
427         }
428 out:
429         return ret < 0 ? ret : 0;
430 }
431
432 static int cxgb4_mac_unsync(struct net_device *netdev, const u8 *mac_addr)
433 {
434         struct port_info *pi = netdev_priv(netdev);
435         struct adapter *adap = pi->adapter;
436         int ret;
437         const u8 *maclist[1] = {mac_addr};
438         struct hash_mac_addr *entry, *tmp;
439
440         /* If the MAC address to be removed is in the hash addr
441          * list, delete it from the list and update hash vector
442          */
443         list_for_each_entry_safe(entry, tmp, &adap->mac_hlist, list) {
444                 if (ether_addr_equal(entry->addr, mac_addr)) {
445                         list_del(&entry->list);
446                         kfree(entry);
447                         return cxgb4_set_addr_hash(pi);
448                 }
449         }
450
451         ret = t4_free_mac_filt(adap, adap->mbox, pi->viid, 1, maclist, false);
452         return ret < 0 ? -EINVAL : 0;
453 }
454
455 /*
456  * Set Rx properties of a port, such as promiscruity, address filters, and MTU.
457  * If @mtu is -1 it is left unchanged.
458  */
459 static int set_rxmode(struct net_device *dev, int mtu, bool sleep_ok)
460 {
461         struct port_info *pi = netdev_priv(dev);
462         struct adapter *adapter = pi->adapter;
463
464         __dev_uc_sync(dev, cxgb4_mac_sync, cxgb4_mac_unsync);
465         __dev_mc_sync(dev, cxgb4_mac_sync, cxgb4_mac_unsync);
466
467         return t4_set_rxmode(adapter, adapter->mbox, pi->viid, mtu,
468                              (dev->flags & IFF_PROMISC) ? 1 : 0,
469                              (dev->flags & IFF_ALLMULTI) ? 1 : 0, 1, -1,
470                              sleep_ok);
471 }
472
473 /**
474  *      link_start - enable a port
475  *      @dev: the port to enable
476  *
477  *      Performs the MAC and PHY actions needed to enable a port.
478  */
479 static int link_start(struct net_device *dev)
480 {
481         int ret;
482         struct port_info *pi = netdev_priv(dev);
483         unsigned int mb = pi->adapter->pf;
484
485         /*
486          * We do not set address filters and promiscuity here, the stack does
487          * that step explicitly.
488          */
489         ret = t4_set_rxmode(pi->adapter, mb, pi->viid, dev->mtu, -1, -1, -1,
490                             !!(dev->features & NETIF_F_HW_VLAN_CTAG_RX), true);
491         if (ret == 0) {
492                 ret = t4_change_mac(pi->adapter, mb, pi->viid,
493                                     pi->xact_addr_filt, dev->dev_addr, true,
494                                     true);
495                 if (ret >= 0) {
496                         pi->xact_addr_filt = ret;
497                         ret = 0;
498                 }
499         }
500         if (ret == 0)
501                 ret = t4_link_l1cfg(pi->adapter, mb, pi->tx_chan,
502                                     &pi->link_cfg);
503         if (ret == 0) {
504                 local_bh_disable();
505                 ret = t4_enable_vi_params(pi->adapter, mb, pi->viid, true,
506                                           true, CXGB4_DCB_ENABLED);
507                 local_bh_enable();
508         }
509
510         return ret;
511 }
512
513 #ifdef CONFIG_CHELSIO_T4_DCB
514 /* Handle a Data Center Bridging update message from the firmware. */
515 static void dcb_rpl(struct adapter *adap, const struct fw_port_cmd *pcmd)
516 {
517         int port = FW_PORT_CMD_PORTID_G(ntohl(pcmd->op_to_portid));
518         struct net_device *dev = adap->port[adap->chan_map[port]];
519         int old_dcb_enabled = cxgb4_dcb_enabled(dev);
520         int new_dcb_enabled;
521
522         cxgb4_dcb_handle_fw_update(adap, pcmd);
523         new_dcb_enabled = cxgb4_dcb_enabled(dev);
524
525         /* If the DCB has become enabled or disabled on the port then we're
526          * going to need to set up/tear down DCB Priority parameters for the
527          * TX Queues associated with the port.
528          */
529         if (new_dcb_enabled != old_dcb_enabled)
530                 dcb_tx_queue_prio_enable(dev, new_dcb_enabled);
531 }
532 #endif /* CONFIG_CHELSIO_T4_DCB */
533
534 /* Clear a filter and release any of its resources that we own.  This also
535  * clears the filter's "pending" status.
536  */
537 static void clear_filter(struct adapter *adap, struct filter_entry *f)
538 {
539         /* If the new or old filter have loopback rewriteing rules then we'll
540          * need to free any existing Layer Two Table (L2T) entries of the old
541          * filter rule.  The firmware will handle freeing up any Source MAC
542          * Table (SMT) entries used for rewriting Source MAC Addresses in
543          * loopback rules.
544          */
545         if (f->l2t)
546                 cxgb4_l2t_release(f->l2t);
547
548         /* The zeroing of the filter rule below clears the filter valid,
549          * pending, locked flags, l2t pointer, etc. so it's all we need for
550          * this operation.
551          */
552         memset(f, 0, sizeof(*f));
553 }
554
555 /* Handle a filter write/deletion reply.
556  */
557 static void filter_rpl(struct adapter *adap, const struct cpl_set_tcb_rpl *rpl)
558 {
559         unsigned int idx = GET_TID(rpl);
560         unsigned int nidx = idx - adap->tids.ftid_base;
561         unsigned int ret;
562         struct filter_entry *f;
563
564         if (idx >= adap->tids.ftid_base && nidx <
565            (adap->tids.nftids + adap->tids.nsftids)) {
566                 idx = nidx;
567                 ret = TCB_COOKIE_G(rpl->cookie);
568                 f = &adap->tids.ftid_tab[idx];
569
570                 if (ret == FW_FILTER_WR_FLT_DELETED) {
571                         /* Clear the filter when we get confirmation from the
572                          * hardware that the filter has been deleted.
573                          */
574                         clear_filter(adap, f);
575                 } else if (ret == FW_FILTER_WR_SMT_TBL_FULL) {
576                         dev_err(adap->pdev_dev, "filter %u setup failed due to full SMT\n",
577                                 idx);
578                         clear_filter(adap, f);
579                 } else if (ret == FW_FILTER_WR_FLT_ADDED) {
580                         f->smtidx = (be64_to_cpu(rpl->oldval) >> 24) & 0xff;
581                         f->pending = 0;  /* asynchronous setup completed */
582                         f->valid = 1;
583                 } else {
584                         /* Something went wrong.  Issue a warning about the
585                          * problem and clear everything out.
586                          */
587                         dev_err(adap->pdev_dev, "filter %u setup failed with error %u\n",
588                                 idx, ret);
589                         clear_filter(adap, f);
590                 }
591         }
592 }
593
594 /* Response queue handler for the FW event queue.
595  */
596 static int fwevtq_handler(struct sge_rspq *q, const __be64 *rsp,
597                           const struct pkt_gl *gl)
598 {
599         u8 opcode = ((const struct rss_header *)rsp)->opcode;
600
601         rsp++;                                          /* skip RSS header */
602
603         /* FW can send EGR_UPDATEs encapsulated in a CPL_FW4_MSG.
604          */
605         if (unlikely(opcode == CPL_FW4_MSG &&
606            ((const struct cpl_fw4_msg *)rsp)->type == FW_TYPE_RSSCPL)) {
607                 rsp++;
608                 opcode = ((const struct rss_header *)rsp)->opcode;
609                 rsp++;
610                 if (opcode != CPL_SGE_EGR_UPDATE) {
611                         dev_err(q->adap->pdev_dev, "unexpected FW4/CPL %#x on FW event queue\n"
612                                 , opcode);
613                         goto out;
614                 }
615         }
616
617         if (likely(opcode == CPL_SGE_EGR_UPDATE)) {
618                 const struct cpl_sge_egr_update *p = (void *)rsp;
619                 unsigned int qid = EGR_QID_G(ntohl(p->opcode_qid));
620                 struct sge_txq *txq;
621
622                 txq = q->adap->sge.egr_map[qid - q->adap->sge.egr_start];
623                 txq->restarts++;
624                 if ((u8 *)txq < (u8 *)q->adap->sge.ofldtxq) {
625                         struct sge_eth_txq *eq;
626
627                         eq = container_of(txq, struct sge_eth_txq, q);
628                         netif_tx_wake_queue(eq->txq);
629                 } else {
630                         struct sge_ofld_txq *oq;
631
632                         oq = container_of(txq, struct sge_ofld_txq, q);
633                         tasklet_schedule(&oq->qresume_tsk);
634                 }
635         } else if (opcode == CPL_FW6_MSG || opcode == CPL_FW4_MSG) {
636                 const struct cpl_fw6_msg *p = (void *)rsp;
637
638 #ifdef CONFIG_CHELSIO_T4_DCB
639                 const struct fw_port_cmd *pcmd = (const void *)p->data;
640                 unsigned int cmd = FW_CMD_OP_G(ntohl(pcmd->op_to_portid));
641                 unsigned int action =
642                         FW_PORT_CMD_ACTION_G(ntohl(pcmd->action_to_len16));
643
644                 if (cmd == FW_PORT_CMD &&
645                     action == FW_PORT_ACTION_GET_PORT_INFO) {
646                         int port = FW_PORT_CMD_PORTID_G(
647                                         be32_to_cpu(pcmd->op_to_portid));
648                         struct net_device *dev =
649                                 q->adap->port[q->adap->chan_map[port]];
650                         int state_input = ((pcmd->u.info.dcbxdis_pkd &
651                                             FW_PORT_CMD_DCBXDIS_F)
652                                            ? CXGB4_DCB_INPUT_FW_DISABLED
653                                            : CXGB4_DCB_INPUT_FW_ENABLED);
654
655                         cxgb4_dcb_state_fsm(dev, state_input);
656                 }
657
658                 if (cmd == FW_PORT_CMD &&
659                     action == FW_PORT_ACTION_L2_DCB_CFG)
660                         dcb_rpl(q->adap, pcmd);
661                 else
662 #endif
663                         if (p->type == 0)
664                                 t4_handle_fw_rpl(q->adap, p->data);
665         } else if (opcode == CPL_L2T_WRITE_RPL) {
666                 const struct cpl_l2t_write_rpl *p = (void *)rsp;
667
668                 do_l2t_write_rpl(q->adap, p);
669         } else if (opcode == CPL_SET_TCB_RPL) {
670                 const struct cpl_set_tcb_rpl *p = (void *)rsp;
671
672                 filter_rpl(q->adap, p);
673         } else
674                 dev_err(q->adap->pdev_dev,
675                         "unexpected CPL %#x on FW event queue\n", opcode);
676 out:
677         return 0;
678 }
679
680 /* Flush the aggregated lro sessions */
681 static void uldrx_flush_handler(struct sge_rspq *q)
682 {
683         if (ulds[q->uld].lro_flush)
684                 ulds[q->uld].lro_flush(&q->lro_mgr);
685 }
686
687 /**
688  *      uldrx_handler - response queue handler for ULD queues
689  *      @q: the response queue that received the packet
690  *      @rsp: the response queue descriptor holding the offload message
691  *      @gl: the gather list of packet fragments
692  *
693  *      Deliver an ingress offload packet to a ULD.  All processing is done by
694  *      the ULD, we just maintain statistics.
695  */
696 static int uldrx_handler(struct sge_rspq *q, const __be64 *rsp,
697                          const struct pkt_gl *gl)
698 {
699         struct sge_ofld_rxq *rxq = container_of(q, struct sge_ofld_rxq, rspq);
700         int ret;
701
702         /* FW can send CPLs encapsulated in a CPL_FW4_MSG.
703          */
704         if (((const struct rss_header *)rsp)->opcode == CPL_FW4_MSG &&
705             ((const struct cpl_fw4_msg *)(rsp + 1))->type == FW_TYPE_RSSCPL)
706                 rsp += 2;
707
708         if (q->flush_handler)
709                 ret = ulds[q->uld].lro_rx_handler(q->adap->uld_handle[q->uld],
710                                                   rsp, gl, &q->lro_mgr,
711                                                   &q->napi);
712         else
713                 ret = ulds[q->uld].rx_handler(q->adap->uld_handle[q->uld],
714                                               rsp, gl);
715
716         if (ret) {
717                 rxq->stats.nomem++;
718                 return -1;
719         }
720
721         if (gl == NULL)
722                 rxq->stats.imm++;
723         else if (gl == CXGB4_MSG_AN)
724                 rxq->stats.an++;
725         else
726                 rxq->stats.pkts++;
727         return 0;
728 }
729
730 static void disable_msi(struct adapter *adapter)
731 {
732         if (adapter->flags & USING_MSIX) {
733                 pci_disable_msix(adapter->pdev);
734                 adapter->flags &= ~USING_MSIX;
735         } else if (adapter->flags & USING_MSI) {
736                 pci_disable_msi(adapter->pdev);
737                 adapter->flags &= ~USING_MSI;
738         }
739 }
740
741 /*
742  * Interrupt handler for non-data events used with MSI-X.
743  */
744 static irqreturn_t t4_nondata_intr(int irq, void *cookie)
745 {
746         struct adapter *adap = cookie;
747         u32 v = t4_read_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A));
748
749         if (v & PFSW_F) {
750                 adap->swintr = 1;
751                 t4_write_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A), v);
752         }
753         if (adap->flags & MASTER_PF)
754                 t4_slow_intr_handler(adap);
755         return IRQ_HANDLED;
756 }
757
758 /*
759  * Name the MSI-X interrupts.
760  */
761 static void name_msix_vecs(struct adapter *adap)
762 {
763         int i, j, msi_idx = 2, n = sizeof(adap->msix_info[0].desc);
764
765         /* non-data interrupts */
766         snprintf(adap->msix_info[0].desc, n, "%s", adap->port[0]->name);
767
768         /* FW events */
769         snprintf(adap->msix_info[1].desc, n, "%s-FWeventq",
770                  adap->port[0]->name);
771
772         /* Ethernet queues */
773         for_each_port(adap, j) {
774                 struct net_device *d = adap->port[j];
775                 const struct port_info *pi = netdev_priv(d);
776
777                 for (i = 0; i < pi->nqsets; i++, msi_idx++)
778                         snprintf(adap->msix_info[msi_idx].desc, n, "%s-Rx%d",
779                                  d->name, i);
780         }
781
782         /* offload queues */
783         for_each_iscsirxq(&adap->sge, i)
784                 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-iscsi%d",
785                          adap->port[0]->name, i);
786
787         for_each_iscsitrxq(&adap->sge, i)
788                 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-iSCSIT%d",
789                          adap->port[0]->name, i);
790
791         for_each_rdmarxq(&adap->sge, i)
792                 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma%d",
793                          adap->port[0]->name, i);
794
795         for_each_rdmaciq(&adap->sge, i)
796                 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma-ciq%d",
797                          adap->port[0]->name, i);
798 }
799
800 static int request_msix_queue_irqs(struct adapter *adap)
801 {
802         struct sge *s = &adap->sge;
803         int err, ethqidx, iscsiqidx = 0, rdmaqidx = 0, rdmaciqqidx = 0;
804         int iscsitqidx = 0;
805         int msi_index = 2;
806
807         err = request_irq(adap->msix_info[1].vec, t4_sge_intr_msix, 0,
808                           adap->msix_info[1].desc, &s->fw_evtq);
809         if (err)
810                 return err;
811
812         for_each_ethrxq(s, ethqidx) {
813                 err = request_irq(adap->msix_info[msi_index].vec,
814                                   t4_sge_intr_msix, 0,
815                                   adap->msix_info[msi_index].desc,
816                                   &s->ethrxq[ethqidx].rspq);
817                 if (err)
818                         goto unwind;
819                 msi_index++;
820         }
821         for_each_iscsirxq(s, iscsiqidx) {
822                 err = request_irq(adap->msix_info[msi_index].vec,
823                                   t4_sge_intr_msix, 0,
824                                   adap->msix_info[msi_index].desc,
825                                   &s->iscsirxq[iscsiqidx].rspq);
826                 if (err)
827                         goto unwind;
828                 msi_index++;
829         }
830         for_each_iscsitrxq(s, iscsitqidx) {
831                 err = request_irq(adap->msix_info[msi_index].vec,
832                                   t4_sge_intr_msix, 0,
833                                   adap->msix_info[msi_index].desc,
834                                   &s->iscsitrxq[iscsitqidx].rspq);
835                 if (err)
836                         goto unwind;
837                 msi_index++;
838         }
839         for_each_rdmarxq(s, rdmaqidx) {
840                 err = request_irq(adap->msix_info[msi_index].vec,
841                                   t4_sge_intr_msix, 0,
842                                   adap->msix_info[msi_index].desc,
843                                   &s->rdmarxq[rdmaqidx].rspq);
844                 if (err)
845                         goto unwind;
846                 msi_index++;
847         }
848         for_each_rdmaciq(s, rdmaciqqidx) {
849                 err = request_irq(adap->msix_info[msi_index].vec,
850                                   t4_sge_intr_msix, 0,
851                                   adap->msix_info[msi_index].desc,
852                                   &s->rdmaciq[rdmaciqqidx].rspq);
853                 if (err)
854                         goto unwind;
855                 msi_index++;
856         }
857         return 0;
858
859 unwind:
860         while (--rdmaciqqidx >= 0)
861                 free_irq(adap->msix_info[--msi_index].vec,
862                          &s->rdmaciq[rdmaciqqidx].rspq);
863         while (--rdmaqidx >= 0)
864                 free_irq(adap->msix_info[--msi_index].vec,
865                          &s->rdmarxq[rdmaqidx].rspq);
866         while (--iscsitqidx >= 0)
867                 free_irq(adap->msix_info[--msi_index].vec,
868                          &s->iscsitrxq[iscsitqidx].rspq);
869         while (--iscsiqidx >= 0)
870                 free_irq(adap->msix_info[--msi_index].vec,
871                          &s->iscsirxq[iscsiqidx].rspq);
872         while (--ethqidx >= 0)
873                 free_irq(adap->msix_info[--msi_index].vec,
874                          &s->ethrxq[ethqidx].rspq);
875         free_irq(adap->msix_info[1].vec, &s->fw_evtq);
876         return err;
877 }
878
879 static void free_msix_queue_irqs(struct adapter *adap)
880 {
881         int i, msi_index = 2;
882         struct sge *s = &adap->sge;
883
884         free_irq(adap->msix_info[1].vec, &s->fw_evtq);
885         for_each_ethrxq(s, i)
886                 free_irq(adap->msix_info[msi_index++].vec, &s->ethrxq[i].rspq);
887         for_each_iscsirxq(s, i)
888                 free_irq(adap->msix_info[msi_index++].vec,
889                          &s->iscsirxq[i].rspq);
890         for_each_iscsitrxq(s, i)
891                 free_irq(adap->msix_info[msi_index++].vec,
892                          &s->iscsitrxq[i].rspq);
893         for_each_rdmarxq(s, i)
894                 free_irq(adap->msix_info[msi_index++].vec, &s->rdmarxq[i].rspq);
895         for_each_rdmaciq(s, i)
896                 free_irq(adap->msix_info[msi_index++].vec, &s->rdmaciq[i].rspq);
897 }
898
899 /**
900  *      cxgb4_write_rss - write the RSS table for a given port
901  *      @pi: the port
902  *      @queues: array of queue indices for RSS
903  *
904  *      Sets up the portion of the HW RSS table for the port's VI to distribute
905  *      packets to the Rx queues in @queues.
906  *      Should never be called before setting up sge eth rx queues
907  */
908 int cxgb4_write_rss(const struct port_info *pi, const u16 *queues)
909 {
910         u16 *rss;
911         int i, err;
912         struct adapter *adapter = pi->adapter;
913         const struct sge_eth_rxq *rxq;
914
915         rxq = &adapter->sge.ethrxq[pi->first_qset];
916         rss = kmalloc(pi->rss_size * sizeof(u16), GFP_KERNEL);
917         if (!rss)
918                 return -ENOMEM;
919
920         /* map the queue indices to queue ids */
921         for (i = 0; i < pi->rss_size; i++, queues++)
922                 rss[i] = rxq[*queues].rspq.abs_id;
923
924         err = t4_config_rss_range(adapter, adapter->pf, pi->viid, 0,
925                                   pi->rss_size, rss, pi->rss_size);
926         /* If Tunnel All Lookup isn't specified in the global RSS
927          * Configuration, then we need to specify a default Ingress
928          * Queue for any ingress packets which aren't hashed.  We'll
929          * use our first ingress queue ...
930          */
931         if (!err)
932                 err = t4_config_vi_rss(adapter, adapter->mbox, pi->viid,
933                                        FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN_F |
934                                        FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN_F |
935                                        FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN_F |
936                                        FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN_F |
937                                        FW_RSS_VI_CONFIG_CMD_UDPEN_F,
938                                        rss[0]);
939         kfree(rss);
940         return err;
941 }
942
943 /**
944  *      setup_rss - configure RSS
945  *      @adap: the adapter
946  *
947  *      Sets up RSS for each port.
948  */
949 static int setup_rss(struct adapter *adap)
950 {
951         int i, j, err;
952
953         for_each_port(adap, i) {
954                 const struct port_info *pi = adap2pinfo(adap, i);
955
956                 /* Fill default values with equal distribution */
957                 for (j = 0; j < pi->rss_size; j++)
958                         pi->rss[j] = j % pi->nqsets;
959
960                 err = cxgb4_write_rss(pi, pi->rss);
961                 if (err)
962                         return err;
963         }
964         return 0;
965 }
966
967 /*
968  * Return the channel of the ingress queue with the given qid.
969  */
970 static unsigned int rxq_to_chan(const struct sge *p, unsigned int qid)
971 {
972         qid -= p->ingr_start;
973         return netdev2pinfo(p->ingr_map[qid]->netdev)->tx_chan;
974 }
975
976 /*
977  * Wait until all NAPI handlers are descheduled.
978  */
979 static void quiesce_rx(struct adapter *adap)
980 {
981         int i;
982
983         for (i = 0; i < adap->sge.ingr_sz; i++) {
984                 struct sge_rspq *q = adap->sge.ingr_map[i];
985
986                 if (q && q->handler) {
987                         napi_disable(&q->napi);
988                         local_bh_disable();
989                         while (!cxgb_poll_lock_napi(q))
990                                 mdelay(1);
991                         local_bh_enable();
992                 }
993
994         }
995 }
996
997 /* Disable interrupt and napi handler */
998 static void disable_interrupts(struct adapter *adap)
999 {
1000         if (adap->flags & FULL_INIT_DONE) {
1001                 t4_intr_disable(adap);
1002                 if (adap->flags & USING_MSIX) {
1003                         free_msix_queue_irqs(adap);
1004                         free_irq(adap->msix_info[0].vec, adap);
1005                 } else {
1006                         free_irq(adap->pdev->irq, adap);
1007                 }
1008                 quiesce_rx(adap);
1009         }
1010 }
1011
1012 /*
1013  * Enable NAPI scheduling and interrupt generation for all Rx queues.
1014  */
1015 static void enable_rx(struct adapter *adap)
1016 {
1017         int i;
1018
1019         for (i = 0; i < adap->sge.ingr_sz; i++) {
1020                 struct sge_rspq *q = adap->sge.ingr_map[i];
1021
1022                 if (!q)
1023                         continue;
1024                 if (q->handler) {
1025                         cxgb_busy_poll_init_lock(q);
1026                         napi_enable(&q->napi);
1027                 }
1028                 /* 0-increment GTS to start the timer and enable interrupts */
1029                 t4_write_reg(adap, MYPF_REG(SGE_PF_GTS_A),
1030                              SEINTARM_V(q->intr_params) |
1031                              INGRESSQID_V(q->cntxt_id));
1032         }
1033 }
1034
1035 static int alloc_ofld_rxqs(struct adapter *adap, struct sge_ofld_rxq *q,
1036                            unsigned int nq, unsigned int per_chan, int msi_idx,
1037                            u16 *ids, bool lro)
1038 {
1039         int i, err;
1040
1041         for (i = 0; i < nq; i++, q++) {
1042                 if (msi_idx > 0)
1043                         msi_idx++;
1044                 err = t4_sge_alloc_rxq(adap, &q->rspq, false,
1045                                        adap->port[i / per_chan],
1046                                        msi_idx, q->fl.size ? &q->fl : NULL,
1047                                        uldrx_handler,
1048                                        lro ? uldrx_flush_handler : NULL,
1049                                        0);
1050                 if (err)
1051                         return err;
1052                 memset(&q->stats, 0, sizeof(q->stats));
1053                 if (ids)
1054                         ids[i] = q->rspq.abs_id;
1055         }
1056         return 0;
1057 }
1058
1059 /**
1060  *      setup_sge_queues - configure SGE Tx/Rx/response queues
1061  *      @adap: the adapter
1062  *
1063  *      Determines how many sets of SGE queues to use and initializes them.
1064  *      We support multiple queue sets per port if we have MSI-X, otherwise
1065  *      just one queue set per port.
1066  */
1067 static int setup_sge_queues(struct adapter *adap)
1068 {
1069         int err, i, j;
1070         struct sge *s = &adap->sge;
1071
1072         bitmap_zero(s->starving_fl, s->egr_sz);
1073         bitmap_zero(s->txq_maperr, s->egr_sz);
1074
1075         if (adap->flags & USING_MSIX)
1076                 adap->msi_idx = 1;         /* vector 0 is for non-queue interrupts */
1077         else {
1078                 err = t4_sge_alloc_rxq(adap, &s->intrq, false, adap->port[0], 0,
1079                                        NULL, NULL, NULL, -1);
1080                 if (err)
1081                         return err;
1082                 adap->msi_idx = -((int)s->intrq.abs_id + 1);
1083         }
1084
1085         /* NOTE: If you add/delete any Ingress/Egress Queue allocations in here,
1086          * don't forget to update the following which need to be
1087          * synchronized to and changes here.
1088          *
1089          * 1. The calculations of MAX_INGQ in cxgb4.h.
1090          *
1091          * 2. Update enable_msix/name_msix_vecs/request_msix_queue_irqs
1092          *    to accommodate any new/deleted Ingress Queues
1093          *    which need MSI-X Vectors.
1094          *
1095          * 3. Update sge_qinfo_show() to include information on the
1096          *    new/deleted queues.
1097          */
1098         err = t4_sge_alloc_rxq(adap, &s->fw_evtq, true, adap->port[0],
1099                                adap->msi_idx, NULL, fwevtq_handler, NULL, -1);
1100         if (err) {
1101 freeout:        t4_free_sge_resources(adap);
1102                 return err;
1103         }
1104
1105         for_each_port(adap, i) {
1106                 struct net_device *dev = adap->port[i];
1107                 struct port_info *pi = netdev_priv(dev);
1108                 struct sge_eth_rxq *q = &s->ethrxq[pi->first_qset];
1109                 struct sge_eth_txq *t = &s->ethtxq[pi->first_qset];
1110
1111                 for (j = 0; j < pi->nqsets; j++, q++) {
1112                         if (adap->msi_idx > 0)
1113                                 adap->msi_idx++;
1114                         err = t4_sge_alloc_rxq(adap, &q->rspq, false, dev,
1115                                                adap->msi_idx, &q->fl,
1116                                                t4_ethrx_handler,
1117                                                NULL,
1118                                                t4_get_mps_bg_map(adap,
1119                                                                  pi->tx_chan));
1120                         if (err)
1121                                 goto freeout;
1122                         q->rspq.idx = j;
1123                         memset(&q->stats, 0, sizeof(q->stats));
1124                 }
1125                 for (j = 0; j < pi->nqsets; j++, t++) {
1126                         err = t4_sge_alloc_eth_txq(adap, t, dev,
1127                                         netdev_get_tx_queue(dev, j),
1128                                         s->fw_evtq.cntxt_id);
1129                         if (err)
1130                                 goto freeout;
1131                 }
1132         }
1133
1134         j = s->iscsiqsets / adap->params.nports; /* iscsi queues per channel */
1135         for_each_iscsirxq(s, i) {
1136                 err = t4_sge_alloc_ofld_txq(adap, &s->ofldtxq[i],
1137                                             adap->port[i / j],
1138                                             s->fw_evtq.cntxt_id);
1139                 if (err)
1140                         goto freeout;
1141         }
1142
1143 #define ALLOC_OFLD_RXQS(firstq, nq, per_chan, ids, lro) do { \
1144         err = alloc_ofld_rxqs(adap, firstq, nq, per_chan, adap->msi_idx, ids, lro); \
1145         if (err) \
1146                 goto freeout; \
1147         if (adap->msi_idx > 0) \
1148                 adap->msi_idx += nq; \
1149 } while (0)
1150
1151         ALLOC_OFLD_RXQS(s->iscsirxq, s->iscsiqsets, j, s->iscsi_rxq, false);
1152         ALLOC_OFLD_RXQS(s->iscsitrxq, s->niscsitq, j, s->iscsit_rxq, true);
1153         ALLOC_OFLD_RXQS(s->rdmarxq, s->rdmaqs, 1, s->rdma_rxq, false);
1154         j = s->rdmaciqs / adap->params.nports; /* rdmaq queues per channel */
1155         ALLOC_OFLD_RXQS(s->rdmaciq, s->rdmaciqs, j, s->rdma_ciq, false);
1156
1157 #undef ALLOC_OFLD_RXQS
1158
1159         for_each_port(adap, i) {
1160                 /*
1161                  * Note that ->rdmarxq[i].rspq.cntxt_id below is 0 if we don't
1162                  * have RDMA queues, and that's the right value.
1163                  */
1164                 err = t4_sge_alloc_ctrl_txq(adap, &s->ctrlq[i], adap->port[i],
1165                                             s->fw_evtq.cntxt_id,
1166                                             s->rdmarxq[i].rspq.cntxt_id);
1167                 if (err)
1168                         goto freeout;
1169         }
1170
1171         t4_write_reg(adap, is_t4(adap->params.chip) ?
1172                                 MPS_TRC_RSS_CONTROL_A :
1173                                 MPS_T5_TRC_RSS_CONTROL_A,
1174                      RSSCONTROL_V(netdev2pinfo(adap->port[0])->tx_chan) |
1175                      QUEUENUMBER_V(s->ethrxq[0].rspq.abs_id));
1176         return 0;
1177 }
1178
1179 /*
1180  * Allocate a chunk of memory using kmalloc or, if that fails, vmalloc.
1181  * The allocated memory is cleared.
1182  */
1183 void *t4_alloc_mem(size_t size)
1184 {
1185         void *p = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
1186
1187         if (!p)
1188                 p = vzalloc(size);
1189         return p;
1190 }
1191
1192 /*
1193  * Free memory allocated through alloc_mem().
1194  */
1195 void t4_free_mem(void *addr)
1196 {
1197         kvfree(addr);
1198 }
1199
1200 /* Send a Work Request to write the filter at a specified index.  We construct
1201  * a Firmware Filter Work Request to have the work done and put the indicated
1202  * filter into "pending" mode which will prevent any further actions against
1203  * it till we get a reply from the firmware on the completion status of the
1204  * request.
1205  */
1206 static int set_filter_wr(struct adapter *adapter, int fidx)
1207 {
1208         struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1209         struct sk_buff *skb;
1210         struct fw_filter_wr *fwr;
1211         unsigned int ftid;
1212
1213         skb = alloc_skb(sizeof(*fwr), GFP_KERNEL);
1214         if (!skb)
1215                 return -ENOMEM;
1216
1217         /* If the new filter requires loopback Destination MAC and/or VLAN
1218          * rewriting then we need to allocate a Layer 2 Table (L2T) entry for
1219          * the filter.
1220          */
1221         if (f->fs.newdmac || f->fs.newvlan) {
1222                 /* allocate L2T entry for new filter */
1223                 f->l2t = t4_l2t_alloc_switching(adapter, f->fs.vlan,
1224                                                 f->fs.eport, f->fs.dmac);
1225                 if (f->l2t == NULL) {
1226                         kfree_skb(skb);
1227                         return -ENOMEM;
1228                 }
1229         }
1230
1231         ftid = adapter->tids.ftid_base + fidx;
1232
1233         fwr = (struct fw_filter_wr *)__skb_put(skb, sizeof(*fwr));
1234         memset(fwr, 0, sizeof(*fwr));
1235
1236         /* It would be nice to put most of the following in t4_hw.c but most
1237          * of the work is translating the cxgbtool ch_filter_specification
1238          * into the Work Request and the definition of that structure is
1239          * currently in cxgbtool.h which isn't appropriate to pull into the
1240          * common code.  We may eventually try to come up with a more neutral
1241          * filter specification structure but for now it's easiest to simply
1242          * put this fairly direct code in line ...
1243          */
1244         fwr->op_pkd = htonl(FW_WR_OP_V(FW_FILTER_WR));
1245         fwr->len16_pkd = htonl(FW_WR_LEN16_V(sizeof(*fwr)/16));
1246         fwr->tid_to_iq =
1247                 htonl(FW_FILTER_WR_TID_V(ftid) |
1248                       FW_FILTER_WR_RQTYPE_V(f->fs.type) |
1249                       FW_FILTER_WR_NOREPLY_V(0) |
1250                       FW_FILTER_WR_IQ_V(f->fs.iq));
1251         fwr->del_filter_to_l2tix =
1252                 htonl(FW_FILTER_WR_RPTTID_V(f->fs.rpttid) |
1253                       FW_FILTER_WR_DROP_V(f->fs.action == FILTER_DROP) |
1254                       FW_FILTER_WR_DIRSTEER_V(f->fs.dirsteer) |
1255                       FW_FILTER_WR_MASKHASH_V(f->fs.maskhash) |
1256                       FW_FILTER_WR_DIRSTEERHASH_V(f->fs.dirsteerhash) |
1257                       FW_FILTER_WR_LPBK_V(f->fs.action == FILTER_SWITCH) |
1258                       FW_FILTER_WR_DMAC_V(f->fs.newdmac) |
1259                       FW_FILTER_WR_SMAC_V(f->fs.newsmac) |
1260                       FW_FILTER_WR_INSVLAN_V(f->fs.newvlan == VLAN_INSERT ||
1261                                              f->fs.newvlan == VLAN_REWRITE) |
1262                       FW_FILTER_WR_RMVLAN_V(f->fs.newvlan == VLAN_REMOVE ||
1263                                             f->fs.newvlan == VLAN_REWRITE) |
1264                       FW_FILTER_WR_HITCNTS_V(f->fs.hitcnts) |
1265                       FW_FILTER_WR_TXCHAN_V(f->fs.eport) |
1266                       FW_FILTER_WR_PRIO_V(f->fs.prio) |
1267                       FW_FILTER_WR_L2TIX_V(f->l2t ? f->l2t->idx : 0));
1268         fwr->ethtype = htons(f->fs.val.ethtype);
1269         fwr->ethtypem = htons(f->fs.mask.ethtype);
1270         fwr->frag_to_ovlan_vldm =
1271                 (FW_FILTER_WR_FRAG_V(f->fs.val.frag) |
1272                  FW_FILTER_WR_FRAGM_V(f->fs.mask.frag) |
1273                  FW_FILTER_WR_IVLAN_VLD_V(f->fs.val.ivlan_vld) |
1274                  FW_FILTER_WR_OVLAN_VLD_V(f->fs.val.ovlan_vld) |
1275                  FW_FILTER_WR_IVLAN_VLDM_V(f->fs.mask.ivlan_vld) |
1276                  FW_FILTER_WR_OVLAN_VLDM_V(f->fs.mask.ovlan_vld));
1277         fwr->smac_sel = 0;
1278         fwr->rx_chan_rx_rpl_iq =
1279                 htons(FW_FILTER_WR_RX_CHAN_V(0) |
1280                       FW_FILTER_WR_RX_RPL_IQ_V(adapter->sge.fw_evtq.abs_id));
1281         fwr->maci_to_matchtypem =
1282                 htonl(FW_FILTER_WR_MACI_V(f->fs.val.macidx) |
1283                       FW_FILTER_WR_MACIM_V(f->fs.mask.macidx) |
1284                       FW_FILTER_WR_FCOE_V(f->fs.val.fcoe) |
1285                       FW_FILTER_WR_FCOEM_V(f->fs.mask.fcoe) |
1286                       FW_FILTER_WR_PORT_V(f->fs.val.iport) |
1287                       FW_FILTER_WR_PORTM_V(f->fs.mask.iport) |
1288                       FW_FILTER_WR_MATCHTYPE_V(f->fs.val.matchtype) |
1289                       FW_FILTER_WR_MATCHTYPEM_V(f->fs.mask.matchtype));
1290         fwr->ptcl = f->fs.val.proto;
1291         fwr->ptclm = f->fs.mask.proto;
1292         fwr->ttyp = f->fs.val.tos;
1293         fwr->ttypm = f->fs.mask.tos;
1294         fwr->ivlan = htons(f->fs.val.ivlan);
1295         fwr->ivlanm = htons(f->fs.mask.ivlan);
1296         fwr->ovlan = htons(f->fs.val.ovlan);
1297         fwr->ovlanm = htons(f->fs.mask.ovlan);
1298         memcpy(fwr->lip, f->fs.val.lip, sizeof(fwr->lip));
1299         memcpy(fwr->lipm, f->fs.mask.lip, sizeof(fwr->lipm));
1300         memcpy(fwr->fip, f->fs.val.fip, sizeof(fwr->fip));
1301         memcpy(fwr->fipm, f->fs.mask.fip, sizeof(fwr->fipm));
1302         fwr->lp = htons(f->fs.val.lport);
1303         fwr->lpm = htons(f->fs.mask.lport);
1304         fwr->fp = htons(f->fs.val.fport);
1305         fwr->fpm = htons(f->fs.mask.fport);
1306         if (f->fs.newsmac)
1307                 memcpy(fwr->sma, f->fs.smac, sizeof(fwr->sma));
1308
1309         /* Mark the filter as "pending" and ship off the Filter Work Request.
1310          * When we get the Work Request Reply we'll clear the pending status.
1311          */
1312         f->pending = 1;
1313         set_wr_txq(skb, CPL_PRIORITY_CONTROL, f->fs.val.iport & 0x3);
1314         t4_ofld_send(adapter, skb);
1315         return 0;
1316 }
1317
1318 /* Delete the filter at a specified index.
1319  */
1320 static int del_filter_wr(struct adapter *adapter, int fidx)
1321 {
1322         struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1323         struct sk_buff *skb;
1324         struct fw_filter_wr *fwr;
1325         unsigned int len, ftid;
1326
1327         len = sizeof(*fwr);
1328         ftid = adapter->tids.ftid_base + fidx;
1329
1330         skb = alloc_skb(len, GFP_KERNEL);
1331         if (!skb)
1332                 return -ENOMEM;
1333
1334         fwr = (struct fw_filter_wr *)__skb_put(skb, len);
1335         t4_mk_filtdelwr(ftid, fwr, adapter->sge.fw_evtq.abs_id);
1336
1337         /* Mark the filter as "pending" and ship off the Filter Work Request.
1338          * When we get the Work Request Reply we'll clear the pending status.
1339          */
1340         f->pending = 1;
1341         t4_mgmt_tx(adapter, skb);
1342         return 0;
1343 }
1344
1345 static u16 cxgb_select_queue(struct net_device *dev, struct sk_buff *skb,
1346                              void *accel_priv, select_queue_fallback_t fallback)
1347 {
1348         int txq;
1349
1350 #ifdef CONFIG_CHELSIO_T4_DCB
1351         /* If a Data Center Bridging has been successfully negotiated on this
1352          * link then we'll use the skb's priority to map it to a TX Queue.
1353          * The skb's priority is determined via the VLAN Tag Priority Code
1354          * Point field.
1355          */
1356         if (cxgb4_dcb_enabled(dev)) {
1357                 u16 vlan_tci;
1358                 int err;
1359
1360                 err = vlan_get_tag(skb, &vlan_tci);
1361                 if (unlikely(err)) {
1362                         if (net_ratelimit())
1363                                 netdev_warn(dev,
1364                                             "TX Packet without VLAN Tag on DCB Link\n");
1365                         txq = 0;
1366                 } else {
1367                         txq = (vlan_tci & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
1368 #ifdef CONFIG_CHELSIO_T4_FCOE
1369                         if (skb->protocol == htons(ETH_P_FCOE))
1370                                 txq = skb->priority & 0x7;
1371 #endif /* CONFIG_CHELSIO_T4_FCOE */
1372                 }
1373                 return txq;
1374         }
1375 #endif /* CONFIG_CHELSIO_T4_DCB */
1376
1377         if (select_queue) {
1378                 txq = (skb_rx_queue_recorded(skb)
1379                         ? skb_get_rx_queue(skb)
1380                         : smp_processor_id());
1381
1382                 while (unlikely(txq >= dev->real_num_tx_queues))
1383                         txq -= dev->real_num_tx_queues;
1384
1385                 return txq;
1386         }
1387
1388         return fallback(dev, skb) % dev->real_num_tx_queues;
1389 }
1390
1391 static int closest_timer(const struct sge *s, int time)
1392 {
1393         int i, delta, match = 0, min_delta = INT_MAX;
1394
1395         for (i = 0; i < ARRAY_SIZE(s->timer_val); i++) {
1396                 delta = time - s->timer_val[i];
1397                 if (delta < 0)
1398                         delta = -delta;
1399                 if (delta < min_delta) {
1400                         min_delta = delta;
1401                         match = i;
1402                 }
1403         }
1404         return match;
1405 }
1406
1407 static int closest_thres(const struct sge *s, int thres)
1408 {
1409         int i, delta, match = 0, min_delta = INT_MAX;
1410
1411         for (i = 0; i < ARRAY_SIZE(s->counter_val); i++) {
1412                 delta = thres - s->counter_val[i];
1413                 if (delta < 0)
1414                         delta = -delta;
1415                 if (delta < min_delta) {
1416                         min_delta = delta;
1417                         match = i;
1418                 }
1419         }
1420         return match;
1421 }
1422
1423 /**
1424  *      cxgb4_set_rspq_intr_params - set a queue's interrupt holdoff parameters
1425  *      @q: the Rx queue
1426  *      @us: the hold-off time in us, or 0 to disable timer
1427  *      @cnt: the hold-off packet count, or 0 to disable counter
1428  *
1429  *      Sets an Rx queue's interrupt hold-off time and packet count.  At least
1430  *      one of the two needs to be enabled for the queue to generate interrupts.
1431  */
1432 int cxgb4_set_rspq_intr_params(struct sge_rspq *q,
1433                                unsigned int us, unsigned int cnt)
1434 {
1435         struct adapter *adap = q->adap;
1436
1437         if ((us | cnt) == 0)
1438                 cnt = 1;
1439
1440         if (cnt) {
1441                 int err;
1442                 u32 v, new_idx;
1443
1444                 new_idx = closest_thres(&adap->sge, cnt);
1445                 if (q->desc && q->pktcnt_idx != new_idx) {
1446                         /* the queue has already been created, update it */
1447                         v = FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
1448                             FW_PARAMS_PARAM_X_V(
1449                                         FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH) |
1450                             FW_PARAMS_PARAM_YZ_V(q->cntxt_id);
1451                         err = t4_set_params(adap, adap->mbox, adap->pf, 0, 1,
1452                                             &v, &new_idx);
1453                         if (err)
1454                                 return err;
1455                 }
1456                 q->pktcnt_idx = new_idx;
1457         }
1458
1459         us = us == 0 ? 6 : closest_timer(&adap->sge, us);
1460         q->intr_params = QINTR_TIMER_IDX_V(us) | QINTR_CNT_EN_V(cnt > 0);
1461         return 0;
1462 }
1463
1464 static int cxgb_set_features(struct net_device *dev, netdev_features_t features)
1465 {
1466         const struct port_info *pi = netdev_priv(dev);
1467         netdev_features_t changed = dev->features ^ features;
1468         int err;
1469
1470         if (!(changed & NETIF_F_HW_VLAN_CTAG_RX))
1471                 return 0;
1472
1473         err = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, -1,
1474                             -1, -1, -1,
1475                             !!(features & NETIF_F_HW_VLAN_CTAG_RX), true);
1476         if (unlikely(err))
1477                 dev->features = features ^ NETIF_F_HW_VLAN_CTAG_RX;
1478         return err;
1479 }
1480
1481 static int setup_debugfs(struct adapter *adap)
1482 {
1483         if (IS_ERR_OR_NULL(adap->debugfs_root))
1484                 return -1;
1485
1486 #ifdef CONFIG_DEBUG_FS
1487         t4_setup_debugfs(adap);
1488 #endif
1489         return 0;
1490 }
1491
1492 /*
1493  * upper-layer driver support
1494  */
1495
1496 /*
1497  * Allocate an active-open TID and set it to the supplied value.
1498  */
1499 int cxgb4_alloc_atid(struct tid_info *t, void *data)
1500 {
1501         int atid = -1;
1502
1503         spin_lock_bh(&t->atid_lock);
1504         if (t->afree) {
1505                 union aopen_entry *p = t->afree;
1506
1507                 atid = (p - t->atid_tab) + t->atid_base;
1508                 t->afree = p->next;
1509                 p->data = data;
1510                 t->atids_in_use++;
1511         }
1512         spin_unlock_bh(&t->atid_lock);
1513         return atid;
1514 }
1515 EXPORT_SYMBOL(cxgb4_alloc_atid);
1516
1517 /*
1518  * Release an active-open TID.
1519  */
1520 void cxgb4_free_atid(struct tid_info *t, unsigned int atid)
1521 {
1522         union aopen_entry *p = &t->atid_tab[atid - t->atid_base];
1523
1524         spin_lock_bh(&t->atid_lock);
1525         p->next = t->afree;
1526         t->afree = p;
1527         t->atids_in_use--;
1528         spin_unlock_bh(&t->atid_lock);
1529 }
1530 EXPORT_SYMBOL(cxgb4_free_atid);
1531
1532 /*
1533  * Allocate a server TID and set it to the supplied value.
1534  */
1535 int cxgb4_alloc_stid(struct tid_info *t, int family, void *data)
1536 {
1537         int stid;
1538
1539         spin_lock_bh(&t->stid_lock);
1540         if (family == PF_INET) {
1541                 stid = find_first_zero_bit(t->stid_bmap, t->nstids);
1542                 if (stid < t->nstids)
1543                         __set_bit(stid, t->stid_bmap);
1544                 else
1545                         stid = -1;
1546         } else {
1547                 stid = bitmap_find_free_region(t->stid_bmap, t->nstids, 1);
1548                 if (stid < 0)
1549                         stid = -1;
1550         }
1551         if (stid >= 0) {
1552                 t->stid_tab[stid].data = data;
1553                 stid += t->stid_base;
1554                 /* IPv6 requires max of 520 bits or 16 cells in TCAM
1555                  * This is equivalent to 4 TIDs. With CLIP enabled it
1556                  * needs 2 TIDs.
1557                  */
1558                 if (family == PF_INET)
1559                         t->stids_in_use++;
1560                 else
1561                         t->stids_in_use += 2;
1562         }
1563         spin_unlock_bh(&t->stid_lock);
1564         return stid;
1565 }
1566 EXPORT_SYMBOL(cxgb4_alloc_stid);
1567
1568 /* Allocate a server filter TID and set it to the supplied value.
1569  */
1570 int cxgb4_alloc_sftid(struct tid_info *t, int family, void *data)
1571 {
1572         int stid;
1573
1574         spin_lock_bh(&t->stid_lock);
1575         if (family == PF_INET) {
1576                 stid = find_next_zero_bit(t->stid_bmap,
1577                                 t->nstids + t->nsftids, t->nstids);
1578                 if (stid < (t->nstids + t->nsftids))
1579                         __set_bit(stid, t->stid_bmap);
1580                 else
1581                         stid = -1;
1582         } else {
1583                 stid = -1;
1584         }
1585         if (stid >= 0) {
1586                 t->stid_tab[stid].data = data;
1587                 stid -= t->nstids;
1588                 stid += t->sftid_base;
1589                 t->sftids_in_use++;
1590         }
1591         spin_unlock_bh(&t->stid_lock);
1592         return stid;
1593 }
1594 EXPORT_SYMBOL(cxgb4_alloc_sftid);
1595
1596 /* Release a server TID.
1597  */
1598 void cxgb4_free_stid(struct tid_info *t, unsigned int stid, int family)
1599 {
1600         /* Is it a server filter TID? */
1601         if (t->nsftids && (stid >= t->sftid_base)) {
1602                 stid -= t->sftid_base;
1603                 stid += t->nstids;
1604         } else {
1605                 stid -= t->stid_base;
1606         }
1607
1608         spin_lock_bh(&t->stid_lock);
1609         if (family == PF_INET)
1610                 __clear_bit(stid, t->stid_bmap);
1611         else
1612                 bitmap_release_region(t->stid_bmap, stid, 1);
1613         t->stid_tab[stid].data = NULL;
1614         if (stid < t->nstids) {
1615                 if (family == PF_INET)
1616                         t->stids_in_use--;
1617                 else
1618                         t->stids_in_use -= 2;
1619         } else {
1620                 t->sftids_in_use--;
1621         }
1622         spin_unlock_bh(&t->stid_lock);
1623 }
1624 EXPORT_SYMBOL(cxgb4_free_stid);
1625
1626 /*
1627  * Populate a TID_RELEASE WR.  Caller must properly size the skb.
1628  */
1629 static void mk_tid_release(struct sk_buff *skb, unsigned int chan,
1630                            unsigned int tid)
1631 {
1632         struct cpl_tid_release *req;
1633
1634         set_wr_txq(skb, CPL_PRIORITY_SETUP, chan);
1635         req = (struct cpl_tid_release *)__skb_put(skb, sizeof(*req));
1636         INIT_TP_WR(req, tid);
1637         OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_TID_RELEASE, tid));
1638 }
1639
1640 /*
1641  * Queue a TID release request and if necessary schedule a work queue to
1642  * process it.
1643  */
1644 static void cxgb4_queue_tid_release(struct tid_info *t, unsigned int chan,
1645                                     unsigned int tid)
1646 {
1647         void **p = &t->tid_tab[tid];
1648         struct adapter *adap = container_of(t, struct adapter, tids);
1649
1650         spin_lock_bh(&adap->tid_release_lock);
1651         *p = adap->tid_release_head;
1652         /* Low 2 bits encode the Tx channel number */
1653         adap->tid_release_head = (void **)((uintptr_t)p | chan);
1654         if (!adap->tid_release_task_busy) {
1655                 adap->tid_release_task_busy = true;
1656                 queue_work(adap->workq, &adap->tid_release_task);
1657         }
1658         spin_unlock_bh(&adap->tid_release_lock);
1659 }
1660
1661 /*
1662  * Process the list of pending TID release requests.
1663  */
1664 static void process_tid_release_list(struct work_struct *work)
1665 {
1666         struct sk_buff *skb;
1667         struct adapter *adap;
1668
1669         adap = container_of(work, struct adapter, tid_release_task);
1670
1671         spin_lock_bh(&adap->tid_release_lock);
1672         while (adap->tid_release_head) {
1673                 void **p = adap->tid_release_head;
1674                 unsigned int chan = (uintptr_t)p & 3;
1675                 p = (void *)p - chan;
1676
1677                 adap->tid_release_head = *p;
1678                 *p = NULL;
1679                 spin_unlock_bh(&adap->tid_release_lock);
1680
1681                 while (!(skb = alloc_skb(sizeof(struct cpl_tid_release),
1682                                          GFP_KERNEL)))
1683                         schedule_timeout_uninterruptible(1);
1684
1685                 mk_tid_release(skb, chan, p - adap->tids.tid_tab);
1686                 t4_ofld_send(adap, skb);
1687                 spin_lock_bh(&adap->tid_release_lock);
1688         }
1689         adap->tid_release_task_busy = false;
1690         spin_unlock_bh(&adap->tid_release_lock);
1691 }
1692
1693 /*
1694  * Release a TID and inform HW.  If we are unable to allocate the release
1695  * message we defer to a work queue.
1696  */
1697 void cxgb4_remove_tid(struct tid_info *t, unsigned int chan, unsigned int tid)
1698 {
1699         struct sk_buff *skb;
1700         struct adapter *adap = container_of(t, struct adapter, tids);
1701
1702         WARN_ON(tid >= t->ntids);
1703
1704         if (t->tid_tab[tid]) {
1705                 t->tid_tab[tid] = NULL;
1706                 if (t->hash_base && (tid >= t->hash_base))
1707                         atomic_dec(&t->hash_tids_in_use);
1708                 else
1709                         atomic_dec(&t->tids_in_use);
1710         }
1711
1712         skb = alloc_skb(sizeof(struct cpl_tid_release), GFP_ATOMIC);
1713         if (likely(skb)) {
1714                 mk_tid_release(skb, chan, tid);
1715                 t4_ofld_send(adap, skb);
1716         } else
1717                 cxgb4_queue_tid_release(t, chan, tid);
1718 }
1719 EXPORT_SYMBOL(cxgb4_remove_tid);
1720
1721 /*
1722  * Allocate and initialize the TID tables.  Returns 0 on success.
1723  */
1724 static int tid_init(struct tid_info *t)
1725 {
1726         size_t size;
1727         unsigned int stid_bmap_size;
1728         unsigned int natids = t->natids;
1729         struct adapter *adap = container_of(t, struct adapter, tids);
1730
1731         stid_bmap_size = BITS_TO_LONGS(t->nstids + t->nsftids);
1732         size = t->ntids * sizeof(*t->tid_tab) +
1733                natids * sizeof(*t->atid_tab) +
1734                t->nstids * sizeof(*t->stid_tab) +
1735                t->nsftids * sizeof(*t->stid_tab) +
1736                stid_bmap_size * sizeof(long) +
1737                t->nftids * sizeof(*t->ftid_tab) +
1738                t->nsftids * sizeof(*t->ftid_tab);
1739
1740         t->tid_tab = t4_alloc_mem(size);
1741         if (!t->tid_tab)
1742                 return -ENOMEM;
1743
1744         t->atid_tab = (union aopen_entry *)&t->tid_tab[t->ntids];
1745         t->stid_tab = (struct serv_entry *)&t->atid_tab[natids];
1746         t->stid_bmap = (unsigned long *)&t->stid_tab[t->nstids + t->nsftids];
1747         t->ftid_tab = (struct filter_entry *)&t->stid_bmap[stid_bmap_size];
1748         spin_lock_init(&t->stid_lock);
1749         spin_lock_init(&t->atid_lock);
1750
1751         t->stids_in_use = 0;
1752         t->sftids_in_use = 0;
1753         t->afree = NULL;
1754         t->atids_in_use = 0;
1755         atomic_set(&t->tids_in_use, 0);
1756         atomic_set(&t->hash_tids_in_use, 0);
1757
1758         /* Setup the free list for atid_tab and clear the stid bitmap. */
1759         if (natids) {
1760                 while (--natids)
1761                         t->atid_tab[natids - 1].next = &t->atid_tab[natids];
1762                 t->afree = t->atid_tab;
1763         }
1764         bitmap_zero(t->stid_bmap, t->nstids + t->nsftids);
1765         /* Reserve stid 0 for T4/T5 adapters */
1766         if (!t->stid_base &&
1767             (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5))
1768                 __set_bit(0, t->stid_bmap);
1769
1770         return 0;
1771 }
1772
1773 /**
1774  *      cxgb4_create_server - create an IP server
1775  *      @dev: the device
1776  *      @stid: the server TID
1777  *      @sip: local IP address to bind server to
1778  *      @sport: the server's TCP port
1779  *      @queue: queue to direct messages from this server to
1780  *
1781  *      Create an IP server for the given port and address.
1782  *      Returns <0 on error and one of the %NET_XMIT_* values on success.
1783  */
1784 int cxgb4_create_server(const struct net_device *dev, unsigned int stid,
1785                         __be32 sip, __be16 sport, __be16 vlan,
1786                         unsigned int queue)
1787 {
1788         unsigned int chan;
1789         struct sk_buff *skb;
1790         struct adapter *adap;
1791         struct cpl_pass_open_req *req;
1792         int ret;
1793
1794         skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1795         if (!skb)
1796                 return -ENOMEM;
1797
1798         adap = netdev2adap(dev);
1799         req = (struct cpl_pass_open_req *)__skb_put(skb, sizeof(*req));
1800         INIT_TP_WR(req, 0);
1801         OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ, stid));
1802         req->local_port = sport;
1803         req->peer_port = htons(0);
1804         req->local_ip = sip;
1805         req->peer_ip = htonl(0);
1806         chan = rxq_to_chan(&adap->sge, queue);
1807         req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
1808         req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
1809                                 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
1810         ret = t4_mgmt_tx(adap, skb);
1811         return net_xmit_eval(ret);
1812 }
1813 EXPORT_SYMBOL(cxgb4_create_server);
1814
1815 /*      cxgb4_create_server6 - create an IPv6 server
1816  *      @dev: the device
1817  *      @stid: the server TID
1818  *      @sip: local IPv6 address to bind server to
1819  *      @sport: the server's TCP port
1820  *      @queue: queue to direct messages from this server to
1821  *
1822  *      Create an IPv6 server for the given port and address.
1823  *      Returns <0 on error and one of the %NET_XMIT_* values on success.
1824  */
1825 int cxgb4_create_server6(const struct net_device *dev, unsigned int stid,
1826                          const struct in6_addr *sip, __be16 sport,
1827                          unsigned int queue)
1828 {
1829         unsigned int chan;
1830         struct sk_buff *skb;
1831         struct adapter *adap;
1832         struct cpl_pass_open_req6 *req;
1833         int ret;
1834
1835         skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1836         if (!skb)
1837                 return -ENOMEM;
1838
1839         adap = netdev2adap(dev);
1840         req = (struct cpl_pass_open_req6 *)__skb_put(skb, sizeof(*req));
1841         INIT_TP_WR(req, 0);
1842         OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ6, stid));
1843         req->local_port = sport;
1844         req->peer_port = htons(0);
1845         req->local_ip_hi = *(__be64 *)(sip->s6_addr);
1846         req->local_ip_lo = *(__be64 *)(sip->s6_addr + 8);
1847         req->peer_ip_hi = cpu_to_be64(0);
1848         req->peer_ip_lo = cpu_to_be64(0);
1849         chan = rxq_to_chan(&adap->sge, queue);
1850         req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
1851         req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
1852                                 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
1853         ret = t4_mgmt_tx(adap, skb);
1854         return net_xmit_eval(ret);
1855 }
1856 EXPORT_SYMBOL(cxgb4_create_server6);
1857
1858 int cxgb4_remove_server(const struct net_device *dev, unsigned int stid,
1859                         unsigned int queue, bool ipv6)
1860 {
1861         struct sk_buff *skb;
1862         struct adapter *adap;
1863         struct cpl_close_listsvr_req *req;
1864         int ret;
1865
1866         adap = netdev2adap(dev);
1867
1868         skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1869         if (!skb)
1870                 return -ENOMEM;
1871
1872         req = (struct cpl_close_listsvr_req *)__skb_put(skb, sizeof(*req));
1873         INIT_TP_WR(req, 0);
1874         OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_CLOSE_LISTSRV_REQ, stid));
1875         req->reply_ctrl = htons(NO_REPLY_V(0) | (ipv6 ? LISTSVR_IPV6_V(1) :
1876                                 LISTSVR_IPV6_V(0)) | QUEUENO_V(queue));
1877         ret = t4_mgmt_tx(adap, skb);
1878         return net_xmit_eval(ret);
1879 }
1880 EXPORT_SYMBOL(cxgb4_remove_server);
1881
1882 /**
1883  *      cxgb4_best_mtu - find the entry in the MTU table closest to an MTU
1884  *      @mtus: the HW MTU table
1885  *      @mtu: the target MTU
1886  *      @idx: index of selected entry in the MTU table
1887  *
1888  *      Returns the index and the value in the HW MTU table that is closest to
1889  *      but does not exceed @mtu, unless @mtu is smaller than any value in the
1890  *      table, in which case that smallest available value is selected.
1891  */
1892 unsigned int cxgb4_best_mtu(const unsigned short *mtus, unsigned short mtu,
1893                             unsigned int *idx)
1894 {
1895         unsigned int i = 0;
1896
1897         while (i < NMTUS - 1 && mtus[i + 1] <= mtu)
1898                 ++i;
1899         if (idx)
1900                 *idx = i;
1901         return mtus[i];
1902 }
1903 EXPORT_SYMBOL(cxgb4_best_mtu);
1904
1905 /**
1906  *     cxgb4_best_aligned_mtu - find best MTU, [hopefully] data size aligned
1907  *     @mtus: the HW MTU table
1908  *     @header_size: Header Size
1909  *     @data_size_max: maximum Data Segment Size
1910  *     @data_size_align: desired Data Segment Size Alignment (2^N)
1911  *     @mtu_idxp: HW MTU Table Index return value pointer (possibly NULL)
1912  *
1913  *     Similar to cxgb4_best_mtu() but instead of searching the Hardware
1914  *     MTU Table based solely on a Maximum MTU parameter, we break that
1915  *     parameter up into a Header Size and Maximum Data Segment Size, and
1916  *     provide a desired Data Segment Size Alignment.  If we find an MTU in
1917  *     the Hardware MTU Table which will result in a Data Segment Size with
1918  *     the requested alignment _and_ that MTU isn't "too far" from the
1919  *     closest MTU, then we'll return that rather than the closest MTU.
1920  */
1921 unsigned int cxgb4_best_aligned_mtu(const unsigned short *mtus,
1922                                     unsigned short header_size,
1923                                     unsigned short data_size_max,
1924                                     unsigned short data_size_align,
1925                                     unsigned int *mtu_idxp)
1926 {
1927         unsigned short max_mtu = header_size + data_size_max;
1928         unsigned short data_size_align_mask = data_size_align - 1;
1929         int mtu_idx, aligned_mtu_idx;
1930
1931         /* Scan the MTU Table till we find an MTU which is larger than our
1932          * Maximum MTU or we reach the end of the table.  Along the way,
1933          * record the last MTU found, if any, which will result in a Data
1934          * Segment Length matching the requested alignment.
1935          */
1936         for (mtu_idx = 0, aligned_mtu_idx = -1; mtu_idx < NMTUS; mtu_idx++) {
1937                 unsigned short data_size = mtus[mtu_idx] - header_size;
1938
1939                 /* If this MTU minus the Header Size would result in a
1940                  * Data Segment Size of the desired alignment, remember it.
1941                  */
1942                 if ((data_size & data_size_align_mask) == 0)
1943                         aligned_mtu_idx = mtu_idx;
1944
1945                 /* If we're not at the end of the Hardware MTU Table and the
1946                  * next element is larger than our Maximum MTU, drop out of
1947                  * the loop.
1948                  */
1949                 if (mtu_idx+1 < NMTUS && mtus[mtu_idx+1] > max_mtu)
1950                         break;
1951         }
1952
1953         /* If we fell out of the loop because we ran to the end of the table,
1954          * then we just have to use the last [largest] entry.
1955          */
1956         if (mtu_idx == NMTUS)
1957                 mtu_idx--;
1958
1959         /* If we found an MTU which resulted in the requested Data Segment
1960          * Length alignment and that's "not far" from the largest MTU which is
1961          * less than or equal to the maximum MTU, then use that.
1962          */
1963         if (aligned_mtu_idx >= 0 &&
1964             mtu_idx - aligned_mtu_idx <= 1)
1965                 mtu_idx = aligned_mtu_idx;
1966
1967         /* If the caller has passed in an MTU Index pointer, pass the
1968          * MTU Index back.  Return the MTU value.
1969          */
1970         if (mtu_idxp)
1971                 *mtu_idxp = mtu_idx;
1972         return mtus[mtu_idx];
1973 }
1974 EXPORT_SYMBOL(cxgb4_best_aligned_mtu);
1975
1976 /**
1977  *      cxgb4_tp_smt_idx - Get the Source Mac Table index for this VI
1978  *      @chip: chip type
1979  *      @viid: VI id of the given port
1980  *
1981  *      Return the SMT index for this VI.
1982  */
1983 unsigned int cxgb4_tp_smt_idx(enum chip_type chip, unsigned int viid)
1984 {
1985         /* In T4/T5, SMT contains 256 SMAC entries organized in
1986          * 128 rows of 2 entries each.
1987          * In T6, SMT contains 256 SMAC entries in 256 rows.
1988          * TODO: The below code needs to be updated when we add support
1989          * for 256 VFs.
1990          */
1991         if (CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5)
1992                 return ((viid & 0x7f) << 1);
1993         else
1994                 return (viid & 0x7f);
1995 }
1996 EXPORT_SYMBOL(cxgb4_tp_smt_idx);
1997
1998 /**
1999  *      cxgb4_port_chan - get the HW channel of a port
2000  *      @dev: the net device for the port
2001  *
2002  *      Return the HW Tx channel of the given port.
2003  */
2004 unsigned int cxgb4_port_chan(const struct net_device *dev)
2005 {
2006         return netdev2pinfo(dev)->tx_chan;
2007 }
2008 EXPORT_SYMBOL(cxgb4_port_chan);
2009
2010 unsigned int cxgb4_dbfifo_count(const struct net_device *dev, int lpfifo)
2011 {
2012         struct adapter *adap = netdev2adap(dev);
2013         u32 v1, v2, lp_count, hp_count;
2014
2015         v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
2016         v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
2017         if (is_t4(adap->params.chip)) {
2018                 lp_count = LP_COUNT_G(v1);
2019                 hp_count = HP_COUNT_G(v1);
2020         } else {
2021                 lp_count = LP_COUNT_T5_G(v1);
2022                 hp_count = HP_COUNT_T5_G(v2);
2023         }
2024         return lpfifo ? lp_count : hp_count;
2025 }
2026 EXPORT_SYMBOL(cxgb4_dbfifo_count);
2027
2028 /**
2029  *      cxgb4_port_viid - get the VI id of a port
2030  *      @dev: the net device for the port
2031  *
2032  *      Return the VI id of the given port.
2033  */
2034 unsigned int cxgb4_port_viid(const struct net_device *dev)
2035 {
2036         return netdev2pinfo(dev)->viid;
2037 }
2038 EXPORT_SYMBOL(cxgb4_port_viid);
2039
2040 /**
2041  *      cxgb4_port_idx - get the index of a port
2042  *      @dev: the net device for the port
2043  *
2044  *      Return the index of the given port.
2045  */
2046 unsigned int cxgb4_port_idx(const struct net_device *dev)
2047 {
2048         return netdev2pinfo(dev)->port_id;
2049 }
2050 EXPORT_SYMBOL(cxgb4_port_idx);
2051
2052 void cxgb4_get_tcp_stats(struct pci_dev *pdev, struct tp_tcp_stats *v4,
2053                          struct tp_tcp_stats *v6)
2054 {
2055         struct adapter *adap = pci_get_drvdata(pdev);
2056
2057         spin_lock(&adap->stats_lock);
2058         t4_tp_get_tcp_stats(adap, v4, v6);
2059         spin_unlock(&adap->stats_lock);
2060 }
2061 EXPORT_SYMBOL(cxgb4_get_tcp_stats);
2062
2063 void cxgb4_iscsi_init(struct net_device *dev, unsigned int tag_mask,
2064                       const unsigned int *pgsz_order)
2065 {
2066         struct adapter *adap = netdev2adap(dev);
2067
2068         t4_write_reg(adap, ULP_RX_ISCSI_TAGMASK_A, tag_mask);
2069         t4_write_reg(adap, ULP_RX_ISCSI_PSZ_A, HPZ0_V(pgsz_order[0]) |
2070                      HPZ1_V(pgsz_order[1]) | HPZ2_V(pgsz_order[2]) |
2071                      HPZ3_V(pgsz_order[3]));
2072 }
2073 EXPORT_SYMBOL(cxgb4_iscsi_init);
2074
2075 int cxgb4_flush_eq_cache(struct net_device *dev)
2076 {
2077         struct adapter *adap = netdev2adap(dev);
2078
2079         return t4_sge_ctxt_flush(adap, adap->mbox);
2080 }
2081 EXPORT_SYMBOL(cxgb4_flush_eq_cache);
2082
2083 static int read_eq_indices(struct adapter *adap, u16 qid, u16 *pidx, u16 *cidx)
2084 {
2085         u32 addr = t4_read_reg(adap, SGE_DBQ_CTXT_BADDR_A) + 24 * qid + 8;
2086         __be64 indices;
2087         int ret;
2088
2089         spin_lock(&adap->win0_lock);
2090         ret = t4_memory_rw(adap, 0, MEM_EDC0, addr,
2091                            sizeof(indices), (__be32 *)&indices,
2092                            T4_MEMORY_READ);
2093         spin_unlock(&adap->win0_lock);
2094         if (!ret) {
2095                 *cidx = (be64_to_cpu(indices) >> 25) & 0xffff;
2096                 *pidx = (be64_to_cpu(indices) >> 9) & 0xffff;
2097         }
2098         return ret;
2099 }
2100
2101 int cxgb4_sync_txq_pidx(struct net_device *dev, u16 qid, u16 pidx,
2102                         u16 size)
2103 {
2104         struct adapter *adap = netdev2adap(dev);
2105         u16 hw_pidx, hw_cidx;
2106         int ret;
2107
2108         ret = read_eq_indices(adap, qid, &hw_pidx, &hw_cidx);
2109         if (ret)
2110                 goto out;
2111
2112         if (pidx != hw_pidx) {
2113                 u16 delta;
2114                 u32 val;
2115
2116                 if (pidx >= hw_pidx)
2117                         delta = pidx - hw_pidx;
2118                 else
2119                         delta = size - hw_pidx + pidx;
2120
2121                 if (is_t4(adap->params.chip))
2122                         val = PIDX_V(delta);
2123                 else
2124                         val = PIDX_T5_V(delta);
2125                 wmb();
2126                 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2127                              QID_V(qid) | val);
2128         }
2129 out:
2130         return ret;
2131 }
2132 EXPORT_SYMBOL(cxgb4_sync_txq_pidx);
2133
2134 int cxgb4_read_tpte(struct net_device *dev, u32 stag, __be32 *tpte)
2135 {
2136         struct adapter *adap;
2137         u32 offset, memtype, memaddr;
2138         u32 edc0_size, edc1_size, mc0_size, mc1_size, size;
2139         u32 edc0_end, edc1_end, mc0_end, mc1_end;
2140         int ret;
2141
2142         adap = netdev2adap(dev);
2143
2144         offset = ((stag >> 8) * 32) + adap->vres.stag.start;
2145
2146         /* Figure out where the offset lands in the Memory Type/Address scheme.
2147          * This code assumes that the memory is laid out starting at offset 0
2148          * with no breaks as: EDC0, EDC1, MC0, MC1. All cards have both EDC0
2149          * and EDC1.  Some cards will have neither MC0 nor MC1, most cards have
2150          * MC0, and some have both MC0 and MC1.
2151          */
2152         size = t4_read_reg(adap, MA_EDRAM0_BAR_A);
2153         edc0_size = EDRAM0_SIZE_G(size) << 20;
2154         size = t4_read_reg(adap, MA_EDRAM1_BAR_A);
2155         edc1_size = EDRAM1_SIZE_G(size) << 20;
2156         size = t4_read_reg(adap, MA_EXT_MEMORY0_BAR_A);
2157         mc0_size = EXT_MEM0_SIZE_G(size) << 20;
2158
2159         edc0_end = edc0_size;
2160         edc1_end = edc0_end + edc1_size;
2161         mc0_end = edc1_end + mc0_size;
2162
2163         if (offset < edc0_end) {
2164                 memtype = MEM_EDC0;
2165                 memaddr = offset;
2166         } else if (offset < edc1_end) {
2167                 memtype = MEM_EDC1;
2168                 memaddr = offset - edc0_end;
2169         } else {
2170                 if (offset < mc0_end) {
2171                         memtype = MEM_MC0;
2172                         memaddr = offset - edc1_end;
2173                 } else if (is_t5(adap->params.chip)) {
2174                         size = t4_read_reg(adap, MA_EXT_MEMORY1_BAR_A);
2175                         mc1_size = EXT_MEM1_SIZE_G(size) << 20;
2176                         mc1_end = mc0_end + mc1_size;
2177                         if (offset < mc1_end) {
2178                                 memtype = MEM_MC1;
2179                                 memaddr = offset - mc0_end;
2180                         } else {
2181                                 /* offset beyond the end of any memory */
2182                                 goto err;
2183                         }
2184                 } else {
2185                         /* T4/T6 only has a single memory channel */
2186                         goto err;
2187                 }
2188         }
2189
2190         spin_lock(&adap->win0_lock);
2191         ret = t4_memory_rw(adap, 0, memtype, memaddr, 32, tpte, T4_MEMORY_READ);
2192         spin_unlock(&adap->win0_lock);
2193         return ret;
2194
2195 err:
2196         dev_err(adap->pdev_dev, "stag %#x, offset %#x out of range\n",
2197                 stag, offset);
2198         return -EINVAL;
2199 }
2200 EXPORT_SYMBOL(cxgb4_read_tpte);
2201
2202 u64 cxgb4_read_sge_timestamp(struct net_device *dev)
2203 {
2204         u32 hi, lo;
2205         struct adapter *adap;
2206
2207         adap = netdev2adap(dev);
2208         lo = t4_read_reg(adap, SGE_TIMESTAMP_LO_A);
2209         hi = TSVAL_G(t4_read_reg(adap, SGE_TIMESTAMP_HI_A));
2210
2211         return ((u64)hi << 32) | (u64)lo;
2212 }
2213 EXPORT_SYMBOL(cxgb4_read_sge_timestamp);
2214
2215 int cxgb4_bar2_sge_qregs(struct net_device *dev,
2216                          unsigned int qid,
2217                          enum cxgb4_bar2_qtype qtype,
2218                          int user,
2219                          u64 *pbar2_qoffset,
2220                          unsigned int *pbar2_qid)
2221 {
2222         return t4_bar2_sge_qregs(netdev2adap(dev),
2223                                  qid,
2224                                  (qtype == CXGB4_BAR2_QTYPE_EGRESS
2225                                   ? T4_BAR2_QTYPE_EGRESS
2226                                   : T4_BAR2_QTYPE_INGRESS),
2227                                  user,
2228                                  pbar2_qoffset,
2229                                  pbar2_qid);
2230 }
2231 EXPORT_SYMBOL(cxgb4_bar2_sge_qregs);
2232
2233 static struct pci_driver cxgb4_driver;
2234
2235 static void check_neigh_update(struct neighbour *neigh)
2236 {
2237         const struct device *parent;
2238         const struct net_device *netdev = neigh->dev;
2239
2240         if (netdev->priv_flags & IFF_802_1Q_VLAN)
2241                 netdev = vlan_dev_real_dev(netdev);
2242         parent = netdev->dev.parent;
2243         if (parent && parent->driver == &cxgb4_driver.driver)
2244                 t4_l2t_update(dev_get_drvdata(parent), neigh);
2245 }
2246
2247 static int netevent_cb(struct notifier_block *nb, unsigned long event,
2248                        void *data)
2249 {
2250         switch (event) {
2251         case NETEVENT_NEIGH_UPDATE:
2252                 check_neigh_update(data);
2253                 break;
2254         case NETEVENT_REDIRECT:
2255         default:
2256                 break;
2257         }
2258         return 0;
2259 }
2260
2261 static bool netevent_registered;
2262 static struct notifier_block cxgb4_netevent_nb = {
2263         .notifier_call = netevent_cb
2264 };
2265
2266 static void drain_db_fifo(struct adapter *adap, int usecs)
2267 {
2268         u32 v1, v2, lp_count, hp_count;
2269
2270         do {
2271                 v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
2272                 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
2273                 if (is_t4(adap->params.chip)) {
2274                         lp_count = LP_COUNT_G(v1);
2275                         hp_count = HP_COUNT_G(v1);
2276                 } else {
2277                         lp_count = LP_COUNT_T5_G(v1);
2278                         hp_count = HP_COUNT_T5_G(v2);
2279                 }
2280
2281                 if (lp_count == 0 && hp_count == 0)
2282                         break;
2283                 set_current_state(TASK_UNINTERRUPTIBLE);
2284                 schedule_timeout(usecs_to_jiffies(usecs));
2285         } while (1);
2286 }
2287
2288 static void disable_txq_db(struct sge_txq *q)
2289 {
2290         unsigned long flags;
2291
2292         spin_lock_irqsave(&q->db_lock, flags);
2293         q->db_disabled = 1;
2294         spin_unlock_irqrestore(&q->db_lock, flags);
2295 }
2296
2297 static void enable_txq_db(struct adapter *adap, struct sge_txq *q)
2298 {
2299         spin_lock_irq(&q->db_lock);
2300         if (q->db_pidx_inc) {
2301                 /* Make sure that all writes to the TX descriptors
2302                  * are committed before we tell HW about them.
2303                  */
2304                 wmb();
2305                 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2306                              QID_V(q->cntxt_id) | PIDX_V(q->db_pidx_inc));
2307                 q->db_pidx_inc = 0;
2308         }
2309         q->db_disabled = 0;
2310         spin_unlock_irq(&q->db_lock);
2311 }
2312
2313 static void disable_dbs(struct adapter *adap)
2314 {
2315         int i;
2316
2317         for_each_ethrxq(&adap->sge, i)
2318                 disable_txq_db(&adap->sge.ethtxq[i].q);
2319         for_each_iscsirxq(&adap->sge, i)
2320                 disable_txq_db(&adap->sge.ofldtxq[i].q);
2321         for_each_port(adap, i)
2322                 disable_txq_db(&adap->sge.ctrlq[i].q);
2323 }
2324
2325 static void enable_dbs(struct adapter *adap)
2326 {
2327         int i;
2328
2329         for_each_ethrxq(&adap->sge, i)
2330                 enable_txq_db(adap, &adap->sge.ethtxq[i].q);
2331         for_each_iscsirxq(&adap->sge, i)
2332                 enable_txq_db(adap, &adap->sge.ofldtxq[i].q);
2333         for_each_port(adap, i)
2334                 enable_txq_db(adap, &adap->sge.ctrlq[i].q);
2335 }
2336
2337 static void notify_rdma_uld(struct adapter *adap, enum cxgb4_control cmd)
2338 {
2339         if (adap->uld_handle[CXGB4_ULD_RDMA])
2340                 ulds[CXGB4_ULD_RDMA].control(adap->uld_handle[CXGB4_ULD_RDMA],
2341                                 cmd);
2342 }
2343
2344 static void process_db_full(struct work_struct *work)
2345 {
2346         struct adapter *adap;
2347
2348         adap = container_of(work, struct adapter, db_full_task);
2349
2350         drain_db_fifo(adap, dbfifo_drain_delay);
2351         enable_dbs(adap);
2352         notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
2353         if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
2354                 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2355                                  DBFIFO_HP_INT_F | DBFIFO_LP_INT_F,
2356                                  DBFIFO_HP_INT_F | DBFIFO_LP_INT_F);
2357         else
2358                 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2359                                  DBFIFO_LP_INT_F, DBFIFO_LP_INT_F);
2360 }
2361
2362 static void sync_txq_pidx(struct adapter *adap, struct sge_txq *q)
2363 {
2364         u16 hw_pidx, hw_cidx;
2365         int ret;
2366
2367         spin_lock_irq(&q->db_lock);
2368         ret = read_eq_indices(adap, (u16)q->cntxt_id, &hw_pidx, &hw_cidx);
2369         if (ret)
2370                 goto out;
2371         if (q->db_pidx != hw_pidx) {
2372                 u16 delta;
2373                 u32 val;
2374
2375                 if (q->db_pidx >= hw_pidx)
2376                         delta = q->db_pidx - hw_pidx;
2377                 else
2378                         delta = q->size - hw_pidx + q->db_pidx;
2379
2380                 if (is_t4(adap->params.chip))
2381                         val = PIDX_V(delta);
2382                 else
2383                         val = PIDX_T5_V(delta);
2384                 wmb();
2385                 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2386                              QID_V(q->cntxt_id) | val);
2387         }
2388 out:
2389         q->db_disabled = 0;
2390         q->db_pidx_inc = 0;
2391         spin_unlock_irq(&q->db_lock);
2392         if (ret)
2393                 CH_WARN(adap, "DB drop recovery failed.\n");
2394 }
2395 static void recover_all_queues(struct adapter *adap)
2396 {
2397         int i;
2398
2399         for_each_ethrxq(&adap->sge, i)
2400                 sync_txq_pidx(adap, &adap->sge.ethtxq[i].q);
2401         for_each_iscsirxq(&adap->sge, i)
2402                 sync_txq_pidx(adap, &adap->sge.ofldtxq[i].q);
2403         for_each_port(adap, i)
2404                 sync_txq_pidx(adap, &adap->sge.ctrlq[i].q);
2405 }
2406
2407 static void process_db_drop(struct work_struct *work)
2408 {
2409         struct adapter *adap;
2410
2411         adap = container_of(work, struct adapter, db_drop_task);
2412
2413         if (is_t4(adap->params.chip)) {
2414                 drain_db_fifo(adap, dbfifo_drain_delay);
2415                 notify_rdma_uld(adap, CXGB4_CONTROL_DB_DROP);
2416                 drain_db_fifo(adap, dbfifo_drain_delay);
2417                 recover_all_queues(adap);
2418                 drain_db_fifo(adap, dbfifo_drain_delay);
2419                 enable_dbs(adap);
2420                 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
2421         } else if (is_t5(adap->params.chip)) {
2422                 u32 dropped_db = t4_read_reg(adap, 0x010ac);
2423                 u16 qid = (dropped_db >> 15) & 0x1ffff;
2424                 u16 pidx_inc = dropped_db & 0x1fff;
2425                 u64 bar2_qoffset;
2426                 unsigned int bar2_qid;
2427                 int ret;
2428
2429                 ret = t4_bar2_sge_qregs(adap, qid, T4_BAR2_QTYPE_EGRESS,
2430                                         0, &bar2_qoffset, &bar2_qid);
2431                 if (ret)
2432                         dev_err(adap->pdev_dev, "doorbell drop recovery: "
2433                                 "qid=%d, pidx_inc=%d\n", qid, pidx_inc);
2434                 else
2435                         writel(PIDX_T5_V(pidx_inc) | QID_V(bar2_qid),
2436                                adap->bar2 + bar2_qoffset + SGE_UDB_KDOORBELL);
2437
2438                 /* Re-enable BAR2 WC */
2439                 t4_set_reg_field(adap, 0x10b0, 1<<15, 1<<15);
2440         }
2441
2442         if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
2443                 t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, DROPPED_DB_F, 0);
2444 }
2445
2446 void t4_db_full(struct adapter *adap)
2447 {
2448         if (is_t4(adap->params.chip)) {
2449                 disable_dbs(adap);
2450                 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
2451                 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2452                                  DBFIFO_HP_INT_F | DBFIFO_LP_INT_F, 0);
2453                 queue_work(adap->workq, &adap->db_full_task);
2454         }
2455 }
2456
2457 void t4_db_dropped(struct adapter *adap)
2458 {
2459         if (is_t4(adap->params.chip)) {
2460                 disable_dbs(adap);
2461                 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
2462         }
2463         queue_work(adap->workq, &adap->db_drop_task);
2464 }
2465
2466 static void uld_attach(struct adapter *adap, unsigned int uld)
2467 {
2468         void *handle;
2469         struct cxgb4_lld_info lli;
2470         unsigned short i;
2471
2472         lli.pdev = adap->pdev;
2473         lli.pf = adap->pf;
2474         lli.l2t = adap->l2t;
2475         lli.tids = &adap->tids;
2476         lli.ports = adap->port;
2477         lli.vr = &adap->vres;
2478         lli.mtus = adap->params.mtus;
2479         if (uld == CXGB4_ULD_RDMA) {
2480                 lli.rxq_ids = adap->sge.rdma_rxq;
2481                 lli.ciq_ids = adap->sge.rdma_ciq;
2482                 lli.nrxq = adap->sge.rdmaqs;
2483                 lli.nciq = adap->sge.rdmaciqs;
2484         } else if (uld == CXGB4_ULD_ISCSI) {
2485                 lli.rxq_ids = adap->sge.iscsi_rxq;
2486                 lli.nrxq = adap->sge.iscsiqsets;
2487         } else if (uld == CXGB4_ULD_ISCSIT) {
2488                 lli.rxq_ids = adap->sge.iscsit_rxq;
2489                 lli.nrxq = adap->sge.niscsitq;
2490         }
2491         lli.ntxq = adap->sge.iscsiqsets;
2492         lli.nchan = adap->params.nports;
2493         lli.nports = adap->params.nports;
2494         lli.wr_cred = adap->params.ofldq_wr_cred;
2495         lli.adapter_type = adap->params.chip;
2496         lli.iscsi_iolen = MAXRXDATA_G(t4_read_reg(adap, TP_PARA_REG2_A));
2497         lli.iscsi_tagmask = t4_read_reg(adap, ULP_RX_ISCSI_TAGMASK_A);
2498         lli.iscsi_pgsz_order = t4_read_reg(adap, ULP_RX_ISCSI_PSZ_A);
2499         lli.iscsi_llimit = t4_read_reg(adap, ULP_RX_ISCSI_LLIMIT_A);
2500         lli.iscsi_ppm = &adap->iscsi_ppm;
2501         lli.cclk_ps = 1000000000 / adap->params.vpd.cclk;
2502         lli.udb_density = 1 << adap->params.sge.eq_qpp;
2503         lli.ucq_density = 1 << adap->params.sge.iq_qpp;
2504         lli.filt_mode = adap->params.tp.vlan_pri_map;
2505         /* MODQ_REQ_MAP sets queues 0-3 to chan 0-3 */
2506         for (i = 0; i < NCHAN; i++)
2507                 lli.tx_modq[i] = i;
2508         lli.gts_reg = adap->regs + MYPF_REG(SGE_PF_GTS_A);
2509         lli.db_reg = adap->regs + MYPF_REG(SGE_PF_KDOORBELL_A);
2510         lli.fw_vers = adap->params.fw_vers;
2511         lli.dbfifo_int_thresh = dbfifo_int_thresh;
2512         lli.sge_ingpadboundary = adap->sge.fl_align;
2513         lli.sge_egrstatuspagesize = adap->sge.stat_len;
2514         lli.sge_pktshift = adap->sge.pktshift;
2515         lli.enable_fw_ofld_conn = adap->flags & FW_OFLD_CONN;
2516         lli.max_ordird_qp = adap->params.max_ordird_qp;
2517         lli.max_ird_adapter = adap->params.max_ird_adapter;
2518         lli.ulptx_memwrite_dsgl = adap->params.ulptx_memwrite_dsgl;
2519         lli.nodeid = dev_to_node(adap->pdev_dev);
2520         lli.fr_nsmr_tpte_wr_support = adap->params.fr_nsmr_tpte_wr_support;
2521
2522         handle = ulds[uld].add(&lli);
2523         if (IS_ERR(handle)) {
2524                 dev_warn(adap->pdev_dev,
2525                          "could not attach to the %s driver, error %ld\n",
2526                          uld_str[uld], PTR_ERR(handle));
2527                 return;
2528         }
2529
2530         adap->uld_handle[uld] = handle;
2531
2532         if (!netevent_registered) {
2533                 register_netevent_notifier(&cxgb4_netevent_nb);
2534                 netevent_registered = true;
2535         }
2536
2537         if (adap->flags & FULL_INIT_DONE)
2538                 ulds[uld].state_change(handle, CXGB4_STATE_UP);
2539 }
2540
2541 static void attach_ulds(struct adapter *adap)
2542 {
2543         unsigned int i;
2544
2545         spin_lock(&adap_rcu_lock);
2546         list_add_tail_rcu(&adap->rcu_node, &adap_rcu_list);
2547         spin_unlock(&adap_rcu_lock);
2548
2549         mutex_lock(&uld_mutex);
2550         list_add_tail(&adap->list_node, &adapter_list);
2551         for (i = 0; i < CXGB4_ULD_MAX; i++)
2552                 if (ulds[i].add)
2553                         uld_attach(adap, i);
2554         mutex_unlock(&uld_mutex);
2555 }
2556
2557 static void detach_ulds(struct adapter *adap)
2558 {
2559         unsigned int i;
2560
2561         mutex_lock(&uld_mutex);
2562         list_del(&adap->list_node);
2563         for (i = 0; i < CXGB4_ULD_MAX; i++)
2564                 if (adap->uld_handle[i]) {
2565                         ulds[i].state_change(adap->uld_handle[i],
2566                                              CXGB4_STATE_DETACH);
2567                         adap->uld_handle[i] = NULL;
2568                 }
2569         for (i = 0; i < CXGB4_PCI_ULD_MAX; i++)
2570                 if (adap->uld && adap->uld[i].handle) {
2571                         adap->uld[i].state_change(adap->uld[i].handle,
2572                                              CXGB4_STATE_DETACH);
2573                         adap->uld[i].handle = NULL;
2574                 }
2575         if (netevent_registered && list_empty(&adapter_list)) {
2576                 unregister_netevent_notifier(&cxgb4_netevent_nb);
2577                 netevent_registered = false;
2578         }
2579         mutex_unlock(&uld_mutex);
2580
2581         spin_lock(&adap_rcu_lock);
2582         list_del_rcu(&adap->rcu_node);
2583         spin_unlock(&adap_rcu_lock);
2584 }
2585
2586 static void notify_ulds(struct adapter *adap, enum cxgb4_state new_state)
2587 {
2588         unsigned int i;
2589
2590         mutex_lock(&uld_mutex);
2591         for (i = 0; i < CXGB4_ULD_MAX; i++)
2592                 if (adap->uld_handle[i])
2593                         ulds[i].state_change(adap->uld_handle[i], new_state);
2594         for (i = 0; i < CXGB4_PCI_ULD_MAX; i++)
2595                 if (adap->uld && adap->uld[i].handle)
2596                         adap->uld[i].state_change(adap->uld[i].handle,
2597                                                   new_state);
2598         mutex_unlock(&uld_mutex);
2599 }
2600
2601 /**
2602  *      cxgb4_register_uld - register an upper-layer driver
2603  *      @type: the ULD type
2604  *      @p: the ULD methods
2605  *
2606  *      Registers an upper-layer driver with this driver and notifies the ULD
2607  *      about any presently available devices that support its type.  Returns
2608  *      %-EBUSY if a ULD of the same type is already registered.
2609  */
2610 int cxgb4_register_uld(enum cxgb4_uld type, const struct cxgb4_uld_info *p)
2611 {
2612         int ret = 0;
2613         struct adapter *adap;
2614
2615         if (type >= CXGB4_ULD_MAX)
2616                 return -EINVAL;
2617         mutex_lock(&uld_mutex);
2618         if (ulds[type].add) {
2619                 ret = -EBUSY;
2620                 goto out;
2621         }
2622         ulds[type] = *p;
2623         list_for_each_entry(adap, &adapter_list, list_node)
2624                 uld_attach(adap, type);
2625 out:    mutex_unlock(&uld_mutex);
2626         return ret;
2627 }
2628 EXPORT_SYMBOL(cxgb4_register_uld);
2629
2630 /**
2631  *      cxgb4_unregister_uld - unregister an upper-layer driver
2632  *      @type: the ULD type
2633  *
2634  *      Unregisters an existing upper-layer driver.
2635  */
2636 int cxgb4_unregister_uld(enum cxgb4_uld type)
2637 {
2638         struct adapter *adap;
2639
2640         if (type >= CXGB4_ULD_MAX)
2641                 return -EINVAL;
2642         mutex_lock(&uld_mutex);
2643         list_for_each_entry(adap, &adapter_list, list_node)
2644                 adap->uld_handle[type] = NULL;
2645         ulds[type].add = NULL;
2646         mutex_unlock(&uld_mutex);
2647         return 0;
2648 }
2649 EXPORT_SYMBOL(cxgb4_unregister_uld);
2650
2651 #if IS_ENABLED(CONFIG_IPV6)
2652 static int cxgb4_inet6addr_handler(struct notifier_block *this,
2653                                    unsigned long event, void *data)
2654 {
2655         struct inet6_ifaddr *ifa = data;
2656         struct net_device *event_dev = ifa->idev->dev;
2657         const struct device *parent = NULL;
2658 #if IS_ENABLED(CONFIG_BONDING)
2659         struct adapter *adap;
2660 #endif
2661         if (event_dev->priv_flags & IFF_802_1Q_VLAN)
2662                 event_dev = vlan_dev_real_dev(event_dev);
2663 #if IS_ENABLED(CONFIG_BONDING)
2664         if (event_dev->flags & IFF_MASTER) {
2665                 list_for_each_entry(adap, &adapter_list, list_node) {
2666                         switch (event) {
2667                         case NETDEV_UP:
2668                                 cxgb4_clip_get(adap->port[0],
2669                                                (const u32 *)ifa, 1);
2670                                 break;
2671                         case NETDEV_DOWN:
2672                                 cxgb4_clip_release(adap->port[0],
2673                                                    (const u32 *)ifa, 1);
2674                                 break;
2675                         default:
2676                                 break;
2677                         }
2678                 }
2679                 return NOTIFY_OK;
2680         }
2681 #endif
2682
2683         if (event_dev)
2684                 parent = event_dev->dev.parent;
2685
2686         if (parent && parent->driver == &cxgb4_driver.driver) {
2687                 switch (event) {
2688                 case NETDEV_UP:
2689                         cxgb4_clip_get(event_dev, (const u32 *)ifa, 1);
2690                         break;
2691                 case NETDEV_DOWN:
2692                         cxgb4_clip_release(event_dev, (const u32 *)ifa, 1);
2693                         break;
2694                 default:
2695                         break;
2696                 }
2697         }
2698         return NOTIFY_OK;
2699 }
2700
2701 static bool inet6addr_registered;
2702 static struct notifier_block cxgb4_inet6addr_notifier = {
2703         .notifier_call = cxgb4_inet6addr_handler
2704 };
2705
2706 static void update_clip(const struct adapter *adap)
2707 {
2708         int i;
2709         struct net_device *dev;
2710         int ret;
2711
2712         rcu_read_lock();
2713
2714         for (i = 0; i < MAX_NPORTS; i++) {
2715                 dev = adap->port[i];
2716                 ret = 0;
2717
2718                 if (dev)
2719                         ret = cxgb4_update_root_dev_clip(dev);
2720
2721                 if (ret < 0)
2722                         break;
2723         }
2724         rcu_read_unlock();
2725 }
2726 #endif /* IS_ENABLED(CONFIG_IPV6) */
2727
2728 /**
2729  *      cxgb_up - enable the adapter
2730  *      @adap: adapter being enabled
2731  *
2732  *      Called when the first port is enabled, this function performs the
2733  *      actions necessary to make an adapter operational, such as completing
2734  *      the initialization of HW modules, and enabling interrupts.
2735  *
2736  *      Must be called with the rtnl lock held.
2737  */
2738 static int cxgb_up(struct adapter *adap)
2739 {
2740         int err;
2741
2742         err = setup_sge_queues(adap);
2743         if (err)
2744                 goto out;
2745         err = setup_rss(adap);
2746         if (err)
2747                 goto freeq;
2748
2749         if (adap->flags & USING_MSIX) {
2750                 name_msix_vecs(adap);
2751                 err = request_irq(adap->msix_info[0].vec, t4_nondata_intr, 0,
2752                                   adap->msix_info[0].desc, adap);
2753                 if (err)
2754                         goto irq_err;
2755
2756                 err = request_msix_queue_irqs(adap);
2757                 if (err) {
2758                         free_irq(adap->msix_info[0].vec, adap);
2759                         goto irq_err;
2760                 }
2761         } else {
2762                 err = request_irq(adap->pdev->irq, t4_intr_handler(adap),
2763                                   (adap->flags & USING_MSI) ? 0 : IRQF_SHARED,
2764                                   adap->port[0]->name, adap);
2765                 if (err)
2766                         goto irq_err;
2767         }
2768         enable_rx(adap);
2769         t4_sge_start(adap);
2770         t4_intr_enable(adap);
2771         adap->flags |= FULL_INIT_DONE;
2772         notify_ulds(adap, CXGB4_STATE_UP);
2773 #if IS_ENABLED(CONFIG_IPV6)
2774         update_clip(adap);
2775 #endif
2776         /* Initialize hash mac addr list*/
2777         INIT_LIST_HEAD(&adap->mac_hlist);
2778  out:
2779         return err;
2780  irq_err:
2781         dev_err(adap->pdev_dev, "request_irq failed, err %d\n", err);
2782  freeq:
2783         t4_free_sge_resources(adap);
2784         goto out;
2785 }
2786
2787 static void cxgb_down(struct adapter *adapter)
2788 {
2789         cancel_work_sync(&adapter->tid_release_task);
2790         cancel_work_sync(&adapter->db_full_task);
2791         cancel_work_sync(&adapter->db_drop_task);
2792         adapter->tid_release_task_busy = false;
2793         adapter->tid_release_head = NULL;
2794
2795         t4_sge_stop(adapter);
2796         t4_free_sge_resources(adapter);
2797         adapter->flags &= ~FULL_INIT_DONE;
2798 }
2799
2800 /*
2801  * net_device operations
2802  */
2803 static int cxgb_open(struct net_device *dev)
2804 {
2805         int err;
2806         struct port_info *pi = netdev_priv(dev);
2807         struct adapter *adapter = pi->adapter;
2808
2809         netif_carrier_off(dev);
2810
2811         if (!(adapter->flags & FULL_INIT_DONE)) {
2812                 err = cxgb_up(adapter);
2813                 if (err < 0)
2814                         return err;
2815         }
2816
2817         err = link_start(dev);
2818         if (!err)
2819                 netif_tx_start_all_queues(dev);
2820         return err;
2821 }
2822
2823 static int cxgb_close(struct net_device *dev)
2824 {
2825         struct port_info *pi = netdev_priv(dev);
2826         struct adapter *adapter = pi->adapter;
2827
2828         netif_tx_stop_all_queues(dev);
2829         netif_carrier_off(dev);
2830         return t4_enable_vi(adapter, adapter->pf, pi->viid, false, false);
2831 }
2832
2833 /* Return an error number if the indicated filter isn't writable ...
2834  */
2835 static int writable_filter(struct filter_entry *f)
2836 {
2837         if (f->locked)
2838                 return -EPERM;
2839         if (f->pending)
2840                 return -EBUSY;
2841
2842         return 0;
2843 }
2844
2845 /* Delete the filter at the specified index (if valid).  The checks for all
2846  * the common problems with doing this like the filter being locked, currently
2847  * pending in another operation, etc.
2848  */
2849 static int delete_filter(struct adapter *adapter, unsigned int fidx)
2850 {
2851         struct filter_entry *f;
2852         int ret;
2853
2854         if (fidx >= adapter->tids.nftids + adapter->tids.nsftids)
2855                 return -EINVAL;
2856
2857         f = &adapter->tids.ftid_tab[fidx];
2858         ret = writable_filter(f);
2859         if (ret)
2860                 return ret;
2861         if (f->valid)
2862                 return del_filter_wr(adapter, fidx);
2863
2864         return 0;
2865 }
2866
2867 int cxgb4_create_server_filter(const struct net_device *dev, unsigned int stid,
2868                 __be32 sip, __be16 sport, __be16 vlan,
2869                 unsigned int queue, unsigned char port, unsigned char mask)
2870 {
2871         int ret;
2872         struct filter_entry *f;
2873         struct adapter *adap;
2874         int i;
2875         u8 *val;
2876
2877         adap = netdev2adap(dev);
2878
2879         /* Adjust stid to correct filter index */
2880         stid -= adap->tids.sftid_base;
2881         stid += adap->tids.nftids;
2882
2883         /* Check to make sure the filter requested is writable ...
2884          */
2885         f = &adap->tids.ftid_tab[stid];
2886         ret = writable_filter(f);
2887         if (ret)
2888                 return ret;
2889
2890         /* Clear out any old resources being used by the filter before
2891          * we start constructing the new filter.
2892          */
2893         if (f->valid)
2894                 clear_filter(adap, f);
2895
2896         /* Clear out filter specifications */
2897         memset(&f->fs, 0, sizeof(struct ch_filter_specification));
2898         f->fs.val.lport = cpu_to_be16(sport);
2899         f->fs.mask.lport  = ~0;
2900         val = (u8 *)&sip;
2901         if ((val[0] | val[1] | val[2] | val[3]) != 0) {
2902                 for (i = 0; i < 4; i++) {
2903                         f->fs.val.lip[i] = val[i];
2904                         f->fs.mask.lip[i] = ~0;
2905                 }
2906                 if (adap->params.tp.vlan_pri_map & PORT_F) {
2907                         f->fs.val.iport = port;
2908                         f->fs.mask.iport = mask;
2909                 }
2910         }
2911
2912         if (adap->params.tp.vlan_pri_map & PROTOCOL_F) {
2913                 f->fs.val.proto = IPPROTO_TCP;
2914                 f->fs.mask.proto = ~0;
2915         }
2916
2917         f->fs.dirsteer = 1;
2918         f->fs.iq = queue;
2919         /* Mark filter as locked */
2920         f->locked = 1;
2921         f->fs.rpttid = 1;
2922
2923         ret = set_filter_wr(adap, stid);
2924         if (ret) {
2925                 clear_filter(adap, f);
2926                 return ret;
2927         }
2928
2929         return 0;
2930 }
2931 EXPORT_SYMBOL(cxgb4_create_server_filter);
2932
2933 int cxgb4_remove_server_filter(const struct net_device *dev, unsigned int stid,
2934                 unsigned int queue, bool ipv6)
2935 {
2936         struct filter_entry *f;
2937         struct adapter *adap;
2938
2939         adap = netdev2adap(dev);
2940
2941         /* Adjust stid to correct filter index */
2942         stid -= adap->tids.sftid_base;
2943         stid += adap->tids.nftids;
2944
2945         f = &adap->tids.ftid_tab[stid];
2946         /* Unlock the filter */
2947         f->locked = 0;
2948
2949         return delete_filter(adap, stid);
2950 }
2951 EXPORT_SYMBOL(cxgb4_remove_server_filter);
2952
2953 static struct rtnl_link_stats64 *cxgb_get_stats(struct net_device *dev,
2954                                                 struct rtnl_link_stats64 *ns)
2955 {
2956         struct port_stats stats;
2957         struct port_info *p = netdev_priv(dev);
2958         struct adapter *adapter = p->adapter;
2959
2960         /* Block retrieving statistics during EEH error
2961          * recovery. Otherwise, the recovery might fail
2962          * and the PCI device will be removed permanently
2963          */
2964         spin_lock(&adapter->stats_lock);
2965         if (!netif_device_present(dev)) {
2966                 spin_unlock(&adapter->stats_lock);
2967                 return ns;
2968         }
2969         t4_get_port_stats_offset(adapter, p->tx_chan, &stats,
2970                                  &p->stats_base);
2971         spin_unlock(&adapter->stats_lock);
2972
2973         ns->tx_bytes   = stats.tx_octets;
2974         ns->tx_packets = stats.tx_frames;
2975         ns->rx_bytes   = stats.rx_octets;
2976         ns->rx_packets = stats.rx_frames;
2977         ns->multicast  = stats.rx_mcast_frames;
2978
2979         /* detailed rx_errors */
2980         ns->rx_length_errors = stats.rx_jabber + stats.rx_too_long +
2981                                stats.rx_runt;
2982         ns->rx_over_errors   = 0;
2983         ns->rx_crc_errors    = stats.rx_fcs_err;
2984         ns->rx_frame_errors  = stats.rx_symbol_err;
2985         ns->rx_fifo_errors   = stats.rx_ovflow0 + stats.rx_ovflow1 +
2986                                stats.rx_ovflow2 + stats.rx_ovflow3 +
2987                                stats.rx_trunc0 + stats.rx_trunc1 +
2988                                stats.rx_trunc2 + stats.rx_trunc3;
2989         ns->rx_missed_errors = 0;
2990
2991         /* detailed tx_errors */
2992         ns->tx_aborted_errors   = 0;
2993         ns->tx_carrier_errors   = 0;
2994         ns->tx_fifo_errors      = 0;
2995         ns->tx_heartbeat_errors = 0;
2996         ns->tx_window_errors    = 0;
2997
2998         ns->tx_errors = stats.tx_error_frames;
2999         ns->rx_errors = stats.rx_symbol_err + stats.rx_fcs_err +
3000                 ns->rx_length_errors + stats.rx_len_err + ns->rx_fifo_errors;
3001         return ns;
3002 }
3003
3004 static int cxgb_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
3005 {
3006         unsigned int mbox;
3007         int ret = 0, prtad, devad;
3008         struct port_info *pi = netdev_priv(dev);
3009         struct mii_ioctl_data *data = (struct mii_ioctl_data *)&req->ifr_data;
3010
3011         switch (cmd) {
3012         case SIOCGMIIPHY:
3013                 if (pi->mdio_addr < 0)
3014                         return -EOPNOTSUPP;
3015                 data->phy_id = pi->mdio_addr;
3016                 break;
3017         case SIOCGMIIREG:
3018         case SIOCSMIIREG:
3019                 if (mdio_phy_id_is_c45(data->phy_id)) {
3020                         prtad = mdio_phy_id_prtad(data->phy_id);
3021                         devad = mdio_phy_id_devad(data->phy_id);
3022                 } else if (data->phy_id < 32) {
3023                         prtad = data->phy_id;
3024                         devad = 0;
3025                         data->reg_num &= 0x1f;
3026                 } else
3027                         return -EINVAL;
3028
3029                 mbox = pi->adapter->pf;
3030                 if (cmd == SIOCGMIIREG)
3031                         ret = t4_mdio_rd(pi->adapter, mbox, prtad, devad,
3032                                          data->reg_num, &data->val_out);
3033                 else
3034                         ret = t4_mdio_wr(pi->adapter, mbox, prtad, devad,
3035                                          data->reg_num, data->val_in);
3036                 break;
3037         case SIOCGHWTSTAMP:
3038                 return copy_to_user(req->ifr_data, &pi->tstamp_config,
3039                                     sizeof(pi->tstamp_config)) ?
3040                         -EFAULT : 0;
3041         case SIOCSHWTSTAMP:
3042                 if (copy_from_user(&pi->tstamp_config, req->ifr_data,
3043                                    sizeof(pi->tstamp_config)))
3044                         return -EFAULT;
3045
3046                 switch (pi->tstamp_config.rx_filter) {
3047                 case HWTSTAMP_FILTER_NONE:
3048                         pi->rxtstamp = false;
3049                         break;
3050                 case HWTSTAMP_FILTER_ALL:
3051                         pi->rxtstamp = true;
3052                         break;
3053                 default:
3054                         pi->tstamp_config.rx_filter = HWTSTAMP_FILTER_NONE;
3055                         return -ERANGE;
3056                 }
3057
3058                 return copy_to_user(req->ifr_data, &pi->tstamp_config,
3059                                     sizeof(pi->tstamp_config)) ?
3060                         -EFAULT : 0;
3061         default:
3062                 return -EOPNOTSUPP;
3063         }
3064         return ret;
3065 }
3066
3067 static void cxgb_set_rxmode(struct net_device *dev)
3068 {
3069         /* unfortunately we can't return errors to the stack */
3070         set_rxmode(dev, -1, false);
3071 }
3072
3073 static int cxgb_change_mtu(struct net_device *dev, int new_mtu)
3074 {
3075         int ret;
3076         struct port_info *pi = netdev_priv(dev);
3077
3078         if (new_mtu < 81 || new_mtu > MAX_MTU)         /* accommodate SACK */
3079                 return -EINVAL;
3080         ret = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, new_mtu, -1,
3081                             -1, -1, -1, true);
3082         if (!ret)
3083                 dev->mtu = new_mtu;
3084         return ret;
3085 }
3086
3087 #ifdef CONFIG_PCI_IOV
3088 static int cxgb_set_vf_mac(struct net_device *dev, int vf, u8 *mac)
3089 {
3090         struct port_info *pi = netdev_priv(dev);
3091         struct adapter *adap = pi->adapter;
3092
3093         /* verify MAC addr is valid */
3094         if (!is_valid_ether_addr(mac)) {
3095                 dev_err(pi->adapter->pdev_dev,
3096                         "Invalid Ethernet address %pM for VF %d\n",
3097                         mac, vf);
3098                 return -EINVAL;
3099         }
3100
3101         dev_info(pi->adapter->pdev_dev,
3102                  "Setting MAC %pM on VF %d\n", mac, vf);
3103         return t4_set_vf_mac_acl(adap, vf + 1, 1, mac);
3104 }
3105 #endif
3106
3107 static int cxgb_set_mac_addr(struct net_device *dev, void *p)
3108 {
3109         int ret;
3110         struct sockaddr *addr = p;
3111         struct port_info *pi = netdev_priv(dev);
3112
3113         if (!is_valid_ether_addr(addr->sa_data))
3114                 return -EADDRNOTAVAIL;
3115
3116         ret = t4_change_mac(pi->adapter, pi->adapter->pf, pi->viid,
3117                             pi->xact_addr_filt, addr->sa_data, true, true);
3118         if (ret < 0)
3119                 return ret;
3120
3121         memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3122         pi->xact_addr_filt = ret;
3123         return 0;
3124 }
3125
3126 #ifdef CONFIG_NET_POLL_CONTROLLER
3127 static void cxgb_netpoll(struct net_device *dev)
3128 {
3129         struct port_info *pi = netdev_priv(dev);
3130         struct adapter *adap = pi->adapter;
3131
3132         if (adap->flags & USING_MSIX) {
3133                 int i;
3134                 struct sge_eth_rxq *rx = &adap->sge.ethrxq[pi->first_qset];
3135
3136                 for (i = pi->nqsets; i; i--, rx++)
3137                         t4_sge_intr_msix(0, &rx->rspq);
3138         } else
3139                 t4_intr_handler(adap)(0, adap);
3140 }
3141 #endif
3142
3143 static const struct net_device_ops cxgb4_netdev_ops = {
3144         .ndo_open             = cxgb_open,
3145         .ndo_stop             = cxgb_close,
3146         .ndo_start_xmit       = t4_eth_xmit,
3147         .ndo_select_queue     = cxgb_select_queue,
3148         .ndo_get_stats64      = cxgb_get_stats,
3149         .ndo_set_rx_mode      = cxgb_set_rxmode,
3150         .ndo_set_mac_address  = cxgb_set_mac_addr,
3151         .ndo_set_features     = cxgb_set_features,
3152         .ndo_validate_addr    = eth_validate_addr,
3153         .ndo_do_ioctl         = cxgb_ioctl,
3154         .ndo_change_mtu       = cxgb_change_mtu,
3155 #ifdef CONFIG_NET_POLL_CONTROLLER
3156         .ndo_poll_controller  = cxgb_netpoll,
3157 #endif
3158 #ifdef CONFIG_CHELSIO_T4_FCOE
3159         .ndo_fcoe_enable      = cxgb_fcoe_enable,
3160         .ndo_fcoe_disable     = cxgb_fcoe_disable,
3161 #endif /* CONFIG_CHELSIO_T4_FCOE */
3162 #ifdef CONFIG_NET_RX_BUSY_POLL
3163         .ndo_busy_poll        = cxgb_busy_poll,
3164 #endif
3165 };
3166
3167 static const struct net_device_ops cxgb4_mgmt_netdev_ops = {
3168 #ifdef CONFIG_PCI_IOV
3169         .ndo_set_vf_mac       = cxgb_set_vf_mac,
3170 #endif
3171 };
3172
3173 static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
3174 {
3175         struct adapter *adapter = netdev2adap(dev);
3176
3177         strlcpy(info->driver, cxgb4_driver_name, sizeof(info->driver));
3178         strlcpy(info->version, cxgb4_driver_version,
3179                 sizeof(info->version));
3180         strlcpy(info->bus_info, pci_name(adapter->pdev),
3181                 sizeof(info->bus_info));
3182 }
3183
3184 static const struct ethtool_ops cxgb4_mgmt_ethtool_ops = {
3185         .get_drvinfo       = get_drvinfo,
3186 };
3187
3188 void t4_fatal_err(struct adapter *adap)
3189 {
3190         t4_set_reg_field(adap, SGE_CONTROL_A, GLOBALENABLE_F, 0);
3191         t4_intr_disable(adap);
3192         dev_alert(adap->pdev_dev, "encountered fatal error, adapter stopped\n");
3193 }
3194
3195 static void setup_memwin(struct adapter *adap)
3196 {
3197         u32 nic_win_base = t4_get_util_window(adap);
3198
3199         t4_setup_memwin(adap, nic_win_base, MEMWIN_NIC);
3200 }
3201
3202 static void setup_memwin_rdma(struct adapter *adap)
3203 {
3204         if (adap->vres.ocq.size) {
3205                 u32 start;
3206                 unsigned int sz_kb;
3207
3208                 start = t4_read_pcie_cfg4(adap, PCI_BASE_ADDRESS_2);
3209                 start &= PCI_BASE_ADDRESS_MEM_MASK;
3210                 start += OCQ_WIN_OFFSET(adap->pdev, &adap->vres);
3211                 sz_kb = roundup_pow_of_two(adap->vres.ocq.size) >> 10;
3212                 t4_write_reg(adap,
3213                              PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 3),
3214                              start | BIR_V(1) | WINDOW_V(ilog2(sz_kb)));
3215                 t4_write_reg(adap,
3216                              PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3),
3217                              adap->vres.ocq.start);
3218                 t4_read_reg(adap,
3219                             PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3));
3220         }
3221 }
3222
3223 static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c)
3224 {
3225         u32 v;
3226         int ret;
3227
3228         /* get device capabilities */
3229         memset(c, 0, sizeof(*c));
3230         c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3231                                FW_CMD_REQUEST_F | FW_CMD_READ_F);
3232         c->cfvalid_to_len16 = htonl(FW_LEN16(*c));
3233         ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), c);
3234         if (ret < 0)
3235                 return ret;
3236
3237         c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3238                                FW_CMD_REQUEST_F | FW_CMD_WRITE_F);
3239         ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), NULL);
3240         if (ret < 0)
3241                 return ret;
3242
3243         ret = t4_config_glbl_rss(adap, adap->pf,
3244                                  FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL,
3245                                  FW_RSS_GLB_CONFIG_CMD_TNLMAPEN_F |
3246                                  FW_RSS_GLB_CONFIG_CMD_TNLALLLKP_F);
3247         if (ret < 0)
3248                 return ret;
3249
3250         ret = t4_cfg_pfvf(adap, adap->mbox, adap->pf, 0, adap->sge.egr_sz, 64,
3251                           MAX_INGQ, 0, 0, 4, 0xf, 0xf, 16, FW_CMD_CAP_PF,
3252                           FW_CMD_CAP_PF);
3253         if (ret < 0)
3254                 return ret;
3255
3256         t4_sge_init(adap);
3257
3258         /* tweak some settings */
3259         t4_write_reg(adap, TP_SHIFT_CNT_A, 0x64f8849);
3260         t4_write_reg(adap, ULP_RX_TDDP_PSZ_A, HPZ0_V(PAGE_SHIFT - 12));
3261         t4_write_reg(adap, TP_PIO_ADDR_A, TP_INGRESS_CONFIG_A);
3262         v = t4_read_reg(adap, TP_PIO_DATA_A);
3263         t4_write_reg(adap, TP_PIO_DATA_A, v & ~CSUM_HAS_PSEUDO_HDR_F);
3264
3265         /* first 4 Tx modulation queues point to consecutive Tx channels */
3266         adap->params.tp.tx_modq_map = 0xE4;
3267         t4_write_reg(adap, TP_TX_MOD_QUEUE_REQ_MAP_A,
3268                      TX_MOD_QUEUE_REQ_MAP_V(adap->params.tp.tx_modq_map));
3269
3270         /* associate each Tx modulation queue with consecutive Tx channels */
3271         v = 0x84218421;
3272         t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
3273                           &v, 1, TP_TX_SCHED_HDR_A);
3274         t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
3275                           &v, 1, TP_TX_SCHED_FIFO_A);
3276         t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
3277                           &v, 1, TP_TX_SCHED_PCMD_A);
3278
3279 #define T4_TX_MODQ_10G_WEIGHT_DEFAULT 16 /* in KB units */
3280         if (is_offload(adap)) {
3281                 t4_write_reg(adap, TP_TX_MOD_QUEUE_WEIGHT0_A,
3282                              TX_MODQ_WEIGHT0_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3283                              TX_MODQ_WEIGHT1_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3284                              TX_MODQ_WEIGHT2_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3285                              TX_MODQ_WEIGHT3_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
3286                 t4_write_reg(adap, TP_TX_MOD_CHANNEL_WEIGHT_A,
3287                              TX_MODQ_WEIGHT0_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3288                              TX_MODQ_WEIGHT1_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3289                              TX_MODQ_WEIGHT2_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3290                              TX_MODQ_WEIGHT3_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
3291         }
3292
3293         /* get basic stuff going */
3294         return t4_early_init(adap, adap->pf);
3295 }
3296
3297 /*
3298  * Max # of ATIDs.  The absolute HW max is 16K but we keep it lower.
3299  */
3300 #define MAX_ATIDS 8192U
3301
3302 /*
3303  * Phase 0 of initialization: contact FW, obtain config, perform basic init.
3304  *
3305  * If the firmware we're dealing with has Configuration File support, then
3306  * we use that to perform all configuration
3307  */
3308
3309 /*
3310  * Tweak configuration based on module parameters, etc.  Most of these have
3311  * defaults assigned to them by Firmware Configuration Files (if we're using
3312  * them) but need to be explicitly set if we're using hard-coded
3313  * initialization.  But even in the case of using Firmware Configuration
3314  * Files, we'd like to expose the ability to change these via module
3315  * parameters so these are essentially common tweaks/settings for
3316  * Configuration Files and hard-coded initialization ...
3317  */
3318 static int adap_init0_tweaks(struct adapter *adapter)
3319 {
3320         /*
3321          * Fix up various Host-Dependent Parameters like Page Size, Cache
3322          * Line Size, etc.  The firmware default is for a 4KB Page Size and
3323          * 64B Cache Line Size ...
3324          */
3325         t4_fixup_host_params(adapter, PAGE_SIZE, L1_CACHE_BYTES);
3326
3327         /*
3328          * Process module parameters which affect early initialization.
3329          */
3330         if (rx_dma_offset != 2 && rx_dma_offset != 0) {
3331                 dev_err(&adapter->pdev->dev,
3332                         "Ignoring illegal rx_dma_offset=%d, using 2\n",
3333                         rx_dma_offset);
3334                 rx_dma_offset = 2;
3335         }
3336         t4_set_reg_field(adapter, SGE_CONTROL_A,
3337                          PKTSHIFT_V(PKTSHIFT_M),
3338                          PKTSHIFT_V(rx_dma_offset));
3339
3340         /*
3341          * Don't include the "IP Pseudo Header" in CPL_RX_PKT checksums: Linux
3342          * adds the pseudo header itself.
3343          */
3344         t4_tp_wr_bits_indirect(adapter, TP_INGRESS_CONFIG_A,
3345                                CSUM_HAS_PSEUDO_HDR_F, 0);
3346
3347         return 0;
3348 }
3349
3350 /* 10Gb/s-BT PHY Support. chip-external 10Gb/s-BT PHYs are complex chips
3351  * unto themselves and they contain their own firmware to perform their
3352  * tasks ...
3353  */
3354 static int phy_aq1202_version(const u8 *phy_fw_data,
3355                               size_t phy_fw_size)
3356 {
3357         int offset;
3358
3359         /* At offset 0x8 you're looking for the primary image's
3360          * starting offset which is 3 Bytes wide
3361          *
3362          * At offset 0xa of the primary image, you look for the offset
3363          * of the DRAM segment which is 3 Bytes wide.
3364          *
3365          * The FW version is at offset 0x27e of the DRAM and is 2 Bytes
3366          * wide
3367          */
3368         #define be16(__p) (((__p)[0] << 8) | (__p)[1])
3369         #define le16(__p) ((__p)[0] | ((__p)[1] << 8))
3370         #define le24(__p) (le16(__p) | ((__p)[2] << 16))
3371
3372         offset = le24(phy_fw_data + 0x8) << 12;
3373         offset = le24(phy_fw_data + offset + 0xa);
3374         return be16(phy_fw_data + offset + 0x27e);
3375
3376         #undef be16
3377         #undef le16
3378         #undef le24
3379 }
3380
3381 static struct info_10gbt_phy_fw {
3382         unsigned int phy_fw_id;         /* PCI Device ID */
3383         char *phy_fw_file;              /* /lib/firmware/ PHY Firmware file */
3384         int (*phy_fw_version)(const u8 *phy_fw_data, size_t phy_fw_size);
3385         int phy_flash;                  /* Has FLASH for PHY Firmware */
3386 } phy_info_array[] = {
3387         {
3388                 PHY_AQ1202_DEVICEID,
3389                 PHY_AQ1202_FIRMWARE,
3390                 phy_aq1202_version,
3391                 1,
3392         },
3393         {
3394                 PHY_BCM84834_DEVICEID,
3395                 PHY_BCM84834_FIRMWARE,
3396                 NULL,
3397                 0,
3398         },
3399         { 0, NULL, NULL },
3400 };
3401
3402 static struct info_10gbt_phy_fw *find_phy_info(int devid)
3403 {
3404         int i;
3405
3406         for (i = 0; i < ARRAY_SIZE(phy_info_array); i++) {
3407                 if (phy_info_array[i].phy_fw_id == devid)
3408                         return &phy_info_array[i];
3409         }
3410         return NULL;
3411 }
3412
3413 /* Handle updating of chip-external 10Gb/s-BT PHY firmware.  This needs to
3414  * happen after the FW_RESET_CMD but before the FW_INITIALIZE_CMD.  On error
3415  * we return a negative error number.  If we transfer new firmware we return 1
3416  * (from t4_load_phy_fw()).  If we don't do anything we return 0.
3417  */
3418 static int adap_init0_phy(struct adapter *adap)
3419 {
3420         const struct firmware *phyf;
3421         int ret;
3422         struct info_10gbt_phy_fw *phy_info;
3423
3424         /* Use the device ID to determine which PHY file to flash.
3425          */
3426         phy_info = find_phy_info(adap->pdev->device);
3427         if (!phy_info) {
3428                 dev_warn(adap->pdev_dev,
3429                          "No PHY Firmware file found for this PHY\n");
3430                 return -EOPNOTSUPP;
3431         }
3432
3433         /* If we have a T4 PHY firmware file under /lib/firmware/cxgb4/, then
3434          * use that. The adapter firmware provides us with a memory buffer
3435          * where we can load a PHY firmware file from the host if we want to
3436          * override the PHY firmware File in flash.
3437          */
3438         ret = request_firmware_direct(&phyf, phy_info->phy_fw_file,
3439                                       adap->pdev_dev);
3440         if (ret < 0) {
3441                 /* For adapters without FLASH attached to PHY for their
3442                  * firmware, it's obviously a fatal error if we can't get the
3443                  * firmware to the adapter.  For adapters with PHY firmware
3444                  * FLASH storage, it's worth a warning if we can't find the
3445                  * PHY Firmware but we'll neuter the error ...
3446                  */
3447                 dev_err(adap->pdev_dev, "unable to find PHY Firmware image "
3448                         "/lib/firmware/%s, error %d\n",
3449                         phy_info->phy_fw_file, -ret);
3450                 if (phy_info->phy_flash) {
3451                         int cur_phy_fw_ver = 0;
3452
3453                         t4_phy_fw_ver(adap, &cur_phy_fw_ver);
3454                         dev_warn(adap->pdev_dev, "continuing with, on-adapter "
3455                                  "FLASH copy, version %#x\n", cur_phy_fw_ver);
3456                         ret = 0;
3457                 }
3458
3459                 return ret;
3460         }
3461
3462         /* Load PHY Firmware onto adapter.
3463          */
3464         ret = t4_load_phy_fw(adap, MEMWIN_NIC, &adap->win0_lock,
3465                              phy_info->phy_fw_version,
3466                              (u8 *)phyf->data, phyf->size);
3467         if (ret < 0)
3468                 dev_err(adap->pdev_dev, "PHY Firmware transfer error %d\n",
3469                         -ret);
3470         else if (ret > 0) {
3471                 int new_phy_fw_ver = 0;
3472
3473                 if (phy_info->phy_fw_version)
3474                         new_phy_fw_ver = phy_info->phy_fw_version(phyf->data,
3475                                                                   phyf->size);
3476                 dev_info(adap->pdev_dev, "Successfully transferred PHY "
3477                          "Firmware /lib/firmware/%s, version %#x\n",
3478                          phy_info->phy_fw_file, new_phy_fw_ver);
3479         }
3480
3481         release_firmware(phyf);
3482
3483         return ret;
3484 }
3485
3486 /*
3487  * Attempt to initialize the adapter via a Firmware Configuration File.
3488  */
3489 static int adap_init0_config(struct adapter *adapter, int reset)
3490 {
3491         struct fw_caps_config_cmd caps_cmd;
3492         const struct firmware *cf;
3493         unsigned long mtype = 0, maddr = 0;
3494         u32 finiver, finicsum, cfcsum;
3495         int ret;
3496         int config_issued = 0;
3497         char *fw_config_file, fw_config_file_path[256];
3498         char *config_name = NULL;
3499
3500         /*
3501          * Reset device if necessary.
3502          */
3503         if (reset) {
3504                 ret = t4_fw_reset(adapter, adapter->mbox,
3505                                   PIORSTMODE_F | PIORST_F);
3506                 if (ret < 0)
3507                         goto bye;
3508         }
3509
3510         /* If this is a 10Gb/s-BT adapter make sure the chip-external
3511          * 10Gb/s-BT PHYs have up-to-date firmware.  Note that this step needs
3512          * to be performed after any global adapter RESET above since some
3513          * PHYs only have local RAM copies of the PHY firmware.
3514          */
3515         if (is_10gbt_device(adapter->pdev->device)) {
3516                 ret = adap_init0_phy(adapter);
3517                 if (ret < 0)
3518                         goto bye;
3519         }
3520         /*
3521          * If we have a T4 configuration file under /lib/firmware/cxgb4/,
3522          * then use that.  Otherwise, use the configuration file stored
3523          * in the adapter flash ...
3524          */
3525         switch (CHELSIO_CHIP_VERSION(adapter->params.chip)) {
3526         case CHELSIO_T4:
3527                 fw_config_file = FW4_CFNAME;
3528                 break;
3529         case CHELSIO_T5:
3530                 fw_config_file = FW5_CFNAME;
3531                 break;
3532         case CHELSIO_T6:
3533                 fw_config_file = FW6_CFNAME;
3534                 break;
3535         default:
3536                 dev_err(adapter->pdev_dev, "Device %d is not supported\n",
3537                        adapter->pdev->device);
3538                 ret = -EINVAL;
3539                 goto bye;
3540         }
3541
3542         ret = request_firmware(&cf, fw_config_file, adapter->pdev_dev);
3543         if (ret < 0) {
3544                 config_name = "On FLASH";
3545                 mtype = FW_MEMTYPE_CF_FLASH;
3546                 maddr = t4_flash_cfg_addr(adapter);
3547         } else {
3548                 u32 params[7], val[7];
3549
3550                 sprintf(fw_config_file_path,
3551                         "/lib/firmware/%s", fw_config_file);
3552                 config_name = fw_config_file_path;
3553
3554                 if (cf->size >= FLASH_CFG_MAX_SIZE)
3555                         ret = -ENOMEM;
3556                 else {
3557                         params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3558                              FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
3559                         ret = t4_query_params(adapter, adapter->mbox,
3560                                               adapter->pf, 0, 1, params, val);
3561                         if (ret == 0) {
3562                                 /*
3563                                  * For t4_memory_rw() below addresses and
3564                                  * sizes have to be in terms of multiples of 4
3565                                  * bytes.  So, if the Configuration File isn't
3566                                  * a multiple of 4 bytes in length we'll have
3567                                  * to write that out separately since we can't
3568                                  * guarantee that the bytes following the
3569                                  * residual byte in the buffer returned by
3570                                  * request_firmware() are zeroed out ...
3571                                  */
3572                                 size_t resid = cf->size & 0x3;
3573                                 size_t size = cf->size & ~0x3;
3574                                 __be32 *data = (__be32 *)cf->data;
3575
3576                                 mtype = FW_PARAMS_PARAM_Y_G(val[0]);
3577                                 maddr = FW_PARAMS_PARAM_Z_G(val[0]) << 16;
3578
3579                                 spin_lock(&adapter->win0_lock);
3580                                 ret = t4_memory_rw(adapter, 0, mtype, maddr,
3581                                                    size, data, T4_MEMORY_WRITE);
3582                                 if (ret == 0 && resid != 0) {
3583                                         union {
3584                                                 __be32 word;
3585                                                 char buf[4];
3586                                         } last;
3587                                         int i;
3588
3589                                         last.word = data[size >> 2];
3590                                         for (i = resid; i < 4; i++)
3591                                                 last.buf[i] = 0;
3592                                         ret = t4_memory_rw(adapter, 0, mtype,
3593                                                            maddr + size,
3594                                                            4, &last.word,
3595                                                            T4_MEMORY_WRITE);
3596                                 }
3597                                 spin_unlock(&adapter->win0_lock);
3598                         }
3599                 }
3600
3601                 release_firmware(cf);
3602                 if (ret)
3603                         goto bye;
3604         }
3605
3606         /*
3607          * Issue a Capability Configuration command to the firmware to get it
3608          * to parse the Configuration File.  We don't use t4_fw_config_file()
3609          * because we want the ability to modify various features after we've
3610          * processed the configuration file ...
3611          */
3612         memset(&caps_cmd, 0, sizeof(caps_cmd));
3613         caps_cmd.op_to_write =
3614                 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3615                       FW_CMD_REQUEST_F |
3616                       FW_CMD_READ_F);
3617         caps_cmd.cfvalid_to_len16 =
3618                 htonl(FW_CAPS_CONFIG_CMD_CFVALID_F |
3619                       FW_CAPS_CONFIG_CMD_MEMTYPE_CF_V(mtype) |
3620                       FW_CAPS_CONFIG_CMD_MEMADDR64K_CF_V(maddr >> 16) |
3621                       FW_LEN16(caps_cmd));
3622         ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
3623                          &caps_cmd);
3624
3625         /* If the CAPS_CONFIG failed with an ENOENT (for a Firmware
3626          * Configuration File in FLASH), our last gasp effort is to use the
3627          * Firmware Configuration File which is embedded in the firmware.  A
3628          * very few early versions of the firmware didn't have one embedded
3629          * but we can ignore those.
3630          */
3631         if (ret == -ENOENT) {
3632                 memset(&caps_cmd, 0, sizeof(caps_cmd));
3633                 caps_cmd.op_to_write =
3634                         htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3635                                         FW_CMD_REQUEST_F |
3636                                         FW_CMD_READ_F);
3637                 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
3638                 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd,
3639                                 sizeof(caps_cmd), &caps_cmd);
3640                 config_name = "Firmware Default";
3641         }
3642
3643         config_issued = 1;
3644         if (ret < 0)
3645                 goto bye;
3646
3647         finiver = ntohl(caps_cmd.finiver);
3648         finicsum = ntohl(caps_cmd.finicsum);
3649         cfcsum = ntohl(caps_cmd.cfcsum);
3650         if (finicsum != cfcsum)
3651                 dev_warn(adapter->pdev_dev, "Configuration File checksum "\
3652                          "mismatch: [fini] csum=%#x, computed csum=%#x\n",
3653                          finicsum, cfcsum);
3654
3655         /*
3656          * And now tell the firmware to use the configuration we just loaded.
3657          */
3658         caps_cmd.op_to_write =
3659                 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3660                       FW_CMD_REQUEST_F |
3661                       FW_CMD_WRITE_F);
3662         caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
3663         ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
3664                          NULL);
3665         if (ret < 0)
3666                 goto bye;
3667
3668         /*
3669          * Tweak configuration based on system architecture, module
3670          * parameters, etc.
3671          */
3672         ret = adap_init0_tweaks(adapter);
3673         if (ret < 0)
3674                 goto bye;
3675
3676         /*
3677          * And finally tell the firmware to initialize itself using the
3678          * parameters from the Configuration File.
3679          */
3680         ret = t4_fw_initialize(adapter, adapter->mbox);
3681         if (ret < 0)
3682                 goto bye;
3683
3684         /* Emit Firmware Configuration File information and return
3685          * successfully.
3686          */
3687         dev_info(adapter->pdev_dev, "Successfully configured using Firmware "\
3688                  "Configuration File \"%s\", version %#x, computed checksum %#x\n",
3689                  config_name, finiver, cfcsum);
3690         return 0;
3691
3692         /*
3693          * Something bad happened.  Return the error ...  (If the "error"
3694          * is that there's no Configuration File on the adapter we don't
3695          * want to issue a warning since this is fairly common.)
3696          */
3697 bye:
3698         if (config_issued && ret != -ENOENT)
3699                 dev_warn(adapter->pdev_dev, "\"%s\" configuration file error %d\n",
3700                          config_name, -ret);
3701         return ret;
3702 }
3703
3704 static struct fw_info fw_info_array[] = {
3705         {
3706                 .chip = CHELSIO_T4,
3707                 .fs_name = FW4_CFNAME,
3708                 .fw_mod_name = FW4_FNAME,
3709                 .fw_hdr = {
3710                         .chip = FW_HDR_CHIP_T4,
3711                         .fw_ver = __cpu_to_be32(FW_VERSION(T4)),
3712                         .intfver_nic = FW_INTFVER(T4, NIC),
3713                         .intfver_vnic = FW_INTFVER(T4, VNIC),
3714                         .intfver_ri = FW_INTFVER(T4, RI),
3715                         .intfver_iscsi = FW_INTFVER(T4, ISCSI),
3716                         .intfver_fcoe = FW_INTFVER(T4, FCOE),
3717                 },
3718         }, {
3719                 .chip = CHELSIO_T5,
3720                 .fs_name = FW5_CFNAME,
3721                 .fw_mod_name = FW5_FNAME,
3722                 .fw_hdr = {
3723                         .chip = FW_HDR_CHIP_T5,
3724                         .fw_ver = __cpu_to_be32(FW_VERSION(T5)),
3725                         .intfver_nic = FW_INTFVER(T5, NIC),
3726                         .intfver_vnic = FW_INTFVER(T5, VNIC),
3727                         .intfver_ri = FW_INTFVER(T5, RI),
3728                         .intfver_iscsi = FW_INTFVER(T5, ISCSI),
3729                         .intfver_fcoe = FW_INTFVER(T5, FCOE),
3730                 },
3731         }, {
3732                 .chip = CHELSIO_T6,
3733                 .fs_name = FW6_CFNAME,
3734                 .fw_mod_name = FW6_FNAME,
3735                 .fw_hdr = {
3736                         .chip = FW_HDR_CHIP_T6,
3737                         .fw_ver = __cpu_to_be32(FW_VERSION(T6)),
3738                         .intfver_nic = FW_INTFVER(T6, NIC),
3739                         .intfver_vnic = FW_INTFVER(T6, VNIC),
3740                         .intfver_ofld = FW_INTFVER(T6, OFLD),
3741                         .intfver_ri = FW_INTFVER(T6, RI),
3742                         .intfver_iscsipdu = FW_INTFVER(T6, ISCSIPDU),
3743                         .intfver_iscsi = FW_INTFVER(T6, ISCSI),
3744                         .intfver_fcoepdu = FW_INTFVER(T6, FCOEPDU),
3745                         .intfver_fcoe = FW_INTFVER(T6, FCOE),
3746                 },
3747         }
3748
3749 };
3750
3751 static struct fw_info *find_fw_info(int chip)
3752 {
3753         int i;
3754
3755         for (i = 0; i < ARRAY_SIZE(fw_info_array); i++) {
3756                 if (fw_info_array[i].chip == chip)
3757                         return &fw_info_array[i];
3758         }
3759         return NULL;
3760 }
3761
3762 /*
3763  * Phase 0 of initialization: contact FW, obtain config, perform basic init.
3764  */
3765 static int adap_init0(struct adapter *adap)
3766 {
3767         int ret;
3768         u32 v, port_vec;
3769         enum dev_state state;
3770         u32 params[7], val[7];
3771         struct fw_caps_config_cmd caps_cmd;
3772         int reset = 1;
3773
3774         /* Grab Firmware Device Log parameters as early as possible so we have
3775          * access to it for debugging, etc.
3776          */
3777         ret = t4_init_devlog_params(adap);
3778         if (ret < 0)
3779                 return ret;
3780
3781         /* Contact FW, advertising Master capability */
3782         ret = t4_fw_hello(adap, adap->mbox, adap->mbox,
3783                           is_kdump_kernel() ? MASTER_MUST : MASTER_MAY, &state);
3784         if (ret < 0) {
3785                 dev_err(adap->pdev_dev, "could not connect to FW, error %d\n",
3786                         ret);
3787                 return ret;
3788         }
3789         if (ret == adap->mbox)
3790                 adap->flags |= MASTER_PF;
3791
3792         /*
3793          * If we're the Master PF Driver and the device is uninitialized,
3794          * then let's consider upgrading the firmware ...  (We always want
3795          * to check the firmware version number in order to A. get it for
3796          * later reporting and B. to warn if the currently loaded firmware
3797          * is excessively mismatched relative to the driver.)
3798          */
3799         t4_get_fw_version(adap, &adap->params.fw_vers);
3800         t4_get_bs_version(adap, &adap->params.bs_vers);
3801         t4_get_tp_version(adap, &adap->params.tp_vers);
3802         t4_get_exprom_version(adap, &adap->params.er_vers);
3803
3804         ret = t4_check_fw_version(adap);
3805         /* If firmware is too old (not supported by driver) force an update. */
3806         if (ret)
3807                 state = DEV_STATE_UNINIT;
3808         if ((adap->flags & MASTER_PF) && state != DEV_STATE_INIT) {
3809                 struct fw_info *fw_info;
3810                 struct fw_hdr *card_fw;
3811                 const struct firmware *fw;
3812                 const u8 *fw_data = NULL;
3813                 unsigned int fw_size = 0;
3814
3815                 /* This is the firmware whose headers the driver was compiled
3816                  * against
3817                  */
3818                 fw_info = find_fw_info(CHELSIO_CHIP_VERSION(adap->params.chip));
3819                 if (fw_info == NULL) {
3820                         dev_err(adap->pdev_dev,
3821                                 "unable to get firmware info for chip %d.\n",
3822                                 CHELSIO_CHIP_VERSION(adap->params.chip));
3823                         return -EINVAL;
3824                 }
3825
3826                 /* allocate memory to read the header of the firmware on the
3827                  * card
3828                  */
3829                 card_fw = t4_alloc_mem(sizeof(*card_fw));
3830
3831                 /* Get FW from from /lib/firmware/ */
3832                 ret = request_firmware(&fw, fw_info->fw_mod_name,
3833                                        adap->pdev_dev);
3834                 if (ret < 0) {
3835                         dev_err(adap->pdev_dev,
3836                                 "unable to load firmware image %s, error %d\n",
3837                                 fw_info->fw_mod_name, ret);
3838                 } else {
3839                         fw_data = fw->data;
3840                         fw_size = fw->size;
3841                 }
3842
3843                 /* upgrade FW logic */
3844                 ret = t4_prep_fw(adap, fw_info, fw_data, fw_size, card_fw,
3845                                  state, &reset);
3846
3847                 /* Cleaning up */
3848                 release_firmware(fw);
3849                 t4_free_mem(card_fw);
3850
3851                 if (ret < 0)
3852                         goto bye;
3853         }
3854
3855         /*
3856          * Grab VPD parameters.  This should be done after we establish a
3857          * connection to the firmware since some of the VPD parameters
3858          * (notably the Core Clock frequency) are retrieved via requests to
3859          * the firmware.  On the other hand, we need these fairly early on
3860          * so we do this right after getting ahold of the firmware.
3861          */
3862         ret = t4_get_vpd_params(adap, &adap->params.vpd);
3863         if (ret < 0)
3864                 goto bye;
3865
3866         /*
3867          * Find out what ports are available to us.  Note that we need to do
3868          * this before calling adap_init0_no_config() since it needs nports
3869          * and portvec ...
3870          */
3871         v =
3872             FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3873             FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PORTVEC);
3874         ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1, &v, &port_vec);
3875         if (ret < 0)
3876                 goto bye;
3877
3878         adap->params.nports = hweight32(port_vec);
3879         adap->params.portvec = port_vec;
3880
3881         /* If the firmware is initialized already, emit a simply note to that
3882          * effect. Otherwise, it's time to try initializing the adapter.
3883          */
3884         if (state == DEV_STATE_INIT) {
3885                 dev_info(adap->pdev_dev, "Coming up as %s: "\
3886                          "Adapter already initialized\n",
3887                          adap->flags & MASTER_PF ? "MASTER" : "SLAVE");
3888         } else {
3889                 dev_info(adap->pdev_dev, "Coming up as MASTER: "\
3890                          "Initializing adapter\n");
3891
3892                 /* Find out whether we're dealing with a version of the
3893                  * firmware which has configuration file support.
3894                  */
3895                 params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3896                              FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
3897                 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1,
3898                                       params, val);
3899
3900                 /* If the firmware doesn't support Configuration Files,
3901                  * return an error.
3902                  */
3903                 if (ret < 0) {
3904                         dev_err(adap->pdev_dev, "firmware doesn't support "
3905                                 "Firmware Configuration Files\n");
3906                         goto bye;
3907                 }
3908
3909                 /* The firmware provides us with a memory buffer where we can
3910                  * load a Configuration File from the host if we want to
3911                  * override the Configuration File in flash.
3912                  */
3913                 ret = adap_init0_config(adap, reset);
3914                 if (ret == -ENOENT) {
3915                         dev_err(adap->pdev_dev, "no Configuration File "
3916                                 "present on adapter.\n");
3917                         goto bye;
3918                 }
3919                 if (ret < 0) {
3920                         dev_err(adap->pdev_dev, "could not initialize "
3921                                 "adapter, error %d\n", -ret);
3922                         goto bye;
3923                 }
3924         }
3925
3926         /* Give the SGE code a chance to pull in anything that it needs ...
3927          * Note that this must be called after we retrieve our VPD parameters
3928          * in order to know how to convert core ticks to seconds, etc.
3929          */
3930         ret = t4_sge_init(adap);
3931         if (ret < 0)
3932                 goto bye;
3933
3934         if (is_bypass_device(adap->pdev->device))
3935                 adap->params.bypass = 1;
3936
3937         /*
3938          * Grab some of our basic fundamental operating parameters.
3939          */
3940 #define FW_PARAM_DEV(param) \
3941         (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | \
3942         FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_##param))
3943
3944 #define FW_PARAM_PFVF(param) \
3945         FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_PFVF) | \
3946         FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_PFVF_##param)|  \
3947         FW_PARAMS_PARAM_Y_V(0) | \
3948         FW_PARAMS_PARAM_Z_V(0)
3949
3950         params[0] = FW_PARAM_PFVF(EQ_START);
3951         params[1] = FW_PARAM_PFVF(L2T_START);
3952         params[2] = FW_PARAM_PFVF(L2T_END);
3953         params[3] = FW_PARAM_PFVF(FILTER_START);
3954         params[4] = FW_PARAM_PFVF(FILTER_END);
3955         params[5] = FW_PARAM_PFVF(IQFLINT_START);
3956         ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params, val);
3957         if (ret < 0)
3958                 goto bye;
3959         adap->sge.egr_start = val[0];
3960         adap->l2t_start = val[1];
3961         adap->l2t_end = val[2];
3962         adap->tids.ftid_base = val[3];
3963         adap->tids.nftids = val[4] - val[3] + 1;
3964         adap->sge.ingr_start = val[5];
3965
3966         /* qids (ingress/egress) returned from firmware can be anywhere
3967          * in the range from EQ(IQFLINT)_START to EQ(IQFLINT)_END.
3968          * Hence driver needs to allocate memory for this range to
3969          * store the queue info. Get the highest IQFLINT/EQ index returned
3970          * in FW_EQ_*_CMD.alloc command.
3971          */
3972         params[0] = FW_PARAM_PFVF(EQ_END);
3973         params[1] = FW_PARAM_PFVF(IQFLINT_END);
3974         ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
3975         if (ret < 0)
3976                 goto bye;
3977         adap->sge.egr_sz = val[0] - adap->sge.egr_start + 1;
3978         adap->sge.ingr_sz = val[1] - adap->sge.ingr_start + 1;
3979
3980         adap->sge.egr_map = kcalloc(adap->sge.egr_sz,
3981                                     sizeof(*adap->sge.egr_map), GFP_KERNEL);
3982         if (!adap->sge.egr_map) {
3983                 ret = -ENOMEM;
3984                 goto bye;
3985         }
3986
3987         adap->sge.ingr_map = kcalloc(adap->sge.ingr_sz,
3988                                      sizeof(*adap->sge.ingr_map), GFP_KERNEL);
3989         if (!adap->sge.ingr_map) {
3990                 ret = -ENOMEM;
3991                 goto bye;
3992         }
3993
3994         /* Allocate the memory for the vaious egress queue bitmaps
3995          * ie starving_fl, txq_maperr and blocked_fl.
3996          */
3997         adap->sge.starving_fl = kcalloc(BITS_TO_LONGS(adap->sge.egr_sz),
3998                                         sizeof(long), GFP_KERNEL);
3999         if (!adap->sge.starving_fl) {
4000                 ret = -ENOMEM;
4001                 goto bye;
4002         }
4003
4004         adap->sge.txq_maperr = kcalloc(BITS_TO_LONGS(adap->sge.egr_sz),
4005                                        sizeof(long), GFP_KERNEL);
4006         if (!adap->sge.txq_maperr) {
4007                 ret = -ENOMEM;
4008                 goto bye;
4009         }
4010
4011 #ifdef CONFIG_DEBUG_FS
4012         adap->sge.blocked_fl = kcalloc(BITS_TO_LONGS(adap->sge.egr_sz),
4013                                        sizeof(long), GFP_KERNEL);
4014         if (!adap->sge.blocked_fl) {
4015                 ret = -ENOMEM;
4016                 goto bye;
4017         }
4018 #endif
4019
4020         params[0] = FW_PARAM_PFVF(CLIP_START);
4021         params[1] = FW_PARAM_PFVF(CLIP_END);
4022         ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
4023         if (ret < 0)
4024                 goto bye;
4025         adap->clipt_start = val[0];
4026         adap->clipt_end = val[1];
4027
4028         /* query params related to active filter region */
4029         params[0] = FW_PARAM_PFVF(ACTIVE_FILTER_START);
4030         params[1] = FW_PARAM_PFVF(ACTIVE_FILTER_END);
4031         ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
4032         /* If Active filter size is set we enable establishing
4033          * offload connection through firmware work request
4034          */
4035         if ((val[0] != val[1]) && (ret >= 0)) {
4036                 adap->flags |= FW_OFLD_CONN;
4037                 adap->tids.aftid_base = val[0];
4038                 adap->tids.aftid_end = val[1];
4039         }
4040
4041         /* If we're running on newer firmware, let it know that we're
4042          * prepared to deal with encapsulated CPL messages.  Older
4043          * firmware won't understand this and we'll just get
4044          * unencapsulated messages ...
4045          */
4046         params[0] = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
4047         val[0] = 1;
4048         (void)t4_set_params(adap, adap->mbox, adap->pf, 0, 1, params, val);
4049
4050         /*
4051          * Find out whether we're allowed to use the T5+ ULPTX MEMWRITE DSGL
4052          * capability.  Earlier versions of the firmware didn't have the
4053          * ULPTX_MEMWRITE_DSGL so we'll interpret a query failure as no
4054          * permission to use ULPTX MEMWRITE DSGL.
4055          */
4056         if (is_t4(adap->params.chip)) {
4057                 adap->params.ulptx_memwrite_dsgl = false;
4058         } else {
4059                 params[0] = FW_PARAM_DEV(ULPTX_MEMWRITE_DSGL);
4060                 ret = t4_query_params(adap, adap->mbox, adap->pf, 0,
4061                                       1, params, val);
4062                 adap->params.ulptx_memwrite_dsgl = (ret == 0 && val[0] != 0);
4063         }
4064
4065         /* See if FW supports FW_RI_FR_NSMR_TPTE_WR work request */
4066         params[0] = FW_PARAM_DEV(RI_FR_NSMR_TPTE_WR);
4067         ret = t4_query_params(adap, adap->mbox, adap->pf, 0,
4068                               1, params, val);
4069         adap->params.fr_nsmr_tpte_wr_support = (ret == 0 && val[0] != 0);
4070
4071         /*
4072          * Get device capabilities so we can determine what resources we need
4073          * to manage.
4074          */
4075         memset(&caps_cmd, 0, sizeof(caps_cmd));
4076         caps_cmd.op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
4077                                      FW_CMD_REQUEST_F | FW_CMD_READ_F);
4078         caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
4079         ret = t4_wr_mbox(adap, adap->mbox, &caps_cmd, sizeof(caps_cmd),
4080                          &caps_cmd);
4081         if (ret < 0)
4082                 goto bye;
4083
4084         if (caps_cmd.ofldcaps) {
4085                 /* query offload-related parameters */
4086                 params[0] = FW_PARAM_DEV(NTID);
4087                 params[1] = FW_PARAM_PFVF(SERVER_START);
4088                 params[2] = FW_PARAM_PFVF(SERVER_END);
4089                 params[3] = FW_PARAM_PFVF(TDDP_START);
4090                 params[4] = FW_PARAM_PFVF(TDDP_END);
4091                 params[5] = FW_PARAM_DEV(FLOWC_BUFFIFO_SZ);
4092                 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
4093                                       params, val);
4094                 if (ret < 0)
4095                         goto bye;
4096                 adap->tids.ntids = val[0];
4097                 adap->tids.natids = min(adap->tids.ntids / 2, MAX_ATIDS);
4098                 adap->tids.stid_base = val[1];
4099                 adap->tids.nstids = val[2] - val[1] + 1;
4100                 /*
4101                  * Setup server filter region. Divide the available filter
4102                  * region into two parts. Regular filters get 1/3rd and server
4103                  * filters get 2/3rd part. This is only enabled if workarond
4104                  * path is enabled.
4105                  * 1. For regular filters.
4106                  * 2. Server filter: This are special filters which are used
4107                  * to redirect SYN packets to offload queue.
4108                  */
4109                 if (adap->flags & FW_OFLD_CONN && !is_bypass(adap)) {
4110                         adap->tids.sftid_base = adap->tids.ftid_base +
4111                                         DIV_ROUND_UP(adap->tids.nftids, 3);
4112                         adap->tids.nsftids = adap->tids.nftids -
4113                                          DIV_ROUND_UP(adap->tids.nftids, 3);
4114                         adap->tids.nftids = adap->tids.sftid_base -
4115                                                 adap->tids.ftid_base;
4116                 }
4117                 adap->vres.ddp.start = val[3];
4118                 adap->vres.ddp.size = val[4] - val[3] + 1;
4119                 adap->params.ofldq_wr_cred = val[5];
4120
4121                 adap->params.offload = 1;
4122         }
4123         if (caps_cmd.rdmacaps) {
4124                 params[0] = FW_PARAM_PFVF(STAG_START);
4125                 params[1] = FW_PARAM_PFVF(STAG_END);
4126                 params[2] = FW_PARAM_PFVF(RQ_START);
4127                 params[3] = FW_PARAM_PFVF(RQ_END);
4128                 params[4] = FW_PARAM_PFVF(PBL_START);
4129                 params[5] = FW_PARAM_PFVF(PBL_END);
4130                 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
4131                                       params, val);
4132                 if (ret < 0)
4133                         goto bye;
4134                 adap->vres.stag.start = val[0];
4135                 adap->vres.stag.size = val[1] - val[0] + 1;
4136                 adap->vres.rq.start = val[2];
4137                 adap->vres.rq.size = val[3] - val[2] + 1;
4138                 adap->vres.pbl.start = val[4];
4139                 adap->vres.pbl.size = val[5] - val[4] + 1;
4140
4141                 params[0] = FW_PARAM_PFVF(SQRQ_START);
4142                 params[1] = FW_PARAM_PFVF(SQRQ_END);
4143                 params[2] = FW_PARAM_PFVF(CQ_START);
4144                 params[3] = FW_PARAM_PFVF(CQ_END);
4145                 params[4] = FW_PARAM_PFVF(OCQ_START);
4146                 params[5] = FW_PARAM_PFVF(OCQ_END);
4147                 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params,
4148                                       val);
4149                 if (ret < 0)
4150                         goto bye;
4151                 adap->vres.qp.start = val[0];
4152                 adap->vres.qp.size = val[1] - val[0] + 1;
4153                 adap->vres.cq.start = val[2];
4154                 adap->vres.cq.size = val[3] - val[2] + 1;
4155                 adap->vres.ocq.start = val[4];
4156                 adap->vres.ocq.size = val[5] - val[4] + 1;
4157
4158                 params[0] = FW_PARAM_DEV(MAXORDIRD_QP);
4159                 params[1] = FW_PARAM_DEV(MAXIRD_ADAPTER);
4160                 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params,
4161                                       val);
4162                 if (ret < 0) {
4163                         adap->params.max_ordird_qp = 8;
4164                         adap->params.max_ird_adapter = 32 * adap->tids.ntids;
4165                         ret = 0;
4166                 } else {
4167                         adap->params.max_ordird_qp = val[0];
4168                         adap->params.max_ird_adapter = val[1];
4169                 }
4170                 dev_info(adap->pdev_dev,
4171                          "max_ordird_qp %d max_ird_adapter %d\n",
4172                          adap->params.max_ordird_qp,
4173                          adap->params.max_ird_adapter);
4174         }
4175         if (caps_cmd.iscsicaps) {
4176                 params[0] = FW_PARAM_PFVF(ISCSI_START);
4177                 params[1] = FW_PARAM_PFVF(ISCSI_END);
4178                 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2,
4179                                       params, val);
4180                 if (ret < 0)
4181                         goto bye;
4182                 adap->vres.iscsi.start = val[0];
4183                 adap->vres.iscsi.size = val[1] - val[0] + 1;
4184         }
4185         if (caps_cmd.cryptocaps) {
4186                 /* Should query params here...TODO */
4187                 adap->params.crypto |= ULP_CRYPTO_LOOKASIDE;
4188                 adap->num_uld += 1;
4189         }
4190 #undef FW_PARAM_PFVF
4191 #undef FW_PARAM_DEV
4192
4193         /* The MTU/MSS Table is initialized by now, so load their values.  If
4194          * we're initializing the adapter, then we'll make any modifications
4195          * we want to the MTU/MSS Table and also initialize the congestion
4196          * parameters.
4197          */
4198         t4_read_mtu_tbl(adap, adap->params.mtus, NULL);
4199         if (state != DEV_STATE_INIT) {
4200                 int i;
4201
4202                 /* The default MTU Table contains values 1492 and 1500.
4203                  * However, for TCP, it's better to have two values which are
4204                  * a multiple of 8 +/- 4 bytes apart near this popular MTU.
4205                  * This allows us to have a TCP Data Payload which is a
4206                  * multiple of 8 regardless of what combination of TCP Options
4207                  * are in use (always a multiple of 4 bytes) which is
4208                  * important for performance reasons.  For instance, if no
4209                  * options are in use, then we have a 20-byte IP header and a
4210                  * 20-byte TCP header.  In this case, a 1500-byte MSS would
4211                  * result in a TCP Data Payload of 1500 - 40 == 1460 bytes
4212                  * which is not a multiple of 8.  So using an MSS of 1488 in
4213                  * this case results in a TCP Data Payload of 1448 bytes which
4214                  * is a multiple of 8.  On the other hand, if 12-byte TCP Time
4215                  * Stamps have been negotiated, then an MTU of 1500 bytes
4216                  * results in a TCP Data Payload of 1448 bytes which, as
4217                  * above, is a multiple of 8 bytes ...
4218                  */
4219                 for (i = 0; i < NMTUS; i++)
4220                         if (adap->params.mtus[i] == 1492) {
4221                                 adap->params.mtus[i] = 1488;
4222                                 break;
4223                         }
4224
4225                 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
4226                              adap->params.b_wnd);
4227         }
4228         t4_init_sge_params(adap);
4229         adap->flags |= FW_OK;
4230         t4_init_tp_params(adap);
4231         return 0;
4232
4233         /*
4234          * Something bad happened.  If a command timed out or failed with EIO
4235          * FW does not operate within its spec or something catastrophic
4236          * happened to HW/FW, stop issuing commands.
4237          */
4238 bye:
4239         kfree(adap->sge.egr_map);
4240         kfree(adap->sge.ingr_map);
4241         kfree(adap->sge.starving_fl);
4242         kfree(adap->sge.txq_maperr);
4243 #ifdef CONFIG_DEBUG_FS
4244         kfree(adap->sge.blocked_fl);
4245 #endif
4246         if (ret != -ETIMEDOUT && ret != -EIO)
4247                 t4_fw_bye(adap, adap->mbox);
4248         return ret;
4249 }
4250
4251 /* EEH callbacks */
4252
4253 static pci_ers_result_t eeh_err_detected(struct pci_dev *pdev,
4254                                          pci_channel_state_t state)
4255 {
4256         int i;
4257         struct adapter *adap = pci_get_drvdata(pdev);
4258
4259         if (!adap)
4260                 goto out;
4261
4262         rtnl_lock();
4263         adap->flags &= ~FW_OK;
4264         notify_ulds(adap, CXGB4_STATE_START_RECOVERY);
4265         spin_lock(&adap->stats_lock);
4266         for_each_port(adap, i) {
4267                 struct net_device *dev = adap->port[i];
4268
4269                 netif_device_detach(dev);
4270                 netif_carrier_off(dev);
4271         }
4272         spin_unlock(&adap->stats_lock);
4273         disable_interrupts(adap);
4274         if (adap->flags & FULL_INIT_DONE)
4275                 cxgb_down(adap);
4276         rtnl_unlock();
4277         if ((adap->flags & DEV_ENABLED)) {
4278                 pci_disable_device(pdev);
4279                 adap->flags &= ~DEV_ENABLED;
4280         }
4281 out:    return state == pci_channel_io_perm_failure ?
4282                 PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
4283 }
4284
4285 static pci_ers_result_t eeh_slot_reset(struct pci_dev *pdev)
4286 {
4287         int i, ret;
4288         struct fw_caps_config_cmd c;
4289         struct adapter *adap = pci_get_drvdata(pdev);
4290
4291         if (!adap) {
4292                 pci_restore_state(pdev);
4293                 pci_save_state(pdev);
4294                 return PCI_ERS_RESULT_RECOVERED;
4295         }
4296
4297         if (!(adap->flags & DEV_ENABLED)) {
4298                 if (pci_enable_device(pdev)) {
4299                         dev_err(&pdev->dev, "Cannot reenable PCI "
4300                                             "device after reset\n");
4301                         return PCI_ERS_RESULT_DISCONNECT;
4302                 }
4303                 adap->flags |= DEV_ENABLED;
4304         }
4305
4306         pci_set_master(pdev);
4307         pci_restore_state(pdev);
4308         pci_save_state(pdev);
4309         pci_cleanup_aer_uncorrect_error_status(pdev);
4310
4311         if (t4_wait_dev_ready(adap->regs) < 0)
4312                 return PCI_ERS_RESULT_DISCONNECT;
4313         if (t4_fw_hello(adap, adap->mbox, adap->pf, MASTER_MUST, NULL) < 0)
4314                 return PCI_ERS_RESULT_DISCONNECT;
4315         adap->flags |= FW_OK;
4316         if (adap_init1(adap, &c))
4317                 return PCI_ERS_RESULT_DISCONNECT;
4318
4319         for_each_port(adap, i) {
4320                 struct port_info *p = adap2pinfo(adap, i);
4321
4322                 ret = t4_alloc_vi(adap, adap->mbox, p->tx_chan, adap->pf, 0, 1,
4323                                   NULL, NULL);
4324                 if (ret < 0)
4325                         return PCI_ERS_RESULT_DISCONNECT;
4326                 p->viid = ret;
4327                 p->xact_addr_filt = -1;
4328         }
4329
4330         t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
4331                      adap->params.b_wnd);
4332         setup_memwin(adap);
4333         if (cxgb_up(adap))
4334                 return PCI_ERS_RESULT_DISCONNECT;
4335         return PCI_ERS_RESULT_RECOVERED;
4336 }
4337
4338 static void eeh_resume(struct pci_dev *pdev)
4339 {
4340         int i;
4341         struct adapter *adap = pci_get_drvdata(pdev);
4342
4343         if (!adap)
4344                 return;
4345
4346         rtnl_lock();
4347         for_each_port(adap, i) {
4348                 struct net_device *dev = adap->port[i];
4349
4350                 if (netif_running(dev)) {
4351                         link_start(dev);
4352                         cxgb_set_rxmode(dev);
4353                 }
4354                 netif_device_attach(dev);
4355         }
4356         rtnl_unlock();
4357 }
4358
4359 static const struct pci_error_handlers cxgb4_eeh = {
4360         .error_detected = eeh_err_detected,
4361         .slot_reset     = eeh_slot_reset,
4362         .resume         = eeh_resume,
4363 };
4364
4365 static inline bool is_x_10g_port(const struct link_config *lc)
4366 {
4367         return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 ||
4368                (lc->supported & FW_PORT_CAP_SPEED_40G) != 0;
4369 }
4370
4371 /*
4372  * Perform default configuration of DMA queues depending on the number and type
4373  * of ports we found and the number of available CPUs.  Most settings can be
4374  * modified by the admin prior to actual use.
4375  */
4376 static void cfg_queues(struct adapter *adap)
4377 {
4378         struct sge *s = &adap->sge;
4379         int i, n10g = 0, qidx = 0;
4380 #ifndef CONFIG_CHELSIO_T4_DCB
4381         int q10g = 0;
4382 #endif
4383         int ciq_size;
4384
4385         /* Reduce memory usage in kdump environment, disable all offload.
4386          */
4387         if (is_kdump_kernel()) {
4388                 adap->params.offload = 0;
4389                 adap->params.crypto = 0;
4390         } else if (adap->num_uld && uld_mem_alloc(adap)) {
4391                 adap->params.crypto = 0;
4392         }
4393
4394         for_each_port(adap, i)
4395                 n10g += is_x_10g_port(&adap2pinfo(adap, i)->link_cfg);
4396 #ifdef CONFIG_CHELSIO_T4_DCB
4397         /* For Data Center Bridging support we need to be able to support up
4398          * to 8 Traffic Priorities; each of which will be assigned to its
4399          * own TX Queue in order to prevent Head-Of-Line Blocking.
4400          */
4401         if (adap->params.nports * 8 > MAX_ETH_QSETS) {
4402                 dev_err(adap->pdev_dev, "MAX_ETH_QSETS=%d < %d!\n",
4403                         MAX_ETH_QSETS, adap->params.nports * 8);
4404                 BUG_ON(1);
4405         }
4406
4407         for_each_port(adap, i) {
4408                 struct port_info *pi = adap2pinfo(adap, i);
4409
4410                 pi->first_qset = qidx;
4411                 pi->nqsets = 8;
4412                 qidx += pi->nqsets;
4413         }
4414 #else /* !CONFIG_CHELSIO_T4_DCB */
4415         /*
4416          * We default to 1 queue per non-10G port and up to # of cores queues
4417          * per 10G port.
4418          */
4419         if (n10g)
4420                 q10g = (MAX_ETH_QSETS - (adap->params.nports - n10g)) / n10g;
4421         if (q10g > netif_get_num_default_rss_queues())
4422                 q10g = netif_get_num_default_rss_queues();
4423
4424         for_each_port(adap, i) {
4425                 struct port_info *pi = adap2pinfo(adap, i);
4426
4427                 pi->first_qset = qidx;
4428                 pi->nqsets = is_x_10g_port(&pi->link_cfg) ? q10g : 1;
4429                 qidx += pi->nqsets;
4430         }
4431 #endif /* !CONFIG_CHELSIO_T4_DCB */
4432
4433         s->ethqsets = qidx;
4434         s->max_ethqsets = qidx;   /* MSI-X may lower it later */
4435
4436         if (is_offload(adap)) {
4437                 /*
4438                  * For offload we use 1 queue/channel if all ports are up to 1G,
4439                  * otherwise we divide all available queues amongst the channels
4440                  * capped by the number of available cores.
4441                  */
4442                 if (n10g) {
4443                         i = min_t(int, ARRAY_SIZE(s->iscsirxq),
4444                                   num_online_cpus());
4445                         s->iscsiqsets = roundup(i, adap->params.nports);
4446                 } else
4447                         s->iscsiqsets = adap->params.nports;
4448                 /* For RDMA one Rx queue per channel suffices */
4449                 s->rdmaqs = adap->params.nports;
4450                 /* Try and allow at least 1 CIQ per cpu rounding down
4451                  * to the number of ports, with a minimum of 1 per port.
4452                  * A 2 port card in a 6 cpu system: 6 CIQs, 3 / port.
4453                  * A 4 port card in a 6 cpu system: 4 CIQs, 1 / port.
4454                  * A 4 port card in a 2 cpu system: 4 CIQs, 1 / port.
4455                  */
4456                 s->rdmaciqs = min_t(int, MAX_RDMA_CIQS, num_online_cpus());
4457                 s->rdmaciqs = (s->rdmaciqs / adap->params.nports) *
4458                                 adap->params.nports;
4459                 s->rdmaciqs = max_t(int, s->rdmaciqs, adap->params.nports);
4460
4461                 if (!is_t4(adap->params.chip))
4462                         s->niscsitq = s->iscsiqsets;
4463         }
4464
4465         for (i = 0; i < ARRAY_SIZE(s->ethrxq); i++) {
4466                 struct sge_eth_rxq *r = &s->ethrxq[i];
4467
4468                 init_rspq(adap, &r->rspq, 5, 10, 1024, 64);
4469                 r->fl.size = 72;
4470         }
4471
4472         for (i = 0; i < ARRAY_SIZE(s->ethtxq); i++)
4473                 s->ethtxq[i].q.size = 1024;
4474
4475         for (i = 0; i < ARRAY_SIZE(s->ctrlq); i++)
4476                 s->ctrlq[i].q.size = 512;
4477
4478         for (i = 0; i < ARRAY_SIZE(s->ofldtxq); i++)
4479                 s->ofldtxq[i].q.size = 1024;
4480
4481         for (i = 0; i < ARRAY_SIZE(s->iscsirxq); i++) {
4482                 struct sge_ofld_rxq *r = &s->iscsirxq[i];
4483
4484                 init_rspq(adap, &r->rspq, 5, 1, 1024, 64);
4485                 r->rspq.uld = CXGB4_ULD_ISCSI;
4486                 r->fl.size = 72;
4487         }
4488
4489         if (!is_t4(adap->params.chip)) {
4490                 for (i = 0; i < ARRAY_SIZE(s->iscsitrxq); i++) {
4491                         struct sge_ofld_rxq *r = &s->iscsitrxq[i];
4492
4493                         init_rspq(adap, &r->rspq, 5, 1, 1024, 64);
4494                         r->rspq.uld = CXGB4_ULD_ISCSIT;
4495                         r->fl.size = 72;
4496                 }
4497         }
4498
4499         for (i = 0; i < ARRAY_SIZE(s->rdmarxq); i++) {
4500                 struct sge_ofld_rxq *r = &s->rdmarxq[i];
4501
4502                 init_rspq(adap, &r->rspq, 5, 1, 511, 64);
4503                 r->rspq.uld = CXGB4_ULD_RDMA;
4504                 r->fl.size = 72;
4505         }
4506
4507         ciq_size = 64 + adap->vres.cq.size + adap->tids.nftids;
4508         if (ciq_size > SGE_MAX_IQ_SIZE) {
4509                 CH_WARN(adap, "CIQ size too small for available IQs\n");
4510                 ciq_size = SGE_MAX_IQ_SIZE;
4511         }
4512
4513         for (i = 0; i < ARRAY_SIZE(s->rdmaciq); i++) {
4514                 struct sge_ofld_rxq *r = &s->rdmaciq[i];
4515
4516                 init_rspq(adap, &r->rspq, 5, 1, ciq_size, 64);
4517                 r->rspq.uld = CXGB4_ULD_RDMA;
4518         }
4519
4520         init_rspq(adap, &s->fw_evtq, 0, 1, 1024, 64);
4521         init_rspq(adap, &s->intrq, 0, 1, 2 * MAX_INGQ, 64);
4522 }
4523
4524 /*
4525  * Reduce the number of Ethernet queues across all ports to at most n.
4526  * n provides at least one queue per port.
4527  */
4528 static void reduce_ethqs(struct adapter *adap, int n)
4529 {
4530         int i;
4531         struct port_info *pi;
4532
4533         while (n < adap->sge.ethqsets)
4534                 for_each_port(adap, i) {
4535                         pi = adap2pinfo(adap, i);
4536                         if (pi->nqsets > 1) {
4537                                 pi->nqsets--;
4538                                 adap->sge.ethqsets--;
4539                                 if (adap->sge.ethqsets <= n)
4540                                         break;
4541                         }
4542                 }
4543
4544         n = 0;
4545         for_each_port(adap, i) {
4546                 pi = adap2pinfo(adap, i);
4547                 pi->first_qset = n;
4548                 n += pi->nqsets;
4549         }
4550 }
4551
4552 static int get_msix_info(struct adapter *adap)
4553 {
4554         struct uld_msix_info *msix_info;
4555         int max_ingq = (MAX_OFLD_QSETS * adap->num_uld);
4556
4557         msix_info = kcalloc(max_ingq, sizeof(*msix_info), GFP_KERNEL);
4558         if (!msix_info)
4559                 return -ENOMEM;
4560
4561         adap->msix_bmap_ulds.msix_bmap = kcalloc(BITS_TO_LONGS(max_ingq),
4562                                                  sizeof(long), GFP_KERNEL);
4563         if (!adap->msix_bmap_ulds.msix_bmap) {
4564                 kfree(msix_info);
4565                 return -ENOMEM;
4566         }
4567         spin_lock_init(&adap->msix_bmap_ulds.lock);
4568         adap->msix_info_ulds = msix_info;
4569         return 0;
4570 }
4571
4572 static void free_msix_info(struct adapter *adap)
4573 {
4574         if (!adap->num_uld)
4575                 return;
4576
4577         kfree(adap->msix_info_ulds);
4578         kfree(adap->msix_bmap_ulds.msix_bmap);
4579 }
4580
4581 /* 2 MSI-X vectors needed for the FW queue and non-data interrupts */
4582 #define EXTRA_VECS 2
4583
4584 static int enable_msix(struct adapter *adap)
4585 {
4586         int ofld_need = 0, uld_need = 0;
4587         int i, j, want, need, allocated;
4588         struct sge *s = &adap->sge;
4589         unsigned int nchan = adap->params.nports;
4590         struct msix_entry *entries;
4591         int max_ingq = MAX_INGQ;
4592
4593         max_ingq += (MAX_OFLD_QSETS * adap->num_uld);
4594         entries = kmalloc(sizeof(*entries) * (max_ingq + 1),
4595                           GFP_KERNEL);
4596         if (!entries)
4597                 return -ENOMEM;
4598
4599         /* map for msix */
4600         if (is_pci_uld(adap) && get_msix_info(adap))
4601                 adap->params.crypto = 0;
4602
4603         for (i = 0; i < max_ingq + 1; ++i)
4604                 entries[i].entry = i;
4605
4606         want = s->max_ethqsets + EXTRA_VECS;
4607         if (is_offload(adap)) {
4608                 want += s->rdmaqs + s->rdmaciqs + s->iscsiqsets +
4609                         s->niscsitq;
4610                 /* need nchan for each possible ULD */
4611                 if (is_t4(adap->params.chip))
4612                         ofld_need = 3 * nchan;
4613                 else
4614                         ofld_need = 4 * nchan;
4615         }
4616         if (is_pci_uld(adap)) {
4617                 want += netif_get_num_default_rss_queues() * nchan;
4618                 uld_need = nchan;
4619         }
4620 #ifdef CONFIG_CHELSIO_T4_DCB
4621         /* For Data Center Bridging we need 8 Ethernet TX Priority Queues for
4622          * each port.
4623          */
4624         need = 8 * adap->params.nports + EXTRA_VECS + ofld_need + uld_need;
4625 #else
4626         need = adap->params.nports + EXTRA_VECS + ofld_need + uld_need;
4627 #endif
4628         allocated = pci_enable_msix_range(adap->pdev, entries, need, want);
4629         if (allocated < 0) {
4630                 dev_info(adap->pdev_dev, "not enough MSI-X vectors left,"
4631                          " not using MSI-X\n");
4632                 kfree(entries);
4633                 return allocated;
4634         }
4635
4636         /* Distribute available vectors to the various queue groups.
4637          * Every group gets its minimum requirement and NIC gets top
4638          * priority for leftovers.
4639          */
4640         i = allocated - EXTRA_VECS - ofld_need - uld_need;
4641         if (i < s->max_ethqsets) {
4642                 s->max_ethqsets = i;
4643                 if (i < s->ethqsets)
4644                         reduce_ethqs(adap, i);
4645         }
4646         if (is_pci_uld(adap)) {
4647                 if (allocated < want)
4648                         s->nqs_per_uld = nchan;
4649                 else
4650                         s->nqs_per_uld = netif_get_num_default_rss_queues() *
4651                                         nchan;
4652         }
4653
4654         if (is_offload(adap)) {
4655                 if (allocated < want) {
4656                         s->rdmaqs = nchan;
4657                         s->rdmaciqs = nchan;
4658
4659                         if (!is_t4(adap->params.chip))
4660                                 s->niscsitq = nchan;
4661                 }
4662
4663                 /* leftovers go to OFLD */
4664                 i = allocated - EXTRA_VECS - s->max_ethqsets -
4665                         s->rdmaqs - s->rdmaciqs - s->niscsitq;
4666                 if (is_pci_uld(adap))
4667                         i -= s->nqs_per_uld * adap->num_uld;
4668                 s->iscsiqsets = (i / nchan) * nchan;  /* round down */
4669
4670         }
4671
4672         for (i = 0; i < (allocated - (s->nqs_per_uld * adap->num_uld)); ++i)
4673                 adap->msix_info[i].vec = entries[i].vector;
4674         if (is_pci_uld(adap)) {
4675                 for (j = 0 ; i < allocated; ++i, j++)
4676                         adap->msix_info_ulds[j].vec = entries[i].vector;
4677                 adap->msix_bmap_ulds.mapsize = j;
4678         }
4679         dev_info(adap->pdev_dev, "%d MSI-X vectors allocated, "
4680                  "nic %d iscsi %d rdma cpl %d rdma ciq %d uld %d\n",
4681                  allocated, s->max_ethqsets, s->iscsiqsets, s->rdmaqs,
4682                  s->rdmaciqs, s->nqs_per_uld);
4683
4684         kfree(entries);
4685         return 0;
4686 }
4687
4688 #undef EXTRA_VECS
4689
4690 static int init_rss(struct adapter *adap)
4691 {
4692         unsigned int i;
4693         int err;
4694
4695         err = t4_init_rss_mode(adap, adap->mbox);
4696         if (err)
4697                 return err;
4698
4699         for_each_port(adap, i) {
4700                 struct port_info *pi = adap2pinfo(adap, i);
4701
4702                 pi->rss = kcalloc(pi->rss_size, sizeof(u16), GFP_KERNEL);
4703                 if (!pi->rss)
4704                         return -ENOMEM;
4705         }
4706         return 0;
4707 }
4708
4709 static int cxgb4_get_pcie_dev_link_caps(struct adapter *adap,
4710                                         enum pci_bus_speed *speed,
4711                                         enum pcie_link_width *width)
4712 {
4713         u32 lnkcap1, lnkcap2;
4714         int err1, err2;
4715
4716 #define  PCIE_MLW_CAP_SHIFT 4   /* start of MLW mask in link capabilities */
4717
4718         *speed = PCI_SPEED_UNKNOWN;
4719         *width = PCIE_LNK_WIDTH_UNKNOWN;
4720
4721         err1 = pcie_capability_read_dword(adap->pdev, PCI_EXP_LNKCAP,
4722                                           &lnkcap1);
4723         err2 = pcie_capability_read_dword(adap->pdev, PCI_EXP_LNKCAP2,
4724                                           &lnkcap2);
4725         if (!err2 && lnkcap2) { /* PCIe r3.0-compliant */
4726                 if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_8_0GB)
4727                         *speed = PCIE_SPEED_8_0GT;
4728                 else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_5_0GB)
4729                         *speed = PCIE_SPEED_5_0GT;
4730                 else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_2_5GB)
4731                         *speed = PCIE_SPEED_2_5GT;
4732         }
4733         if (!err1) {
4734                 *width = (lnkcap1 & PCI_EXP_LNKCAP_MLW) >> PCIE_MLW_CAP_SHIFT;
4735                 if (!lnkcap2) { /* pre-r3.0 */
4736                         if (lnkcap1 & PCI_EXP_LNKCAP_SLS_5_0GB)
4737                                 *speed = PCIE_SPEED_5_0GT;
4738                         else if (lnkcap1 & PCI_EXP_LNKCAP_SLS_2_5GB)
4739                                 *speed = PCIE_SPEED_2_5GT;
4740                 }
4741         }
4742
4743         if (*speed == PCI_SPEED_UNKNOWN || *width == PCIE_LNK_WIDTH_UNKNOWN)
4744                 return err1 ? err1 : err2 ? err2 : -EINVAL;
4745         return 0;
4746 }
4747
4748 static void cxgb4_check_pcie_caps(struct adapter *adap)
4749 {
4750         enum pcie_link_width width, width_cap;
4751         enum pci_bus_speed speed, speed_cap;
4752
4753 #define PCIE_SPEED_STR(speed) \
4754         (speed == PCIE_SPEED_8_0GT ? "8.0GT/s" : \
4755          speed == PCIE_SPEED_5_0GT ? "5.0GT/s" : \
4756          speed == PCIE_SPEED_2_5GT ? "2.5GT/s" : \
4757          "Unknown")
4758
4759         if (cxgb4_get_pcie_dev_link_caps(adap, &speed_cap, &width_cap)) {
4760                 dev_warn(adap->pdev_dev,
4761                          "Unable to determine PCIe device BW capabilities\n");
4762                 return;
4763         }
4764
4765         if (pcie_get_minimum_link(adap->pdev, &speed, &width) ||
4766             speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) {
4767                 dev_warn(adap->pdev_dev,
4768                          "Unable to determine PCI Express bandwidth.\n");
4769                 return;
4770         }
4771
4772         dev_info(adap->pdev_dev, "PCIe link speed is %s, device supports %s\n",
4773                  PCIE_SPEED_STR(speed), PCIE_SPEED_STR(speed_cap));
4774         dev_info(adap->pdev_dev, "PCIe link width is x%d, device supports x%d\n",
4775                  width, width_cap);
4776         if (speed < speed_cap || width < width_cap)
4777                 dev_info(adap->pdev_dev,
4778                          "A slot with more lanes and/or higher speed is "
4779                          "suggested for optimal performance.\n");
4780 }
4781
4782 /* Dump basic information about the adapter */
4783 static void print_adapter_info(struct adapter *adapter)
4784 {
4785         /* Device information */
4786         dev_info(adapter->pdev_dev, "Chelsio %s rev %d\n",
4787                  adapter->params.vpd.id,
4788                  CHELSIO_CHIP_RELEASE(adapter->params.chip));
4789         dev_info(adapter->pdev_dev, "S/N: %s, P/N: %s\n",
4790                  adapter->params.vpd.sn, adapter->params.vpd.pn);
4791
4792         /* Firmware Version */
4793         if (!adapter->params.fw_vers)
4794                 dev_warn(adapter->pdev_dev, "No firmware loaded\n");
4795         else
4796                 dev_info(adapter->pdev_dev, "Firmware version: %u.%u.%u.%u\n",
4797                          FW_HDR_FW_VER_MAJOR_G(adapter->params.fw_vers),
4798                          FW_HDR_FW_VER_MINOR_G(adapter->params.fw_vers),
4799                          FW_HDR_FW_VER_MICRO_G(adapter->params.fw_vers),
4800                          FW_HDR_FW_VER_BUILD_G(adapter->params.fw_vers));
4801
4802         /* Bootstrap Firmware Version. (Some adapters don't have Bootstrap
4803          * Firmware, so dev_info() is more appropriate here.)
4804          */
4805         if (!adapter->params.bs_vers)
4806                 dev_info(adapter->pdev_dev, "No bootstrap loaded\n");
4807         else
4808                 dev_info(adapter->pdev_dev, "Bootstrap version: %u.%u.%u.%u\n",
4809                          FW_HDR_FW_VER_MAJOR_G(adapter->params.bs_vers),
4810                          FW_HDR_FW_VER_MINOR_G(adapter->params.bs_vers),
4811                          FW_HDR_FW_VER_MICRO_G(adapter->params.bs_vers),
4812                          FW_HDR_FW_VER_BUILD_G(adapter->params.bs_vers));
4813
4814         /* TP Microcode Version */
4815         if (!adapter->params.tp_vers)
4816                 dev_warn(adapter->pdev_dev, "No TP Microcode loaded\n");
4817         else
4818                 dev_info(adapter->pdev_dev,
4819                          "TP Microcode version: %u.%u.%u.%u\n",
4820                          FW_HDR_FW_VER_MAJOR_G(adapter->params.tp_vers),
4821                          FW_HDR_FW_VER_MINOR_G(adapter->params.tp_vers),
4822                          FW_HDR_FW_VER_MICRO_G(adapter->params.tp_vers),
4823                          FW_HDR_FW_VER_BUILD_G(adapter->params.tp_vers));
4824
4825         /* Expansion ROM version */
4826         if (!adapter->params.er_vers)
4827                 dev_info(adapter->pdev_dev, "No Expansion ROM loaded\n");
4828         else
4829                 dev_info(adapter->pdev_dev,
4830                          "Expansion ROM version: %u.%u.%u.%u\n",
4831                          FW_HDR_FW_VER_MAJOR_G(adapter->params.er_vers),
4832                          FW_HDR_FW_VER_MINOR_G(adapter->params.er_vers),
4833                          FW_HDR_FW_VER_MICRO_G(adapter->params.er_vers),
4834                          FW_HDR_FW_VER_BUILD_G(adapter->params.er_vers));
4835
4836         /* Software/Hardware configuration */
4837         dev_info(adapter->pdev_dev, "Configuration: %sNIC %s, %s capable\n",
4838                  is_offload(adapter) ? "R" : "",
4839                  ((adapter->flags & USING_MSIX) ? "MSI-X" :
4840                   (adapter->flags & USING_MSI) ? "MSI" : ""),
4841                  is_offload(adapter) ? "Offload" : "non-Offload");
4842 }
4843
4844 static void print_port_info(const struct net_device *dev)
4845 {
4846         char buf[80];
4847         char *bufp = buf;
4848         const char *spd = "";
4849         const struct port_info *pi = netdev_priv(dev);
4850         const struct adapter *adap = pi->adapter;
4851
4852         if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_2_5GB)
4853                 spd = " 2.5 GT/s";
4854         else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_5_0GB)
4855                 spd = " 5 GT/s";
4856         else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_8_0GB)
4857                 spd = " 8 GT/s";
4858
4859         if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_100M)
4860                 bufp += sprintf(bufp, "100/");
4861         if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_1G)
4862                 bufp += sprintf(bufp, "1000/");
4863         if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_10G)
4864                 bufp += sprintf(bufp, "10G/");
4865         if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_40G)
4866                 bufp += sprintf(bufp, "40G/");
4867         if (bufp != buf)
4868                 --bufp;
4869         sprintf(bufp, "BASE-%s", t4_get_port_type_description(pi->port_type));
4870
4871         netdev_info(dev, "%s: Chelsio %s (%s) %s\n",
4872                     dev->name, adap->params.vpd.id, adap->name, buf);
4873 }
4874
4875 static void enable_pcie_relaxed_ordering(struct pci_dev *dev)
4876 {
4877         pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_RELAX_EN);
4878 }
4879
4880 /*
4881  * Free the following resources:
4882  * - memory used for tables
4883  * - MSI/MSI-X
4884  * - net devices
4885  * - resources FW is holding for us
4886  */
4887 static void free_some_resources(struct adapter *adapter)
4888 {
4889         unsigned int i;
4890
4891         t4_free_mem(adapter->l2t);
4892         t4_free_mem(adapter->tids.tid_tab);
4893         kfree(adapter->sge.egr_map);
4894         kfree(adapter->sge.ingr_map);
4895         kfree(adapter->sge.starving_fl);
4896         kfree(adapter->sge.txq_maperr);
4897 #ifdef CONFIG_DEBUG_FS
4898         kfree(adapter->sge.blocked_fl);
4899 #endif
4900         disable_msi(adapter);
4901
4902         for_each_port(adapter, i)
4903                 if (adapter->port[i]) {
4904                         struct port_info *pi = adap2pinfo(adapter, i);
4905
4906                         if (pi->viid != 0)
4907                                 t4_free_vi(adapter, adapter->mbox, adapter->pf,
4908                                            0, pi->viid);
4909                         kfree(adap2pinfo(adapter, i)->rss);
4910                         free_netdev(adapter->port[i]);
4911                 }
4912         if (adapter->flags & FW_OK)
4913                 t4_fw_bye(adapter, adapter->pf);
4914 }
4915
4916 #define TSO_FLAGS (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN)
4917 #define VLAN_FEAT (NETIF_F_SG | NETIF_F_IP_CSUM | TSO_FLAGS | \
4918                    NETIF_F_IPV6_CSUM | NETIF_F_HIGHDMA)
4919 #define SEGMENT_SIZE 128
4920
4921 static int get_chip_type(struct pci_dev *pdev, u32 pl_rev)
4922 {
4923         u16 device_id;
4924
4925         /* Retrieve adapter's device ID */
4926         pci_read_config_word(pdev, PCI_DEVICE_ID, &device_id);
4927
4928         switch (device_id >> 12) {
4929         case CHELSIO_T4:
4930                 return CHELSIO_CHIP_CODE(CHELSIO_T4, pl_rev);
4931         case CHELSIO_T5:
4932                 return CHELSIO_CHIP_CODE(CHELSIO_T5, pl_rev);
4933         case CHELSIO_T6:
4934                 return CHELSIO_CHIP_CODE(CHELSIO_T6, pl_rev);
4935         default:
4936                 dev_err(&pdev->dev, "Device %d is not supported\n",
4937                         device_id);
4938         }
4939         return -EINVAL;
4940 }
4941
4942 #ifdef CONFIG_PCI_IOV
4943 static int cxgb4_iov_configure(struct pci_dev *pdev, int num_vfs)
4944 {
4945         struct adapter *adap = pci_get_drvdata(pdev);
4946         int err = 0;
4947         int current_vfs = pci_num_vf(pdev);
4948         u32 pcie_fw;
4949
4950         pcie_fw = readl(adap->regs + PCIE_FW_A);
4951         /* Check if cxgb4 is the MASTER and fw is initialized */
4952         if (!(pcie_fw & PCIE_FW_INIT_F) ||
4953             !(pcie_fw & PCIE_FW_MASTER_VLD_F) ||
4954             PCIE_FW_MASTER_G(pcie_fw) != 4) {
4955                 dev_warn(&pdev->dev,
4956                          "cxgb4 driver needs to be MASTER to support SRIOV\n");
4957                 return -EOPNOTSUPP;
4958         }
4959
4960         /* If any of the VF's is already assigned to Guest OS, then
4961          * SRIOV for the same cannot be modified
4962          */
4963         if (current_vfs && pci_vfs_assigned(pdev)) {
4964                 dev_err(&pdev->dev,
4965                         "Cannot modify SR-IOV while VFs are assigned\n");
4966                 num_vfs = current_vfs;
4967                 return num_vfs;
4968         }
4969
4970         /* Disable SRIOV when zero is passed.
4971          * One needs to disable SRIOV before modifying it, else
4972          * stack throws the below warning:
4973          * " 'n' VFs already enabled. Disable before enabling 'm' VFs."
4974          */
4975         if (!num_vfs) {
4976                 pci_disable_sriov(pdev);
4977                 if (adap->port[0]->reg_state == NETREG_REGISTERED)
4978                         unregister_netdev(adap->port[0]);
4979                 return num_vfs;
4980         }
4981
4982         if (num_vfs != current_vfs) {
4983                 err = pci_enable_sriov(pdev, num_vfs);
4984                 if (err)
4985                         return err;
4986
4987                 if (adap->port[0]->reg_state == NETREG_UNINITIALIZED) {
4988                         err = register_netdev(adap->port[0]);
4989                         if (err < 0)
4990                                 pr_info("Unable to register VF mgmt netdev\n");
4991                 }
4992         }
4993         return num_vfs;
4994 }
4995 #endif
4996
4997 static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
4998 {
4999         int func, i, err, s_qpp, qpp, num_seg;
5000         struct port_info *pi;
5001         bool highdma = false;
5002         struct adapter *adapter = NULL;
5003         struct net_device *netdev;
5004 #ifdef CONFIG_PCI_IOV
5005         char name[IFNAMSIZ];
5006 #endif
5007         void __iomem *regs;
5008         u32 whoami, pl_rev;
5009         enum chip_type chip;
5010         static int adap_idx = 1;
5011
5012         printk_once(KERN_INFO "%s - version %s\n", DRV_DESC, DRV_VERSION);
5013
5014         err = pci_request_regions(pdev, KBUILD_MODNAME);
5015         if (err) {
5016                 /* Just info, some other driver may have claimed the device. */
5017                 dev_info(&pdev->dev, "cannot obtain PCI resources\n");
5018                 return err;
5019         }
5020
5021         err = pci_enable_device(pdev);
5022         if (err) {
5023                 dev_err(&pdev->dev, "cannot enable PCI device\n");
5024                 goto out_release_regions;
5025         }
5026
5027         regs = pci_ioremap_bar(pdev, 0);
5028         if (!regs) {
5029                 dev_err(&pdev->dev, "cannot map device registers\n");
5030                 err = -ENOMEM;
5031                 goto out_disable_device;
5032         }
5033
5034         err = t4_wait_dev_ready(regs);
5035         if (err < 0)
5036                 goto out_unmap_bar0;
5037
5038         /* We control everything through one PF */
5039         whoami = readl(regs + PL_WHOAMI_A);
5040         pl_rev = REV_G(readl(regs + PL_REV_A));
5041         chip = get_chip_type(pdev, pl_rev);
5042         func = CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5 ?
5043                 SOURCEPF_G(whoami) : T6_SOURCEPF_G(whoami);
5044         if (func != ent->driver_data) {
5045 #ifndef CONFIG_PCI_IOV
5046                 iounmap(regs);
5047 #endif
5048                 pci_disable_device(pdev);
5049                 pci_save_state(pdev);        /* to restore SR-IOV later */
5050                 goto sriov;
5051         }
5052
5053         if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
5054                 highdma = true;
5055                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
5056                 if (err) {
5057                         dev_err(&pdev->dev, "unable to obtain 64-bit DMA for "
5058                                 "coherent allocations\n");
5059                         goto out_unmap_bar0;
5060                 }
5061         } else {
5062                 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
5063                 if (err) {
5064                         dev_err(&pdev->dev, "no usable DMA configuration\n");
5065                         goto out_unmap_bar0;
5066                 }
5067         }
5068
5069         pci_enable_pcie_error_reporting(pdev);
5070         enable_pcie_relaxed_ordering(pdev);
5071         pci_set_master(pdev);
5072         pci_save_state(pdev);
5073
5074         adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
5075         if (!adapter) {
5076                 err = -ENOMEM;
5077                 goto out_unmap_bar0;
5078         }
5079         adap_idx++;
5080
5081         adapter->workq = create_singlethread_workqueue("cxgb4");
5082         if (!adapter->workq) {
5083                 err = -ENOMEM;
5084                 goto out_free_adapter;
5085         }
5086
5087         adapter->mbox_log = kzalloc(sizeof(*adapter->mbox_log) +
5088                                     (sizeof(struct mbox_cmd) *
5089                                      T4_OS_LOG_MBOX_CMDS),
5090                                     GFP_KERNEL);
5091         if (!adapter->mbox_log) {
5092                 err = -ENOMEM;
5093                 goto out_free_adapter;
5094         }
5095         adapter->mbox_log->size = T4_OS_LOG_MBOX_CMDS;
5096
5097         /* PCI device has been enabled */
5098         adapter->flags |= DEV_ENABLED;
5099
5100         adapter->regs = regs;
5101         adapter->pdev = pdev;
5102         adapter->pdev_dev = &pdev->dev;
5103         adapter->name = pci_name(pdev);
5104         adapter->mbox = func;
5105         adapter->pf = func;
5106         adapter->msg_enable = dflt_msg_enable;
5107         memset(adapter->chan_map, 0xff, sizeof(adapter->chan_map));
5108
5109         spin_lock_init(&adapter->stats_lock);
5110         spin_lock_init(&adapter->tid_release_lock);
5111         spin_lock_init(&adapter->win0_lock);
5112
5113         INIT_WORK(&adapter->tid_release_task, process_tid_release_list);
5114         INIT_WORK(&adapter->db_full_task, process_db_full);
5115         INIT_WORK(&adapter->db_drop_task, process_db_drop);
5116
5117         err = t4_prep_adapter(adapter);
5118         if (err)
5119                 goto out_free_adapter;
5120
5121
5122         if (!is_t4(adapter->params.chip)) {
5123                 s_qpp = (QUEUESPERPAGEPF0_S +
5124                         (QUEUESPERPAGEPF1_S - QUEUESPERPAGEPF0_S) *
5125                         adapter->pf);
5126                 qpp = 1 << QUEUESPERPAGEPF0_G(t4_read_reg(adapter,
5127                       SGE_EGRESS_QUEUES_PER_PAGE_PF_A) >> s_qpp);
5128                 num_seg = PAGE_SIZE / SEGMENT_SIZE;
5129
5130                 /* Each segment size is 128B. Write coalescing is enabled only
5131                  * when SGE_EGRESS_QUEUES_PER_PAGE_PF reg value for the
5132                  * queue is less no of segments that can be accommodated in
5133                  * a page size.
5134                  */
5135                 if (qpp > num_seg) {
5136                         dev_err(&pdev->dev,
5137                                 "Incorrect number of egress queues per page\n");
5138                         err = -EINVAL;
5139                         goto out_free_adapter;
5140                 }
5141                 adapter->bar2 = ioremap_wc(pci_resource_start(pdev, 2),
5142                 pci_resource_len(pdev, 2));
5143                 if (!adapter->bar2) {
5144                         dev_err(&pdev->dev, "cannot map device bar2 region\n");
5145                         err = -ENOMEM;
5146                         goto out_free_adapter;
5147                 }
5148         }
5149
5150         setup_memwin(adapter);
5151         err = adap_init0(adapter);
5152 #ifdef CONFIG_DEBUG_FS
5153         bitmap_zero(adapter->sge.blocked_fl, adapter->sge.egr_sz);
5154 #endif
5155         setup_memwin_rdma(adapter);
5156         if (err)
5157                 goto out_unmap_bar;
5158
5159         /* configure SGE_STAT_CFG_A to read WC stats */
5160         if (!is_t4(adapter->params.chip))
5161                 t4_write_reg(adapter, SGE_STAT_CFG_A, STATSOURCE_T5_V(7) |
5162                              (is_t5(adapter->params.chip) ? STATMODE_V(0) :
5163                               T6_STATMODE_V(0)));
5164
5165         for_each_port(adapter, i) {
5166                 netdev = alloc_etherdev_mq(sizeof(struct port_info),
5167                                            MAX_ETH_QSETS);
5168                 if (!netdev) {
5169                         err = -ENOMEM;
5170                         goto out_free_dev;
5171                 }
5172
5173                 SET_NETDEV_DEV(netdev, &pdev->dev);
5174
5175                 adapter->port[i] = netdev;
5176                 pi = netdev_priv(netdev);
5177                 pi->adapter = adapter;
5178                 pi->xact_addr_filt = -1;
5179                 pi->port_id = i;
5180                 netdev->irq = pdev->irq;
5181
5182                 netdev->hw_features = NETIF_F_SG | TSO_FLAGS |
5183                         NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
5184                         NETIF_F_RXCSUM | NETIF_F_RXHASH |
5185                         NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
5186                 if (highdma)
5187                         netdev->hw_features |= NETIF_F_HIGHDMA;
5188                 netdev->features |= netdev->hw_features;
5189                 netdev->vlan_features = netdev->features & VLAN_FEAT;
5190
5191                 netdev->priv_flags |= IFF_UNICAST_FLT;
5192
5193                 netdev->netdev_ops = &cxgb4_netdev_ops;
5194 #ifdef CONFIG_CHELSIO_T4_DCB
5195                 netdev->dcbnl_ops = &cxgb4_dcb_ops;
5196                 cxgb4_dcb_state_init(netdev);
5197 #endif
5198                 cxgb4_set_ethtool_ops(netdev);
5199         }
5200
5201         pci_set_drvdata(pdev, adapter);
5202
5203         if (adapter->flags & FW_OK) {
5204                 err = t4_port_init(adapter, func, func, 0);
5205                 if (err)
5206                         goto out_free_dev;
5207         } else if (adapter->params.nports == 1) {
5208                 /* If we don't have a connection to the firmware -- possibly
5209                  * because of an error -- grab the raw VPD parameters so we
5210                  * can set the proper MAC Address on the debug network
5211                  * interface that we've created.
5212                  */
5213                 u8 hw_addr[ETH_ALEN];
5214                 u8 *na = adapter->params.vpd.na;
5215
5216                 err = t4_get_raw_vpd_params(adapter, &adapter->params.vpd);
5217                 if (!err) {
5218                         for (i = 0; i < ETH_ALEN; i++)
5219                                 hw_addr[i] = (hex2val(na[2 * i + 0]) * 16 +
5220                                               hex2val(na[2 * i + 1]));
5221                         t4_set_hw_addr(adapter, 0, hw_addr);
5222                 }
5223         }
5224
5225         /* Configure queues and allocate tables now, they can be needed as
5226          * soon as the first register_netdev completes.
5227          */
5228         cfg_queues(adapter);
5229
5230         adapter->l2t = t4_init_l2t(adapter->l2t_start, adapter->l2t_end);
5231         if (!adapter->l2t) {
5232                 /* We tolerate a lack of L2T, giving up some functionality */
5233                 dev_warn(&pdev->dev, "could not allocate L2T, continuing\n");
5234                 adapter->params.offload = 0;
5235         }
5236
5237 #if IS_ENABLED(CONFIG_IPV6)
5238         if ((CHELSIO_CHIP_VERSION(adapter->params.chip) <= CHELSIO_T5) &&
5239             (!(t4_read_reg(adapter, LE_DB_CONFIG_A) & ASLIPCOMPEN_F))) {
5240                 /* CLIP functionality is not present in hardware,
5241                  * hence disable all offload features
5242                  */
5243                 dev_warn(&pdev->dev,
5244                          "CLIP not enabled in hardware, continuing\n");
5245                 adapter->params.offload = 0;
5246         } else {
5247                 adapter->clipt = t4_init_clip_tbl(adapter->clipt_start,
5248                                                   adapter->clipt_end);
5249                 if (!adapter->clipt) {
5250                         /* We tolerate a lack of clip_table, giving up
5251                          * some functionality
5252                          */
5253                         dev_warn(&pdev->dev,
5254                                  "could not allocate Clip table, continuing\n");
5255                         adapter->params.offload = 0;
5256                 }
5257         }
5258 #endif
5259         if (is_offload(adapter) && tid_init(&adapter->tids) < 0) {
5260                 dev_warn(&pdev->dev, "could not allocate TID table, "
5261                          "continuing\n");
5262                 adapter->params.offload = 0;
5263         }
5264
5265         if (is_offload(adapter)) {
5266                 if (t4_read_reg(adapter, LE_DB_CONFIG_A) & HASHEN_F) {
5267                         u32 hash_base, hash_reg;
5268
5269                         if (chip <= CHELSIO_T5) {
5270                                 hash_reg = LE_DB_TID_HASHBASE_A;
5271                                 hash_base = t4_read_reg(adapter, hash_reg);
5272                                 adapter->tids.hash_base = hash_base / 4;
5273                         } else {
5274                                 hash_reg = T6_LE_DB_HASH_TID_BASE_A;
5275                                 hash_base = t4_read_reg(adapter, hash_reg);
5276                                 adapter->tids.hash_base = hash_base;
5277                         }
5278                 }
5279         }
5280
5281         /* See what interrupts we'll be using */
5282         if (msi > 1 && enable_msix(adapter) == 0)
5283                 adapter->flags |= USING_MSIX;
5284         else if (msi > 0 && pci_enable_msi(pdev) == 0) {
5285                 adapter->flags |= USING_MSI;
5286                 if (msi > 1)
5287                         free_msix_info(adapter);
5288         }
5289
5290         /* check for PCI Express bandwidth capabiltites */
5291         cxgb4_check_pcie_caps(adapter);
5292
5293         err = init_rss(adapter);
5294         if (err)
5295                 goto out_free_dev;
5296
5297         /*
5298          * The card is now ready to go.  If any errors occur during device
5299          * registration we do not fail the whole card but rather proceed only
5300          * with the ports we manage to register successfully.  However we must
5301          * register at least one net device.
5302          */
5303         for_each_port(adapter, i) {
5304                 pi = adap2pinfo(adapter, i);
5305                 netif_set_real_num_tx_queues(adapter->port[i], pi->nqsets);
5306                 netif_set_real_num_rx_queues(adapter->port[i], pi->nqsets);
5307
5308                 err = register_netdev(adapter->port[i]);
5309                 if (err)
5310                         break;
5311                 adapter->chan_map[pi->tx_chan] = i;
5312                 print_port_info(adapter->port[i]);
5313         }
5314         if (i == 0) {
5315                 dev_err(&pdev->dev, "could not register any net devices\n");
5316                 goto out_free_dev;
5317         }
5318         if (err) {
5319                 dev_warn(&pdev->dev, "only %d net devices registered\n", i);
5320                 err = 0;
5321         }
5322
5323         if (cxgb4_debugfs_root) {
5324                 adapter->debugfs_root = debugfs_create_dir(pci_name(pdev),
5325                                                            cxgb4_debugfs_root);
5326                 setup_debugfs(adapter);
5327         }
5328
5329         /* PCIe EEH recovery on powerpc platforms needs fundamental reset */
5330         pdev->needs_freset = 1;
5331
5332         if (is_offload(adapter))
5333                 attach_ulds(adapter);
5334
5335         print_adapter_info(adapter);
5336         return 0;
5337
5338 sriov:
5339 #ifdef CONFIG_PCI_IOV
5340         if (func < ARRAY_SIZE(num_vf) && num_vf[func] > 0) {
5341                 dev_warn(&pdev->dev,
5342                          "Enabling SR-IOV VFs using the num_vf module "
5343                          "parameter is deprecated - please use the pci sysfs "
5344                          "interface instead.\n");
5345                 if (pci_enable_sriov(pdev, num_vf[func]) == 0)
5346                         dev_info(&pdev->dev,
5347                                  "instantiated %u virtual functions\n",
5348                                  num_vf[func]);
5349         }
5350
5351         adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
5352         if (!adapter) {
5353                 err = -ENOMEM;
5354                 goto free_pci_region;
5355         }
5356
5357         snprintf(name, IFNAMSIZ, "mgmtpf%d%d", adap_idx, func);
5358         netdev = alloc_netdev(0, name, NET_NAME_UNKNOWN, ether_setup);
5359         if (!netdev) {
5360                 err = -ENOMEM;
5361                 goto free_adapter;
5362         }
5363
5364         adapter->pdev = pdev;
5365         adapter->pdev_dev = &pdev->dev;
5366         adapter->name = pci_name(pdev);
5367         adapter->mbox = func;
5368         adapter->pf = func;
5369         adapter->regs = regs;
5370         adapter->mbox_log = kzalloc(sizeof(*adapter->mbox_log) +
5371                                     (sizeof(struct mbox_cmd) *
5372                                      T4_OS_LOG_MBOX_CMDS),
5373                                     GFP_KERNEL);
5374         if (!adapter->mbox_log) {
5375                 err = -ENOMEM;
5376                 goto free_netdevice;
5377         }
5378         pi = netdev_priv(netdev);
5379         pi->adapter = adapter;
5380         SET_NETDEV_DEV(netdev, &pdev->dev);
5381         pci_set_drvdata(pdev, adapter);
5382
5383         adapter->port[0] = netdev;
5384         netdev->netdev_ops = &cxgb4_mgmt_netdev_ops;
5385         netdev->ethtool_ops = &cxgb4_mgmt_ethtool_ops;
5386
5387         return 0;
5388
5389  free_netdevice:
5390         free_netdev(adapter->port[0]);
5391  free_adapter:
5392         kfree(adapter);
5393  free_pci_region:
5394         iounmap(regs);
5395         pci_disable_sriov(pdev);
5396         pci_release_regions(pdev);
5397         return err;
5398 #else
5399         return 0;
5400 #endif
5401
5402  out_free_dev:
5403         free_some_resources(adapter);
5404         if (adapter->flags & USING_MSIX)
5405                 free_msix_info(adapter);
5406         if (adapter->num_uld)
5407                 uld_mem_free(adapter);
5408  out_unmap_bar:
5409         if (!is_t4(adapter->params.chip))
5410                 iounmap(adapter->bar2);
5411  out_free_adapter:
5412         if (adapter->workq)
5413                 destroy_workqueue(adapter->workq);
5414
5415         kfree(adapter->mbox_log);
5416         kfree(adapter);
5417  out_unmap_bar0:
5418         iounmap(regs);
5419  out_disable_device:
5420         pci_disable_pcie_error_reporting(pdev);
5421         pci_disable_device(pdev);
5422  out_release_regions:
5423         pci_release_regions(pdev);
5424         return err;
5425 }
5426
5427 static void remove_one(struct pci_dev *pdev)
5428 {
5429         struct adapter *adapter = pci_get_drvdata(pdev);
5430
5431         if (!adapter) {
5432                 pci_release_regions(pdev);
5433                 return;
5434         }
5435
5436         if (adapter->pf == 4) {
5437                 int i;
5438
5439                 /* Tear down per-adapter Work Queue first since it can contain
5440                  * references to our adapter data structure.
5441                  */
5442                 destroy_workqueue(adapter->workq);
5443
5444                 if (is_offload(adapter))
5445                         detach_ulds(adapter);
5446
5447                 disable_interrupts(adapter);
5448
5449                 for_each_port(adapter, i)
5450                         if (adapter->port[i]->reg_state == NETREG_REGISTERED)
5451                                 unregister_netdev(adapter->port[i]);
5452
5453                 debugfs_remove_recursive(adapter->debugfs_root);
5454
5455                 /* If we allocated filters, free up state associated with any
5456                  * valid filters ...
5457                  */
5458                 if (adapter->tids.ftid_tab) {
5459                         struct filter_entry *f = &adapter->tids.ftid_tab[0];
5460                         for (i = 0; i < (adapter->tids.nftids +
5461                                         adapter->tids.nsftids); i++, f++)
5462                                 if (f->valid)
5463                                         clear_filter(adapter, f);
5464                 }
5465
5466                 if (adapter->flags & FULL_INIT_DONE)
5467                         cxgb_down(adapter);
5468
5469                 if (adapter->flags & USING_MSIX)
5470                         free_msix_info(adapter);
5471                 if (adapter->num_uld)
5472                         uld_mem_free(adapter);
5473                 free_some_resources(adapter);
5474 #if IS_ENABLED(CONFIG_IPV6)
5475                 t4_cleanup_clip_tbl(adapter);
5476 #endif
5477                 iounmap(adapter->regs);
5478                 if (!is_t4(adapter->params.chip))
5479                         iounmap(adapter->bar2);
5480                 pci_disable_pcie_error_reporting(pdev);
5481                 if ((adapter->flags & DEV_ENABLED)) {
5482                         pci_disable_device(pdev);
5483                         adapter->flags &= ~DEV_ENABLED;
5484                 }
5485                 pci_release_regions(pdev);
5486                 kfree(adapter->mbox_log);
5487                 synchronize_rcu();
5488                 kfree(adapter);
5489         }
5490 #ifdef CONFIG_PCI_IOV
5491         else {
5492                 if (adapter->port[0]->reg_state == NETREG_REGISTERED)
5493                         unregister_netdev(adapter->port[0]);
5494                 free_netdev(adapter->port[0]);
5495                 iounmap(adapter->regs);
5496                 kfree(adapter);
5497                 pci_disable_sriov(pdev);
5498                 pci_release_regions(pdev);
5499         }
5500 #endif
5501 }
5502
5503 static struct pci_driver cxgb4_driver = {
5504         .name     = KBUILD_MODNAME,
5505         .id_table = cxgb4_pci_tbl,
5506         .probe    = init_one,
5507         .remove   = remove_one,
5508         .shutdown = remove_one,
5509 #ifdef CONFIG_PCI_IOV
5510         .sriov_configure = cxgb4_iov_configure,
5511 #endif
5512         .err_handler = &cxgb4_eeh,
5513 };
5514
5515 static int __init cxgb4_init_module(void)
5516 {
5517         int ret;
5518
5519         /* Debugfs support is optional, just warn if this fails */
5520         cxgb4_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
5521         if (!cxgb4_debugfs_root)
5522                 pr_warn("could not create debugfs entry, continuing\n");
5523
5524         ret = pci_register_driver(&cxgb4_driver);
5525         if (ret < 0)
5526                 debugfs_remove(cxgb4_debugfs_root);
5527
5528 #if IS_ENABLED(CONFIG_IPV6)
5529         if (!inet6addr_registered) {
5530                 register_inet6addr_notifier(&cxgb4_inet6addr_notifier);
5531                 inet6addr_registered = true;
5532         }
5533 #endif
5534
5535         return ret;
5536 }
5537
5538 static void __exit cxgb4_cleanup_module(void)
5539 {
5540 #if IS_ENABLED(CONFIG_IPV6)
5541         if (inet6addr_registered) {
5542                 unregister_inet6addr_notifier(&cxgb4_inet6addr_notifier);
5543                 inet6addr_registered = false;
5544         }
5545 #endif
5546         pci_unregister_driver(&cxgb4_driver);
5547         debugfs_remove(cxgb4_debugfs_root);  /* NULL ok */
5548 }
5549
5550 module_init(cxgb4_init_module);
5551 module_exit(cxgb4_cleanup_module);