blob: 477db477b133691bcbf82ebdcd7ce90913eb1102 [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 *
Anish Bhattce100b8b2014-06-19 21:37:15 -07004 * Copyright (c) 2003-2014 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>
67
68#include "cxgb4.h"
69#include "t4_regs.h"
Hariprasad Shenaif612b812015-01-05 16:30:43 +053070#include "t4_values.h"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000071#include "t4_msg.h"
72#include "t4fw_api.h"
Hariprasad Shenaicd6c2f12015-01-27 20:12:52 +053073#include "t4fw_version.h"
Anish Bhatt688848b2014-06-19 21:37:13 -070074#include "cxgb4_dcb.h"
Hariprasad Shenaifd88b312014-11-07 09:35:23 +053075#include "cxgb4_debugfs.h"
Anish Bhattb5a02f52015-01-14 15:17:34 -080076#include "clip_tbl.h"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000077#include "l2t.h"
78
Hariprasad Shenai812034f2015-04-06 20:23:23 +053079char cxgb4_driver_name[] = KBUILD_MODNAME;
80
Vipul Pandya01bcca62013-07-04 16:10:46 +053081#ifdef DRV_VERSION
82#undef DRV_VERSION
83#endif
Santosh Rastapur3a7f8552013-03-14 05:08:55 +000084#define DRV_VERSION "2.0.0-ko"
Hariprasad Shenai812034f2015-04-06 20:23:23 +053085const char cxgb4_driver_version[] = DRV_VERSION;
Hariprasad Shenai52a5f842015-10-21 14:39:54 +053086#define DRV_DESC "Chelsio T4/T5/T6 Network Driver"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000087
Vipul Pandyaf2b7e782012-12-10 09:30:52 +000088/* Host shadow copy of ingress filter entry. This is in host native format
89 * and doesn't match the ordering or bit order, etc. of the hardware of the
90 * firmware command. The use of bit-field structure elements is purely to
91 * remind ourselves of the field size limitations and save memory in the case
92 * where the filter table is large.
93 */
94struct filter_entry {
95 /* Administrative fields for filter.
96 */
97 u32 valid:1; /* filter allocated and valid */
98 u32 locked:1; /* filter is administratively locked */
99
100 u32 pending:1; /* filter action is pending firmware reply */
101 u32 smtidx:8; /* Source MAC Table index for smac */
102 struct l2t_entry *l2t; /* Layer Two Table entry for dmac */
103
104 /* The filter itself. Most of this is a straight copy of information
105 * provided by the extended ioctl(). Some fields are translated to
106 * internal forms -- for instance the Ingress Queue ID passed in from
107 * the ioctl() is translated into the Absolute Ingress Queue ID.
108 */
109 struct ch_filter_specification fs;
110};
111
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000112#define DFLT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK | \
113 NETIF_MSG_TIMER | NETIF_MSG_IFDOWN | NETIF_MSG_IFUP |\
114 NETIF_MSG_RX_ERR | NETIF_MSG_TX_ERR)
115
Hariprasad Shenai3fedeab2014-11-25 08:33:58 +0530116/* Macros needed to support the PCI Device ID Table ...
117 */
118#define CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN \
Hariprasad Shenai768ffc62015-03-19 22:27:36 +0530119 static const struct pci_device_id cxgb4_pci_tbl[] = {
Hariprasad Shenai3fedeab2014-11-25 08:33:58 +0530120#define CH_PCI_DEVICE_ID_FUNCTION 0x4
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000121
Hariprasad Shenai3fedeab2014-11-25 08:33:58 +0530122/* Include PCI Device IDs for both PF4 and PF0-3 so our PCI probe() routine is
123 * called for both.
124 */
125#define CH_PCI_DEVICE_ID_FUNCTION2 0x0
126
127#define CH_PCI_ID_TABLE_ENTRY(devid) \
128 {PCI_VDEVICE(CHELSIO, (devid)), 4}
129
130#define CH_PCI_DEVICE_ID_TABLE_DEFINE_END \
131 { 0, } \
132 }
133
134#include "t4_pci_id_tbl.h"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000135
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530136#define FW4_FNAME "cxgb4/t4fw.bin"
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000137#define FW5_FNAME "cxgb4/t5fw.bin"
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +0530138#define FW6_FNAME "cxgb4/t6fw.bin"
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530139#define FW4_CFNAME "cxgb4/t4-config.txt"
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000140#define FW5_CFNAME "cxgb4/t5-config.txt"
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +0530141#define FW6_CFNAME "cxgb4/t6-config.txt"
Hariprasad Shenai01b69612015-05-22 21:58:21 +0530142#define PHY_AQ1202_FIRMWARE "cxgb4/aq1202_fw.cld"
143#define PHY_BCM84834_FIRMWARE "cxgb4/bcm8483.bin"
144#define PHY_AQ1202_DEVICEID 0x4409
145#define PHY_BCM84834_DEVICEID 0x4486
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000146
147MODULE_DESCRIPTION(DRV_DESC);
148MODULE_AUTHOR("Chelsio Communications");
149MODULE_LICENSE("Dual BSD/GPL");
150MODULE_VERSION(DRV_VERSION);
151MODULE_DEVICE_TABLE(pci, cxgb4_pci_tbl);
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530152MODULE_FIRMWARE(FW4_FNAME);
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000153MODULE_FIRMWARE(FW5_FNAME);
Hariprasad Shenai52a5f842015-10-21 14:39:54 +0530154MODULE_FIRMWARE(FW6_FNAME);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000155
Vipul Pandya636f9d32012-09-26 02:39:39 +0000156/*
157 * Normally we're willing to become the firmware's Master PF but will be happy
158 * if another PF has already become the Master and initialized the adapter.
159 * Setting "force_init" will cause this driver to forcibly establish itself as
160 * the Master PF and initialize the adapter.
161 */
162static uint force_init;
163
164module_param(force_init, uint, 0644);
Hariprasad Shenaid7d3e252015-12-24 16:24:53 +0530165MODULE_PARM_DESC(force_init, "Forcibly become Master PF and initialize adapter,"
166 "deprecated parameter");
Vipul Pandya13ee15d2012-09-26 02:39:40 +0000167
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000168static int dflt_msg_enable = DFLT_MSG_ENABLE;
169
170module_param(dflt_msg_enable, int, 0644);
Hariprasad Shenai8a21ec42016-04-05 09:52:21 +0530171MODULE_PARM_DESC(dflt_msg_enable, "Chelsio T4 default message enable bitmap, "
172 "deprecated parameter");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000173
174/*
175 * The driver uses the best interrupt scheme available on a platform in the
176 * order MSI-X, MSI, legacy INTx interrupts. This parameter determines which
177 * of these schemes the driver may consider as follows:
178 *
179 * msi = 2: choose from among all three options
180 * msi = 1: only consider MSI and INTx interrupts
181 * msi = 0: force INTx interrupts
182 */
183static int msi = 2;
184
185module_param(msi, int, 0644);
186MODULE_PARM_DESC(msi, "whether to use INTx (0), MSI (1) or MSI-X (2)");
187
188/*
Vipul Pandya636f9d32012-09-26 02:39:39 +0000189 * Normally we tell the chip to deliver Ingress Packets into our DMA buffers
190 * offset by 2 bytes in order to have the IP headers line up on 4-byte
191 * boundaries. This is a requirement for many architectures which will throw
192 * a machine check fault if an attempt is made to access one of the 4-byte IP
193 * header fields on a non-4-byte boundary. And it's a major performance issue
194 * even on some architectures which allow it like some implementations of the
195 * x86 ISA. However, some architectures don't mind this and for some very
196 * edge-case performance sensitive applications (like forwarding large volumes
197 * of small packets), setting this DMA offset to 0 will decrease the number of
198 * PCI-E Bus transfers enough to measurably affect performance.
199 */
200static int rx_dma_offset = 2;
201
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000202#ifdef CONFIG_PCI_IOV
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000203/* Configure the number of PCI-E Virtual Function which are to be instantiated
204 * on SR-IOV Capable Physical Functions.
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000205 */
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000206static unsigned int num_vf[NUM_OF_PF_WITH_SRIOV];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000207
208module_param_array(num_vf, uint, NULL, 0644);
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000209MODULE_PARM_DESC(num_vf, "number of VFs for each of PFs 0-3");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000210#endif
211
Anish Bhatt688848b2014-06-19 21:37:13 -0700212/* TX Queue select used to determine what algorithm to use for selecting TX
213 * queue. Select between the kernel provided function (select_queue=0) or user
214 * cxgb_select_queue function (select_queue=1)
215 *
216 * Default: select_queue=0
217 */
218static int select_queue;
219module_param(select_queue, int, 0644);
220MODULE_PARM_DESC(select_queue,
221 "Select between kernel provided method of selecting or driver method of selecting TX queue. Default is kernel method.");
222
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000223static struct dentry *cxgb4_debugfs_root;
224
225static LIST_HEAD(adapter_list);
226static DEFINE_MUTEX(uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +0530227/* Adapter list to be accessed from atomic context */
228static LIST_HEAD(adap_rcu_list);
229static DEFINE_SPINLOCK(adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000230static struct cxgb4_uld_info ulds[CXGB4_ULD_MAX];
Varun Prakashf2692d12016-02-14 23:02:40 +0530231static const char *const uld_str[] = { "RDMA", "iSCSI", "iSCSIT" };
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000232
233static void link_report(struct net_device *dev)
234{
235 if (!netif_carrier_ok(dev))
236 netdev_info(dev, "link down\n");
237 else {
238 static const char *fc[] = { "no", "Rx", "Tx", "Tx/Rx" };
239
Hariprasad Shenai85412252015-10-01 13:48:48 +0530240 const char *s;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000241 const struct port_info *p = netdev_priv(dev);
242
243 switch (p->link_cfg.speed) {
Ben Hutchingse8b39012014-02-23 00:03:24 +0000244 case 10000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000245 s = "10Gbps";
246 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000247 case 1000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000248 s = "1000Mbps";
249 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000250 case 100:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000251 s = "100Mbps";
252 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000253 case 40000:
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +0530254 s = "40Gbps";
255 break;
Hariprasad Shenai85412252015-10-01 13:48:48 +0530256 default:
257 pr_info("%s: unsupported speed: %d\n",
258 dev->name, p->link_cfg.speed);
259 return;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000260 }
261
262 netdev_info(dev, "link up, %s, full-duplex, %s PAUSE\n", s,
263 fc[p->link_cfg.fc]);
264 }
265}
266
Anish Bhatt688848b2014-06-19 21:37:13 -0700267#ifdef CONFIG_CHELSIO_T4_DCB
268/* Set up/tear down Data Center Bridging Priority mapping for a net device. */
269static void dcb_tx_queue_prio_enable(struct net_device *dev, int enable)
270{
271 struct port_info *pi = netdev_priv(dev);
272 struct adapter *adap = pi->adapter;
273 struct sge_eth_txq *txq = &adap->sge.ethtxq[pi->first_qset];
274 int i;
275
276 /* We use a simple mapping of Port TX Queue Index to DCB
277 * Priority when we're enabling DCB.
278 */
279 for (i = 0; i < pi->nqsets; i++, txq++) {
280 u32 name, value;
281 int err;
282
Hariprasad Shenai51678652014-11-21 12:52:02 +0530283 name = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
284 FW_PARAMS_PARAM_X_V(
285 FW_PARAMS_PARAM_DMAQ_EQ_DCBPRIO_ETH) |
286 FW_PARAMS_PARAM_YZ_V(txq->q.cntxt_id));
Anish Bhatt688848b2014-06-19 21:37:13 -0700287 value = enable ? i : 0xffffffff;
288
289 /* Since we can be called while atomic (from "interrupt
290 * level") we need to issue the Set Parameters Commannd
291 * without sleeping (timeout < 0).
292 */
Hariprasad Shenaib2612722015-05-27 22:30:24 +0530293 err = t4_set_params_timeout(adap, adap->mbox, adap->pf, 0, 1,
Hariprasad Shenai01b69612015-05-22 21:58:21 +0530294 &name, &value,
295 -FW_CMD_MAX_TIMEOUT);
Anish Bhatt688848b2014-06-19 21:37:13 -0700296
297 if (err)
298 dev_err(adap->pdev_dev,
299 "Can't %s DCB Priority on port %d, TX Queue %d: err=%d\n",
300 enable ? "set" : "unset", pi->port_id, i, -err);
Anish Bhatt10b00462014-08-07 16:14:03 -0700301 else
302 txq->dcb_prio = value;
Anish Bhatt688848b2014-06-19 21:37:13 -0700303 }
304}
305#endif /* CONFIG_CHELSIO_T4_DCB */
306
Hariprasad Shenai218d48e2016-05-05 11:05:39 +0530307int cxgb4_dcb_enabled(const struct net_device *dev)
308{
309#ifdef CONFIG_CHELSIO_T4_DCB
310 struct port_info *pi = netdev_priv(dev);
311
312 if (!pi->dcb.enabled)
313 return 0;
314
315 return ((pi->dcb.state == CXGB4_DCB_STATE_FW_ALLSYNCED) ||
316 (pi->dcb.state == CXGB4_DCB_STATE_HOST));
317#else
318 return 0;
319#endif
320}
321EXPORT_SYMBOL(cxgb4_dcb_enabled);
322
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000323void t4_os_link_changed(struct adapter *adapter, int port_id, int link_stat)
324{
325 struct net_device *dev = adapter->port[port_id];
326
327 /* Skip changes from disabled ports. */
328 if (netif_running(dev) && link_stat != netif_carrier_ok(dev)) {
329 if (link_stat)
330 netif_carrier_on(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700331 else {
332#ifdef CONFIG_CHELSIO_T4_DCB
Hariprasad Shenai218d48e2016-05-05 11:05:39 +0530333 if (cxgb4_dcb_enabled(dev)) {
334 cxgb4_dcb_state_init(dev);
335 dcb_tx_queue_prio_enable(dev, false);
336 }
Anish Bhatt688848b2014-06-19 21:37:13 -0700337#endif /* CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000338 netif_carrier_off(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700339 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000340
341 link_report(dev);
342 }
343}
344
345void t4_os_portmod_changed(const struct adapter *adap, int port_id)
346{
347 static const char *mod_str[] = {
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000348 NULL, "LR", "SR", "ER", "passive DA", "active DA", "LRM"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000349 };
350
351 const struct net_device *dev = adap->port[port_id];
352 const struct port_info *pi = netdev_priv(dev);
353
354 if (pi->mod_type == FW_PORT_MOD_TYPE_NONE)
355 netdev_info(dev, "port module unplugged\n");
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000356 else if (pi->mod_type < ARRAY_SIZE(mod_str))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000357 netdev_info(dev, "%s module inserted\n", mod_str[pi->mod_type]);
Hariprasad Shenaibe81a2d2016-04-26 20:10:25 +0530358 else if (pi->mod_type == FW_PORT_MOD_TYPE_NOTSUPPORTED)
359 netdev_info(dev, "%s: unsupported port module inserted\n",
360 dev->name);
361 else if (pi->mod_type == FW_PORT_MOD_TYPE_UNKNOWN)
362 netdev_info(dev, "%s: unknown port module inserted\n",
363 dev->name);
364 else if (pi->mod_type == FW_PORT_MOD_TYPE_ERROR)
365 netdev_info(dev, "%s: transceiver module error\n", dev->name);
366 else
367 netdev_info(dev, "%s: unknown module type %d inserted\n",
368 dev->name, pi->mod_type);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000369}
370
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530371int dbfifo_int_thresh = 10; /* 10 == 640 entry threshold */
372module_param(dbfifo_int_thresh, int, 0644);
373MODULE_PARM_DESC(dbfifo_int_thresh, "doorbell fifo interrupt threshold");
374
Vipul Pandya404d9e32012-10-08 02:59:43 +0000375/*
376 * usecs to sleep while draining the dbfifo
377 */
378static int dbfifo_drain_delay = 1000;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530379module_param(dbfifo_drain_delay, int, 0644);
380MODULE_PARM_DESC(dbfifo_drain_delay,
381 "usecs to sleep while draining the dbfifo");
382
Hariprasad Shenaifc08a012016-02-16 10:07:09 +0530383static inline int cxgb4_set_addr_hash(struct port_info *pi)
384{
385 struct adapter *adap = pi->adapter;
386 u64 vec = 0;
387 bool ucast = false;
388 struct hash_mac_addr *entry;
389
390 /* Calculate the hash vector for the updated list and program it */
391 list_for_each_entry(entry, &adap->mac_hlist, list) {
392 ucast |= is_unicast_ether_addr(entry->addr);
393 vec |= (1ULL << hash_mac_addr(entry->addr));
394 }
395 return t4_set_addr_hash(adap, adap->mbox, pi->viid, ucast,
396 vec, false);
397}
398
399static int cxgb4_mac_sync(struct net_device *netdev, const u8 *mac_addr)
400{
401 struct port_info *pi = netdev_priv(netdev);
402 struct adapter *adap = pi->adapter;
403 int ret;
404 u64 mhash = 0;
405 u64 uhash = 0;
406 bool free = false;
407 bool ucast = is_unicast_ether_addr(mac_addr);
408 const u8 *maclist[1] = {mac_addr};
409 struct hash_mac_addr *new_entry;
410
411 ret = t4_alloc_mac_filt(adap, adap->mbox, pi->viid, free, 1, maclist,
412 NULL, ucast ? &uhash : &mhash, false);
413 if (ret < 0)
414 goto out;
415 /* if hash != 0, then add the addr to hash addr list
416 * so on the end we will calculate the hash for the
417 * list and program it
418 */
419 if (uhash || mhash) {
420 new_entry = kzalloc(sizeof(*new_entry), GFP_ATOMIC);
421 if (!new_entry)
422 return -ENOMEM;
423 ether_addr_copy(new_entry->addr, mac_addr);
424 list_add_tail(&new_entry->list, &adap->mac_hlist);
425 ret = cxgb4_set_addr_hash(pi);
426 }
427out:
428 return ret < 0 ? ret : 0;
429}
430
431static int cxgb4_mac_unsync(struct net_device *netdev, const u8 *mac_addr)
432{
433 struct port_info *pi = netdev_priv(netdev);
434 struct adapter *adap = pi->adapter;
435 int ret;
436 const u8 *maclist[1] = {mac_addr};
437 struct hash_mac_addr *entry, *tmp;
438
439 /* If the MAC address to be removed is in the hash addr
440 * list, delete it from the list and update hash vector
441 */
442 list_for_each_entry_safe(entry, tmp, &adap->mac_hlist, list) {
443 if (ether_addr_equal(entry->addr, mac_addr)) {
444 list_del(&entry->list);
445 kfree(entry);
446 return cxgb4_set_addr_hash(pi);
447 }
448 }
449
450 ret = t4_free_mac_filt(adap, adap->mbox, pi->viid, 1, maclist, false);
451 return ret < 0 ? -EINVAL : 0;
452}
453
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000454/*
455 * Set Rx properties of a port, such as promiscruity, address filters, and MTU.
456 * If @mtu is -1 it is left unchanged.
457 */
458static int set_rxmode(struct net_device *dev, int mtu, bool sleep_ok)
459{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000460 struct port_info *pi = netdev_priv(dev);
Hariprasad Shenaifc08a012016-02-16 10:07:09 +0530461 struct adapter *adapter = pi->adapter;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000462
Hariprasad Shenaifc08a012016-02-16 10:07:09 +0530463 if (!(dev->flags & IFF_PROMISC)) {
464 __dev_uc_sync(dev, cxgb4_mac_sync, cxgb4_mac_unsync);
465 if (!(dev->flags & IFF_ALLMULTI))
466 __dev_mc_sync(dev, cxgb4_mac_sync, cxgb4_mac_unsync);
467 }
468
469 return t4_set_rxmode(adapter, adapter->mbox, pi->viid, mtu,
470 (dev->flags & IFF_PROMISC) ? 1 : 0,
471 (dev->flags & IFF_ALLMULTI) ? 1 : 0, 1, -1,
472 sleep_ok);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000473}
474
475/**
476 * link_start - enable a port
477 * @dev: the port to enable
478 *
479 * Performs the MAC and PHY actions needed to enable a port.
480 */
481static int link_start(struct net_device *dev)
482{
483 int ret;
484 struct port_info *pi = netdev_priv(dev);
Hariprasad Shenaib2612722015-05-27 22:30:24 +0530485 unsigned int mb = pi->adapter->pf;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000486
487 /*
488 * We do not set address filters and promiscuity here, the stack does
489 * that step explicitly.
490 */
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000491 ret = t4_set_rxmode(pi->adapter, mb, pi->viid, dev->mtu, -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +0000492 !!(dev->features & NETIF_F_HW_VLAN_CTAG_RX), true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000493 if (ret == 0) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000494 ret = t4_change_mac(pi->adapter, mb, pi->viid,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000495 pi->xact_addr_filt, dev->dev_addr, true,
Dimitris Michailidisb6bd29e2010-05-18 10:07:11 +0000496 true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000497 if (ret >= 0) {
498 pi->xact_addr_filt = ret;
499 ret = 0;
500 }
501 }
502 if (ret == 0)
Hariprasad Shenai4036da92015-06-05 14:24:49 +0530503 ret = t4_link_l1cfg(pi->adapter, mb, pi->tx_chan,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000504 &pi->link_cfg);
Anish Bhatt30f00842014-08-05 16:05:23 -0700505 if (ret == 0) {
506 local_bh_disable();
Anish Bhatt688848b2014-06-19 21:37:13 -0700507 ret = t4_enable_vi_params(pi->adapter, mb, pi->viid, true,
508 true, CXGB4_DCB_ENABLED);
Anish Bhatt30f00842014-08-05 16:05:23 -0700509 local_bh_enable();
510 }
Anish Bhatt688848b2014-06-19 21:37:13 -0700511
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000512 return ret;
513}
514
Anish Bhatt688848b2014-06-19 21:37:13 -0700515#ifdef CONFIG_CHELSIO_T4_DCB
516/* Handle a Data Center Bridging update message from the firmware. */
517static void dcb_rpl(struct adapter *adap, const struct fw_port_cmd *pcmd)
518{
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530519 int port = FW_PORT_CMD_PORTID_G(ntohl(pcmd->op_to_portid));
Hariprasad Shenai134491f2016-04-26 20:10:27 +0530520 struct net_device *dev = adap->port[adap->chan_map[port]];
Anish Bhatt688848b2014-06-19 21:37:13 -0700521 int old_dcb_enabled = cxgb4_dcb_enabled(dev);
522 int new_dcb_enabled;
523
524 cxgb4_dcb_handle_fw_update(adap, pcmd);
525 new_dcb_enabled = cxgb4_dcb_enabled(dev);
526
527 /* If the DCB has become enabled or disabled on the port then we're
528 * going to need to set up/tear down DCB Priority parameters for the
529 * TX Queues associated with the port.
530 */
531 if (new_dcb_enabled != old_dcb_enabled)
532 dcb_tx_queue_prio_enable(dev, new_dcb_enabled);
533}
534#endif /* CONFIG_CHELSIO_T4_DCB */
535
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000536/* Clear a filter and release any of its resources that we own. This also
537 * clears the filter's "pending" status.
538 */
539static void clear_filter(struct adapter *adap, struct filter_entry *f)
540{
541 /* If the new or old filter have loopback rewriteing rules then we'll
542 * need to free any existing Layer Two Table (L2T) entries of the old
543 * filter rule. The firmware will handle freeing up any Source MAC
544 * Table (SMT) entries used for rewriting Source MAC Addresses in
545 * loopback rules.
546 */
547 if (f->l2t)
548 cxgb4_l2t_release(f->l2t);
549
550 /* The zeroing of the filter rule below clears the filter valid,
551 * pending, locked flags, l2t pointer, etc. so it's all we need for
552 * this operation.
553 */
554 memset(f, 0, sizeof(*f));
555}
556
557/* Handle a filter write/deletion reply.
558 */
559static void filter_rpl(struct adapter *adap, const struct cpl_set_tcb_rpl *rpl)
560{
561 unsigned int idx = GET_TID(rpl);
562 unsigned int nidx = idx - adap->tids.ftid_base;
563 unsigned int ret;
564 struct filter_entry *f;
565
566 if (idx >= adap->tids.ftid_base && nidx <
567 (adap->tids.nftids + adap->tids.nsftids)) {
568 idx = nidx;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800569 ret = TCB_COOKIE_G(rpl->cookie);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000570 f = &adap->tids.ftid_tab[idx];
571
572 if (ret == FW_FILTER_WR_FLT_DELETED) {
573 /* Clear the filter when we get confirmation from the
574 * hardware that the filter has been deleted.
575 */
576 clear_filter(adap, f);
577 } else if (ret == FW_FILTER_WR_SMT_TBL_FULL) {
578 dev_err(adap->pdev_dev, "filter %u setup failed due to full SMT\n",
579 idx);
580 clear_filter(adap, f);
581 } else if (ret == FW_FILTER_WR_FLT_ADDED) {
582 f->smtidx = (be64_to_cpu(rpl->oldval) >> 24) & 0xff;
583 f->pending = 0; /* asynchronous setup completed */
584 f->valid = 1;
585 } else {
586 /* Something went wrong. Issue a warning about the
587 * problem and clear everything out.
588 */
589 dev_err(adap->pdev_dev, "filter %u setup failed with error %u\n",
590 idx, ret);
591 clear_filter(adap, f);
592 }
593 }
594}
595
596/* Response queue handler for the FW event queue.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000597 */
598static int fwevtq_handler(struct sge_rspq *q, const __be64 *rsp,
599 const struct pkt_gl *gl)
600{
601 u8 opcode = ((const struct rss_header *)rsp)->opcode;
602
603 rsp++; /* skip RSS header */
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000604
605 /* FW can send EGR_UPDATEs encapsulated in a CPL_FW4_MSG.
606 */
607 if (unlikely(opcode == CPL_FW4_MSG &&
608 ((const struct cpl_fw4_msg *)rsp)->type == FW_TYPE_RSSCPL)) {
609 rsp++;
610 opcode = ((const struct rss_header *)rsp)->opcode;
611 rsp++;
612 if (opcode != CPL_SGE_EGR_UPDATE) {
613 dev_err(q->adap->pdev_dev, "unexpected FW4/CPL %#x on FW event queue\n"
614 , opcode);
615 goto out;
616 }
617 }
618
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000619 if (likely(opcode == CPL_SGE_EGR_UPDATE)) {
620 const struct cpl_sge_egr_update *p = (void *)rsp;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800621 unsigned int qid = EGR_QID_G(ntohl(p->opcode_qid));
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000622 struct sge_txq *txq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000623
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000624 txq = q->adap->sge.egr_map[qid - q->adap->sge.egr_start];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000625 txq->restarts++;
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000626 if ((u8 *)txq < (u8 *)q->adap->sge.ofldtxq) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000627 struct sge_eth_txq *eq;
628
629 eq = container_of(txq, struct sge_eth_txq, q);
630 netif_tx_wake_queue(eq->txq);
631 } else {
632 struct sge_ofld_txq *oq;
633
634 oq = container_of(txq, struct sge_ofld_txq, q);
635 tasklet_schedule(&oq->qresume_tsk);
636 }
637 } else if (opcode == CPL_FW6_MSG || opcode == CPL_FW4_MSG) {
638 const struct cpl_fw6_msg *p = (void *)rsp;
639
Anish Bhatt688848b2014-06-19 21:37:13 -0700640#ifdef CONFIG_CHELSIO_T4_DCB
641 const struct fw_port_cmd *pcmd = (const void *)p->data;
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530642 unsigned int cmd = FW_CMD_OP_G(ntohl(pcmd->op_to_portid));
Anish Bhatt688848b2014-06-19 21:37:13 -0700643 unsigned int action =
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530644 FW_PORT_CMD_ACTION_G(ntohl(pcmd->action_to_len16));
Anish Bhatt688848b2014-06-19 21:37:13 -0700645
646 if (cmd == FW_PORT_CMD &&
647 action == FW_PORT_ACTION_GET_PORT_INFO) {
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530648 int port = FW_PORT_CMD_PORTID_G(
Anish Bhatt688848b2014-06-19 21:37:13 -0700649 be32_to_cpu(pcmd->op_to_portid));
Hariprasad Shenai134491f2016-04-26 20:10:27 +0530650 struct net_device *dev =
651 q->adap->port[q->adap->chan_map[port]];
Anish Bhatt688848b2014-06-19 21:37:13 -0700652 int state_input = ((pcmd->u.info.dcbxdis_pkd &
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530653 FW_PORT_CMD_DCBXDIS_F)
Anish Bhatt688848b2014-06-19 21:37:13 -0700654 ? CXGB4_DCB_INPUT_FW_DISABLED
655 : CXGB4_DCB_INPUT_FW_ENABLED);
656
657 cxgb4_dcb_state_fsm(dev, state_input);
658 }
659
660 if (cmd == FW_PORT_CMD &&
661 action == FW_PORT_ACTION_L2_DCB_CFG)
662 dcb_rpl(q->adap, pcmd);
663 else
664#endif
665 if (p->type == 0)
666 t4_handle_fw_rpl(q->adap, p->data);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000667 } else if (opcode == CPL_L2T_WRITE_RPL) {
668 const struct cpl_l2t_write_rpl *p = (void *)rsp;
669
670 do_l2t_write_rpl(q->adap, p);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000671 } else if (opcode == CPL_SET_TCB_RPL) {
672 const struct cpl_set_tcb_rpl *p = (void *)rsp;
673
674 filter_rpl(q->adap, p);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000675 } else
676 dev_err(q->adap->pdev_dev,
677 "unexpected CPL %#x on FW event queue\n", opcode);
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000678out:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000679 return 0;
680}
681
Varun Prakash2337ba42016-02-14 23:02:41 +0530682/* Flush the aggregated lro sessions */
683static void uldrx_flush_handler(struct sge_rspq *q)
684{
685 if (ulds[q->uld].lro_flush)
686 ulds[q->uld].lro_flush(&q->lro_mgr);
687}
688
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000689/**
690 * uldrx_handler - response queue handler for ULD queues
691 * @q: the response queue that received the packet
692 * @rsp: the response queue descriptor holding the offload message
693 * @gl: the gather list of packet fragments
694 *
695 * Deliver an ingress offload packet to a ULD. All processing is done by
696 * the ULD, we just maintain statistics.
697 */
698static int uldrx_handler(struct sge_rspq *q, const __be64 *rsp,
699 const struct pkt_gl *gl)
700{
701 struct sge_ofld_rxq *rxq = container_of(q, struct sge_ofld_rxq, rspq);
Varun Prakash2337ba42016-02-14 23:02:41 +0530702 int ret;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000703
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000704 /* FW can send CPLs encapsulated in a CPL_FW4_MSG.
705 */
706 if (((const struct rss_header *)rsp)->opcode == CPL_FW4_MSG &&
707 ((const struct cpl_fw4_msg *)(rsp + 1))->type == FW_TYPE_RSSCPL)
708 rsp += 2;
709
Varun Prakash2337ba42016-02-14 23:02:41 +0530710 if (q->flush_handler)
711 ret = ulds[q->uld].lro_rx_handler(q->adap->uld_handle[q->uld],
712 rsp, gl, &q->lro_mgr,
713 &q->napi);
714 else
715 ret = ulds[q->uld].rx_handler(q->adap->uld_handle[q->uld],
716 rsp, gl);
717
718 if (ret) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000719 rxq->stats.nomem++;
720 return -1;
721 }
Varun Prakash2337ba42016-02-14 23:02:41 +0530722
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000723 if (gl == NULL)
724 rxq->stats.imm++;
725 else if (gl == CXGB4_MSG_AN)
726 rxq->stats.an++;
727 else
728 rxq->stats.pkts++;
729 return 0;
730}
731
732static void disable_msi(struct adapter *adapter)
733{
734 if (adapter->flags & USING_MSIX) {
735 pci_disable_msix(adapter->pdev);
736 adapter->flags &= ~USING_MSIX;
737 } else if (adapter->flags & USING_MSI) {
738 pci_disable_msi(adapter->pdev);
739 adapter->flags &= ~USING_MSI;
740 }
741}
742
743/*
744 * Interrupt handler for non-data events used with MSI-X.
745 */
746static irqreturn_t t4_nondata_intr(int irq, void *cookie)
747{
748 struct adapter *adap = cookie;
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530749 u32 v = t4_read_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000750
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530751 if (v & PFSW_F) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000752 adap->swintr = 1;
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530753 t4_write_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A), v);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000754 }
Hariprasad Shenaic3c7b122015-04-15 02:02:34 +0530755 if (adap->flags & MASTER_PF)
756 t4_slow_intr_handler(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000757 return IRQ_HANDLED;
758}
759
760/*
761 * Name the MSI-X interrupts.
762 */
763static void name_msix_vecs(struct adapter *adap)
764{
Dimitris Michailidisba278162010-12-14 21:36:50 +0000765 int i, j, msi_idx = 2, n = sizeof(adap->msix_info[0].desc);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000766
767 /* non-data interrupts */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000768 snprintf(adap->msix_info[0].desc, n, "%s", adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000769
770 /* FW events */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000771 snprintf(adap->msix_info[1].desc, n, "%s-FWeventq",
772 adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000773
774 /* Ethernet queues */
775 for_each_port(adap, j) {
776 struct net_device *d = adap->port[j];
777 const struct port_info *pi = netdev_priv(d);
778
Dimitris Michailidisba278162010-12-14 21:36:50 +0000779 for (i = 0; i < pi->nqsets; i++, msi_idx++)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000780 snprintf(adap->msix_info[msi_idx].desc, n, "%s-Rx%d",
781 d->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000782 }
783
784 /* offload queues */
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530785 for_each_iscsirxq(&adap->sge, i)
786 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-iscsi%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000787 adap->port[0]->name, i);
Dimitris Michailidisba278162010-12-14 21:36:50 +0000788
Varun Prakashf2692d12016-02-14 23:02:40 +0530789 for_each_iscsitrxq(&adap->sge, i)
790 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-iSCSIT%d",
791 adap->port[0]->name, i);
792
Dimitris Michailidisba278162010-12-14 21:36:50 +0000793 for_each_rdmarxq(&adap->sge, i)
794 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000795 adap->port[0]->name, i);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530796
797 for_each_rdmaciq(&adap->sge, i)
798 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma-ciq%d",
799 adap->port[0]->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000800}
801
802static int request_msix_queue_irqs(struct adapter *adap)
803{
804 struct sge *s = &adap->sge;
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530805 int err, ethqidx, iscsiqidx = 0, rdmaqidx = 0, rdmaciqqidx = 0;
Varun Prakashf2692d12016-02-14 23:02:40 +0530806 int iscsitqidx = 0;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530807 int msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000808
809 err = request_irq(adap->msix_info[1].vec, t4_sge_intr_msix, 0,
810 adap->msix_info[1].desc, &s->fw_evtq);
811 if (err)
812 return err;
813
814 for_each_ethrxq(s, ethqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000815 err = request_irq(adap->msix_info[msi_index].vec,
816 t4_sge_intr_msix, 0,
817 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000818 &s->ethrxq[ethqidx].rspq);
819 if (err)
820 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000821 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000822 }
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530823 for_each_iscsirxq(s, iscsiqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000824 err = request_irq(adap->msix_info[msi_index].vec,
825 t4_sge_intr_msix, 0,
826 adap->msix_info[msi_index].desc,
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530827 &s->iscsirxq[iscsiqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000828 if (err)
829 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000830 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000831 }
Varun Prakashf2692d12016-02-14 23:02:40 +0530832 for_each_iscsitrxq(s, iscsitqidx) {
833 err = request_irq(adap->msix_info[msi_index].vec,
834 t4_sge_intr_msix, 0,
835 adap->msix_info[msi_index].desc,
836 &s->iscsitrxq[iscsitqidx].rspq);
837 if (err)
838 goto unwind;
839 msi_index++;
840 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000841 for_each_rdmarxq(s, rdmaqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000842 err = request_irq(adap->msix_info[msi_index].vec,
843 t4_sge_intr_msix, 0,
844 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000845 &s->rdmarxq[rdmaqidx].rspq);
846 if (err)
847 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000848 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000849 }
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530850 for_each_rdmaciq(s, rdmaciqqidx) {
851 err = request_irq(adap->msix_info[msi_index].vec,
852 t4_sge_intr_msix, 0,
853 adap->msix_info[msi_index].desc,
854 &s->rdmaciq[rdmaciqqidx].rspq);
855 if (err)
856 goto unwind;
857 msi_index++;
858 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000859 return 0;
860
861unwind:
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530862 while (--rdmaciqqidx >= 0)
863 free_irq(adap->msix_info[--msi_index].vec,
864 &s->rdmaciq[rdmaciqqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000865 while (--rdmaqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000866 free_irq(adap->msix_info[--msi_index].vec,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000867 &s->rdmarxq[rdmaqidx].rspq);
Varun Prakashf2692d12016-02-14 23:02:40 +0530868 while (--iscsitqidx >= 0)
869 free_irq(adap->msix_info[--msi_index].vec,
870 &s->iscsitrxq[iscsitqidx].rspq);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530871 while (--iscsiqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000872 free_irq(adap->msix_info[--msi_index].vec,
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530873 &s->iscsirxq[iscsiqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000874 while (--ethqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000875 free_irq(adap->msix_info[--msi_index].vec,
876 &s->ethrxq[ethqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000877 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
878 return err;
879}
880
881static void free_msix_queue_irqs(struct adapter *adap)
882{
Vipul Pandya404d9e32012-10-08 02:59:43 +0000883 int i, msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000884 struct sge *s = &adap->sge;
885
886 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
887 for_each_ethrxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000888 free_irq(adap->msix_info[msi_index++].vec, &s->ethrxq[i].rspq);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530889 for_each_iscsirxq(s, i)
890 free_irq(adap->msix_info[msi_index++].vec,
891 &s->iscsirxq[i].rspq);
Varun Prakashf2692d12016-02-14 23:02:40 +0530892 for_each_iscsitrxq(s, i)
893 free_irq(adap->msix_info[msi_index++].vec,
894 &s->iscsitrxq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000895 for_each_rdmarxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000896 free_irq(adap->msix_info[msi_index++].vec, &s->rdmarxq[i].rspq);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530897 for_each_rdmaciq(s, i)
898 free_irq(adap->msix_info[msi_index++].vec, &s->rdmaciq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000899}
900
901/**
Hariprasad Shenai812034f2015-04-06 20:23:23 +0530902 * cxgb4_write_rss - write the RSS table for a given port
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000903 * @pi: the port
904 * @queues: array of queue indices for RSS
905 *
906 * Sets up the portion of the HW RSS table for the port's VI to distribute
907 * packets to the Rx queues in @queues.
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530908 * Should never be called before setting up sge eth rx queues
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000909 */
Hariprasad Shenai812034f2015-04-06 20:23:23 +0530910int cxgb4_write_rss(const struct port_info *pi, const u16 *queues)
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000911{
912 u16 *rss;
913 int i, err;
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530914 struct adapter *adapter = pi->adapter;
915 const struct sge_eth_rxq *rxq;
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000916
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530917 rxq = &adapter->sge.ethrxq[pi->first_qset];
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000918 rss = kmalloc(pi->rss_size * sizeof(u16), GFP_KERNEL);
919 if (!rss)
920 return -ENOMEM;
921
922 /* map the queue indices to queue ids */
923 for (i = 0; i < pi->rss_size; i++, queues++)
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530924 rss[i] = rxq[*queues].rspq.abs_id;
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000925
Hariprasad Shenaib2612722015-05-27 22:30:24 +0530926 err = t4_config_rss_range(adapter, adapter->pf, pi->viid, 0,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000927 pi->rss_size, rss, pi->rss_size);
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530928 /* If Tunnel All Lookup isn't specified in the global RSS
929 * Configuration, then we need to specify a default Ingress
930 * Queue for any ingress packets which aren't hashed. We'll
931 * use our first ingress queue ...
932 */
933 if (!err)
934 err = t4_config_vi_rss(adapter, adapter->mbox, pi->viid,
935 FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN_F |
936 FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN_F |
937 FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN_F |
938 FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN_F |
939 FW_RSS_VI_CONFIG_CMD_UDPEN_F,
940 rss[0]);
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000941 kfree(rss);
942 return err;
943}
944
945/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000946 * setup_rss - configure RSS
947 * @adap: the adapter
948 *
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000949 * Sets up RSS for each port.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000950 */
951static int setup_rss(struct adapter *adap)
952{
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530953 int i, j, err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000954
955 for_each_port(adap, i) {
956 const struct port_info *pi = adap2pinfo(adap, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000957
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530958 /* Fill default values with equal distribution */
959 for (j = 0; j < pi->rss_size; j++)
960 pi->rss[j] = j % pi->nqsets;
961
Hariprasad Shenai812034f2015-04-06 20:23:23 +0530962 err = cxgb4_write_rss(pi, pi->rss);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000963 if (err)
964 return err;
965 }
966 return 0;
967}
968
969/*
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000970 * Return the channel of the ingress queue with the given qid.
971 */
972static unsigned int rxq_to_chan(const struct sge *p, unsigned int qid)
973{
974 qid -= p->ingr_start;
975 return netdev2pinfo(p->ingr_map[qid]->netdev)->tx_chan;
976}
977
978/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000979 * Wait until all NAPI handlers are descheduled.
980 */
981static void quiesce_rx(struct adapter *adap)
982{
983 int i;
984
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +0530985 for (i = 0; i < adap->sge.ingr_sz; i++) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000986 struct sge_rspq *q = adap->sge.ingr_map[i];
987
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530988 if (q && q->handler) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000989 napi_disable(&q->napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530990 local_bh_disable();
991 while (!cxgb_poll_lock_napi(q))
992 mdelay(1);
993 local_bh_enable();
994 }
995
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000996 }
997}
998
Hariprasad Shenaib37987e2015-03-26 10:04:26 +0530999/* Disable interrupt and napi handler */
1000static void disable_interrupts(struct adapter *adap)
1001{
1002 if (adap->flags & FULL_INIT_DONE) {
1003 t4_intr_disable(adap);
1004 if (adap->flags & USING_MSIX) {
1005 free_msix_queue_irqs(adap);
1006 free_irq(adap->msix_info[0].vec, adap);
1007 } else {
1008 free_irq(adap->pdev->irq, adap);
1009 }
1010 quiesce_rx(adap);
1011 }
1012}
1013
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001014/*
1015 * Enable NAPI scheduling and interrupt generation for all Rx queues.
1016 */
1017static void enable_rx(struct adapter *adap)
1018{
1019 int i;
1020
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05301021 for (i = 0; i < adap->sge.ingr_sz; i++) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001022 struct sge_rspq *q = adap->sge.ingr_map[i];
1023
1024 if (!q)
1025 continue;
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05301026 if (q->handler) {
1027 cxgb_busy_poll_init_lock(q);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001028 napi_enable(&q->napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05301029 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001030 /* 0-increment GTS to start the timer and enable interrupts */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05301031 t4_write_reg(adap, MYPF_REG(SGE_PF_GTS_A),
1032 SEINTARM_V(q->intr_params) |
1033 INGRESSQID_V(q->cntxt_id));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001034 }
1035}
1036
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301037static int alloc_ofld_rxqs(struct adapter *adap, struct sge_ofld_rxq *q,
1038 unsigned int nq, unsigned int per_chan, int msi_idx,
Varun Prakash2337ba42016-02-14 23:02:41 +05301039 u16 *ids, bool lro)
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301040{
1041 int i, err;
1042
1043 for (i = 0; i < nq; i++, q++) {
1044 if (msi_idx > 0)
1045 msi_idx++;
1046 err = t4_sge_alloc_rxq(adap, &q->rspq, false,
1047 adap->port[i / per_chan],
1048 msi_idx, q->fl.size ? &q->fl : NULL,
Varun Prakash2337ba42016-02-14 23:02:41 +05301049 uldrx_handler,
1050 lro ? uldrx_flush_handler : NULL,
1051 0);
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301052 if (err)
1053 return err;
1054 memset(&q->stats, 0, sizeof(q->stats));
1055 if (ids)
1056 ids[i] = q->rspq.abs_id;
1057 }
1058 return 0;
1059}
1060
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001061/**
1062 * setup_sge_queues - configure SGE Tx/Rx/response queues
1063 * @adap: the adapter
1064 *
1065 * Determines how many sets of SGE queues to use and initializes them.
1066 * We support multiple queue sets per port if we have MSI-X, otherwise
1067 * just one queue set per port.
1068 */
1069static int setup_sge_queues(struct adapter *adap)
1070{
1071 int err, msi_idx, i, j;
1072 struct sge *s = &adap->sge;
1073
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05301074 bitmap_zero(s->starving_fl, s->egr_sz);
1075 bitmap_zero(s->txq_maperr, s->egr_sz);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001076
1077 if (adap->flags & USING_MSIX)
1078 msi_idx = 1; /* vector 0 is for non-queue interrupts */
1079 else {
1080 err = t4_sge_alloc_rxq(adap, &s->intrq, false, adap->port[0], 0,
Varun Prakash2337ba42016-02-14 23:02:41 +05301081 NULL, NULL, NULL, -1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001082 if (err)
1083 return err;
1084 msi_idx = -((int)s->intrq.abs_id + 1);
1085 }
1086
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05301087 /* NOTE: If you add/delete any Ingress/Egress Queue allocations in here,
1088 * don't forget to update the following which need to be
1089 * synchronized to and changes here.
1090 *
1091 * 1. The calculations of MAX_INGQ in cxgb4.h.
1092 *
1093 * 2. Update enable_msix/name_msix_vecs/request_msix_queue_irqs
1094 * to accommodate any new/deleted Ingress Queues
1095 * which need MSI-X Vectors.
1096 *
1097 * 3. Update sge_qinfo_show() to include information on the
1098 * new/deleted queues.
1099 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001100 err = t4_sge_alloc_rxq(adap, &s->fw_evtq, true, adap->port[0],
Varun Prakash2337ba42016-02-14 23:02:41 +05301101 msi_idx, NULL, fwevtq_handler, NULL, -1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001102 if (err) {
1103freeout: t4_free_sge_resources(adap);
1104 return err;
1105 }
1106
1107 for_each_port(adap, i) {
1108 struct net_device *dev = adap->port[i];
1109 struct port_info *pi = netdev_priv(dev);
1110 struct sge_eth_rxq *q = &s->ethrxq[pi->first_qset];
1111 struct sge_eth_txq *t = &s->ethtxq[pi->first_qset];
1112
1113 for (j = 0; j < pi->nqsets; j++, q++) {
1114 if (msi_idx > 0)
1115 msi_idx++;
1116 err = t4_sge_alloc_rxq(adap, &q->rspq, false, dev,
1117 msi_idx, &q->fl,
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05301118 t4_ethrx_handler,
Varun Prakash2337ba42016-02-14 23:02:41 +05301119 NULL,
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05301120 t4_get_mps_bg_map(adap,
1121 pi->tx_chan));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001122 if (err)
1123 goto freeout;
1124 q->rspq.idx = j;
1125 memset(&q->stats, 0, sizeof(q->stats));
1126 }
1127 for (j = 0; j < pi->nqsets; j++, t++) {
1128 err = t4_sge_alloc_eth_txq(adap, t, dev,
1129 netdev_get_tx_queue(dev, j),
1130 s->fw_evtq.cntxt_id);
1131 if (err)
1132 goto freeout;
1133 }
1134 }
1135
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05301136 j = s->iscsiqsets / adap->params.nports; /* iscsi queues per channel */
1137 for_each_iscsirxq(s, i) {
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301138 err = t4_sge_alloc_ofld_txq(adap, &s->ofldtxq[i],
1139 adap->port[i / j],
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001140 s->fw_evtq.cntxt_id);
1141 if (err)
1142 goto freeout;
1143 }
1144
Varun Prakash2337ba42016-02-14 23:02:41 +05301145#define ALLOC_OFLD_RXQS(firstq, nq, per_chan, ids, lro) do { \
1146 err = alloc_ofld_rxqs(adap, firstq, nq, per_chan, msi_idx, ids, lro); \
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301147 if (err) \
1148 goto freeout; \
1149 if (msi_idx > 0) \
1150 msi_idx += nq; \
1151} while (0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001152
Varun Prakash2337ba42016-02-14 23:02:41 +05301153 ALLOC_OFLD_RXQS(s->iscsirxq, s->iscsiqsets, j, s->iscsi_rxq, false);
1154 ALLOC_OFLD_RXQS(s->iscsitrxq, s->niscsitq, j, s->iscsit_rxq, true);
1155 ALLOC_OFLD_RXQS(s->rdmarxq, s->rdmaqs, 1, s->rdma_rxq, false);
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05301156 j = s->rdmaciqs / adap->params.nports; /* rdmaq queues per channel */
Varun Prakash2337ba42016-02-14 23:02:41 +05301157 ALLOC_OFLD_RXQS(s->rdmaciq, s->rdmaciqs, j, s->rdma_ciq, false);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001158
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301159#undef ALLOC_OFLD_RXQS
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301160
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001161 for_each_port(adap, i) {
1162 /*
1163 * Note that ->rdmarxq[i].rspq.cntxt_id below is 0 if we don't
1164 * have RDMA queues, and that's the right value.
1165 */
1166 err = t4_sge_alloc_ctrl_txq(adap, &s->ctrlq[i], adap->port[i],
1167 s->fw_evtq.cntxt_id,
1168 s->rdmarxq[i].rspq.cntxt_id);
1169 if (err)
1170 goto freeout;
1171 }
1172
Hariprasad Shenai9bb59b92014-09-01 19:54:57 +05301173 t4_write_reg(adap, is_t4(adap->params.chip) ?
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05301174 MPS_TRC_RSS_CONTROL_A :
1175 MPS_T5_TRC_RSS_CONTROL_A,
1176 RSSCONTROL_V(netdev2pinfo(adap->port[0])->tx_chan) |
1177 QUEUENUMBER_V(s->ethrxq[0].rspq.abs_id));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001178 return 0;
1179}
1180
1181/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001182 * Allocate a chunk of memory using kmalloc or, if that fails, vmalloc.
1183 * The allocated memory is cleared.
1184 */
1185void *t4_alloc_mem(size_t size)
1186{
Joe Perches8be04b92013-06-19 12:15:53 -07001187 void *p = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001188
1189 if (!p)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001190 p = vzalloc(size);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001191 return p;
1192}
1193
1194/*
1195 * Free memory allocated through alloc_mem().
1196 */
Hariprasad Shenaifd88b312014-11-07 09:35:23 +05301197void t4_free_mem(void *addr)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001198{
Pekka Enbergd2fcb542015-06-30 14:59:12 -07001199 kvfree(addr);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001200}
1201
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001202/* Send a Work Request to write the filter at a specified index. We construct
1203 * a Firmware Filter Work Request to have the work done and put the indicated
1204 * filter into "pending" mode which will prevent any further actions against
1205 * it till we get a reply from the firmware on the completion status of the
1206 * request.
1207 */
1208static int set_filter_wr(struct adapter *adapter, int fidx)
1209{
1210 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1211 struct sk_buff *skb;
1212 struct fw_filter_wr *fwr;
1213 unsigned int ftid;
1214
Michal Hockof72f1162015-04-14 13:24:33 -07001215 skb = alloc_skb(sizeof(*fwr), GFP_KERNEL);
1216 if (!skb)
1217 return -ENOMEM;
1218
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001219 /* If the new filter requires loopback Destination MAC and/or VLAN
1220 * rewriting then we need to allocate a Layer 2 Table (L2T) entry for
1221 * the filter.
1222 */
1223 if (f->fs.newdmac || f->fs.newvlan) {
1224 /* allocate L2T entry for new filter */
Hariprasad Shenaif7502652015-12-17 13:45:08 +05301225 f->l2t = t4_l2t_alloc_switching(adapter, f->fs.vlan,
1226 f->fs.eport, f->fs.dmac);
Michal Hockof72f1162015-04-14 13:24:33 -07001227 if (f->l2t == NULL) {
1228 kfree_skb(skb);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001229 return -ENOMEM;
1230 }
1231 }
1232
1233 ftid = adapter->tids.ftid_base + fidx;
1234
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001235 fwr = (struct fw_filter_wr *)__skb_put(skb, sizeof(*fwr));
1236 memset(fwr, 0, sizeof(*fwr));
1237
1238 /* It would be nice to put most of the following in t4_hw.c but most
1239 * of the work is translating the cxgbtool ch_filter_specification
1240 * into the Work Request and the definition of that structure is
1241 * currently in cxgbtool.h which isn't appropriate to pull into the
1242 * common code. We may eventually try to come up with a more neutral
1243 * filter specification structure but for now it's easiest to simply
1244 * put this fairly direct code in line ...
1245 */
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301246 fwr->op_pkd = htonl(FW_WR_OP_V(FW_FILTER_WR));
1247 fwr->len16_pkd = htonl(FW_WR_LEN16_V(sizeof(*fwr)/16));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001248 fwr->tid_to_iq =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301249 htonl(FW_FILTER_WR_TID_V(ftid) |
1250 FW_FILTER_WR_RQTYPE_V(f->fs.type) |
1251 FW_FILTER_WR_NOREPLY_V(0) |
1252 FW_FILTER_WR_IQ_V(f->fs.iq));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001253 fwr->del_filter_to_l2tix =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301254 htonl(FW_FILTER_WR_RPTTID_V(f->fs.rpttid) |
1255 FW_FILTER_WR_DROP_V(f->fs.action == FILTER_DROP) |
1256 FW_FILTER_WR_DIRSTEER_V(f->fs.dirsteer) |
1257 FW_FILTER_WR_MASKHASH_V(f->fs.maskhash) |
1258 FW_FILTER_WR_DIRSTEERHASH_V(f->fs.dirsteerhash) |
1259 FW_FILTER_WR_LPBK_V(f->fs.action == FILTER_SWITCH) |
1260 FW_FILTER_WR_DMAC_V(f->fs.newdmac) |
1261 FW_FILTER_WR_SMAC_V(f->fs.newsmac) |
1262 FW_FILTER_WR_INSVLAN_V(f->fs.newvlan == VLAN_INSERT ||
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001263 f->fs.newvlan == VLAN_REWRITE) |
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301264 FW_FILTER_WR_RMVLAN_V(f->fs.newvlan == VLAN_REMOVE ||
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001265 f->fs.newvlan == VLAN_REWRITE) |
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301266 FW_FILTER_WR_HITCNTS_V(f->fs.hitcnts) |
1267 FW_FILTER_WR_TXCHAN_V(f->fs.eport) |
1268 FW_FILTER_WR_PRIO_V(f->fs.prio) |
1269 FW_FILTER_WR_L2TIX_V(f->l2t ? f->l2t->idx : 0));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001270 fwr->ethtype = htons(f->fs.val.ethtype);
1271 fwr->ethtypem = htons(f->fs.mask.ethtype);
1272 fwr->frag_to_ovlan_vldm =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301273 (FW_FILTER_WR_FRAG_V(f->fs.val.frag) |
1274 FW_FILTER_WR_FRAGM_V(f->fs.mask.frag) |
1275 FW_FILTER_WR_IVLAN_VLD_V(f->fs.val.ivlan_vld) |
1276 FW_FILTER_WR_OVLAN_VLD_V(f->fs.val.ovlan_vld) |
1277 FW_FILTER_WR_IVLAN_VLDM_V(f->fs.mask.ivlan_vld) |
1278 FW_FILTER_WR_OVLAN_VLDM_V(f->fs.mask.ovlan_vld));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001279 fwr->smac_sel = 0;
1280 fwr->rx_chan_rx_rpl_iq =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301281 htons(FW_FILTER_WR_RX_CHAN_V(0) |
1282 FW_FILTER_WR_RX_RPL_IQ_V(adapter->sge.fw_evtq.abs_id));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001283 fwr->maci_to_matchtypem =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301284 htonl(FW_FILTER_WR_MACI_V(f->fs.val.macidx) |
1285 FW_FILTER_WR_MACIM_V(f->fs.mask.macidx) |
1286 FW_FILTER_WR_FCOE_V(f->fs.val.fcoe) |
1287 FW_FILTER_WR_FCOEM_V(f->fs.mask.fcoe) |
1288 FW_FILTER_WR_PORT_V(f->fs.val.iport) |
1289 FW_FILTER_WR_PORTM_V(f->fs.mask.iport) |
1290 FW_FILTER_WR_MATCHTYPE_V(f->fs.val.matchtype) |
1291 FW_FILTER_WR_MATCHTYPEM_V(f->fs.mask.matchtype));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001292 fwr->ptcl = f->fs.val.proto;
1293 fwr->ptclm = f->fs.mask.proto;
1294 fwr->ttyp = f->fs.val.tos;
1295 fwr->ttypm = f->fs.mask.tos;
1296 fwr->ivlan = htons(f->fs.val.ivlan);
1297 fwr->ivlanm = htons(f->fs.mask.ivlan);
1298 fwr->ovlan = htons(f->fs.val.ovlan);
1299 fwr->ovlanm = htons(f->fs.mask.ovlan);
1300 memcpy(fwr->lip, f->fs.val.lip, sizeof(fwr->lip));
1301 memcpy(fwr->lipm, f->fs.mask.lip, sizeof(fwr->lipm));
1302 memcpy(fwr->fip, f->fs.val.fip, sizeof(fwr->fip));
1303 memcpy(fwr->fipm, f->fs.mask.fip, sizeof(fwr->fipm));
1304 fwr->lp = htons(f->fs.val.lport);
1305 fwr->lpm = htons(f->fs.mask.lport);
1306 fwr->fp = htons(f->fs.val.fport);
1307 fwr->fpm = htons(f->fs.mask.fport);
1308 if (f->fs.newsmac)
1309 memcpy(fwr->sma, f->fs.smac, sizeof(fwr->sma));
1310
1311 /* Mark the filter as "pending" and ship off the Filter Work Request.
1312 * When we get the Work Request Reply we'll clear the pending status.
1313 */
1314 f->pending = 1;
1315 set_wr_txq(skb, CPL_PRIORITY_CONTROL, f->fs.val.iport & 0x3);
1316 t4_ofld_send(adapter, skb);
1317 return 0;
1318}
1319
1320/* Delete the filter at a specified index.
1321 */
1322static int del_filter_wr(struct adapter *adapter, int fidx)
1323{
1324 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1325 struct sk_buff *skb;
1326 struct fw_filter_wr *fwr;
1327 unsigned int len, ftid;
1328
1329 len = sizeof(*fwr);
1330 ftid = adapter->tids.ftid_base + fidx;
1331
Michal Hockof72f1162015-04-14 13:24:33 -07001332 skb = alloc_skb(len, GFP_KERNEL);
1333 if (!skb)
1334 return -ENOMEM;
1335
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001336 fwr = (struct fw_filter_wr *)__skb_put(skb, len);
1337 t4_mk_filtdelwr(ftid, fwr, adapter->sge.fw_evtq.abs_id);
1338
1339 /* Mark the filter as "pending" and ship off the Filter Work Request.
1340 * When we get the Work Request Reply we'll clear the pending status.
1341 */
1342 f->pending = 1;
1343 t4_mgmt_tx(adapter, skb);
1344 return 0;
1345}
1346
Anish Bhatt688848b2014-06-19 21:37:13 -07001347static u16 cxgb_select_queue(struct net_device *dev, struct sk_buff *skb,
1348 void *accel_priv, select_queue_fallback_t fallback)
1349{
1350 int txq;
1351
1352#ifdef CONFIG_CHELSIO_T4_DCB
1353 /* If a Data Center Bridging has been successfully negotiated on this
1354 * link then we'll use the skb's priority to map it to a TX Queue.
1355 * The skb's priority is determined via the VLAN Tag Priority Code
1356 * Point field.
1357 */
1358 if (cxgb4_dcb_enabled(dev)) {
1359 u16 vlan_tci;
1360 int err;
1361
1362 err = vlan_get_tag(skb, &vlan_tci);
1363 if (unlikely(err)) {
1364 if (net_ratelimit())
1365 netdev_warn(dev,
1366 "TX Packet without VLAN Tag on DCB Link\n");
1367 txq = 0;
1368 } else {
1369 txq = (vlan_tci & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
Varun Prakash84a200b2015-03-24 19:14:46 +05301370#ifdef CONFIG_CHELSIO_T4_FCOE
1371 if (skb->protocol == htons(ETH_P_FCOE))
1372 txq = skb->priority & 0x7;
1373#endif /* CONFIG_CHELSIO_T4_FCOE */
Anish Bhatt688848b2014-06-19 21:37:13 -07001374 }
1375 return txq;
1376 }
1377#endif /* CONFIG_CHELSIO_T4_DCB */
1378
1379 if (select_queue) {
1380 txq = (skb_rx_queue_recorded(skb)
1381 ? skb_get_rx_queue(skb)
1382 : smp_processor_id());
1383
1384 while (unlikely(txq >= dev->real_num_tx_queues))
1385 txq -= dev->real_num_tx_queues;
1386
1387 return txq;
1388 }
1389
1390 return fallback(dev, skb) % dev->real_num_tx_queues;
1391}
1392
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001393static int closest_timer(const struct sge *s, int time)
1394{
1395 int i, delta, match = 0, min_delta = INT_MAX;
1396
1397 for (i = 0; i < ARRAY_SIZE(s->timer_val); i++) {
1398 delta = time - s->timer_val[i];
1399 if (delta < 0)
1400 delta = -delta;
1401 if (delta < min_delta) {
1402 min_delta = delta;
1403 match = i;
1404 }
1405 }
1406 return match;
1407}
1408
1409static int closest_thres(const struct sge *s, int thres)
1410{
1411 int i, delta, match = 0, min_delta = INT_MAX;
1412
1413 for (i = 0; i < ARRAY_SIZE(s->counter_val); i++) {
1414 delta = thres - s->counter_val[i];
1415 if (delta < 0)
1416 delta = -delta;
1417 if (delta < min_delta) {
1418 min_delta = delta;
1419 match = i;
1420 }
1421 }
1422 return match;
1423}
1424
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001425/**
Hariprasad Shenai812034f2015-04-06 20:23:23 +05301426 * cxgb4_set_rspq_intr_params - set a queue's interrupt holdoff parameters
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001427 * @q: the Rx queue
1428 * @us: the hold-off time in us, or 0 to disable timer
1429 * @cnt: the hold-off packet count, or 0 to disable counter
1430 *
1431 * Sets an Rx queue's interrupt hold-off time and packet count. At least
1432 * one of the two needs to be enabled for the queue to generate interrupts.
1433 */
Hariprasad Shenai812034f2015-04-06 20:23:23 +05301434int cxgb4_set_rspq_intr_params(struct sge_rspq *q,
1435 unsigned int us, unsigned int cnt)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001436{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05301437 struct adapter *adap = q->adap;
1438
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001439 if ((us | cnt) == 0)
1440 cnt = 1;
1441
1442 if (cnt) {
1443 int err;
1444 u32 v, new_idx;
1445
1446 new_idx = closest_thres(&adap->sge, cnt);
1447 if (q->desc && q->pktcnt_idx != new_idx) {
1448 /* the queue has already been created, update it */
Hariprasad Shenai51678652014-11-21 12:52:02 +05301449 v = FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
1450 FW_PARAMS_PARAM_X_V(
1451 FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH) |
1452 FW_PARAMS_PARAM_YZ_V(q->cntxt_id);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05301453 err = t4_set_params(adap, adap->mbox, adap->pf, 0, 1,
1454 &v, &new_idx);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001455 if (err)
1456 return err;
1457 }
1458 q->pktcnt_idx = new_idx;
1459 }
1460
1461 us = us == 0 ? 6 : closest_timer(&adap->sge, us);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301462 q->intr_params = QINTR_TIMER_IDX_V(us) | QINTR_CNT_EN_V(cnt > 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001463 return 0;
1464}
1465
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001466static int cxgb_set_features(struct net_device *dev, netdev_features_t features)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001467{
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001468 const struct port_info *pi = netdev_priv(dev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001469 netdev_features_t changed = dev->features ^ features;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001470 int err;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001471
Patrick McHardyf6469682013-04-19 02:04:27 +00001472 if (!(changed & NETIF_F_HW_VLAN_CTAG_RX))
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001473 return 0;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001474
Hariprasad Shenaib2612722015-05-27 22:30:24 +05301475 err = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, -1,
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001476 -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +00001477 !!(features & NETIF_F_HW_VLAN_CTAG_RX), true);
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001478 if (unlikely(err))
Patrick McHardyf6469682013-04-19 02:04:27 +00001479 dev->features = features ^ NETIF_F_HW_VLAN_CTAG_RX;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001480 return err;
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001481}
1482
Bill Pemberton91744942012-12-03 09:23:02 -05001483static int setup_debugfs(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001484{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001485 if (IS_ERR_OR_NULL(adap->debugfs_root))
1486 return -1;
1487
Hariprasad Shenaifd88b312014-11-07 09:35:23 +05301488#ifdef CONFIG_DEBUG_FS
1489 t4_setup_debugfs(adap);
1490#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001491 return 0;
1492}
1493
1494/*
1495 * upper-layer driver support
1496 */
1497
1498/*
1499 * Allocate an active-open TID and set it to the supplied value.
1500 */
1501int cxgb4_alloc_atid(struct tid_info *t, void *data)
1502{
1503 int atid = -1;
1504
1505 spin_lock_bh(&t->atid_lock);
1506 if (t->afree) {
1507 union aopen_entry *p = t->afree;
1508
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001509 atid = (p - t->atid_tab) + t->atid_base;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001510 t->afree = p->next;
1511 p->data = data;
1512 t->atids_in_use++;
1513 }
1514 spin_unlock_bh(&t->atid_lock);
1515 return atid;
1516}
1517EXPORT_SYMBOL(cxgb4_alloc_atid);
1518
1519/*
1520 * Release an active-open TID.
1521 */
1522void cxgb4_free_atid(struct tid_info *t, unsigned int atid)
1523{
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001524 union aopen_entry *p = &t->atid_tab[atid - t->atid_base];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001525
1526 spin_lock_bh(&t->atid_lock);
1527 p->next = t->afree;
1528 t->afree = p;
1529 t->atids_in_use--;
1530 spin_unlock_bh(&t->atid_lock);
1531}
1532EXPORT_SYMBOL(cxgb4_free_atid);
1533
1534/*
1535 * Allocate a server TID and set it to the supplied value.
1536 */
1537int cxgb4_alloc_stid(struct tid_info *t, int family, void *data)
1538{
1539 int stid;
1540
1541 spin_lock_bh(&t->stid_lock);
1542 if (family == PF_INET) {
1543 stid = find_first_zero_bit(t->stid_bmap, t->nstids);
1544 if (stid < t->nstids)
1545 __set_bit(stid, t->stid_bmap);
1546 else
1547 stid = -1;
1548 } else {
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301549 stid = bitmap_find_free_region(t->stid_bmap, t->nstids, 1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001550 if (stid < 0)
1551 stid = -1;
1552 }
1553 if (stid >= 0) {
1554 t->stid_tab[stid].data = data;
1555 stid += t->stid_base;
Kumar Sanghvi15f63b72013-12-18 16:38:22 +05301556 /* IPv6 requires max of 520 bits or 16 cells in TCAM
1557 * This is equivalent to 4 TIDs. With CLIP enabled it
1558 * needs 2 TIDs.
1559 */
1560 if (family == PF_INET)
1561 t->stids_in_use++;
1562 else
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301563 t->stids_in_use += 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001564 }
1565 spin_unlock_bh(&t->stid_lock);
1566 return stid;
1567}
1568EXPORT_SYMBOL(cxgb4_alloc_stid);
1569
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001570/* Allocate a server filter TID and set it to the supplied value.
1571 */
1572int cxgb4_alloc_sftid(struct tid_info *t, int family, void *data)
1573{
1574 int stid;
1575
1576 spin_lock_bh(&t->stid_lock);
1577 if (family == PF_INET) {
1578 stid = find_next_zero_bit(t->stid_bmap,
1579 t->nstids + t->nsftids, t->nstids);
1580 if (stid < (t->nstids + t->nsftids))
1581 __set_bit(stid, t->stid_bmap);
1582 else
1583 stid = -1;
1584 } else {
1585 stid = -1;
1586 }
1587 if (stid >= 0) {
1588 t->stid_tab[stid].data = data;
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05301589 stid -= t->nstids;
1590 stid += t->sftid_base;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301591 t->sftids_in_use++;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001592 }
1593 spin_unlock_bh(&t->stid_lock);
1594 return stid;
1595}
1596EXPORT_SYMBOL(cxgb4_alloc_sftid);
1597
1598/* Release a server TID.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001599 */
1600void cxgb4_free_stid(struct tid_info *t, unsigned int stid, int family)
1601{
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05301602 /* Is it a server filter TID? */
1603 if (t->nsftids && (stid >= t->sftid_base)) {
1604 stid -= t->sftid_base;
1605 stid += t->nstids;
1606 } else {
1607 stid -= t->stid_base;
1608 }
1609
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001610 spin_lock_bh(&t->stid_lock);
1611 if (family == PF_INET)
1612 __clear_bit(stid, t->stid_bmap);
1613 else
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301614 bitmap_release_region(t->stid_bmap, stid, 1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001615 t->stid_tab[stid].data = NULL;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301616 if (stid < t->nstids) {
1617 if (family == PF_INET)
1618 t->stids_in_use--;
1619 else
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301620 t->stids_in_use -= 2;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301621 } else {
1622 t->sftids_in_use--;
1623 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001624 spin_unlock_bh(&t->stid_lock);
1625}
1626EXPORT_SYMBOL(cxgb4_free_stid);
1627
1628/*
1629 * Populate a TID_RELEASE WR. Caller must properly size the skb.
1630 */
1631static void mk_tid_release(struct sk_buff *skb, unsigned int chan,
1632 unsigned int tid)
1633{
1634 struct cpl_tid_release *req;
1635
1636 set_wr_txq(skb, CPL_PRIORITY_SETUP, chan);
1637 req = (struct cpl_tid_release *)__skb_put(skb, sizeof(*req));
1638 INIT_TP_WR(req, tid);
1639 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_TID_RELEASE, tid));
1640}
1641
1642/*
1643 * Queue a TID release request and if necessary schedule a work queue to
1644 * process it.
1645 */
stephen hemminger31b9c192010-10-18 05:39:18 +00001646static void cxgb4_queue_tid_release(struct tid_info *t, unsigned int chan,
1647 unsigned int tid)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001648{
1649 void **p = &t->tid_tab[tid];
1650 struct adapter *adap = container_of(t, struct adapter, tids);
1651
1652 spin_lock_bh(&adap->tid_release_lock);
1653 *p = adap->tid_release_head;
1654 /* Low 2 bits encode the Tx channel number */
1655 adap->tid_release_head = (void **)((uintptr_t)p | chan);
1656 if (!adap->tid_release_task_busy) {
1657 adap->tid_release_task_busy = true;
Anish Bhatt29aaee62014-08-20 13:44:06 -07001658 queue_work(adap->workq, &adap->tid_release_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001659 }
1660 spin_unlock_bh(&adap->tid_release_lock);
1661}
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001662
1663/*
1664 * Process the list of pending TID release requests.
1665 */
1666static void process_tid_release_list(struct work_struct *work)
1667{
1668 struct sk_buff *skb;
1669 struct adapter *adap;
1670
1671 adap = container_of(work, struct adapter, tid_release_task);
1672
1673 spin_lock_bh(&adap->tid_release_lock);
1674 while (adap->tid_release_head) {
1675 void **p = adap->tid_release_head;
1676 unsigned int chan = (uintptr_t)p & 3;
1677 p = (void *)p - chan;
1678
1679 adap->tid_release_head = *p;
1680 *p = NULL;
1681 spin_unlock_bh(&adap->tid_release_lock);
1682
1683 while (!(skb = alloc_skb(sizeof(struct cpl_tid_release),
1684 GFP_KERNEL)))
1685 schedule_timeout_uninterruptible(1);
1686
1687 mk_tid_release(skb, chan, p - adap->tids.tid_tab);
1688 t4_ofld_send(adap, skb);
1689 spin_lock_bh(&adap->tid_release_lock);
1690 }
1691 adap->tid_release_task_busy = false;
1692 spin_unlock_bh(&adap->tid_release_lock);
1693}
1694
1695/*
1696 * Release a TID and inform HW. If we are unable to allocate the release
1697 * message we defer to a work queue.
1698 */
1699void cxgb4_remove_tid(struct tid_info *t, unsigned int chan, unsigned int tid)
1700{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001701 struct sk_buff *skb;
1702 struct adapter *adap = container_of(t, struct adapter, tids);
1703
Hariprasad Shenai9a1bb9f2015-08-12 16:55:05 +05301704 WARN_ON(tid >= t->ntids);
1705
1706 if (t->tid_tab[tid]) {
1707 t->tid_tab[tid] = NULL;
1708 if (t->hash_base && (tid >= t->hash_base))
1709 atomic_dec(&t->hash_tids_in_use);
1710 else
1711 atomic_dec(&t->tids_in_use);
1712 }
1713
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001714 skb = alloc_skb(sizeof(struct cpl_tid_release), GFP_ATOMIC);
1715 if (likely(skb)) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001716 mk_tid_release(skb, chan, tid);
1717 t4_ofld_send(adap, skb);
1718 } else
1719 cxgb4_queue_tid_release(t, chan, tid);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001720}
1721EXPORT_SYMBOL(cxgb4_remove_tid);
1722
1723/*
1724 * Allocate and initialize the TID tables. Returns 0 on success.
1725 */
1726static int tid_init(struct tid_info *t)
1727{
1728 size_t size;
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001729 unsigned int stid_bmap_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001730 unsigned int natids = t->natids;
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05301731 struct adapter *adap = container_of(t, struct adapter, tids);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001732
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001733 stid_bmap_size = BITS_TO_LONGS(t->nstids + t->nsftids);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001734 size = t->ntids * sizeof(*t->tid_tab) +
1735 natids * sizeof(*t->atid_tab) +
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001736 t->nstids * sizeof(*t->stid_tab) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001737 t->nsftids * sizeof(*t->stid_tab) +
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001738 stid_bmap_size * sizeof(long) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001739 t->nftids * sizeof(*t->ftid_tab) +
1740 t->nsftids * sizeof(*t->ftid_tab);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001741
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001742 t->tid_tab = t4_alloc_mem(size);
1743 if (!t->tid_tab)
1744 return -ENOMEM;
1745
1746 t->atid_tab = (union aopen_entry *)&t->tid_tab[t->ntids];
1747 t->stid_tab = (struct serv_entry *)&t->atid_tab[natids];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001748 t->stid_bmap = (unsigned long *)&t->stid_tab[t->nstids + t->nsftids];
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001749 t->ftid_tab = (struct filter_entry *)&t->stid_bmap[stid_bmap_size];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001750 spin_lock_init(&t->stid_lock);
1751 spin_lock_init(&t->atid_lock);
1752
1753 t->stids_in_use = 0;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301754 t->sftids_in_use = 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001755 t->afree = NULL;
1756 t->atids_in_use = 0;
1757 atomic_set(&t->tids_in_use, 0);
Hariprasad Shenai9a1bb9f2015-08-12 16:55:05 +05301758 atomic_set(&t->hash_tids_in_use, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001759
1760 /* Setup the free list for atid_tab and clear the stid bitmap. */
1761 if (natids) {
1762 while (--natids)
1763 t->atid_tab[natids - 1].next = &t->atid_tab[natids];
1764 t->afree = t->atid_tab;
1765 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001766 bitmap_zero(t->stid_bmap, t->nstids + t->nsftids);
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05301767 /* Reserve stid 0 for T4/T5 adapters */
1768 if (!t->stid_base &&
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05301769 (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5))
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05301770 __set_bit(0, t->stid_bmap);
1771
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001772 return 0;
1773}
1774
1775/**
1776 * cxgb4_create_server - create an IP server
1777 * @dev: the device
1778 * @stid: the server TID
1779 * @sip: local IP address to bind server to
1780 * @sport: the server's TCP port
1781 * @queue: queue to direct messages from this server to
1782 *
1783 * Create an IP server for the given port and address.
1784 * Returns <0 on error and one of the %NET_XMIT_* values on success.
1785 */
1786int cxgb4_create_server(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00001787 __be32 sip, __be16 sport, __be16 vlan,
1788 unsigned int queue)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001789{
1790 unsigned int chan;
1791 struct sk_buff *skb;
1792 struct adapter *adap;
1793 struct cpl_pass_open_req *req;
Vipul Pandya80f40c12013-07-04 16:10:45 +05301794 int ret;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001795
1796 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1797 if (!skb)
1798 return -ENOMEM;
1799
1800 adap = netdev2adap(dev);
1801 req = (struct cpl_pass_open_req *)__skb_put(skb, sizeof(*req));
1802 INIT_TP_WR(req, 0);
1803 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ, stid));
1804 req->local_port = sport;
1805 req->peer_port = htons(0);
1806 req->local_ip = sip;
1807 req->peer_ip = htonl(0);
Dimitris Michailidise46dab42010-08-23 17:20:58 +00001808 chan = rxq_to_chan(&adap->sge, queue);
Anish Bhattd7990b02014-11-12 17:15:57 -08001809 req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001810 req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
1811 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05301812 ret = t4_mgmt_tx(adap, skb);
1813 return net_xmit_eval(ret);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001814}
1815EXPORT_SYMBOL(cxgb4_create_server);
1816
Vipul Pandya80f40c12013-07-04 16:10:45 +05301817/* cxgb4_create_server6 - create an IPv6 server
1818 * @dev: the device
1819 * @stid: the server TID
1820 * @sip: local IPv6 address to bind server to
1821 * @sport: the server's TCP port
1822 * @queue: queue to direct messages from this server to
1823 *
1824 * Create an IPv6 server for the given port and address.
1825 * Returns <0 on error and one of the %NET_XMIT_* values on success.
1826 */
1827int cxgb4_create_server6(const struct net_device *dev, unsigned int stid,
1828 const struct in6_addr *sip, __be16 sport,
1829 unsigned int queue)
1830{
1831 unsigned int chan;
1832 struct sk_buff *skb;
1833 struct adapter *adap;
1834 struct cpl_pass_open_req6 *req;
1835 int ret;
1836
1837 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1838 if (!skb)
1839 return -ENOMEM;
1840
1841 adap = netdev2adap(dev);
1842 req = (struct cpl_pass_open_req6 *)__skb_put(skb, sizeof(*req));
1843 INIT_TP_WR(req, 0);
1844 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ6, stid));
1845 req->local_port = sport;
1846 req->peer_port = htons(0);
1847 req->local_ip_hi = *(__be64 *)(sip->s6_addr);
1848 req->local_ip_lo = *(__be64 *)(sip->s6_addr + 8);
1849 req->peer_ip_hi = cpu_to_be64(0);
1850 req->peer_ip_lo = cpu_to_be64(0);
1851 chan = rxq_to_chan(&adap->sge, queue);
Anish Bhattd7990b02014-11-12 17:15:57 -08001852 req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001853 req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
1854 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05301855 ret = t4_mgmt_tx(adap, skb);
1856 return net_xmit_eval(ret);
1857}
1858EXPORT_SYMBOL(cxgb4_create_server6);
1859
1860int cxgb4_remove_server(const struct net_device *dev, unsigned int stid,
1861 unsigned int queue, bool ipv6)
1862{
1863 struct sk_buff *skb;
1864 struct adapter *adap;
1865 struct cpl_close_listsvr_req *req;
1866 int ret;
1867
1868 adap = netdev2adap(dev);
1869
1870 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1871 if (!skb)
1872 return -ENOMEM;
1873
1874 req = (struct cpl_close_listsvr_req *)__skb_put(skb, sizeof(*req));
1875 INIT_TP_WR(req, 0);
1876 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_CLOSE_LISTSRV_REQ, stid));
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08001877 req->reply_ctrl = htons(NO_REPLY_V(0) | (ipv6 ? LISTSVR_IPV6_V(1) :
1878 LISTSVR_IPV6_V(0)) | QUEUENO_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05301879 ret = t4_mgmt_tx(adap, skb);
1880 return net_xmit_eval(ret);
1881}
1882EXPORT_SYMBOL(cxgb4_remove_server);
1883
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001884/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001885 * cxgb4_best_mtu - find the entry in the MTU table closest to an MTU
1886 * @mtus: the HW MTU table
1887 * @mtu: the target MTU
1888 * @idx: index of selected entry in the MTU table
1889 *
1890 * Returns the index and the value in the HW MTU table that is closest to
1891 * but does not exceed @mtu, unless @mtu is smaller than any value in the
1892 * table, in which case that smallest available value is selected.
1893 */
1894unsigned int cxgb4_best_mtu(const unsigned short *mtus, unsigned short mtu,
1895 unsigned int *idx)
1896{
1897 unsigned int i = 0;
1898
1899 while (i < NMTUS - 1 && mtus[i + 1] <= mtu)
1900 ++i;
1901 if (idx)
1902 *idx = i;
1903 return mtus[i];
1904}
1905EXPORT_SYMBOL(cxgb4_best_mtu);
1906
1907/**
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05301908 * cxgb4_best_aligned_mtu - find best MTU, [hopefully] data size aligned
1909 * @mtus: the HW MTU table
1910 * @header_size: Header Size
1911 * @data_size_max: maximum Data Segment Size
1912 * @data_size_align: desired Data Segment Size Alignment (2^N)
1913 * @mtu_idxp: HW MTU Table Index return value pointer (possibly NULL)
1914 *
1915 * Similar to cxgb4_best_mtu() but instead of searching the Hardware
1916 * MTU Table based solely on a Maximum MTU parameter, we break that
1917 * parameter up into a Header Size and Maximum Data Segment Size, and
1918 * provide a desired Data Segment Size Alignment. If we find an MTU in
1919 * the Hardware MTU Table which will result in a Data Segment Size with
1920 * the requested alignment _and_ that MTU isn't "too far" from the
1921 * closest MTU, then we'll return that rather than the closest MTU.
1922 */
1923unsigned int cxgb4_best_aligned_mtu(const unsigned short *mtus,
1924 unsigned short header_size,
1925 unsigned short data_size_max,
1926 unsigned short data_size_align,
1927 unsigned int *mtu_idxp)
1928{
1929 unsigned short max_mtu = header_size + data_size_max;
1930 unsigned short data_size_align_mask = data_size_align - 1;
1931 int mtu_idx, aligned_mtu_idx;
1932
1933 /* Scan the MTU Table till we find an MTU which is larger than our
1934 * Maximum MTU or we reach the end of the table. Along the way,
1935 * record the last MTU found, if any, which will result in a Data
1936 * Segment Length matching the requested alignment.
1937 */
1938 for (mtu_idx = 0, aligned_mtu_idx = -1; mtu_idx < NMTUS; mtu_idx++) {
1939 unsigned short data_size = mtus[mtu_idx] - header_size;
1940
1941 /* If this MTU minus the Header Size would result in a
1942 * Data Segment Size of the desired alignment, remember it.
1943 */
1944 if ((data_size & data_size_align_mask) == 0)
1945 aligned_mtu_idx = mtu_idx;
1946
1947 /* If we're not at the end of the Hardware MTU Table and the
1948 * next element is larger than our Maximum MTU, drop out of
1949 * the loop.
1950 */
1951 if (mtu_idx+1 < NMTUS && mtus[mtu_idx+1] > max_mtu)
1952 break;
1953 }
1954
1955 /* If we fell out of the loop because we ran to the end of the table,
1956 * then we just have to use the last [largest] entry.
1957 */
1958 if (mtu_idx == NMTUS)
1959 mtu_idx--;
1960
1961 /* If we found an MTU which resulted in the requested Data Segment
1962 * Length alignment and that's "not far" from the largest MTU which is
1963 * less than or equal to the maximum MTU, then use that.
1964 */
1965 if (aligned_mtu_idx >= 0 &&
1966 mtu_idx - aligned_mtu_idx <= 1)
1967 mtu_idx = aligned_mtu_idx;
1968
1969 /* If the caller has passed in an MTU Index pointer, pass the
1970 * MTU Index back. Return the MTU value.
1971 */
1972 if (mtu_idxp)
1973 *mtu_idxp = mtu_idx;
1974 return mtus[mtu_idx];
1975}
1976EXPORT_SYMBOL(cxgb4_best_aligned_mtu);
1977
1978/**
Hariprasad S27999802015-09-23 17:19:26 +05301979 * cxgb4_tp_smt_idx - Get the Source Mac Table index for this VI
1980 * @chip: chip type
1981 * @viid: VI id of the given port
1982 *
1983 * Return the SMT index for this VI.
1984 */
1985unsigned int cxgb4_tp_smt_idx(enum chip_type chip, unsigned int viid)
1986{
1987 /* In T4/T5, SMT contains 256 SMAC entries organized in
1988 * 128 rows of 2 entries each.
1989 * In T6, SMT contains 256 SMAC entries in 256 rows.
1990 * TODO: The below code needs to be updated when we add support
1991 * for 256 VFs.
1992 */
1993 if (CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5)
1994 return ((viid & 0x7f) << 1);
1995 else
1996 return (viid & 0x7f);
1997}
1998EXPORT_SYMBOL(cxgb4_tp_smt_idx);
1999
2000/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002001 * cxgb4_port_chan - get the HW channel of a port
2002 * @dev: the net device for the port
2003 *
2004 * Return the HW Tx channel of the given port.
2005 */
2006unsigned int cxgb4_port_chan(const struct net_device *dev)
2007{
2008 return netdev2pinfo(dev)->tx_chan;
2009}
2010EXPORT_SYMBOL(cxgb4_port_chan);
2011
Vipul Pandya881806b2012-05-18 15:29:24 +05302012unsigned int cxgb4_dbfifo_count(const struct net_device *dev, int lpfifo)
2013{
2014 struct adapter *adap = netdev2adap(dev);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002015 u32 v1, v2, lp_count, hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05302016
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302017 v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
2018 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302019 if (is_t4(adap->params.chip)) {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302020 lp_count = LP_COUNT_G(v1);
2021 hp_count = HP_COUNT_G(v1);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002022 } else {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302023 lp_count = LP_COUNT_T5_G(v1);
2024 hp_count = HP_COUNT_T5_G(v2);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002025 }
2026 return lpfifo ? lp_count : hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05302027}
2028EXPORT_SYMBOL(cxgb4_dbfifo_count);
2029
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002030/**
2031 * cxgb4_port_viid - get the VI id of a port
2032 * @dev: the net device for the port
2033 *
2034 * Return the VI id of the given port.
2035 */
2036unsigned int cxgb4_port_viid(const struct net_device *dev)
2037{
2038 return netdev2pinfo(dev)->viid;
2039}
2040EXPORT_SYMBOL(cxgb4_port_viid);
2041
2042/**
2043 * cxgb4_port_idx - get the index of a port
2044 * @dev: the net device for the port
2045 *
2046 * Return the index of the given port.
2047 */
2048unsigned int cxgb4_port_idx(const struct net_device *dev)
2049{
2050 return netdev2pinfo(dev)->port_id;
2051}
2052EXPORT_SYMBOL(cxgb4_port_idx);
2053
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002054void cxgb4_get_tcp_stats(struct pci_dev *pdev, struct tp_tcp_stats *v4,
2055 struct tp_tcp_stats *v6)
2056{
2057 struct adapter *adap = pci_get_drvdata(pdev);
2058
2059 spin_lock(&adap->stats_lock);
2060 t4_tp_get_tcp_stats(adap, v4, v6);
2061 spin_unlock(&adap->stats_lock);
2062}
2063EXPORT_SYMBOL(cxgb4_get_tcp_stats);
2064
2065void cxgb4_iscsi_init(struct net_device *dev, unsigned int tag_mask,
2066 const unsigned int *pgsz_order)
2067{
2068 struct adapter *adap = netdev2adap(dev);
2069
Hariprasad Shenai0d804332015-01-05 16:30:47 +05302070 t4_write_reg(adap, ULP_RX_ISCSI_TAGMASK_A, tag_mask);
2071 t4_write_reg(adap, ULP_RX_ISCSI_PSZ_A, HPZ0_V(pgsz_order[0]) |
2072 HPZ1_V(pgsz_order[1]) | HPZ2_V(pgsz_order[2]) |
2073 HPZ3_V(pgsz_order[3]));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002074}
2075EXPORT_SYMBOL(cxgb4_iscsi_init);
2076
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302077int cxgb4_flush_eq_cache(struct net_device *dev)
2078{
2079 struct adapter *adap = netdev2adap(dev);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302080
Hariprasad Shenai5d700ec2015-06-05 14:24:48 +05302081 return t4_sge_ctxt_flush(adap, adap->mbox);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302082}
2083EXPORT_SYMBOL(cxgb4_flush_eq_cache);
2084
2085static int read_eq_indices(struct adapter *adap, u16 qid, u16 *pidx, u16 *cidx)
2086{
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302087 u32 addr = t4_read_reg(adap, SGE_DBQ_CTXT_BADDR_A) + 24 * qid + 8;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302088 __be64 indices;
2089 int ret;
2090
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05302091 spin_lock(&adap->win0_lock);
2092 ret = t4_memory_rw(adap, 0, MEM_EDC0, addr,
2093 sizeof(indices), (__be32 *)&indices,
2094 T4_MEMORY_READ);
2095 spin_unlock(&adap->win0_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302096 if (!ret) {
Vipul Pandya404d9e32012-10-08 02:59:43 +00002097 *cidx = (be64_to_cpu(indices) >> 25) & 0xffff;
2098 *pidx = (be64_to_cpu(indices) >> 9) & 0xffff;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302099 }
2100 return ret;
2101}
2102
2103int cxgb4_sync_txq_pidx(struct net_device *dev, u16 qid, u16 pidx,
2104 u16 size)
2105{
2106 struct adapter *adap = netdev2adap(dev);
2107 u16 hw_pidx, hw_cidx;
2108 int ret;
2109
2110 ret = read_eq_indices(adap, qid, &hw_pidx, &hw_cidx);
2111 if (ret)
2112 goto out;
2113
2114 if (pidx != hw_pidx) {
2115 u16 delta;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302116 u32 val;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302117
2118 if (pidx >= hw_pidx)
2119 delta = pidx - hw_pidx;
2120 else
2121 delta = size - hw_pidx + pidx;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302122
2123 if (is_t4(adap->params.chip))
2124 val = PIDX_V(delta);
2125 else
2126 val = PIDX_T5_V(delta);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302127 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302128 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2129 QID_V(qid) | val);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302130 }
2131out:
2132 return ret;
2133}
2134EXPORT_SYMBOL(cxgb4_sync_txq_pidx);
2135
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302136int cxgb4_read_tpte(struct net_device *dev, u32 stag, __be32 *tpte)
2137{
2138 struct adapter *adap;
2139 u32 offset, memtype, memaddr;
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05302140 u32 edc0_size, edc1_size, mc0_size, mc1_size, size;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302141 u32 edc0_end, edc1_end, mc0_end, mc1_end;
2142 int ret;
2143
2144 adap = netdev2adap(dev);
2145
2146 offset = ((stag >> 8) * 32) + adap->vres.stag.start;
2147
2148 /* Figure out where the offset lands in the Memory Type/Address scheme.
2149 * This code assumes that the memory is laid out starting at offset 0
2150 * with no breaks as: EDC0, EDC1, MC0, MC1. All cards have both EDC0
2151 * and EDC1. Some cards will have neither MC0 nor MC1, most cards have
2152 * MC0, and some have both MC0 and MC1.
2153 */
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05302154 size = t4_read_reg(adap, MA_EDRAM0_BAR_A);
2155 edc0_size = EDRAM0_SIZE_G(size) << 20;
2156 size = t4_read_reg(adap, MA_EDRAM1_BAR_A);
2157 edc1_size = EDRAM1_SIZE_G(size) << 20;
2158 size = t4_read_reg(adap, MA_EXT_MEMORY0_BAR_A);
2159 mc0_size = EXT_MEM0_SIZE_G(size) << 20;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302160
2161 edc0_end = edc0_size;
2162 edc1_end = edc0_end + edc1_size;
2163 mc0_end = edc1_end + mc0_size;
2164
2165 if (offset < edc0_end) {
2166 memtype = MEM_EDC0;
2167 memaddr = offset;
2168 } else if (offset < edc1_end) {
2169 memtype = MEM_EDC1;
2170 memaddr = offset - edc0_end;
2171 } else {
2172 if (offset < mc0_end) {
2173 memtype = MEM_MC0;
2174 memaddr = offset - edc1_end;
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302175 } else if (is_t5(adap->params.chip)) {
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05302176 size = t4_read_reg(adap, MA_EXT_MEMORY1_BAR_A);
2177 mc1_size = EXT_MEM1_SIZE_G(size) << 20;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302178 mc1_end = mc0_end + mc1_size;
2179 if (offset < mc1_end) {
2180 memtype = MEM_MC1;
2181 memaddr = offset - mc0_end;
2182 } else {
2183 /* offset beyond the end of any memory */
2184 goto err;
2185 }
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302186 } else {
2187 /* T4/T6 only has a single memory channel */
2188 goto err;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302189 }
2190 }
2191
2192 spin_lock(&adap->win0_lock);
2193 ret = t4_memory_rw(adap, 0, memtype, memaddr, 32, tpte, T4_MEMORY_READ);
2194 spin_unlock(&adap->win0_lock);
2195 return ret;
2196
2197err:
2198 dev_err(adap->pdev_dev, "stag %#x, offset %#x out of range\n",
2199 stag, offset);
2200 return -EINVAL;
2201}
2202EXPORT_SYMBOL(cxgb4_read_tpte);
2203
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05302204u64 cxgb4_read_sge_timestamp(struct net_device *dev)
2205{
2206 u32 hi, lo;
2207 struct adapter *adap;
2208
2209 adap = netdev2adap(dev);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302210 lo = t4_read_reg(adap, SGE_TIMESTAMP_LO_A);
2211 hi = TSVAL_G(t4_read_reg(adap, SGE_TIMESTAMP_HI_A));
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05302212
2213 return ((u64)hi << 32) | (u64)lo;
2214}
2215EXPORT_SYMBOL(cxgb4_read_sge_timestamp);
2216
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302217int cxgb4_bar2_sge_qregs(struct net_device *dev,
2218 unsigned int qid,
2219 enum cxgb4_bar2_qtype qtype,
Hariprasad S66cf1882015-06-09 18:23:11 +05302220 int user,
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302221 u64 *pbar2_qoffset,
2222 unsigned int *pbar2_qid)
2223{
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302224 return t4_bar2_sge_qregs(netdev2adap(dev),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302225 qid,
2226 (qtype == CXGB4_BAR2_QTYPE_EGRESS
2227 ? T4_BAR2_QTYPE_EGRESS
2228 : T4_BAR2_QTYPE_INGRESS),
Hariprasad S66cf1882015-06-09 18:23:11 +05302229 user,
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302230 pbar2_qoffset,
2231 pbar2_qid);
2232}
2233EXPORT_SYMBOL(cxgb4_bar2_sge_qregs);
2234
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002235static struct pci_driver cxgb4_driver;
2236
2237static void check_neigh_update(struct neighbour *neigh)
2238{
2239 const struct device *parent;
2240 const struct net_device *netdev = neigh->dev;
2241
2242 if (netdev->priv_flags & IFF_802_1Q_VLAN)
2243 netdev = vlan_dev_real_dev(netdev);
2244 parent = netdev->dev.parent;
2245 if (parent && parent->driver == &cxgb4_driver.driver)
2246 t4_l2t_update(dev_get_drvdata(parent), neigh);
2247}
2248
2249static int netevent_cb(struct notifier_block *nb, unsigned long event,
2250 void *data)
2251{
2252 switch (event) {
2253 case NETEVENT_NEIGH_UPDATE:
2254 check_neigh_update(data);
2255 break;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002256 case NETEVENT_REDIRECT:
2257 default:
2258 break;
2259 }
2260 return 0;
2261}
2262
2263static bool netevent_registered;
2264static struct notifier_block cxgb4_netevent_nb = {
2265 .notifier_call = netevent_cb
2266};
2267
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302268static void drain_db_fifo(struct adapter *adap, int usecs)
2269{
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002270 u32 v1, v2, lp_count, hp_count;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302271
2272 do {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302273 v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
2274 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302275 if (is_t4(adap->params.chip)) {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302276 lp_count = LP_COUNT_G(v1);
2277 hp_count = HP_COUNT_G(v1);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002278 } else {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302279 lp_count = LP_COUNT_T5_G(v1);
2280 hp_count = HP_COUNT_T5_G(v2);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002281 }
2282
2283 if (lp_count == 0 && hp_count == 0)
2284 break;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302285 set_current_state(TASK_UNINTERRUPTIBLE);
2286 schedule_timeout(usecs_to_jiffies(usecs));
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302287 } while (1);
2288}
2289
2290static void disable_txq_db(struct sge_txq *q)
2291{
Steve Wise05eb2382014-03-14 21:52:08 +05302292 unsigned long flags;
2293
2294 spin_lock_irqsave(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302295 q->db_disabled = 1;
Steve Wise05eb2382014-03-14 21:52:08 +05302296 spin_unlock_irqrestore(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302297}
2298
Steve Wise05eb2382014-03-14 21:52:08 +05302299static void enable_txq_db(struct adapter *adap, struct sge_txq *q)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302300{
2301 spin_lock_irq(&q->db_lock);
Steve Wise05eb2382014-03-14 21:52:08 +05302302 if (q->db_pidx_inc) {
2303 /* Make sure that all writes to the TX descriptors
2304 * are committed before we tell HW about them.
2305 */
2306 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302307 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2308 QID_V(q->cntxt_id) | PIDX_V(q->db_pidx_inc));
Steve Wise05eb2382014-03-14 21:52:08 +05302309 q->db_pidx_inc = 0;
2310 }
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302311 q->db_disabled = 0;
2312 spin_unlock_irq(&q->db_lock);
2313}
2314
2315static void disable_dbs(struct adapter *adap)
2316{
2317 int i;
2318
2319 for_each_ethrxq(&adap->sge, i)
2320 disable_txq_db(&adap->sge.ethtxq[i].q);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302321 for_each_iscsirxq(&adap->sge, i)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302322 disable_txq_db(&adap->sge.ofldtxq[i].q);
2323 for_each_port(adap, i)
2324 disable_txq_db(&adap->sge.ctrlq[i].q);
2325}
2326
2327static void enable_dbs(struct adapter *adap)
2328{
2329 int i;
2330
2331 for_each_ethrxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05302332 enable_txq_db(adap, &adap->sge.ethtxq[i].q);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302333 for_each_iscsirxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05302334 enable_txq_db(adap, &adap->sge.ofldtxq[i].q);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302335 for_each_port(adap, i)
Steve Wise05eb2382014-03-14 21:52:08 +05302336 enable_txq_db(adap, &adap->sge.ctrlq[i].q);
2337}
2338
2339static void notify_rdma_uld(struct adapter *adap, enum cxgb4_control cmd)
2340{
2341 if (adap->uld_handle[CXGB4_ULD_RDMA])
2342 ulds[CXGB4_ULD_RDMA].control(adap->uld_handle[CXGB4_ULD_RDMA],
2343 cmd);
2344}
2345
2346static void process_db_full(struct work_struct *work)
2347{
2348 struct adapter *adap;
2349
2350 adap = container_of(work, struct adapter, db_full_task);
2351
2352 drain_db_fifo(adap, dbfifo_drain_delay);
2353 enable_dbs(adap);
2354 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302355 if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
2356 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2357 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F,
2358 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F);
2359 else
2360 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2361 DBFIFO_LP_INT_F, DBFIFO_LP_INT_F);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302362}
2363
2364static void sync_txq_pidx(struct adapter *adap, struct sge_txq *q)
2365{
2366 u16 hw_pidx, hw_cidx;
2367 int ret;
2368
Steve Wise05eb2382014-03-14 21:52:08 +05302369 spin_lock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302370 ret = read_eq_indices(adap, (u16)q->cntxt_id, &hw_pidx, &hw_cidx);
2371 if (ret)
2372 goto out;
2373 if (q->db_pidx != hw_pidx) {
2374 u16 delta;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302375 u32 val;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302376
2377 if (q->db_pidx >= hw_pidx)
2378 delta = q->db_pidx - hw_pidx;
2379 else
2380 delta = q->size - hw_pidx + q->db_pidx;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302381
2382 if (is_t4(adap->params.chip))
2383 val = PIDX_V(delta);
2384 else
2385 val = PIDX_T5_V(delta);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302386 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302387 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2388 QID_V(q->cntxt_id) | val);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302389 }
2390out:
2391 q->db_disabled = 0;
Steve Wise05eb2382014-03-14 21:52:08 +05302392 q->db_pidx_inc = 0;
2393 spin_unlock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302394 if (ret)
2395 CH_WARN(adap, "DB drop recovery failed.\n");
2396}
2397static void recover_all_queues(struct adapter *adap)
2398{
2399 int i;
2400
2401 for_each_ethrxq(&adap->sge, i)
2402 sync_txq_pidx(adap, &adap->sge.ethtxq[i].q);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302403 for_each_iscsirxq(&adap->sge, i)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302404 sync_txq_pidx(adap, &adap->sge.ofldtxq[i].q);
2405 for_each_port(adap, i)
2406 sync_txq_pidx(adap, &adap->sge.ctrlq[i].q);
2407}
2408
Vipul Pandya881806b2012-05-18 15:29:24 +05302409static void process_db_drop(struct work_struct *work)
2410{
2411 struct adapter *adap;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302412
Vipul Pandya881806b2012-05-18 15:29:24 +05302413 adap = container_of(work, struct adapter, db_drop_task);
2414
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302415 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05302416 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002417 notify_rdma_uld(adap, CXGB4_CONTROL_DB_DROP);
Steve Wise05eb2382014-03-14 21:52:08 +05302418 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002419 recover_all_queues(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05302420 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002421 enable_dbs(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05302422 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302423 } else if (is_t5(adap->params.chip)) {
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002424 u32 dropped_db = t4_read_reg(adap, 0x010ac);
2425 u16 qid = (dropped_db >> 15) & 0x1ffff;
2426 u16 pidx_inc = dropped_db & 0x1fff;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302427 u64 bar2_qoffset;
2428 unsigned int bar2_qid;
2429 int ret;
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002430
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302431 ret = t4_bar2_sge_qregs(adap, qid, T4_BAR2_QTYPE_EGRESS,
Linus Torvaldse0456712015-06-24 16:49:49 -07002432 0, &bar2_qoffset, &bar2_qid);
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302433 if (ret)
2434 dev_err(adap->pdev_dev, "doorbell drop recovery: "
2435 "qid=%d, pidx_inc=%d\n", qid, pidx_inc);
2436 else
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302437 writel(PIDX_T5_V(pidx_inc) | QID_V(bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302438 adap->bar2 + bar2_qoffset + SGE_UDB_KDOORBELL);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002439
2440 /* Re-enable BAR2 WC */
2441 t4_set_reg_field(adap, 0x10b0, 1<<15, 1<<15);
2442 }
2443
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302444 if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
2445 t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, DROPPED_DB_F, 0);
Vipul Pandya881806b2012-05-18 15:29:24 +05302446}
2447
2448void t4_db_full(struct adapter *adap)
2449{
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302450 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05302451 disable_dbs(adap);
2452 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302453 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2454 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F, 0);
Anish Bhatt29aaee62014-08-20 13:44:06 -07002455 queue_work(adap->workq, &adap->db_full_task);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002456 }
Vipul Pandya881806b2012-05-18 15:29:24 +05302457}
2458
2459void t4_db_dropped(struct adapter *adap)
2460{
Steve Wise05eb2382014-03-14 21:52:08 +05302461 if (is_t4(adap->params.chip)) {
2462 disable_dbs(adap);
2463 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
2464 }
Anish Bhatt29aaee62014-08-20 13:44:06 -07002465 queue_work(adap->workq, &adap->db_drop_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05302466}
2467
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002468static void uld_attach(struct adapter *adap, unsigned int uld)
2469{
2470 void *handle;
2471 struct cxgb4_lld_info lli;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002472 unsigned short i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002473
2474 lli.pdev = adap->pdev;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302475 lli.pf = adap->pf;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002476 lli.l2t = adap->l2t;
2477 lli.tids = &adap->tids;
2478 lli.ports = adap->port;
2479 lli.vr = &adap->vres;
2480 lli.mtus = adap->params.mtus;
2481 if (uld == CXGB4_ULD_RDMA) {
2482 lli.rxq_ids = adap->sge.rdma_rxq;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05302483 lli.ciq_ids = adap->sge.rdma_ciq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002484 lli.nrxq = adap->sge.rdmaqs;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05302485 lli.nciq = adap->sge.rdmaciqs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002486 } else if (uld == CXGB4_ULD_ISCSI) {
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302487 lli.rxq_ids = adap->sge.iscsi_rxq;
2488 lli.nrxq = adap->sge.iscsiqsets;
Varun Prakashf2692d12016-02-14 23:02:40 +05302489 } else if (uld == CXGB4_ULD_ISCSIT) {
2490 lli.rxq_ids = adap->sge.iscsit_rxq;
2491 lli.nrxq = adap->sge.niscsitq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002492 }
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302493 lli.ntxq = adap->sge.iscsiqsets;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002494 lli.nchan = adap->params.nports;
2495 lli.nports = adap->params.nports;
2496 lli.wr_cred = adap->params.ofldq_wr_cred;
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302497 lli.adapter_type = adap->params.chip;
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05302498 lli.iscsi_iolen = MAXRXDATA_G(t4_read_reg(adap, TP_PARA_REG2_A));
Varun Prakash7714cb9e2016-02-14 23:07:39 +05302499 lli.iscsi_tagmask = t4_read_reg(adap, ULP_RX_ISCSI_TAGMASK_A);
2500 lli.iscsi_pgsz_order = t4_read_reg(adap, ULP_RX_ISCSI_PSZ_A);
2501 lli.iscsi_llimit = t4_read_reg(adap, ULP_RX_ISCSI_LLIMIT_A);
2502 lli.iscsi_ppm = &adap->iscsi_ppm;
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05302503 lli.cclk_ps = 1000000000 / adap->params.vpd.cclk;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302504 lli.udb_density = 1 << adap->params.sge.eq_qpp;
2505 lli.ucq_density = 1 << adap->params.sge.iq_qpp;
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05302506 lli.filt_mode = adap->params.tp.vlan_pri_map;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002507 /* MODQ_REQ_MAP sets queues 0-3 to chan 0-3 */
2508 for (i = 0; i < NCHAN; i++)
2509 lli.tx_modq[i] = i;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302510 lli.gts_reg = adap->regs + MYPF_REG(SGE_PF_GTS_A);
2511 lli.db_reg = adap->regs + MYPF_REG(SGE_PF_KDOORBELL_A);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002512 lli.fw_vers = adap->params.fw_vers;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302513 lli.dbfifo_int_thresh = dbfifo_int_thresh;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +05302514 lli.sge_ingpadboundary = adap->sge.fl_align;
2515 lli.sge_egrstatuspagesize = adap->sge.stat_len;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002516 lli.sge_pktshift = adap->sge.pktshift;
2517 lli.enable_fw_ofld_conn = adap->flags & FW_OFLD_CONN;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05302518 lli.max_ordird_qp = adap->params.max_ordird_qp;
2519 lli.max_ird_adapter = adap->params.max_ird_adapter;
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05302520 lli.ulptx_memwrite_dsgl = adap->params.ulptx_memwrite_dsgl;
Hariprasad Shenai982b81e2015-05-05 14:59:54 +05302521 lli.nodeid = dev_to_node(adap->pdev_dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002522
2523 handle = ulds[uld].add(&lli);
2524 if (IS_ERR(handle)) {
2525 dev_warn(adap->pdev_dev,
2526 "could not attach to the %s driver, error %ld\n",
2527 uld_str[uld], PTR_ERR(handle));
2528 return;
2529 }
2530
2531 adap->uld_handle[uld] = handle;
2532
2533 if (!netevent_registered) {
2534 register_netevent_notifier(&cxgb4_netevent_nb);
2535 netevent_registered = true;
2536 }
Dimitris Michailidise29f5db2010-05-18 10:07:13 +00002537
2538 if (adap->flags & FULL_INIT_DONE)
2539 ulds[uld].state_change(handle, CXGB4_STATE_UP);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002540}
2541
2542static void attach_ulds(struct adapter *adap)
2543{
2544 unsigned int i;
2545
Vipul Pandya01bcca62013-07-04 16:10:46 +05302546 spin_lock(&adap_rcu_lock);
2547 list_add_tail_rcu(&adap->rcu_node, &adap_rcu_list);
2548 spin_unlock(&adap_rcu_lock);
2549
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002550 mutex_lock(&uld_mutex);
2551 list_add_tail(&adap->list_node, &adapter_list);
2552 for (i = 0; i < CXGB4_ULD_MAX; i++)
2553 if (ulds[i].add)
2554 uld_attach(adap, i);
2555 mutex_unlock(&uld_mutex);
2556}
2557
2558static void detach_ulds(struct adapter *adap)
2559{
2560 unsigned int i;
2561
2562 mutex_lock(&uld_mutex);
2563 list_del(&adap->list_node);
2564 for (i = 0; i < CXGB4_ULD_MAX; i++)
2565 if (adap->uld_handle[i]) {
2566 ulds[i].state_change(adap->uld_handle[i],
2567 CXGB4_STATE_DETACH);
2568 adap->uld_handle[i] = NULL;
2569 }
2570 if (netevent_registered && list_empty(&adapter_list)) {
2571 unregister_netevent_notifier(&cxgb4_netevent_nb);
2572 netevent_registered = false;
2573 }
2574 mutex_unlock(&uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302575
2576 spin_lock(&adap_rcu_lock);
2577 list_del_rcu(&adap->rcu_node);
2578 spin_unlock(&adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002579}
2580
2581static void notify_ulds(struct adapter *adap, enum cxgb4_state new_state)
2582{
2583 unsigned int i;
2584
2585 mutex_lock(&uld_mutex);
2586 for (i = 0; i < CXGB4_ULD_MAX; i++)
2587 if (adap->uld_handle[i])
2588 ulds[i].state_change(adap->uld_handle[i], new_state);
2589 mutex_unlock(&uld_mutex);
2590}
2591
2592/**
2593 * cxgb4_register_uld - register an upper-layer driver
2594 * @type: the ULD type
2595 * @p: the ULD methods
2596 *
2597 * Registers an upper-layer driver with this driver and notifies the ULD
2598 * about any presently available devices that support its type. Returns
2599 * %-EBUSY if a ULD of the same type is already registered.
2600 */
2601int cxgb4_register_uld(enum cxgb4_uld type, const struct cxgb4_uld_info *p)
2602{
2603 int ret = 0;
2604 struct adapter *adap;
2605
2606 if (type >= CXGB4_ULD_MAX)
2607 return -EINVAL;
2608 mutex_lock(&uld_mutex);
2609 if (ulds[type].add) {
2610 ret = -EBUSY;
2611 goto out;
2612 }
2613 ulds[type] = *p;
2614 list_for_each_entry(adap, &adapter_list, list_node)
2615 uld_attach(adap, type);
2616out: mutex_unlock(&uld_mutex);
2617 return ret;
2618}
2619EXPORT_SYMBOL(cxgb4_register_uld);
2620
2621/**
2622 * cxgb4_unregister_uld - unregister an upper-layer driver
2623 * @type: the ULD type
2624 *
2625 * Unregisters an existing upper-layer driver.
2626 */
2627int cxgb4_unregister_uld(enum cxgb4_uld type)
2628{
2629 struct adapter *adap;
2630
2631 if (type >= CXGB4_ULD_MAX)
2632 return -EINVAL;
2633 mutex_lock(&uld_mutex);
2634 list_for_each_entry(adap, &adapter_list, list_node)
2635 adap->uld_handle[type] = NULL;
2636 ulds[type].add = NULL;
2637 mutex_unlock(&uld_mutex);
2638 return 0;
2639}
2640EXPORT_SYMBOL(cxgb4_unregister_uld);
2641
Anish Bhatt1bb60372014-10-14 20:07:22 -07002642#if IS_ENABLED(CONFIG_IPV6)
Anish Bhattb5a02f52015-01-14 15:17:34 -08002643static int cxgb4_inet6addr_handler(struct notifier_block *this,
2644 unsigned long event, void *data)
Vipul Pandya01bcca62013-07-04 16:10:46 +05302645{
Anish Bhattb5a02f52015-01-14 15:17:34 -08002646 struct inet6_ifaddr *ifa = data;
2647 struct net_device *event_dev = ifa->idev->dev;
2648 const struct device *parent = NULL;
2649#if IS_ENABLED(CONFIG_BONDING)
Vipul Pandya01bcca62013-07-04 16:10:46 +05302650 struct adapter *adap;
Anish Bhattb5a02f52015-01-14 15:17:34 -08002651#endif
2652 if (event_dev->priv_flags & IFF_802_1Q_VLAN)
2653 event_dev = vlan_dev_real_dev(event_dev);
2654#if IS_ENABLED(CONFIG_BONDING)
2655 if (event_dev->flags & IFF_MASTER) {
2656 list_for_each_entry(adap, &adapter_list, list_node) {
2657 switch (event) {
2658 case NETDEV_UP:
2659 cxgb4_clip_get(adap->port[0],
2660 (const u32 *)ifa, 1);
2661 break;
2662 case NETDEV_DOWN:
2663 cxgb4_clip_release(adap->port[0],
2664 (const u32 *)ifa, 1);
2665 break;
2666 default:
2667 break;
2668 }
2669 }
2670 return NOTIFY_OK;
2671 }
2672#endif
Vipul Pandya01bcca62013-07-04 16:10:46 +05302673
Anish Bhattb5a02f52015-01-14 15:17:34 -08002674 if (event_dev)
2675 parent = event_dev->dev.parent;
Vipul Pandya01bcca62013-07-04 16:10:46 +05302676
Anish Bhattb5a02f52015-01-14 15:17:34 -08002677 if (parent && parent->driver == &cxgb4_driver.driver) {
Vipul Pandya01bcca62013-07-04 16:10:46 +05302678 switch (event) {
2679 case NETDEV_UP:
Anish Bhattb5a02f52015-01-14 15:17:34 -08002680 cxgb4_clip_get(event_dev, (const u32 *)ifa, 1);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302681 break;
2682 case NETDEV_DOWN:
Anish Bhattb5a02f52015-01-14 15:17:34 -08002683 cxgb4_clip_release(event_dev, (const u32 *)ifa, 1);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302684 break;
2685 default:
2686 break;
2687 }
2688 }
Anish Bhattb5a02f52015-01-14 15:17:34 -08002689 return NOTIFY_OK;
Vipul Pandya01bcca62013-07-04 16:10:46 +05302690}
2691
Anish Bhattb5a02f52015-01-14 15:17:34 -08002692static bool inet6addr_registered;
Vipul Pandya01bcca62013-07-04 16:10:46 +05302693static struct notifier_block cxgb4_inet6addr_notifier = {
2694 .notifier_call = cxgb4_inet6addr_handler
2695};
2696
Vipul Pandya01bcca62013-07-04 16:10:46 +05302697static void update_clip(const struct adapter *adap)
2698{
2699 int i;
2700 struct net_device *dev;
2701 int ret;
2702
2703 rcu_read_lock();
2704
2705 for (i = 0; i < MAX_NPORTS; i++) {
2706 dev = adap->port[i];
2707 ret = 0;
2708
2709 if (dev)
Anish Bhattb5a02f52015-01-14 15:17:34 -08002710 ret = cxgb4_update_root_dev_clip(dev);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302711
2712 if (ret < 0)
2713 break;
2714 }
2715 rcu_read_unlock();
2716}
Anish Bhatt1bb60372014-10-14 20:07:22 -07002717#endif /* IS_ENABLED(CONFIG_IPV6) */
Vipul Pandya01bcca62013-07-04 16:10:46 +05302718
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002719/**
2720 * cxgb_up - enable the adapter
2721 * @adap: adapter being enabled
2722 *
2723 * Called when the first port is enabled, this function performs the
2724 * actions necessary to make an adapter operational, such as completing
2725 * the initialization of HW modules, and enabling interrupts.
2726 *
2727 * Must be called with the rtnl lock held.
2728 */
2729static int cxgb_up(struct adapter *adap)
2730{
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002731 int err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002732
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002733 err = setup_sge_queues(adap);
2734 if (err)
2735 goto out;
2736 err = setup_rss(adap);
2737 if (err)
2738 goto freeq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002739
2740 if (adap->flags & USING_MSIX) {
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002741 name_msix_vecs(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002742 err = request_irq(adap->msix_info[0].vec, t4_nondata_intr, 0,
2743 adap->msix_info[0].desc, adap);
2744 if (err)
2745 goto irq_err;
2746
2747 err = request_msix_queue_irqs(adap);
2748 if (err) {
2749 free_irq(adap->msix_info[0].vec, adap);
2750 goto irq_err;
2751 }
2752 } else {
2753 err = request_irq(adap->pdev->irq, t4_intr_handler(adap),
2754 (adap->flags & USING_MSI) ? 0 : IRQF_SHARED,
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00002755 adap->port[0]->name, adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002756 if (err)
2757 goto irq_err;
2758 }
2759 enable_rx(adap);
2760 t4_sge_start(adap);
2761 t4_intr_enable(adap);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002762 adap->flags |= FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002763 notify_ulds(adap, CXGB4_STATE_UP);
Anish Bhatt1bb60372014-10-14 20:07:22 -07002764#if IS_ENABLED(CONFIG_IPV6)
Vipul Pandya01bcca62013-07-04 16:10:46 +05302765 update_clip(adap);
Anish Bhatt1bb60372014-10-14 20:07:22 -07002766#endif
Hariprasad Shenaifc08a012016-02-16 10:07:09 +05302767 /* Initialize hash mac addr list*/
2768 INIT_LIST_HEAD(&adap->mac_hlist);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002769 out:
2770 return err;
2771 irq_err:
2772 dev_err(adap->pdev_dev, "request_irq failed, err %d\n", err);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002773 freeq:
2774 t4_free_sge_resources(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002775 goto out;
2776}
2777
2778static void cxgb_down(struct adapter *adapter)
2779{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002780 cancel_work_sync(&adapter->tid_release_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05302781 cancel_work_sync(&adapter->db_full_task);
2782 cancel_work_sync(&adapter->db_drop_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002783 adapter->tid_release_task_busy = false;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00002784 adapter->tid_release_head = NULL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002785
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002786 t4_sge_stop(adapter);
2787 t4_free_sge_resources(adapter);
2788 adapter->flags &= ~FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002789}
2790
2791/*
2792 * net_device operations
2793 */
2794static int cxgb_open(struct net_device *dev)
2795{
2796 int err;
2797 struct port_info *pi = netdev_priv(dev);
2798 struct adapter *adapter = pi->adapter;
2799
Dimitris Michailidis6a3c8692011-01-19 15:29:05 +00002800 netif_carrier_off(dev);
2801
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002802 if (!(adapter->flags & FULL_INIT_DONE)) {
2803 err = cxgb_up(adapter);
2804 if (err < 0)
2805 return err;
2806 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002807
Dimitris Michailidisf68707b2010-06-18 10:05:32 +00002808 err = link_start(dev);
2809 if (!err)
2810 netif_tx_start_all_queues(dev);
2811 return err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002812}
2813
2814static int cxgb_close(struct net_device *dev)
2815{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002816 struct port_info *pi = netdev_priv(dev);
2817 struct adapter *adapter = pi->adapter;
2818
2819 netif_tx_stop_all_queues(dev);
2820 netif_carrier_off(dev);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302821 return t4_enable_vi(adapter, adapter->pf, pi->viid, false, false);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002822}
2823
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00002824/* Return an error number if the indicated filter isn't writable ...
2825 */
2826static int writable_filter(struct filter_entry *f)
2827{
2828 if (f->locked)
2829 return -EPERM;
2830 if (f->pending)
2831 return -EBUSY;
2832
2833 return 0;
2834}
2835
2836/* Delete the filter at the specified index (if valid). The checks for all
2837 * the common problems with doing this like the filter being locked, currently
2838 * pending in another operation, etc.
2839 */
2840static int delete_filter(struct adapter *adapter, unsigned int fidx)
2841{
2842 struct filter_entry *f;
2843 int ret;
2844
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002845 if (fidx >= adapter->tids.nftids + adapter->tids.nsftids)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00002846 return -EINVAL;
2847
2848 f = &adapter->tids.ftid_tab[fidx];
2849 ret = writable_filter(f);
2850 if (ret)
2851 return ret;
2852 if (f->valid)
2853 return del_filter_wr(adapter, fidx);
2854
2855 return 0;
2856}
2857
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002858int cxgb4_create_server_filter(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00002859 __be32 sip, __be16 sport, __be16 vlan,
2860 unsigned int queue, unsigned char port, unsigned char mask)
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002861{
2862 int ret;
2863 struct filter_entry *f;
2864 struct adapter *adap;
2865 int i;
2866 u8 *val;
2867
2868 adap = netdev2adap(dev);
2869
Vipul Pandya1cab7752012-12-10 09:30:55 +00002870 /* Adjust stid to correct filter index */
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05302871 stid -= adap->tids.sftid_base;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002872 stid += adap->tids.nftids;
2873
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002874 /* Check to make sure the filter requested is writable ...
2875 */
2876 f = &adap->tids.ftid_tab[stid];
2877 ret = writable_filter(f);
2878 if (ret)
2879 return ret;
2880
2881 /* Clear out any old resources being used by the filter before
2882 * we start constructing the new filter.
2883 */
2884 if (f->valid)
2885 clear_filter(adap, f);
2886
2887 /* Clear out filter specifications */
2888 memset(&f->fs, 0, sizeof(struct ch_filter_specification));
2889 f->fs.val.lport = cpu_to_be16(sport);
2890 f->fs.mask.lport = ~0;
2891 val = (u8 *)&sip;
Vipul Pandya793dad92012-12-10 09:30:56 +00002892 if ((val[0] | val[1] | val[2] | val[3]) != 0) {
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002893 for (i = 0; i < 4; i++) {
2894 f->fs.val.lip[i] = val[i];
2895 f->fs.mask.lip[i] = ~0;
2896 }
Hariprasad Shenai0d804332015-01-05 16:30:47 +05302897 if (adap->params.tp.vlan_pri_map & PORT_F) {
Vipul Pandya793dad92012-12-10 09:30:56 +00002898 f->fs.val.iport = port;
2899 f->fs.mask.iport = mask;
2900 }
2901 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002902
Hariprasad Shenai0d804332015-01-05 16:30:47 +05302903 if (adap->params.tp.vlan_pri_map & PROTOCOL_F) {
Kumar Sanghvi7c89e552013-12-18 16:38:20 +05302904 f->fs.val.proto = IPPROTO_TCP;
2905 f->fs.mask.proto = ~0;
2906 }
2907
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002908 f->fs.dirsteer = 1;
2909 f->fs.iq = queue;
2910 /* Mark filter as locked */
2911 f->locked = 1;
2912 f->fs.rpttid = 1;
2913
2914 ret = set_filter_wr(adap, stid);
2915 if (ret) {
2916 clear_filter(adap, f);
2917 return ret;
2918 }
2919
2920 return 0;
2921}
2922EXPORT_SYMBOL(cxgb4_create_server_filter);
2923
2924int cxgb4_remove_server_filter(const struct net_device *dev, unsigned int stid,
2925 unsigned int queue, bool ipv6)
2926{
2927 int ret;
2928 struct filter_entry *f;
2929 struct adapter *adap;
2930
2931 adap = netdev2adap(dev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002932
2933 /* Adjust stid to correct filter index */
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05302934 stid -= adap->tids.sftid_base;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002935 stid += adap->tids.nftids;
2936
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002937 f = &adap->tids.ftid_tab[stid];
2938 /* Unlock the filter */
2939 f->locked = 0;
2940
2941 ret = delete_filter(adap, stid);
2942 if (ret)
2943 return ret;
2944
2945 return 0;
2946}
2947EXPORT_SYMBOL(cxgb4_remove_server_filter);
2948
Dimitris Michailidisf5152c92010-07-07 16:11:25 +00002949static struct rtnl_link_stats64 *cxgb_get_stats(struct net_device *dev,
2950 struct rtnl_link_stats64 *ns)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002951{
2952 struct port_stats stats;
2953 struct port_info *p = netdev_priv(dev);
2954 struct adapter *adapter = p->adapter;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002955
Gavin Shan9fe6cb52014-01-23 12:27:35 +08002956 /* Block retrieving statistics during EEH error
2957 * recovery. Otherwise, the recovery might fail
2958 * and the PCI device will be removed permanently
2959 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002960 spin_lock(&adapter->stats_lock);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08002961 if (!netif_device_present(dev)) {
2962 spin_unlock(&adapter->stats_lock);
2963 return ns;
2964 }
Hariprasad Shenaia4cfd922015-06-03 21:04:39 +05302965 t4_get_port_stats_offset(adapter, p->tx_chan, &stats,
2966 &p->stats_base);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002967 spin_unlock(&adapter->stats_lock);
2968
2969 ns->tx_bytes = stats.tx_octets;
2970 ns->tx_packets = stats.tx_frames;
2971 ns->rx_bytes = stats.rx_octets;
2972 ns->rx_packets = stats.rx_frames;
2973 ns->multicast = stats.rx_mcast_frames;
2974
2975 /* detailed rx_errors */
2976 ns->rx_length_errors = stats.rx_jabber + stats.rx_too_long +
2977 stats.rx_runt;
2978 ns->rx_over_errors = 0;
2979 ns->rx_crc_errors = stats.rx_fcs_err;
2980 ns->rx_frame_errors = stats.rx_symbol_err;
2981 ns->rx_fifo_errors = stats.rx_ovflow0 + stats.rx_ovflow1 +
2982 stats.rx_ovflow2 + stats.rx_ovflow3 +
2983 stats.rx_trunc0 + stats.rx_trunc1 +
2984 stats.rx_trunc2 + stats.rx_trunc3;
2985 ns->rx_missed_errors = 0;
2986
2987 /* detailed tx_errors */
2988 ns->tx_aborted_errors = 0;
2989 ns->tx_carrier_errors = 0;
2990 ns->tx_fifo_errors = 0;
2991 ns->tx_heartbeat_errors = 0;
2992 ns->tx_window_errors = 0;
2993
2994 ns->tx_errors = stats.tx_error_frames;
2995 ns->rx_errors = stats.rx_symbol_err + stats.rx_fcs_err +
2996 ns->rx_length_errors + stats.rx_len_err + ns->rx_fifo_errors;
2997 return ns;
2998}
2999
3000static int cxgb_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
3001{
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003002 unsigned int mbox;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003003 int ret = 0, prtad, devad;
3004 struct port_info *pi = netdev_priv(dev);
3005 struct mii_ioctl_data *data = (struct mii_ioctl_data *)&req->ifr_data;
3006
3007 switch (cmd) {
3008 case SIOCGMIIPHY:
3009 if (pi->mdio_addr < 0)
3010 return -EOPNOTSUPP;
3011 data->phy_id = pi->mdio_addr;
3012 break;
3013 case SIOCGMIIREG:
3014 case SIOCSMIIREG:
3015 if (mdio_phy_id_is_c45(data->phy_id)) {
3016 prtad = mdio_phy_id_prtad(data->phy_id);
3017 devad = mdio_phy_id_devad(data->phy_id);
3018 } else if (data->phy_id < 32) {
3019 prtad = data->phy_id;
3020 devad = 0;
3021 data->reg_num &= 0x1f;
3022 } else
3023 return -EINVAL;
3024
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303025 mbox = pi->adapter->pf;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003026 if (cmd == SIOCGMIIREG)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003027 ret = t4_mdio_rd(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003028 data->reg_num, &data->val_out);
3029 else
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003030 ret = t4_mdio_wr(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003031 data->reg_num, data->val_in);
3032 break;
Hariprasad Shenai5e2a5eb2015-09-28 10:26:53 +05303033 case SIOCGHWTSTAMP:
3034 return copy_to_user(req->ifr_data, &pi->tstamp_config,
3035 sizeof(pi->tstamp_config)) ?
3036 -EFAULT : 0;
3037 case SIOCSHWTSTAMP:
3038 if (copy_from_user(&pi->tstamp_config, req->ifr_data,
3039 sizeof(pi->tstamp_config)))
3040 return -EFAULT;
3041
3042 switch (pi->tstamp_config.rx_filter) {
3043 case HWTSTAMP_FILTER_NONE:
3044 pi->rxtstamp = false;
3045 break;
3046 case HWTSTAMP_FILTER_ALL:
3047 pi->rxtstamp = true;
3048 break;
3049 default:
3050 pi->tstamp_config.rx_filter = HWTSTAMP_FILTER_NONE;
3051 return -ERANGE;
3052 }
3053
3054 return copy_to_user(req->ifr_data, &pi->tstamp_config,
3055 sizeof(pi->tstamp_config)) ?
3056 -EFAULT : 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003057 default:
3058 return -EOPNOTSUPP;
3059 }
3060 return ret;
3061}
3062
3063static void cxgb_set_rxmode(struct net_device *dev)
3064{
3065 /* unfortunately we can't return errors to the stack */
3066 set_rxmode(dev, -1, false);
3067}
3068
3069static int cxgb_change_mtu(struct net_device *dev, int new_mtu)
3070{
3071 int ret;
3072 struct port_info *pi = netdev_priv(dev);
3073
3074 if (new_mtu < 81 || new_mtu > MAX_MTU) /* accommodate SACK */
3075 return -EINVAL;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303076 ret = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, new_mtu, -1,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003077 -1, -1, -1, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003078 if (!ret)
3079 dev->mtu = new_mtu;
3080 return ret;
3081}
3082
3083static int cxgb_set_mac_addr(struct net_device *dev, void *p)
3084{
3085 int ret;
3086 struct sockaddr *addr = p;
3087 struct port_info *pi = netdev_priv(dev);
3088
3089 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00003090 return -EADDRNOTAVAIL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003091
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303092 ret = t4_change_mac(pi->adapter, pi->adapter->pf, pi->viid,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003093 pi->xact_addr_filt, addr->sa_data, true, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003094 if (ret < 0)
3095 return ret;
3096
3097 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3098 pi->xact_addr_filt = ret;
3099 return 0;
3100}
3101
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003102#ifdef CONFIG_NET_POLL_CONTROLLER
3103static void cxgb_netpoll(struct net_device *dev)
3104{
3105 struct port_info *pi = netdev_priv(dev);
3106 struct adapter *adap = pi->adapter;
3107
3108 if (adap->flags & USING_MSIX) {
3109 int i;
3110 struct sge_eth_rxq *rx = &adap->sge.ethrxq[pi->first_qset];
3111
3112 for (i = pi->nqsets; i; i--, rx++)
3113 t4_sge_intr_msix(0, &rx->rspq);
3114 } else
3115 t4_intr_handler(adap)(0, adap);
3116}
3117#endif
3118
3119static const struct net_device_ops cxgb4_netdev_ops = {
3120 .ndo_open = cxgb_open,
3121 .ndo_stop = cxgb_close,
3122 .ndo_start_xmit = t4_eth_xmit,
Anish Bhatt688848b2014-06-19 21:37:13 -07003123 .ndo_select_queue = cxgb_select_queue,
Dimitris Michailidis9be793b2010-06-18 10:05:31 +00003124 .ndo_get_stats64 = cxgb_get_stats,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003125 .ndo_set_rx_mode = cxgb_set_rxmode,
3126 .ndo_set_mac_address = cxgb_set_mac_addr,
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00003127 .ndo_set_features = cxgb_set_features,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003128 .ndo_validate_addr = eth_validate_addr,
3129 .ndo_do_ioctl = cxgb_ioctl,
3130 .ndo_change_mtu = cxgb_change_mtu,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003131#ifdef CONFIG_NET_POLL_CONTROLLER
3132 .ndo_poll_controller = cxgb_netpoll,
3133#endif
Varun Prakash84a200b2015-03-24 19:14:46 +05303134#ifdef CONFIG_CHELSIO_T4_FCOE
3135 .ndo_fcoe_enable = cxgb_fcoe_enable,
3136 .ndo_fcoe_disable = cxgb_fcoe_disable,
3137#endif /* CONFIG_CHELSIO_T4_FCOE */
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05303138#ifdef CONFIG_NET_RX_BUSY_POLL
3139 .ndo_busy_poll = cxgb_busy_poll,
3140#endif
3141
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003142};
3143
3144void t4_fatal_err(struct adapter *adap)
3145{
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303146 t4_set_reg_field(adap, SGE_CONTROL_A, GLOBALENABLE_F, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003147 t4_intr_disable(adap);
3148 dev_alert(adap->pdev_dev, "encountered fatal error, adapter stopped\n");
3149}
3150
3151static void setup_memwin(struct adapter *adap)
3152{
Hariprasad Shenaib562fc32015-05-20 17:53:45 +05303153 u32 nic_win_base = t4_get_util_window(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003154
Hariprasad Shenaib562fc32015-05-20 17:53:45 +05303155 t4_setup_memwin(adap, nic_win_base, MEMWIN_NIC);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003156}
3157
3158static void setup_memwin_rdma(struct adapter *adap)
3159{
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003160 if (adap->vres.ocq.size) {
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05303161 u32 start;
3162 unsigned int sz_kb;
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003163
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05303164 start = t4_read_pcie_cfg4(adap, PCI_BASE_ADDRESS_2);
3165 start &= PCI_BASE_ADDRESS_MEM_MASK;
3166 start += OCQ_WIN_OFFSET(adap->pdev, &adap->vres);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003167 sz_kb = roundup_pow_of_two(adap->vres.ocq.size) >> 10;
3168 t4_write_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303169 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 3),
3170 start | BIR_V(1) | WINDOW_V(ilog2(sz_kb)));
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003171 t4_write_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303172 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3),
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003173 adap->vres.ocq.start);
3174 t4_read_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303175 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3));
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003176 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003177}
3178
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003179static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c)
3180{
3181 u32 v;
3182 int ret;
3183
3184 /* get device capabilities */
3185 memset(c, 0, sizeof(*c));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303186 c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3187 FW_CMD_REQUEST_F | FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303188 c->cfvalid_to_len16 = htonl(FW_LEN16(*c));
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303189 ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), c);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003190 if (ret < 0)
3191 return ret;
3192
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303193 c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3194 FW_CMD_REQUEST_F | FW_CMD_WRITE_F);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303195 ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), NULL);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003196 if (ret < 0)
3197 return ret;
3198
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303199 ret = t4_config_glbl_rss(adap, adap->pf,
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003200 FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL,
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05303201 FW_RSS_GLB_CONFIG_CMD_TNLMAPEN_F |
3202 FW_RSS_GLB_CONFIG_CMD_TNLALLLKP_F);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003203 if (ret < 0)
3204 return ret;
3205
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303206 ret = t4_cfg_pfvf(adap, adap->mbox, adap->pf, 0, adap->sge.egr_sz, 64,
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303207 MAX_INGQ, 0, 0, 4, 0xf, 0xf, 16, FW_CMD_CAP_PF,
3208 FW_CMD_CAP_PF);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003209 if (ret < 0)
3210 return ret;
3211
3212 t4_sge_init(adap);
3213
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003214 /* tweak some settings */
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303215 t4_write_reg(adap, TP_SHIFT_CNT_A, 0x64f8849);
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303216 t4_write_reg(adap, ULP_RX_TDDP_PSZ_A, HPZ0_V(PAGE_SHIFT - 12));
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303217 t4_write_reg(adap, TP_PIO_ADDR_A, TP_INGRESS_CONFIG_A);
3218 v = t4_read_reg(adap, TP_PIO_DATA_A);
3219 t4_write_reg(adap, TP_PIO_DATA_A, v & ~CSUM_HAS_PSEUDO_HDR_F);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003220
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003221 /* first 4 Tx modulation queues point to consecutive Tx channels */
3222 adap->params.tp.tx_modq_map = 0xE4;
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303223 t4_write_reg(adap, TP_TX_MOD_QUEUE_REQ_MAP_A,
3224 TX_MOD_QUEUE_REQ_MAP_V(adap->params.tp.tx_modq_map));
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003225
3226 /* associate each Tx modulation queue with consecutive Tx channels */
3227 v = 0x84218421;
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303228 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303229 &v, 1, TP_TX_SCHED_HDR_A);
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303230 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303231 &v, 1, TP_TX_SCHED_FIFO_A);
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303232 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303233 &v, 1, TP_TX_SCHED_PCMD_A);
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003234
3235#define T4_TX_MODQ_10G_WEIGHT_DEFAULT 16 /* in KB units */
3236 if (is_offload(adap)) {
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303237 t4_write_reg(adap, TP_TX_MOD_QUEUE_WEIGHT0_A,
3238 TX_MODQ_WEIGHT0_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3239 TX_MODQ_WEIGHT1_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3240 TX_MODQ_WEIGHT2_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3241 TX_MODQ_WEIGHT3_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
3242 t4_write_reg(adap, TP_TX_MOD_CHANNEL_WEIGHT_A,
3243 TX_MODQ_WEIGHT0_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3244 TX_MODQ_WEIGHT1_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3245 TX_MODQ_WEIGHT2_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3246 TX_MODQ_WEIGHT3_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003247 }
3248
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003249 /* get basic stuff going */
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303250 return t4_early_init(adap, adap->pf);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003251}
3252
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003253/*
3254 * Max # of ATIDs. The absolute HW max is 16K but we keep it lower.
3255 */
3256#define MAX_ATIDS 8192U
3257
3258/*
3259 * Phase 0 of initialization: contact FW, obtain config, perform basic init.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003260 *
3261 * If the firmware we're dealing with has Configuration File support, then
3262 * we use that to perform all configuration
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003263 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00003264
3265/*
3266 * Tweak configuration based on module parameters, etc. Most of these have
3267 * defaults assigned to them by Firmware Configuration Files (if we're using
3268 * them) but need to be explicitly set if we're using hard-coded
3269 * initialization. But even in the case of using Firmware Configuration
3270 * Files, we'd like to expose the ability to change these via module
3271 * parameters so these are essentially common tweaks/settings for
3272 * Configuration Files and hard-coded initialization ...
3273 */
3274static int adap_init0_tweaks(struct adapter *adapter)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003275{
Vipul Pandya636f9d32012-09-26 02:39:39 +00003276 /*
3277 * Fix up various Host-Dependent Parameters like Page Size, Cache
3278 * Line Size, etc. The firmware default is for a 4KB Page Size and
3279 * 64B Cache Line Size ...
3280 */
3281 t4_fixup_host_params(adapter, PAGE_SIZE, L1_CACHE_BYTES);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003282
Vipul Pandya636f9d32012-09-26 02:39:39 +00003283 /*
3284 * Process module parameters which affect early initialization.
3285 */
3286 if (rx_dma_offset != 2 && rx_dma_offset != 0) {
3287 dev_err(&adapter->pdev->dev,
3288 "Ignoring illegal rx_dma_offset=%d, using 2\n",
3289 rx_dma_offset);
3290 rx_dma_offset = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003291 }
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303292 t4_set_reg_field(adapter, SGE_CONTROL_A,
3293 PKTSHIFT_V(PKTSHIFT_M),
3294 PKTSHIFT_V(rx_dma_offset));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003295
Vipul Pandya636f9d32012-09-26 02:39:39 +00003296 /*
3297 * Don't include the "IP Pseudo Header" in CPL_RX_PKT checksums: Linux
3298 * adds the pseudo header itself.
3299 */
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303300 t4_tp_wr_bits_indirect(adapter, TP_INGRESS_CONFIG_A,
3301 CSUM_HAS_PSEUDO_HDR_F, 0);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003302
3303 return 0;
3304}
3305
Hariprasad Shenai01b69612015-05-22 21:58:21 +05303306/* 10Gb/s-BT PHY Support. chip-external 10Gb/s-BT PHYs are complex chips
3307 * unto themselves and they contain their own firmware to perform their
3308 * tasks ...
3309 */
3310static int phy_aq1202_version(const u8 *phy_fw_data,
3311 size_t phy_fw_size)
3312{
3313 int offset;
3314
3315 /* At offset 0x8 you're looking for the primary image's
3316 * starting offset which is 3 Bytes wide
3317 *
3318 * At offset 0xa of the primary image, you look for the offset
3319 * of the DRAM segment which is 3 Bytes wide.
3320 *
3321 * The FW version is at offset 0x27e of the DRAM and is 2 Bytes
3322 * wide
3323 */
3324 #define be16(__p) (((__p)[0] << 8) | (__p)[1])
3325 #define le16(__p) ((__p)[0] | ((__p)[1] << 8))
3326 #define le24(__p) (le16(__p) | ((__p)[2] << 16))
3327
3328 offset = le24(phy_fw_data + 0x8) << 12;
3329 offset = le24(phy_fw_data + offset + 0xa);
3330 return be16(phy_fw_data + offset + 0x27e);
3331
3332 #undef be16
3333 #undef le16
3334 #undef le24
3335}
3336
3337static struct info_10gbt_phy_fw {
3338 unsigned int phy_fw_id; /* PCI Device ID */
3339 char *phy_fw_file; /* /lib/firmware/ PHY Firmware file */
3340 int (*phy_fw_version)(const u8 *phy_fw_data, size_t phy_fw_size);
3341 int phy_flash; /* Has FLASH for PHY Firmware */
3342} phy_info_array[] = {
3343 {
3344 PHY_AQ1202_DEVICEID,
3345 PHY_AQ1202_FIRMWARE,
3346 phy_aq1202_version,
3347 1,
3348 },
3349 {
3350 PHY_BCM84834_DEVICEID,
3351 PHY_BCM84834_FIRMWARE,
3352 NULL,
3353 0,
3354 },
3355 { 0, NULL, NULL },
3356};
3357
3358static struct info_10gbt_phy_fw *find_phy_info(int devid)
3359{
3360 int i;
3361
3362 for (i = 0; i < ARRAY_SIZE(phy_info_array); i++) {
3363 if (phy_info_array[i].phy_fw_id == devid)
3364 return &phy_info_array[i];
3365 }
3366 return NULL;
3367}
3368
3369/* Handle updating of chip-external 10Gb/s-BT PHY firmware. This needs to
3370 * happen after the FW_RESET_CMD but before the FW_INITIALIZE_CMD. On error
3371 * we return a negative error number. If we transfer new firmware we return 1
3372 * (from t4_load_phy_fw()). If we don't do anything we return 0.
3373 */
3374static int adap_init0_phy(struct adapter *adap)
3375{
3376 const struct firmware *phyf;
3377 int ret;
3378 struct info_10gbt_phy_fw *phy_info;
3379
3380 /* Use the device ID to determine which PHY file to flash.
3381 */
3382 phy_info = find_phy_info(adap->pdev->device);
3383 if (!phy_info) {
3384 dev_warn(adap->pdev_dev,
3385 "No PHY Firmware file found for this PHY\n");
3386 return -EOPNOTSUPP;
3387 }
3388
3389 /* If we have a T4 PHY firmware file under /lib/firmware/cxgb4/, then
3390 * use that. The adapter firmware provides us with a memory buffer
3391 * where we can load a PHY firmware file from the host if we want to
3392 * override the PHY firmware File in flash.
3393 */
3394 ret = request_firmware_direct(&phyf, phy_info->phy_fw_file,
3395 adap->pdev_dev);
3396 if (ret < 0) {
3397 /* For adapters without FLASH attached to PHY for their
3398 * firmware, it's obviously a fatal error if we can't get the
3399 * firmware to the adapter. For adapters with PHY firmware
3400 * FLASH storage, it's worth a warning if we can't find the
3401 * PHY Firmware but we'll neuter the error ...
3402 */
3403 dev_err(adap->pdev_dev, "unable to find PHY Firmware image "
3404 "/lib/firmware/%s, error %d\n",
3405 phy_info->phy_fw_file, -ret);
3406 if (phy_info->phy_flash) {
3407 int cur_phy_fw_ver = 0;
3408
3409 t4_phy_fw_ver(adap, &cur_phy_fw_ver);
3410 dev_warn(adap->pdev_dev, "continuing with, on-adapter "
3411 "FLASH copy, version %#x\n", cur_phy_fw_ver);
3412 ret = 0;
3413 }
3414
3415 return ret;
3416 }
3417
3418 /* Load PHY Firmware onto adapter.
3419 */
3420 ret = t4_load_phy_fw(adap, MEMWIN_NIC, &adap->win0_lock,
3421 phy_info->phy_fw_version,
3422 (u8 *)phyf->data, phyf->size);
3423 if (ret < 0)
3424 dev_err(adap->pdev_dev, "PHY Firmware transfer error %d\n",
3425 -ret);
3426 else if (ret > 0) {
3427 int new_phy_fw_ver = 0;
3428
3429 if (phy_info->phy_fw_version)
3430 new_phy_fw_ver = phy_info->phy_fw_version(phyf->data,
3431 phyf->size);
3432 dev_info(adap->pdev_dev, "Successfully transferred PHY "
3433 "Firmware /lib/firmware/%s, version %#x\n",
3434 phy_info->phy_fw_file, new_phy_fw_ver);
3435 }
3436
3437 release_firmware(phyf);
3438
3439 return ret;
3440}
3441
Vipul Pandya636f9d32012-09-26 02:39:39 +00003442/*
3443 * Attempt to initialize the adapter via a Firmware Configuration File.
3444 */
3445static int adap_init0_config(struct adapter *adapter, int reset)
3446{
3447 struct fw_caps_config_cmd caps_cmd;
3448 const struct firmware *cf;
3449 unsigned long mtype = 0, maddr = 0;
3450 u32 finiver, finicsum, cfcsum;
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303451 int ret;
3452 int config_issued = 0;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003453 char *fw_config_file, fw_config_file_path[256];
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303454 char *config_name = NULL;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003455
3456 /*
3457 * Reset device if necessary.
3458 */
3459 if (reset) {
3460 ret = t4_fw_reset(adapter, adapter->mbox,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303461 PIORSTMODE_F | PIORST_F);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003462 if (ret < 0)
3463 goto bye;
3464 }
3465
Hariprasad Shenai01b69612015-05-22 21:58:21 +05303466 /* If this is a 10Gb/s-BT adapter make sure the chip-external
3467 * 10Gb/s-BT PHYs have up-to-date firmware. Note that this step needs
3468 * to be performed after any global adapter RESET above since some
3469 * PHYs only have local RAM copies of the PHY firmware.
3470 */
3471 if (is_10gbt_device(adapter->pdev->device)) {
3472 ret = adap_init0_phy(adapter);
3473 if (ret < 0)
3474 goto bye;
3475 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00003476 /*
3477 * If we have a T4 configuration file under /lib/firmware/cxgb4/,
3478 * then use that. Otherwise, use the configuration file stored
3479 * in the adapter flash ...
3480 */
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303481 switch (CHELSIO_CHIP_VERSION(adapter->params.chip)) {
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003482 case CHELSIO_T4:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303483 fw_config_file = FW4_CFNAME;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003484 break;
3485 case CHELSIO_T5:
3486 fw_config_file = FW5_CFNAME;
3487 break;
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05303488 case CHELSIO_T6:
3489 fw_config_file = FW6_CFNAME;
3490 break;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003491 default:
3492 dev_err(adapter->pdev_dev, "Device %d is not supported\n",
3493 adapter->pdev->device);
3494 ret = -EINVAL;
3495 goto bye;
3496 }
3497
3498 ret = request_firmware(&cf, fw_config_file, adapter->pdev_dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003499 if (ret < 0) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303500 config_name = "On FLASH";
Vipul Pandya636f9d32012-09-26 02:39:39 +00003501 mtype = FW_MEMTYPE_CF_FLASH;
3502 maddr = t4_flash_cfg_addr(adapter);
3503 } else {
3504 u32 params[7], val[7];
3505
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303506 sprintf(fw_config_file_path,
3507 "/lib/firmware/%s", fw_config_file);
3508 config_name = fw_config_file_path;
3509
Vipul Pandya636f9d32012-09-26 02:39:39 +00003510 if (cf->size >= FLASH_CFG_MAX_SIZE)
3511 ret = -ENOMEM;
3512 else {
Hariprasad Shenai51678652014-11-21 12:52:02 +05303513 params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3514 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
Vipul Pandya636f9d32012-09-26 02:39:39 +00003515 ret = t4_query_params(adapter, adapter->mbox,
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303516 adapter->pf, 0, 1, params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003517 if (ret == 0) {
3518 /*
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303519 * For t4_memory_rw() below addresses and
Vipul Pandya636f9d32012-09-26 02:39:39 +00003520 * sizes have to be in terms of multiples of 4
3521 * bytes. So, if the Configuration File isn't
3522 * a multiple of 4 bytes in length we'll have
3523 * to write that out separately since we can't
3524 * guarantee that the bytes following the
3525 * residual byte in the buffer returned by
3526 * request_firmware() are zeroed out ...
3527 */
3528 size_t resid = cf->size & 0x3;
3529 size_t size = cf->size & ~0x3;
3530 __be32 *data = (__be32 *)cf->data;
3531
Hariprasad Shenai51678652014-11-21 12:52:02 +05303532 mtype = FW_PARAMS_PARAM_Y_G(val[0]);
3533 maddr = FW_PARAMS_PARAM_Z_G(val[0]) << 16;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003534
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303535 spin_lock(&adapter->win0_lock);
3536 ret = t4_memory_rw(adapter, 0, mtype, maddr,
3537 size, data, T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003538 if (ret == 0 && resid != 0) {
3539 union {
3540 __be32 word;
3541 char buf[4];
3542 } last;
3543 int i;
3544
3545 last.word = data[size >> 2];
3546 for (i = resid; i < 4; i++)
3547 last.buf[i] = 0;
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303548 ret = t4_memory_rw(adapter, 0, mtype,
3549 maddr + size,
3550 4, &last.word,
3551 T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003552 }
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303553 spin_unlock(&adapter->win0_lock);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003554 }
3555 }
3556
3557 release_firmware(cf);
3558 if (ret)
3559 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003560 }
3561
Vipul Pandya636f9d32012-09-26 02:39:39 +00003562 /*
3563 * Issue a Capability Configuration command to the firmware to get it
3564 * to parse the Configuration File. We don't use t4_fw_config_file()
3565 * because we want the ability to modify various features after we've
3566 * processed the configuration file ...
3567 */
3568 memset(&caps_cmd, 0, sizeof(caps_cmd));
3569 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303570 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3571 FW_CMD_REQUEST_F |
3572 FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303573 caps_cmd.cfvalid_to_len16 =
Hariprasad Shenai51678652014-11-21 12:52:02 +05303574 htonl(FW_CAPS_CONFIG_CMD_CFVALID_F |
3575 FW_CAPS_CONFIG_CMD_MEMTYPE_CF_V(mtype) |
3576 FW_CAPS_CONFIG_CMD_MEMADDR64K_CF_V(maddr >> 16) |
Vipul Pandya636f9d32012-09-26 02:39:39 +00003577 FW_LEN16(caps_cmd));
3578 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
3579 &caps_cmd);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303580
3581 /* If the CAPS_CONFIG failed with an ENOENT (for a Firmware
3582 * Configuration File in FLASH), our last gasp effort is to use the
3583 * Firmware Configuration File which is embedded in the firmware. A
3584 * very few early versions of the firmware didn't have one embedded
3585 * but we can ignore those.
3586 */
3587 if (ret == -ENOENT) {
3588 memset(&caps_cmd, 0, sizeof(caps_cmd));
3589 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303590 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3591 FW_CMD_REQUEST_F |
3592 FW_CMD_READ_F);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303593 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
3594 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd,
3595 sizeof(caps_cmd), &caps_cmd);
3596 config_name = "Firmware Default";
3597 }
3598
3599 config_issued = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003600 if (ret < 0)
3601 goto bye;
3602
Vipul Pandya636f9d32012-09-26 02:39:39 +00003603 finiver = ntohl(caps_cmd.finiver);
3604 finicsum = ntohl(caps_cmd.finicsum);
3605 cfcsum = ntohl(caps_cmd.cfcsum);
3606 if (finicsum != cfcsum)
3607 dev_warn(adapter->pdev_dev, "Configuration File checksum "\
3608 "mismatch: [fini] csum=%#x, computed csum=%#x\n",
3609 finicsum, cfcsum);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003610
Vipul Pandya636f9d32012-09-26 02:39:39 +00003611 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00003612 * And now tell the firmware to use the configuration we just loaded.
3613 */
3614 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303615 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3616 FW_CMD_REQUEST_F |
3617 FW_CMD_WRITE_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303618 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00003619 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
3620 NULL);
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00003621 if (ret < 0)
3622 goto bye;
3623
Vipul Pandya636f9d32012-09-26 02:39:39 +00003624 /*
3625 * Tweak configuration based on system architecture, module
3626 * parameters, etc.
3627 */
3628 ret = adap_init0_tweaks(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003629 if (ret < 0)
3630 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003631
Vipul Pandya636f9d32012-09-26 02:39:39 +00003632 /*
3633 * And finally tell the firmware to initialize itself using the
3634 * parameters from the Configuration File.
3635 */
3636 ret = t4_fw_initialize(adapter, adapter->mbox);
3637 if (ret < 0)
3638 goto bye;
3639
Hariprasad Shenai06640312015-01-13 15:19:25 +05303640 /* Emit Firmware Configuration File information and return
3641 * successfully.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003642 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00003643 dev_info(adapter->pdev_dev, "Successfully configured using Firmware "\
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303644 "Configuration File \"%s\", version %#x, computed checksum %#x\n",
3645 config_name, finiver, cfcsum);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003646 return 0;
3647
3648 /*
3649 * Something bad happened. Return the error ... (If the "error"
3650 * is that there's no Configuration File on the adapter we don't
3651 * want to issue a warning since this is fairly common.)
3652 */
3653bye:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303654 if (config_issued && ret != -ENOENT)
3655 dev_warn(adapter->pdev_dev, "\"%s\" configuration file error %d\n",
3656 config_name, -ret);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003657 return ret;
3658}
3659
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303660static struct fw_info fw_info_array[] = {
3661 {
3662 .chip = CHELSIO_T4,
3663 .fs_name = FW4_CFNAME,
3664 .fw_mod_name = FW4_FNAME,
3665 .fw_hdr = {
3666 .chip = FW_HDR_CHIP_T4,
3667 .fw_ver = __cpu_to_be32(FW_VERSION(T4)),
3668 .intfver_nic = FW_INTFVER(T4, NIC),
3669 .intfver_vnic = FW_INTFVER(T4, VNIC),
3670 .intfver_ri = FW_INTFVER(T4, RI),
3671 .intfver_iscsi = FW_INTFVER(T4, ISCSI),
3672 .intfver_fcoe = FW_INTFVER(T4, FCOE),
3673 },
3674 }, {
3675 .chip = CHELSIO_T5,
3676 .fs_name = FW5_CFNAME,
3677 .fw_mod_name = FW5_FNAME,
3678 .fw_hdr = {
3679 .chip = FW_HDR_CHIP_T5,
3680 .fw_ver = __cpu_to_be32(FW_VERSION(T5)),
3681 .intfver_nic = FW_INTFVER(T5, NIC),
3682 .intfver_vnic = FW_INTFVER(T5, VNIC),
3683 .intfver_ri = FW_INTFVER(T5, RI),
3684 .intfver_iscsi = FW_INTFVER(T5, ISCSI),
3685 .intfver_fcoe = FW_INTFVER(T5, FCOE),
3686 },
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05303687 }, {
3688 .chip = CHELSIO_T6,
3689 .fs_name = FW6_CFNAME,
3690 .fw_mod_name = FW6_FNAME,
3691 .fw_hdr = {
3692 .chip = FW_HDR_CHIP_T6,
3693 .fw_ver = __cpu_to_be32(FW_VERSION(T6)),
3694 .intfver_nic = FW_INTFVER(T6, NIC),
3695 .intfver_vnic = FW_INTFVER(T6, VNIC),
3696 .intfver_ofld = FW_INTFVER(T6, OFLD),
3697 .intfver_ri = FW_INTFVER(T6, RI),
3698 .intfver_iscsipdu = FW_INTFVER(T6, ISCSIPDU),
3699 .intfver_iscsi = FW_INTFVER(T6, ISCSI),
3700 .intfver_fcoepdu = FW_INTFVER(T6, FCOEPDU),
3701 .intfver_fcoe = FW_INTFVER(T6, FCOE),
3702 },
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303703 }
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05303704
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303705};
3706
3707static struct fw_info *find_fw_info(int chip)
3708{
3709 int i;
3710
3711 for (i = 0; i < ARRAY_SIZE(fw_info_array); i++) {
3712 if (fw_info_array[i].chip == chip)
3713 return &fw_info_array[i];
3714 }
3715 return NULL;
3716}
3717
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003718/*
Vipul Pandya636f9d32012-09-26 02:39:39 +00003719 * Phase 0 of initialization: contact FW, obtain config, perform basic init.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003720 */
3721static int adap_init0(struct adapter *adap)
3722{
3723 int ret;
3724 u32 v, port_vec;
3725 enum dev_state state;
3726 u32 params[7], val[7];
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00003727 struct fw_caps_config_cmd caps_cmd;
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05303728 int reset = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003729
Hariprasad Shenaiae469b62015-04-01 21:41:16 +05303730 /* Grab Firmware Device Log parameters as early as possible so we have
3731 * access to it for debugging, etc.
3732 */
3733 ret = t4_init_devlog_params(adap);
3734 if (ret < 0)
3735 return ret;
3736
Hariprasad Shenai666224d2014-12-11 11:11:43 +05303737 /* Contact FW, advertising Master capability */
3738 ret = t4_fw_hello(adap, adap->mbox, adap->mbox, MASTER_MAY, &state);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003739 if (ret < 0) {
3740 dev_err(adap->pdev_dev, "could not connect to FW, error %d\n",
3741 ret);
3742 return ret;
3743 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00003744 if (ret == adap->mbox)
3745 adap->flags |= MASTER_PF;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003746
Vipul Pandya636f9d32012-09-26 02:39:39 +00003747 /*
3748 * If we're the Master PF Driver and the device is uninitialized,
3749 * then let's consider upgrading the firmware ... (We always want
3750 * to check the firmware version number in order to A. get it for
3751 * later reporting and B. to warn if the currently loaded firmware
3752 * is excessively mismatched relative to the driver.)
3753 */
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303754 t4_get_fw_version(adap, &adap->params.fw_vers);
Hariprasad Shenai0de72732016-04-26 20:10:22 +05303755 t4_get_bs_version(adap, &adap->params.bs_vers);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303756 t4_get_tp_version(adap, &adap->params.tp_vers);
Hariprasad Shenai0de72732016-04-26 20:10:22 +05303757 t4_get_exprom_version(adap, &adap->params.er_vers);
3758
Hariprasad Shenaia69265e2015-08-28 11:17:12 +05303759 ret = t4_check_fw_version(adap);
3760 /* If firmware is too old (not supported by driver) force an update. */
Hariprasad Shenai21d11bd2015-10-08 10:08:23 +05303761 if (ret)
Hariprasad Shenaia69265e2015-08-28 11:17:12 +05303762 state = DEV_STATE_UNINIT;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003763 if ((adap->flags & MASTER_PF) && state != DEV_STATE_INIT) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303764 struct fw_info *fw_info;
3765 struct fw_hdr *card_fw;
3766 const struct firmware *fw;
3767 const u8 *fw_data = NULL;
3768 unsigned int fw_size = 0;
3769
3770 /* This is the firmware whose headers the driver was compiled
3771 * against
3772 */
3773 fw_info = find_fw_info(CHELSIO_CHIP_VERSION(adap->params.chip));
3774 if (fw_info == NULL) {
3775 dev_err(adap->pdev_dev,
3776 "unable to get firmware info for chip %d.\n",
3777 CHELSIO_CHIP_VERSION(adap->params.chip));
3778 return -EINVAL;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003779 }
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303780
3781 /* allocate memory to read the header of the firmware on the
3782 * card
3783 */
3784 card_fw = t4_alloc_mem(sizeof(*card_fw));
3785
3786 /* Get FW from from /lib/firmware/ */
3787 ret = request_firmware(&fw, fw_info->fw_mod_name,
3788 adap->pdev_dev);
3789 if (ret < 0) {
3790 dev_err(adap->pdev_dev,
3791 "unable to load firmware image %s, error %d\n",
3792 fw_info->fw_mod_name, ret);
3793 } else {
3794 fw_data = fw->data;
3795 fw_size = fw->size;
3796 }
3797
3798 /* upgrade FW logic */
3799 ret = t4_prep_fw(adap, fw_info, fw_data, fw_size, card_fw,
3800 state, &reset);
3801
3802 /* Cleaning up */
Markus Elfring0b5b6be2015-02-04 11:28:43 +01003803 release_firmware(fw);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303804 t4_free_mem(card_fw);
3805
Vipul Pandya636f9d32012-09-26 02:39:39 +00003806 if (ret < 0)
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303807 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003808 }
3809
3810 /*
3811 * Grab VPD parameters. This should be done after we establish a
3812 * connection to the firmware since some of the VPD parameters
3813 * (notably the Core Clock frequency) are retrieved via requests to
3814 * the firmware. On the other hand, we need these fairly early on
3815 * so we do this right after getting ahold of the firmware.
3816 */
Hariprasad Shenai098ef6c2015-06-05 14:24:50 +05303817 ret = t4_get_vpd_params(adap, &adap->params.vpd);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003818 if (ret < 0)
3819 goto bye;
3820
Vipul Pandya636f9d32012-09-26 02:39:39 +00003821 /*
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003822 * Find out what ports are available to us. Note that we need to do
3823 * this before calling adap_init0_no_config() since it needs nports
3824 * and portvec ...
Vipul Pandya636f9d32012-09-26 02:39:39 +00003825 */
3826 v =
Hariprasad Shenai51678652014-11-21 12:52:02 +05303827 FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3828 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PORTVEC);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303829 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1, &v, &port_vec);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003830 if (ret < 0)
3831 goto bye;
3832
3833 adap->params.nports = hweight32(port_vec);
3834 adap->params.portvec = port_vec;
3835
Hariprasad Shenai06640312015-01-13 15:19:25 +05303836 /* If the firmware is initialized already, emit a simply note to that
3837 * effect. Otherwise, it's time to try initializing the adapter.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003838 */
3839 if (state == DEV_STATE_INIT) {
3840 dev_info(adap->pdev_dev, "Coming up as %s: "\
3841 "Adapter already initialized\n",
3842 adap->flags & MASTER_PF ? "MASTER" : "SLAVE");
Vipul Pandya636f9d32012-09-26 02:39:39 +00003843 } else {
3844 dev_info(adap->pdev_dev, "Coming up as MASTER: "\
3845 "Initializing adapter\n");
Hariprasad Shenai06640312015-01-13 15:19:25 +05303846
3847 /* Find out whether we're dealing with a version of the
3848 * firmware which has configuration file support.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003849 */
Hariprasad Shenai06640312015-01-13 15:19:25 +05303850 params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3851 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303852 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1,
Hariprasad Shenai06640312015-01-13 15:19:25 +05303853 params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003854
Hariprasad Shenai06640312015-01-13 15:19:25 +05303855 /* If the firmware doesn't support Configuration Files,
3856 * return an error.
3857 */
3858 if (ret < 0) {
3859 dev_err(adap->pdev_dev, "firmware doesn't support "
3860 "Firmware Configuration Files\n");
3861 goto bye;
3862 }
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003863
Hariprasad Shenai06640312015-01-13 15:19:25 +05303864 /* The firmware provides us with a memory buffer where we can
3865 * load a Configuration File from the host if we want to
3866 * override the Configuration File in flash.
3867 */
3868 ret = adap_init0_config(adap, reset);
3869 if (ret == -ENOENT) {
3870 dev_err(adap->pdev_dev, "no Configuration File "
3871 "present on adapter.\n");
3872 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003873 }
3874 if (ret < 0) {
Hariprasad Shenai06640312015-01-13 15:19:25 +05303875 dev_err(adap->pdev_dev, "could not initialize "
3876 "adapter, error %d\n", -ret);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003877 goto bye;
3878 }
3879 }
3880
Hariprasad Shenai06640312015-01-13 15:19:25 +05303881 /* Give the SGE code a chance to pull in anything that it needs ...
3882 * Note that this must be called after we retrieve our VPD parameters
3883 * in order to know how to convert core ticks to seconds, etc.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003884 */
Hariprasad Shenai06640312015-01-13 15:19:25 +05303885 ret = t4_sge_init(adap);
3886 if (ret < 0)
3887 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003888
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00003889 if (is_bypass_device(adap->pdev->device))
3890 adap->params.bypass = 1;
3891
Vipul Pandya636f9d32012-09-26 02:39:39 +00003892 /*
3893 * Grab some of our basic fundamental operating parameters.
3894 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003895#define FW_PARAM_DEV(param) \
Hariprasad Shenai51678652014-11-21 12:52:02 +05303896 (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | \
3897 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_##param))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003898
3899#define FW_PARAM_PFVF(param) \
Hariprasad Shenai51678652014-11-21 12:52:02 +05303900 FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_PFVF) | \
3901 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_PFVF_##param)| \
3902 FW_PARAMS_PARAM_Y_V(0) | \
3903 FW_PARAMS_PARAM_Z_V(0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003904
Vipul Pandya636f9d32012-09-26 02:39:39 +00003905 params[0] = FW_PARAM_PFVF(EQ_START);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003906 params[1] = FW_PARAM_PFVF(L2T_START);
3907 params[2] = FW_PARAM_PFVF(L2T_END);
3908 params[3] = FW_PARAM_PFVF(FILTER_START);
3909 params[4] = FW_PARAM_PFVF(FILTER_END);
3910 params[5] = FW_PARAM_PFVF(IQFLINT_START);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303911 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003912 if (ret < 0)
3913 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003914 adap->sge.egr_start = val[0];
3915 adap->l2t_start = val[1];
3916 adap->l2t_end = val[2];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003917 adap->tids.ftid_base = val[3];
3918 adap->tids.nftids = val[4] - val[3] + 1;
3919 adap->sge.ingr_start = val[5];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003920
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303921 /* qids (ingress/egress) returned from firmware can be anywhere
3922 * in the range from EQ(IQFLINT)_START to EQ(IQFLINT)_END.
3923 * Hence driver needs to allocate memory for this range to
3924 * store the queue info. Get the highest IQFLINT/EQ index returned
3925 * in FW_EQ_*_CMD.alloc command.
3926 */
3927 params[0] = FW_PARAM_PFVF(EQ_END);
3928 params[1] = FW_PARAM_PFVF(IQFLINT_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303929 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303930 if (ret < 0)
3931 goto bye;
3932 adap->sge.egr_sz = val[0] - adap->sge.egr_start + 1;
3933 adap->sge.ingr_sz = val[1] - adap->sge.ingr_start + 1;
3934
3935 adap->sge.egr_map = kcalloc(adap->sge.egr_sz,
3936 sizeof(*adap->sge.egr_map), GFP_KERNEL);
3937 if (!adap->sge.egr_map) {
3938 ret = -ENOMEM;
3939 goto bye;
3940 }
3941
3942 adap->sge.ingr_map = kcalloc(adap->sge.ingr_sz,
3943 sizeof(*adap->sge.ingr_map), GFP_KERNEL);
3944 if (!adap->sge.ingr_map) {
3945 ret = -ENOMEM;
3946 goto bye;
3947 }
3948
3949 /* Allocate the memory for the vaious egress queue bitmaps
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05303950 * ie starving_fl, txq_maperr and blocked_fl.
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303951 */
3952 adap->sge.starving_fl = kcalloc(BITS_TO_LONGS(adap->sge.egr_sz),
3953 sizeof(long), GFP_KERNEL);
3954 if (!adap->sge.starving_fl) {
3955 ret = -ENOMEM;
3956 goto bye;
3957 }
3958
3959 adap->sge.txq_maperr = kcalloc(BITS_TO_LONGS(adap->sge.egr_sz),
3960 sizeof(long), GFP_KERNEL);
3961 if (!adap->sge.txq_maperr) {
3962 ret = -ENOMEM;
3963 goto bye;
3964 }
3965
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05303966#ifdef CONFIG_DEBUG_FS
3967 adap->sge.blocked_fl = kcalloc(BITS_TO_LONGS(adap->sge.egr_sz),
3968 sizeof(long), GFP_KERNEL);
3969 if (!adap->sge.blocked_fl) {
3970 ret = -ENOMEM;
3971 goto bye;
3972 }
3973#endif
3974
Anish Bhattb5a02f52015-01-14 15:17:34 -08003975 params[0] = FW_PARAM_PFVF(CLIP_START);
3976 params[1] = FW_PARAM_PFVF(CLIP_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303977 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
Anish Bhattb5a02f52015-01-14 15:17:34 -08003978 if (ret < 0)
3979 goto bye;
3980 adap->clipt_start = val[0];
3981 adap->clipt_end = val[1];
3982
Vipul Pandya636f9d32012-09-26 02:39:39 +00003983 /* query params related to active filter region */
3984 params[0] = FW_PARAM_PFVF(ACTIVE_FILTER_START);
3985 params[1] = FW_PARAM_PFVF(ACTIVE_FILTER_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303986 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003987 /* If Active filter size is set we enable establishing
3988 * offload connection through firmware work request
3989 */
3990 if ((val[0] != val[1]) && (ret >= 0)) {
3991 adap->flags |= FW_OFLD_CONN;
3992 adap->tids.aftid_base = val[0];
3993 adap->tids.aftid_end = val[1];
3994 }
3995
Vipul Pandyab407a4a2013-04-29 04:04:40 +00003996 /* If we're running on newer firmware, let it know that we're
3997 * prepared to deal with encapsulated CPL messages. Older
3998 * firmware won't understand this and we'll just get
3999 * unencapsulated messages ...
4000 */
4001 params[0] = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
4002 val[0] = 1;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304003 (void)t4_set_params(adap, adap->mbox, adap->pf, 0, 1, params, val);
Vipul Pandyab407a4a2013-04-29 04:04:40 +00004004
Vipul Pandya636f9d32012-09-26 02:39:39 +00004005 /*
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05304006 * Find out whether we're allowed to use the T5+ ULPTX MEMWRITE DSGL
4007 * capability. Earlier versions of the firmware didn't have the
4008 * ULPTX_MEMWRITE_DSGL so we'll interpret a query failure as no
4009 * permission to use ULPTX MEMWRITE DSGL.
4010 */
4011 if (is_t4(adap->params.chip)) {
4012 adap->params.ulptx_memwrite_dsgl = false;
4013 } else {
4014 params[0] = FW_PARAM_DEV(ULPTX_MEMWRITE_DSGL);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304015 ret = t4_query_params(adap, adap->mbox, adap->pf, 0,
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05304016 1, params, val);
4017 adap->params.ulptx_memwrite_dsgl = (ret == 0 && val[0] != 0);
4018 }
4019
4020 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00004021 * Get device capabilities so we can determine what resources we need
4022 * to manage.
4023 */
4024 memset(&caps_cmd, 0, sizeof(caps_cmd));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05304025 caps_cmd.op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
4026 FW_CMD_REQUEST_F | FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05304027 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00004028 ret = t4_wr_mbox(adap, adap->mbox, &caps_cmd, sizeof(caps_cmd),
4029 &caps_cmd);
4030 if (ret < 0)
4031 goto bye;
4032
Vipul Pandya13ee15d2012-09-26 02:39:40 +00004033 if (caps_cmd.ofldcaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004034 /* query offload-related parameters */
4035 params[0] = FW_PARAM_DEV(NTID);
4036 params[1] = FW_PARAM_PFVF(SERVER_START);
4037 params[2] = FW_PARAM_PFVF(SERVER_END);
4038 params[3] = FW_PARAM_PFVF(TDDP_START);
4039 params[4] = FW_PARAM_PFVF(TDDP_END);
4040 params[5] = FW_PARAM_DEV(FLOWC_BUFFIFO_SZ);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304041 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
Vipul Pandya636f9d32012-09-26 02:39:39 +00004042 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004043 if (ret < 0)
4044 goto bye;
4045 adap->tids.ntids = val[0];
4046 adap->tids.natids = min(adap->tids.ntids / 2, MAX_ATIDS);
4047 adap->tids.stid_base = val[1];
4048 adap->tids.nstids = val[2] - val[1] + 1;
Vipul Pandya636f9d32012-09-26 02:39:39 +00004049 /*
Joe Perchesdbedd442015-03-06 20:49:12 -08004050 * Setup server filter region. Divide the available filter
Vipul Pandya636f9d32012-09-26 02:39:39 +00004051 * region into two parts. Regular filters get 1/3rd and server
4052 * filters get 2/3rd part. This is only enabled if workarond
4053 * path is enabled.
4054 * 1. For regular filters.
4055 * 2. Server filter: This are special filters which are used
4056 * to redirect SYN packets to offload queue.
4057 */
4058 if (adap->flags & FW_OFLD_CONN && !is_bypass(adap)) {
4059 adap->tids.sftid_base = adap->tids.ftid_base +
4060 DIV_ROUND_UP(adap->tids.nftids, 3);
4061 adap->tids.nsftids = adap->tids.nftids -
4062 DIV_ROUND_UP(adap->tids.nftids, 3);
4063 adap->tids.nftids = adap->tids.sftid_base -
4064 adap->tids.ftid_base;
4065 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004066 adap->vres.ddp.start = val[3];
4067 adap->vres.ddp.size = val[4] - val[3] + 1;
4068 adap->params.ofldq_wr_cred = val[5];
Vipul Pandya636f9d32012-09-26 02:39:39 +00004069
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004070 adap->params.offload = 1;
4071 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00004072 if (caps_cmd.rdmacaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004073 params[0] = FW_PARAM_PFVF(STAG_START);
4074 params[1] = FW_PARAM_PFVF(STAG_END);
4075 params[2] = FW_PARAM_PFVF(RQ_START);
4076 params[3] = FW_PARAM_PFVF(RQ_END);
4077 params[4] = FW_PARAM_PFVF(PBL_START);
4078 params[5] = FW_PARAM_PFVF(PBL_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304079 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
Vipul Pandya636f9d32012-09-26 02:39:39 +00004080 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004081 if (ret < 0)
4082 goto bye;
4083 adap->vres.stag.start = val[0];
4084 adap->vres.stag.size = val[1] - val[0] + 1;
4085 adap->vres.rq.start = val[2];
4086 adap->vres.rq.size = val[3] - val[2] + 1;
4087 adap->vres.pbl.start = val[4];
4088 adap->vres.pbl.size = val[5] - val[4] + 1;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00004089
4090 params[0] = FW_PARAM_PFVF(SQRQ_START);
4091 params[1] = FW_PARAM_PFVF(SQRQ_END);
4092 params[2] = FW_PARAM_PFVF(CQ_START);
4093 params[3] = FW_PARAM_PFVF(CQ_END);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004094 params[4] = FW_PARAM_PFVF(OCQ_START);
4095 params[5] = FW_PARAM_PFVF(OCQ_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304096 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params,
Hariprasad Shenai5c937dd2014-09-01 19:55:00 +05304097 val);
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00004098 if (ret < 0)
4099 goto bye;
4100 adap->vres.qp.start = val[0];
4101 adap->vres.qp.size = val[1] - val[0] + 1;
4102 adap->vres.cq.start = val[2];
4103 adap->vres.cq.size = val[3] - val[2] + 1;
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004104 adap->vres.ocq.start = val[4];
4105 adap->vres.ocq.size = val[5] - val[4] + 1;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05304106
4107 params[0] = FW_PARAM_DEV(MAXORDIRD_QP);
4108 params[1] = FW_PARAM_DEV(MAXIRD_ADAPTER);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304109 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params,
Hariprasad Shenai5c937dd2014-09-01 19:55:00 +05304110 val);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05304111 if (ret < 0) {
4112 adap->params.max_ordird_qp = 8;
4113 adap->params.max_ird_adapter = 32 * adap->tids.ntids;
4114 ret = 0;
4115 } else {
4116 adap->params.max_ordird_qp = val[0];
4117 adap->params.max_ird_adapter = val[1];
4118 }
4119 dev_info(adap->pdev_dev,
4120 "max_ordird_qp %d max_ird_adapter %d\n",
4121 adap->params.max_ordird_qp,
4122 adap->params.max_ird_adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004123 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00004124 if (caps_cmd.iscsicaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004125 params[0] = FW_PARAM_PFVF(ISCSI_START);
4126 params[1] = FW_PARAM_PFVF(ISCSI_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304127 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2,
Vipul Pandya636f9d32012-09-26 02:39:39 +00004128 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004129 if (ret < 0)
4130 goto bye;
4131 adap->vres.iscsi.start = val[0];
4132 adap->vres.iscsi.size = val[1] - val[0] + 1;
4133 }
4134#undef FW_PARAM_PFVF
4135#undef FW_PARAM_DEV
4136
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05304137 /* The MTU/MSS Table is initialized by now, so load their values. If
4138 * we're initializing the adapter, then we'll make any modifications
4139 * we want to the MTU/MSS Table and also initialize the congestion
4140 * parameters.
Vipul Pandya636f9d32012-09-26 02:39:39 +00004141 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004142 t4_read_mtu_tbl(adap, adap->params.mtus, NULL);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05304143 if (state != DEV_STATE_INIT) {
4144 int i;
Casey Leedom7ee9ff92010-06-25 12:11:46 +00004145
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05304146 /* The default MTU Table contains values 1492 and 1500.
4147 * However, for TCP, it's better to have two values which are
4148 * a multiple of 8 +/- 4 bytes apart near this popular MTU.
4149 * This allows us to have a TCP Data Payload which is a
4150 * multiple of 8 regardless of what combination of TCP Options
4151 * are in use (always a multiple of 4 bytes) which is
4152 * important for performance reasons. For instance, if no
4153 * options are in use, then we have a 20-byte IP header and a
4154 * 20-byte TCP header. In this case, a 1500-byte MSS would
4155 * result in a TCP Data Payload of 1500 - 40 == 1460 bytes
4156 * which is not a multiple of 8. So using an MSS of 1488 in
4157 * this case results in a TCP Data Payload of 1448 bytes which
4158 * is a multiple of 8. On the other hand, if 12-byte TCP Time
4159 * Stamps have been negotiated, then an MTU of 1500 bytes
4160 * results in a TCP Data Payload of 1448 bytes which, as
4161 * above, is a multiple of 8 bytes ...
4162 */
4163 for (i = 0; i < NMTUS; i++)
4164 if (adap->params.mtus[i] == 1492) {
4165 adap->params.mtus[i] = 1488;
4166 break;
4167 }
4168
4169 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
4170 adap->params.b_wnd);
4171 }
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05304172 t4_init_sge_params(adap);
Vipul Pandya636f9d32012-09-26 02:39:39 +00004173 adap->flags |= FW_OK;
Hariprasad Shenaic1e9af02015-06-05 14:24:52 +05304174 t4_init_tp_params(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004175 return 0;
4176
4177 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00004178 * Something bad happened. If a command timed out or failed with EIO
4179 * FW does not operate within its spec or something catastrophic
4180 * happened to HW/FW, stop issuing commands.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004181 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00004182bye:
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05304183 kfree(adap->sge.egr_map);
4184 kfree(adap->sge.ingr_map);
4185 kfree(adap->sge.starving_fl);
4186 kfree(adap->sge.txq_maperr);
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05304187#ifdef CONFIG_DEBUG_FS
4188 kfree(adap->sge.blocked_fl);
4189#endif
Vipul Pandya636f9d32012-09-26 02:39:39 +00004190 if (ret != -ETIMEDOUT && ret != -EIO)
4191 t4_fw_bye(adap, adap->mbox);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004192 return ret;
4193}
4194
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004195/* EEH callbacks */
4196
4197static pci_ers_result_t eeh_err_detected(struct pci_dev *pdev,
4198 pci_channel_state_t state)
4199{
4200 int i;
4201 struct adapter *adap = pci_get_drvdata(pdev);
4202
4203 if (!adap)
4204 goto out;
4205
4206 rtnl_lock();
4207 adap->flags &= ~FW_OK;
4208 notify_ulds(adap, CXGB4_STATE_START_RECOVERY);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004209 spin_lock(&adap->stats_lock);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004210 for_each_port(adap, i) {
4211 struct net_device *dev = adap->port[i];
4212
4213 netif_device_detach(dev);
4214 netif_carrier_off(dev);
4215 }
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004216 spin_unlock(&adap->stats_lock);
Hariprasad Shenaib37987e2015-03-26 10:04:26 +05304217 disable_interrupts(adap);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004218 if (adap->flags & FULL_INIT_DONE)
4219 cxgb_down(adap);
4220 rtnl_unlock();
Gavin Shan144be3d2014-01-23 12:27:34 +08004221 if ((adap->flags & DEV_ENABLED)) {
4222 pci_disable_device(pdev);
4223 adap->flags &= ~DEV_ENABLED;
4224 }
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004225out: return state == pci_channel_io_perm_failure ?
4226 PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
4227}
4228
4229static pci_ers_result_t eeh_slot_reset(struct pci_dev *pdev)
4230{
4231 int i, ret;
4232 struct fw_caps_config_cmd c;
4233 struct adapter *adap = pci_get_drvdata(pdev);
4234
4235 if (!adap) {
4236 pci_restore_state(pdev);
4237 pci_save_state(pdev);
4238 return PCI_ERS_RESULT_RECOVERED;
4239 }
4240
Gavin Shan144be3d2014-01-23 12:27:34 +08004241 if (!(adap->flags & DEV_ENABLED)) {
4242 if (pci_enable_device(pdev)) {
4243 dev_err(&pdev->dev, "Cannot reenable PCI "
4244 "device after reset\n");
4245 return PCI_ERS_RESULT_DISCONNECT;
4246 }
4247 adap->flags |= DEV_ENABLED;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004248 }
4249
4250 pci_set_master(pdev);
4251 pci_restore_state(pdev);
4252 pci_save_state(pdev);
4253 pci_cleanup_aer_uncorrect_error_status(pdev);
4254
Hariprasad Shenai8203b502014-10-09 05:48:47 +05304255 if (t4_wait_dev_ready(adap->regs) < 0)
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004256 return PCI_ERS_RESULT_DISCONNECT;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304257 if (t4_fw_hello(adap, adap->mbox, adap->pf, MASTER_MUST, NULL) < 0)
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004258 return PCI_ERS_RESULT_DISCONNECT;
4259 adap->flags |= FW_OK;
4260 if (adap_init1(adap, &c))
4261 return PCI_ERS_RESULT_DISCONNECT;
4262
4263 for_each_port(adap, i) {
4264 struct port_info *p = adap2pinfo(adap, i);
4265
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304266 ret = t4_alloc_vi(adap, adap->mbox, p->tx_chan, adap->pf, 0, 1,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004267 NULL, NULL);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004268 if (ret < 0)
4269 return PCI_ERS_RESULT_DISCONNECT;
4270 p->viid = ret;
4271 p->xact_addr_filt = -1;
4272 }
4273
4274 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
4275 adap->params.b_wnd);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004276 setup_memwin(adap);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004277 if (cxgb_up(adap))
4278 return PCI_ERS_RESULT_DISCONNECT;
4279 return PCI_ERS_RESULT_RECOVERED;
4280}
4281
4282static void eeh_resume(struct pci_dev *pdev)
4283{
4284 int i;
4285 struct adapter *adap = pci_get_drvdata(pdev);
4286
4287 if (!adap)
4288 return;
4289
4290 rtnl_lock();
4291 for_each_port(adap, i) {
4292 struct net_device *dev = adap->port[i];
4293
4294 if (netif_running(dev)) {
4295 link_start(dev);
4296 cxgb_set_rxmode(dev);
4297 }
4298 netif_device_attach(dev);
4299 }
4300 rtnl_unlock();
4301}
4302
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07004303static const struct pci_error_handlers cxgb4_eeh = {
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004304 .error_detected = eeh_err_detected,
4305 .slot_reset = eeh_slot_reset,
4306 .resume = eeh_resume,
4307};
4308
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304309static inline bool is_x_10g_port(const struct link_config *lc)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004310{
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304311 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 ||
4312 (lc->supported & FW_PORT_CAP_SPEED_40G) != 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004313}
4314
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304315static inline void init_rspq(struct adapter *adap, struct sge_rspq *q,
4316 unsigned int us, unsigned int cnt,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004317 unsigned int size, unsigned int iqe_size)
4318{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304319 q->adap = adap;
Hariprasad Shenai812034f2015-04-06 20:23:23 +05304320 cxgb4_set_rspq_intr_params(q, us, cnt);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004321 q->iqe_len = iqe_size;
4322 q->size = size;
4323}
4324
4325/*
4326 * Perform default configuration of DMA queues depending on the number and type
4327 * of ports we found and the number of available CPUs. Most settings can be
4328 * modified by the admin prior to actual use.
4329 */
Bill Pemberton91744942012-12-03 09:23:02 -05004330static void cfg_queues(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004331{
4332 struct sge *s = &adap->sge;
Anish Bhatt688848b2014-06-19 21:37:13 -07004333 int i, n10g = 0, qidx = 0;
4334#ifndef CONFIG_CHELSIO_T4_DCB
4335 int q10g = 0;
4336#endif
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304337 int ciq_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004338
4339 for_each_port(adap, i)
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304340 n10g += is_x_10g_port(&adap2pinfo(adap, i)->link_cfg);
Anish Bhatt688848b2014-06-19 21:37:13 -07004341#ifdef CONFIG_CHELSIO_T4_DCB
4342 /* For Data Center Bridging support we need to be able to support up
4343 * to 8 Traffic Priorities; each of which will be assigned to its
4344 * own TX Queue in order to prevent Head-Of-Line Blocking.
4345 */
4346 if (adap->params.nports * 8 > MAX_ETH_QSETS) {
4347 dev_err(adap->pdev_dev, "MAX_ETH_QSETS=%d < %d!\n",
4348 MAX_ETH_QSETS, adap->params.nports * 8);
4349 BUG_ON(1);
4350 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004351
Anish Bhatt688848b2014-06-19 21:37:13 -07004352 for_each_port(adap, i) {
4353 struct port_info *pi = adap2pinfo(adap, i);
4354
4355 pi->first_qset = qidx;
4356 pi->nqsets = 8;
4357 qidx += pi->nqsets;
4358 }
4359#else /* !CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004360 /*
4361 * We default to 1 queue per non-10G port and up to # of cores queues
4362 * per 10G port.
4363 */
4364 if (n10g)
4365 q10g = (MAX_ETH_QSETS - (adap->params.nports - n10g)) / n10g;
Yuval Mintz5952dde2012-07-01 03:18:55 +00004366 if (q10g > netif_get_num_default_rss_queues())
4367 q10g = netif_get_num_default_rss_queues();
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004368
4369 for_each_port(adap, i) {
4370 struct port_info *pi = adap2pinfo(adap, i);
4371
4372 pi->first_qset = qidx;
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304373 pi->nqsets = is_x_10g_port(&pi->link_cfg) ? q10g : 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004374 qidx += pi->nqsets;
4375 }
Anish Bhatt688848b2014-06-19 21:37:13 -07004376#endif /* !CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004377
4378 s->ethqsets = qidx;
4379 s->max_ethqsets = qidx; /* MSI-X may lower it later */
4380
4381 if (is_offload(adap)) {
4382 /*
4383 * For offload we use 1 queue/channel if all ports are up to 1G,
4384 * otherwise we divide all available queues amongst the channels
4385 * capped by the number of available cores.
4386 */
4387 if (n10g) {
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304388 i = min_t(int, ARRAY_SIZE(s->iscsirxq),
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004389 num_online_cpus());
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304390 s->iscsiqsets = roundup(i, adap->params.nports);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004391 } else
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304392 s->iscsiqsets = adap->params.nports;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004393 /* For RDMA one Rx queue per channel suffices */
4394 s->rdmaqs = adap->params.nports;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304395 /* Try and allow at least 1 CIQ per cpu rounding down
4396 * to the number of ports, with a minimum of 1 per port.
4397 * A 2 port card in a 6 cpu system: 6 CIQs, 3 / port.
4398 * A 4 port card in a 6 cpu system: 4 CIQs, 1 / port.
4399 * A 4 port card in a 2 cpu system: 4 CIQs, 1 / port.
4400 */
4401 s->rdmaciqs = min_t(int, MAX_RDMA_CIQS, num_online_cpus());
4402 s->rdmaciqs = (s->rdmaciqs / adap->params.nports) *
4403 adap->params.nports;
4404 s->rdmaciqs = max_t(int, s->rdmaciqs, adap->params.nports);
Varun Prakashf2692d12016-02-14 23:02:40 +05304405
4406 if (!is_t4(adap->params.chip))
4407 s->niscsitq = s->iscsiqsets;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004408 }
4409
4410 for (i = 0; i < ARRAY_SIZE(s->ethrxq); i++) {
4411 struct sge_eth_rxq *r = &s->ethrxq[i];
4412
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304413 init_rspq(adap, &r->rspq, 5, 10, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004414 r->fl.size = 72;
4415 }
4416
4417 for (i = 0; i < ARRAY_SIZE(s->ethtxq); i++)
4418 s->ethtxq[i].q.size = 1024;
4419
4420 for (i = 0; i < ARRAY_SIZE(s->ctrlq); i++)
4421 s->ctrlq[i].q.size = 512;
4422
4423 for (i = 0; i < ARRAY_SIZE(s->ofldtxq); i++)
4424 s->ofldtxq[i].q.size = 1024;
4425
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304426 for (i = 0; i < ARRAY_SIZE(s->iscsirxq); i++) {
4427 struct sge_ofld_rxq *r = &s->iscsirxq[i];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004428
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304429 init_rspq(adap, &r->rspq, 5, 1, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004430 r->rspq.uld = CXGB4_ULD_ISCSI;
4431 r->fl.size = 72;
4432 }
4433
Varun Prakashf2692d12016-02-14 23:02:40 +05304434 if (!is_t4(adap->params.chip)) {
4435 for (i = 0; i < ARRAY_SIZE(s->iscsitrxq); i++) {
4436 struct sge_ofld_rxq *r = &s->iscsitrxq[i];
4437
4438 init_rspq(adap, &r->rspq, 5, 1, 1024, 64);
4439 r->rspq.uld = CXGB4_ULD_ISCSIT;
4440 r->fl.size = 72;
4441 }
4442 }
4443
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004444 for (i = 0; i < ARRAY_SIZE(s->rdmarxq); i++) {
4445 struct sge_ofld_rxq *r = &s->rdmarxq[i];
4446
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304447 init_rspq(adap, &r->rspq, 5, 1, 511, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004448 r->rspq.uld = CXGB4_ULD_RDMA;
4449 r->fl.size = 72;
4450 }
4451
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304452 ciq_size = 64 + adap->vres.cq.size + adap->tids.nftids;
4453 if (ciq_size > SGE_MAX_IQ_SIZE) {
4454 CH_WARN(adap, "CIQ size too small for available IQs\n");
4455 ciq_size = SGE_MAX_IQ_SIZE;
4456 }
4457
4458 for (i = 0; i < ARRAY_SIZE(s->rdmaciq); i++) {
4459 struct sge_ofld_rxq *r = &s->rdmaciq[i];
4460
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304461 init_rspq(adap, &r->rspq, 5, 1, ciq_size, 64);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304462 r->rspq.uld = CXGB4_ULD_RDMA;
4463 }
4464
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304465 init_rspq(adap, &s->fw_evtq, 0, 1, 1024, 64);
4466 init_rspq(adap, &s->intrq, 0, 1, 2 * MAX_INGQ, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004467}
4468
4469/*
4470 * Reduce the number of Ethernet queues across all ports to at most n.
4471 * n provides at least one queue per port.
4472 */
Bill Pemberton91744942012-12-03 09:23:02 -05004473static void reduce_ethqs(struct adapter *adap, int n)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004474{
4475 int i;
4476 struct port_info *pi;
4477
4478 while (n < adap->sge.ethqsets)
4479 for_each_port(adap, i) {
4480 pi = adap2pinfo(adap, i);
4481 if (pi->nqsets > 1) {
4482 pi->nqsets--;
4483 adap->sge.ethqsets--;
4484 if (adap->sge.ethqsets <= n)
4485 break;
4486 }
4487 }
4488
4489 n = 0;
4490 for_each_port(adap, i) {
4491 pi = adap2pinfo(adap, i);
4492 pi->first_qset = n;
4493 n += pi->nqsets;
4494 }
4495}
4496
4497/* 2 MSI-X vectors needed for the FW queue and non-data interrupts */
4498#define EXTRA_VECS 2
4499
Bill Pemberton91744942012-12-03 09:23:02 -05004500static int enable_msix(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004501{
4502 int ofld_need = 0;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304503 int i, want, need, allocated;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004504 struct sge *s = &adap->sge;
4505 unsigned int nchan = adap->params.nports;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304506 struct msix_entry *entries;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004507
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304508 entries = kmalloc(sizeof(*entries) * (MAX_INGQ + 1),
4509 GFP_KERNEL);
4510 if (!entries)
4511 return -ENOMEM;
4512
4513 for (i = 0; i < MAX_INGQ + 1; ++i)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004514 entries[i].entry = i;
4515
4516 want = s->max_ethqsets + EXTRA_VECS;
4517 if (is_offload(adap)) {
Varun Prakashf2692d12016-02-14 23:02:40 +05304518 want += s->rdmaqs + s->rdmaciqs + s->iscsiqsets +
4519 s->niscsitq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004520 /* need nchan for each possible ULD */
Varun Prakashf2692d12016-02-14 23:02:40 +05304521 if (is_t4(adap->params.chip))
4522 ofld_need = 3 * nchan;
4523 else
4524 ofld_need = 4 * nchan;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004525 }
Anish Bhatt688848b2014-06-19 21:37:13 -07004526#ifdef CONFIG_CHELSIO_T4_DCB
4527 /* For Data Center Bridging we need 8 Ethernet TX Priority Queues for
4528 * each port.
4529 */
4530 need = 8 * adap->params.nports + EXTRA_VECS + ofld_need;
4531#else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004532 need = adap->params.nports + EXTRA_VECS + ofld_need;
Anish Bhatt688848b2014-06-19 21:37:13 -07004533#endif
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304534 allocated = pci_enable_msix_range(adap->pdev, entries, need, want);
4535 if (allocated < 0) {
4536 dev_info(adap->pdev_dev, "not enough MSI-X vectors left,"
4537 " not using MSI-X\n");
4538 kfree(entries);
4539 return allocated;
4540 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004541
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304542 /* Distribute available vectors to the various queue groups.
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004543 * Every group gets its minimum requirement and NIC gets top
4544 * priority for leftovers.
4545 */
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304546 i = allocated - EXTRA_VECS - ofld_need;
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004547 if (i < s->max_ethqsets) {
4548 s->max_ethqsets = i;
4549 if (i < s->ethqsets)
4550 reduce_ethqs(adap, i);
4551 }
4552 if (is_offload(adap)) {
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304553 if (allocated < want) {
4554 s->rdmaqs = nchan;
4555 s->rdmaciqs = nchan;
Varun Prakashf2692d12016-02-14 23:02:40 +05304556
4557 if (!is_t4(adap->params.chip))
4558 s->niscsitq = nchan;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304559 }
4560
4561 /* leftovers go to OFLD */
4562 i = allocated - EXTRA_VECS - s->max_ethqsets -
Varun Prakashf2692d12016-02-14 23:02:40 +05304563 s->rdmaqs - s->rdmaciqs - s->niscsitq;
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304564 s->iscsiqsets = (i / nchan) * nchan; /* round down */
Varun Prakashf2692d12016-02-14 23:02:40 +05304565
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004566 }
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304567 for (i = 0; i < allocated; ++i)
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004568 adap->msix_info[i].vec = entries[i].vector;
Hariprasad Shenai43eb4e82015-10-21 14:39:53 +05304569 dev_info(adap->pdev_dev, "%d MSI-X vectors allocated, "
4570 "nic %d iscsi %d rdma cpl %d rdma ciq %d\n",
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304571 allocated, s->max_ethqsets, s->iscsiqsets, s->rdmaqs,
Hariprasad Shenai43eb4e82015-10-21 14:39:53 +05304572 s->rdmaciqs);
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004573
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304574 kfree(entries);
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004575 return 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004576}
4577
4578#undef EXTRA_VECS
4579
Bill Pemberton91744942012-12-03 09:23:02 -05004580static int init_rss(struct adapter *adap)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004581{
Hariprasad Shenaic035e182015-05-06 19:48:37 +05304582 unsigned int i;
4583 int err;
4584
4585 err = t4_init_rss_mode(adap, adap->mbox);
4586 if (err)
4587 return err;
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004588
4589 for_each_port(adap, i) {
4590 struct port_info *pi = adap2pinfo(adap, i);
4591
4592 pi->rss = kcalloc(pi->rss_size, sizeof(u16), GFP_KERNEL);
4593 if (!pi->rss)
4594 return -ENOMEM;
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004595 }
4596 return 0;
4597}
4598
Hariprasad Shenai547fd272015-12-23 11:29:53 +05304599static int cxgb4_get_pcie_dev_link_caps(struct adapter *adap,
4600 enum pci_bus_speed *speed,
4601 enum pcie_link_width *width)
4602{
4603 u32 lnkcap1, lnkcap2;
4604 int err1, err2;
4605
4606#define PCIE_MLW_CAP_SHIFT 4 /* start of MLW mask in link capabilities */
4607
4608 *speed = PCI_SPEED_UNKNOWN;
4609 *width = PCIE_LNK_WIDTH_UNKNOWN;
4610
4611 err1 = pcie_capability_read_dword(adap->pdev, PCI_EXP_LNKCAP,
4612 &lnkcap1);
4613 err2 = pcie_capability_read_dword(adap->pdev, PCI_EXP_LNKCAP2,
4614 &lnkcap2);
4615 if (!err2 && lnkcap2) { /* PCIe r3.0-compliant */
4616 if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_8_0GB)
4617 *speed = PCIE_SPEED_8_0GT;
4618 else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_5_0GB)
4619 *speed = PCIE_SPEED_5_0GT;
4620 else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_2_5GB)
4621 *speed = PCIE_SPEED_2_5GT;
4622 }
4623 if (!err1) {
4624 *width = (lnkcap1 & PCI_EXP_LNKCAP_MLW) >> PCIE_MLW_CAP_SHIFT;
4625 if (!lnkcap2) { /* pre-r3.0 */
4626 if (lnkcap1 & PCI_EXP_LNKCAP_SLS_5_0GB)
4627 *speed = PCIE_SPEED_5_0GT;
4628 else if (lnkcap1 & PCI_EXP_LNKCAP_SLS_2_5GB)
4629 *speed = PCIE_SPEED_2_5GT;
4630 }
4631 }
4632
4633 if (*speed == PCI_SPEED_UNKNOWN || *width == PCIE_LNK_WIDTH_UNKNOWN)
4634 return err1 ? err1 : err2 ? err2 : -EINVAL;
4635 return 0;
4636}
4637
4638static void cxgb4_check_pcie_caps(struct adapter *adap)
4639{
4640 enum pcie_link_width width, width_cap;
4641 enum pci_bus_speed speed, speed_cap;
4642
4643#define PCIE_SPEED_STR(speed) \
4644 (speed == PCIE_SPEED_8_0GT ? "8.0GT/s" : \
4645 speed == PCIE_SPEED_5_0GT ? "5.0GT/s" : \
4646 speed == PCIE_SPEED_2_5GT ? "2.5GT/s" : \
4647 "Unknown")
4648
4649 if (cxgb4_get_pcie_dev_link_caps(adap, &speed_cap, &width_cap)) {
4650 dev_warn(adap->pdev_dev,
4651 "Unable to determine PCIe device BW capabilities\n");
4652 return;
4653 }
4654
4655 if (pcie_get_minimum_link(adap->pdev, &speed, &width) ||
4656 speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) {
4657 dev_warn(adap->pdev_dev,
4658 "Unable to determine PCI Express bandwidth.\n");
4659 return;
4660 }
4661
4662 dev_info(adap->pdev_dev, "PCIe link speed is %s, device supports %s\n",
4663 PCIE_SPEED_STR(speed), PCIE_SPEED_STR(speed_cap));
4664 dev_info(adap->pdev_dev, "PCIe link width is x%d, device supports x%d\n",
4665 width, width_cap);
4666 if (speed < speed_cap || width < width_cap)
4667 dev_info(adap->pdev_dev,
4668 "A slot with more lanes and/or higher speed is "
4669 "suggested for optimal performance.\n");
4670}
4671
Hariprasad Shenai0de72732016-04-26 20:10:22 +05304672/* Dump basic information about the adapter */
4673static void print_adapter_info(struct adapter *adapter)
4674{
4675 /* Device information */
4676 dev_info(adapter->pdev_dev, "Chelsio %s rev %d\n",
4677 adapter->params.vpd.id,
4678 CHELSIO_CHIP_RELEASE(adapter->params.chip));
4679 dev_info(adapter->pdev_dev, "S/N: %s, P/N: %s\n",
4680 adapter->params.vpd.sn, adapter->params.vpd.pn);
4681
4682 /* Firmware Version */
4683 if (!adapter->params.fw_vers)
4684 dev_warn(adapter->pdev_dev, "No firmware loaded\n");
4685 else
4686 dev_info(adapter->pdev_dev, "Firmware version: %u.%u.%u.%u\n",
4687 FW_HDR_FW_VER_MAJOR_G(adapter->params.fw_vers),
4688 FW_HDR_FW_VER_MINOR_G(adapter->params.fw_vers),
4689 FW_HDR_FW_VER_MICRO_G(adapter->params.fw_vers),
4690 FW_HDR_FW_VER_BUILD_G(adapter->params.fw_vers));
4691
4692 /* Bootstrap Firmware Version. (Some adapters don't have Bootstrap
4693 * Firmware, so dev_info() is more appropriate here.)
4694 */
4695 if (!adapter->params.bs_vers)
4696 dev_info(adapter->pdev_dev, "No bootstrap loaded\n");
4697 else
4698 dev_info(adapter->pdev_dev, "Bootstrap version: %u.%u.%u.%u\n",
4699 FW_HDR_FW_VER_MAJOR_G(adapter->params.bs_vers),
4700 FW_HDR_FW_VER_MINOR_G(adapter->params.bs_vers),
4701 FW_HDR_FW_VER_MICRO_G(adapter->params.bs_vers),
4702 FW_HDR_FW_VER_BUILD_G(adapter->params.bs_vers));
4703
4704 /* TP Microcode Version */
4705 if (!adapter->params.tp_vers)
4706 dev_warn(adapter->pdev_dev, "No TP Microcode loaded\n");
4707 else
4708 dev_info(adapter->pdev_dev,
4709 "TP Microcode version: %u.%u.%u.%u\n",
4710 FW_HDR_FW_VER_MAJOR_G(adapter->params.tp_vers),
4711 FW_HDR_FW_VER_MINOR_G(adapter->params.tp_vers),
4712 FW_HDR_FW_VER_MICRO_G(adapter->params.tp_vers),
4713 FW_HDR_FW_VER_BUILD_G(adapter->params.tp_vers));
4714
4715 /* Expansion ROM version */
4716 if (!adapter->params.er_vers)
4717 dev_info(adapter->pdev_dev, "No Expansion ROM loaded\n");
4718 else
4719 dev_info(adapter->pdev_dev,
4720 "Expansion ROM version: %u.%u.%u.%u\n",
4721 FW_HDR_FW_VER_MAJOR_G(adapter->params.er_vers),
4722 FW_HDR_FW_VER_MINOR_G(adapter->params.er_vers),
4723 FW_HDR_FW_VER_MICRO_G(adapter->params.er_vers),
4724 FW_HDR_FW_VER_BUILD_G(adapter->params.er_vers));
4725
4726 /* Software/Hardware configuration */
4727 dev_info(adapter->pdev_dev, "Configuration: %sNIC %s, %s capable\n",
4728 is_offload(adapter) ? "R" : "",
4729 ((adapter->flags & USING_MSIX) ? "MSI-X" :
4730 (adapter->flags & USING_MSI) ? "MSI" : ""),
4731 is_offload(adapter) ? "Offload" : "non-Offload");
4732}
4733
Bill Pemberton91744942012-12-03 09:23:02 -05004734static void print_port_info(const struct net_device *dev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004735{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004736 char buf[80];
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004737 char *bufp = buf;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00004738 const char *spd = "";
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004739 const struct port_info *pi = netdev_priv(dev);
4740 const struct adapter *adap = pi->adapter;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00004741
4742 if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_2_5GB)
4743 spd = " 2.5 GT/s";
4744 else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_5_0GB)
4745 spd = " 5 GT/s";
Roland Dreierd2e752d2014-04-28 17:36:20 -07004746 else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_8_0GB)
4747 spd = " 8 GT/s";
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004748
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004749 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_100M)
4750 bufp += sprintf(bufp, "100/");
4751 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_1G)
4752 bufp += sprintf(bufp, "1000/");
4753 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_10G)
4754 bufp += sprintf(bufp, "10G/");
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05304755 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_40G)
4756 bufp += sprintf(bufp, "40G/");
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004757 if (bufp != buf)
4758 --bufp;
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05304759 sprintf(bufp, "BASE-%s", t4_get_port_type_description(pi->port_type));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004760
Hariprasad Shenai0de72732016-04-26 20:10:22 +05304761 netdev_info(dev, "%s: Chelsio %s (%s) %s\n",
4762 dev->name, adap->params.vpd.id, adap->name, buf);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004763}
4764
Bill Pemberton91744942012-12-03 09:23:02 -05004765static void enable_pcie_relaxed_ordering(struct pci_dev *dev)
Dimitris Michailidisef306b52010-12-14 21:36:44 +00004766{
Jiang Liue5c8ae52012-08-20 13:53:19 -06004767 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_RELAX_EN);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00004768}
4769
Dimitris Michailidis06546392010-07-11 12:01:16 +00004770/*
4771 * Free the following resources:
4772 * - memory used for tables
4773 * - MSI/MSI-X
4774 * - net devices
4775 * - resources FW is holding for us
4776 */
4777static void free_some_resources(struct adapter *adapter)
4778{
4779 unsigned int i;
4780
4781 t4_free_mem(adapter->l2t);
4782 t4_free_mem(adapter->tids.tid_tab);
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05304783 kfree(adapter->sge.egr_map);
4784 kfree(adapter->sge.ingr_map);
4785 kfree(adapter->sge.starving_fl);
4786 kfree(adapter->sge.txq_maperr);
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05304787#ifdef CONFIG_DEBUG_FS
4788 kfree(adapter->sge.blocked_fl);
4789#endif
Dimitris Michailidis06546392010-07-11 12:01:16 +00004790 disable_msi(adapter);
4791
4792 for_each_port(adapter, i)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004793 if (adapter->port[i]) {
Hariprasad Shenai4f3a0fc2015-06-05 14:24:47 +05304794 struct port_info *pi = adap2pinfo(adapter, i);
4795
4796 if (pi->viid != 0)
4797 t4_free_vi(adapter, adapter->mbox, adapter->pf,
4798 0, pi->viid);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004799 kfree(adap2pinfo(adapter, i)->rss);
Dimitris Michailidis06546392010-07-11 12:01:16 +00004800 free_netdev(adapter->port[i]);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004801 }
Dimitris Michailidis06546392010-07-11 12:01:16 +00004802 if (adapter->flags & FW_OK)
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304803 t4_fw_bye(adapter, adapter->pf);
Dimitris Michailidis06546392010-07-11 12:01:16 +00004804}
4805
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00004806#define TSO_FLAGS (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN)
Dimitris Michailidis35d35682010-08-02 13:19:20 +00004807#define VLAN_FEAT (NETIF_F_SG | NETIF_F_IP_CSUM | TSO_FLAGS | \
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004808 NETIF_F_IPV6_CSUM | NETIF_F_HIGHDMA)
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004809#define SEGMENT_SIZE 128
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004810
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304811static int get_chip_type(struct pci_dev *pdev, u32 pl_rev)
4812{
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304813 u16 device_id;
4814
4815 /* Retrieve adapter's device ID */
4816 pci_read_config_word(pdev, PCI_DEVICE_ID, &device_id);
françois romieu46cdc9b2015-09-04 23:05:42 +02004817
4818 switch (device_id >> 12) {
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304819 case CHELSIO_T4:
françois romieu46cdc9b2015-09-04 23:05:42 +02004820 return CHELSIO_CHIP_CODE(CHELSIO_T4, pl_rev);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304821 case CHELSIO_T5:
françois romieu46cdc9b2015-09-04 23:05:42 +02004822 return CHELSIO_CHIP_CODE(CHELSIO_T5, pl_rev);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304823 case CHELSIO_T6:
françois romieu46cdc9b2015-09-04 23:05:42 +02004824 return CHELSIO_CHIP_CODE(CHELSIO_T6, pl_rev);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304825 default:
4826 dev_err(&pdev->dev, "Device %d is not supported\n",
4827 device_id);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304828 }
françois romieu46cdc9b2015-09-04 23:05:42 +02004829 return -EINVAL;
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304830}
4831
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00004832static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004833{
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004834 int func, i, err, s_qpp, qpp, num_seg;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004835 struct port_info *pi;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00004836 bool highdma = false;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004837 struct adapter *adapter = NULL;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304838 void __iomem *regs;
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304839 u32 whoami, pl_rev;
4840 enum chip_type chip;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004841
4842 printk_once(KERN_INFO "%s - version %s\n", DRV_DESC, DRV_VERSION);
4843
4844 err = pci_request_regions(pdev, KBUILD_MODNAME);
4845 if (err) {
4846 /* Just info, some other driver may have claimed the device. */
4847 dev_info(&pdev->dev, "cannot obtain PCI resources\n");
4848 return err;
4849 }
4850
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004851 err = pci_enable_device(pdev);
4852 if (err) {
4853 dev_err(&pdev->dev, "cannot enable PCI device\n");
4854 goto out_release_regions;
4855 }
4856
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304857 regs = pci_ioremap_bar(pdev, 0);
4858 if (!regs) {
4859 dev_err(&pdev->dev, "cannot map device registers\n");
4860 err = -ENOMEM;
4861 goto out_disable_device;
4862 }
4863
Hariprasad Shenai8203b502014-10-09 05:48:47 +05304864 err = t4_wait_dev_ready(regs);
4865 if (err < 0)
4866 goto out_unmap_bar0;
4867
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304868 /* We control everything through one PF */
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304869 whoami = readl(regs + PL_WHOAMI_A);
4870 pl_rev = REV_G(readl(regs + PL_REV_A));
4871 chip = get_chip_type(pdev, pl_rev);
4872 func = CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5 ?
4873 SOURCEPF_G(whoami) : T6_SOURCEPF_G(whoami);
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304874 if (func != ent->driver_data) {
4875 iounmap(regs);
4876 pci_disable_device(pdev);
4877 pci_save_state(pdev); /* to restore SR-IOV later */
4878 goto sriov;
4879 }
4880
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004881 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
Michał Mirosławc8f44af2011-11-15 15:29:55 +00004882 highdma = true;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004883 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
4884 if (err) {
4885 dev_err(&pdev->dev, "unable to obtain 64-bit DMA for "
4886 "coherent allocations\n");
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304887 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004888 }
4889 } else {
4890 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
4891 if (err) {
4892 dev_err(&pdev->dev, "no usable DMA configuration\n");
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304893 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004894 }
4895 }
4896
4897 pci_enable_pcie_error_reporting(pdev);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00004898 enable_pcie_relaxed_ordering(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004899 pci_set_master(pdev);
4900 pci_save_state(pdev);
4901
4902 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
4903 if (!adapter) {
4904 err = -ENOMEM;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304905 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004906 }
4907
Anish Bhatt29aaee62014-08-20 13:44:06 -07004908 adapter->workq = create_singlethread_workqueue("cxgb4");
4909 if (!adapter->workq) {
4910 err = -ENOMEM;
4911 goto out_free_adapter;
4912 }
4913
Hariprasad Shenai7f080c32016-04-28 13:23:18 +05304914 adapter->mbox_log = kzalloc(sizeof(*adapter->mbox_log) +
4915 (sizeof(struct mbox_cmd) *
4916 T4_OS_LOG_MBOX_CMDS),
4917 GFP_KERNEL);
4918 if (!adapter->mbox_log) {
4919 err = -ENOMEM;
4920 goto out_free_adapter;
4921 }
4922 adapter->mbox_log->size = T4_OS_LOG_MBOX_CMDS;
4923
Gavin Shan144be3d2014-01-23 12:27:34 +08004924 /* PCI device has been enabled */
4925 adapter->flags |= DEV_ENABLED;
4926
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304927 adapter->regs = regs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004928 adapter->pdev = pdev;
4929 adapter->pdev_dev = &pdev->dev;
Hariprasad Shenai0de72732016-04-26 20:10:22 +05304930 adapter->name = pci_name(pdev);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304931 adapter->mbox = func;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304932 adapter->pf = func;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004933 adapter->msg_enable = dflt_msg_enable;
4934 memset(adapter->chan_map, 0xff, sizeof(adapter->chan_map));
4935
4936 spin_lock_init(&adapter->stats_lock);
4937 spin_lock_init(&adapter->tid_release_lock);
Anish Bhatte327c222014-10-29 17:54:03 -07004938 spin_lock_init(&adapter->win0_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004939
4940 INIT_WORK(&adapter->tid_release_task, process_tid_release_list);
Vipul Pandya881806b2012-05-18 15:29:24 +05304941 INIT_WORK(&adapter->db_full_task, process_db_full);
4942 INIT_WORK(&adapter->db_drop_task, process_db_drop);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004943
4944 err = t4_prep_adapter(adapter);
4945 if (err)
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304946 goto out_free_adapter;
4947
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004948
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05304949 if (!is_t4(adapter->params.chip)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05304950 s_qpp = (QUEUESPERPAGEPF0_S +
4951 (QUEUESPERPAGEPF1_S - QUEUESPERPAGEPF0_S) *
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304952 adapter->pf);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05304953 qpp = 1 << QUEUESPERPAGEPF0_G(t4_read_reg(adapter,
4954 SGE_EGRESS_QUEUES_PER_PAGE_PF_A) >> s_qpp);
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004955 num_seg = PAGE_SIZE / SEGMENT_SIZE;
4956
4957 /* Each segment size is 128B. Write coalescing is enabled only
4958 * when SGE_EGRESS_QUEUES_PER_PAGE_PF reg value for the
4959 * queue is less no of segments that can be accommodated in
4960 * a page size.
4961 */
4962 if (qpp > num_seg) {
4963 dev_err(&pdev->dev,
4964 "Incorrect number of egress queues per page\n");
4965 err = -EINVAL;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304966 goto out_free_adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004967 }
4968 adapter->bar2 = ioremap_wc(pci_resource_start(pdev, 2),
4969 pci_resource_len(pdev, 2));
4970 if (!adapter->bar2) {
4971 dev_err(&pdev->dev, "cannot map device bar2 region\n");
4972 err = -ENOMEM;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304973 goto out_free_adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004974 }
4975 }
4976
Vipul Pandya636f9d32012-09-26 02:39:39 +00004977 setup_memwin(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004978 err = adap_init0(adapter);
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05304979#ifdef CONFIG_DEBUG_FS
4980 bitmap_zero(adapter->sge.blocked_fl, adapter->sge.egr_sz);
4981#endif
Vipul Pandya636f9d32012-09-26 02:39:39 +00004982 setup_memwin_rdma(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004983 if (err)
4984 goto out_unmap_bar;
4985
Hariprasad Shenai2a485cf2015-09-08 16:25:40 +05304986 /* configure SGE_STAT_CFG_A to read WC stats */
4987 if (!is_t4(adapter->params.chip))
Hariprasad Shenai676d6a72015-12-23 22:47:14 +05304988 t4_write_reg(adapter, SGE_STAT_CFG_A, STATSOURCE_T5_V(7) |
4989 (is_t5(adapter->params.chip) ? STATMODE_V(0) :
4990 T6_STATMODE_V(0)));
Hariprasad Shenai2a485cf2015-09-08 16:25:40 +05304991
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004992 for_each_port(adapter, i) {
4993 struct net_device *netdev;
4994
4995 netdev = alloc_etherdev_mq(sizeof(struct port_info),
4996 MAX_ETH_QSETS);
4997 if (!netdev) {
4998 err = -ENOMEM;
4999 goto out_free_dev;
5000 }
5001
5002 SET_NETDEV_DEV(netdev, &pdev->dev);
5003
5004 adapter->port[i] = netdev;
5005 pi = netdev_priv(netdev);
5006 pi->adapter = adapter;
5007 pi->xact_addr_filt = -1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005008 pi->port_id = i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005009 netdev->irq = pdev->irq;
5010
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00005011 netdev->hw_features = NETIF_F_SG | TSO_FLAGS |
5012 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
5013 NETIF_F_RXCSUM | NETIF_F_RXHASH |
Patrick McHardyf6469682013-04-19 02:04:27 +00005014 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005015 if (highdma)
5016 netdev->hw_features |= NETIF_F_HIGHDMA;
5017 netdev->features |= netdev->hw_features;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005018 netdev->vlan_features = netdev->features & VLAN_FEAT;
5019
Jiri Pirko01789342011-08-16 06:29:00 +00005020 netdev->priv_flags |= IFF_UNICAST_FLT;
5021
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005022 netdev->netdev_ops = &cxgb4_netdev_ops;
Anish Bhatt688848b2014-06-19 21:37:13 -07005023#ifdef CONFIG_CHELSIO_T4_DCB
5024 netdev->dcbnl_ops = &cxgb4_dcb_ops;
5025 cxgb4_dcb_state_init(netdev);
5026#endif
Hariprasad Shenai812034f2015-04-06 20:23:23 +05305027 cxgb4_set_ethtool_ops(netdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005028 }
5029
5030 pci_set_drvdata(pdev, adapter);
5031
5032 if (adapter->flags & FW_OK) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00005033 err = t4_port_init(adapter, func, func, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005034 if (err)
5035 goto out_free_dev;
Hariprasad Shenai098ef6c2015-06-05 14:24:50 +05305036 } else if (adapter->params.nports == 1) {
5037 /* If we don't have a connection to the firmware -- possibly
5038 * because of an error -- grab the raw VPD parameters so we
5039 * can set the proper MAC Address on the debug network
5040 * interface that we've created.
5041 */
5042 u8 hw_addr[ETH_ALEN];
5043 u8 *na = adapter->params.vpd.na;
5044
5045 err = t4_get_raw_vpd_params(adapter, &adapter->params.vpd);
5046 if (!err) {
5047 for (i = 0; i < ETH_ALEN; i++)
5048 hw_addr[i] = (hex2val(na[2 * i + 0]) * 16 +
5049 hex2val(na[2 * i + 1]));
5050 t4_set_hw_addr(adapter, 0, hw_addr);
5051 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005052 }
5053
Hariprasad Shenai098ef6c2015-06-05 14:24:50 +05305054 /* Configure queues and allocate tables now, they can be needed as
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005055 * soon as the first register_netdev completes.
5056 */
5057 cfg_queues(adapter);
5058
Hariprasad Shenai5be9ed82015-07-07 21:49:18 +05305059 adapter->l2t = t4_init_l2t(adapter->l2t_start, adapter->l2t_end);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005060 if (!adapter->l2t) {
5061 /* We tolerate a lack of L2T, giving up some functionality */
5062 dev_warn(&pdev->dev, "could not allocate L2T, continuing\n");
5063 adapter->params.offload = 0;
5064 }
5065
Anish Bhattb5a02f52015-01-14 15:17:34 -08005066#if IS_ENABLED(CONFIG_IPV6)
Hariprasad Shenaieb72f742015-12-09 17:16:35 +05305067 if ((CHELSIO_CHIP_VERSION(adapter->params.chip) <= CHELSIO_T5) &&
5068 (!(t4_read_reg(adapter, LE_DB_CONFIG_A) & ASLIPCOMPEN_F))) {
5069 /* CLIP functionality is not present in hardware,
5070 * hence disable all offload features
Anish Bhattb5a02f52015-01-14 15:17:34 -08005071 */
5072 dev_warn(&pdev->dev,
Hariprasad Shenaieb72f742015-12-09 17:16:35 +05305073 "CLIP not enabled in hardware, continuing\n");
Anish Bhattb5a02f52015-01-14 15:17:34 -08005074 adapter->params.offload = 0;
Hariprasad Shenaieb72f742015-12-09 17:16:35 +05305075 } else {
5076 adapter->clipt = t4_init_clip_tbl(adapter->clipt_start,
5077 adapter->clipt_end);
5078 if (!adapter->clipt) {
5079 /* We tolerate a lack of clip_table, giving up
5080 * some functionality
5081 */
5082 dev_warn(&pdev->dev,
5083 "could not allocate Clip table, continuing\n");
5084 adapter->params.offload = 0;
5085 }
Anish Bhattb5a02f52015-01-14 15:17:34 -08005086 }
5087#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005088 if (is_offload(adapter) && tid_init(&adapter->tids) < 0) {
5089 dev_warn(&pdev->dev, "could not allocate TID table, "
5090 "continuing\n");
5091 adapter->params.offload = 0;
5092 }
5093
Hariprasad Shenai9a1bb9f2015-08-12 16:55:05 +05305094 if (is_offload(adapter)) {
5095 if (t4_read_reg(adapter, LE_DB_CONFIG_A) & HASHEN_F) {
5096 u32 hash_base, hash_reg;
5097
5098 if (chip <= CHELSIO_T5) {
5099 hash_reg = LE_DB_TID_HASHBASE_A;
5100 hash_base = t4_read_reg(adapter, hash_reg);
5101 adapter->tids.hash_base = hash_base / 4;
5102 } else {
5103 hash_reg = T6_LE_DB_HASH_TID_BASE_A;
5104 hash_base = t4_read_reg(adapter, hash_reg);
5105 adapter->tids.hash_base = hash_base;
5106 }
5107 }
5108 }
5109
Dimitris Michailidisf7cabcd2010-07-11 12:01:15 +00005110 /* See what interrupts we'll be using */
5111 if (msi > 1 && enable_msix(adapter) == 0)
5112 adapter->flags |= USING_MSIX;
5113 else if (msi > 0 && pci_enable_msi(pdev) == 0)
5114 adapter->flags |= USING_MSI;
5115
Hariprasad Shenai547fd272015-12-23 11:29:53 +05305116 /* check for PCI Express bandwidth capabiltites */
5117 cxgb4_check_pcie_caps(adapter);
5118
Dimitris Michailidis671b0062010-07-11 12:01:17 +00005119 err = init_rss(adapter);
5120 if (err)
5121 goto out_free_dev;
5122
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005123 /*
5124 * The card is now ready to go. If any errors occur during device
5125 * registration we do not fail the whole card but rather proceed only
5126 * with the ports we manage to register successfully. However we must
5127 * register at least one net device.
5128 */
5129 for_each_port(adapter, i) {
Dimitris Michailidisa57cabe2010-12-14 21:36:46 +00005130 pi = adap2pinfo(adapter, i);
5131 netif_set_real_num_tx_queues(adapter->port[i], pi->nqsets);
5132 netif_set_real_num_rx_queues(adapter->port[i], pi->nqsets);
5133
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005134 err = register_netdev(adapter->port[i]);
5135 if (err)
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00005136 break;
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00005137 adapter->chan_map[pi->tx_chan] = i;
5138 print_port_info(adapter->port[i]);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005139 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00005140 if (i == 0) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005141 dev_err(&pdev->dev, "could not register any net devices\n");
5142 goto out_free_dev;
5143 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00005144 if (err) {
5145 dev_warn(&pdev->dev, "only %d net devices registered\n", i);
5146 err = 0;
Joe Perches6403eab2011-06-03 11:51:20 +00005147 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005148
5149 if (cxgb4_debugfs_root) {
5150 adapter->debugfs_root = debugfs_create_dir(pci_name(pdev),
5151 cxgb4_debugfs_root);
5152 setup_debugfs(adapter);
5153 }
5154
David S. Miller88c51002011-10-07 13:38:43 -04005155 /* PCIe EEH recovery on powerpc platforms needs fundamental reset */
5156 pdev->needs_freset = 1;
5157
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005158 if (is_offload(adapter))
5159 attach_ulds(adapter);
5160
Hariprasad Shenai0de72732016-04-26 20:10:22 +05305161 print_adapter_info(adapter);
5162
Hariprasad Shenai8e1e6052014-08-06 17:10:59 +05305163sriov:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005164#ifdef CONFIG_PCI_IOV
Santosh Rastapur7d6727c2013-03-14 05:08:56 +00005165 if (func < ARRAY_SIZE(num_vf) && num_vf[func] > 0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005166 if (pci_enable_sriov(pdev, num_vf[func]) == 0)
5167 dev_info(&pdev->dev,
5168 "instantiated %u virtual functions\n",
5169 num_vf[func]);
5170#endif
5171 return 0;
5172
5173 out_free_dev:
Dimitris Michailidis06546392010-07-11 12:01:16 +00005174 free_some_resources(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005175 out_unmap_bar:
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05305176 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005177 iounmap(adapter->bar2);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005178 out_free_adapter:
Anish Bhatt29aaee62014-08-20 13:44:06 -07005179 if (adapter->workq)
5180 destroy_workqueue(adapter->workq);
5181
Hariprasad Shenai7f080c32016-04-28 13:23:18 +05305182 kfree(adapter->mbox_log);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005183 kfree(adapter);
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305184 out_unmap_bar0:
5185 iounmap(regs);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005186 out_disable_device:
5187 pci_disable_pcie_error_reporting(pdev);
5188 pci_disable_device(pdev);
5189 out_release_regions:
5190 pci_release_regions(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005191 return err;
5192}
5193
Bill Pemberton91744942012-12-03 09:23:02 -05005194static void remove_one(struct pci_dev *pdev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005195{
5196 struct adapter *adapter = pci_get_drvdata(pdev);
5197
Vipul Pandya636f9d32012-09-26 02:39:39 +00005198#ifdef CONFIG_PCI_IOV
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005199 pci_disable_sriov(pdev);
5200
Vipul Pandya636f9d32012-09-26 02:39:39 +00005201#endif
5202
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005203 if (adapter) {
5204 int i;
5205
Anish Bhatt29aaee62014-08-20 13:44:06 -07005206 /* Tear down per-adapter Work Queue first since it can contain
5207 * references to our adapter data structure.
5208 */
5209 destroy_workqueue(adapter->workq);
5210
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005211 if (is_offload(adapter))
5212 detach_ulds(adapter);
5213
Hariprasad Shenaib37987e2015-03-26 10:04:26 +05305214 disable_interrupts(adapter);
5215
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005216 for_each_port(adapter, i)
Dimitris Michailidis8f3a7672010-12-14 21:36:52 +00005217 if (adapter->port[i]->reg_state == NETREG_REGISTERED)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005218 unregister_netdev(adapter->port[i]);
5219
Fabian Frederick9f16dc22014-06-27 22:51:52 +02005220 debugfs_remove_recursive(adapter->debugfs_root);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005221
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00005222 /* If we allocated filters, free up state associated with any
5223 * valid filters ...
5224 */
5225 if (adapter->tids.ftid_tab) {
5226 struct filter_entry *f = &adapter->tids.ftid_tab[0];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00005227 for (i = 0; i < (adapter->tids.nftids +
5228 adapter->tids.nsftids); i++, f++)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00005229 if (f->valid)
5230 clear_filter(adapter, f);
5231 }
5232
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00005233 if (adapter->flags & FULL_INIT_DONE)
5234 cxgb_down(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005235
Dimitris Michailidis06546392010-07-11 12:01:16 +00005236 free_some_resources(adapter);
Anish Bhattb5a02f52015-01-14 15:17:34 -08005237#if IS_ENABLED(CONFIG_IPV6)
5238 t4_cleanup_clip_tbl(adapter);
5239#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005240 iounmap(adapter->regs);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05305241 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005242 iounmap(adapter->bar2);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005243 pci_disable_pcie_error_reporting(pdev);
Gavin Shan144be3d2014-01-23 12:27:34 +08005244 if ((adapter->flags & DEV_ENABLED)) {
5245 pci_disable_device(pdev);
5246 adapter->flags &= ~DEV_ENABLED;
5247 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005248 pci_release_regions(pdev);
Hariprasad Shenai7f080c32016-04-28 13:23:18 +05305249 kfree(adapter->mbox_log);
Li RongQingee9a33b2014-06-20 17:32:36 +08005250 synchronize_rcu();
Gavin Shan8b662fe2014-01-24 17:12:03 +08005251 kfree(adapter);
Dimitris Michailidisa069ec92010-09-30 09:17:12 +00005252 } else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005253 pci_release_regions(pdev);
5254}
5255
5256static struct pci_driver cxgb4_driver = {
5257 .name = KBUILD_MODNAME,
5258 .id_table = cxgb4_pci_tbl,
5259 .probe = init_one,
Bill Pemberton91744942012-12-03 09:23:02 -05005260 .remove = remove_one,
Thadeu Lima de Souza Cascardo687d7052014-02-24 17:04:52 -03005261 .shutdown = remove_one,
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005262 .err_handler = &cxgb4_eeh,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005263};
5264
5265static int __init cxgb4_init_module(void)
5266{
5267 int ret;
5268
5269 /* Debugfs support is optional, just warn if this fails */
5270 cxgb4_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
5271 if (!cxgb4_debugfs_root)
Joe Perches428ac432013-01-06 13:34:49 +00005272 pr_warn("could not create debugfs entry, continuing\n");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005273
5274 ret = pci_register_driver(&cxgb4_driver);
Anish Bhatt29aaee62014-08-20 13:44:06 -07005275 if (ret < 0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005276 debugfs_remove(cxgb4_debugfs_root);
Vipul Pandya01bcca62013-07-04 16:10:46 +05305277
Anish Bhatt1bb60372014-10-14 20:07:22 -07005278#if IS_ENABLED(CONFIG_IPV6)
Anish Bhattb5a02f52015-01-14 15:17:34 -08005279 if (!inet6addr_registered) {
5280 register_inet6addr_notifier(&cxgb4_inet6addr_notifier);
5281 inet6addr_registered = true;
5282 }
Anish Bhatt1bb60372014-10-14 20:07:22 -07005283#endif
Vipul Pandya01bcca62013-07-04 16:10:46 +05305284
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005285 return ret;
5286}
5287
5288static void __exit cxgb4_cleanup_module(void)
5289{
Anish Bhatt1bb60372014-10-14 20:07:22 -07005290#if IS_ENABLED(CONFIG_IPV6)
Hariprasad Shenai1793c792015-01-21 20:57:52 +05305291 if (inet6addr_registered) {
Anish Bhattb5a02f52015-01-14 15:17:34 -08005292 unregister_inet6addr_notifier(&cxgb4_inet6addr_notifier);
5293 inet6addr_registered = false;
5294 }
Anish Bhatt1bb60372014-10-14 20:07:22 -07005295#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005296 pci_unregister_driver(&cxgb4_driver);
5297 debugfs_remove(cxgb4_debugfs_root); /* NULL ok */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005298}
5299
5300module_init(cxgb4_init_module);
5301module_exit(cxgb4_cleanup_module);