blob: 2e341bf60ed0cc4c93900e7fee47a5cd7061e9c3 [file] [log] [blame]
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001/*
2 * This file is part of the Chelsio T4 Ethernet driver for Linux.
3 *
Rahul Lakkireddyb72a32d2016-08-22 16:29:06 +05304 * Copyright (c) 2003-2016 Chelsio Communications, Inc. All rights reserved.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005 *
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>
Jiri Pirko01789342011-08-16 06:29:00 +000044#include <linux/if.h>
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000045#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>
Vipul Pandya01bcca62013-07-04 16:10:46 +053063#include <net/addrconf.h>
David S. Miller1ef80192014-11-10 13:27:49 -050064#include <net/bonding.h>
Anish Bhattb5a02f52015-01-14 15:17:34 -080065#include <net/addrconf.h>
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000066#include <asm/uaccess.h>
Hariprasad Shenaic5a8c0f2016-06-14 14:39:30 +053067#include <linux/crash_dump.h>
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000068
69#include "cxgb4.h"
70#include "t4_regs.h"
Hariprasad Shenaif612b812015-01-05 16:30:43 +053071#include "t4_values.h"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000072#include "t4_msg.h"
73#include "t4fw_api.h"
Hariprasad Shenaicd6c2f12015-01-27 20:12:52 +053074#include "t4fw_version.h"
Anish Bhatt688848b2014-06-19 21:37:13 -070075#include "cxgb4_dcb.h"
Hariprasad Shenaifd88b312014-11-07 09:35:23 +053076#include "cxgb4_debugfs.h"
Anish Bhattb5a02f52015-01-14 15:17:34 -080077#include "clip_tbl.h"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000078#include "l2t.h"
Rahul Lakkireddyb72a32d2016-08-22 16:29:06 +053079#include "sched.h"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000080
Hariprasad Shenai812034f2015-04-06 20:23:23 +053081char cxgb4_driver_name[] = KBUILD_MODNAME;
82
Vipul Pandya01bcca62013-07-04 16:10:46 +053083#ifdef DRV_VERSION
84#undef DRV_VERSION
85#endif
Santosh Rastapur3a7f8552013-03-14 05:08:55 +000086#define DRV_VERSION "2.0.0-ko"
Hariprasad Shenai812034f2015-04-06 20:23:23 +053087const char cxgb4_driver_version[] = DRV_VERSION;
Hariprasad Shenai52a5f842015-10-21 14:39:54 +053088#define DRV_DESC "Chelsio T4/T5/T6 Network Driver"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000089
Vipul Pandyaf2b7e782012-12-10 09:30:52 +000090/* Host shadow copy of ingress filter entry. This is in host native format
91 * and doesn't match the ordering or bit order, etc. of the hardware of the
92 * firmware command. The use of bit-field structure elements is purely to
93 * remind ourselves of the field size limitations and save memory in the case
94 * where the filter table is large.
95 */
96struct filter_entry {
97 /* Administrative fields for filter.
98 */
99 u32 valid:1; /* filter allocated and valid */
100 u32 locked:1; /* filter is administratively locked */
101
102 u32 pending:1; /* filter action is pending firmware reply */
103 u32 smtidx:8; /* Source MAC Table index for smac */
104 struct l2t_entry *l2t; /* Layer Two Table entry for dmac */
105
106 /* The filter itself. Most of this is a straight copy of information
107 * provided by the extended ioctl(). Some fields are translated to
108 * internal forms -- for instance the Ingress Queue ID passed in from
109 * the ioctl() is translated into the Absolute Ingress Queue ID.
110 */
111 struct ch_filter_specification fs;
112};
113
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000114#define DFLT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK | \
115 NETIF_MSG_TIMER | NETIF_MSG_IFDOWN | NETIF_MSG_IFUP |\
116 NETIF_MSG_RX_ERR | NETIF_MSG_TX_ERR)
117
Hariprasad Shenai3fedeab2014-11-25 08:33:58 +0530118/* Macros needed to support the PCI Device ID Table ...
119 */
120#define CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN \
Hariprasad Shenai768ffc62015-03-19 22:27:36 +0530121 static const struct pci_device_id cxgb4_pci_tbl[] = {
Hariprasad Shenai3fedeab2014-11-25 08:33:58 +0530122#define CH_PCI_DEVICE_ID_FUNCTION 0x4
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000123
Hariprasad Shenai3fedeab2014-11-25 08:33:58 +0530124/* Include PCI Device IDs for both PF4 and PF0-3 so our PCI probe() routine is
125 * called for both.
126 */
127#define CH_PCI_DEVICE_ID_FUNCTION2 0x0
128
129#define CH_PCI_ID_TABLE_ENTRY(devid) \
130 {PCI_VDEVICE(CHELSIO, (devid)), 4}
131
132#define CH_PCI_DEVICE_ID_TABLE_DEFINE_END \
133 { 0, } \
134 }
135
136#include "t4_pci_id_tbl.h"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000137
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530138#define FW4_FNAME "cxgb4/t4fw.bin"
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000139#define FW5_FNAME "cxgb4/t5fw.bin"
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +0530140#define FW6_FNAME "cxgb4/t6fw.bin"
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530141#define FW4_CFNAME "cxgb4/t4-config.txt"
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000142#define FW5_CFNAME "cxgb4/t5-config.txt"
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +0530143#define FW6_CFNAME "cxgb4/t6-config.txt"
Hariprasad Shenai01b69612015-05-22 21:58:21 +0530144#define PHY_AQ1202_FIRMWARE "cxgb4/aq1202_fw.cld"
145#define PHY_BCM84834_FIRMWARE "cxgb4/bcm8483.bin"
146#define PHY_AQ1202_DEVICEID 0x4409
147#define PHY_BCM84834_DEVICEID 0x4486
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000148
149MODULE_DESCRIPTION(DRV_DESC);
150MODULE_AUTHOR("Chelsio Communications");
151MODULE_LICENSE("Dual BSD/GPL");
152MODULE_VERSION(DRV_VERSION);
153MODULE_DEVICE_TABLE(pci, cxgb4_pci_tbl);
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530154MODULE_FIRMWARE(FW4_FNAME);
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000155MODULE_FIRMWARE(FW5_FNAME);
Hariprasad Shenai52a5f842015-10-21 14:39:54 +0530156MODULE_FIRMWARE(FW6_FNAME);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000157
Vipul Pandya636f9d32012-09-26 02:39:39 +0000158/*
159 * Normally we're willing to become the firmware's Master PF but will be happy
160 * if another PF has already become the Master and initialized the adapter.
161 * Setting "force_init" will cause this driver to forcibly establish itself as
162 * the Master PF and initialize the adapter.
163 */
164static uint force_init;
165
166module_param(force_init, uint, 0644);
Hariprasad Shenaid7d3e252015-12-24 16:24:53 +0530167MODULE_PARM_DESC(force_init, "Forcibly become Master PF and initialize adapter,"
168 "deprecated parameter");
Vipul Pandya13ee15d2012-09-26 02:39:40 +0000169
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000170static int dflt_msg_enable = DFLT_MSG_ENABLE;
171
172module_param(dflt_msg_enable, int, 0644);
Hariprasad Shenai8a21ec42016-04-05 09:52:21 +0530173MODULE_PARM_DESC(dflt_msg_enable, "Chelsio T4 default message enable bitmap, "
174 "deprecated parameter");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000175
176/*
177 * The driver uses the best interrupt scheme available on a platform in the
178 * order MSI-X, MSI, legacy INTx interrupts. This parameter determines which
179 * of these schemes the driver may consider as follows:
180 *
181 * msi = 2: choose from among all three options
182 * msi = 1: only consider MSI and INTx interrupts
183 * msi = 0: force INTx interrupts
184 */
185static int msi = 2;
186
187module_param(msi, int, 0644);
188MODULE_PARM_DESC(msi, "whether to use INTx (0), MSI (1) or MSI-X (2)");
189
190/*
Vipul Pandya636f9d32012-09-26 02:39:39 +0000191 * Normally we tell the chip to deliver Ingress Packets into our DMA buffers
192 * offset by 2 bytes in order to have the IP headers line up on 4-byte
193 * boundaries. This is a requirement for many architectures which will throw
194 * a machine check fault if an attempt is made to access one of the 4-byte IP
195 * header fields on a non-4-byte boundary. And it's a major performance issue
196 * even on some architectures which allow it like some implementations of the
197 * x86 ISA. However, some architectures don't mind this and for some very
198 * edge-case performance sensitive applications (like forwarding large volumes
199 * of small packets), setting this DMA offset to 0 will decrease the number of
200 * PCI-E Bus transfers enough to measurably affect performance.
201 */
202static int rx_dma_offset = 2;
203
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000204#ifdef CONFIG_PCI_IOV
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000205/* Configure the number of PCI-E Virtual Function which are to be instantiated
206 * on SR-IOV Capable Physical Functions.
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000207 */
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000208static unsigned int num_vf[NUM_OF_PF_WITH_SRIOV];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000209
210module_param_array(num_vf, uint, NULL, 0644);
Hariprasad Shenaib6244202016-06-14 14:39:31 +0530211MODULE_PARM_DESC(num_vf, "number of VFs for each of PFs 0-3, deprecated parameter - please use the pci sysfs interface.");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000212#endif
213
Anish Bhatt688848b2014-06-19 21:37:13 -0700214/* TX Queue select used to determine what algorithm to use for selecting TX
215 * queue. Select between the kernel provided function (select_queue=0) or user
216 * cxgb_select_queue function (select_queue=1)
217 *
218 * Default: select_queue=0
219 */
220static int select_queue;
221module_param(select_queue, int, 0644);
222MODULE_PARM_DESC(select_queue,
223 "Select between kernel provided method of selecting or driver method of selecting TX queue. Default is kernel method.");
224
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000225static struct dentry *cxgb4_debugfs_root;
226
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +0530227LIST_HEAD(adapter_list);
228DEFINE_MUTEX(uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +0530229/* Adapter list to be accessed from atomic context */
230static LIST_HEAD(adap_rcu_list);
231static DEFINE_SPINLOCK(adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000232static struct cxgb4_uld_info ulds[CXGB4_ULD_MAX];
Varun Prakashf2692d12016-02-14 23:02:40 +0530233static const char *const uld_str[] = { "RDMA", "iSCSI", "iSCSIT" };
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000234
235static void link_report(struct net_device *dev)
236{
237 if (!netif_carrier_ok(dev))
238 netdev_info(dev, "link down\n");
239 else {
240 static const char *fc[] = { "no", "Rx", "Tx", "Tx/Rx" };
241
Hariprasad Shenai85412252015-10-01 13:48:48 +0530242 const char *s;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000243 const struct port_info *p = netdev_priv(dev);
244
245 switch (p->link_cfg.speed) {
Ben Hutchingse8b39012014-02-23 00:03:24 +0000246 case 10000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000247 s = "10Gbps";
248 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000249 case 1000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000250 s = "1000Mbps";
251 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000252 case 100:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000253 s = "100Mbps";
254 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000255 case 40000:
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +0530256 s = "40Gbps";
257 break;
Hariprasad Shenai85412252015-10-01 13:48:48 +0530258 default:
259 pr_info("%s: unsupported speed: %d\n",
260 dev->name, p->link_cfg.speed);
261 return;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000262 }
263
264 netdev_info(dev, "link up, %s, full-duplex, %s PAUSE\n", s,
265 fc[p->link_cfg.fc]);
266 }
267}
268
Anish Bhatt688848b2014-06-19 21:37:13 -0700269#ifdef CONFIG_CHELSIO_T4_DCB
270/* Set up/tear down Data Center Bridging Priority mapping for a net device. */
271static void dcb_tx_queue_prio_enable(struct net_device *dev, int enable)
272{
273 struct port_info *pi = netdev_priv(dev);
274 struct adapter *adap = pi->adapter;
275 struct sge_eth_txq *txq = &adap->sge.ethtxq[pi->first_qset];
276 int i;
277
278 /* We use a simple mapping of Port TX Queue Index to DCB
279 * Priority when we're enabling DCB.
280 */
281 for (i = 0; i < pi->nqsets; i++, txq++) {
282 u32 name, value;
283 int err;
284
Hariprasad Shenai51678652014-11-21 12:52:02 +0530285 name = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
286 FW_PARAMS_PARAM_X_V(
287 FW_PARAMS_PARAM_DMAQ_EQ_DCBPRIO_ETH) |
288 FW_PARAMS_PARAM_YZ_V(txq->q.cntxt_id));
Anish Bhatt688848b2014-06-19 21:37:13 -0700289 value = enable ? i : 0xffffffff;
290
291 /* Since we can be called while atomic (from "interrupt
292 * level") we need to issue the Set Parameters Commannd
293 * without sleeping (timeout < 0).
294 */
Hariprasad Shenaib2612722015-05-27 22:30:24 +0530295 err = t4_set_params_timeout(adap, adap->mbox, adap->pf, 0, 1,
Hariprasad Shenai01b69612015-05-22 21:58:21 +0530296 &name, &value,
297 -FW_CMD_MAX_TIMEOUT);
Anish Bhatt688848b2014-06-19 21:37:13 -0700298
299 if (err)
300 dev_err(adap->pdev_dev,
301 "Can't %s DCB Priority on port %d, TX Queue %d: err=%d\n",
302 enable ? "set" : "unset", pi->port_id, i, -err);
Anish Bhatt10b00462014-08-07 16:14:03 -0700303 else
304 txq->dcb_prio = value;
Anish Bhatt688848b2014-06-19 21:37:13 -0700305 }
306}
307#endif /* CONFIG_CHELSIO_T4_DCB */
308
Hariprasad Shenai218d48e2016-05-05 11:05:39 +0530309int cxgb4_dcb_enabled(const struct net_device *dev)
310{
311#ifdef CONFIG_CHELSIO_T4_DCB
312 struct port_info *pi = netdev_priv(dev);
313
314 if (!pi->dcb.enabled)
315 return 0;
316
317 return ((pi->dcb.state == CXGB4_DCB_STATE_FW_ALLSYNCED) ||
318 (pi->dcb.state == CXGB4_DCB_STATE_HOST));
319#else
320 return 0;
321#endif
322}
323EXPORT_SYMBOL(cxgb4_dcb_enabled);
324
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000325void t4_os_link_changed(struct adapter *adapter, int port_id, int link_stat)
326{
327 struct net_device *dev = adapter->port[port_id];
328
329 /* Skip changes from disabled ports. */
330 if (netif_running(dev) && link_stat != netif_carrier_ok(dev)) {
331 if (link_stat)
332 netif_carrier_on(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700333 else {
334#ifdef CONFIG_CHELSIO_T4_DCB
Hariprasad Shenai218d48e2016-05-05 11:05:39 +0530335 if (cxgb4_dcb_enabled(dev)) {
336 cxgb4_dcb_state_init(dev);
337 dcb_tx_queue_prio_enable(dev, false);
338 }
Anish Bhatt688848b2014-06-19 21:37:13 -0700339#endif /* CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000340 netif_carrier_off(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700341 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000342
343 link_report(dev);
344 }
345}
346
347void t4_os_portmod_changed(const struct adapter *adap, int port_id)
348{
349 static const char *mod_str[] = {
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000350 NULL, "LR", "SR", "ER", "passive DA", "active DA", "LRM"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000351 };
352
353 const struct net_device *dev = adap->port[port_id];
354 const struct port_info *pi = netdev_priv(dev);
355
356 if (pi->mod_type == FW_PORT_MOD_TYPE_NONE)
357 netdev_info(dev, "port module unplugged\n");
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000358 else if (pi->mod_type < ARRAY_SIZE(mod_str))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000359 netdev_info(dev, "%s module inserted\n", mod_str[pi->mod_type]);
Hariprasad Shenaibe81a2d2016-04-26 20:10:25 +0530360 else if (pi->mod_type == FW_PORT_MOD_TYPE_NOTSUPPORTED)
361 netdev_info(dev, "%s: unsupported port module inserted\n",
362 dev->name);
363 else if (pi->mod_type == FW_PORT_MOD_TYPE_UNKNOWN)
364 netdev_info(dev, "%s: unknown port module inserted\n",
365 dev->name);
366 else if (pi->mod_type == FW_PORT_MOD_TYPE_ERROR)
367 netdev_info(dev, "%s: transceiver module error\n", dev->name);
368 else
369 netdev_info(dev, "%s: unknown module type %d inserted\n",
370 dev->name, pi->mod_type);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000371}
372
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530373int dbfifo_int_thresh = 10; /* 10 == 640 entry threshold */
374module_param(dbfifo_int_thresh, int, 0644);
375MODULE_PARM_DESC(dbfifo_int_thresh, "doorbell fifo interrupt threshold");
376
Vipul Pandya404d9e32012-10-08 02:59:43 +0000377/*
378 * usecs to sleep while draining the dbfifo
379 */
380static int dbfifo_drain_delay = 1000;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530381module_param(dbfifo_drain_delay, int, 0644);
382MODULE_PARM_DESC(dbfifo_drain_delay,
383 "usecs to sleep while draining the dbfifo");
384
Hariprasad Shenaifc08a012016-02-16 10:07:09 +0530385static inline int cxgb4_set_addr_hash(struct port_info *pi)
386{
387 struct adapter *adap = pi->adapter;
388 u64 vec = 0;
389 bool ucast = false;
390 struct hash_mac_addr *entry;
391
392 /* Calculate the hash vector for the updated list and program it */
393 list_for_each_entry(entry, &adap->mac_hlist, list) {
394 ucast |= is_unicast_ether_addr(entry->addr);
395 vec |= (1ULL << hash_mac_addr(entry->addr));
396 }
397 return t4_set_addr_hash(adap, adap->mbox, pi->viid, ucast,
398 vec, false);
399}
400
401static int cxgb4_mac_sync(struct net_device *netdev, const u8 *mac_addr)
402{
403 struct port_info *pi = netdev_priv(netdev);
404 struct adapter *adap = pi->adapter;
405 int ret;
406 u64 mhash = 0;
407 u64 uhash = 0;
408 bool free = false;
409 bool ucast = is_unicast_ether_addr(mac_addr);
410 const u8 *maclist[1] = {mac_addr};
411 struct hash_mac_addr *new_entry;
412
413 ret = t4_alloc_mac_filt(adap, adap->mbox, pi->viid, free, 1, maclist,
414 NULL, ucast ? &uhash : &mhash, false);
415 if (ret < 0)
416 goto out;
417 /* if hash != 0, then add the addr to hash addr list
418 * so on the end we will calculate the hash for the
419 * list and program it
420 */
421 if (uhash || mhash) {
422 new_entry = kzalloc(sizeof(*new_entry), GFP_ATOMIC);
423 if (!new_entry)
424 return -ENOMEM;
425 ether_addr_copy(new_entry->addr, mac_addr);
426 list_add_tail(&new_entry->list, &adap->mac_hlist);
427 ret = cxgb4_set_addr_hash(pi);
428 }
429out:
430 return ret < 0 ? ret : 0;
431}
432
433static int cxgb4_mac_unsync(struct net_device *netdev, const u8 *mac_addr)
434{
435 struct port_info *pi = netdev_priv(netdev);
436 struct adapter *adap = pi->adapter;
437 int ret;
438 const u8 *maclist[1] = {mac_addr};
439 struct hash_mac_addr *entry, *tmp;
440
441 /* If the MAC address to be removed is in the hash addr
442 * list, delete it from the list and update hash vector
443 */
444 list_for_each_entry_safe(entry, tmp, &adap->mac_hlist, list) {
445 if (ether_addr_equal(entry->addr, mac_addr)) {
446 list_del(&entry->list);
447 kfree(entry);
448 return cxgb4_set_addr_hash(pi);
449 }
450 }
451
452 ret = t4_free_mac_filt(adap, adap->mbox, pi->viid, 1, maclist, false);
453 return ret < 0 ? -EINVAL : 0;
454}
455
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000456/*
457 * Set Rx properties of a port, such as promiscruity, address filters, and MTU.
458 * If @mtu is -1 it is left unchanged.
459 */
460static int set_rxmode(struct net_device *dev, int mtu, bool sleep_ok)
461{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000462 struct port_info *pi = netdev_priv(dev);
Hariprasad Shenaifc08a012016-02-16 10:07:09 +0530463 struct adapter *adapter = pi->adapter;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000464
Hariprasad Shenaid01f7ab2016-06-14 14:39:32 +0530465 __dev_uc_sync(dev, cxgb4_mac_sync, cxgb4_mac_unsync);
466 __dev_mc_sync(dev, cxgb4_mac_sync, cxgb4_mac_unsync);
Hariprasad Shenaifc08a012016-02-16 10:07:09 +0530467
468 return t4_set_rxmode(adapter, adapter->mbox, pi->viid, mtu,
469 (dev->flags & IFF_PROMISC) ? 1 : 0,
470 (dev->flags & IFF_ALLMULTI) ? 1 : 0, 1, -1,
471 sleep_ok);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000472}
473
474/**
475 * link_start - enable a port
476 * @dev: the port to enable
477 *
478 * Performs the MAC and PHY actions needed to enable a port.
479 */
480static int link_start(struct net_device *dev)
481{
482 int ret;
483 struct port_info *pi = netdev_priv(dev);
Hariprasad Shenaib2612722015-05-27 22:30:24 +0530484 unsigned int mb = pi->adapter->pf;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000485
486 /*
487 * We do not set address filters and promiscuity here, the stack does
488 * that step explicitly.
489 */
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000490 ret = t4_set_rxmode(pi->adapter, mb, pi->viid, dev->mtu, -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +0000491 !!(dev->features & NETIF_F_HW_VLAN_CTAG_RX), true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000492 if (ret == 0) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000493 ret = t4_change_mac(pi->adapter, mb, pi->viid,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000494 pi->xact_addr_filt, dev->dev_addr, true,
Dimitris Michailidisb6bd29e2010-05-18 10:07:11 +0000495 true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000496 if (ret >= 0) {
497 pi->xact_addr_filt = ret;
498 ret = 0;
499 }
500 }
501 if (ret == 0)
Hariprasad Shenai4036da92015-06-05 14:24:49 +0530502 ret = t4_link_l1cfg(pi->adapter, mb, pi->tx_chan,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000503 &pi->link_cfg);
Anish Bhatt30f00842014-08-05 16:05:23 -0700504 if (ret == 0) {
505 local_bh_disable();
Anish Bhatt688848b2014-06-19 21:37:13 -0700506 ret = t4_enable_vi_params(pi->adapter, mb, pi->viid, true,
507 true, CXGB4_DCB_ENABLED);
Anish Bhatt30f00842014-08-05 16:05:23 -0700508 local_bh_enable();
509 }
Anish Bhatt688848b2014-06-19 21:37:13 -0700510
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000511 return ret;
512}
513
Anish Bhatt688848b2014-06-19 21:37:13 -0700514#ifdef CONFIG_CHELSIO_T4_DCB
515/* Handle a Data Center Bridging update message from the firmware. */
516static void dcb_rpl(struct adapter *adap, const struct fw_port_cmd *pcmd)
517{
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530518 int port = FW_PORT_CMD_PORTID_G(ntohl(pcmd->op_to_portid));
Hariprasad Shenai134491f2016-04-26 20:10:27 +0530519 struct net_device *dev = adap->port[adap->chan_map[port]];
Anish Bhatt688848b2014-06-19 21:37:13 -0700520 int old_dcb_enabled = cxgb4_dcb_enabled(dev);
521 int new_dcb_enabled;
522
523 cxgb4_dcb_handle_fw_update(adap, pcmd);
524 new_dcb_enabled = cxgb4_dcb_enabled(dev);
525
526 /* If the DCB has become enabled or disabled on the port then we're
527 * going to need to set up/tear down DCB Priority parameters for the
528 * TX Queues associated with the port.
529 */
530 if (new_dcb_enabled != old_dcb_enabled)
531 dcb_tx_queue_prio_enable(dev, new_dcb_enabled);
532}
533#endif /* CONFIG_CHELSIO_T4_DCB */
534
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000535/* Clear a filter and release any of its resources that we own. This also
536 * clears the filter's "pending" status.
537 */
538static void clear_filter(struct adapter *adap, struct filter_entry *f)
539{
540 /* If the new or old filter have loopback rewriteing rules then we'll
541 * need to free any existing Layer Two Table (L2T) entries of the old
542 * filter rule. The firmware will handle freeing up any Source MAC
543 * Table (SMT) entries used for rewriting Source MAC Addresses in
544 * loopback rules.
545 */
546 if (f->l2t)
547 cxgb4_l2t_release(f->l2t);
548
549 /* The zeroing of the filter rule below clears the filter valid,
550 * pending, locked flags, l2t pointer, etc. so it's all we need for
551 * this operation.
552 */
553 memset(f, 0, sizeof(*f));
554}
555
556/* Handle a filter write/deletion reply.
557 */
558static void filter_rpl(struct adapter *adap, const struct cpl_set_tcb_rpl *rpl)
559{
560 unsigned int idx = GET_TID(rpl);
561 unsigned int nidx = idx - adap->tids.ftid_base;
562 unsigned int ret;
563 struct filter_entry *f;
564
565 if (idx >= adap->tids.ftid_base && nidx <
566 (adap->tids.nftids + adap->tids.nsftids)) {
567 idx = nidx;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800568 ret = TCB_COOKIE_G(rpl->cookie);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000569 f = &adap->tids.ftid_tab[idx];
570
571 if (ret == FW_FILTER_WR_FLT_DELETED) {
572 /* Clear the filter when we get confirmation from the
573 * hardware that the filter has been deleted.
574 */
575 clear_filter(adap, f);
576 } else if (ret == FW_FILTER_WR_SMT_TBL_FULL) {
577 dev_err(adap->pdev_dev, "filter %u setup failed due to full SMT\n",
578 idx);
579 clear_filter(adap, f);
580 } else if (ret == FW_FILTER_WR_FLT_ADDED) {
581 f->smtidx = (be64_to_cpu(rpl->oldval) >> 24) & 0xff;
582 f->pending = 0; /* asynchronous setup completed */
583 f->valid = 1;
584 } else {
585 /* Something went wrong. Issue a warning about the
586 * problem and clear everything out.
587 */
588 dev_err(adap->pdev_dev, "filter %u setup failed with error %u\n",
589 idx, ret);
590 clear_filter(adap, f);
591 }
592 }
593}
594
595/* Response queue handler for the FW event queue.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000596 */
597static int fwevtq_handler(struct sge_rspq *q, const __be64 *rsp,
598 const struct pkt_gl *gl)
599{
600 u8 opcode = ((const struct rss_header *)rsp)->opcode;
601
602 rsp++; /* skip RSS header */
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000603
604 /* FW can send EGR_UPDATEs encapsulated in a CPL_FW4_MSG.
605 */
606 if (unlikely(opcode == CPL_FW4_MSG &&
607 ((const struct cpl_fw4_msg *)rsp)->type == FW_TYPE_RSSCPL)) {
608 rsp++;
609 opcode = ((const struct rss_header *)rsp)->opcode;
610 rsp++;
611 if (opcode != CPL_SGE_EGR_UPDATE) {
612 dev_err(q->adap->pdev_dev, "unexpected FW4/CPL %#x on FW event queue\n"
613 , opcode);
614 goto out;
615 }
616 }
617
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000618 if (likely(opcode == CPL_SGE_EGR_UPDATE)) {
619 const struct cpl_sge_egr_update *p = (void *)rsp;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800620 unsigned int qid = EGR_QID_G(ntohl(p->opcode_qid));
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000621 struct sge_txq *txq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000622
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000623 txq = q->adap->sge.egr_map[qid - q->adap->sge.egr_start];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000624 txq->restarts++;
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000625 if ((u8 *)txq < (u8 *)q->adap->sge.ofldtxq) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000626 struct sge_eth_txq *eq;
627
628 eq = container_of(txq, struct sge_eth_txq, q);
629 netif_tx_wake_queue(eq->txq);
630 } else {
631 struct sge_ofld_txq *oq;
632
633 oq = container_of(txq, struct sge_ofld_txq, q);
634 tasklet_schedule(&oq->qresume_tsk);
635 }
636 } else if (opcode == CPL_FW6_MSG || opcode == CPL_FW4_MSG) {
637 const struct cpl_fw6_msg *p = (void *)rsp;
638
Anish Bhatt688848b2014-06-19 21:37:13 -0700639#ifdef CONFIG_CHELSIO_T4_DCB
640 const struct fw_port_cmd *pcmd = (const void *)p->data;
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530641 unsigned int cmd = FW_CMD_OP_G(ntohl(pcmd->op_to_portid));
Anish Bhatt688848b2014-06-19 21:37:13 -0700642 unsigned int action =
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530643 FW_PORT_CMD_ACTION_G(ntohl(pcmd->action_to_len16));
Anish Bhatt688848b2014-06-19 21:37:13 -0700644
645 if (cmd == FW_PORT_CMD &&
646 action == FW_PORT_ACTION_GET_PORT_INFO) {
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530647 int port = FW_PORT_CMD_PORTID_G(
Anish Bhatt688848b2014-06-19 21:37:13 -0700648 be32_to_cpu(pcmd->op_to_portid));
Hariprasad Shenai134491f2016-04-26 20:10:27 +0530649 struct net_device *dev =
650 q->adap->port[q->adap->chan_map[port]];
Anish Bhatt688848b2014-06-19 21:37:13 -0700651 int state_input = ((pcmd->u.info.dcbxdis_pkd &
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530652 FW_PORT_CMD_DCBXDIS_F)
Anish Bhatt688848b2014-06-19 21:37:13 -0700653 ? CXGB4_DCB_INPUT_FW_DISABLED
654 : CXGB4_DCB_INPUT_FW_ENABLED);
655
656 cxgb4_dcb_state_fsm(dev, state_input);
657 }
658
659 if (cmd == FW_PORT_CMD &&
660 action == FW_PORT_ACTION_L2_DCB_CFG)
661 dcb_rpl(q->adap, pcmd);
662 else
663#endif
664 if (p->type == 0)
665 t4_handle_fw_rpl(q->adap, p->data);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000666 } else if (opcode == CPL_L2T_WRITE_RPL) {
667 const struct cpl_l2t_write_rpl *p = (void *)rsp;
668
669 do_l2t_write_rpl(q->adap, p);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000670 } else if (opcode == CPL_SET_TCB_RPL) {
671 const struct cpl_set_tcb_rpl *p = (void *)rsp;
672
673 filter_rpl(q->adap, p);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000674 } else
675 dev_err(q->adap->pdev_dev,
676 "unexpected CPL %#x on FW event queue\n", opcode);
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000677out:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000678 return 0;
679}
680
Varun Prakash2337ba42016-02-14 23:02:41 +0530681/* Flush the aggregated lro sessions */
682static void uldrx_flush_handler(struct sge_rspq *q)
683{
684 if (ulds[q->uld].lro_flush)
685 ulds[q->uld].lro_flush(&q->lro_mgr);
686}
687
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000688/**
689 * uldrx_handler - response queue handler for ULD queues
690 * @q: the response queue that received the packet
691 * @rsp: the response queue descriptor holding the offload message
692 * @gl: the gather list of packet fragments
693 *
694 * Deliver an ingress offload packet to a ULD. All processing is done by
695 * the ULD, we just maintain statistics.
696 */
697static int uldrx_handler(struct sge_rspq *q, const __be64 *rsp,
698 const struct pkt_gl *gl)
699{
700 struct sge_ofld_rxq *rxq = container_of(q, struct sge_ofld_rxq, rspq);
Varun Prakash2337ba42016-02-14 23:02:41 +0530701 int ret;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000702
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000703 /* FW can send CPLs encapsulated in a CPL_FW4_MSG.
704 */
705 if (((const struct rss_header *)rsp)->opcode == CPL_FW4_MSG &&
706 ((const struct cpl_fw4_msg *)(rsp + 1))->type == FW_TYPE_RSSCPL)
707 rsp += 2;
708
Varun Prakash2337ba42016-02-14 23:02:41 +0530709 if (q->flush_handler)
710 ret = ulds[q->uld].lro_rx_handler(q->adap->uld_handle[q->uld],
711 rsp, gl, &q->lro_mgr,
712 &q->napi);
713 else
714 ret = ulds[q->uld].rx_handler(q->adap->uld_handle[q->uld],
715 rsp, gl);
716
717 if (ret) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000718 rxq->stats.nomem++;
719 return -1;
720 }
Varun Prakash2337ba42016-02-14 23:02:41 +0530721
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000722 if (gl == NULL)
723 rxq->stats.imm++;
724 else if (gl == CXGB4_MSG_AN)
725 rxq->stats.an++;
726 else
727 rxq->stats.pkts++;
728 return 0;
729}
730
731static void disable_msi(struct adapter *adapter)
732{
733 if (adapter->flags & USING_MSIX) {
734 pci_disable_msix(adapter->pdev);
735 adapter->flags &= ~USING_MSIX;
736 } else if (adapter->flags & USING_MSI) {
737 pci_disable_msi(adapter->pdev);
738 adapter->flags &= ~USING_MSI;
739 }
740}
741
742/*
743 * Interrupt handler for non-data events used with MSI-X.
744 */
745static irqreturn_t t4_nondata_intr(int irq, void *cookie)
746{
747 struct adapter *adap = cookie;
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530748 u32 v = t4_read_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000749
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530750 if (v & PFSW_F) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000751 adap->swintr = 1;
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530752 t4_write_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A), v);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000753 }
Hariprasad Shenaic3c7b122015-04-15 02:02:34 +0530754 if (adap->flags & MASTER_PF)
755 t4_slow_intr_handler(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000756 return IRQ_HANDLED;
757}
758
759/*
760 * Name the MSI-X interrupts.
761 */
762static void name_msix_vecs(struct adapter *adap)
763{
Dimitris Michailidisba278162010-12-14 21:36:50 +0000764 int i, j, msi_idx = 2, n = sizeof(adap->msix_info[0].desc);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000765
766 /* non-data interrupts */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000767 snprintf(adap->msix_info[0].desc, n, "%s", adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000768
769 /* FW events */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000770 snprintf(adap->msix_info[1].desc, n, "%s-FWeventq",
771 adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000772
773 /* Ethernet queues */
774 for_each_port(adap, j) {
775 struct net_device *d = adap->port[j];
776 const struct port_info *pi = netdev_priv(d);
777
Dimitris Michailidisba278162010-12-14 21:36:50 +0000778 for (i = 0; i < pi->nqsets; i++, msi_idx++)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000779 snprintf(adap->msix_info[msi_idx].desc, n, "%s-Rx%d",
780 d->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000781 }
782
783 /* offload queues */
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530784 for_each_iscsirxq(&adap->sge, i)
785 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-iscsi%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000786 adap->port[0]->name, i);
Dimitris Michailidisba278162010-12-14 21:36:50 +0000787
Varun Prakashf2692d12016-02-14 23:02:40 +0530788 for_each_iscsitrxq(&adap->sge, i)
789 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-iSCSIT%d",
790 adap->port[0]->name, i);
791
Dimitris Michailidisba278162010-12-14 21:36:50 +0000792 for_each_rdmarxq(&adap->sge, i)
793 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000794 adap->port[0]->name, i);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530795
796 for_each_rdmaciq(&adap->sge, i)
797 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma-ciq%d",
798 adap->port[0]->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000799}
800
801static int request_msix_queue_irqs(struct adapter *adap)
802{
803 struct sge *s = &adap->sge;
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530804 int err, ethqidx, iscsiqidx = 0, rdmaqidx = 0, rdmaciqqidx = 0;
Varun Prakashf2692d12016-02-14 23:02:40 +0530805 int iscsitqidx = 0;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530806 int msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000807
808 err = request_irq(adap->msix_info[1].vec, t4_sge_intr_msix, 0,
809 adap->msix_info[1].desc, &s->fw_evtq);
810 if (err)
811 return err;
812
813 for_each_ethrxq(s, ethqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000814 err = request_irq(adap->msix_info[msi_index].vec,
815 t4_sge_intr_msix, 0,
816 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000817 &s->ethrxq[ethqidx].rspq);
818 if (err)
819 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000820 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000821 }
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530822 for_each_iscsirxq(s, iscsiqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000823 err = request_irq(adap->msix_info[msi_index].vec,
824 t4_sge_intr_msix, 0,
825 adap->msix_info[msi_index].desc,
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530826 &s->iscsirxq[iscsiqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000827 if (err)
828 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000829 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000830 }
Varun Prakashf2692d12016-02-14 23:02:40 +0530831 for_each_iscsitrxq(s, iscsitqidx) {
832 err = request_irq(adap->msix_info[msi_index].vec,
833 t4_sge_intr_msix, 0,
834 adap->msix_info[msi_index].desc,
835 &s->iscsitrxq[iscsitqidx].rspq);
836 if (err)
837 goto unwind;
838 msi_index++;
839 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000840 for_each_rdmarxq(s, rdmaqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000841 err = request_irq(adap->msix_info[msi_index].vec,
842 t4_sge_intr_msix, 0,
843 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000844 &s->rdmarxq[rdmaqidx].rspq);
845 if (err)
846 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000847 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000848 }
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530849 for_each_rdmaciq(s, rdmaciqqidx) {
850 err = request_irq(adap->msix_info[msi_index].vec,
851 t4_sge_intr_msix, 0,
852 adap->msix_info[msi_index].desc,
853 &s->rdmaciq[rdmaciqqidx].rspq);
854 if (err)
855 goto unwind;
856 msi_index++;
857 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000858 return 0;
859
860unwind:
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530861 while (--rdmaciqqidx >= 0)
862 free_irq(adap->msix_info[--msi_index].vec,
863 &s->rdmaciq[rdmaciqqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000864 while (--rdmaqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000865 free_irq(adap->msix_info[--msi_index].vec,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000866 &s->rdmarxq[rdmaqidx].rspq);
Varun Prakashf2692d12016-02-14 23:02:40 +0530867 while (--iscsitqidx >= 0)
868 free_irq(adap->msix_info[--msi_index].vec,
869 &s->iscsitrxq[iscsitqidx].rspq);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530870 while (--iscsiqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000871 free_irq(adap->msix_info[--msi_index].vec,
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530872 &s->iscsirxq[iscsiqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000873 while (--ethqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000874 free_irq(adap->msix_info[--msi_index].vec,
875 &s->ethrxq[ethqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000876 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
877 return err;
878}
879
880static void free_msix_queue_irqs(struct adapter *adap)
881{
Vipul Pandya404d9e32012-10-08 02:59:43 +0000882 int i, msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000883 struct sge *s = &adap->sge;
884
885 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
886 for_each_ethrxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000887 free_irq(adap->msix_info[msi_index++].vec, &s->ethrxq[i].rspq);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530888 for_each_iscsirxq(s, i)
889 free_irq(adap->msix_info[msi_index++].vec,
890 &s->iscsirxq[i].rspq);
Varun Prakashf2692d12016-02-14 23:02:40 +0530891 for_each_iscsitrxq(s, i)
892 free_irq(adap->msix_info[msi_index++].vec,
893 &s->iscsitrxq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000894 for_each_rdmarxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000895 free_irq(adap->msix_info[msi_index++].vec, &s->rdmarxq[i].rspq);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530896 for_each_rdmaciq(s, i)
897 free_irq(adap->msix_info[msi_index++].vec, &s->rdmaciq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000898}
899
900/**
Hariprasad Shenai812034f2015-04-06 20:23:23 +0530901 * cxgb4_write_rss - write the RSS table for a given port
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000902 * @pi: the port
903 * @queues: array of queue indices for RSS
904 *
905 * Sets up the portion of the HW RSS table for the port's VI to distribute
906 * packets to the Rx queues in @queues.
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530907 * Should never be called before setting up sge eth rx queues
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000908 */
Hariprasad Shenai812034f2015-04-06 20:23:23 +0530909int cxgb4_write_rss(const struct port_info *pi, const u16 *queues)
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000910{
911 u16 *rss;
912 int i, err;
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530913 struct adapter *adapter = pi->adapter;
914 const struct sge_eth_rxq *rxq;
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000915
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530916 rxq = &adapter->sge.ethrxq[pi->first_qset];
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000917 rss = kmalloc(pi->rss_size * sizeof(u16), GFP_KERNEL);
918 if (!rss)
919 return -ENOMEM;
920
921 /* map the queue indices to queue ids */
922 for (i = 0; i < pi->rss_size; i++, queues++)
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530923 rss[i] = rxq[*queues].rspq.abs_id;
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000924
Hariprasad Shenaib2612722015-05-27 22:30:24 +0530925 err = t4_config_rss_range(adapter, adapter->pf, pi->viid, 0,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000926 pi->rss_size, rss, pi->rss_size);
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530927 /* If Tunnel All Lookup isn't specified in the global RSS
928 * Configuration, then we need to specify a default Ingress
929 * Queue for any ingress packets which aren't hashed. We'll
930 * use our first ingress queue ...
931 */
932 if (!err)
933 err = t4_config_vi_rss(adapter, adapter->mbox, pi->viid,
934 FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN_F |
935 FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN_F |
936 FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN_F |
937 FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN_F |
938 FW_RSS_VI_CONFIG_CMD_UDPEN_F,
939 rss[0]);
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000940 kfree(rss);
941 return err;
942}
943
944/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000945 * setup_rss - configure RSS
946 * @adap: the adapter
947 *
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000948 * Sets up RSS for each port.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000949 */
950static int setup_rss(struct adapter *adap)
951{
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530952 int i, j, err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000953
954 for_each_port(adap, i) {
955 const struct port_info *pi = adap2pinfo(adap, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000956
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530957 /* Fill default values with equal distribution */
958 for (j = 0; j < pi->rss_size; j++)
959 pi->rss[j] = j % pi->nqsets;
960
Hariprasad Shenai812034f2015-04-06 20:23:23 +0530961 err = cxgb4_write_rss(pi, pi->rss);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000962 if (err)
963 return err;
964 }
965 return 0;
966}
967
968/*
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000969 * Return the channel of the ingress queue with the given qid.
970 */
971static unsigned int rxq_to_chan(const struct sge *p, unsigned int qid)
972{
973 qid -= p->ingr_start;
974 return netdev2pinfo(p->ingr_map[qid]->netdev)->tx_chan;
975}
976
977/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000978 * Wait until all NAPI handlers are descheduled.
979 */
980static void quiesce_rx(struct adapter *adap)
981{
982 int i;
983
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +0530984 for (i = 0; i < adap->sge.ingr_sz; i++) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000985 struct sge_rspq *q = adap->sge.ingr_map[i];
986
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530987 if (q && q->handler) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000988 napi_disable(&q->napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530989 local_bh_disable();
990 while (!cxgb_poll_lock_napi(q))
991 mdelay(1);
992 local_bh_enable();
993 }
994
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000995 }
996}
997
Hariprasad Shenaib37987e2015-03-26 10:04:26 +0530998/* Disable interrupt and napi handler */
999static void disable_interrupts(struct adapter *adap)
1000{
1001 if (adap->flags & FULL_INIT_DONE) {
1002 t4_intr_disable(adap);
1003 if (adap->flags & USING_MSIX) {
1004 free_msix_queue_irqs(adap);
1005 free_irq(adap->msix_info[0].vec, adap);
1006 } else {
1007 free_irq(adap->pdev->irq, adap);
1008 }
1009 quiesce_rx(adap);
1010 }
1011}
1012
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001013/*
1014 * Enable NAPI scheduling and interrupt generation for all Rx queues.
1015 */
1016static void enable_rx(struct adapter *adap)
1017{
1018 int i;
1019
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05301020 for (i = 0; i < adap->sge.ingr_sz; i++) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001021 struct sge_rspq *q = adap->sge.ingr_map[i];
1022
1023 if (!q)
1024 continue;
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05301025 if (q->handler) {
1026 cxgb_busy_poll_init_lock(q);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001027 napi_enable(&q->napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05301028 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001029 /* 0-increment GTS to start the timer and enable interrupts */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05301030 t4_write_reg(adap, MYPF_REG(SGE_PF_GTS_A),
1031 SEINTARM_V(q->intr_params) |
1032 INGRESSQID_V(q->cntxt_id));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001033 }
1034}
1035
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301036static int alloc_ofld_rxqs(struct adapter *adap, struct sge_ofld_rxq *q,
1037 unsigned int nq, unsigned int per_chan, int msi_idx,
Varun Prakash2337ba42016-02-14 23:02:41 +05301038 u16 *ids, bool lro)
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301039{
1040 int i, err;
1041
1042 for (i = 0; i < nq; i++, q++) {
1043 if (msi_idx > 0)
1044 msi_idx++;
1045 err = t4_sge_alloc_rxq(adap, &q->rspq, false,
1046 adap->port[i / per_chan],
1047 msi_idx, q->fl.size ? &q->fl : NULL,
Varun Prakash2337ba42016-02-14 23:02:41 +05301048 uldrx_handler,
1049 lro ? uldrx_flush_handler : NULL,
1050 0);
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301051 if (err)
1052 return err;
1053 memset(&q->stats, 0, sizeof(q->stats));
1054 if (ids)
1055 ids[i] = q->rspq.abs_id;
1056 }
1057 return 0;
1058}
1059
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001060/**
1061 * setup_sge_queues - configure SGE Tx/Rx/response queues
1062 * @adap: the adapter
1063 *
1064 * Determines how many sets of SGE queues to use and initializes them.
1065 * We support multiple queue sets per port if we have MSI-X, otherwise
1066 * just one queue set per port.
1067 */
1068static int setup_sge_queues(struct adapter *adap)
1069{
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05301070 int err, i, j;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001071 struct sge *s = &adap->sge;
1072
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05301073 bitmap_zero(s->starving_fl, s->egr_sz);
1074 bitmap_zero(s->txq_maperr, s->egr_sz);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001075
1076 if (adap->flags & USING_MSIX)
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05301077 adap->msi_idx = 1; /* vector 0 is for non-queue interrupts */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001078 else {
1079 err = t4_sge_alloc_rxq(adap, &s->intrq, false, adap->port[0], 0,
Varun Prakash2337ba42016-02-14 23:02:41 +05301080 NULL, NULL, NULL, -1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001081 if (err)
1082 return err;
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05301083 adap->msi_idx = -((int)s->intrq.abs_id + 1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001084 }
1085
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05301086 /* NOTE: If you add/delete any Ingress/Egress Queue allocations in here,
1087 * don't forget to update the following which need to be
1088 * synchronized to and changes here.
1089 *
1090 * 1. The calculations of MAX_INGQ in cxgb4.h.
1091 *
1092 * 2. Update enable_msix/name_msix_vecs/request_msix_queue_irqs
1093 * to accommodate any new/deleted Ingress Queues
1094 * which need MSI-X Vectors.
1095 *
1096 * 3. Update sge_qinfo_show() to include information on the
1097 * new/deleted queues.
1098 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001099 err = t4_sge_alloc_rxq(adap, &s->fw_evtq, true, adap->port[0],
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05301100 adap->msi_idx, NULL, fwevtq_handler, NULL, -1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001101 if (err) {
1102freeout: t4_free_sge_resources(adap);
1103 return err;
1104 }
1105
1106 for_each_port(adap, i) {
1107 struct net_device *dev = adap->port[i];
1108 struct port_info *pi = netdev_priv(dev);
1109 struct sge_eth_rxq *q = &s->ethrxq[pi->first_qset];
1110 struct sge_eth_txq *t = &s->ethtxq[pi->first_qset];
1111
1112 for (j = 0; j < pi->nqsets; j++, q++) {
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05301113 if (adap->msi_idx > 0)
1114 adap->msi_idx++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001115 err = t4_sge_alloc_rxq(adap, &q->rspq, false, dev,
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05301116 adap->msi_idx, &q->fl,
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05301117 t4_ethrx_handler,
Varun Prakash2337ba42016-02-14 23:02:41 +05301118 NULL,
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05301119 t4_get_mps_bg_map(adap,
1120 pi->tx_chan));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001121 if (err)
1122 goto freeout;
1123 q->rspq.idx = j;
1124 memset(&q->stats, 0, sizeof(q->stats));
1125 }
1126 for (j = 0; j < pi->nqsets; j++, t++) {
1127 err = t4_sge_alloc_eth_txq(adap, t, dev,
1128 netdev_get_tx_queue(dev, j),
1129 s->fw_evtq.cntxt_id);
1130 if (err)
1131 goto freeout;
1132 }
1133 }
1134
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05301135 j = s->iscsiqsets / adap->params.nports; /* iscsi queues per channel */
1136 for_each_iscsirxq(s, i) {
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301137 err = t4_sge_alloc_ofld_txq(adap, &s->ofldtxq[i],
1138 adap->port[i / j],
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001139 s->fw_evtq.cntxt_id);
1140 if (err)
1141 goto freeout;
1142 }
1143
Varun Prakash2337ba42016-02-14 23:02:41 +05301144#define ALLOC_OFLD_RXQS(firstq, nq, per_chan, ids, lro) do { \
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05301145 err = alloc_ofld_rxqs(adap, firstq, nq, per_chan, adap->msi_idx, ids, lro); \
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301146 if (err) \
1147 goto freeout; \
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05301148 if (adap->msi_idx > 0) \
1149 adap->msi_idx += nq; \
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301150} while (0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001151
Varun Prakash2337ba42016-02-14 23:02:41 +05301152 ALLOC_OFLD_RXQS(s->iscsirxq, s->iscsiqsets, j, s->iscsi_rxq, false);
1153 ALLOC_OFLD_RXQS(s->iscsitrxq, s->niscsitq, j, s->iscsit_rxq, true);
1154 ALLOC_OFLD_RXQS(s->rdmarxq, s->rdmaqs, 1, s->rdma_rxq, false);
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05301155 j = s->rdmaciqs / adap->params.nports; /* rdmaq queues per channel */
Varun Prakash2337ba42016-02-14 23:02:41 +05301156 ALLOC_OFLD_RXQS(s->rdmaciq, s->rdmaciqs, j, s->rdma_ciq, false);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001157
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301158#undef ALLOC_OFLD_RXQS
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301159
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001160 for_each_port(adap, i) {
1161 /*
1162 * Note that ->rdmarxq[i].rspq.cntxt_id below is 0 if we don't
1163 * have RDMA queues, and that's the right value.
1164 */
1165 err = t4_sge_alloc_ctrl_txq(adap, &s->ctrlq[i], adap->port[i],
1166 s->fw_evtq.cntxt_id,
1167 s->rdmarxq[i].rspq.cntxt_id);
1168 if (err)
1169 goto freeout;
1170 }
1171
Hariprasad Shenai9bb59b92014-09-01 19:54:57 +05301172 t4_write_reg(adap, is_t4(adap->params.chip) ?
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05301173 MPS_TRC_RSS_CONTROL_A :
1174 MPS_T5_TRC_RSS_CONTROL_A,
1175 RSSCONTROL_V(netdev2pinfo(adap->port[0])->tx_chan) |
1176 QUEUENUMBER_V(s->ethrxq[0].rspq.abs_id));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001177 return 0;
1178}
1179
1180/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001181 * Allocate a chunk of memory using kmalloc or, if that fails, vmalloc.
1182 * The allocated memory is cleared.
1183 */
1184void *t4_alloc_mem(size_t size)
1185{
Joe Perches8be04b92013-06-19 12:15:53 -07001186 void *p = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001187
1188 if (!p)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001189 p = vzalloc(size);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001190 return p;
1191}
1192
1193/*
1194 * Free memory allocated through alloc_mem().
1195 */
Hariprasad Shenaifd88b312014-11-07 09:35:23 +05301196void t4_free_mem(void *addr)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001197{
Pekka Enbergd2fcb542015-06-30 14:59:12 -07001198 kvfree(addr);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001199}
1200
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001201/* Send a Work Request to write the filter at a specified index. We construct
1202 * a Firmware Filter Work Request to have the work done and put the indicated
1203 * filter into "pending" mode which will prevent any further actions against
1204 * it till we get a reply from the firmware on the completion status of the
1205 * request.
1206 */
1207static int set_filter_wr(struct adapter *adapter, int fidx)
1208{
1209 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1210 struct sk_buff *skb;
1211 struct fw_filter_wr *fwr;
1212 unsigned int ftid;
1213
Michal Hockof72f1162015-04-14 13:24:33 -07001214 skb = alloc_skb(sizeof(*fwr), GFP_KERNEL);
1215 if (!skb)
1216 return -ENOMEM;
1217
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001218 /* If the new filter requires loopback Destination MAC and/or VLAN
1219 * rewriting then we need to allocate a Layer 2 Table (L2T) entry for
1220 * the filter.
1221 */
1222 if (f->fs.newdmac || f->fs.newvlan) {
1223 /* allocate L2T entry for new filter */
Hariprasad Shenaif7502652015-12-17 13:45:08 +05301224 f->l2t = t4_l2t_alloc_switching(adapter, f->fs.vlan,
1225 f->fs.eport, f->fs.dmac);
Michal Hockof72f1162015-04-14 13:24:33 -07001226 if (f->l2t == NULL) {
1227 kfree_skb(skb);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001228 return -ENOMEM;
1229 }
1230 }
1231
1232 ftid = adapter->tids.ftid_base + fidx;
1233
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001234 fwr = (struct fw_filter_wr *)__skb_put(skb, sizeof(*fwr));
1235 memset(fwr, 0, sizeof(*fwr));
1236
1237 /* It would be nice to put most of the following in t4_hw.c but most
1238 * of the work is translating the cxgbtool ch_filter_specification
1239 * into the Work Request and the definition of that structure is
1240 * currently in cxgbtool.h which isn't appropriate to pull into the
1241 * common code. We may eventually try to come up with a more neutral
1242 * filter specification structure but for now it's easiest to simply
1243 * put this fairly direct code in line ...
1244 */
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301245 fwr->op_pkd = htonl(FW_WR_OP_V(FW_FILTER_WR));
1246 fwr->len16_pkd = htonl(FW_WR_LEN16_V(sizeof(*fwr)/16));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001247 fwr->tid_to_iq =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301248 htonl(FW_FILTER_WR_TID_V(ftid) |
1249 FW_FILTER_WR_RQTYPE_V(f->fs.type) |
1250 FW_FILTER_WR_NOREPLY_V(0) |
1251 FW_FILTER_WR_IQ_V(f->fs.iq));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001252 fwr->del_filter_to_l2tix =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301253 htonl(FW_FILTER_WR_RPTTID_V(f->fs.rpttid) |
1254 FW_FILTER_WR_DROP_V(f->fs.action == FILTER_DROP) |
1255 FW_FILTER_WR_DIRSTEER_V(f->fs.dirsteer) |
1256 FW_FILTER_WR_MASKHASH_V(f->fs.maskhash) |
1257 FW_FILTER_WR_DIRSTEERHASH_V(f->fs.dirsteerhash) |
1258 FW_FILTER_WR_LPBK_V(f->fs.action == FILTER_SWITCH) |
1259 FW_FILTER_WR_DMAC_V(f->fs.newdmac) |
1260 FW_FILTER_WR_SMAC_V(f->fs.newsmac) |
1261 FW_FILTER_WR_INSVLAN_V(f->fs.newvlan == VLAN_INSERT ||
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001262 f->fs.newvlan == VLAN_REWRITE) |
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301263 FW_FILTER_WR_RMVLAN_V(f->fs.newvlan == VLAN_REMOVE ||
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001264 f->fs.newvlan == VLAN_REWRITE) |
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301265 FW_FILTER_WR_HITCNTS_V(f->fs.hitcnts) |
1266 FW_FILTER_WR_TXCHAN_V(f->fs.eport) |
1267 FW_FILTER_WR_PRIO_V(f->fs.prio) |
1268 FW_FILTER_WR_L2TIX_V(f->l2t ? f->l2t->idx : 0));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001269 fwr->ethtype = htons(f->fs.val.ethtype);
1270 fwr->ethtypem = htons(f->fs.mask.ethtype);
1271 fwr->frag_to_ovlan_vldm =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301272 (FW_FILTER_WR_FRAG_V(f->fs.val.frag) |
1273 FW_FILTER_WR_FRAGM_V(f->fs.mask.frag) |
1274 FW_FILTER_WR_IVLAN_VLD_V(f->fs.val.ivlan_vld) |
1275 FW_FILTER_WR_OVLAN_VLD_V(f->fs.val.ovlan_vld) |
1276 FW_FILTER_WR_IVLAN_VLDM_V(f->fs.mask.ivlan_vld) |
1277 FW_FILTER_WR_OVLAN_VLDM_V(f->fs.mask.ovlan_vld));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001278 fwr->smac_sel = 0;
1279 fwr->rx_chan_rx_rpl_iq =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301280 htons(FW_FILTER_WR_RX_CHAN_V(0) |
1281 FW_FILTER_WR_RX_RPL_IQ_V(adapter->sge.fw_evtq.abs_id));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001282 fwr->maci_to_matchtypem =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301283 htonl(FW_FILTER_WR_MACI_V(f->fs.val.macidx) |
1284 FW_FILTER_WR_MACIM_V(f->fs.mask.macidx) |
1285 FW_FILTER_WR_FCOE_V(f->fs.val.fcoe) |
1286 FW_FILTER_WR_FCOEM_V(f->fs.mask.fcoe) |
1287 FW_FILTER_WR_PORT_V(f->fs.val.iport) |
1288 FW_FILTER_WR_PORTM_V(f->fs.mask.iport) |
1289 FW_FILTER_WR_MATCHTYPE_V(f->fs.val.matchtype) |
1290 FW_FILTER_WR_MATCHTYPEM_V(f->fs.mask.matchtype));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001291 fwr->ptcl = f->fs.val.proto;
1292 fwr->ptclm = f->fs.mask.proto;
1293 fwr->ttyp = f->fs.val.tos;
1294 fwr->ttypm = f->fs.mask.tos;
1295 fwr->ivlan = htons(f->fs.val.ivlan);
1296 fwr->ivlanm = htons(f->fs.mask.ivlan);
1297 fwr->ovlan = htons(f->fs.val.ovlan);
1298 fwr->ovlanm = htons(f->fs.mask.ovlan);
1299 memcpy(fwr->lip, f->fs.val.lip, sizeof(fwr->lip));
1300 memcpy(fwr->lipm, f->fs.mask.lip, sizeof(fwr->lipm));
1301 memcpy(fwr->fip, f->fs.val.fip, sizeof(fwr->fip));
1302 memcpy(fwr->fipm, f->fs.mask.fip, sizeof(fwr->fipm));
1303 fwr->lp = htons(f->fs.val.lport);
1304 fwr->lpm = htons(f->fs.mask.lport);
1305 fwr->fp = htons(f->fs.val.fport);
1306 fwr->fpm = htons(f->fs.mask.fport);
1307 if (f->fs.newsmac)
1308 memcpy(fwr->sma, f->fs.smac, sizeof(fwr->sma));
1309
1310 /* Mark the filter as "pending" and ship off the Filter Work Request.
1311 * When we get the Work Request Reply we'll clear the pending status.
1312 */
1313 f->pending = 1;
1314 set_wr_txq(skb, CPL_PRIORITY_CONTROL, f->fs.val.iport & 0x3);
1315 t4_ofld_send(adapter, skb);
1316 return 0;
1317}
1318
1319/* Delete the filter at a specified index.
1320 */
1321static int del_filter_wr(struct adapter *adapter, int fidx)
1322{
1323 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1324 struct sk_buff *skb;
1325 struct fw_filter_wr *fwr;
1326 unsigned int len, ftid;
1327
1328 len = sizeof(*fwr);
1329 ftid = adapter->tids.ftid_base + fidx;
1330
Michal Hockof72f1162015-04-14 13:24:33 -07001331 skb = alloc_skb(len, GFP_KERNEL);
1332 if (!skb)
1333 return -ENOMEM;
1334
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001335 fwr = (struct fw_filter_wr *)__skb_put(skb, len);
1336 t4_mk_filtdelwr(ftid, fwr, adapter->sge.fw_evtq.abs_id);
1337
1338 /* Mark the filter as "pending" and ship off the Filter Work Request.
1339 * When we get the Work Request Reply we'll clear the pending status.
1340 */
1341 f->pending = 1;
1342 t4_mgmt_tx(adapter, skb);
1343 return 0;
1344}
1345
Anish Bhatt688848b2014-06-19 21:37:13 -07001346static u16 cxgb_select_queue(struct net_device *dev, struct sk_buff *skb,
1347 void *accel_priv, select_queue_fallback_t fallback)
1348{
1349 int txq;
1350
1351#ifdef CONFIG_CHELSIO_T4_DCB
1352 /* If a Data Center Bridging has been successfully negotiated on this
1353 * link then we'll use the skb's priority to map it to a TX Queue.
1354 * The skb's priority is determined via the VLAN Tag Priority Code
1355 * Point field.
1356 */
1357 if (cxgb4_dcb_enabled(dev)) {
1358 u16 vlan_tci;
1359 int err;
1360
1361 err = vlan_get_tag(skb, &vlan_tci);
1362 if (unlikely(err)) {
1363 if (net_ratelimit())
1364 netdev_warn(dev,
1365 "TX Packet without VLAN Tag on DCB Link\n");
1366 txq = 0;
1367 } else {
1368 txq = (vlan_tci & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
Varun Prakash84a200b2015-03-24 19:14:46 +05301369#ifdef CONFIG_CHELSIO_T4_FCOE
1370 if (skb->protocol == htons(ETH_P_FCOE))
1371 txq = skb->priority & 0x7;
1372#endif /* CONFIG_CHELSIO_T4_FCOE */
Anish Bhatt688848b2014-06-19 21:37:13 -07001373 }
1374 return txq;
1375 }
1376#endif /* CONFIG_CHELSIO_T4_DCB */
1377
1378 if (select_queue) {
1379 txq = (skb_rx_queue_recorded(skb)
1380 ? skb_get_rx_queue(skb)
1381 : smp_processor_id());
1382
1383 while (unlikely(txq >= dev->real_num_tx_queues))
1384 txq -= dev->real_num_tx_queues;
1385
1386 return txq;
1387 }
1388
1389 return fallback(dev, skb) % dev->real_num_tx_queues;
1390}
1391
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001392static int closest_timer(const struct sge *s, int time)
1393{
1394 int i, delta, match = 0, min_delta = INT_MAX;
1395
1396 for (i = 0; i < ARRAY_SIZE(s->timer_val); i++) {
1397 delta = time - s->timer_val[i];
1398 if (delta < 0)
1399 delta = -delta;
1400 if (delta < min_delta) {
1401 min_delta = delta;
1402 match = i;
1403 }
1404 }
1405 return match;
1406}
1407
1408static int closest_thres(const struct sge *s, int thres)
1409{
1410 int i, delta, match = 0, min_delta = INT_MAX;
1411
1412 for (i = 0; i < ARRAY_SIZE(s->counter_val); i++) {
1413 delta = thres - s->counter_val[i];
1414 if (delta < 0)
1415 delta = -delta;
1416 if (delta < min_delta) {
1417 min_delta = delta;
1418 match = i;
1419 }
1420 }
1421 return match;
1422}
1423
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001424/**
Hariprasad Shenai812034f2015-04-06 20:23:23 +05301425 * cxgb4_set_rspq_intr_params - set a queue's interrupt holdoff parameters
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001426 * @q: the Rx queue
1427 * @us: the hold-off time in us, or 0 to disable timer
1428 * @cnt: the hold-off packet count, or 0 to disable counter
1429 *
1430 * Sets an Rx queue's interrupt hold-off time and packet count. At least
1431 * one of the two needs to be enabled for the queue to generate interrupts.
1432 */
Hariprasad Shenai812034f2015-04-06 20:23:23 +05301433int cxgb4_set_rspq_intr_params(struct sge_rspq *q,
1434 unsigned int us, unsigned int cnt)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001435{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05301436 struct adapter *adap = q->adap;
1437
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001438 if ((us | cnt) == 0)
1439 cnt = 1;
1440
1441 if (cnt) {
1442 int err;
1443 u32 v, new_idx;
1444
1445 new_idx = closest_thres(&adap->sge, cnt);
1446 if (q->desc && q->pktcnt_idx != new_idx) {
1447 /* the queue has already been created, update it */
Hariprasad Shenai51678652014-11-21 12:52:02 +05301448 v = FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
1449 FW_PARAMS_PARAM_X_V(
1450 FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH) |
1451 FW_PARAMS_PARAM_YZ_V(q->cntxt_id);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05301452 err = t4_set_params(adap, adap->mbox, adap->pf, 0, 1,
1453 &v, &new_idx);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001454 if (err)
1455 return err;
1456 }
1457 q->pktcnt_idx = new_idx;
1458 }
1459
1460 us = us == 0 ? 6 : closest_timer(&adap->sge, us);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301461 q->intr_params = QINTR_TIMER_IDX_V(us) | QINTR_CNT_EN_V(cnt > 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001462 return 0;
1463}
1464
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001465static int cxgb_set_features(struct net_device *dev, netdev_features_t features)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001466{
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001467 const struct port_info *pi = netdev_priv(dev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001468 netdev_features_t changed = dev->features ^ features;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001469 int err;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001470
Patrick McHardyf6469682013-04-19 02:04:27 +00001471 if (!(changed & NETIF_F_HW_VLAN_CTAG_RX))
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001472 return 0;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001473
Hariprasad Shenaib2612722015-05-27 22:30:24 +05301474 err = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, -1,
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001475 -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +00001476 !!(features & NETIF_F_HW_VLAN_CTAG_RX), true);
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001477 if (unlikely(err))
Patrick McHardyf6469682013-04-19 02:04:27 +00001478 dev->features = features ^ NETIF_F_HW_VLAN_CTAG_RX;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001479 return err;
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001480}
1481
Bill Pemberton91744942012-12-03 09:23:02 -05001482static int setup_debugfs(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001483{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001484 if (IS_ERR_OR_NULL(adap->debugfs_root))
1485 return -1;
1486
Hariprasad Shenaifd88b312014-11-07 09:35:23 +05301487#ifdef CONFIG_DEBUG_FS
1488 t4_setup_debugfs(adap);
1489#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001490 return 0;
1491}
1492
1493/*
1494 * upper-layer driver support
1495 */
1496
1497/*
1498 * Allocate an active-open TID and set it to the supplied value.
1499 */
1500int cxgb4_alloc_atid(struct tid_info *t, void *data)
1501{
1502 int atid = -1;
1503
1504 spin_lock_bh(&t->atid_lock);
1505 if (t->afree) {
1506 union aopen_entry *p = t->afree;
1507
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001508 atid = (p - t->atid_tab) + t->atid_base;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001509 t->afree = p->next;
1510 p->data = data;
1511 t->atids_in_use++;
1512 }
1513 spin_unlock_bh(&t->atid_lock);
1514 return atid;
1515}
1516EXPORT_SYMBOL(cxgb4_alloc_atid);
1517
1518/*
1519 * Release an active-open TID.
1520 */
1521void cxgb4_free_atid(struct tid_info *t, unsigned int atid)
1522{
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001523 union aopen_entry *p = &t->atid_tab[atid - t->atid_base];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001524
1525 spin_lock_bh(&t->atid_lock);
1526 p->next = t->afree;
1527 t->afree = p;
1528 t->atids_in_use--;
1529 spin_unlock_bh(&t->atid_lock);
1530}
1531EXPORT_SYMBOL(cxgb4_free_atid);
1532
1533/*
1534 * Allocate a server TID and set it to the supplied value.
1535 */
1536int cxgb4_alloc_stid(struct tid_info *t, int family, void *data)
1537{
1538 int stid;
1539
1540 spin_lock_bh(&t->stid_lock);
1541 if (family == PF_INET) {
1542 stid = find_first_zero_bit(t->stid_bmap, t->nstids);
1543 if (stid < t->nstids)
1544 __set_bit(stid, t->stid_bmap);
1545 else
1546 stid = -1;
1547 } else {
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301548 stid = bitmap_find_free_region(t->stid_bmap, t->nstids, 1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001549 if (stid < 0)
1550 stid = -1;
1551 }
1552 if (stid >= 0) {
1553 t->stid_tab[stid].data = data;
1554 stid += t->stid_base;
Kumar Sanghvi15f63b72013-12-18 16:38:22 +05301555 /* IPv6 requires max of 520 bits or 16 cells in TCAM
1556 * This is equivalent to 4 TIDs. With CLIP enabled it
1557 * needs 2 TIDs.
1558 */
1559 if (family == PF_INET)
1560 t->stids_in_use++;
1561 else
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301562 t->stids_in_use += 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001563 }
1564 spin_unlock_bh(&t->stid_lock);
1565 return stid;
1566}
1567EXPORT_SYMBOL(cxgb4_alloc_stid);
1568
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001569/* Allocate a server filter TID and set it to the supplied value.
1570 */
1571int cxgb4_alloc_sftid(struct tid_info *t, int family, void *data)
1572{
1573 int stid;
1574
1575 spin_lock_bh(&t->stid_lock);
1576 if (family == PF_INET) {
1577 stid = find_next_zero_bit(t->stid_bmap,
1578 t->nstids + t->nsftids, t->nstids);
1579 if (stid < (t->nstids + t->nsftids))
1580 __set_bit(stid, t->stid_bmap);
1581 else
1582 stid = -1;
1583 } else {
1584 stid = -1;
1585 }
1586 if (stid >= 0) {
1587 t->stid_tab[stid].data = data;
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05301588 stid -= t->nstids;
1589 stid += t->sftid_base;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301590 t->sftids_in_use++;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001591 }
1592 spin_unlock_bh(&t->stid_lock);
1593 return stid;
1594}
1595EXPORT_SYMBOL(cxgb4_alloc_sftid);
1596
1597/* Release a server TID.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001598 */
1599void cxgb4_free_stid(struct tid_info *t, unsigned int stid, int family)
1600{
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05301601 /* Is it a server filter TID? */
1602 if (t->nsftids && (stid >= t->sftid_base)) {
1603 stid -= t->sftid_base;
1604 stid += t->nstids;
1605 } else {
1606 stid -= t->stid_base;
1607 }
1608
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001609 spin_lock_bh(&t->stid_lock);
1610 if (family == PF_INET)
1611 __clear_bit(stid, t->stid_bmap);
1612 else
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301613 bitmap_release_region(t->stid_bmap, stid, 1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001614 t->stid_tab[stid].data = NULL;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301615 if (stid < t->nstids) {
1616 if (family == PF_INET)
1617 t->stids_in_use--;
1618 else
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301619 t->stids_in_use -= 2;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301620 } else {
1621 t->sftids_in_use--;
1622 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001623 spin_unlock_bh(&t->stid_lock);
1624}
1625EXPORT_SYMBOL(cxgb4_free_stid);
1626
1627/*
1628 * Populate a TID_RELEASE WR. Caller must properly size the skb.
1629 */
1630static void mk_tid_release(struct sk_buff *skb, unsigned int chan,
1631 unsigned int tid)
1632{
1633 struct cpl_tid_release *req;
1634
1635 set_wr_txq(skb, CPL_PRIORITY_SETUP, chan);
1636 req = (struct cpl_tid_release *)__skb_put(skb, sizeof(*req));
1637 INIT_TP_WR(req, tid);
1638 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_TID_RELEASE, tid));
1639}
1640
1641/*
1642 * Queue a TID release request and if necessary schedule a work queue to
1643 * process it.
1644 */
stephen hemminger31b9c192010-10-18 05:39:18 +00001645static void cxgb4_queue_tid_release(struct tid_info *t, unsigned int chan,
1646 unsigned int tid)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001647{
1648 void **p = &t->tid_tab[tid];
1649 struct adapter *adap = container_of(t, struct adapter, tids);
1650
1651 spin_lock_bh(&adap->tid_release_lock);
1652 *p = adap->tid_release_head;
1653 /* Low 2 bits encode the Tx channel number */
1654 adap->tid_release_head = (void **)((uintptr_t)p | chan);
1655 if (!adap->tid_release_task_busy) {
1656 adap->tid_release_task_busy = true;
Anish Bhatt29aaee62014-08-20 13:44:06 -07001657 queue_work(adap->workq, &adap->tid_release_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001658 }
1659 spin_unlock_bh(&adap->tid_release_lock);
1660}
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001661
1662/*
1663 * Process the list of pending TID release requests.
1664 */
1665static void process_tid_release_list(struct work_struct *work)
1666{
1667 struct sk_buff *skb;
1668 struct adapter *adap;
1669
1670 adap = container_of(work, struct adapter, tid_release_task);
1671
1672 spin_lock_bh(&adap->tid_release_lock);
1673 while (adap->tid_release_head) {
1674 void **p = adap->tid_release_head;
1675 unsigned int chan = (uintptr_t)p & 3;
1676 p = (void *)p - chan;
1677
1678 adap->tid_release_head = *p;
1679 *p = NULL;
1680 spin_unlock_bh(&adap->tid_release_lock);
1681
1682 while (!(skb = alloc_skb(sizeof(struct cpl_tid_release),
1683 GFP_KERNEL)))
1684 schedule_timeout_uninterruptible(1);
1685
1686 mk_tid_release(skb, chan, p - adap->tids.tid_tab);
1687 t4_ofld_send(adap, skb);
1688 spin_lock_bh(&adap->tid_release_lock);
1689 }
1690 adap->tid_release_task_busy = false;
1691 spin_unlock_bh(&adap->tid_release_lock);
1692}
1693
1694/*
1695 * Release a TID and inform HW. If we are unable to allocate the release
1696 * message we defer to a work queue.
1697 */
1698void cxgb4_remove_tid(struct tid_info *t, unsigned int chan, unsigned int tid)
1699{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001700 struct sk_buff *skb;
1701 struct adapter *adap = container_of(t, struct adapter, tids);
1702
Hariprasad Shenai9a1bb9f2015-08-12 16:55:05 +05301703 WARN_ON(tid >= t->ntids);
1704
1705 if (t->tid_tab[tid]) {
1706 t->tid_tab[tid] = NULL;
1707 if (t->hash_base && (tid >= t->hash_base))
1708 atomic_dec(&t->hash_tids_in_use);
1709 else
1710 atomic_dec(&t->tids_in_use);
1711 }
1712
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001713 skb = alloc_skb(sizeof(struct cpl_tid_release), GFP_ATOMIC);
1714 if (likely(skb)) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001715 mk_tid_release(skb, chan, tid);
1716 t4_ofld_send(adap, skb);
1717 } else
1718 cxgb4_queue_tid_release(t, chan, tid);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001719}
1720EXPORT_SYMBOL(cxgb4_remove_tid);
1721
1722/*
1723 * Allocate and initialize the TID tables. Returns 0 on success.
1724 */
1725static int tid_init(struct tid_info *t)
1726{
1727 size_t size;
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001728 unsigned int stid_bmap_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001729 unsigned int natids = t->natids;
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05301730 struct adapter *adap = container_of(t, struct adapter, tids);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001731
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001732 stid_bmap_size = BITS_TO_LONGS(t->nstids + t->nsftids);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001733 size = t->ntids * sizeof(*t->tid_tab) +
1734 natids * sizeof(*t->atid_tab) +
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001735 t->nstids * sizeof(*t->stid_tab) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001736 t->nsftids * sizeof(*t->stid_tab) +
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001737 stid_bmap_size * sizeof(long) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001738 t->nftids * sizeof(*t->ftid_tab) +
1739 t->nsftids * sizeof(*t->ftid_tab);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001740
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001741 t->tid_tab = t4_alloc_mem(size);
1742 if (!t->tid_tab)
1743 return -ENOMEM;
1744
1745 t->atid_tab = (union aopen_entry *)&t->tid_tab[t->ntids];
1746 t->stid_tab = (struct serv_entry *)&t->atid_tab[natids];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001747 t->stid_bmap = (unsigned long *)&t->stid_tab[t->nstids + t->nsftids];
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001748 t->ftid_tab = (struct filter_entry *)&t->stid_bmap[stid_bmap_size];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001749 spin_lock_init(&t->stid_lock);
1750 spin_lock_init(&t->atid_lock);
1751
1752 t->stids_in_use = 0;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301753 t->sftids_in_use = 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001754 t->afree = NULL;
1755 t->atids_in_use = 0;
1756 atomic_set(&t->tids_in_use, 0);
Hariprasad Shenai9a1bb9f2015-08-12 16:55:05 +05301757 atomic_set(&t->hash_tids_in_use, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001758
1759 /* Setup the free list for atid_tab and clear the stid bitmap. */
1760 if (natids) {
1761 while (--natids)
1762 t->atid_tab[natids - 1].next = &t->atid_tab[natids];
1763 t->afree = t->atid_tab;
1764 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001765 bitmap_zero(t->stid_bmap, t->nstids + t->nsftids);
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05301766 /* Reserve stid 0 for T4/T5 adapters */
1767 if (!t->stid_base &&
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05301768 (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5))
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05301769 __set_bit(0, t->stid_bmap);
1770
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001771 return 0;
1772}
1773
1774/**
1775 * cxgb4_create_server - create an IP server
1776 * @dev: the device
1777 * @stid: the server TID
1778 * @sip: local IP address to bind server to
1779 * @sport: the server's TCP port
1780 * @queue: queue to direct messages from this server to
1781 *
1782 * Create an IP server for the given port and address.
1783 * Returns <0 on error and one of the %NET_XMIT_* values on success.
1784 */
1785int cxgb4_create_server(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00001786 __be32 sip, __be16 sport, __be16 vlan,
1787 unsigned int queue)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001788{
1789 unsigned int chan;
1790 struct sk_buff *skb;
1791 struct adapter *adap;
1792 struct cpl_pass_open_req *req;
Vipul Pandya80f40c12013-07-04 16:10:45 +05301793 int ret;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001794
1795 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1796 if (!skb)
1797 return -ENOMEM;
1798
1799 adap = netdev2adap(dev);
1800 req = (struct cpl_pass_open_req *)__skb_put(skb, sizeof(*req));
1801 INIT_TP_WR(req, 0);
1802 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ, stid));
1803 req->local_port = sport;
1804 req->peer_port = htons(0);
1805 req->local_ip = sip;
1806 req->peer_ip = htonl(0);
Dimitris Michailidise46dab42010-08-23 17:20:58 +00001807 chan = rxq_to_chan(&adap->sge, queue);
Anish Bhattd7990b02014-11-12 17:15:57 -08001808 req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001809 req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
1810 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05301811 ret = t4_mgmt_tx(adap, skb);
1812 return net_xmit_eval(ret);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001813}
1814EXPORT_SYMBOL(cxgb4_create_server);
1815
Vipul Pandya80f40c12013-07-04 16:10:45 +05301816/* cxgb4_create_server6 - create an IPv6 server
1817 * @dev: the device
1818 * @stid: the server TID
1819 * @sip: local IPv6 address to bind server to
1820 * @sport: the server's TCP port
1821 * @queue: queue to direct messages from this server to
1822 *
1823 * Create an IPv6 server for the given port and address.
1824 * Returns <0 on error and one of the %NET_XMIT_* values on success.
1825 */
1826int cxgb4_create_server6(const struct net_device *dev, unsigned int stid,
1827 const struct in6_addr *sip, __be16 sport,
1828 unsigned int queue)
1829{
1830 unsigned int chan;
1831 struct sk_buff *skb;
1832 struct adapter *adap;
1833 struct cpl_pass_open_req6 *req;
1834 int ret;
1835
1836 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1837 if (!skb)
1838 return -ENOMEM;
1839
1840 adap = netdev2adap(dev);
1841 req = (struct cpl_pass_open_req6 *)__skb_put(skb, sizeof(*req));
1842 INIT_TP_WR(req, 0);
1843 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ6, stid));
1844 req->local_port = sport;
1845 req->peer_port = htons(0);
1846 req->local_ip_hi = *(__be64 *)(sip->s6_addr);
1847 req->local_ip_lo = *(__be64 *)(sip->s6_addr + 8);
1848 req->peer_ip_hi = cpu_to_be64(0);
1849 req->peer_ip_lo = cpu_to_be64(0);
1850 chan = rxq_to_chan(&adap->sge, queue);
Anish Bhattd7990b02014-11-12 17:15:57 -08001851 req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001852 req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
1853 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05301854 ret = t4_mgmt_tx(adap, skb);
1855 return net_xmit_eval(ret);
1856}
1857EXPORT_SYMBOL(cxgb4_create_server6);
1858
1859int cxgb4_remove_server(const struct net_device *dev, unsigned int stid,
1860 unsigned int queue, bool ipv6)
1861{
1862 struct sk_buff *skb;
1863 struct adapter *adap;
1864 struct cpl_close_listsvr_req *req;
1865 int ret;
1866
1867 adap = netdev2adap(dev);
1868
1869 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1870 if (!skb)
1871 return -ENOMEM;
1872
1873 req = (struct cpl_close_listsvr_req *)__skb_put(skb, sizeof(*req));
1874 INIT_TP_WR(req, 0);
1875 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_CLOSE_LISTSRV_REQ, stid));
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08001876 req->reply_ctrl = htons(NO_REPLY_V(0) | (ipv6 ? LISTSVR_IPV6_V(1) :
1877 LISTSVR_IPV6_V(0)) | QUEUENO_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05301878 ret = t4_mgmt_tx(adap, skb);
1879 return net_xmit_eval(ret);
1880}
1881EXPORT_SYMBOL(cxgb4_remove_server);
1882
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001883/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001884 * cxgb4_best_mtu - find the entry in the MTU table closest to an MTU
1885 * @mtus: the HW MTU table
1886 * @mtu: the target MTU
1887 * @idx: index of selected entry in the MTU table
1888 *
1889 * Returns the index and the value in the HW MTU table that is closest to
1890 * but does not exceed @mtu, unless @mtu is smaller than any value in the
1891 * table, in which case that smallest available value is selected.
1892 */
1893unsigned int cxgb4_best_mtu(const unsigned short *mtus, unsigned short mtu,
1894 unsigned int *idx)
1895{
1896 unsigned int i = 0;
1897
1898 while (i < NMTUS - 1 && mtus[i + 1] <= mtu)
1899 ++i;
1900 if (idx)
1901 *idx = i;
1902 return mtus[i];
1903}
1904EXPORT_SYMBOL(cxgb4_best_mtu);
1905
1906/**
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05301907 * cxgb4_best_aligned_mtu - find best MTU, [hopefully] data size aligned
1908 * @mtus: the HW MTU table
1909 * @header_size: Header Size
1910 * @data_size_max: maximum Data Segment Size
1911 * @data_size_align: desired Data Segment Size Alignment (2^N)
1912 * @mtu_idxp: HW MTU Table Index return value pointer (possibly NULL)
1913 *
1914 * Similar to cxgb4_best_mtu() but instead of searching the Hardware
1915 * MTU Table based solely on a Maximum MTU parameter, we break that
1916 * parameter up into a Header Size and Maximum Data Segment Size, and
1917 * provide a desired Data Segment Size Alignment. If we find an MTU in
1918 * the Hardware MTU Table which will result in a Data Segment Size with
1919 * the requested alignment _and_ that MTU isn't "too far" from the
1920 * closest MTU, then we'll return that rather than the closest MTU.
1921 */
1922unsigned int cxgb4_best_aligned_mtu(const unsigned short *mtus,
1923 unsigned short header_size,
1924 unsigned short data_size_max,
1925 unsigned short data_size_align,
1926 unsigned int *mtu_idxp)
1927{
1928 unsigned short max_mtu = header_size + data_size_max;
1929 unsigned short data_size_align_mask = data_size_align - 1;
1930 int mtu_idx, aligned_mtu_idx;
1931
1932 /* Scan the MTU Table till we find an MTU which is larger than our
1933 * Maximum MTU or we reach the end of the table. Along the way,
1934 * record the last MTU found, if any, which will result in a Data
1935 * Segment Length matching the requested alignment.
1936 */
1937 for (mtu_idx = 0, aligned_mtu_idx = -1; mtu_idx < NMTUS; mtu_idx++) {
1938 unsigned short data_size = mtus[mtu_idx] - header_size;
1939
1940 /* If this MTU minus the Header Size would result in a
1941 * Data Segment Size of the desired alignment, remember it.
1942 */
1943 if ((data_size & data_size_align_mask) == 0)
1944 aligned_mtu_idx = mtu_idx;
1945
1946 /* If we're not at the end of the Hardware MTU Table and the
1947 * next element is larger than our Maximum MTU, drop out of
1948 * the loop.
1949 */
1950 if (mtu_idx+1 < NMTUS && mtus[mtu_idx+1] > max_mtu)
1951 break;
1952 }
1953
1954 /* If we fell out of the loop because we ran to the end of the table,
1955 * then we just have to use the last [largest] entry.
1956 */
1957 if (mtu_idx == NMTUS)
1958 mtu_idx--;
1959
1960 /* If we found an MTU which resulted in the requested Data Segment
1961 * Length alignment and that's "not far" from the largest MTU which is
1962 * less than or equal to the maximum MTU, then use that.
1963 */
1964 if (aligned_mtu_idx >= 0 &&
1965 mtu_idx - aligned_mtu_idx <= 1)
1966 mtu_idx = aligned_mtu_idx;
1967
1968 /* If the caller has passed in an MTU Index pointer, pass the
1969 * MTU Index back. Return the MTU value.
1970 */
1971 if (mtu_idxp)
1972 *mtu_idxp = mtu_idx;
1973 return mtus[mtu_idx];
1974}
1975EXPORT_SYMBOL(cxgb4_best_aligned_mtu);
1976
1977/**
Hariprasad S27999802015-09-23 17:19:26 +05301978 * cxgb4_tp_smt_idx - Get the Source Mac Table index for this VI
1979 * @chip: chip type
1980 * @viid: VI id of the given port
1981 *
1982 * Return the SMT index for this VI.
1983 */
1984unsigned int cxgb4_tp_smt_idx(enum chip_type chip, unsigned int viid)
1985{
1986 /* In T4/T5, SMT contains 256 SMAC entries organized in
1987 * 128 rows of 2 entries each.
1988 * In T6, SMT contains 256 SMAC entries in 256 rows.
1989 * TODO: The below code needs to be updated when we add support
1990 * for 256 VFs.
1991 */
1992 if (CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5)
1993 return ((viid & 0x7f) << 1);
1994 else
1995 return (viid & 0x7f);
1996}
1997EXPORT_SYMBOL(cxgb4_tp_smt_idx);
1998
1999/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002000 * cxgb4_port_chan - get the HW channel of a port
2001 * @dev: the net device for the port
2002 *
2003 * Return the HW Tx channel of the given port.
2004 */
2005unsigned int cxgb4_port_chan(const struct net_device *dev)
2006{
2007 return netdev2pinfo(dev)->tx_chan;
2008}
2009EXPORT_SYMBOL(cxgb4_port_chan);
2010
Vipul Pandya881806b2012-05-18 15:29:24 +05302011unsigned int cxgb4_dbfifo_count(const struct net_device *dev, int lpfifo)
2012{
2013 struct adapter *adap = netdev2adap(dev);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002014 u32 v1, v2, lp_count, hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05302015
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302016 v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
2017 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302018 if (is_t4(adap->params.chip)) {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302019 lp_count = LP_COUNT_G(v1);
2020 hp_count = HP_COUNT_G(v1);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002021 } else {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302022 lp_count = LP_COUNT_T5_G(v1);
2023 hp_count = HP_COUNT_T5_G(v2);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002024 }
2025 return lpfifo ? lp_count : hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05302026}
2027EXPORT_SYMBOL(cxgb4_dbfifo_count);
2028
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002029/**
2030 * cxgb4_port_viid - get the VI id of a port
2031 * @dev: the net device for the port
2032 *
2033 * Return the VI id of the given port.
2034 */
2035unsigned int cxgb4_port_viid(const struct net_device *dev)
2036{
2037 return netdev2pinfo(dev)->viid;
2038}
2039EXPORT_SYMBOL(cxgb4_port_viid);
2040
2041/**
2042 * cxgb4_port_idx - get the index of a port
2043 * @dev: the net device for the port
2044 *
2045 * Return the index of the given port.
2046 */
2047unsigned int cxgb4_port_idx(const struct net_device *dev)
2048{
2049 return netdev2pinfo(dev)->port_id;
2050}
2051EXPORT_SYMBOL(cxgb4_port_idx);
2052
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002053void cxgb4_get_tcp_stats(struct pci_dev *pdev, struct tp_tcp_stats *v4,
2054 struct tp_tcp_stats *v6)
2055{
2056 struct adapter *adap = pci_get_drvdata(pdev);
2057
2058 spin_lock(&adap->stats_lock);
2059 t4_tp_get_tcp_stats(adap, v4, v6);
2060 spin_unlock(&adap->stats_lock);
2061}
2062EXPORT_SYMBOL(cxgb4_get_tcp_stats);
2063
2064void cxgb4_iscsi_init(struct net_device *dev, unsigned int tag_mask,
2065 const unsigned int *pgsz_order)
2066{
2067 struct adapter *adap = netdev2adap(dev);
2068
Hariprasad Shenai0d804332015-01-05 16:30:47 +05302069 t4_write_reg(adap, ULP_RX_ISCSI_TAGMASK_A, tag_mask);
2070 t4_write_reg(adap, ULP_RX_ISCSI_PSZ_A, HPZ0_V(pgsz_order[0]) |
2071 HPZ1_V(pgsz_order[1]) | HPZ2_V(pgsz_order[2]) |
2072 HPZ3_V(pgsz_order[3]));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002073}
2074EXPORT_SYMBOL(cxgb4_iscsi_init);
2075
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302076int cxgb4_flush_eq_cache(struct net_device *dev)
2077{
2078 struct adapter *adap = netdev2adap(dev);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302079
Hariprasad Shenai5d700ec2015-06-05 14:24:48 +05302080 return t4_sge_ctxt_flush(adap, adap->mbox);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302081}
2082EXPORT_SYMBOL(cxgb4_flush_eq_cache);
2083
2084static int read_eq_indices(struct adapter *adap, u16 qid, u16 *pidx, u16 *cidx)
2085{
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302086 u32 addr = t4_read_reg(adap, SGE_DBQ_CTXT_BADDR_A) + 24 * qid + 8;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302087 __be64 indices;
2088 int ret;
2089
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05302090 spin_lock(&adap->win0_lock);
2091 ret = t4_memory_rw(adap, 0, MEM_EDC0, addr,
2092 sizeof(indices), (__be32 *)&indices,
2093 T4_MEMORY_READ);
2094 spin_unlock(&adap->win0_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302095 if (!ret) {
Vipul Pandya404d9e32012-10-08 02:59:43 +00002096 *cidx = (be64_to_cpu(indices) >> 25) & 0xffff;
2097 *pidx = (be64_to_cpu(indices) >> 9) & 0xffff;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302098 }
2099 return ret;
2100}
2101
2102int cxgb4_sync_txq_pidx(struct net_device *dev, u16 qid, u16 pidx,
2103 u16 size)
2104{
2105 struct adapter *adap = netdev2adap(dev);
2106 u16 hw_pidx, hw_cidx;
2107 int ret;
2108
2109 ret = read_eq_indices(adap, qid, &hw_pidx, &hw_cidx);
2110 if (ret)
2111 goto out;
2112
2113 if (pidx != hw_pidx) {
2114 u16 delta;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302115 u32 val;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302116
2117 if (pidx >= hw_pidx)
2118 delta = pidx - hw_pidx;
2119 else
2120 delta = size - hw_pidx + pidx;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302121
2122 if (is_t4(adap->params.chip))
2123 val = PIDX_V(delta);
2124 else
2125 val = PIDX_T5_V(delta);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302126 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302127 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2128 QID_V(qid) | val);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302129 }
2130out:
2131 return ret;
2132}
2133EXPORT_SYMBOL(cxgb4_sync_txq_pidx);
2134
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302135int cxgb4_read_tpte(struct net_device *dev, u32 stag, __be32 *tpte)
2136{
2137 struct adapter *adap;
2138 u32 offset, memtype, memaddr;
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05302139 u32 edc0_size, edc1_size, mc0_size, mc1_size, size;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302140 u32 edc0_end, edc1_end, mc0_end, mc1_end;
2141 int ret;
2142
2143 adap = netdev2adap(dev);
2144
2145 offset = ((stag >> 8) * 32) + adap->vres.stag.start;
2146
2147 /* Figure out where the offset lands in the Memory Type/Address scheme.
2148 * This code assumes that the memory is laid out starting at offset 0
2149 * with no breaks as: EDC0, EDC1, MC0, MC1. All cards have both EDC0
2150 * and EDC1. Some cards will have neither MC0 nor MC1, most cards have
2151 * MC0, and some have both MC0 and MC1.
2152 */
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05302153 size = t4_read_reg(adap, MA_EDRAM0_BAR_A);
2154 edc0_size = EDRAM0_SIZE_G(size) << 20;
2155 size = t4_read_reg(adap, MA_EDRAM1_BAR_A);
2156 edc1_size = EDRAM1_SIZE_G(size) << 20;
2157 size = t4_read_reg(adap, MA_EXT_MEMORY0_BAR_A);
2158 mc0_size = EXT_MEM0_SIZE_G(size) << 20;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302159
2160 edc0_end = edc0_size;
2161 edc1_end = edc0_end + edc1_size;
2162 mc0_end = edc1_end + mc0_size;
2163
2164 if (offset < edc0_end) {
2165 memtype = MEM_EDC0;
2166 memaddr = offset;
2167 } else if (offset < edc1_end) {
2168 memtype = MEM_EDC1;
2169 memaddr = offset - edc0_end;
2170 } else {
2171 if (offset < mc0_end) {
2172 memtype = MEM_MC0;
2173 memaddr = offset - edc1_end;
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302174 } else if (is_t5(adap->params.chip)) {
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05302175 size = t4_read_reg(adap, MA_EXT_MEMORY1_BAR_A);
2176 mc1_size = EXT_MEM1_SIZE_G(size) << 20;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302177 mc1_end = mc0_end + mc1_size;
2178 if (offset < mc1_end) {
2179 memtype = MEM_MC1;
2180 memaddr = offset - mc0_end;
2181 } else {
2182 /* offset beyond the end of any memory */
2183 goto err;
2184 }
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302185 } else {
2186 /* T4/T6 only has a single memory channel */
2187 goto err;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302188 }
2189 }
2190
2191 spin_lock(&adap->win0_lock);
2192 ret = t4_memory_rw(adap, 0, memtype, memaddr, 32, tpte, T4_MEMORY_READ);
2193 spin_unlock(&adap->win0_lock);
2194 return ret;
2195
2196err:
2197 dev_err(adap->pdev_dev, "stag %#x, offset %#x out of range\n",
2198 stag, offset);
2199 return -EINVAL;
2200}
2201EXPORT_SYMBOL(cxgb4_read_tpte);
2202
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05302203u64 cxgb4_read_sge_timestamp(struct net_device *dev)
2204{
2205 u32 hi, lo;
2206 struct adapter *adap;
2207
2208 adap = netdev2adap(dev);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302209 lo = t4_read_reg(adap, SGE_TIMESTAMP_LO_A);
2210 hi = TSVAL_G(t4_read_reg(adap, SGE_TIMESTAMP_HI_A));
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05302211
2212 return ((u64)hi << 32) | (u64)lo;
2213}
2214EXPORT_SYMBOL(cxgb4_read_sge_timestamp);
2215
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302216int cxgb4_bar2_sge_qregs(struct net_device *dev,
2217 unsigned int qid,
2218 enum cxgb4_bar2_qtype qtype,
Hariprasad S66cf1882015-06-09 18:23:11 +05302219 int user,
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302220 u64 *pbar2_qoffset,
2221 unsigned int *pbar2_qid)
2222{
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302223 return t4_bar2_sge_qregs(netdev2adap(dev),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302224 qid,
2225 (qtype == CXGB4_BAR2_QTYPE_EGRESS
2226 ? T4_BAR2_QTYPE_EGRESS
2227 : T4_BAR2_QTYPE_INGRESS),
Hariprasad S66cf1882015-06-09 18:23:11 +05302228 user,
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302229 pbar2_qoffset,
2230 pbar2_qid);
2231}
2232EXPORT_SYMBOL(cxgb4_bar2_sge_qregs);
2233
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002234static struct pci_driver cxgb4_driver;
2235
2236static void check_neigh_update(struct neighbour *neigh)
2237{
2238 const struct device *parent;
2239 const struct net_device *netdev = neigh->dev;
2240
2241 if (netdev->priv_flags & IFF_802_1Q_VLAN)
2242 netdev = vlan_dev_real_dev(netdev);
2243 parent = netdev->dev.parent;
2244 if (parent && parent->driver == &cxgb4_driver.driver)
2245 t4_l2t_update(dev_get_drvdata(parent), neigh);
2246}
2247
2248static int netevent_cb(struct notifier_block *nb, unsigned long event,
2249 void *data)
2250{
2251 switch (event) {
2252 case NETEVENT_NEIGH_UPDATE:
2253 check_neigh_update(data);
2254 break;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002255 case NETEVENT_REDIRECT:
2256 default:
2257 break;
2258 }
2259 return 0;
2260}
2261
2262static bool netevent_registered;
2263static struct notifier_block cxgb4_netevent_nb = {
2264 .notifier_call = netevent_cb
2265};
2266
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302267static void drain_db_fifo(struct adapter *adap, int usecs)
2268{
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002269 u32 v1, v2, lp_count, hp_count;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302270
2271 do {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302272 v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
2273 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302274 if (is_t4(adap->params.chip)) {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302275 lp_count = LP_COUNT_G(v1);
2276 hp_count = HP_COUNT_G(v1);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002277 } else {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302278 lp_count = LP_COUNT_T5_G(v1);
2279 hp_count = HP_COUNT_T5_G(v2);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002280 }
2281
2282 if (lp_count == 0 && hp_count == 0)
2283 break;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302284 set_current_state(TASK_UNINTERRUPTIBLE);
2285 schedule_timeout(usecs_to_jiffies(usecs));
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302286 } while (1);
2287}
2288
2289static void disable_txq_db(struct sge_txq *q)
2290{
Steve Wise05eb2382014-03-14 21:52:08 +05302291 unsigned long flags;
2292
2293 spin_lock_irqsave(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302294 q->db_disabled = 1;
Steve Wise05eb2382014-03-14 21:52:08 +05302295 spin_unlock_irqrestore(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302296}
2297
Steve Wise05eb2382014-03-14 21:52:08 +05302298static void enable_txq_db(struct adapter *adap, struct sge_txq *q)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302299{
2300 spin_lock_irq(&q->db_lock);
Steve Wise05eb2382014-03-14 21:52:08 +05302301 if (q->db_pidx_inc) {
2302 /* Make sure that all writes to the TX descriptors
2303 * are committed before we tell HW about them.
2304 */
2305 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302306 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2307 QID_V(q->cntxt_id) | PIDX_V(q->db_pidx_inc));
Steve Wise05eb2382014-03-14 21:52:08 +05302308 q->db_pidx_inc = 0;
2309 }
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302310 q->db_disabled = 0;
2311 spin_unlock_irq(&q->db_lock);
2312}
2313
2314static void disable_dbs(struct adapter *adap)
2315{
2316 int i;
2317
2318 for_each_ethrxq(&adap->sge, i)
2319 disable_txq_db(&adap->sge.ethtxq[i].q);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302320 for_each_iscsirxq(&adap->sge, i)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302321 disable_txq_db(&adap->sge.ofldtxq[i].q);
2322 for_each_port(adap, i)
2323 disable_txq_db(&adap->sge.ctrlq[i].q);
2324}
2325
2326static void enable_dbs(struct adapter *adap)
2327{
2328 int i;
2329
2330 for_each_ethrxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05302331 enable_txq_db(adap, &adap->sge.ethtxq[i].q);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302332 for_each_iscsirxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05302333 enable_txq_db(adap, &adap->sge.ofldtxq[i].q);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302334 for_each_port(adap, i)
Steve Wise05eb2382014-03-14 21:52:08 +05302335 enable_txq_db(adap, &adap->sge.ctrlq[i].q);
2336}
2337
2338static void notify_rdma_uld(struct adapter *adap, enum cxgb4_control cmd)
2339{
2340 if (adap->uld_handle[CXGB4_ULD_RDMA])
2341 ulds[CXGB4_ULD_RDMA].control(adap->uld_handle[CXGB4_ULD_RDMA],
2342 cmd);
2343}
2344
2345static void process_db_full(struct work_struct *work)
2346{
2347 struct adapter *adap;
2348
2349 adap = container_of(work, struct adapter, db_full_task);
2350
2351 drain_db_fifo(adap, dbfifo_drain_delay);
2352 enable_dbs(adap);
2353 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302354 if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
2355 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2356 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F,
2357 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F);
2358 else
2359 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2360 DBFIFO_LP_INT_F, DBFIFO_LP_INT_F);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302361}
2362
2363static void sync_txq_pidx(struct adapter *adap, struct sge_txq *q)
2364{
2365 u16 hw_pidx, hw_cidx;
2366 int ret;
2367
Steve Wise05eb2382014-03-14 21:52:08 +05302368 spin_lock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302369 ret = read_eq_indices(adap, (u16)q->cntxt_id, &hw_pidx, &hw_cidx);
2370 if (ret)
2371 goto out;
2372 if (q->db_pidx != hw_pidx) {
2373 u16 delta;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302374 u32 val;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302375
2376 if (q->db_pidx >= hw_pidx)
2377 delta = q->db_pidx - hw_pidx;
2378 else
2379 delta = q->size - hw_pidx + q->db_pidx;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302380
2381 if (is_t4(adap->params.chip))
2382 val = PIDX_V(delta);
2383 else
2384 val = PIDX_T5_V(delta);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302385 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302386 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2387 QID_V(q->cntxt_id) | val);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302388 }
2389out:
2390 q->db_disabled = 0;
Steve Wise05eb2382014-03-14 21:52:08 +05302391 q->db_pidx_inc = 0;
2392 spin_unlock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302393 if (ret)
2394 CH_WARN(adap, "DB drop recovery failed.\n");
2395}
2396static void recover_all_queues(struct adapter *adap)
2397{
2398 int i;
2399
2400 for_each_ethrxq(&adap->sge, i)
2401 sync_txq_pidx(adap, &adap->sge.ethtxq[i].q);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302402 for_each_iscsirxq(&adap->sge, i)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302403 sync_txq_pidx(adap, &adap->sge.ofldtxq[i].q);
2404 for_each_port(adap, i)
2405 sync_txq_pidx(adap, &adap->sge.ctrlq[i].q);
2406}
2407
Vipul Pandya881806b2012-05-18 15:29:24 +05302408static void process_db_drop(struct work_struct *work)
2409{
2410 struct adapter *adap;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302411
Vipul Pandya881806b2012-05-18 15:29:24 +05302412 adap = container_of(work, struct adapter, db_drop_task);
2413
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302414 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05302415 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002416 notify_rdma_uld(adap, CXGB4_CONTROL_DB_DROP);
Steve Wise05eb2382014-03-14 21:52:08 +05302417 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002418 recover_all_queues(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05302419 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002420 enable_dbs(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05302421 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302422 } else if (is_t5(adap->params.chip)) {
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002423 u32 dropped_db = t4_read_reg(adap, 0x010ac);
2424 u16 qid = (dropped_db >> 15) & 0x1ffff;
2425 u16 pidx_inc = dropped_db & 0x1fff;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302426 u64 bar2_qoffset;
2427 unsigned int bar2_qid;
2428 int ret;
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002429
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302430 ret = t4_bar2_sge_qregs(adap, qid, T4_BAR2_QTYPE_EGRESS,
Linus Torvaldse0456712015-06-24 16:49:49 -07002431 0, &bar2_qoffset, &bar2_qid);
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302432 if (ret)
2433 dev_err(adap->pdev_dev, "doorbell drop recovery: "
2434 "qid=%d, pidx_inc=%d\n", qid, pidx_inc);
2435 else
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302436 writel(PIDX_T5_V(pidx_inc) | QID_V(bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302437 adap->bar2 + bar2_qoffset + SGE_UDB_KDOORBELL);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002438
2439 /* Re-enable BAR2 WC */
2440 t4_set_reg_field(adap, 0x10b0, 1<<15, 1<<15);
2441 }
2442
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302443 if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
2444 t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, DROPPED_DB_F, 0);
Vipul Pandya881806b2012-05-18 15:29:24 +05302445}
2446
2447void t4_db_full(struct adapter *adap)
2448{
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302449 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05302450 disable_dbs(adap);
2451 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302452 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2453 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F, 0);
Anish Bhatt29aaee62014-08-20 13:44:06 -07002454 queue_work(adap->workq, &adap->db_full_task);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002455 }
Vipul Pandya881806b2012-05-18 15:29:24 +05302456}
2457
2458void t4_db_dropped(struct adapter *adap)
2459{
Steve Wise05eb2382014-03-14 21:52:08 +05302460 if (is_t4(adap->params.chip)) {
2461 disable_dbs(adap);
2462 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
2463 }
Anish Bhatt29aaee62014-08-20 13:44:06 -07002464 queue_work(adap->workq, &adap->db_drop_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05302465}
2466
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002467static void uld_attach(struct adapter *adap, unsigned int uld)
2468{
2469 void *handle;
2470 struct cxgb4_lld_info lli;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002471 unsigned short i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002472
2473 lli.pdev = adap->pdev;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302474 lli.pf = adap->pf;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002475 lli.l2t = adap->l2t;
2476 lli.tids = &adap->tids;
2477 lli.ports = adap->port;
2478 lli.vr = &adap->vres;
2479 lli.mtus = adap->params.mtus;
2480 if (uld == CXGB4_ULD_RDMA) {
2481 lli.rxq_ids = adap->sge.rdma_rxq;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05302482 lli.ciq_ids = adap->sge.rdma_ciq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002483 lli.nrxq = adap->sge.rdmaqs;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05302484 lli.nciq = adap->sge.rdmaciqs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002485 } else if (uld == CXGB4_ULD_ISCSI) {
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302486 lli.rxq_ids = adap->sge.iscsi_rxq;
2487 lli.nrxq = adap->sge.iscsiqsets;
Varun Prakashf2692d12016-02-14 23:02:40 +05302488 } else if (uld == CXGB4_ULD_ISCSIT) {
2489 lli.rxq_ids = adap->sge.iscsit_rxq;
2490 lli.nrxq = adap->sge.niscsitq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002491 }
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302492 lli.ntxq = adap->sge.iscsiqsets;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002493 lli.nchan = adap->params.nports;
2494 lli.nports = adap->params.nports;
2495 lli.wr_cred = adap->params.ofldq_wr_cred;
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302496 lli.adapter_type = adap->params.chip;
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05302497 lli.iscsi_iolen = MAXRXDATA_G(t4_read_reg(adap, TP_PARA_REG2_A));
Varun Prakash7714cb9e2016-02-14 23:07:39 +05302498 lli.iscsi_tagmask = t4_read_reg(adap, ULP_RX_ISCSI_TAGMASK_A);
2499 lli.iscsi_pgsz_order = t4_read_reg(adap, ULP_RX_ISCSI_PSZ_A);
2500 lli.iscsi_llimit = t4_read_reg(adap, ULP_RX_ISCSI_LLIMIT_A);
2501 lli.iscsi_ppm = &adap->iscsi_ppm;
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05302502 lli.cclk_ps = 1000000000 / adap->params.vpd.cclk;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302503 lli.udb_density = 1 << adap->params.sge.eq_qpp;
2504 lli.ucq_density = 1 << adap->params.sge.iq_qpp;
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05302505 lli.filt_mode = adap->params.tp.vlan_pri_map;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002506 /* MODQ_REQ_MAP sets queues 0-3 to chan 0-3 */
2507 for (i = 0; i < NCHAN; i++)
2508 lli.tx_modq[i] = i;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302509 lli.gts_reg = adap->regs + MYPF_REG(SGE_PF_GTS_A);
2510 lli.db_reg = adap->regs + MYPF_REG(SGE_PF_KDOORBELL_A);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002511 lli.fw_vers = adap->params.fw_vers;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302512 lli.dbfifo_int_thresh = dbfifo_int_thresh;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +05302513 lli.sge_ingpadboundary = adap->sge.fl_align;
2514 lli.sge_egrstatuspagesize = adap->sge.stat_len;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002515 lli.sge_pktshift = adap->sge.pktshift;
2516 lli.enable_fw_ofld_conn = adap->flags & FW_OFLD_CONN;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05302517 lli.max_ordird_qp = adap->params.max_ordird_qp;
2518 lli.max_ird_adapter = adap->params.max_ird_adapter;
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05302519 lli.ulptx_memwrite_dsgl = adap->params.ulptx_memwrite_dsgl;
Hariprasad Shenai982b81e2015-05-05 14:59:54 +05302520 lli.nodeid = dev_to_node(adap->pdev_dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002521
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 }
Dimitris Michailidise29f5db2010-05-18 10:07:13 +00002536
2537 if (adap->flags & FULL_INIT_DONE)
2538 ulds[uld].state_change(handle, CXGB4_STATE_UP);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002539}
2540
2541static void attach_ulds(struct adapter *adap)
2542{
2543 unsigned int i;
2544
Vipul Pandya01bcca62013-07-04 16:10:46 +05302545 spin_lock(&adap_rcu_lock);
2546 list_add_tail_rcu(&adap->rcu_node, &adap_rcu_list);
2547 spin_unlock(&adap_rcu_lock);
2548
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002549 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
2557static 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 }
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05302569 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 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002575 if (netevent_registered && list_empty(&adapter_list)) {
2576 unregister_netevent_notifier(&cxgb4_netevent_nb);
2577 netevent_registered = false;
2578 }
2579 mutex_unlock(&uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302580
2581 spin_lock(&adap_rcu_lock);
2582 list_del_rcu(&adap->rcu_node);
2583 spin_unlock(&adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002584}
2585
2586static 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);
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05302594 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);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002598 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 */
2610int 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);
2625out: mutex_unlock(&uld_mutex);
2626 return ret;
2627}
2628EXPORT_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 */
2636int 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}
2649EXPORT_SYMBOL(cxgb4_unregister_uld);
2650
Anish Bhatt1bb60372014-10-14 20:07:22 -07002651#if IS_ENABLED(CONFIG_IPV6)
Anish Bhattb5a02f52015-01-14 15:17:34 -08002652static int cxgb4_inet6addr_handler(struct notifier_block *this,
2653 unsigned long event, void *data)
Vipul Pandya01bcca62013-07-04 16:10:46 +05302654{
Anish Bhattb5a02f52015-01-14 15:17:34 -08002655 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)
Vipul Pandya01bcca62013-07-04 16:10:46 +05302659 struct adapter *adap;
Anish Bhattb5a02f52015-01-14 15:17:34 -08002660#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
Vipul Pandya01bcca62013-07-04 16:10:46 +05302682
Anish Bhattb5a02f52015-01-14 15:17:34 -08002683 if (event_dev)
2684 parent = event_dev->dev.parent;
Vipul Pandya01bcca62013-07-04 16:10:46 +05302685
Anish Bhattb5a02f52015-01-14 15:17:34 -08002686 if (parent && parent->driver == &cxgb4_driver.driver) {
Vipul Pandya01bcca62013-07-04 16:10:46 +05302687 switch (event) {
2688 case NETDEV_UP:
Anish Bhattb5a02f52015-01-14 15:17:34 -08002689 cxgb4_clip_get(event_dev, (const u32 *)ifa, 1);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302690 break;
2691 case NETDEV_DOWN:
Anish Bhattb5a02f52015-01-14 15:17:34 -08002692 cxgb4_clip_release(event_dev, (const u32 *)ifa, 1);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302693 break;
2694 default:
2695 break;
2696 }
2697 }
Anish Bhattb5a02f52015-01-14 15:17:34 -08002698 return NOTIFY_OK;
Vipul Pandya01bcca62013-07-04 16:10:46 +05302699}
2700
Anish Bhattb5a02f52015-01-14 15:17:34 -08002701static bool inet6addr_registered;
Vipul Pandya01bcca62013-07-04 16:10:46 +05302702static struct notifier_block cxgb4_inet6addr_notifier = {
2703 .notifier_call = cxgb4_inet6addr_handler
2704};
2705
Vipul Pandya01bcca62013-07-04 16:10:46 +05302706static 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)
Anish Bhattb5a02f52015-01-14 15:17:34 -08002719 ret = cxgb4_update_root_dev_clip(dev);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302720
2721 if (ret < 0)
2722 break;
2723 }
2724 rcu_read_unlock();
2725}
Anish Bhatt1bb60372014-10-14 20:07:22 -07002726#endif /* IS_ENABLED(CONFIG_IPV6) */
Vipul Pandya01bcca62013-07-04 16:10:46 +05302727
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002728/**
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 */
2738static int cxgb_up(struct adapter *adap)
2739{
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002740 int err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002741
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002742 err = setup_sge_queues(adap);
2743 if (err)
2744 goto out;
2745 err = setup_rss(adap);
2746 if (err)
2747 goto freeq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002748
2749 if (adap->flags & USING_MSIX) {
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002750 name_msix_vecs(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002751 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,
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00002764 adap->port[0]->name, adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002765 if (err)
2766 goto irq_err;
2767 }
2768 enable_rx(adap);
2769 t4_sge_start(adap);
2770 t4_intr_enable(adap);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002771 adap->flags |= FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002772 notify_ulds(adap, CXGB4_STATE_UP);
Anish Bhatt1bb60372014-10-14 20:07:22 -07002773#if IS_ENABLED(CONFIG_IPV6)
Vipul Pandya01bcca62013-07-04 16:10:46 +05302774 update_clip(adap);
Anish Bhatt1bb60372014-10-14 20:07:22 -07002775#endif
Hariprasad Shenaifc08a012016-02-16 10:07:09 +05302776 /* Initialize hash mac addr list*/
2777 INIT_LIST_HEAD(&adap->mac_hlist);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002778 out:
2779 return err;
2780 irq_err:
2781 dev_err(adap->pdev_dev, "request_irq failed, err %d\n", err);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002782 freeq:
2783 t4_free_sge_resources(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002784 goto out;
2785}
2786
2787static void cxgb_down(struct adapter *adapter)
2788{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002789 cancel_work_sync(&adapter->tid_release_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05302790 cancel_work_sync(&adapter->db_full_task);
2791 cancel_work_sync(&adapter->db_drop_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002792 adapter->tid_release_task_busy = false;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00002793 adapter->tid_release_head = NULL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002794
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002795 t4_sge_stop(adapter);
2796 t4_free_sge_resources(adapter);
2797 adapter->flags &= ~FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002798}
2799
2800/*
2801 * net_device operations
2802 */
2803static 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
Dimitris Michailidis6a3c8692011-01-19 15:29:05 +00002809 netif_carrier_off(dev);
2810
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002811 if (!(adapter->flags & FULL_INIT_DONE)) {
2812 err = cxgb_up(adapter);
2813 if (err < 0)
2814 return err;
2815 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002816
Dimitris Michailidisf68707b2010-06-18 10:05:32 +00002817 err = link_start(dev);
2818 if (!err)
2819 netif_tx_start_all_queues(dev);
2820 return err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002821}
2822
2823static int cxgb_close(struct net_device *dev)
2824{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002825 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);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302830 return t4_enable_vi(adapter, adapter->pf, pi->viid, false, false);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002831}
2832
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00002833/* Return an error number if the indicated filter isn't writable ...
2834 */
2835static 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 */
2849static int delete_filter(struct adapter *adapter, unsigned int fidx)
2850{
2851 struct filter_entry *f;
2852 int ret;
2853
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002854 if (fidx >= adapter->tids.nftids + adapter->tids.nsftids)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00002855 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
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002867int cxgb4_create_server_filter(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00002868 __be32 sip, __be16 sport, __be16 vlan,
2869 unsigned int queue, unsigned char port, unsigned char mask)
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002870{
2871 int ret;
2872 struct filter_entry *f;
2873 struct adapter *adap;
2874 int i;
2875 u8 *val;
2876
2877 adap = netdev2adap(dev);
2878
Vipul Pandya1cab7752012-12-10 09:30:55 +00002879 /* Adjust stid to correct filter index */
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05302880 stid -= adap->tids.sftid_base;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002881 stid += adap->tids.nftids;
2882
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002883 /* 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;
Vipul Pandya793dad92012-12-10 09:30:56 +00002901 if ((val[0] | val[1] | val[2] | val[3]) != 0) {
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002902 for (i = 0; i < 4; i++) {
2903 f->fs.val.lip[i] = val[i];
2904 f->fs.mask.lip[i] = ~0;
2905 }
Hariprasad Shenai0d804332015-01-05 16:30:47 +05302906 if (adap->params.tp.vlan_pri_map & PORT_F) {
Vipul Pandya793dad92012-12-10 09:30:56 +00002907 f->fs.val.iport = port;
2908 f->fs.mask.iport = mask;
2909 }
2910 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002911
Hariprasad Shenai0d804332015-01-05 16:30:47 +05302912 if (adap->params.tp.vlan_pri_map & PROTOCOL_F) {
Kumar Sanghvi7c89e552013-12-18 16:38:20 +05302913 f->fs.val.proto = IPPROTO_TCP;
2914 f->fs.mask.proto = ~0;
2915 }
2916
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002917 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}
2931EXPORT_SYMBOL(cxgb4_create_server_filter);
2932
2933int cxgb4_remove_server_filter(const struct net_device *dev, unsigned int stid,
2934 unsigned int queue, bool ipv6)
2935{
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002936 struct filter_entry *f;
2937 struct adapter *adap;
2938
2939 adap = netdev2adap(dev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002940
2941 /* Adjust stid to correct filter index */
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05302942 stid -= adap->tids.sftid_base;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002943 stid += adap->tids.nftids;
2944
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002945 f = &adap->tids.ftid_tab[stid];
2946 /* Unlock the filter */
2947 f->locked = 0;
2948
Wei Yongjun8c148462016-08-20 15:32:41 +00002949 return delete_filter(adap, stid);
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002950}
2951EXPORT_SYMBOL(cxgb4_remove_server_filter);
2952
Dimitris Michailidisf5152c92010-07-07 16:11:25 +00002953static struct rtnl_link_stats64 *cxgb_get_stats(struct net_device *dev,
2954 struct rtnl_link_stats64 *ns)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002955{
2956 struct port_stats stats;
2957 struct port_info *p = netdev_priv(dev);
2958 struct adapter *adapter = p->adapter;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002959
Gavin Shan9fe6cb52014-01-23 12:27:35 +08002960 /* Block retrieving statistics during EEH error
2961 * recovery. Otherwise, the recovery might fail
2962 * and the PCI device will be removed permanently
2963 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002964 spin_lock(&adapter->stats_lock);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08002965 if (!netif_device_present(dev)) {
2966 spin_unlock(&adapter->stats_lock);
2967 return ns;
2968 }
Hariprasad Shenaia4cfd922015-06-03 21:04:39 +05302969 t4_get_port_stats_offset(adapter, p->tx_chan, &stats,
2970 &p->stats_base);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002971 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
3004static int cxgb_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
3005{
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003006 unsigned int mbox;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003007 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
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303029 mbox = pi->adapter->pf;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003030 if (cmd == SIOCGMIIREG)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003031 ret = t4_mdio_rd(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003032 data->reg_num, &data->val_out);
3033 else
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003034 ret = t4_mdio_wr(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003035 data->reg_num, data->val_in);
3036 break;
Hariprasad Shenai5e2a5eb2015-09-28 10:26:53 +05303037 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;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003061 default:
3062 return -EOPNOTSUPP;
3063 }
3064 return ret;
3065}
3066
3067static 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
3073static 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;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303080 ret = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, new_mtu, -1,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003081 -1, -1, -1, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003082 if (!ret)
3083 dev->mtu = new_mtu;
3084 return ret;
3085}
3086
Hariprasad Shenai858aa652016-08-11 21:06:24 +05303087#ifdef CONFIG_PCI_IOV
3088static 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
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003107static 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))
Danny Kukawka504f9b52012-02-21 02:07:49 +00003114 return -EADDRNOTAVAIL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003115
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303116 ret = t4_change_mac(pi->adapter, pi->adapter->pf, pi->viid,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003117 pi->xact_addr_filt, addr->sa_data, true, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003118 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
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003126#ifdef CONFIG_NET_POLL_CONTROLLER
3127static 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
3143static 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,
Anish Bhatt688848b2014-06-19 21:37:13 -07003147 .ndo_select_queue = cxgb_select_queue,
Dimitris Michailidis9be793b2010-06-18 10:05:31 +00003148 .ndo_get_stats64 = cxgb_get_stats,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003149 .ndo_set_rx_mode = cxgb_set_rxmode,
3150 .ndo_set_mac_address = cxgb_set_mac_addr,
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00003151 .ndo_set_features = cxgb_set_features,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003152 .ndo_validate_addr = eth_validate_addr,
3153 .ndo_do_ioctl = cxgb_ioctl,
3154 .ndo_change_mtu = cxgb_change_mtu,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003155#ifdef CONFIG_NET_POLL_CONTROLLER
3156 .ndo_poll_controller = cxgb_netpoll,
3157#endif
Varun Prakash84a200b2015-03-24 19:14:46 +05303158#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 */
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05303162#ifdef CONFIG_NET_RX_BUSY_POLL
3163 .ndo_busy_poll = cxgb_busy_poll,
3164#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003165};
3166
Hariprasad Shenai78294512016-08-11 21:06:23 +05303167static const struct net_device_ops cxgb4_mgmt_netdev_ops = {
Hariprasad Shenai858aa652016-08-11 21:06:24 +05303168#ifdef CONFIG_PCI_IOV
3169 .ndo_set_vf_mac = cxgb_set_vf_mac,
3170#endif
Hariprasad Shenai78294512016-08-11 21:06:23 +05303171};
3172
3173static 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
3184static const struct ethtool_ops cxgb4_mgmt_ethtool_ops = {
3185 .get_drvinfo = get_drvinfo,
3186};
3187
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003188void t4_fatal_err(struct adapter *adap)
3189{
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303190 t4_set_reg_field(adap, SGE_CONTROL_A, GLOBALENABLE_F, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003191 t4_intr_disable(adap);
3192 dev_alert(adap->pdev_dev, "encountered fatal error, adapter stopped\n");
3193}
3194
3195static void setup_memwin(struct adapter *adap)
3196{
Hariprasad Shenaib562fc32015-05-20 17:53:45 +05303197 u32 nic_win_base = t4_get_util_window(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003198
Hariprasad Shenaib562fc32015-05-20 17:53:45 +05303199 t4_setup_memwin(adap, nic_win_base, MEMWIN_NIC);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003200}
3201
3202static void setup_memwin_rdma(struct adapter *adap)
3203{
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003204 if (adap->vres.ocq.size) {
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05303205 u32 start;
3206 unsigned int sz_kb;
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003207
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05303208 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);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003211 sz_kb = roundup_pow_of_two(adap->vres.ocq.size) >> 10;
3212 t4_write_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303213 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 3),
3214 start | BIR_V(1) | WINDOW_V(ilog2(sz_kb)));
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003215 t4_write_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303216 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3),
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003217 adap->vres.ocq.start);
3218 t4_read_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303219 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3));
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003220 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003221}
3222
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003223static 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));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303230 c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3231 FW_CMD_REQUEST_F | FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303232 c->cfvalid_to_len16 = htonl(FW_LEN16(*c));
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303233 ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), c);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003234 if (ret < 0)
3235 return ret;
3236
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303237 c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3238 FW_CMD_REQUEST_F | FW_CMD_WRITE_F);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303239 ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), NULL);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003240 if (ret < 0)
3241 return ret;
3242
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303243 ret = t4_config_glbl_rss(adap, adap->pf,
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003244 FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL,
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05303245 FW_RSS_GLB_CONFIG_CMD_TNLMAPEN_F |
3246 FW_RSS_GLB_CONFIG_CMD_TNLALLLKP_F);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003247 if (ret < 0)
3248 return ret;
3249
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303250 ret = t4_cfg_pfvf(adap, adap->mbox, adap->pf, 0, adap->sge.egr_sz, 64,
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303251 MAX_INGQ, 0, 0, 4, 0xf, 0xf, 16, FW_CMD_CAP_PF,
3252 FW_CMD_CAP_PF);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003253 if (ret < 0)
3254 return ret;
3255
3256 t4_sge_init(adap);
3257
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003258 /* tweak some settings */
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303259 t4_write_reg(adap, TP_SHIFT_CNT_A, 0x64f8849);
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303260 t4_write_reg(adap, ULP_RX_TDDP_PSZ_A, HPZ0_V(PAGE_SHIFT - 12));
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303261 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);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003264
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003265 /* first 4 Tx modulation queues point to consecutive Tx channels */
3266 adap->params.tp.tx_modq_map = 0xE4;
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303267 t4_write_reg(adap, TP_TX_MOD_QUEUE_REQ_MAP_A,
3268 TX_MOD_QUEUE_REQ_MAP_V(adap->params.tp.tx_modq_map));
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003269
3270 /* associate each Tx modulation queue with consecutive Tx channels */
3271 v = 0x84218421;
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303272 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303273 &v, 1, TP_TX_SCHED_HDR_A);
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303274 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303275 &v, 1, TP_TX_SCHED_FIFO_A);
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303276 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303277 &v, 1, TP_TX_SCHED_PCMD_A);
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003278
3279#define T4_TX_MODQ_10G_WEIGHT_DEFAULT 16 /* in KB units */
3280 if (is_offload(adap)) {
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303281 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));
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003291 }
3292
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003293 /* get basic stuff going */
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303294 return t4_early_init(adap, adap->pf);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003295}
3296
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003297/*
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.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003304 *
3305 * If the firmware we're dealing with has Configuration File support, then
3306 * we use that to perform all configuration
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003307 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00003308
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 */
3318static int adap_init0_tweaks(struct adapter *adapter)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003319{
Vipul Pandya636f9d32012-09-26 02:39:39 +00003320 /*
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);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003326
Vipul Pandya636f9d32012-09-26 02:39:39 +00003327 /*
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;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003335 }
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303336 t4_set_reg_field(adapter, SGE_CONTROL_A,
3337 PKTSHIFT_V(PKTSHIFT_M),
3338 PKTSHIFT_V(rx_dma_offset));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003339
Vipul Pandya636f9d32012-09-26 02:39:39 +00003340 /*
3341 * Don't include the "IP Pseudo Header" in CPL_RX_PKT checksums: Linux
3342 * adds the pseudo header itself.
3343 */
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303344 t4_tp_wr_bits_indirect(adapter, TP_INGRESS_CONFIG_A,
3345 CSUM_HAS_PSEUDO_HDR_F, 0);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003346
3347 return 0;
3348}
3349
Hariprasad Shenai01b69612015-05-22 21:58:21 +05303350/* 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 */
3354static 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
3381static 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
3402static 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 */
3418static 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
Vipul Pandya636f9d32012-09-26 02:39:39 +00003486/*
3487 * Attempt to initialize the adapter via a Firmware Configuration File.
3488 */
3489static 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;
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303495 int ret;
3496 int config_issued = 0;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003497 char *fw_config_file, fw_config_file_path[256];
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303498 char *config_name = NULL;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003499
3500 /*
3501 * Reset device if necessary.
3502 */
3503 if (reset) {
3504 ret = t4_fw_reset(adapter, adapter->mbox,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303505 PIORSTMODE_F | PIORST_F);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003506 if (ret < 0)
3507 goto bye;
3508 }
3509
Hariprasad Shenai01b69612015-05-22 21:58:21 +05303510 /* 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 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00003520 /*
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 */
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303525 switch (CHELSIO_CHIP_VERSION(adapter->params.chip)) {
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003526 case CHELSIO_T4:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303527 fw_config_file = FW4_CFNAME;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003528 break;
3529 case CHELSIO_T5:
3530 fw_config_file = FW5_CFNAME;
3531 break;
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05303532 case CHELSIO_T6:
3533 fw_config_file = FW6_CFNAME;
3534 break;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003535 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);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003543 if (ret < 0) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303544 config_name = "On FLASH";
Vipul Pandya636f9d32012-09-26 02:39:39 +00003545 mtype = FW_MEMTYPE_CF_FLASH;
3546 maddr = t4_flash_cfg_addr(adapter);
3547 } else {
3548 u32 params[7], val[7];
3549
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303550 sprintf(fw_config_file_path,
3551 "/lib/firmware/%s", fw_config_file);
3552 config_name = fw_config_file_path;
3553
Vipul Pandya636f9d32012-09-26 02:39:39 +00003554 if (cf->size >= FLASH_CFG_MAX_SIZE)
3555 ret = -ENOMEM;
3556 else {
Hariprasad Shenai51678652014-11-21 12:52:02 +05303557 params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3558 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
Vipul Pandya636f9d32012-09-26 02:39:39 +00003559 ret = t4_query_params(adapter, adapter->mbox,
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303560 adapter->pf, 0, 1, params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003561 if (ret == 0) {
3562 /*
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303563 * For t4_memory_rw() below addresses and
Vipul Pandya636f9d32012-09-26 02:39:39 +00003564 * 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
Hariprasad Shenai51678652014-11-21 12:52:02 +05303576 mtype = FW_PARAMS_PARAM_Y_G(val[0]);
3577 maddr = FW_PARAMS_PARAM_Z_G(val[0]) << 16;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003578
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303579 spin_lock(&adapter->win0_lock);
3580 ret = t4_memory_rw(adapter, 0, mtype, maddr,
3581 size, data, T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003582 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;
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303592 ret = t4_memory_rw(adapter, 0, mtype,
3593 maddr + size,
3594 4, &last.word,
3595 T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003596 }
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303597 spin_unlock(&adapter->win0_lock);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003598 }
3599 }
3600
3601 release_firmware(cf);
3602 if (ret)
3603 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003604 }
3605
Vipul Pandya636f9d32012-09-26 02:39:39 +00003606 /*
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 =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303614 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3615 FW_CMD_REQUEST_F |
3616 FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303617 caps_cmd.cfvalid_to_len16 =
Hariprasad Shenai51678652014-11-21 12:52:02 +05303618 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) |
Vipul Pandya636f9d32012-09-26 02:39:39 +00003621 FW_LEN16(caps_cmd));
3622 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
3623 &caps_cmd);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303624
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 =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303634 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3635 FW_CMD_REQUEST_F |
3636 FW_CMD_READ_F);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303637 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;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003644 if (ret < 0)
3645 goto bye;
3646
Vipul Pandya636f9d32012-09-26 02:39:39 +00003647 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);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003654
Vipul Pandya636f9d32012-09-26 02:39:39 +00003655 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00003656 * And now tell the firmware to use the configuration we just loaded.
3657 */
3658 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303659 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3660 FW_CMD_REQUEST_F |
3661 FW_CMD_WRITE_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303662 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00003663 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
3664 NULL);
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00003665 if (ret < 0)
3666 goto bye;
3667
Vipul Pandya636f9d32012-09-26 02:39:39 +00003668 /*
3669 * Tweak configuration based on system architecture, module
3670 * parameters, etc.
3671 */
3672 ret = adap_init0_tweaks(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003673 if (ret < 0)
3674 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003675
Vipul Pandya636f9d32012-09-26 02:39:39 +00003676 /*
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
Hariprasad Shenai06640312015-01-13 15:19:25 +05303684 /* Emit Firmware Configuration File information and return
3685 * successfully.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003686 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00003687 dev_info(adapter->pdev_dev, "Successfully configured using Firmware "\
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303688 "Configuration File \"%s\", version %#x, computed checksum %#x\n",
3689 config_name, finiver, cfcsum);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003690 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 */
3697bye:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303698 if (config_issued && ret != -ENOENT)
3699 dev_warn(adapter->pdev_dev, "\"%s\" configuration file error %d\n",
3700 config_name, -ret);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003701 return ret;
3702}
3703
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303704static 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 },
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05303731 }, {
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 },
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303747 }
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05303748
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303749};
3750
3751static 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
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003762/*
Vipul Pandya636f9d32012-09-26 02:39:39 +00003763 * Phase 0 of initialization: contact FW, obtain config, perform basic init.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003764 */
3765static 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];
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00003771 struct fw_caps_config_cmd caps_cmd;
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05303772 int reset = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003773
Hariprasad Shenaiae469b62015-04-01 21:41:16 +05303774 /* 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
Hariprasad Shenai666224d2014-12-11 11:11:43 +05303781 /* Contact FW, advertising Master capability */
Hariprasad Shenaic5a8c0f2016-06-14 14:39:30 +05303782 ret = t4_fw_hello(adap, adap->mbox, adap->mbox,
3783 is_kdump_kernel() ? MASTER_MUST : MASTER_MAY, &state);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003784 if (ret < 0) {
3785 dev_err(adap->pdev_dev, "could not connect to FW, error %d\n",
3786 ret);
3787 return ret;
3788 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00003789 if (ret == adap->mbox)
3790 adap->flags |= MASTER_PF;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003791
Vipul Pandya636f9d32012-09-26 02:39:39 +00003792 /*
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 */
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303799 t4_get_fw_version(adap, &adap->params.fw_vers);
Hariprasad Shenai0de72732016-04-26 20:10:22 +05303800 t4_get_bs_version(adap, &adap->params.bs_vers);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303801 t4_get_tp_version(adap, &adap->params.tp_vers);
Hariprasad Shenai0de72732016-04-26 20:10:22 +05303802 t4_get_exprom_version(adap, &adap->params.er_vers);
3803
Hariprasad Shenaia69265e2015-08-28 11:17:12 +05303804 ret = t4_check_fw_version(adap);
3805 /* If firmware is too old (not supported by driver) force an update. */
Hariprasad Shenai21d11bd2015-10-08 10:08:23 +05303806 if (ret)
Hariprasad Shenaia69265e2015-08-28 11:17:12 +05303807 state = DEV_STATE_UNINIT;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003808 if ((adap->flags & MASTER_PF) && state != DEV_STATE_INIT) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303809 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;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003824 }
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303825
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 */
Markus Elfring0b5b6be2015-02-04 11:28:43 +01003848 release_firmware(fw);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303849 t4_free_mem(card_fw);
3850
Vipul Pandya636f9d32012-09-26 02:39:39 +00003851 if (ret < 0)
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303852 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003853 }
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 */
Hariprasad Shenai098ef6c2015-06-05 14:24:50 +05303862 ret = t4_get_vpd_params(adap, &adap->params.vpd);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003863 if (ret < 0)
3864 goto bye;
3865
Vipul Pandya636f9d32012-09-26 02:39:39 +00003866 /*
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003867 * 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 ...
Vipul Pandya636f9d32012-09-26 02:39:39 +00003870 */
3871 v =
Hariprasad Shenai51678652014-11-21 12:52:02 +05303872 FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3873 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PORTVEC);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303874 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1, &v, &port_vec);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003875 if (ret < 0)
3876 goto bye;
3877
3878 adap->params.nports = hweight32(port_vec);
3879 adap->params.portvec = port_vec;
3880
Hariprasad Shenai06640312015-01-13 15:19:25 +05303881 /* If the firmware is initialized already, emit a simply note to that
3882 * effect. Otherwise, it's time to try initializing the adapter.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003883 */
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");
Vipul Pandya636f9d32012-09-26 02:39:39 +00003888 } else {
3889 dev_info(adap->pdev_dev, "Coming up as MASTER: "\
3890 "Initializing adapter\n");
Hariprasad Shenai06640312015-01-13 15:19:25 +05303891
3892 /* Find out whether we're dealing with a version of the
3893 * firmware which has configuration file support.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003894 */
Hariprasad Shenai06640312015-01-13 15:19:25 +05303895 params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3896 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303897 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1,
Hariprasad Shenai06640312015-01-13 15:19:25 +05303898 params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003899
Hariprasad Shenai06640312015-01-13 15:19:25 +05303900 /* 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 }
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003908
Hariprasad Shenai06640312015-01-13 15:19:25 +05303909 /* 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;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003918 }
3919 if (ret < 0) {
Hariprasad Shenai06640312015-01-13 15:19:25 +05303920 dev_err(adap->pdev_dev, "could not initialize "
3921 "adapter, error %d\n", -ret);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003922 goto bye;
3923 }
3924 }
3925
Hariprasad Shenai06640312015-01-13 15:19:25 +05303926 /* 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.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003929 */
Hariprasad Shenai06640312015-01-13 15:19:25 +05303930 ret = t4_sge_init(adap);
3931 if (ret < 0)
3932 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003933
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00003934 if (is_bypass_device(adap->pdev->device))
3935 adap->params.bypass = 1;
3936
Vipul Pandya636f9d32012-09-26 02:39:39 +00003937 /*
3938 * Grab some of our basic fundamental operating parameters.
3939 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003940#define FW_PARAM_DEV(param) \
Hariprasad Shenai51678652014-11-21 12:52:02 +05303941 (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | \
3942 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_##param))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003943
3944#define FW_PARAM_PFVF(param) \
Hariprasad Shenai51678652014-11-21 12:52:02 +05303945 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)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003949
Vipul Pandya636f9d32012-09-26 02:39:39 +00003950 params[0] = FW_PARAM_PFVF(EQ_START);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003951 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);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303956 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003957 if (ret < 0)
3958 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003959 adap->sge.egr_start = val[0];
3960 adap->l2t_start = val[1];
3961 adap->l2t_end = val[2];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003962 adap->tids.ftid_base = val[3];
3963 adap->tids.nftids = val[4] - val[3] + 1;
3964 adap->sge.ingr_start = val[5];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003965
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303966 /* 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);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303974 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303975 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
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05303995 * ie starving_fl, txq_maperr and blocked_fl.
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303996 */
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
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05304011#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
Anish Bhattb5a02f52015-01-14 15:17:34 -08004020 params[0] = FW_PARAM_PFVF(CLIP_START);
4021 params[1] = FW_PARAM_PFVF(CLIP_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304022 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
Anish Bhattb5a02f52015-01-14 15:17:34 -08004023 if (ret < 0)
4024 goto bye;
4025 adap->clipt_start = val[0];
4026 adap->clipt_end = val[1];
4027
Rahul Lakkireddyb72a32d2016-08-22 16:29:06 +05304028 /* We don't yet have a PARAMs calls to retrieve the number of Traffic
4029 * Classes supported by the hardware/firmware so we hard code it here
4030 * for now.
4031 */
4032 adap->params.nsched_cls = is_t4(adap->params.chip) ? 15 : 16;
4033
Vipul Pandya636f9d32012-09-26 02:39:39 +00004034 /* query params related to active filter region */
4035 params[0] = FW_PARAM_PFVF(ACTIVE_FILTER_START);
4036 params[1] = FW_PARAM_PFVF(ACTIVE_FILTER_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304037 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00004038 /* If Active filter size is set we enable establishing
4039 * offload connection through firmware work request
4040 */
4041 if ((val[0] != val[1]) && (ret >= 0)) {
4042 adap->flags |= FW_OFLD_CONN;
4043 adap->tids.aftid_base = val[0];
4044 adap->tids.aftid_end = val[1];
4045 }
4046
Vipul Pandyab407a4a2013-04-29 04:04:40 +00004047 /* If we're running on newer firmware, let it know that we're
4048 * prepared to deal with encapsulated CPL messages. Older
4049 * firmware won't understand this and we'll just get
4050 * unencapsulated messages ...
4051 */
4052 params[0] = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
4053 val[0] = 1;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304054 (void)t4_set_params(adap, adap->mbox, adap->pf, 0, 1, params, val);
Vipul Pandyab407a4a2013-04-29 04:04:40 +00004055
Vipul Pandya636f9d32012-09-26 02:39:39 +00004056 /*
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05304057 * Find out whether we're allowed to use the T5+ ULPTX MEMWRITE DSGL
4058 * capability. Earlier versions of the firmware didn't have the
4059 * ULPTX_MEMWRITE_DSGL so we'll interpret a query failure as no
4060 * permission to use ULPTX MEMWRITE DSGL.
4061 */
4062 if (is_t4(adap->params.chip)) {
4063 adap->params.ulptx_memwrite_dsgl = false;
4064 } else {
4065 params[0] = FW_PARAM_DEV(ULPTX_MEMWRITE_DSGL);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304066 ret = t4_query_params(adap, adap->mbox, adap->pf, 0,
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05304067 1, params, val);
4068 adap->params.ulptx_memwrite_dsgl = (ret == 0 && val[0] != 0);
4069 }
4070
4071 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00004072 * Get device capabilities so we can determine what resources we need
4073 * to manage.
4074 */
4075 memset(&caps_cmd, 0, sizeof(caps_cmd));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05304076 caps_cmd.op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
4077 FW_CMD_REQUEST_F | FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05304078 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00004079 ret = t4_wr_mbox(adap, adap->mbox, &caps_cmd, sizeof(caps_cmd),
4080 &caps_cmd);
4081 if (ret < 0)
4082 goto bye;
4083
Vipul Pandya13ee15d2012-09-26 02:39:40 +00004084 if (caps_cmd.ofldcaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004085 /* 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);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304092 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
Vipul Pandya636f9d32012-09-26 02:39:39 +00004093 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004094 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;
Vipul Pandya636f9d32012-09-26 02:39:39 +00004100 /*
Joe Perchesdbedd442015-03-06 20:49:12 -08004101 * Setup server filter region. Divide the available filter
Vipul Pandya636f9d32012-09-26 02:39:39 +00004102 * 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 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004117 adap->vres.ddp.start = val[3];
4118 adap->vres.ddp.size = val[4] - val[3] + 1;
4119 adap->params.ofldq_wr_cred = val[5];
Vipul Pandya636f9d32012-09-26 02:39:39 +00004120
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004121 adap->params.offload = 1;
4122 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00004123 if (caps_cmd.rdmacaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004124 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);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304130 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
Vipul Pandya636f9d32012-09-26 02:39:39 +00004131 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004132 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;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00004140
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);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004145 params[4] = FW_PARAM_PFVF(OCQ_START);
4146 params[5] = FW_PARAM_PFVF(OCQ_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304147 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params,
Hariprasad Shenai5c937dd2014-09-01 19:55:00 +05304148 val);
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00004149 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;
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004155 adap->vres.ocq.start = val[4];
4156 adap->vres.ocq.size = val[5] - val[4] + 1;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05304157
4158 params[0] = FW_PARAM_DEV(MAXORDIRD_QP);
4159 params[1] = FW_PARAM_DEV(MAXIRD_ADAPTER);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304160 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params,
Hariprasad Shenai5c937dd2014-09-01 19:55:00 +05304161 val);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05304162 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);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004174 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00004175 if (caps_cmd.iscsicaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004176 params[0] = FW_PARAM_PFVF(ISCSI_START);
4177 params[1] = FW_PARAM_PFVF(ISCSI_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304178 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2,
Vipul Pandya636f9d32012-09-26 02:39:39 +00004179 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004180 if (ret < 0)
4181 goto bye;
4182 adap->vres.iscsi.start = val[0];
4183 adap->vres.iscsi.size = val[1] - val[0] + 1;
4184 }
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304185 if (caps_cmd.cryptocaps) {
4186 /* Should query params here...TODO */
4187 adap->params.crypto |= ULP_CRYPTO_LOOKASIDE;
4188 adap->num_uld += 1;
4189 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004190#undef FW_PARAM_PFVF
4191#undef FW_PARAM_DEV
4192
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05304193 /* 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.
Vipul Pandya636f9d32012-09-26 02:39:39 +00004197 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004198 t4_read_mtu_tbl(adap, adap->params.mtus, NULL);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05304199 if (state != DEV_STATE_INIT) {
4200 int i;
Casey Leedom7ee9ff92010-06-25 12:11:46 +00004201
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05304202 /* 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 }
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05304228 t4_init_sge_params(adap);
Vipul Pandya636f9d32012-09-26 02:39:39 +00004229 adap->flags |= FW_OK;
Hariprasad Shenaic1e9af02015-06-05 14:24:52 +05304230 t4_init_tp_params(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004231 return 0;
4232
4233 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00004234 * 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.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004237 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00004238bye:
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05304239 kfree(adap->sge.egr_map);
4240 kfree(adap->sge.ingr_map);
4241 kfree(adap->sge.starving_fl);
4242 kfree(adap->sge.txq_maperr);
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05304243#ifdef CONFIG_DEBUG_FS
4244 kfree(adap->sge.blocked_fl);
4245#endif
Vipul Pandya636f9d32012-09-26 02:39:39 +00004246 if (ret != -ETIMEDOUT && ret != -EIO)
4247 t4_fw_bye(adap, adap->mbox);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004248 return ret;
4249}
4250
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004251/* EEH callbacks */
4252
4253static 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);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004265 spin_lock(&adap->stats_lock);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004266 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 }
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004272 spin_unlock(&adap->stats_lock);
Hariprasad Shenaib37987e2015-03-26 10:04:26 +05304273 disable_interrupts(adap);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004274 if (adap->flags & FULL_INIT_DONE)
4275 cxgb_down(adap);
4276 rtnl_unlock();
Gavin Shan144be3d2014-01-23 12:27:34 +08004277 if ((adap->flags & DEV_ENABLED)) {
4278 pci_disable_device(pdev);
4279 adap->flags &= ~DEV_ENABLED;
4280 }
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004281out: return state == pci_channel_io_perm_failure ?
4282 PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
4283}
4284
4285static 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
Gavin Shan144be3d2014-01-23 12:27:34 +08004297 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;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004304 }
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
Hariprasad Shenai8203b502014-10-09 05:48:47 +05304311 if (t4_wait_dev_ready(adap->regs) < 0)
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004312 return PCI_ERS_RESULT_DISCONNECT;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304313 if (t4_fw_hello(adap, adap->mbox, adap->pf, MASTER_MUST, NULL) < 0)
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004314 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
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304322 ret = t4_alloc_vi(adap, adap->mbox, p->tx_chan, adap->pf, 0, 1,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004323 NULL, NULL);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004324 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);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004332 setup_memwin(adap);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004333 if (cxgb_up(adap))
4334 return PCI_ERS_RESULT_DISCONNECT;
4335 return PCI_ERS_RESULT_RECOVERED;
4336}
4337
4338static 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
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07004359static const struct pci_error_handlers cxgb4_eeh = {
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004360 .error_detected = eeh_err_detected,
4361 .slot_reset = eeh_slot_reset,
4362 .resume = eeh_resume,
4363};
4364
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304365static inline bool is_x_10g_port(const struct link_config *lc)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004366{
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304367 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 ||
4368 (lc->supported & FW_PORT_CAP_SPEED_40G) != 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004369}
4370
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004371/*
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 */
Bill Pemberton91744942012-12-03 09:23:02 -05004376static void cfg_queues(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004377{
4378 struct sge *s = &adap->sge;
Anish Bhatt688848b2014-06-19 21:37:13 -07004379 int i, n10g = 0, qidx = 0;
4380#ifndef CONFIG_CHELSIO_T4_DCB
4381 int q10g = 0;
4382#endif
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304383 int ciq_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004384
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304385 /* 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
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004394 for_each_port(adap, i)
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304395 n10g += is_x_10g_port(&adap2pinfo(adap, i)->link_cfg);
Anish Bhatt688848b2014-06-19 21:37:13 -07004396#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 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004406
Anish Bhatt688848b2014-06-19 21:37:13 -07004407 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 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004415 /*
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;
Yuval Mintz5952dde2012-07-01 03:18:55 +00004421 if (q10g > netif_get_num_default_rss_queues())
4422 q10g = netif_get_num_default_rss_queues();
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004423
4424 for_each_port(adap, i) {
4425 struct port_info *pi = adap2pinfo(adap, i);
4426
4427 pi->first_qset = qidx;
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304428 pi->nqsets = is_x_10g_port(&pi->link_cfg) ? q10g : 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004429 qidx += pi->nqsets;
4430 }
Anish Bhatt688848b2014-06-19 21:37:13 -07004431#endif /* !CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004432
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) {
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304443 i = min_t(int, ARRAY_SIZE(s->iscsirxq),
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004444 num_online_cpus());
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304445 s->iscsiqsets = roundup(i, adap->params.nports);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004446 } else
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304447 s->iscsiqsets = adap->params.nports;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004448 /* For RDMA one Rx queue per channel suffices */
4449 s->rdmaqs = adap->params.nports;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304450 /* 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);
Varun Prakashf2692d12016-02-14 23:02:40 +05304460
4461 if (!is_t4(adap->params.chip))
4462 s->niscsitq = s->iscsiqsets;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004463 }
4464
4465 for (i = 0; i < ARRAY_SIZE(s->ethrxq); i++) {
4466 struct sge_eth_rxq *r = &s->ethrxq[i];
4467
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304468 init_rspq(adap, &r->rspq, 5, 10, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004469 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
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304481 for (i = 0; i < ARRAY_SIZE(s->iscsirxq); i++) {
4482 struct sge_ofld_rxq *r = &s->iscsirxq[i];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004483
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304484 init_rspq(adap, &r->rspq, 5, 1, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004485 r->rspq.uld = CXGB4_ULD_ISCSI;
4486 r->fl.size = 72;
4487 }
4488
Varun Prakashf2692d12016-02-14 23:02:40 +05304489 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
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004499 for (i = 0; i < ARRAY_SIZE(s->rdmarxq); i++) {
4500 struct sge_ofld_rxq *r = &s->rdmarxq[i];
4501
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304502 init_rspq(adap, &r->rspq, 5, 1, 511, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004503 r->rspq.uld = CXGB4_ULD_RDMA;
4504 r->fl.size = 72;
4505 }
4506
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304507 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
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304516 init_rspq(adap, &r->rspq, 5, 1, ciq_size, 64);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304517 r->rspq.uld = CXGB4_ULD_RDMA;
4518 }
4519
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304520 init_rspq(adap, &s->fw_evtq, 0, 1, 1024, 64);
4521 init_rspq(adap, &s->intrq, 0, 1, 2 * MAX_INGQ, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004522}
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 */
Bill Pemberton91744942012-12-03 09:23:02 -05004528static void reduce_ethqs(struct adapter *adap, int n)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004529{
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
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304552static 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
4572static 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
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004581/* 2 MSI-X vectors needed for the FW queue and non-data interrupts */
4582#define EXTRA_VECS 2
4583
Bill Pemberton91744942012-12-03 09:23:02 -05004584static int enable_msix(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004585{
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304586 int ofld_need = 0, uld_need = 0;
4587 int i, j, want, need, allocated;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004588 struct sge *s = &adap->sge;
4589 unsigned int nchan = adap->params.nports;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304590 struct msix_entry *entries;
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304591 int max_ingq = MAX_INGQ;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004592
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304593 max_ingq += (MAX_OFLD_QSETS * adap->num_uld);
4594 entries = kmalloc(sizeof(*entries) * (max_ingq + 1),
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304595 GFP_KERNEL);
4596 if (!entries)
4597 return -ENOMEM;
4598
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304599 /* 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)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004604 entries[i].entry = i;
4605
4606 want = s->max_ethqsets + EXTRA_VECS;
4607 if (is_offload(adap)) {
Varun Prakashf2692d12016-02-14 23:02:40 +05304608 want += s->rdmaqs + s->rdmaciqs + s->iscsiqsets +
4609 s->niscsitq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004610 /* need nchan for each possible ULD */
Varun Prakashf2692d12016-02-14 23:02:40 +05304611 if (is_t4(adap->params.chip))
4612 ofld_need = 3 * nchan;
4613 else
4614 ofld_need = 4 * nchan;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004615 }
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304616 if (is_pci_uld(adap)) {
4617 want += netif_get_num_default_rss_queues() * nchan;
4618 uld_need = nchan;
4619 }
Anish Bhatt688848b2014-06-19 21:37:13 -07004620#ifdef CONFIG_CHELSIO_T4_DCB
4621 /* For Data Center Bridging we need 8 Ethernet TX Priority Queues for
4622 * each port.
4623 */
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304624 need = 8 * adap->params.nports + EXTRA_VECS + ofld_need + uld_need;
Anish Bhatt688848b2014-06-19 21:37:13 -07004625#else
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304626 need = adap->params.nports + EXTRA_VECS + ofld_need + uld_need;
Anish Bhatt688848b2014-06-19 21:37:13 -07004627#endif
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304628 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 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004635
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304636 /* Distribute available vectors to the various queue groups.
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004637 * Every group gets its minimum requirement and NIC gets top
4638 * priority for leftovers.
4639 */
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304640 i = allocated - EXTRA_VECS - ofld_need - uld_need;
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004641 if (i < s->max_ethqsets) {
4642 s->max_ethqsets = i;
4643 if (i < s->ethqsets)
4644 reduce_ethqs(adap, i);
4645 }
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304646 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
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004654 if (is_offload(adap)) {
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304655 if (allocated < want) {
4656 s->rdmaqs = nchan;
4657 s->rdmaciqs = nchan;
Varun Prakashf2692d12016-02-14 23:02:40 +05304658
4659 if (!is_t4(adap->params.chip))
4660 s->niscsitq = nchan;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304661 }
4662
4663 /* leftovers go to OFLD */
4664 i = allocated - EXTRA_VECS - s->max_ethqsets -
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304665 s->rdmaqs - s->rdmaciqs - s->niscsitq;
4666 if (is_pci_uld(adap))
4667 i -= s->nqs_per_uld * adap->num_uld;
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304668 s->iscsiqsets = (i / nchan) * nchan; /* round down */
Varun Prakashf2692d12016-02-14 23:02:40 +05304669
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004670 }
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304671
4672 for (i = 0; i < (allocated - (s->nqs_per_uld * adap->num_uld)); ++i)
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004673 adap->msix_info[i].vec = entries[i].vector;
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304674 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 }
Hariprasad Shenai43eb4e82015-10-21 14:39:53 +05304679 dev_info(adap->pdev_dev, "%d MSI-X vectors allocated, "
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304680 "nic %d iscsi %d rdma cpl %d rdma ciq %d uld %d\n",
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304681 allocated, s->max_ethqsets, s->iscsiqsets, s->rdmaqs,
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05304682 s->rdmaciqs, s->nqs_per_uld);
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004683
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304684 kfree(entries);
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004685 return 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004686}
4687
4688#undef EXTRA_VECS
4689
Bill Pemberton91744942012-12-03 09:23:02 -05004690static int init_rss(struct adapter *adap)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004691{
Hariprasad Shenaic035e182015-05-06 19:48:37 +05304692 unsigned int i;
4693 int err;
4694
4695 err = t4_init_rss_mode(adap, adap->mbox);
4696 if (err)
4697 return err;
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004698
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;
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004705 }
4706 return 0;
4707}
4708
Hariprasad Shenai547fd272015-12-23 11:29:53 +05304709static 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
4748static 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
Hariprasad Shenai0de72732016-04-26 20:10:22 +05304782/* Dump basic information about the adapter */
4783static 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
Bill Pemberton91744942012-12-03 09:23:02 -05004844static void print_port_info(const struct net_device *dev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004845{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004846 char buf[80];
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004847 char *bufp = buf;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00004848 const char *spd = "";
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004849 const struct port_info *pi = netdev_priv(dev);
4850 const struct adapter *adap = pi->adapter;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00004851
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";
Roland Dreierd2e752d2014-04-28 17:36:20 -07004856 else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_8_0GB)
4857 spd = " 8 GT/s";
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004858
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004859 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/");
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05304865 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_40G)
4866 bufp += sprintf(bufp, "40G/");
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004867 if (bufp != buf)
4868 --bufp;
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05304869 sprintf(bufp, "BASE-%s", t4_get_port_type_description(pi->port_type));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004870
Hariprasad Shenai0de72732016-04-26 20:10:22 +05304871 netdev_info(dev, "%s: Chelsio %s (%s) %s\n",
4872 dev->name, adap->params.vpd.id, adap->name, buf);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004873}
4874
Bill Pemberton91744942012-12-03 09:23:02 -05004875static void enable_pcie_relaxed_ordering(struct pci_dev *dev)
Dimitris Michailidisef306b52010-12-14 21:36:44 +00004876{
Jiang Liue5c8ae52012-08-20 13:53:19 -06004877 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_RELAX_EN);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00004878}
4879
Dimitris Michailidis06546392010-07-11 12:01:16 +00004880/*
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 */
4887static void free_some_resources(struct adapter *adapter)
4888{
4889 unsigned int i;
4890
4891 t4_free_mem(adapter->l2t);
Rahul Lakkireddyb72a32d2016-08-22 16:29:06 +05304892 t4_cleanup_sched(adapter);
Dimitris Michailidis06546392010-07-11 12:01:16 +00004893 t4_free_mem(adapter->tids.tid_tab);
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05304894 kfree(adapter->sge.egr_map);
4895 kfree(adapter->sge.ingr_map);
4896 kfree(adapter->sge.starving_fl);
4897 kfree(adapter->sge.txq_maperr);
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05304898#ifdef CONFIG_DEBUG_FS
4899 kfree(adapter->sge.blocked_fl);
4900#endif
Dimitris Michailidis06546392010-07-11 12:01:16 +00004901 disable_msi(adapter);
4902
4903 for_each_port(adapter, i)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004904 if (adapter->port[i]) {
Hariprasad Shenai4f3a0fc2015-06-05 14:24:47 +05304905 struct port_info *pi = adap2pinfo(adapter, i);
4906
4907 if (pi->viid != 0)
4908 t4_free_vi(adapter, adapter->mbox, adapter->pf,
4909 0, pi->viid);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004910 kfree(adap2pinfo(adapter, i)->rss);
Dimitris Michailidis06546392010-07-11 12:01:16 +00004911 free_netdev(adapter->port[i]);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004912 }
Dimitris Michailidis06546392010-07-11 12:01:16 +00004913 if (adapter->flags & FW_OK)
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304914 t4_fw_bye(adapter, adapter->pf);
Dimitris Michailidis06546392010-07-11 12:01:16 +00004915}
4916
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00004917#define TSO_FLAGS (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN)
Dimitris Michailidis35d35682010-08-02 13:19:20 +00004918#define VLAN_FEAT (NETIF_F_SG | NETIF_F_IP_CSUM | TSO_FLAGS | \
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004919 NETIF_F_IPV6_CSUM | NETIF_F_HIGHDMA)
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004920#define SEGMENT_SIZE 128
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004921
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304922static int get_chip_type(struct pci_dev *pdev, u32 pl_rev)
4923{
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304924 u16 device_id;
4925
4926 /* Retrieve adapter's device ID */
4927 pci_read_config_word(pdev, PCI_DEVICE_ID, &device_id);
françois romieu46cdc9b2015-09-04 23:05:42 +02004928
4929 switch (device_id >> 12) {
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304930 case CHELSIO_T4:
françois romieu46cdc9b2015-09-04 23:05:42 +02004931 return CHELSIO_CHIP_CODE(CHELSIO_T4, pl_rev);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304932 case CHELSIO_T5:
françois romieu46cdc9b2015-09-04 23:05:42 +02004933 return CHELSIO_CHIP_CODE(CHELSIO_T5, pl_rev);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304934 case CHELSIO_T6:
françois romieu46cdc9b2015-09-04 23:05:42 +02004935 return CHELSIO_CHIP_CODE(CHELSIO_T6, pl_rev);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304936 default:
4937 dev_err(&pdev->dev, "Device %d is not supported\n",
4938 device_id);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304939 }
françois romieu46cdc9b2015-09-04 23:05:42 +02004940 return -EINVAL;
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304941}
4942
Hariprasad Shenaib6244202016-06-14 14:39:31 +05304943#ifdef CONFIG_PCI_IOV
4944static int cxgb4_iov_configure(struct pci_dev *pdev, int num_vfs)
4945{
Hariprasad Shenai78294512016-08-11 21:06:23 +05304946 struct adapter *adap = pci_get_drvdata(pdev);
Hariprasad Shenaib6244202016-06-14 14:39:31 +05304947 int err = 0;
4948 int current_vfs = pci_num_vf(pdev);
4949 u32 pcie_fw;
Hariprasad Shenaib6244202016-06-14 14:39:31 +05304950
Hariprasad Shenai78294512016-08-11 21:06:23 +05304951 pcie_fw = readl(adap->regs + PCIE_FW_A);
Hariprasad Shenaib6244202016-06-14 14:39:31 +05304952 /* Check if cxgb4 is the MASTER and fw is initialized */
4953 if (!(pcie_fw & PCIE_FW_INIT_F) ||
4954 !(pcie_fw & PCIE_FW_MASTER_VLD_F) ||
4955 PCIE_FW_MASTER_G(pcie_fw) != 4) {
4956 dev_warn(&pdev->dev,
4957 "cxgb4 driver needs to be MASTER to support SRIOV\n");
4958 return -EOPNOTSUPP;
4959 }
4960
4961 /* If any of the VF's is already assigned to Guest OS, then
4962 * SRIOV for the same cannot be modified
4963 */
4964 if (current_vfs && pci_vfs_assigned(pdev)) {
4965 dev_err(&pdev->dev,
4966 "Cannot modify SR-IOV while VFs are assigned\n");
4967 num_vfs = current_vfs;
4968 return num_vfs;
4969 }
4970
4971 /* Disable SRIOV when zero is passed.
4972 * One needs to disable SRIOV before modifying it, else
4973 * stack throws the below warning:
4974 * " 'n' VFs already enabled. Disable before enabling 'm' VFs."
4975 */
4976 if (!num_vfs) {
4977 pci_disable_sriov(pdev);
Hariprasad Shenai78294512016-08-11 21:06:23 +05304978 if (adap->port[0]->reg_state == NETREG_REGISTERED)
4979 unregister_netdev(adap->port[0]);
Hariprasad Shenaib6244202016-06-14 14:39:31 +05304980 return num_vfs;
4981 }
4982
4983 if (num_vfs != current_vfs) {
4984 err = pci_enable_sriov(pdev, num_vfs);
4985 if (err)
4986 return err;
Hariprasad Shenai78294512016-08-11 21:06:23 +05304987
4988 if (adap->port[0]->reg_state == NETREG_UNINITIALIZED) {
4989 err = register_netdev(adap->port[0]);
4990 if (err < 0)
4991 pr_info("Unable to register VF mgmt netdev\n");
4992 }
Hariprasad Shenaib6244202016-06-14 14:39:31 +05304993 }
4994 return num_vfs;
4995}
4996#endif
4997
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00004998static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004999{
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005000 int func, i, err, s_qpp, qpp, num_seg;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005001 struct port_info *pi;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005002 bool highdma = false;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005003 struct adapter *adapter = NULL;
Hariprasad Shenai78294512016-08-11 21:06:23 +05305004 struct net_device *netdev;
5005#ifdef CONFIG_PCI_IOV
5006 char name[IFNAMSIZ];
5007#endif
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305008 void __iomem *regs;
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05305009 u32 whoami, pl_rev;
5010 enum chip_type chip;
Hariprasad Shenai78294512016-08-11 21:06:23 +05305011 static int adap_idx = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005012
5013 printk_once(KERN_INFO "%s - version %s\n", DRV_DESC, DRV_VERSION);
5014
5015 err = pci_request_regions(pdev, KBUILD_MODNAME);
5016 if (err) {
5017 /* Just info, some other driver may have claimed the device. */
5018 dev_info(&pdev->dev, "cannot obtain PCI resources\n");
5019 return err;
5020 }
5021
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005022 err = pci_enable_device(pdev);
5023 if (err) {
5024 dev_err(&pdev->dev, "cannot enable PCI device\n");
5025 goto out_release_regions;
5026 }
5027
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305028 regs = pci_ioremap_bar(pdev, 0);
5029 if (!regs) {
5030 dev_err(&pdev->dev, "cannot map device registers\n");
5031 err = -ENOMEM;
5032 goto out_disable_device;
5033 }
5034
Hariprasad Shenai8203b502014-10-09 05:48:47 +05305035 err = t4_wait_dev_ready(regs);
5036 if (err < 0)
5037 goto out_unmap_bar0;
5038
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305039 /* We control everything through one PF */
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05305040 whoami = readl(regs + PL_WHOAMI_A);
5041 pl_rev = REV_G(readl(regs + PL_REV_A));
5042 chip = get_chip_type(pdev, pl_rev);
5043 func = CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5 ?
5044 SOURCEPF_G(whoami) : T6_SOURCEPF_G(whoami);
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305045 if (func != ent->driver_data) {
Hariprasad Shenai78294512016-08-11 21:06:23 +05305046#ifndef CONFIG_PCI_IOV
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305047 iounmap(regs);
Hariprasad Shenai78294512016-08-11 21:06:23 +05305048#endif
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305049 pci_disable_device(pdev);
5050 pci_save_state(pdev); /* to restore SR-IOV later */
5051 goto sriov;
5052 }
5053
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005054 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005055 highdma = true;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005056 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
5057 if (err) {
5058 dev_err(&pdev->dev, "unable to obtain 64-bit DMA for "
5059 "coherent allocations\n");
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305060 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005061 }
5062 } else {
5063 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
5064 if (err) {
5065 dev_err(&pdev->dev, "no usable DMA configuration\n");
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305066 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005067 }
5068 }
5069
5070 pci_enable_pcie_error_reporting(pdev);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00005071 enable_pcie_relaxed_ordering(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005072 pci_set_master(pdev);
5073 pci_save_state(pdev);
5074
5075 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
5076 if (!adapter) {
5077 err = -ENOMEM;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305078 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005079 }
Hariprasad Shenai78294512016-08-11 21:06:23 +05305080 adap_idx++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005081
Anish Bhatt29aaee62014-08-20 13:44:06 -07005082 adapter->workq = create_singlethread_workqueue("cxgb4");
5083 if (!adapter->workq) {
5084 err = -ENOMEM;
5085 goto out_free_adapter;
5086 }
5087
Hariprasad Shenai7f080c32016-04-28 13:23:18 +05305088 adapter->mbox_log = kzalloc(sizeof(*adapter->mbox_log) +
5089 (sizeof(struct mbox_cmd) *
5090 T4_OS_LOG_MBOX_CMDS),
5091 GFP_KERNEL);
5092 if (!adapter->mbox_log) {
5093 err = -ENOMEM;
5094 goto out_free_adapter;
5095 }
5096 adapter->mbox_log->size = T4_OS_LOG_MBOX_CMDS;
5097
Gavin Shan144be3d2014-01-23 12:27:34 +08005098 /* PCI device has been enabled */
5099 adapter->flags |= DEV_ENABLED;
5100
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305101 adapter->regs = regs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005102 adapter->pdev = pdev;
5103 adapter->pdev_dev = &pdev->dev;
Hariprasad Shenai0de72732016-04-26 20:10:22 +05305104 adapter->name = pci_name(pdev);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05305105 adapter->mbox = func;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05305106 adapter->pf = func;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005107 adapter->msg_enable = dflt_msg_enable;
5108 memset(adapter->chan_map, 0xff, sizeof(adapter->chan_map));
5109
5110 spin_lock_init(&adapter->stats_lock);
5111 spin_lock_init(&adapter->tid_release_lock);
Anish Bhatte327c222014-10-29 17:54:03 -07005112 spin_lock_init(&adapter->win0_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005113
5114 INIT_WORK(&adapter->tid_release_task, process_tid_release_list);
Vipul Pandya881806b2012-05-18 15:29:24 +05305115 INIT_WORK(&adapter->db_full_task, process_db_full);
5116 INIT_WORK(&adapter->db_drop_task, process_db_drop);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005117
5118 err = t4_prep_adapter(adapter);
5119 if (err)
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305120 goto out_free_adapter;
5121
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005122
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05305123 if (!is_t4(adapter->params.chip)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05305124 s_qpp = (QUEUESPERPAGEPF0_S +
5125 (QUEUESPERPAGEPF1_S - QUEUESPERPAGEPF0_S) *
Hariprasad Shenaib2612722015-05-27 22:30:24 +05305126 adapter->pf);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05305127 qpp = 1 << QUEUESPERPAGEPF0_G(t4_read_reg(adapter,
5128 SGE_EGRESS_QUEUES_PER_PAGE_PF_A) >> s_qpp);
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005129 num_seg = PAGE_SIZE / SEGMENT_SIZE;
5130
5131 /* Each segment size is 128B. Write coalescing is enabled only
5132 * when SGE_EGRESS_QUEUES_PER_PAGE_PF reg value for the
5133 * queue is less no of segments that can be accommodated in
5134 * a page size.
5135 */
5136 if (qpp > num_seg) {
5137 dev_err(&pdev->dev,
5138 "Incorrect number of egress queues per page\n");
5139 err = -EINVAL;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305140 goto out_free_adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005141 }
5142 adapter->bar2 = ioremap_wc(pci_resource_start(pdev, 2),
5143 pci_resource_len(pdev, 2));
5144 if (!adapter->bar2) {
5145 dev_err(&pdev->dev, "cannot map device bar2 region\n");
5146 err = -ENOMEM;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305147 goto out_free_adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005148 }
5149 }
5150
Vipul Pandya636f9d32012-09-26 02:39:39 +00005151 setup_memwin(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005152 err = adap_init0(adapter);
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05305153#ifdef CONFIG_DEBUG_FS
5154 bitmap_zero(adapter->sge.blocked_fl, adapter->sge.egr_sz);
5155#endif
Vipul Pandya636f9d32012-09-26 02:39:39 +00005156 setup_memwin_rdma(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005157 if (err)
5158 goto out_unmap_bar;
5159
Hariprasad Shenai2a485cf2015-09-08 16:25:40 +05305160 /* configure SGE_STAT_CFG_A to read WC stats */
5161 if (!is_t4(adapter->params.chip))
Hariprasad Shenai676d6a72015-12-23 22:47:14 +05305162 t4_write_reg(adapter, SGE_STAT_CFG_A, STATSOURCE_T5_V(7) |
5163 (is_t5(adapter->params.chip) ? STATMODE_V(0) :
5164 T6_STATMODE_V(0)));
Hariprasad Shenai2a485cf2015-09-08 16:25:40 +05305165
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005166 for_each_port(adapter, i) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005167 netdev = alloc_etherdev_mq(sizeof(struct port_info),
5168 MAX_ETH_QSETS);
5169 if (!netdev) {
5170 err = -ENOMEM;
5171 goto out_free_dev;
5172 }
5173
5174 SET_NETDEV_DEV(netdev, &pdev->dev);
5175
5176 adapter->port[i] = netdev;
5177 pi = netdev_priv(netdev);
5178 pi->adapter = adapter;
5179 pi->xact_addr_filt = -1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005180 pi->port_id = i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005181 netdev->irq = pdev->irq;
5182
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00005183 netdev->hw_features = NETIF_F_SG | TSO_FLAGS |
5184 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
5185 NETIF_F_RXCSUM | NETIF_F_RXHASH |
Patrick McHardyf6469682013-04-19 02:04:27 +00005186 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005187 if (highdma)
5188 netdev->hw_features |= NETIF_F_HIGHDMA;
5189 netdev->features |= netdev->hw_features;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005190 netdev->vlan_features = netdev->features & VLAN_FEAT;
5191
Jiri Pirko01789342011-08-16 06:29:00 +00005192 netdev->priv_flags |= IFF_UNICAST_FLT;
5193
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005194 netdev->netdev_ops = &cxgb4_netdev_ops;
Anish Bhatt688848b2014-06-19 21:37:13 -07005195#ifdef CONFIG_CHELSIO_T4_DCB
5196 netdev->dcbnl_ops = &cxgb4_dcb_ops;
5197 cxgb4_dcb_state_init(netdev);
5198#endif
Hariprasad Shenai812034f2015-04-06 20:23:23 +05305199 cxgb4_set_ethtool_ops(netdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005200 }
5201
5202 pci_set_drvdata(pdev, adapter);
5203
5204 if (adapter->flags & FW_OK) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00005205 err = t4_port_init(adapter, func, func, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005206 if (err)
5207 goto out_free_dev;
Hariprasad Shenai098ef6c2015-06-05 14:24:50 +05305208 } else if (adapter->params.nports == 1) {
5209 /* If we don't have a connection to the firmware -- possibly
5210 * because of an error -- grab the raw VPD parameters so we
5211 * can set the proper MAC Address on the debug network
5212 * interface that we've created.
5213 */
5214 u8 hw_addr[ETH_ALEN];
5215 u8 *na = adapter->params.vpd.na;
5216
5217 err = t4_get_raw_vpd_params(adapter, &adapter->params.vpd);
5218 if (!err) {
5219 for (i = 0; i < ETH_ALEN; i++)
5220 hw_addr[i] = (hex2val(na[2 * i + 0]) * 16 +
5221 hex2val(na[2 * i + 1]));
5222 t4_set_hw_addr(adapter, 0, hw_addr);
5223 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005224 }
5225
Hariprasad Shenai098ef6c2015-06-05 14:24:50 +05305226 /* Configure queues and allocate tables now, they can be needed as
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005227 * soon as the first register_netdev completes.
5228 */
5229 cfg_queues(adapter);
5230
Hariprasad Shenai5be9ed82015-07-07 21:49:18 +05305231 adapter->l2t = t4_init_l2t(adapter->l2t_start, adapter->l2t_end);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005232 if (!adapter->l2t) {
5233 /* We tolerate a lack of L2T, giving up some functionality */
5234 dev_warn(&pdev->dev, "could not allocate L2T, continuing\n");
5235 adapter->params.offload = 0;
5236 }
5237
Anish Bhattb5a02f52015-01-14 15:17:34 -08005238#if IS_ENABLED(CONFIG_IPV6)
Hariprasad Shenaieb72f742015-12-09 17:16:35 +05305239 if ((CHELSIO_CHIP_VERSION(adapter->params.chip) <= CHELSIO_T5) &&
5240 (!(t4_read_reg(adapter, LE_DB_CONFIG_A) & ASLIPCOMPEN_F))) {
5241 /* CLIP functionality is not present in hardware,
5242 * hence disable all offload features
Anish Bhattb5a02f52015-01-14 15:17:34 -08005243 */
5244 dev_warn(&pdev->dev,
Hariprasad Shenaieb72f742015-12-09 17:16:35 +05305245 "CLIP not enabled in hardware, continuing\n");
Anish Bhattb5a02f52015-01-14 15:17:34 -08005246 adapter->params.offload = 0;
Hariprasad Shenaieb72f742015-12-09 17:16:35 +05305247 } else {
5248 adapter->clipt = t4_init_clip_tbl(adapter->clipt_start,
5249 adapter->clipt_end);
5250 if (!adapter->clipt) {
5251 /* We tolerate a lack of clip_table, giving up
5252 * some functionality
5253 */
5254 dev_warn(&pdev->dev,
5255 "could not allocate Clip table, continuing\n");
5256 adapter->params.offload = 0;
5257 }
Anish Bhattb5a02f52015-01-14 15:17:34 -08005258 }
5259#endif
Rahul Lakkireddyb72a32d2016-08-22 16:29:06 +05305260
5261 for_each_port(adapter, i) {
5262 pi = adap2pinfo(adapter, i);
5263 pi->sched_tbl = t4_init_sched(adapter->params.nsched_cls);
5264 if (!pi->sched_tbl)
5265 dev_warn(&pdev->dev,
5266 "could not activate scheduling on port %d\n",
5267 i);
5268 }
5269
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005270 if (is_offload(adapter) && tid_init(&adapter->tids) < 0) {
5271 dev_warn(&pdev->dev, "could not allocate TID table, "
5272 "continuing\n");
5273 adapter->params.offload = 0;
5274 }
5275
Hariprasad Shenai9a1bb9f2015-08-12 16:55:05 +05305276 if (is_offload(adapter)) {
5277 if (t4_read_reg(adapter, LE_DB_CONFIG_A) & HASHEN_F) {
5278 u32 hash_base, hash_reg;
5279
5280 if (chip <= CHELSIO_T5) {
5281 hash_reg = LE_DB_TID_HASHBASE_A;
5282 hash_base = t4_read_reg(adapter, hash_reg);
5283 adapter->tids.hash_base = hash_base / 4;
5284 } else {
5285 hash_reg = T6_LE_DB_HASH_TID_BASE_A;
5286 hash_base = t4_read_reg(adapter, hash_reg);
5287 adapter->tids.hash_base = hash_base;
5288 }
5289 }
5290 }
5291
Dimitris Michailidisf7cabcd2010-07-11 12:01:15 +00005292 /* See what interrupts we'll be using */
5293 if (msi > 1 && enable_msix(adapter) == 0)
5294 adapter->flags |= USING_MSIX;
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05305295 else if (msi > 0 && pci_enable_msi(pdev) == 0) {
Dimitris Michailidisf7cabcd2010-07-11 12:01:15 +00005296 adapter->flags |= USING_MSI;
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05305297 if (msi > 1)
5298 free_msix_info(adapter);
5299 }
Dimitris Michailidisf7cabcd2010-07-11 12:01:15 +00005300
Hariprasad Shenai547fd272015-12-23 11:29:53 +05305301 /* check for PCI Express bandwidth capabiltites */
5302 cxgb4_check_pcie_caps(adapter);
5303
Dimitris Michailidis671b0062010-07-11 12:01:17 +00005304 err = init_rss(adapter);
5305 if (err)
5306 goto out_free_dev;
5307
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005308 /*
5309 * The card is now ready to go. If any errors occur during device
5310 * registration we do not fail the whole card but rather proceed only
5311 * with the ports we manage to register successfully. However we must
5312 * register at least one net device.
5313 */
5314 for_each_port(adapter, i) {
Dimitris Michailidisa57cabe2010-12-14 21:36:46 +00005315 pi = adap2pinfo(adapter, i);
5316 netif_set_real_num_tx_queues(adapter->port[i], pi->nqsets);
5317 netif_set_real_num_rx_queues(adapter->port[i], pi->nqsets);
5318
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005319 err = register_netdev(adapter->port[i]);
5320 if (err)
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00005321 break;
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00005322 adapter->chan_map[pi->tx_chan] = i;
5323 print_port_info(adapter->port[i]);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005324 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00005325 if (i == 0) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005326 dev_err(&pdev->dev, "could not register any net devices\n");
5327 goto out_free_dev;
5328 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00005329 if (err) {
5330 dev_warn(&pdev->dev, "only %d net devices registered\n", i);
5331 err = 0;
Joe Perches6403eab2011-06-03 11:51:20 +00005332 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005333
5334 if (cxgb4_debugfs_root) {
5335 adapter->debugfs_root = debugfs_create_dir(pci_name(pdev),
5336 cxgb4_debugfs_root);
5337 setup_debugfs(adapter);
5338 }
5339
David S. Miller88c51002011-10-07 13:38:43 -04005340 /* PCIe EEH recovery on powerpc platforms needs fundamental reset */
5341 pdev->needs_freset = 1;
5342
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005343 if (is_offload(adapter))
5344 attach_ulds(adapter);
5345
Hariprasad Shenai0de72732016-04-26 20:10:22 +05305346 print_adapter_info(adapter);
Hariprasad Shenai78294512016-08-11 21:06:23 +05305347 return 0;
Hariprasad Shenai0de72732016-04-26 20:10:22 +05305348
Hariprasad Shenai8e1e6052014-08-06 17:10:59 +05305349sriov:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005350#ifdef CONFIG_PCI_IOV
Hariprasad Shenaib6244202016-06-14 14:39:31 +05305351 if (func < ARRAY_SIZE(num_vf) && num_vf[func] > 0) {
5352 dev_warn(&pdev->dev,
5353 "Enabling SR-IOV VFs using the num_vf module "
5354 "parameter is deprecated - please use the pci sysfs "
5355 "interface instead.\n");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005356 if (pci_enable_sriov(pdev, num_vf[func]) == 0)
5357 dev_info(&pdev->dev,
5358 "instantiated %u virtual functions\n",
5359 num_vf[func]);
Hariprasad Shenaib6244202016-06-14 14:39:31 +05305360 }
Hariprasad Shenai78294512016-08-11 21:06:23 +05305361
5362 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
5363 if (!adapter) {
5364 err = -ENOMEM;
5365 goto free_pci_region;
5366 }
5367
5368 snprintf(name, IFNAMSIZ, "mgmtpf%d%d", adap_idx, func);
5369 netdev = alloc_netdev(0, name, NET_NAME_UNKNOWN, ether_setup);
5370 if (!netdev) {
5371 err = -ENOMEM;
5372 goto free_adapter;
5373 }
5374
5375 adapter->pdev = pdev;
5376 adapter->pdev_dev = &pdev->dev;
5377 adapter->name = pci_name(pdev);
5378 adapter->mbox = func;
5379 adapter->pf = func;
5380 adapter->regs = regs;
5381 adapter->mbox_log = kzalloc(sizeof(*adapter->mbox_log) +
5382 (sizeof(struct mbox_cmd) *
5383 T4_OS_LOG_MBOX_CMDS),
5384 GFP_KERNEL);
5385 if (!adapter->mbox_log) {
5386 err = -ENOMEM;
5387 goto free_netdevice;
5388 }
5389 pi = netdev_priv(netdev);
5390 pi->adapter = adapter;
5391 SET_NETDEV_DEV(netdev, &pdev->dev);
5392 pci_set_drvdata(pdev, adapter);
5393
5394 adapter->port[0] = netdev;
5395 netdev->netdev_ops = &cxgb4_mgmt_netdev_ops;
5396 netdev->ethtool_ops = &cxgb4_mgmt_ethtool_ops;
5397
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005398 return 0;
5399
Hariprasad Shenai78294512016-08-11 21:06:23 +05305400 free_netdevice:
5401 free_netdev(adapter->port[0]);
5402 free_adapter:
5403 kfree(adapter);
5404 free_pci_region:
5405 iounmap(regs);
5406 pci_disable_sriov(pdev);
5407 pci_release_regions(pdev);
5408 return err;
5409#else
5410 return 0;
5411#endif
5412
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005413 out_free_dev:
Dimitris Michailidis06546392010-07-11 12:01:16 +00005414 free_some_resources(adapter);
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05305415 if (adapter->flags & USING_MSIX)
5416 free_msix_info(adapter);
5417 if (adapter->num_uld)
5418 uld_mem_free(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005419 out_unmap_bar:
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05305420 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005421 iounmap(adapter->bar2);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005422 out_free_adapter:
Anish Bhatt29aaee62014-08-20 13:44:06 -07005423 if (adapter->workq)
5424 destroy_workqueue(adapter->workq);
5425
Hariprasad Shenai7f080c32016-04-28 13:23:18 +05305426 kfree(adapter->mbox_log);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005427 kfree(adapter);
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305428 out_unmap_bar0:
5429 iounmap(regs);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005430 out_disable_device:
5431 pci_disable_pcie_error_reporting(pdev);
5432 pci_disable_device(pdev);
5433 out_release_regions:
5434 pci_release_regions(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005435 return err;
5436}
5437
Bill Pemberton91744942012-12-03 09:23:02 -05005438static void remove_one(struct pci_dev *pdev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005439{
5440 struct adapter *adapter = pci_get_drvdata(pdev);
5441
Hariprasad Shenai78294512016-08-11 21:06:23 +05305442 if (!adapter) {
5443 pci_release_regions(pdev);
5444 return;
5445 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005446
Hariprasad Shenai78294512016-08-11 21:06:23 +05305447 if (adapter->pf == 4) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005448 int i;
5449
Anish Bhatt29aaee62014-08-20 13:44:06 -07005450 /* Tear down per-adapter Work Queue first since it can contain
5451 * references to our adapter data structure.
5452 */
5453 destroy_workqueue(adapter->workq);
5454
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005455 if (is_offload(adapter))
5456 detach_ulds(adapter);
5457
Hariprasad Shenaib37987e2015-03-26 10:04:26 +05305458 disable_interrupts(adapter);
5459
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005460 for_each_port(adapter, i)
Dimitris Michailidis8f3a7672010-12-14 21:36:52 +00005461 if (adapter->port[i]->reg_state == NETREG_REGISTERED)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005462 unregister_netdev(adapter->port[i]);
5463
Fabian Frederick9f16dc22014-06-27 22:51:52 +02005464 debugfs_remove_recursive(adapter->debugfs_root);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005465
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00005466 /* If we allocated filters, free up state associated with any
5467 * valid filters ...
5468 */
5469 if (adapter->tids.ftid_tab) {
5470 struct filter_entry *f = &adapter->tids.ftid_tab[0];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00005471 for (i = 0; i < (adapter->tids.nftids +
5472 adapter->tids.nsftids); i++, f++)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00005473 if (f->valid)
5474 clear_filter(adapter, f);
5475 }
5476
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00005477 if (adapter->flags & FULL_INIT_DONE)
5478 cxgb_down(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005479
Hariprasad Shenai94cdb8b2016-08-17 12:33:03 +05305480 if (adapter->flags & USING_MSIX)
5481 free_msix_info(adapter);
5482 if (adapter->num_uld)
5483 uld_mem_free(adapter);
Dimitris Michailidis06546392010-07-11 12:01:16 +00005484 free_some_resources(adapter);
Anish Bhattb5a02f52015-01-14 15:17:34 -08005485#if IS_ENABLED(CONFIG_IPV6)
5486 t4_cleanup_clip_tbl(adapter);
5487#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005488 iounmap(adapter->regs);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05305489 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005490 iounmap(adapter->bar2);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005491 pci_disable_pcie_error_reporting(pdev);
Gavin Shan144be3d2014-01-23 12:27:34 +08005492 if ((adapter->flags & DEV_ENABLED)) {
5493 pci_disable_device(pdev);
5494 adapter->flags &= ~DEV_ENABLED;
5495 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005496 pci_release_regions(pdev);
Hariprasad Shenai7f080c32016-04-28 13:23:18 +05305497 kfree(adapter->mbox_log);
Li RongQingee9a33b2014-06-20 17:32:36 +08005498 synchronize_rcu();
Gavin Shan8b662fe2014-01-24 17:12:03 +08005499 kfree(adapter);
Hariprasad Shenai78294512016-08-11 21:06:23 +05305500 }
5501#ifdef CONFIG_PCI_IOV
5502 else {
5503 if (adapter->port[0]->reg_state == NETREG_REGISTERED)
5504 unregister_netdev(adapter->port[0]);
5505 free_netdev(adapter->port[0]);
5506 iounmap(adapter->regs);
5507 kfree(adapter);
5508 pci_disable_sriov(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005509 pci_release_regions(pdev);
Hariprasad Shenai78294512016-08-11 21:06:23 +05305510 }
5511#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005512}
5513
5514static struct pci_driver cxgb4_driver = {
5515 .name = KBUILD_MODNAME,
5516 .id_table = cxgb4_pci_tbl,
5517 .probe = init_one,
Bill Pemberton91744942012-12-03 09:23:02 -05005518 .remove = remove_one,
Thadeu Lima de Souza Cascardo687d7052014-02-24 17:04:52 -03005519 .shutdown = remove_one,
Hariprasad Shenaib6244202016-06-14 14:39:31 +05305520#ifdef CONFIG_PCI_IOV
5521 .sriov_configure = cxgb4_iov_configure,
5522#endif
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005523 .err_handler = &cxgb4_eeh,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005524};
5525
5526static int __init cxgb4_init_module(void)
5527{
5528 int ret;
5529
5530 /* Debugfs support is optional, just warn if this fails */
5531 cxgb4_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
5532 if (!cxgb4_debugfs_root)
Joe Perches428ac432013-01-06 13:34:49 +00005533 pr_warn("could not create debugfs entry, continuing\n");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005534
5535 ret = pci_register_driver(&cxgb4_driver);
Anish Bhatt29aaee62014-08-20 13:44:06 -07005536 if (ret < 0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005537 debugfs_remove(cxgb4_debugfs_root);
Vipul Pandya01bcca62013-07-04 16:10:46 +05305538
Anish Bhatt1bb60372014-10-14 20:07:22 -07005539#if IS_ENABLED(CONFIG_IPV6)
Anish Bhattb5a02f52015-01-14 15:17:34 -08005540 if (!inet6addr_registered) {
5541 register_inet6addr_notifier(&cxgb4_inet6addr_notifier);
5542 inet6addr_registered = true;
5543 }
Anish Bhatt1bb60372014-10-14 20:07:22 -07005544#endif
Vipul Pandya01bcca62013-07-04 16:10:46 +05305545
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005546 return ret;
5547}
5548
5549static void __exit cxgb4_cleanup_module(void)
5550{
Anish Bhatt1bb60372014-10-14 20:07:22 -07005551#if IS_ENABLED(CONFIG_IPV6)
Hariprasad Shenai1793c792015-01-21 20:57:52 +05305552 if (inet6addr_registered) {
Anish Bhattb5a02f52015-01-14 15:17:34 -08005553 unregister_inet6addr_notifier(&cxgb4_inet6addr_notifier);
5554 inet6addr_registered = false;
5555 }
Anish Bhatt1bb60372014-10-14 20:07:22 -07005556#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005557 pci_unregister_driver(&cxgb4_driver);
5558 debugfs_remove(cxgb4_debugfs_root); /* NULL ok */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005559}
5560
5561module_init(cxgb4_init_module);
5562module_exit(cxgb4_cleanup_module);