blob: adad73f7c8cd96137cc49d8c2c9dad33ec5eed6a [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);
171MODULE_PARM_DESC(dflt_msg_enable, "Chelsio T4 default message enable bitmap");
172
173/*
174 * The driver uses the best interrupt scheme available on a platform in the
175 * order MSI-X, MSI, legacy INTx interrupts. This parameter determines which
176 * of these schemes the driver may consider as follows:
177 *
178 * msi = 2: choose from among all three options
179 * msi = 1: only consider MSI and INTx interrupts
180 * msi = 0: force INTx interrupts
181 */
182static int msi = 2;
183
184module_param(msi, int, 0644);
185MODULE_PARM_DESC(msi, "whether to use INTx (0), MSI (1) or MSI-X (2)");
186
187/*
Vipul Pandya636f9d32012-09-26 02:39:39 +0000188 * Normally we tell the chip to deliver Ingress Packets into our DMA buffers
189 * offset by 2 bytes in order to have the IP headers line up on 4-byte
190 * boundaries. This is a requirement for many architectures which will throw
191 * a machine check fault if an attempt is made to access one of the 4-byte IP
192 * header fields on a non-4-byte boundary. And it's a major performance issue
193 * even on some architectures which allow it like some implementations of the
194 * x86 ISA. However, some architectures don't mind this and for some very
195 * edge-case performance sensitive applications (like forwarding large volumes
196 * of small packets), setting this DMA offset to 0 will decrease the number of
197 * PCI-E Bus transfers enough to measurably affect performance.
198 */
199static int rx_dma_offset = 2;
200
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000201#ifdef CONFIG_PCI_IOV
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000202/* Configure the number of PCI-E Virtual Function which are to be instantiated
203 * on SR-IOV Capable Physical Functions.
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000204 */
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000205static unsigned int num_vf[NUM_OF_PF_WITH_SRIOV];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000206
207module_param_array(num_vf, uint, NULL, 0644);
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000208MODULE_PARM_DESC(num_vf, "number of VFs for each of PFs 0-3");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000209#endif
210
Anish Bhatt688848b2014-06-19 21:37:13 -0700211/* TX Queue select used to determine what algorithm to use for selecting TX
212 * queue. Select between the kernel provided function (select_queue=0) or user
213 * cxgb_select_queue function (select_queue=1)
214 *
215 * Default: select_queue=0
216 */
217static int select_queue;
218module_param(select_queue, int, 0644);
219MODULE_PARM_DESC(select_queue,
220 "Select between kernel provided method of selecting or driver method of selecting TX queue. Default is kernel method.");
221
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000222static struct dentry *cxgb4_debugfs_root;
223
224static LIST_HEAD(adapter_list);
225static DEFINE_MUTEX(uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +0530226/* Adapter list to be accessed from atomic context */
227static LIST_HEAD(adap_rcu_list);
228static DEFINE_SPINLOCK(adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000229static struct cxgb4_uld_info ulds[CXGB4_ULD_MAX];
230static const char *uld_str[] = { "RDMA", "iSCSI" };
231
232static void link_report(struct net_device *dev)
233{
234 if (!netif_carrier_ok(dev))
235 netdev_info(dev, "link down\n");
236 else {
237 static const char *fc[] = { "no", "Rx", "Tx", "Tx/Rx" };
238
Hariprasad Shenai85412252015-10-01 13:48:48 +0530239 const char *s;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000240 const struct port_info *p = netdev_priv(dev);
241
242 switch (p->link_cfg.speed) {
Ben Hutchingse8b39012014-02-23 00:03:24 +0000243 case 10000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000244 s = "10Gbps";
245 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000246 case 1000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000247 s = "1000Mbps";
248 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000249 case 100:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000250 s = "100Mbps";
251 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000252 case 40000:
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +0530253 s = "40Gbps";
254 break;
Hariprasad Shenai85412252015-10-01 13:48:48 +0530255 default:
256 pr_info("%s: unsupported speed: %d\n",
257 dev->name, p->link_cfg.speed);
258 return;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000259 }
260
261 netdev_info(dev, "link up, %s, full-duplex, %s PAUSE\n", s,
262 fc[p->link_cfg.fc]);
263 }
264}
265
Anish Bhatt688848b2014-06-19 21:37:13 -0700266#ifdef CONFIG_CHELSIO_T4_DCB
267/* Set up/tear down Data Center Bridging Priority mapping for a net device. */
268static void dcb_tx_queue_prio_enable(struct net_device *dev, int enable)
269{
270 struct port_info *pi = netdev_priv(dev);
271 struct adapter *adap = pi->adapter;
272 struct sge_eth_txq *txq = &adap->sge.ethtxq[pi->first_qset];
273 int i;
274
275 /* We use a simple mapping of Port TX Queue Index to DCB
276 * Priority when we're enabling DCB.
277 */
278 for (i = 0; i < pi->nqsets; i++, txq++) {
279 u32 name, value;
280 int err;
281
Hariprasad Shenai51678652014-11-21 12:52:02 +0530282 name = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
283 FW_PARAMS_PARAM_X_V(
284 FW_PARAMS_PARAM_DMAQ_EQ_DCBPRIO_ETH) |
285 FW_PARAMS_PARAM_YZ_V(txq->q.cntxt_id));
Anish Bhatt688848b2014-06-19 21:37:13 -0700286 value = enable ? i : 0xffffffff;
287
288 /* Since we can be called while atomic (from "interrupt
289 * level") we need to issue the Set Parameters Commannd
290 * without sleeping (timeout < 0).
291 */
Hariprasad Shenaib2612722015-05-27 22:30:24 +0530292 err = t4_set_params_timeout(adap, adap->mbox, adap->pf, 0, 1,
Hariprasad Shenai01b69612015-05-22 21:58:21 +0530293 &name, &value,
294 -FW_CMD_MAX_TIMEOUT);
Anish Bhatt688848b2014-06-19 21:37:13 -0700295
296 if (err)
297 dev_err(adap->pdev_dev,
298 "Can't %s DCB Priority on port %d, TX Queue %d: err=%d\n",
299 enable ? "set" : "unset", pi->port_id, i, -err);
Anish Bhatt10b00462014-08-07 16:14:03 -0700300 else
301 txq->dcb_prio = value;
Anish Bhatt688848b2014-06-19 21:37:13 -0700302 }
303}
304#endif /* CONFIG_CHELSIO_T4_DCB */
305
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000306void t4_os_link_changed(struct adapter *adapter, int port_id, int link_stat)
307{
308 struct net_device *dev = adapter->port[port_id];
309
310 /* Skip changes from disabled ports. */
311 if (netif_running(dev) && link_stat != netif_carrier_ok(dev)) {
312 if (link_stat)
313 netif_carrier_on(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700314 else {
315#ifdef CONFIG_CHELSIO_T4_DCB
316 cxgb4_dcb_state_init(dev);
317 dcb_tx_queue_prio_enable(dev, false);
318#endif /* CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000319 netif_carrier_off(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700320 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000321
322 link_report(dev);
323 }
324}
325
326void t4_os_portmod_changed(const struct adapter *adap, int port_id)
327{
328 static const char *mod_str[] = {
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000329 NULL, "LR", "SR", "ER", "passive DA", "active DA", "LRM"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000330 };
331
332 const struct net_device *dev = adap->port[port_id];
333 const struct port_info *pi = netdev_priv(dev);
334
335 if (pi->mod_type == FW_PORT_MOD_TYPE_NONE)
336 netdev_info(dev, "port module unplugged\n");
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000337 else if (pi->mod_type < ARRAY_SIZE(mod_str))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000338 netdev_info(dev, "%s module inserted\n", mod_str[pi->mod_type]);
339}
340
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530341int dbfifo_int_thresh = 10; /* 10 == 640 entry threshold */
342module_param(dbfifo_int_thresh, int, 0644);
343MODULE_PARM_DESC(dbfifo_int_thresh, "doorbell fifo interrupt threshold");
344
Vipul Pandya404d9e32012-10-08 02:59:43 +0000345/*
346 * usecs to sleep while draining the dbfifo
347 */
348static int dbfifo_drain_delay = 1000;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530349module_param(dbfifo_drain_delay, int, 0644);
350MODULE_PARM_DESC(dbfifo_drain_delay,
351 "usecs to sleep while draining the dbfifo");
352
Hariprasad Shenaifc08a012016-02-16 10:07:09 +0530353static inline int cxgb4_set_addr_hash(struct port_info *pi)
354{
355 struct adapter *adap = pi->adapter;
356 u64 vec = 0;
357 bool ucast = false;
358 struct hash_mac_addr *entry;
359
360 /* Calculate the hash vector for the updated list and program it */
361 list_for_each_entry(entry, &adap->mac_hlist, list) {
362 ucast |= is_unicast_ether_addr(entry->addr);
363 vec |= (1ULL << hash_mac_addr(entry->addr));
364 }
365 return t4_set_addr_hash(adap, adap->mbox, pi->viid, ucast,
366 vec, false);
367}
368
369static int cxgb4_mac_sync(struct net_device *netdev, const u8 *mac_addr)
370{
371 struct port_info *pi = netdev_priv(netdev);
372 struct adapter *adap = pi->adapter;
373 int ret;
374 u64 mhash = 0;
375 u64 uhash = 0;
376 bool free = false;
377 bool ucast = is_unicast_ether_addr(mac_addr);
378 const u8 *maclist[1] = {mac_addr};
379 struct hash_mac_addr *new_entry;
380
381 ret = t4_alloc_mac_filt(adap, adap->mbox, pi->viid, free, 1, maclist,
382 NULL, ucast ? &uhash : &mhash, false);
383 if (ret < 0)
384 goto out;
385 /* if hash != 0, then add the addr to hash addr list
386 * so on the end we will calculate the hash for the
387 * list and program it
388 */
389 if (uhash || mhash) {
390 new_entry = kzalloc(sizeof(*new_entry), GFP_ATOMIC);
391 if (!new_entry)
392 return -ENOMEM;
393 ether_addr_copy(new_entry->addr, mac_addr);
394 list_add_tail(&new_entry->list, &adap->mac_hlist);
395 ret = cxgb4_set_addr_hash(pi);
396 }
397out:
398 return ret < 0 ? ret : 0;
399}
400
401static int cxgb4_mac_unsync(struct net_device *netdev, const u8 *mac_addr)
402{
403 struct port_info *pi = netdev_priv(netdev);
404 struct adapter *adap = pi->adapter;
405 int ret;
406 const u8 *maclist[1] = {mac_addr};
407 struct hash_mac_addr *entry, *tmp;
408
409 /* If the MAC address to be removed is in the hash addr
410 * list, delete it from the list and update hash vector
411 */
412 list_for_each_entry_safe(entry, tmp, &adap->mac_hlist, list) {
413 if (ether_addr_equal(entry->addr, mac_addr)) {
414 list_del(&entry->list);
415 kfree(entry);
416 return cxgb4_set_addr_hash(pi);
417 }
418 }
419
420 ret = t4_free_mac_filt(adap, adap->mbox, pi->viid, 1, maclist, false);
421 return ret < 0 ? -EINVAL : 0;
422}
423
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000424/*
425 * Set Rx properties of a port, such as promiscruity, address filters, and MTU.
426 * If @mtu is -1 it is left unchanged.
427 */
428static int set_rxmode(struct net_device *dev, int mtu, bool sleep_ok)
429{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000430 struct port_info *pi = netdev_priv(dev);
Hariprasad Shenaifc08a012016-02-16 10:07:09 +0530431 struct adapter *adapter = pi->adapter;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000432
Hariprasad Shenaifc08a012016-02-16 10:07:09 +0530433 if (!(dev->flags & IFF_PROMISC)) {
434 __dev_uc_sync(dev, cxgb4_mac_sync, cxgb4_mac_unsync);
435 if (!(dev->flags & IFF_ALLMULTI))
436 __dev_mc_sync(dev, cxgb4_mac_sync, cxgb4_mac_unsync);
437 }
438
439 return t4_set_rxmode(adapter, adapter->mbox, pi->viid, mtu,
440 (dev->flags & IFF_PROMISC) ? 1 : 0,
441 (dev->flags & IFF_ALLMULTI) ? 1 : 0, 1, -1,
442 sleep_ok);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000443}
444
445/**
446 * link_start - enable a port
447 * @dev: the port to enable
448 *
449 * Performs the MAC and PHY actions needed to enable a port.
450 */
451static int link_start(struct net_device *dev)
452{
453 int ret;
454 struct port_info *pi = netdev_priv(dev);
Hariprasad Shenaib2612722015-05-27 22:30:24 +0530455 unsigned int mb = pi->adapter->pf;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000456
457 /*
458 * We do not set address filters and promiscuity here, the stack does
459 * that step explicitly.
460 */
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000461 ret = t4_set_rxmode(pi->adapter, mb, pi->viid, dev->mtu, -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +0000462 !!(dev->features & NETIF_F_HW_VLAN_CTAG_RX), true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000463 if (ret == 0) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000464 ret = t4_change_mac(pi->adapter, mb, pi->viid,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000465 pi->xact_addr_filt, dev->dev_addr, true,
Dimitris Michailidisb6bd29e2010-05-18 10:07:11 +0000466 true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000467 if (ret >= 0) {
468 pi->xact_addr_filt = ret;
469 ret = 0;
470 }
471 }
472 if (ret == 0)
Hariprasad Shenai4036da92015-06-05 14:24:49 +0530473 ret = t4_link_l1cfg(pi->adapter, mb, pi->tx_chan,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000474 &pi->link_cfg);
Anish Bhatt30f00842014-08-05 16:05:23 -0700475 if (ret == 0) {
476 local_bh_disable();
Anish Bhatt688848b2014-06-19 21:37:13 -0700477 ret = t4_enable_vi_params(pi->adapter, mb, pi->viid, true,
478 true, CXGB4_DCB_ENABLED);
Anish Bhatt30f00842014-08-05 16:05:23 -0700479 local_bh_enable();
480 }
Anish Bhatt688848b2014-06-19 21:37:13 -0700481
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000482 return ret;
483}
484
Anish Bhatt688848b2014-06-19 21:37:13 -0700485int cxgb4_dcb_enabled(const struct net_device *dev)
486{
487#ifdef CONFIG_CHELSIO_T4_DCB
488 struct port_info *pi = netdev_priv(dev);
489
Anish Bhatt3bb06262014-10-23 14:37:31 -0700490 if (!pi->dcb.enabled)
491 return 0;
492
493 return ((pi->dcb.state == CXGB4_DCB_STATE_FW_ALLSYNCED) ||
494 (pi->dcb.state == CXGB4_DCB_STATE_HOST));
Anish Bhatt688848b2014-06-19 21:37:13 -0700495#else
496 return 0;
497#endif
498}
499EXPORT_SYMBOL(cxgb4_dcb_enabled);
500
501#ifdef CONFIG_CHELSIO_T4_DCB
502/* Handle a Data Center Bridging update message from the firmware. */
503static void dcb_rpl(struct adapter *adap, const struct fw_port_cmd *pcmd)
504{
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530505 int port = FW_PORT_CMD_PORTID_G(ntohl(pcmd->op_to_portid));
Anish Bhatt688848b2014-06-19 21:37:13 -0700506 struct net_device *dev = adap->port[port];
507 int old_dcb_enabled = cxgb4_dcb_enabled(dev);
508 int new_dcb_enabled;
509
510 cxgb4_dcb_handle_fw_update(adap, pcmd);
511 new_dcb_enabled = cxgb4_dcb_enabled(dev);
512
513 /* If the DCB has become enabled or disabled on the port then we're
514 * going to need to set up/tear down DCB Priority parameters for the
515 * TX Queues associated with the port.
516 */
517 if (new_dcb_enabled != old_dcb_enabled)
518 dcb_tx_queue_prio_enable(dev, new_dcb_enabled);
519}
520#endif /* CONFIG_CHELSIO_T4_DCB */
521
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000522/* Clear a filter and release any of its resources that we own. This also
523 * clears the filter's "pending" status.
524 */
525static void clear_filter(struct adapter *adap, struct filter_entry *f)
526{
527 /* If the new or old filter have loopback rewriteing rules then we'll
528 * need to free any existing Layer Two Table (L2T) entries of the old
529 * filter rule. The firmware will handle freeing up any Source MAC
530 * Table (SMT) entries used for rewriting Source MAC Addresses in
531 * loopback rules.
532 */
533 if (f->l2t)
534 cxgb4_l2t_release(f->l2t);
535
536 /* The zeroing of the filter rule below clears the filter valid,
537 * pending, locked flags, l2t pointer, etc. so it's all we need for
538 * this operation.
539 */
540 memset(f, 0, sizeof(*f));
541}
542
543/* Handle a filter write/deletion reply.
544 */
545static void filter_rpl(struct adapter *adap, const struct cpl_set_tcb_rpl *rpl)
546{
547 unsigned int idx = GET_TID(rpl);
548 unsigned int nidx = idx - adap->tids.ftid_base;
549 unsigned int ret;
550 struct filter_entry *f;
551
552 if (idx >= adap->tids.ftid_base && nidx <
553 (adap->tids.nftids + adap->tids.nsftids)) {
554 idx = nidx;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800555 ret = TCB_COOKIE_G(rpl->cookie);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000556 f = &adap->tids.ftid_tab[idx];
557
558 if (ret == FW_FILTER_WR_FLT_DELETED) {
559 /* Clear the filter when we get confirmation from the
560 * hardware that the filter has been deleted.
561 */
562 clear_filter(adap, f);
563 } else if (ret == FW_FILTER_WR_SMT_TBL_FULL) {
564 dev_err(adap->pdev_dev, "filter %u setup failed due to full SMT\n",
565 idx);
566 clear_filter(adap, f);
567 } else if (ret == FW_FILTER_WR_FLT_ADDED) {
568 f->smtidx = (be64_to_cpu(rpl->oldval) >> 24) & 0xff;
569 f->pending = 0; /* asynchronous setup completed */
570 f->valid = 1;
571 } else {
572 /* Something went wrong. Issue a warning about the
573 * problem and clear everything out.
574 */
575 dev_err(adap->pdev_dev, "filter %u setup failed with error %u\n",
576 idx, ret);
577 clear_filter(adap, f);
578 }
579 }
580}
581
582/* Response queue handler for the FW event queue.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000583 */
584static int fwevtq_handler(struct sge_rspq *q, const __be64 *rsp,
585 const struct pkt_gl *gl)
586{
587 u8 opcode = ((const struct rss_header *)rsp)->opcode;
588
589 rsp++; /* skip RSS header */
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000590
591 /* FW can send EGR_UPDATEs encapsulated in a CPL_FW4_MSG.
592 */
593 if (unlikely(opcode == CPL_FW4_MSG &&
594 ((const struct cpl_fw4_msg *)rsp)->type == FW_TYPE_RSSCPL)) {
595 rsp++;
596 opcode = ((const struct rss_header *)rsp)->opcode;
597 rsp++;
598 if (opcode != CPL_SGE_EGR_UPDATE) {
599 dev_err(q->adap->pdev_dev, "unexpected FW4/CPL %#x on FW event queue\n"
600 , opcode);
601 goto out;
602 }
603 }
604
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000605 if (likely(opcode == CPL_SGE_EGR_UPDATE)) {
606 const struct cpl_sge_egr_update *p = (void *)rsp;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800607 unsigned int qid = EGR_QID_G(ntohl(p->opcode_qid));
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000608 struct sge_txq *txq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000609
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000610 txq = q->adap->sge.egr_map[qid - q->adap->sge.egr_start];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000611 txq->restarts++;
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000612 if ((u8 *)txq < (u8 *)q->adap->sge.ofldtxq) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000613 struct sge_eth_txq *eq;
614
615 eq = container_of(txq, struct sge_eth_txq, q);
616 netif_tx_wake_queue(eq->txq);
617 } else {
618 struct sge_ofld_txq *oq;
619
620 oq = container_of(txq, struct sge_ofld_txq, q);
621 tasklet_schedule(&oq->qresume_tsk);
622 }
623 } else if (opcode == CPL_FW6_MSG || opcode == CPL_FW4_MSG) {
624 const struct cpl_fw6_msg *p = (void *)rsp;
625
Anish Bhatt688848b2014-06-19 21:37:13 -0700626#ifdef CONFIG_CHELSIO_T4_DCB
627 const struct fw_port_cmd *pcmd = (const void *)p->data;
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530628 unsigned int cmd = FW_CMD_OP_G(ntohl(pcmd->op_to_portid));
Anish Bhatt688848b2014-06-19 21:37:13 -0700629 unsigned int action =
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530630 FW_PORT_CMD_ACTION_G(ntohl(pcmd->action_to_len16));
Anish Bhatt688848b2014-06-19 21:37:13 -0700631
632 if (cmd == FW_PORT_CMD &&
633 action == FW_PORT_ACTION_GET_PORT_INFO) {
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530634 int port = FW_PORT_CMD_PORTID_G(
Anish Bhatt688848b2014-06-19 21:37:13 -0700635 be32_to_cpu(pcmd->op_to_portid));
636 struct net_device *dev = q->adap->port[port];
637 int state_input = ((pcmd->u.info.dcbxdis_pkd &
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530638 FW_PORT_CMD_DCBXDIS_F)
Anish Bhatt688848b2014-06-19 21:37:13 -0700639 ? CXGB4_DCB_INPUT_FW_DISABLED
640 : CXGB4_DCB_INPUT_FW_ENABLED);
641
642 cxgb4_dcb_state_fsm(dev, state_input);
643 }
644
645 if (cmd == FW_PORT_CMD &&
646 action == FW_PORT_ACTION_L2_DCB_CFG)
647 dcb_rpl(q->adap, pcmd);
648 else
649#endif
650 if (p->type == 0)
651 t4_handle_fw_rpl(q->adap, p->data);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000652 } else if (opcode == CPL_L2T_WRITE_RPL) {
653 const struct cpl_l2t_write_rpl *p = (void *)rsp;
654
655 do_l2t_write_rpl(q->adap, p);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000656 } else if (opcode == CPL_SET_TCB_RPL) {
657 const struct cpl_set_tcb_rpl *p = (void *)rsp;
658
659 filter_rpl(q->adap, p);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000660 } else
661 dev_err(q->adap->pdev_dev,
662 "unexpected CPL %#x on FW event queue\n", opcode);
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000663out:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000664 return 0;
665}
666
667/**
668 * uldrx_handler - response queue handler for ULD queues
669 * @q: the response queue that received the packet
670 * @rsp: the response queue descriptor holding the offload message
671 * @gl: the gather list of packet fragments
672 *
673 * Deliver an ingress offload packet to a ULD. All processing is done by
674 * the ULD, we just maintain statistics.
675 */
676static int uldrx_handler(struct sge_rspq *q, const __be64 *rsp,
677 const struct pkt_gl *gl)
678{
679 struct sge_ofld_rxq *rxq = container_of(q, struct sge_ofld_rxq, rspq);
680
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000681 /* FW can send CPLs encapsulated in a CPL_FW4_MSG.
682 */
683 if (((const struct rss_header *)rsp)->opcode == CPL_FW4_MSG &&
684 ((const struct cpl_fw4_msg *)(rsp + 1))->type == FW_TYPE_RSSCPL)
685 rsp += 2;
686
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000687 if (ulds[q->uld].rx_handler(q->adap->uld_handle[q->uld], rsp, gl)) {
688 rxq->stats.nomem++;
689 return -1;
690 }
691 if (gl == NULL)
692 rxq->stats.imm++;
693 else if (gl == CXGB4_MSG_AN)
694 rxq->stats.an++;
695 else
696 rxq->stats.pkts++;
697 return 0;
698}
699
700static void disable_msi(struct adapter *adapter)
701{
702 if (adapter->flags & USING_MSIX) {
703 pci_disable_msix(adapter->pdev);
704 adapter->flags &= ~USING_MSIX;
705 } else if (adapter->flags & USING_MSI) {
706 pci_disable_msi(adapter->pdev);
707 adapter->flags &= ~USING_MSI;
708 }
709}
710
711/*
712 * Interrupt handler for non-data events used with MSI-X.
713 */
714static irqreturn_t t4_nondata_intr(int irq, void *cookie)
715{
716 struct adapter *adap = cookie;
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530717 u32 v = t4_read_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000718
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530719 if (v & PFSW_F) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000720 adap->swintr = 1;
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530721 t4_write_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A), v);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000722 }
Hariprasad Shenaic3c7b122015-04-15 02:02:34 +0530723 if (adap->flags & MASTER_PF)
724 t4_slow_intr_handler(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000725 return IRQ_HANDLED;
726}
727
728/*
729 * Name the MSI-X interrupts.
730 */
731static void name_msix_vecs(struct adapter *adap)
732{
Dimitris Michailidisba278162010-12-14 21:36:50 +0000733 int i, j, msi_idx = 2, n = sizeof(adap->msix_info[0].desc);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000734
735 /* non-data interrupts */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000736 snprintf(adap->msix_info[0].desc, n, "%s", adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000737
738 /* FW events */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000739 snprintf(adap->msix_info[1].desc, n, "%s-FWeventq",
740 adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000741
742 /* Ethernet queues */
743 for_each_port(adap, j) {
744 struct net_device *d = adap->port[j];
745 const struct port_info *pi = netdev_priv(d);
746
Dimitris Michailidisba278162010-12-14 21:36:50 +0000747 for (i = 0; i < pi->nqsets; i++, msi_idx++)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000748 snprintf(adap->msix_info[msi_idx].desc, n, "%s-Rx%d",
749 d->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000750 }
751
752 /* offload queues */
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530753 for_each_iscsirxq(&adap->sge, i)
754 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-iscsi%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000755 adap->port[0]->name, i);
Dimitris Michailidisba278162010-12-14 21:36:50 +0000756
757 for_each_rdmarxq(&adap->sge, i)
758 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000759 adap->port[0]->name, i);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530760
761 for_each_rdmaciq(&adap->sge, i)
762 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma-ciq%d",
763 adap->port[0]->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000764}
765
766static int request_msix_queue_irqs(struct adapter *adap)
767{
768 struct sge *s = &adap->sge;
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530769 int err, ethqidx, iscsiqidx = 0, rdmaqidx = 0, rdmaciqqidx = 0;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530770 int msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000771
772 err = request_irq(adap->msix_info[1].vec, t4_sge_intr_msix, 0,
773 adap->msix_info[1].desc, &s->fw_evtq);
774 if (err)
775 return err;
776
777 for_each_ethrxq(s, ethqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000778 err = request_irq(adap->msix_info[msi_index].vec,
779 t4_sge_intr_msix, 0,
780 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000781 &s->ethrxq[ethqidx].rspq);
782 if (err)
783 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000784 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000785 }
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530786 for_each_iscsirxq(s, iscsiqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000787 err = request_irq(adap->msix_info[msi_index].vec,
788 t4_sge_intr_msix, 0,
789 adap->msix_info[msi_index].desc,
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530790 &s->iscsirxq[iscsiqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000791 if (err)
792 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000793 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000794 }
795 for_each_rdmarxq(s, rdmaqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000796 err = request_irq(adap->msix_info[msi_index].vec,
797 t4_sge_intr_msix, 0,
798 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000799 &s->rdmarxq[rdmaqidx].rspq);
800 if (err)
801 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000802 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000803 }
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530804 for_each_rdmaciq(s, rdmaciqqidx) {
805 err = request_irq(adap->msix_info[msi_index].vec,
806 t4_sge_intr_msix, 0,
807 adap->msix_info[msi_index].desc,
808 &s->rdmaciq[rdmaciqqidx].rspq);
809 if (err)
810 goto unwind;
811 msi_index++;
812 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000813 return 0;
814
815unwind:
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530816 while (--rdmaciqqidx >= 0)
817 free_irq(adap->msix_info[--msi_index].vec,
818 &s->rdmaciq[rdmaciqqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000819 while (--rdmaqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000820 free_irq(adap->msix_info[--msi_index].vec,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000821 &s->rdmarxq[rdmaqidx].rspq);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530822 while (--iscsiqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000823 free_irq(adap->msix_info[--msi_index].vec,
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530824 &s->iscsirxq[iscsiqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000825 while (--ethqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000826 free_irq(adap->msix_info[--msi_index].vec,
827 &s->ethrxq[ethqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000828 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
829 return err;
830}
831
832static void free_msix_queue_irqs(struct adapter *adap)
833{
Vipul Pandya404d9e32012-10-08 02:59:43 +0000834 int i, msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000835 struct sge *s = &adap->sge;
836
837 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
838 for_each_ethrxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000839 free_irq(adap->msix_info[msi_index++].vec, &s->ethrxq[i].rspq);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +0530840 for_each_iscsirxq(s, i)
841 free_irq(adap->msix_info[msi_index++].vec,
842 &s->iscsirxq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000843 for_each_rdmarxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000844 free_irq(adap->msix_info[msi_index++].vec, &s->rdmarxq[i].rspq);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530845 for_each_rdmaciq(s, i)
846 free_irq(adap->msix_info[msi_index++].vec, &s->rdmaciq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000847}
848
849/**
Hariprasad Shenai812034f2015-04-06 20:23:23 +0530850 * cxgb4_write_rss - write the RSS table for a given port
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000851 * @pi: the port
852 * @queues: array of queue indices for RSS
853 *
854 * Sets up the portion of the HW RSS table for the port's VI to distribute
855 * packets to the Rx queues in @queues.
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530856 * Should never be called before setting up sge eth rx queues
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000857 */
Hariprasad Shenai812034f2015-04-06 20:23:23 +0530858int cxgb4_write_rss(const struct port_info *pi, const u16 *queues)
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000859{
860 u16 *rss;
861 int i, err;
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530862 struct adapter *adapter = pi->adapter;
863 const struct sge_eth_rxq *rxq;
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000864
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530865 rxq = &adapter->sge.ethrxq[pi->first_qset];
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000866 rss = kmalloc(pi->rss_size * sizeof(u16), GFP_KERNEL);
867 if (!rss)
868 return -ENOMEM;
869
870 /* map the queue indices to queue ids */
871 for (i = 0; i < pi->rss_size; i++, queues++)
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530872 rss[i] = rxq[*queues].rspq.abs_id;
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000873
Hariprasad Shenaib2612722015-05-27 22:30:24 +0530874 err = t4_config_rss_range(adapter, adapter->pf, pi->viid, 0,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000875 pi->rss_size, rss, pi->rss_size);
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530876 /* If Tunnel All Lookup isn't specified in the global RSS
877 * Configuration, then we need to specify a default Ingress
878 * Queue for any ingress packets which aren't hashed. We'll
879 * use our first ingress queue ...
880 */
881 if (!err)
882 err = t4_config_vi_rss(adapter, adapter->mbox, pi->viid,
883 FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN_F |
884 FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN_F |
885 FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN_F |
886 FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN_F |
887 FW_RSS_VI_CONFIG_CMD_UDPEN_F,
888 rss[0]);
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000889 kfree(rss);
890 return err;
891}
892
893/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000894 * setup_rss - configure RSS
895 * @adap: the adapter
896 *
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000897 * Sets up RSS for each port.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000898 */
899static int setup_rss(struct adapter *adap)
900{
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530901 int i, j, err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000902
903 for_each_port(adap, i) {
904 const struct port_info *pi = adap2pinfo(adap, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000905
Hariprasad Shenaic035e182015-05-06 19:48:37 +0530906 /* Fill default values with equal distribution */
907 for (j = 0; j < pi->rss_size; j++)
908 pi->rss[j] = j % pi->nqsets;
909
Hariprasad Shenai812034f2015-04-06 20:23:23 +0530910 err = cxgb4_write_rss(pi, pi->rss);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000911 if (err)
912 return err;
913 }
914 return 0;
915}
916
917/*
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000918 * Return the channel of the ingress queue with the given qid.
919 */
920static unsigned int rxq_to_chan(const struct sge *p, unsigned int qid)
921{
922 qid -= p->ingr_start;
923 return netdev2pinfo(p->ingr_map[qid]->netdev)->tx_chan;
924}
925
926/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000927 * Wait until all NAPI handlers are descheduled.
928 */
929static void quiesce_rx(struct adapter *adap)
930{
931 int i;
932
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +0530933 for (i = 0; i < adap->sge.ingr_sz; i++) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000934 struct sge_rspq *q = adap->sge.ingr_map[i];
935
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530936 if (q && q->handler) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000937 napi_disable(&q->napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530938 local_bh_disable();
939 while (!cxgb_poll_lock_napi(q))
940 mdelay(1);
941 local_bh_enable();
942 }
943
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000944 }
945}
946
Hariprasad Shenaib37987e2015-03-26 10:04:26 +0530947/* Disable interrupt and napi handler */
948static void disable_interrupts(struct adapter *adap)
949{
950 if (adap->flags & FULL_INIT_DONE) {
951 t4_intr_disable(adap);
952 if (adap->flags & USING_MSIX) {
953 free_msix_queue_irqs(adap);
954 free_irq(adap->msix_info[0].vec, adap);
955 } else {
956 free_irq(adap->pdev->irq, adap);
957 }
958 quiesce_rx(adap);
959 }
960}
961
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000962/*
963 * Enable NAPI scheduling and interrupt generation for all Rx queues.
964 */
965static void enable_rx(struct adapter *adap)
966{
967 int i;
968
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +0530969 for (i = 0; i < adap->sge.ingr_sz; i++) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000970 struct sge_rspq *q = adap->sge.ingr_map[i];
971
972 if (!q)
973 continue;
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530974 if (q->handler) {
975 cxgb_busy_poll_init_lock(q);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000976 napi_enable(&q->napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530977 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000978 /* 0-increment GTS to start the timer and enable interrupts */
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530979 t4_write_reg(adap, MYPF_REG(SGE_PF_GTS_A),
980 SEINTARM_V(q->intr_params) |
981 INGRESSQID_V(q->cntxt_id));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000982 }
983}
984
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +0530985static int alloc_ofld_rxqs(struct adapter *adap, struct sge_ofld_rxq *q,
986 unsigned int nq, unsigned int per_chan, int msi_idx,
987 u16 *ids)
988{
989 int i, err;
990
991 for (i = 0; i < nq; i++, q++) {
992 if (msi_idx > 0)
993 msi_idx++;
994 err = t4_sge_alloc_rxq(adap, &q->rspq, false,
995 adap->port[i / per_chan],
996 msi_idx, q->fl.size ? &q->fl : NULL,
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +0530997 uldrx_handler, 0);
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +0530998 if (err)
999 return err;
1000 memset(&q->stats, 0, sizeof(q->stats));
1001 if (ids)
1002 ids[i] = q->rspq.abs_id;
1003 }
1004 return 0;
1005}
1006
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001007/**
1008 * setup_sge_queues - configure SGE Tx/Rx/response queues
1009 * @adap: the adapter
1010 *
1011 * Determines how many sets of SGE queues to use and initializes them.
1012 * We support multiple queue sets per port if we have MSI-X, otherwise
1013 * just one queue set per port.
1014 */
1015static int setup_sge_queues(struct adapter *adap)
1016{
1017 int err, msi_idx, i, j;
1018 struct sge *s = &adap->sge;
1019
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05301020 bitmap_zero(s->starving_fl, s->egr_sz);
1021 bitmap_zero(s->txq_maperr, s->egr_sz);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001022
1023 if (adap->flags & USING_MSIX)
1024 msi_idx = 1; /* vector 0 is for non-queue interrupts */
1025 else {
1026 err = t4_sge_alloc_rxq(adap, &s->intrq, false, adap->port[0], 0,
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05301027 NULL, NULL, -1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001028 if (err)
1029 return err;
1030 msi_idx = -((int)s->intrq.abs_id + 1);
1031 }
1032
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05301033 /* NOTE: If you add/delete any Ingress/Egress Queue allocations in here,
1034 * don't forget to update the following which need to be
1035 * synchronized to and changes here.
1036 *
1037 * 1. The calculations of MAX_INGQ in cxgb4.h.
1038 *
1039 * 2. Update enable_msix/name_msix_vecs/request_msix_queue_irqs
1040 * to accommodate any new/deleted Ingress Queues
1041 * which need MSI-X Vectors.
1042 *
1043 * 3. Update sge_qinfo_show() to include information on the
1044 * new/deleted queues.
1045 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001046 err = t4_sge_alloc_rxq(adap, &s->fw_evtq, true, adap->port[0],
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05301047 msi_idx, NULL, fwevtq_handler, -1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001048 if (err) {
1049freeout: t4_free_sge_resources(adap);
1050 return err;
1051 }
1052
1053 for_each_port(adap, i) {
1054 struct net_device *dev = adap->port[i];
1055 struct port_info *pi = netdev_priv(dev);
1056 struct sge_eth_rxq *q = &s->ethrxq[pi->first_qset];
1057 struct sge_eth_txq *t = &s->ethtxq[pi->first_qset];
1058
1059 for (j = 0; j < pi->nqsets; j++, q++) {
1060 if (msi_idx > 0)
1061 msi_idx++;
1062 err = t4_sge_alloc_rxq(adap, &q->rspq, false, dev,
1063 msi_idx, &q->fl,
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05301064 t4_ethrx_handler,
1065 t4_get_mps_bg_map(adap,
1066 pi->tx_chan));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001067 if (err)
1068 goto freeout;
1069 q->rspq.idx = j;
1070 memset(&q->stats, 0, sizeof(q->stats));
1071 }
1072 for (j = 0; j < pi->nqsets; j++, t++) {
1073 err = t4_sge_alloc_eth_txq(adap, t, dev,
1074 netdev_get_tx_queue(dev, j),
1075 s->fw_evtq.cntxt_id);
1076 if (err)
1077 goto freeout;
1078 }
1079 }
1080
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05301081 j = s->iscsiqsets / adap->params.nports; /* iscsi queues per channel */
1082 for_each_iscsirxq(s, i) {
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301083 err = t4_sge_alloc_ofld_txq(adap, &s->ofldtxq[i],
1084 adap->port[i / j],
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001085 s->fw_evtq.cntxt_id);
1086 if (err)
1087 goto freeout;
1088 }
1089
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301090#define ALLOC_OFLD_RXQS(firstq, nq, per_chan, ids) do { \
1091 err = alloc_ofld_rxqs(adap, firstq, nq, per_chan, msi_idx, ids); \
1092 if (err) \
1093 goto freeout; \
1094 if (msi_idx > 0) \
1095 msi_idx += nq; \
1096} while (0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001097
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05301098 ALLOC_OFLD_RXQS(s->iscsirxq, s->iscsiqsets, j, s->iscsi_rxq);
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301099 ALLOC_OFLD_RXQS(s->rdmarxq, s->rdmaqs, 1, s->rdma_rxq);
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05301100 j = s->rdmaciqs / adap->params.nports; /* rdmaq queues per channel */
1101 ALLOC_OFLD_RXQS(s->rdmaciq, s->rdmaciqs, j, s->rdma_ciq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001102
Hariprasad Shenai1c6a5b02015-03-04 18:16:27 +05301103#undef ALLOC_OFLD_RXQS
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301104
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001105 for_each_port(adap, i) {
1106 /*
1107 * Note that ->rdmarxq[i].rspq.cntxt_id below is 0 if we don't
1108 * have RDMA queues, and that's the right value.
1109 */
1110 err = t4_sge_alloc_ctrl_txq(adap, &s->ctrlq[i], adap->port[i],
1111 s->fw_evtq.cntxt_id,
1112 s->rdmarxq[i].rspq.cntxt_id);
1113 if (err)
1114 goto freeout;
1115 }
1116
Hariprasad Shenai9bb59b92014-09-01 19:54:57 +05301117 t4_write_reg(adap, is_t4(adap->params.chip) ?
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05301118 MPS_TRC_RSS_CONTROL_A :
1119 MPS_T5_TRC_RSS_CONTROL_A,
1120 RSSCONTROL_V(netdev2pinfo(adap->port[0])->tx_chan) |
1121 QUEUENUMBER_V(s->ethrxq[0].rspq.abs_id));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001122 return 0;
1123}
1124
1125/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001126 * Allocate a chunk of memory using kmalloc or, if that fails, vmalloc.
1127 * The allocated memory is cleared.
1128 */
1129void *t4_alloc_mem(size_t size)
1130{
Joe Perches8be04b92013-06-19 12:15:53 -07001131 void *p = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001132
1133 if (!p)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001134 p = vzalloc(size);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001135 return p;
1136}
1137
1138/*
1139 * Free memory allocated through alloc_mem().
1140 */
Hariprasad Shenaifd88b312014-11-07 09:35:23 +05301141void t4_free_mem(void *addr)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001142{
Pekka Enbergd2fcb542015-06-30 14:59:12 -07001143 kvfree(addr);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001144}
1145
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001146/* Send a Work Request to write the filter at a specified index. We construct
1147 * a Firmware Filter Work Request to have the work done and put the indicated
1148 * filter into "pending" mode which will prevent any further actions against
1149 * it till we get a reply from the firmware on the completion status of the
1150 * request.
1151 */
1152static int set_filter_wr(struct adapter *adapter, int fidx)
1153{
1154 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1155 struct sk_buff *skb;
1156 struct fw_filter_wr *fwr;
1157 unsigned int ftid;
1158
Michal Hockof72f1162015-04-14 13:24:33 -07001159 skb = alloc_skb(sizeof(*fwr), GFP_KERNEL);
1160 if (!skb)
1161 return -ENOMEM;
1162
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001163 /* If the new filter requires loopback Destination MAC and/or VLAN
1164 * rewriting then we need to allocate a Layer 2 Table (L2T) entry for
1165 * the filter.
1166 */
1167 if (f->fs.newdmac || f->fs.newvlan) {
1168 /* allocate L2T entry for new filter */
Hariprasad Shenaif7502652015-12-17 13:45:08 +05301169 f->l2t = t4_l2t_alloc_switching(adapter, f->fs.vlan,
1170 f->fs.eport, f->fs.dmac);
Michal Hockof72f1162015-04-14 13:24:33 -07001171 if (f->l2t == NULL) {
1172 kfree_skb(skb);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001173 return -ENOMEM;
1174 }
1175 }
1176
1177 ftid = adapter->tids.ftid_base + fidx;
1178
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001179 fwr = (struct fw_filter_wr *)__skb_put(skb, sizeof(*fwr));
1180 memset(fwr, 0, sizeof(*fwr));
1181
1182 /* It would be nice to put most of the following in t4_hw.c but most
1183 * of the work is translating the cxgbtool ch_filter_specification
1184 * into the Work Request and the definition of that structure is
1185 * currently in cxgbtool.h which isn't appropriate to pull into the
1186 * common code. We may eventually try to come up with a more neutral
1187 * filter specification structure but for now it's easiest to simply
1188 * put this fairly direct code in line ...
1189 */
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301190 fwr->op_pkd = htonl(FW_WR_OP_V(FW_FILTER_WR));
1191 fwr->len16_pkd = htonl(FW_WR_LEN16_V(sizeof(*fwr)/16));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001192 fwr->tid_to_iq =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301193 htonl(FW_FILTER_WR_TID_V(ftid) |
1194 FW_FILTER_WR_RQTYPE_V(f->fs.type) |
1195 FW_FILTER_WR_NOREPLY_V(0) |
1196 FW_FILTER_WR_IQ_V(f->fs.iq));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001197 fwr->del_filter_to_l2tix =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301198 htonl(FW_FILTER_WR_RPTTID_V(f->fs.rpttid) |
1199 FW_FILTER_WR_DROP_V(f->fs.action == FILTER_DROP) |
1200 FW_FILTER_WR_DIRSTEER_V(f->fs.dirsteer) |
1201 FW_FILTER_WR_MASKHASH_V(f->fs.maskhash) |
1202 FW_FILTER_WR_DIRSTEERHASH_V(f->fs.dirsteerhash) |
1203 FW_FILTER_WR_LPBK_V(f->fs.action == FILTER_SWITCH) |
1204 FW_FILTER_WR_DMAC_V(f->fs.newdmac) |
1205 FW_FILTER_WR_SMAC_V(f->fs.newsmac) |
1206 FW_FILTER_WR_INSVLAN_V(f->fs.newvlan == VLAN_INSERT ||
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001207 f->fs.newvlan == VLAN_REWRITE) |
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301208 FW_FILTER_WR_RMVLAN_V(f->fs.newvlan == VLAN_REMOVE ||
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001209 f->fs.newvlan == VLAN_REWRITE) |
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301210 FW_FILTER_WR_HITCNTS_V(f->fs.hitcnts) |
1211 FW_FILTER_WR_TXCHAN_V(f->fs.eport) |
1212 FW_FILTER_WR_PRIO_V(f->fs.prio) |
1213 FW_FILTER_WR_L2TIX_V(f->l2t ? f->l2t->idx : 0));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001214 fwr->ethtype = htons(f->fs.val.ethtype);
1215 fwr->ethtypem = htons(f->fs.mask.ethtype);
1216 fwr->frag_to_ovlan_vldm =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301217 (FW_FILTER_WR_FRAG_V(f->fs.val.frag) |
1218 FW_FILTER_WR_FRAGM_V(f->fs.mask.frag) |
1219 FW_FILTER_WR_IVLAN_VLD_V(f->fs.val.ivlan_vld) |
1220 FW_FILTER_WR_OVLAN_VLD_V(f->fs.val.ovlan_vld) |
1221 FW_FILTER_WR_IVLAN_VLDM_V(f->fs.mask.ivlan_vld) |
1222 FW_FILTER_WR_OVLAN_VLDM_V(f->fs.mask.ovlan_vld));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001223 fwr->smac_sel = 0;
1224 fwr->rx_chan_rx_rpl_iq =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301225 htons(FW_FILTER_WR_RX_CHAN_V(0) |
1226 FW_FILTER_WR_RX_RPL_IQ_V(adapter->sge.fw_evtq.abs_id));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001227 fwr->maci_to_matchtypem =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301228 htonl(FW_FILTER_WR_MACI_V(f->fs.val.macidx) |
1229 FW_FILTER_WR_MACIM_V(f->fs.mask.macidx) |
1230 FW_FILTER_WR_FCOE_V(f->fs.val.fcoe) |
1231 FW_FILTER_WR_FCOEM_V(f->fs.mask.fcoe) |
1232 FW_FILTER_WR_PORT_V(f->fs.val.iport) |
1233 FW_FILTER_WR_PORTM_V(f->fs.mask.iport) |
1234 FW_FILTER_WR_MATCHTYPE_V(f->fs.val.matchtype) |
1235 FW_FILTER_WR_MATCHTYPEM_V(f->fs.mask.matchtype));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001236 fwr->ptcl = f->fs.val.proto;
1237 fwr->ptclm = f->fs.mask.proto;
1238 fwr->ttyp = f->fs.val.tos;
1239 fwr->ttypm = f->fs.mask.tos;
1240 fwr->ivlan = htons(f->fs.val.ivlan);
1241 fwr->ivlanm = htons(f->fs.mask.ivlan);
1242 fwr->ovlan = htons(f->fs.val.ovlan);
1243 fwr->ovlanm = htons(f->fs.mask.ovlan);
1244 memcpy(fwr->lip, f->fs.val.lip, sizeof(fwr->lip));
1245 memcpy(fwr->lipm, f->fs.mask.lip, sizeof(fwr->lipm));
1246 memcpy(fwr->fip, f->fs.val.fip, sizeof(fwr->fip));
1247 memcpy(fwr->fipm, f->fs.mask.fip, sizeof(fwr->fipm));
1248 fwr->lp = htons(f->fs.val.lport);
1249 fwr->lpm = htons(f->fs.mask.lport);
1250 fwr->fp = htons(f->fs.val.fport);
1251 fwr->fpm = htons(f->fs.mask.fport);
1252 if (f->fs.newsmac)
1253 memcpy(fwr->sma, f->fs.smac, sizeof(fwr->sma));
1254
1255 /* Mark the filter as "pending" and ship off the Filter Work Request.
1256 * When we get the Work Request Reply we'll clear the pending status.
1257 */
1258 f->pending = 1;
1259 set_wr_txq(skb, CPL_PRIORITY_CONTROL, f->fs.val.iport & 0x3);
1260 t4_ofld_send(adapter, skb);
1261 return 0;
1262}
1263
1264/* Delete the filter at a specified index.
1265 */
1266static int del_filter_wr(struct adapter *adapter, int fidx)
1267{
1268 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1269 struct sk_buff *skb;
1270 struct fw_filter_wr *fwr;
1271 unsigned int len, ftid;
1272
1273 len = sizeof(*fwr);
1274 ftid = adapter->tids.ftid_base + fidx;
1275
Michal Hockof72f1162015-04-14 13:24:33 -07001276 skb = alloc_skb(len, GFP_KERNEL);
1277 if (!skb)
1278 return -ENOMEM;
1279
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001280 fwr = (struct fw_filter_wr *)__skb_put(skb, len);
1281 t4_mk_filtdelwr(ftid, fwr, adapter->sge.fw_evtq.abs_id);
1282
1283 /* Mark the filter as "pending" and ship off the Filter Work Request.
1284 * When we get the Work Request Reply we'll clear the pending status.
1285 */
1286 f->pending = 1;
1287 t4_mgmt_tx(adapter, skb);
1288 return 0;
1289}
1290
Anish Bhatt688848b2014-06-19 21:37:13 -07001291static u16 cxgb_select_queue(struct net_device *dev, struct sk_buff *skb,
1292 void *accel_priv, select_queue_fallback_t fallback)
1293{
1294 int txq;
1295
1296#ifdef CONFIG_CHELSIO_T4_DCB
1297 /* If a Data Center Bridging has been successfully negotiated on this
1298 * link then we'll use the skb's priority to map it to a TX Queue.
1299 * The skb's priority is determined via the VLAN Tag Priority Code
1300 * Point field.
1301 */
1302 if (cxgb4_dcb_enabled(dev)) {
1303 u16 vlan_tci;
1304 int err;
1305
1306 err = vlan_get_tag(skb, &vlan_tci);
1307 if (unlikely(err)) {
1308 if (net_ratelimit())
1309 netdev_warn(dev,
1310 "TX Packet without VLAN Tag on DCB Link\n");
1311 txq = 0;
1312 } else {
1313 txq = (vlan_tci & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
Varun Prakash84a200b2015-03-24 19:14:46 +05301314#ifdef CONFIG_CHELSIO_T4_FCOE
1315 if (skb->protocol == htons(ETH_P_FCOE))
1316 txq = skb->priority & 0x7;
1317#endif /* CONFIG_CHELSIO_T4_FCOE */
Anish Bhatt688848b2014-06-19 21:37:13 -07001318 }
1319 return txq;
1320 }
1321#endif /* CONFIG_CHELSIO_T4_DCB */
1322
1323 if (select_queue) {
1324 txq = (skb_rx_queue_recorded(skb)
1325 ? skb_get_rx_queue(skb)
1326 : smp_processor_id());
1327
1328 while (unlikely(txq >= dev->real_num_tx_queues))
1329 txq -= dev->real_num_tx_queues;
1330
1331 return txq;
1332 }
1333
1334 return fallback(dev, skb) % dev->real_num_tx_queues;
1335}
1336
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001337static int closest_timer(const struct sge *s, int time)
1338{
1339 int i, delta, match = 0, min_delta = INT_MAX;
1340
1341 for (i = 0; i < ARRAY_SIZE(s->timer_val); i++) {
1342 delta = time - s->timer_val[i];
1343 if (delta < 0)
1344 delta = -delta;
1345 if (delta < min_delta) {
1346 min_delta = delta;
1347 match = i;
1348 }
1349 }
1350 return match;
1351}
1352
1353static int closest_thres(const struct sge *s, int thres)
1354{
1355 int i, delta, match = 0, min_delta = INT_MAX;
1356
1357 for (i = 0; i < ARRAY_SIZE(s->counter_val); i++) {
1358 delta = thres - s->counter_val[i];
1359 if (delta < 0)
1360 delta = -delta;
1361 if (delta < min_delta) {
1362 min_delta = delta;
1363 match = i;
1364 }
1365 }
1366 return match;
1367}
1368
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001369/**
Hariprasad Shenai812034f2015-04-06 20:23:23 +05301370 * cxgb4_set_rspq_intr_params - set a queue's interrupt holdoff parameters
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001371 * @q: the Rx queue
1372 * @us: the hold-off time in us, or 0 to disable timer
1373 * @cnt: the hold-off packet count, or 0 to disable counter
1374 *
1375 * Sets an Rx queue's interrupt hold-off time and packet count. At least
1376 * one of the two needs to be enabled for the queue to generate interrupts.
1377 */
Hariprasad Shenai812034f2015-04-06 20:23:23 +05301378int cxgb4_set_rspq_intr_params(struct sge_rspq *q,
1379 unsigned int us, unsigned int cnt)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001380{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05301381 struct adapter *adap = q->adap;
1382
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001383 if ((us | cnt) == 0)
1384 cnt = 1;
1385
1386 if (cnt) {
1387 int err;
1388 u32 v, new_idx;
1389
1390 new_idx = closest_thres(&adap->sge, cnt);
1391 if (q->desc && q->pktcnt_idx != new_idx) {
1392 /* the queue has already been created, update it */
Hariprasad Shenai51678652014-11-21 12:52:02 +05301393 v = FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
1394 FW_PARAMS_PARAM_X_V(
1395 FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH) |
1396 FW_PARAMS_PARAM_YZ_V(q->cntxt_id);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05301397 err = t4_set_params(adap, adap->mbox, adap->pf, 0, 1,
1398 &v, &new_idx);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001399 if (err)
1400 return err;
1401 }
1402 q->pktcnt_idx = new_idx;
1403 }
1404
1405 us = us == 0 ? 6 : closest_timer(&adap->sge, us);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301406 q->intr_params = QINTR_TIMER_IDX_V(us) | QINTR_CNT_EN_V(cnt > 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001407 return 0;
1408}
1409
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001410static int cxgb_set_features(struct net_device *dev, netdev_features_t features)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001411{
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001412 const struct port_info *pi = netdev_priv(dev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001413 netdev_features_t changed = dev->features ^ features;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001414 int err;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001415
Patrick McHardyf6469682013-04-19 02:04:27 +00001416 if (!(changed & NETIF_F_HW_VLAN_CTAG_RX))
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001417 return 0;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001418
Hariprasad Shenaib2612722015-05-27 22:30:24 +05301419 err = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, -1,
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001420 -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +00001421 !!(features & NETIF_F_HW_VLAN_CTAG_RX), true);
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001422 if (unlikely(err))
Patrick McHardyf6469682013-04-19 02:04:27 +00001423 dev->features = features ^ NETIF_F_HW_VLAN_CTAG_RX;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001424 return err;
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001425}
1426
Bill Pemberton91744942012-12-03 09:23:02 -05001427static int setup_debugfs(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001428{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001429 if (IS_ERR_OR_NULL(adap->debugfs_root))
1430 return -1;
1431
Hariprasad Shenaifd88b312014-11-07 09:35:23 +05301432#ifdef CONFIG_DEBUG_FS
1433 t4_setup_debugfs(adap);
1434#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001435 return 0;
1436}
1437
1438/*
1439 * upper-layer driver support
1440 */
1441
1442/*
1443 * Allocate an active-open TID and set it to the supplied value.
1444 */
1445int cxgb4_alloc_atid(struct tid_info *t, void *data)
1446{
1447 int atid = -1;
1448
1449 spin_lock_bh(&t->atid_lock);
1450 if (t->afree) {
1451 union aopen_entry *p = t->afree;
1452
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001453 atid = (p - t->atid_tab) + t->atid_base;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001454 t->afree = p->next;
1455 p->data = data;
1456 t->atids_in_use++;
1457 }
1458 spin_unlock_bh(&t->atid_lock);
1459 return atid;
1460}
1461EXPORT_SYMBOL(cxgb4_alloc_atid);
1462
1463/*
1464 * Release an active-open TID.
1465 */
1466void cxgb4_free_atid(struct tid_info *t, unsigned int atid)
1467{
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001468 union aopen_entry *p = &t->atid_tab[atid - t->atid_base];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001469
1470 spin_lock_bh(&t->atid_lock);
1471 p->next = t->afree;
1472 t->afree = p;
1473 t->atids_in_use--;
1474 spin_unlock_bh(&t->atid_lock);
1475}
1476EXPORT_SYMBOL(cxgb4_free_atid);
1477
1478/*
1479 * Allocate a server TID and set it to the supplied value.
1480 */
1481int cxgb4_alloc_stid(struct tid_info *t, int family, void *data)
1482{
1483 int stid;
1484
1485 spin_lock_bh(&t->stid_lock);
1486 if (family == PF_INET) {
1487 stid = find_first_zero_bit(t->stid_bmap, t->nstids);
1488 if (stid < t->nstids)
1489 __set_bit(stid, t->stid_bmap);
1490 else
1491 stid = -1;
1492 } else {
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301493 stid = bitmap_find_free_region(t->stid_bmap, t->nstids, 1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001494 if (stid < 0)
1495 stid = -1;
1496 }
1497 if (stid >= 0) {
1498 t->stid_tab[stid].data = data;
1499 stid += t->stid_base;
Kumar Sanghvi15f63b72013-12-18 16:38:22 +05301500 /* IPv6 requires max of 520 bits or 16 cells in TCAM
1501 * This is equivalent to 4 TIDs. With CLIP enabled it
1502 * needs 2 TIDs.
1503 */
1504 if (family == PF_INET)
1505 t->stids_in_use++;
1506 else
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301507 t->stids_in_use += 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001508 }
1509 spin_unlock_bh(&t->stid_lock);
1510 return stid;
1511}
1512EXPORT_SYMBOL(cxgb4_alloc_stid);
1513
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001514/* Allocate a server filter TID and set it to the supplied value.
1515 */
1516int cxgb4_alloc_sftid(struct tid_info *t, int family, void *data)
1517{
1518 int stid;
1519
1520 spin_lock_bh(&t->stid_lock);
1521 if (family == PF_INET) {
1522 stid = find_next_zero_bit(t->stid_bmap,
1523 t->nstids + t->nsftids, t->nstids);
1524 if (stid < (t->nstids + t->nsftids))
1525 __set_bit(stid, t->stid_bmap);
1526 else
1527 stid = -1;
1528 } else {
1529 stid = -1;
1530 }
1531 if (stid >= 0) {
1532 t->stid_tab[stid].data = data;
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05301533 stid -= t->nstids;
1534 stid += t->sftid_base;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301535 t->sftids_in_use++;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001536 }
1537 spin_unlock_bh(&t->stid_lock);
1538 return stid;
1539}
1540EXPORT_SYMBOL(cxgb4_alloc_sftid);
1541
1542/* Release a server TID.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001543 */
1544void cxgb4_free_stid(struct tid_info *t, unsigned int stid, int family)
1545{
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05301546 /* Is it a server filter TID? */
1547 if (t->nsftids && (stid >= t->sftid_base)) {
1548 stid -= t->sftid_base;
1549 stid += t->nstids;
1550 } else {
1551 stid -= t->stid_base;
1552 }
1553
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001554 spin_lock_bh(&t->stid_lock);
1555 if (family == PF_INET)
1556 __clear_bit(stid, t->stid_bmap);
1557 else
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301558 bitmap_release_region(t->stid_bmap, stid, 1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001559 t->stid_tab[stid].data = NULL;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301560 if (stid < t->nstids) {
1561 if (family == PF_INET)
1562 t->stids_in_use--;
1563 else
Hariprasad Shenaia99c6832015-12-24 16:15:17 +05301564 t->stids_in_use -= 2;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301565 } else {
1566 t->sftids_in_use--;
1567 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001568 spin_unlock_bh(&t->stid_lock);
1569}
1570EXPORT_SYMBOL(cxgb4_free_stid);
1571
1572/*
1573 * Populate a TID_RELEASE WR. Caller must properly size the skb.
1574 */
1575static void mk_tid_release(struct sk_buff *skb, unsigned int chan,
1576 unsigned int tid)
1577{
1578 struct cpl_tid_release *req;
1579
1580 set_wr_txq(skb, CPL_PRIORITY_SETUP, chan);
1581 req = (struct cpl_tid_release *)__skb_put(skb, sizeof(*req));
1582 INIT_TP_WR(req, tid);
1583 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_TID_RELEASE, tid));
1584}
1585
1586/*
1587 * Queue a TID release request and if necessary schedule a work queue to
1588 * process it.
1589 */
stephen hemminger31b9c192010-10-18 05:39:18 +00001590static void cxgb4_queue_tid_release(struct tid_info *t, unsigned int chan,
1591 unsigned int tid)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001592{
1593 void **p = &t->tid_tab[tid];
1594 struct adapter *adap = container_of(t, struct adapter, tids);
1595
1596 spin_lock_bh(&adap->tid_release_lock);
1597 *p = adap->tid_release_head;
1598 /* Low 2 bits encode the Tx channel number */
1599 adap->tid_release_head = (void **)((uintptr_t)p | chan);
1600 if (!adap->tid_release_task_busy) {
1601 adap->tid_release_task_busy = true;
Anish Bhatt29aaee62014-08-20 13:44:06 -07001602 queue_work(adap->workq, &adap->tid_release_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001603 }
1604 spin_unlock_bh(&adap->tid_release_lock);
1605}
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001606
1607/*
1608 * Process the list of pending TID release requests.
1609 */
1610static void process_tid_release_list(struct work_struct *work)
1611{
1612 struct sk_buff *skb;
1613 struct adapter *adap;
1614
1615 adap = container_of(work, struct adapter, tid_release_task);
1616
1617 spin_lock_bh(&adap->tid_release_lock);
1618 while (adap->tid_release_head) {
1619 void **p = adap->tid_release_head;
1620 unsigned int chan = (uintptr_t)p & 3;
1621 p = (void *)p - chan;
1622
1623 adap->tid_release_head = *p;
1624 *p = NULL;
1625 spin_unlock_bh(&adap->tid_release_lock);
1626
1627 while (!(skb = alloc_skb(sizeof(struct cpl_tid_release),
1628 GFP_KERNEL)))
1629 schedule_timeout_uninterruptible(1);
1630
1631 mk_tid_release(skb, chan, p - adap->tids.tid_tab);
1632 t4_ofld_send(adap, skb);
1633 spin_lock_bh(&adap->tid_release_lock);
1634 }
1635 adap->tid_release_task_busy = false;
1636 spin_unlock_bh(&adap->tid_release_lock);
1637}
1638
1639/*
1640 * Release a TID and inform HW. If we are unable to allocate the release
1641 * message we defer to a work queue.
1642 */
1643void cxgb4_remove_tid(struct tid_info *t, unsigned int chan, unsigned int tid)
1644{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001645 struct sk_buff *skb;
1646 struct adapter *adap = container_of(t, struct adapter, tids);
1647
Hariprasad Shenai9a1bb9f2015-08-12 16:55:05 +05301648 WARN_ON(tid >= t->ntids);
1649
1650 if (t->tid_tab[tid]) {
1651 t->tid_tab[tid] = NULL;
1652 if (t->hash_base && (tid >= t->hash_base))
1653 atomic_dec(&t->hash_tids_in_use);
1654 else
1655 atomic_dec(&t->tids_in_use);
1656 }
1657
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001658 skb = alloc_skb(sizeof(struct cpl_tid_release), GFP_ATOMIC);
1659 if (likely(skb)) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001660 mk_tid_release(skb, chan, tid);
1661 t4_ofld_send(adap, skb);
1662 } else
1663 cxgb4_queue_tid_release(t, chan, tid);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001664}
1665EXPORT_SYMBOL(cxgb4_remove_tid);
1666
1667/*
1668 * Allocate and initialize the TID tables. Returns 0 on success.
1669 */
1670static int tid_init(struct tid_info *t)
1671{
1672 size_t size;
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001673 unsigned int stid_bmap_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001674 unsigned int natids = t->natids;
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05301675 struct adapter *adap = container_of(t, struct adapter, tids);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001676
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001677 stid_bmap_size = BITS_TO_LONGS(t->nstids + t->nsftids);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001678 size = t->ntids * sizeof(*t->tid_tab) +
1679 natids * sizeof(*t->atid_tab) +
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001680 t->nstids * sizeof(*t->stid_tab) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001681 t->nsftids * sizeof(*t->stid_tab) +
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001682 stid_bmap_size * sizeof(long) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001683 t->nftids * sizeof(*t->ftid_tab) +
1684 t->nsftids * sizeof(*t->ftid_tab);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001685
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001686 t->tid_tab = t4_alloc_mem(size);
1687 if (!t->tid_tab)
1688 return -ENOMEM;
1689
1690 t->atid_tab = (union aopen_entry *)&t->tid_tab[t->ntids];
1691 t->stid_tab = (struct serv_entry *)&t->atid_tab[natids];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001692 t->stid_bmap = (unsigned long *)&t->stid_tab[t->nstids + t->nsftids];
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001693 t->ftid_tab = (struct filter_entry *)&t->stid_bmap[stid_bmap_size];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001694 spin_lock_init(&t->stid_lock);
1695 spin_lock_init(&t->atid_lock);
1696
1697 t->stids_in_use = 0;
Hariprasad Shenai2248b292015-08-12 16:55:06 +05301698 t->sftids_in_use = 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001699 t->afree = NULL;
1700 t->atids_in_use = 0;
1701 atomic_set(&t->tids_in_use, 0);
Hariprasad Shenai9a1bb9f2015-08-12 16:55:05 +05301702 atomic_set(&t->hash_tids_in_use, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001703
1704 /* Setup the free list for atid_tab and clear the stid bitmap. */
1705 if (natids) {
1706 while (--natids)
1707 t->atid_tab[natids - 1].next = &t->atid_tab[natids];
1708 t->afree = t->atid_tab;
1709 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00001710 bitmap_zero(t->stid_bmap, t->nstids + t->nsftids);
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05301711 /* Reserve stid 0 for T4/T5 adapters */
1712 if (!t->stid_base &&
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05301713 (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5))
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05301714 __set_bit(0, t->stid_bmap);
1715
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001716 return 0;
1717}
1718
1719/**
1720 * cxgb4_create_server - create an IP server
1721 * @dev: the device
1722 * @stid: the server TID
1723 * @sip: local IP address to bind server to
1724 * @sport: the server's TCP port
1725 * @queue: queue to direct messages from this server to
1726 *
1727 * Create an IP server for the given port and address.
1728 * Returns <0 on error and one of the %NET_XMIT_* values on success.
1729 */
1730int cxgb4_create_server(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00001731 __be32 sip, __be16 sport, __be16 vlan,
1732 unsigned int queue)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001733{
1734 unsigned int chan;
1735 struct sk_buff *skb;
1736 struct adapter *adap;
1737 struct cpl_pass_open_req *req;
Vipul Pandya80f40c12013-07-04 16:10:45 +05301738 int ret;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001739
1740 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1741 if (!skb)
1742 return -ENOMEM;
1743
1744 adap = netdev2adap(dev);
1745 req = (struct cpl_pass_open_req *)__skb_put(skb, sizeof(*req));
1746 INIT_TP_WR(req, 0);
1747 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ, stid));
1748 req->local_port = sport;
1749 req->peer_port = htons(0);
1750 req->local_ip = sip;
1751 req->peer_ip = htonl(0);
Dimitris Michailidise46dab42010-08-23 17:20:58 +00001752 chan = rxq_to_chan(&adap->sge, queue);
Anish Bhattd7990b02014-11-12 17:15:57 -08001753 req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001754 req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
1755 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05301756 ret = t4_mgmt_tx(adap, skb);
1757 return net_xmit_eval(ret);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001758}
1759EXPORT_SYMBOL(cxgb4_create_server);
1760
Vipul Pandya80f40c12013-07-04 16:10:45 +05301761/* cxgb4_create_server6 - create an IPv6 server
1762 * @dev: the device
1763 * @stid: the server TID
1764 * @sip: local IPv6 address to bind server to
1765 * @sport: the server's TCP port
1766 * @queue: queue to direct messages from this server to
1767 *
1768 * Create an IPv6 server for the given port and address.
1769 * Returns <0 on error and one of the %NET_XMIT_* values on success.
1770 */
1771int cxgb4_create_server6(const struct net_device *dev, unsigned int stid,
1772 const struct in6_addr *sip, __be16 sport,
1773 unsigned int queue)
1774{
1775 unsigned int chan;
1776 struct sk_buff *skb;
1777 struct adapter *adap;
1778 struct cpl_pass_open_req6 *req;
1779 int ret;
1780
1781 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1782 if (!skb)
1783 return -ENOMEM;
1784
1785 adap = netdev2adap(dev);
1786 req = (struct cpl_pass_open_req6 *)__skb_put(skb, sizeof(*req));
1787 INIT_TP_WR(req, 0);
1788 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ6, stid));
1789 req->local_port = sport;
1790 req->peer_port = htons(0);
1791 req->local_ip_hi = *(__be64 *)(sip->s6_addr);
1792 req->local_ip_lo = *(__be64 *)(sip->s6_addr + 8);
1793 req->peer_ip_hi = cpu_to_be64(0);
1794 req->peer_ip_lo = cpu_to_be64(0);
1795 chan = rxq_to_chan(&adap->sge, queue);
Anish Bhattd7990b02014-11-12 17:15:57 -08001796 req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001797 req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
1798 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05301799 ret = t4_mgmt_tx(adap, skb);
1800 return net_xmit_eval(ret);
1801}
1802EXPORT_SYMBOL(cxgb4_create_server6);
1803
1804int cxgb4_remove_server(const struct net_device *dev, unsigned int stid,
1805 unsigned int queue, bool ipv6)
1806{
1807 struct sk_buff *skb;
1808 struct adapter *adap;
1809 struct cpl_close_listsvr_req *req;
1810 int ret;
1811
1812 adap = netdev2adap(dev);
1813
1814 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
1815 if (!skb)
1816 return -ENOMEM;
1817
1818 req = (struct cpl_close_listsvr_req *)__skb_put(skb, sizeof(*req));
1819 INIT_TP_WR(req, 0);
1820 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_CLOSE_LISTSRV_REQ, stid));
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08001821 req->reply_ctrl = htons(NO_REPLY_V(0) | (ipv6 ? LISTSVR_IPV6_V(1) :
1822 LISTSVR_IPV6_V(0)) | QUEUENO_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05301823 ret = t4_mgmt_tx(adap, skb);
1824 return net_xmit_eval(ret);
1825}
1826EXPORT_SYMBOL(cxgb4_remove_server);
1827
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001828/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001829 * cxgb4_best_mtu - find the entry in the MTU table closest to an MTU
1830 * @mtus: the HW MTU table
1831 * @mtu: the target MTU
1832 * @idx: index of selected entry in the MTU table
1833 *
1834 * Returns the index and the value in the HW MTU table that is closest to
1835 * but does not exceed @mtu, unless @mtu is smaller than any value in the
1836 * table, in which case that smallest available value is selected.
1837 */
1838unsigned int cxgb4_best_mtu(const unsigned short *mtus, unsigned short mtu,
1839 unsigned int *idx)
1840{
1841 unsigned int i = 0;
1842
1843 while (i < NMTUS - 1 && mtus[i + 1] <= mtu)
1844 ++i;
1845 if (idx)
1846 *idx = i;
1847 return mtus[i];
1848}
1849EXPORT_SYMBOL(cxgb4_best_mtu);
1850
1851/**
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05301852 * cxgb4_best_aligned_mtu - find best MTU, [hopefully] data size aligned
1853 * @mtus: the HW MTU table
1854 * @header_size: Header Size
1855 * @data_size_max: maximum Data Segment Size
1856 * @data_size_align: desired Data Segment Size Alignment (2^N)
1857 * @mtu_idxp: HW MTU Table Index return value pointer (possibly NULL)
1858 *
1859 * Similar to cxgb4_best_mtu() but instead of searching the Hardware
1860 * MTU Table based solely on a Maximum MTU parameter, we break that
1861 * parameter up into a Header Size and Maximum Data Segment Size, and
1862 * provide a desired Data Segment Size Alignment. If we find an MTU in
1863 * the Hardware MTU Table which will result in a Data Segment Size with
1864 * the requested alignment _and_ that MTU isn't "too far" from the
1865 * closest MTU, then we'll return that rather than the closest MTU.
1866 */
1867unsigned int cxgb4_best_aligned_mtu(const unsigned short *mtus,
1868 unsigned short header_size,
1869 unsigned short data_size_max,
1870 unsigned short data_size_align,
1871 unsigned int *mtu_idxp)
1872{
1873 unsigned short max_mtu = header_size + data_size_max;
1874 unsigned short data_size_align_mask = data_size_align - 1;
1875 int mtu_idx, aligned_mtu_idx;
1876
1877 /* Scan the MTU Table till we find an MTU which is larger than our
1878 * Maximum MTU or we reach the end of the table. Along the way,
1879 * record the last MTU found, if any, which will result in a Data
1880 * Segment Length matching the requested alignment.
1881 */
1882 for (mtu_idx = 0, aligned_mtu_idx = -1; mtu_idx < NMTUS; mtu_idx++) {
1883 unsigned short data_size = mtus[mtu_idx] - header_size;
1884
1885 /* If this MTU minus the Header Size would result in a
1886 * Data Segment Size of the desired alignment, remember it.
1887 */
1888 if ((data_size & data_size_align_mask) == 0)
1889 aligned_mtu_idx = mtu_idx;
1890
1891 /* If we're not at the end of the Hardware MTU Table and the
1892 * next element is larger than our Maximum MTU, drop out of
1893 * the loop.
1894 */
1895 if (mtu_idx+1 < NMTUS && mtus[mtu_idx+1] > max_mtu)
1896 break;
1897 }
1898
1899 /* If we fell out of the loop because we ran to the end of the table,
1900 * then we just have to use the last [largest] entry.
1901 */
1902 if (mtu_idx == NMTUS)
1903 mtu_idx--;
1904
1905 /* If we found an MTU which resulted in the requested Data Segment
1906 * Length alignment and that's "not far" from the largest MTU which is
1907 * less than or equal to the maximum MTU, then use that.
1908 */
1909 if (aligned_mtu_idx >= 0 &&
1910 mtu_idx - aligned_mtu_idx <= 1)
1911 mtu_idx = aligned_mtu_idx;
1912
1913 /* If the caller has passed in an MTU Index pointer, pass the
1914 * MTU Index back. Return the MTU value.
1915 */
1916 if (mtu_idxp)
1917 *mtu_idxp = mtu_idx;
1918 return mtus[mtu_idx];
1919}
1920EXPORT_SYMBOL(cxgb4_best_aligned_mtu);
1921
1922/**
Hariprasad S27999802015-09-23 17:19:26 +05301923 * cxgb4_tp_smt_idx - Get the Source Mac Table index for this VI
1924 * @chip: chip type
1925 * @viid: VI id of the given port
1926 *
1927 * Return the SMT index for this VI.
1928 */
1929unsigned int cxgb4_tp_smt_idx(enum chip_type chip, unsigned int viid)
1930{
1931 /* In T4/T5, SMT contains 256 SMAC entries organized in
1932 * 128 rows of 2 entries each.
1933 * In T6, SMT contains 256 SMAC entries in 256 rows.
1934 * TODO: The below code needs to be updated when we add support
1935 * for 256 VFs.
1936 */
1937 if (CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5)
1938 return ((viid & 0x7f) << 1);
1939 else
1940 return (viid & 0x7f);
1941}
1942EXPORT_SYMBOL(cxgb4_tp_smt_idx);
1943
1944/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001945 * cxgb4_port_chan - get the HW channel of a port
1946 * @dev: the net device for the port
1947 *
1948 * Return the HW Tx channel of the given port.
1949 */
1950unsigned int cxgb4_port_chan(const struct net_device *dev)
1951{
1952 return netdev2pinfo(dev)->tx_chan;
1953}
1954EXPORT_SYMBOL(cxgb4_port_chan);
1955
Vipul Pandya881806b2012-05-18 15:29:24 +05301956unsigned int cxgb4_dbfifo_count(const struct net_device *dev, int lpfifo)
1957{
1958 struct adapter *adap = netdev2adap(dev);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00001959 u32 v1, v2, lp_count, hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05301960
Hariprasad Shenaif061de422015-01-05 16:30:44 +05301961 v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
1962 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301963 if (is_t4(adap->params.chip)) {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05301964 lp_count = LP_COUNT_G(v1);
1965 hp_count = HP_COUNT_G(v1);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00001966 } else {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05301967 lp_count = LP_COUNT_T5_G(v1);
1968 hp_count = HP_COUNT_T5_G(v2);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00001969 }
1970 return lpfifo ? lp_count : hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05301971}
1972EXPORT_SYMBOL(cxgb4_dbfifo_count);
1973
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001974/**
1975 * cxgb4_port_viid - get the VI id of a port
1976 * @dev: the net device for the port
1977 *
1978 * Return the VI id of the given port.
1979 */
1980unsigned int cxgb4_port_viid(const struct net_device *dev)
1981{
1982 return netdev2pinfo(dev)->viid;
1983}
1984EXPORT_SYMBOL(cxgb4_port_viid);
1985
1986/**
1987 * cxgb4_port_idx - get the index of a port
1988 * @dev: the net device for the port
1989 *
1990 * Return the index of the given port.
1991 */
1992unsigned int cxgb4_port_idx(const struct net_device *dev)
1993{
1994 return netdev2pinfo(dev)->port_id;
1995}
1996EXPORT_SYMBOL(cxgb4_port_idx);
1997
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001998void cxgb4_get_tcp_stats(struct pci_dev *pdev, struct tp_tcp_stats *v4,
1999 struct tp_tcp_stats *v6)
2000{
2001 struct adapter *adap = pci_get_drvdata(pdev);
2002
2003 spin_lock(&adap->stats_lock);
2004 t4_tp_get_tcp_stats(adap, v4, v6);
2005 spin_unlock(&adap->stats_lock);
2006}
2007EXPORT_SYMBOL(cxgb4_get_tcp_stats);
2008
2009void cxgb4_iscsi_init(struct net_device *dev, unsigned int tag_mask,
2010 const unsigned int *pgsz_order)
2011{
2012 struct adapter *adap = netdev2adap(dev);
2013
Hariprasad Shenai0d804332015-01-05 16:30:47 +05302014 t4_write_reg(adap, ULP_RX_ISCSI_TAGMASK_A, tag_mask);
2015 t4_write_reg(adap, ULP_RX_ISCSI_PSZ_A, HPZ0_V(pgsz_order[0]) |
2016 HPZ1_V(pgsz_order[1]) | HPZ2_V(pgsz_order[2]) |
2017 HPZ3_V(pgsz_order[3]));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002018}
2019EXPORT_SYMBOL(cxgb4_iscsi_init);
2020
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302021int cxgb4_flush_eq_cache(struct net_device *dev)
2022{
2023 struct adapter *adap = netdev2adap(dev);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302024
Hariprasad Shenai5d700ec2015-06-05 14:24:48 +05302025 return t4_sge_ctxt_flush(adap, adap->mbox);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302026}
2027EXPORT_SYMBOL(cxgb4_flush_eq_cache);
2028
2029static int read_eq_indices(struct adapter *adap, u16 qid, u16 *pidx, u16 *cidx)
2030{
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302031 u32 addr = t4_read_reg(adap, SGE_DBQ_CTXT_BADDR_A) + 24 * qid + 8;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302032 __be64 indices;
2033 int ret;
2034
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05302035 spin_lock(&adap->win0_lock);
2036 ret = t4_memory_rw(adap, 0, MEM_EDC0, addr,
2037 sizeof(indices), (__be32 *)&indices,
2038 T4_MEMORY_READ);
2039 spin_unlock(&adap->win0_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302040 if (!ret) {
Vipul Pandya404d9e32012-10-08 02:59:43 +00002041 *cidx = (be64_to_cpu(indices) >> 25) & 0xffff;
2042 *pidx = (be64_to_cpu(indices) >> 9) & 0xffff;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302043 }
2044 return ret;
2045}
2046
2047int cxgb4_sync_txq_pidx(struct net_device *dev, u16 qid, u16 pidx,
2048 u16 size)
2049{
2050 struct adapter *adap = netdev2adap(dev);
2051 u16 hw_pidx, hw_cidx;
2052 int ret;
2053
2054 ret = read_eq_indices(adap, qid, &hw_pidx, &hw_cidx);
2055 if (ret)
2056 goto out;
2057
2058 if (pidx != hw_pidx) {
2059 u16 delta;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302060 u32 val;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302061
2062 if (pidx >= hw_pidx)
2063 delta = pidx - hw_pidx;
2064 else
2065 delta = size - hw_pidx + pidx;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302066
2067 if (is_t4(adap->params.chip))
2068 val = PIDX_V(delta);
2069 else
2070 val = PIDX_T5_V(delta);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302071 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302072 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2073 QID_V(qid) | val);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302074 }
2075out:
2076 return ret;
2077}
2078EXPORT_SYMBOL(cxgb4_sync_txq_pidx);
2079
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302080int cxgb4_read_tpte(struct net_device *dev, u32 stag, __be32 *tpte)
2081{
2082 struct adapter *adap;
2083 u32 offset, memtype, memaddr;
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05302084 u32 edc0_size, edc1_size, mc0_size, mc1_size, size;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302085 u32 edc0_end, edc1_end, mc0_end, mc1_end;
2086 int ret;
2087
2088 adap = netdev2adap(dev);
2089
2090 offset = ((stag >> 8) * 32) + adap->vres.stag.start;
2091
2092 /* Figure out where the offset lands in the Memory Type/Address scheme.
2093 * This code assumes that the memory is laid out starting at offset 0
2094 * with no breaks as: EDC0, EDC1, MC0, MC1. All cards have both EDC0
2095 * and EDC1. Some cards will have neither MC0 nor MC1, most cards have
2096 * MC0, and some have both MC0 and MC1.
2097 */
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05302098 size = t4_read_reg(adap, MA_EDRAM0_BAR_A);
2099 edc0_size = EDRAM0_SIZE_G(size) << 20;
2100 size = t4_read_reg(adap, MA_EDRAM1_BAR_A);
2101 edc1_size = EDRAM1_SIZE_G(size) << 20;
2102 size = t4_read_reg(adap, MA_EXT_MEMORY0_BAR_A);
2103 mc0_size = EXT_MEM0_SIZE_G(size) << 20;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302104
2105 edc0_end = edc0_size;
2106 edc1_end = edc0_end + edc1_size;
2107 mc0_end = edc1_end + mc0_size;
2108
2109 if (offset < edc0_end) {
2110 memtype = MEM_EDC0;
2111 memaddr = offset;
2112 } else if (offset < edc1_end) {
2113 memtype = MEM_EDC1;
2114 memaddr = offset - edc0_end;
2115 } else {
2116 if (offset < mc0_end) {
2117 memtype = MEM_MC0;
2118 memaddr = offset - edc1_end;
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302119 } else if (is_t5(adap->params.chip)) {
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05302120 size = t4_read_reg(adap, MA_EXT_MEMORY1_BAR_A);
2121 mc1_size = EXT_MEM1_SIZE_G(size) << 20;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302122 mc1_end = mc0_end + mc1_size;
2123 if (offset < mc1_end) {
2124 memtype = MEM_MC1;
2125 memaddr = offset - mc0_end;
2126 } else {
2127 /* offset beyond the end of any memory */
2128 goto err;
2129 }
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302130 } else {
2131 /* T4/T6 only has a single memory channel */
2132 goto err;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05302133 }
2134 }
2135
2136 spin_lock(&adap->win0_lock);
2137 ret = t4_memory_rw(adap, 0, memtype, memaddr, 32, tpte, T4_MEMORY_READ);
2138 spin_unlock(&adap->win0_lock);
2139 return ret;
2140
2141err:
2142 dev_err(adap->pdev_dev, "stag %#x, offset %#x out of range\n",
2143 stag, offset);
2144 return -EINVAL;
2145}
2146EXPORT_SYMBOL(cxgb4_read_tpte);
2147
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05302148u64 cxgb4_read_sge_timestamp(struct net_device *dev)
2149{
2150 u32 hi, lo;
2151 struct adapter *adap;
2152
2153 adap = netdev2adap(dev);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302154 lo = t4_read_reg(adap, SGE_TIMESTAMP_LO_A);
2155 hi = TSVAL_G(t4_read_reg(adap, SGE_TIMESTAMP_HI_A));
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05302156
2157 return ((u64)hi << 32) | (u64)lo;
2158}
2159EXPORT_SYMBOL(cxgb4_read_sge_timestamp);
2160
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302161int cxgb4_bar2_sge_qregs(struct net_device *dev,
2162 unsigned int qid,
2163 enum cxgb4_bar2_qtype qtype,
Hariprasad S66cf1882015-06-09 18:23:11 +05302164 int user,
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302165 u64 *pbar2_qoffset,
2166 unsigned int *pbar2_qid)
2167{
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302168 return t4_bar2_sge_qregs(netdev2adap(dev),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302169 qid,
2170 (qtype == CXGB4_BAR2_QTYPE_EGRESS
2171 ? T4_BAR2_QTYPE_EGRESS
2172 : T4_BAR2_QTYPE_INGRESS),
Hariprasad S66cf1882015-06-09 18:23:11 +05302173 user,
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302174 pbar2_qoffset,
2175 pbar2_qid);
2176}
2177EXPORT_SYMBOL(cxgb4_bar2_sge_qregs);
2178
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002179static struct pci_driver cxgb4_driver;
2180
2181static void check_neigh_update(struct neighbour *neigh)
2182{
2183 const struct device *parent;
2184 const struct net_device *netdev = neigh->dev;
2185
2186 if (netdev->priv_flags & IFF_802_1Q_VLAN)
2187 netdev = vlan_dev_real_dev(netdev);
2188 parent = netdev->dev.parent;
2189 if (parent && parent->driver == &cxgb4_driver.driver)
2190 t4_l2t_update(dev_get_drvdata(parent), neigh);
2191}
2192
2193static int netevent_cb(struct notifier_block *nb, unsigned long event,
2194 void *data)
2195{
2196 switch (event) {
2197 case NETEVENT_NEIGH_UPDATE:
2198 check_neigh_update(data);
2199 break;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002200 case NETEVENT_REDIRECT:
2201 default:
2202 break;
2203 }
2204 return 0;
2205}
2206
2207static bool netevent_registered;
2208static struct notifier_block cxgb4_netevent_nb = {
2209 .notifier_call = netevent_cb
2210};
2211
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302212static void drain_db_fifo(struct adapter *adap, int usecs)
2213{
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002214 u32 v1, v2, lp_count, hp_count;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302215
2216 do {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302217 v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
2218 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302219 if (is_t4(adap->params.chip)) {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302220 lp_count = LP_COUNT_G(v1);
2221 hp_count = HP_COUNT_G(v1);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002222 } else {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302223 lp_count = LP_COUNT_T5_G(v1);
2224 hp_count = HP_COUNT_T5_G(v2);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002225 }
2226
2227 if (lp_count == 0 && hp_count == 0)
2228 break;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302229 set_current_state(TASK_UNINTERRUPTIBLE);
2230 schedule_timeout(usecs_to_jiffies(usecs));
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302231 } while (1);
2232}
2233
2234static void disable_txq_db(struct sge_txq *q)
2235{
Steve Wise05eb2382014-03-14 21:52:08 +05302236 unsigned long flags;
2237
2238 spin_lock_irqsave(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302239 q->db_disabled = 1;
Steve Wise05eb2382014-03-14 21:52:08 +05302240 spin_unlock_irqrestore(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302241}
2242
Steve Wise05eb2382014-03-14 21:52:08 +05302243static void enable_txq_db(struct adapter *adap, struct sge_txq *q)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302244{
2245 spin_lock_irq(&q->db_lock);
Steve Wise05eb2382014-03-14 21:52:08 +05302246 if (q->db_pidx_inc) {
2247 /* Make sure that all writes to the TX descriptors
2248 * are committed before we tell HW about them.
2249 */
2250 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302251 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2252 QID_V(q->cntxt_id) | PIDX_V(q->db_pidx_inc));
Steve Wise05eb2382014-03-14 21:52:08 +05302253 q->db_pidx_inc = 0;
2254 }
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302255 q->db_disabled = 0;
2256 spin_unlock_irq(&q->db_lock);
2257}
2258
2259static void disable_dbs(struct adapter *adap)
2260{
2261 int i;
2262
2263 for_each_ethrxq(&adap->sge, i)
2264 disable_txq_db(&adap->sge.ethtxq[i].q);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302265 for_each_iscsirxq(&adap->sge, i)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302266 disable_txq_db(&adap->sge.ofldtxq[i].q);
2267 for_each_port(adap, i)
2268 disable_txq_db(&adap->sge.ctrlq[i].q);
2269}
2270
2271static void enable_dbs(struct adapter *adap)
2272{
2273 int i;
2274
2275 for_each_ethrxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05302276 enable_txq_db(adap, &adap->sge.ethtxq[i].q);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302277 for_each_iscsirxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05302278 enable_txq_db(adap, &adap->sge.ofldtxq[i].q);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302279 for_each_port(adap, i)
Steve Wise05eb2382014-03-14 21:52:08 +05302280 enable_txq_db(adap, &adap->sge.ctrlq[i].q);
2281}
2282
2283static void notify_rdma_uld(struct adapter *adap, enum cxgb4_control cmd)
2284{
2285 if (adap->uld_handle[CXGB4_ULD_RDMA])
2286 ulds[CXGB4_ULD_RDMA].control(adap->uld_handle[CXGB4_ULD_RDMA],
2287 cmd);
2288}
2289
2290static void process_db_full(struct work_struct *work)
2291{
2292 struct adapter *adap;
2293
2294 adap = container_of(work, struct adapter, db_full_task);
2295
2296 drain_db_fifo(adap, dbfifo_drain_delay);
2297 enable_dbs(adap);
2298 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302299 if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
2300 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2301 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F,
2302 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F);
2303 else
2304 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2305 DBFIFO_LP_INT_F, DBFIFO_LP_INT_F);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302306}
2307
2308static void sync_txq_pidx(struct adapter *adap, struct sge_txq *q)
2309{
2310 u16 hw_pidx, hw_cidx;
2311 int ret;
2312
Steve Wise05eb2382014-03-14 21:52:08 +05302313 spin_lock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302314 ret = read_eq_indices(adap, (u16)q->cntxt_id, &hw_pidx, &hw_cidx);
2315 if (ret)
2316 goto out;
2317 if (q->db_pidx != hw_pidx) {
2318 u16 delta;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302319 u32 val;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302320
2321 if (q->db_pidx >= hw_pidx)
2322 delta = q->db_pidx - hw_pidx;
2323 else
2324 delta = q->size - hw_pidx + q->db_pidx;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302325
2326 if (is_t4(adap->params.chip))
2327 val = PIDX_V(delta);
2328 else
2329 val = PIDX_T5_V(delta);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302330 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302331 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
2332 QID_V(q->cntxt_id) | val);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302333 }
2334out:
2335 q->db_disabled = 0;
Steve Wise05eb2382014-03-14 21:52:08 +05302336 q->db_pidx_inc = 0;
2337 spin_unlock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302338 if (ret)
2339 CH_WARN(adap, "DB drop recovery failed.\n");
2340}
2341static void recover_all_queues(struct adapter *adap)
2342{
2343 int i;
2344
2345 for_each_ethrxq(&adap->sge, i)
2346 sync_txq_pidx(adap, &adap->sge.ethtxq[i].q);
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302347 for_each_iscsirxq(&adap->sge, i)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302348 sync_txq_pidx(adap, &adap->sge.ofldtxq[i].q);
2349 for_each_port(adap, i)
2350 sync_txq_pidx(adap, &adap->sge.ctrlq[i].q);
2351}
2352
Vipul Pandya881806b2012-05-18 15:29:24 +05302353static void process_db_drop(struct work_struct *work)
2354{
2355 struct adapter *adap;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302356
Vipul Pandya881806b2012-05-18 15:29:24 +05302357 adap = container_of(work, struct adapter, db_drop_task);
2358
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302359 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05302360 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002361 notify_rdma_uld(adap, CXGB4_CONTROL_DB_DROP);
Steve Wise05eb2382014-03-14 21:52:08 +05302362 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002363 recover_all_queues(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05302364 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002365 enable_dbs(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05302366 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302367 } else if (is_t5(adap->params.chip)) {
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002368 u32 dropped_db = t4_read_reg(adap, 0x010ac);
2369 u16 qid = (dropped_db >> 15) & 0x1ffff;
2370 u16 pidx_inc = dropped_db & 0x1fff;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302371 u64 bar2_qoffset;
2372 unsigned int bar2_qid;
2373 int ret;
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002374
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302375 ret = t4_bar2_sge_qregs(adap, qid, T4_BAR2_QTYPE_EGRESS,
Linus Torvaldse0456712015-06-24 16:49:49 -07002376 0, &bar2_qoffset, &bar2_qid);
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302377 if (ret)
2378 dev_err(adap->pdev_dev, "doorbell drop recovery: "
2379 "qid=%d, pidx_inc=%d\n", qid, pidx_inc);
2380 else
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302381 writel(PIDX_T5_V(pidx_inc) | QID_V(bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302382 adap->bar2 + bar2_qoffset + SGE_UDB_KDOORBELL);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002383
2384 /* Re-enable BAR2 WC */
2385 t4_set_reg_field(adap, 0x10b0, 1<<15, 1<<15);
2386 }
2387
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302388 if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
2389 t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, DROPPED_DB_F, 0);
Vipul Pandya881806b2012-05-18 15:29:24 +05302390}
2391
2392void t4_db_full(struct adapter *adap)
2393{
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302394 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05302395 disable_dbs(adap);
2396 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302397 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
2398 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F, 0);
Anish Bhatt29aaee62014-08-20 13:44:06 -07002399 queue_work(adap->workq, &adap->db_full_task);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00002400 }
Vipul Pandya881806b2012-05-18 15:29:24 +05302401}
2402
2403void t4_db_dropped(struct adapter *adap)
2404{
Steve Wise05eb2382014-03-14 21:52:08 +05302405 if (is_t4(adap->params.chip)) {
2406 disable_dbs(adap);
2407 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
2408 }
Anish Bhatt29aaee62014-08-20 13:44:06 -07002409 queue_work(adap->workq, &adap->db_drop_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05302410}
2411
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002412static void uld_attach(struct adapter *adap, unsigned int uld)
2413{
2414 void *handle;
2415 struct cxgb4_lld_info lli;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002416 unsigned short i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002417
2418 lli.pdev = adap->pdev;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302419 lli.pf = adap->pf;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002420 lli.l2t = adap->l2t;
2421 lli.tids = &adap->tids;
2422 lli.ports = adap->port;
2423 lli.vr = &adap->vres;
2424 lli.mtus = adap->params.mtus;
2425 if (uld == CXGB4_ULD_RDMA) {
2426 lli.rxq_ids = adap->sge.rdma_rxq;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05302427 lli.ciq_ids = adap->sge.rdma_ciq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002428 lli.nrxq = adap->sge.rdmaqs;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05302429 lli.nciq = adap->sge.rdmaciqs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002430 } else if (uld == CXGB4_ULD_ISCSI) {
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302431 lli.rxq_ids = adap->sge.iscsi_rxq;
2432 lli.nrxq = adap->sge.iscsiqsets;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002433 }
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05302434 lli.ntxq = adap->sge.iscsiqsets;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002435 lli.nchan = adap->params.nports;
2436 lli.nports = adap->params.nports;
2437 lli.wr_cred = adap->params.ofldq_wr_cred;
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302438 lli.adapter_type = adap->params.chip;
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05302439 lli.iscsi_iolen = MAXRXDATA_G(t4_read_reg(adap, TP_PARA_REG2_A));
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05302440 lli.cclk_ps = 1000000000 / adap->params.vpd.cclk;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302441 lli.udb_density = 1 << adap->params.sge.eq_qpp;
2442 lli.ucq_density = 1 << adap->params.sge.iq_qpp;
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05302443 lli.filt_mode = adap->params.tp.vlan_pri_map;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002444 /* MODQ_REQ_MAP sets queues 0-3 to chan 0-3 */
2445 for (i = 0; i < NCHAN; i++)
2446 lli.tx_modq[i] = i;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302447 lli.gts_reg = adap->regs + MYPF_REG(SGE_PF_GTS_A);
2448 lli.db_reg = adap->regs + MYPF_REG(SGE_PF_KDOORBELL_A);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002449 lli.fw_vers = adap->params.fw_vers;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302450 lli.dbfifo_int_thresh = dbfifo_int_thresh;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +05302451 lli.sge_ingpadboundary = adap->sge.fl_align;
2452 lli.sge_egrstatuspagesize = adap->sge.stat_len;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002453 lli.sge_pktshift = adap->sge.pktshift;
2454 lli.enable_fw_ofld_conn = adap->flags & FW_OFLD_CONN;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05302455 lli.max_ordird_qp = adap->params.max_ordird_qp;
2456 lli.max_ird_adapter = adap->params.max_ird_adapter;
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05302457 lli.ulptx_memwrite_dsgl = adap->params.ulptx_memwrite_dsgl;
Hariprasad Shenai982b81e2015-05-05 14:59:54 +05302458 lli.nodeid = dev_to_node(adap->pdev_dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002459
2460 handle = ulds[uld].add(&lli);
2461 if (IS_ERR(handle)) {
2462 dev_warn(adap->pdev_dev,
2463 "could not attach to the %s driver, error %ld\n",
2464 uld_str[uld], PTR_ERR(handle));
2465 return;
2466 }
2467
2468 adap->uld_handle[uld] = handle;
2469
2470 if (!netevent_registered) {
2471 register_netevent_notifier(&cxgb4_netevent_nb);
2472 netevent_registered = true;
2473 }
Dimitris Michailidise29f5db2010-05-18 10:07:13 +00002474
2475 if (adap->flags & FULL_INIT_DONE)
2476 ulds[uld].state_change(handle, CXGB4_STATE_UP);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002477}
2478
2479static void attach_ulds(struct adapter *adap)
2480{
2481 unsigned int i;
2482
Vipul Pandya01bcca62013-07-04 16:10:46 +05302483 spin_lock(&adap_rcu_lock);
2484 list_add_tail_rcu(&adap->rcu_node, &adap_rcu_list);
2485 spin_unlock(&adap_rcu_lock);
2486
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002487 mutex_lock(&uld_mutex);
2488 list_add_tail(&adap->list_node, &adapter_list);
2489 for (i = 0; i < CXGB4_ULD_MAX; i++)
2490 if (ulds[i].add)
2491 uld_attach(adap, i);
2492 mutex_unlock(&uld_mutex);
2493}
2494
2495static void detach_ulds(struct adapter *adap)
2496{
2497 unsigned int i;
2498
2499 mutex_lock(&uld_mutex);
2500 list_del(&adap->list_node);
2501 for (i = 0; i < CXGB4_ULD_MAX; i++)
2502 if (adap->uld_handle[i]) {
2503 ulds[i].state_change(adap->uld_handle[i],
2504 CXGB4_STATE_DETACH);
2505 adap->uld_handle[i] = NULL;
2506 }
2507 if (netevent_registered && list_empty(&adapter_list)) {
2508 unregister_netevent_notifier(&cxgb4_netevent_nb);
2509 netevent_registered = false;
2510 }
2511 mutex_unlock(&uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302512
2513 spin_lock(&adap_rcu_lock);
2514 list_del_rcu(&adap->rcu_node);
2515 spin_unlock(&adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002516}
2517
2518static void notify_ulds(struct adapter *adap, enum cxgb4_state new_state)
2519{
2520 unsigned int i;
2521
2522 mutex_lock(&uld_mutex);
2523 for (i = 0; i < CXGB4_ULD_MAX; i++)
2524 if (adap->uld_handle[i])
2525 ulds[i].state_change(adap->uld_handle[i], new_state);
2526 mutex_unlock(&uld_mutex);
2527}
2528
2529/**
2530 * cxgb4_register_uld - register an upper-layer driver
2531 * @type: the ULD type
2532 * @p: the ULD methods
2533 *
2534 * Registers an upper-layer driver with this driver and notifies the ULD
2535 * about any presently available devices that support its type. Returns
2536 * %-EBUSY if a ULD of the same type is already registered.
2537 */
2538int cxgb4_register_uld(enum cxgb4_uld type, const struct cxgb4_uld_info *p)
2539{
2540 int ret = 0;
2541 struct adapter *adap;
2542
2543 if (type >= CXGB4_ULD_MAX)
2544 return -EINVAL;
2545 mutex_lock(&uld_mutex);
2546 if (ulds[type].add) {
2547 ret = -EBUSY;
2548 goto out;
2549 }
2550 ulds[type] = *p;
2551 list_for_each_entry(adap, &adapter_list, list_node)
2552 uld_attach(adap, type);
2553out: mutex_unlock(&uld_mutex);
2554 return ret;
2555}
2556EXPORT_SYMBOL(cxgb4_register_uld);
2557
2558/**
2559 * cxgb4_unregister_uld - unregister an upper-layer driver
2560 * @type: the ULD type
2561 *
2562 * Unregisters an existing upper-layer driver.
2563 */
2564int cxgb4_unregister_uld(enum cxgb4_uld type)
2565{
2566 struct adapter *adap;
2567
2568 if (type >= CXGB4_ULD_MAX)
2569 return -EINVAL;
2570 mutex_lock(&uld_mutex);
2571 list_for_each_entry(adap, &adapter_list, list_node)
2572 adap->uld_handle[type] = NULL;
2573 ulds[type].add = NULL;
2574 mutex_unlock(&uld_mutex);
2575 return 0;
2576}
2577EXPORT_SYMBOL(cxgb4_unregister_uld);
2578
Anish Bhatt1bb60372014-10-14 20:07:22 -07002579#if IS_ENABLED(CONFIG_IPV6)
Anish Bhattb5a02f52015-01-14 15:17:34 -08002580static int cxgb4_inet6addr_handler(struct notifier_block *this,
2581 unsigned long event, void *data)
Vipul Pandya01bcca62013-07-04 16:10:46 +05302582{
Anish Bhattb5a02f52015-01-14 15:17:34 -08002583 struct inet6_ifaddr *ifa = data;
2584 struct net_device *event_dev = ifa->idev->dev;
2585 const struct device *parent = NULL;
2586#if IS_ENABLED(CONFIG_BONDING)
Vipul Pandya01bcca62013-07-04 16:10:46 +05302587 struct adapter *adap;
Anish Bhattb5a02f52015-01-14 15:17:34 -08002588#endif
2589 if (event_dev->priv_flags & IFF_802_1Q_VLAN)
2590 event_dev = vlan_dev_real_dev(event_dev);
2591#if IS_ENABLED(CONFIG_BONDING)
2592 if (event_dev->flags & IFF_MASTER) {
2593 list_for_each_entry(adap, &adapter_list, list_node) {
2594 switch (event) {
2595 case NETDEV_UP:
2596 cxgb4_clip_get(adap->port[0],
2597 (const u32 *)ifa, 1);
2598 break;
2599 case NETDEV_DOWN:
2600 cxgb4_clip_release(adap->port[0],
2601 (const u32 *)ifa, 1);
2602 break;
2603 default:
2604 break;
2605 }
2606 }
2607 return NOTIFY_OK;
2608 }
2609#endif
Vipul Pandya01bcca62013-07-04 16:10:46 +05302610
Anish Bhattb5a02f52015-01-14 15:17:34 -08002611 if (event_dev)
2612 parent = event_dev->dev.parent;
Vipul Pandya01bcca62013-07-04 16:10:46 +05302613
Anish Bhattb5a02f52015-01-14 15:17:34 -08002614 if (parent && parent->driver == &cxgb4_driver.driver) {
Vipul Pandya01bcca62013-07-04 16:10:46 +05302615 switch (event) {
2616 case NETDEV_UP:
Anish Bhattb5a02f52015-01-14 15:17:34 -08002617 cxgb4_clip_get(event_dev, (const u32 *)ifa, 1);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302618 break;
2619 case NETDEV_DOWN:
Anish Bhattb5a02f52015-01-14 15:17:34 -08002620 cxgb4_clip_release(event_dev, (const u32 *)ifa, 1);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302621 break;
2622 default:
2623 break;
2624 }
2625 }
Anish Bhattb5a02f52015-01-14 15:17:34 -08002626 return NOTIFY_OK;
Vipul Pandya01bcca62013-07-04 16:10:46 +05302627}
2628
Anish Bhattb5a02f52015-01-14 15:17:34 -08002629static bool inet6addr_registered;
Vipul Pandya01bcca62013-07-04 16:10:46 +05302630static struct notifier_block cxgb4_inet6addr_notifier = {
2631 .notifier_call = cxgb4_inet6addr_handler
2632};
2633
Vipul Pandya01bcca62013-07-04 16:10:46 +05302634static void update_clip(const struct adapter *adap)
2635{
2636 int i;
2637 struct net_device *dev;
2638 int ret;
2639
2640 rcu_read_lock();
2641
2642 for (i = 0; i < MAX_NPORTS; i++) {
2643 dev = adap->port[i];
2644 ret = 0;
2645
2646 if (dev)
Anish Bhattb5a02f52015-01-14 15:17:34 -08002647 ret = cxgb4_update_root_dev_clip(dev);
Vipul Pandya01bcca62013-07-04 16:10:46 +05302648
2649 if (ret < 0)
2650 break;
2651 }
2652 rcu_read_unlock();
2653}
Anish Bhatt1bb60372014-10-14 20:07:22 -07002654#endif /* IS_ENABLED(CONFIG_IPV6) */
Vipul Pandya01bcca62013-07-04 16:10:46 +05302655
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002656/**
2657 * cxgb_up - enable the adapter
2658 * @adap: adapter being enabled
2659 *
2660 * Called when the first port is enabled, this function performs the
2661 * actions necessary to make an adapter operational, such as completing
2662 * the initialization of HW modules, and enabling interrupts.
2663 *
2664 * Must be called with the rtnl lock held.
2665 */
2666static int cxgb_up(struct adapter *adap)
2667{
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002668 int err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002669
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002670 err = setup_sge_queues(adap);
2671 if (err)
2672 goto out;
2673 err = setup_rss(adap);
2674 if (err)
2675 goto freeq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002676
2677 if (adap->flags & USING_MSIX) {
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002678 name_msix_vecs(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002679 err = request_irq(adap->msix_info[0].vec, t4_nondata_intr, 0,
2680 adap->msix_info[0].desc, adap);
2681 if (err)
2682 goto irq_err;
2683
2684 err = request_msix_queue_irqs(adap);
2685 if (err) {
2686 free_irq(adap->msix_info[0].vec, adap);
2687 goto irq_err;
2688 }
2689 } else {
2690 err = request_irq(adap->pdev->irq, t4_intr_handler(adap),
2691 (adap->flags & USING_MSI) ? 0 : IRQF_SHARED,
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00002692 adap->port[0]->name, adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002693 if (err)
2694 goto irq_err;
2695 }
2696 enable_rx(adap);
2697 t4_sge_start(adap);
2698 t4_intr_enable(adap);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002699 adap->flags |= FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002700 notify_ulds(adap, CXGB4_STATE_UP);
Anish Bhatt1bb60372014-10-14 20:07:22 -07002701#if IS_ENABLED(CONFIG_IPV6)
Vipul Pandya01bcca62013-07-04 16:10:46 +05302702 update_clip(adap);
Anish Bhatt1bb60372014-10-14 20:07:22 -07002703#endif
Hariprasad Shenaifc08a012016-02-16 10:07:09 +05302704 /* Initialize hash mac addr list*/
2705 INIT_LIST_HEAD(&adap->mac_hlist);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002706 out:
2707 return err;
2708 irq_err:
2709 dev_err(adap->pdev_dev, "request_irq failed, err %d\n", err);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002710 freeq:
2711 t4_free_sge_resources(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002712 goto out;
2713}
2714
2715static void cxgb_down(struct adapter *adapter)
2716{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002717 cancel_work_sync(&adapter->tid_release_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05302718 cancel_work_sync(&adapter->db_full_task);
2719 cancel_work_sync(&adapter->db_drop_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002720 adapter->tid_release_task_busy = false;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00002721 adapter->tid_release_head = NULL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002722
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002723 t4_sge_stop(adapter);
2724 t4_free_sge_resources(adapter);
2725 adapter->flags &= ~FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002726}
2727
2728/*
2729 * net_device operations
2730 */
2731static int cxgb_open(struct net_device *dev)
2732{
2733 int err;
2734 struct port_info *pi = netdev_priv(dev);
2735 struct adapter *adapter = pi->adapter;
2736
Dimitris Michailidis6a3c8692011-01-19 15:29:05 +00002737 netif_carrier_off(dev);
2738
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00002739 if (!(adapter->flags & FULL_INIT_DONE)) {
2740 err = cxgb_up(adapter);
2741 if (err < 0)
2742 return err;
2743 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002744
Dimitris Michailidisf68707b2010-06-18 10:05:32 +00002745 err = link_start(dev);
2746 if (!err)
2747 netif_tx_start_all_queues(dev);
2748 return err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002749}
2750
2751static int cxgb_close(struct net_device *dev)
2752{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002753 struct port_info *pi = netdev_priv(dev);
2754 struct adapter *adapter = pi->adapter;
2755
2756 netif_tx_stop_all_queues(dev);
2757 netif_carrier_off(dev);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302758 return t4_enable_vi(adapter, adapter->pf, pi->viid, false, false);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002759}
2760
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00002761/* Return an error number if the indicated filter isn't writable ...
2762 */
2763static int writable_filter(struct filter_entry *f)
2764{
2765 if (f->locked)
2766 return -EPERM;
2767 if (f->pending)
2768 return -EBUSY;
2769
2770 return 0;
2771}
2772
2773/* Delete the filter at the specified index (if valid). The checks for all
2774 * the common problems with doing this like the filter being locked, currently
2775 * pending in another operation, etc.
2776 */
2777static int delete_filter(struct adapter *adapter, unsigned int fidx)
2778{
2779 struct filter_entry *f;
2780 int ret;
2781
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002782 if (fidx >= adapter->tids.nftids + adapter->tids.nsftids)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00002783 return -EINVAL;
2784
2785 f = &adapter->tids.ftid_tab[fidx];
2786 ret = writable_filter(f);
2787 if (ret)
2788 return ret;
2789 if (f->valid)
2790 return del_filter_wr(adapter, fidx);
2791
2792 return 0;
2793}
2794
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002795int cxgb4_create_server_filter(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00002796 __be32 sip, __be16 sport, __be16 vlan,
2797 unsigned int queue, unsigned char port, unsigned char mask)
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002798{
2799 int ret;
2800 struct filter_entry *f;
2801 struct adapter *adap;
2802 int i;
2803 u8 *val;
2804
2805 adap = netdev2adap(dev);
2806
Vipul Pandya1cab7752012-12-10 09:30:55 +00002807 /* Adjust stid to correct filter index */
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05302808 stid -= adap->tids.sftid_base;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002809 stid += adap->tids.nftids;
2810
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002811 /* Check to make sure the filter requested is writable ...
2812 */
2813 f = &adap->tids.ftid_tab[stid];
2814 ret = writable_filter(f);
2815 if (ret)
2816 return ret;
2817
2818 /* Clear out any old resources being used by the filter before
2819 * we start constructing the new filter.
2820 */
2821 if (f->valid)
2822 clear_filter(adap, f);
2823
2824 /* Clear out filter specifications */
2825 memset(&f->fs, 0, sizeof(struct ch_filter_specification));
2826 f->fs.val.lport = cpu_to_be16(sport);
2827 f->fs.mask.lport = ~0;
2828 val = (u8 *)&sip;
Vipul Pandya793dad92012-12-10 09:30:56 +00002829 if ((val[0] | val[1] | val[2] | val[3]) != 0) {
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002830 for (i = 0; i < 4; i++) {
2831 f->fs.val.lip[i] = val[i];
2832 f->fs.mask.lip[i] = ~0;
2833 }
Hariprasad Shenai0d804332015-01-05 16:30:47 +05302834 if (adap->params.tp.vlan_pri_map & PORT_F) {
Vipul Pandya793dad92012-12-10 09:30:56 +00002835 f->fs.val.iport = port;
2836 f->fs.mask.iport = mask;
2837 }
2838 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002839
Hariprasad Shenai0d804332015-01-05 16:30:47 +05302840 if (adap->params.tp.vlan_pri_map & PROTOCOL_F) {
Kumar Sanghvi7c89e552013-12-18 16:38:20 +05302841 f->fs.val.proto = IPPROTO_TCP;
2842 f->fs.mask.proto = ~0;
2843 }
2844
Vipul Pandyadca4fae2012-12-10 09:30:53 +00002845 f->fs.dirsteer = 1;
2846 f->fs.iq = queue;
2847 /* Mark filter as locked */
2848 f->locked = 1;
2849 f->fs.rpttid = 1;
2850
2851 ret = set_filter_wr(adap, stid);
2852 if (ret) {
2853 clear_filter(adap, f);
2854 return ret;
2855 }
2856
2857 return 0;
2858}
2859EXPORT_SYMBOL(cxgb4_create_server_filter);
2860
2861int cxgb4_remove_server_filter(const struct net_device *dev, unsigned int stid,
2862 unsigned int queue, bool ipv6)
2863{
2864 int ret;
2865 struct filter_entry *f;
2866 struct adapter *adap;
2867
2868 adap = netdev2adap(dev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002869
2870 /* 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 f = &adap->tids.ftid_tab[stid];
2875 /* Unlock the filter */
2876 f->locked = 0;
2877
2878 ret = delete_filter(adap, stid);
2879 if (ret)
2880 return ret;
2881
2882 return 0;
2883}
2884EXPORT_SYMBOL(cxgb4_remove_server_filter);
2885
Dimitris Michailidisf5152c92010-07-07 16:11:25 +00002886static struct rtnl_link_stats64 *cxgb_get_stats(struct net_device *dev,
2887 struct rtnl_link_stats64 *ns)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002888{
2889 struct port_stats stats;
2890 struct port_info *p = netdev_priv(dev);
2891 struct adapter *adapter = p->adapter;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002892
Gavin Shan9fe6cb52014-01-23 12:27:35 +08002893 /* Block retrieving statistics during EEH error
2894 * recovery. Otherwise, the recovery might fail
2895 * and the PCI device will be removed permanently
2896 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002897 spin_lock(&adapter->stats_lock);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08002898 if (!netif_device_present(dev)) {
2899 spin_unlock(&adapter->stats_lock);
2900 return ns;
2901 }
Hariprasad Shenaia4cfd922015-06-03 21:04:39 +05302902 t4_get_port_stats_offset(adapter, p->tx_chan, &stats,
2903 &p->stats_base);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002904 spin_unlock(&adapter->stats_lock);
2905
2906 ns->tx_bytes = stats.tx_octets;
2907 ns->tx_packets = stats.tx_frames;
2908 ns->rx_bytes = stats.rx_octets;
2909 ns->rx_packets = stats.rx_frames;
2910 ns->multicast = stats.rx_mcast_frames;
2911
2912 /* detailed rx_errors */
2913 ns->rx_length_errors = stats.rx_jabber + stats.rx_too_long +
2914 stats.rx_runt;
2915 ns->rx_over_errors = 0;
2916 ns->rx_crc_errors = stats.rx_fcs_err;
2917 ns->rx_frame_errors = stats.rx_symbol_err;
2918 ns->rx_fifo_errors = stats.rx_ovflow0 + stats.rx_ovflow1 +
2919 stats.rx_ovflow2 + stats.rx_ovflow3 +
2920 stats.rx_trunc0 + stats.rx_trunc1 +
2921 stats.rx_trunc2 + stats.rx_trunc3;
2922 ns->rx_missed_errors = 0;
2923
2924 /* detailed tx_errors */
2925 ns->tx_aborted_errors = 0;
2926 ns->tx_carrier_errors = 0;
2927 ns->tx_fifo_errors = 0;
2928 ns->tx_heartbeat_errors = 0;
2929 ns->tx_window_errors = 0;
2930
2931 ns->tx_errors = stats.tx_error_frames;
2932 ns->rx_errors = stats.rx_symbol_err + stats.rx_fcs_err +
2933 ns->rx_length_errors + stats.rx_len_err + ns->rx_fifo_errors;
2934 return ns;
2935}
2936
2937static int cxgb_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
2938{
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002939 unsigned int mbox;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002940 int ret = 0, prtad, devad;
2941 struct port_info *pi = netdev_priv(dev);
2942 struct mii_ioctl_data *data = (struct mii_ioctl_data *)&req->ifr_data;
2943
2944 switch (cmd) {
2945 case SIOCGMIIPHY:
2946 if (pi->mdio_addr < 0)
2947 return -EOPNOTSUPP;
2948 data->phy_id = pi->mdio_addr;
2949 break;
2950 case SIOCGMIIREG:
2951 case SIOCSMIIREG:
2952 if (mdio_phy_id_is_c45(data->phy_id)) {
2953 prtad = mdio_phy_id_prtad(data->phy_id);
2954 devad = mdio_phy_id_devad(data->phy_id);
2955 } else if (data->phy_id < 32) {
2956 prtad = data->phy_id;
2957 devad = 0;
2958 data->reg_num &= 0x1f;
2959 } else
2960 return -EINVAL;
2961
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302962 mbox = pi->adapter->pf;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002963 if (cmd == SIOCGMIIREG)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002964 ret = t4_mdio_rd(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002965 data->reg_num, &data->val_out);
2966 else
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002967 ret = t4_mdio_wr(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002968 data->reg_num, data->val_in);
2969 break;
Hariprasad Shenai5e2a5eb2015-09-28 10:26:53 +05302970 case SIOCGHWTSTAMP:
2971 return copy_to_user(req->ifr_data, &pi->tstamp_config,
2972 sizeof(pi->tstamp_config)) ?
2973 -EFAULT : 0;
2974 case SIOCSHWTSTAMP:
2975 if (copy_from_user(&pi->tstamp_config, req->ifr_data,
2976 sizeof(pi->tstamp_config)))
2977 return -EFAULT;
2978
2979 switch (pi->tstamp_config.rx_filter) {
2980 case HWTSTAMP_FILTER_NONE:
2981 pi->rxtstamp = false;
2982 break;
2983 case HWTSTAMP_FILTER_ALL:
2984 pi->rxtstamp = true;
2985 break;
2986 default:
2987 pi->tstamp_config.rx_filter = HWTSTAMP_FILTER_NONE;
2988 return -ERANGE;
2989 }
2990
2991 return copy_to_user(req->ifr_data, &pi->tstamp_config,
2992 sizeof(pi->tstamp_config)) ?
2993 -EFAULT : 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002994 default:
2995 return -EOPNOTSUPP;
2996 }
2997 return ret;
2998}
2999
3000static void cxgb_set_rxmode(struct net_device *dev)
3001{
3002 /* unfortunately we can't return errors to the stack */
3003 set_rxmode(dev, -1, false);
3004}
3005
3006static int cxgb_change_mtu(struct net_device *dev, int new_mtu)
3007{
3008 int ret;
3009 struct port_info *pi = netdev_priv(dev);
3010
3011 if (new_mtu < 81 || new_mtu > MAX_MTU) /* accommodate SACK */
3012 return -EINVAL;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303013 ret = t4_set_rxmode(pi->adapter, pi->adapter->pf, pi->viid, new_mtu, -1,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003014 -1, -1, -1, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003015 if (!ret)
3016 dev->mtu = new_mtu;
3017 return ret;
3018}
3019
3020static int cxgb_set_mac_addr(struct net_device *dev, void *p)
3021{
3022 int ret;
3023 struct sockaddr *addr = p;
3024 struct port_info *pi = netdev_priv(dev);
3025
3026 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00003027 return -EADDRNOTAVAIL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003028
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303029 ret = t4_change_mac(pi->adapter, pi->adapter->pf, pi->viid,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003030 pi->xact_addr_filt, addr->sa_data, true, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003031 if (ret < 0)
3032 return ret;
3033
3034 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
3035 pi->xact_addr_filt = ret;
3036 return 0;
3037}
3038
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003039#ifdef CONFIG_NET_POLL_CONTROLLER
3040static void cxgb_netpoll(struct net_device *dev)
3041{
3042 struct port_info *pi = netdev_priv(dev);
3043 struct adapter *adap = pi->adapter;
3044
3045 if (adap->flags & USING_MSIX) {
3046 int i;
3047 struct sge_eth_rxq *rx = &adap->sge.ethrxq[pi->first_qset];
3048
3049 for (i = pi->nqsets; i; i--, rx++)
3050 t4_sge_intr_msix(0, &rx->rspq);
3051 } else
3052 t4_intr_handler(adap)(0, adap);
3053}
3054#endif
3055
3056static const struct net_device_ops cxgb4_netdev_ops = {
3057 .ndo_open = cxgb_open,
3058 .ndo_stop = cxgb_close,
3059 .ndo_start_xmit = t4_eth_xmit,
Anish Bhatt688848b2014-06-19 21:37:13 -07003060 .ndo_select_queue = cxgb_select_queue,
Dimitris Michailidis9be793b2010-06-18 10:05:31 +00003061 .ndo_get_stats64 = cxgb_get_stats,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003062 .ndo_set_rx_mode = cxgb_set_rxmode,
3063 .ndo_set_mac_address = cxgb_set_mac_addr,
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00003064 .ndo_set_features = cxgb_set_features,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003065 .ndo_validate_addr = eth_validate_addr,
3066 .ndo_do_ioctl = cxgb_ioctl,
3067 .ndo_change_mtu = cxgb_change_mtu,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003068#ifdef CONFIG_NET_POLL_CONTROLLER
3069 .ndo_poll_controller = cxgb_netpoll,
3070#endif
Varun Prakash84a200b2015-03-24 19:14:46 +05303071#ifdef CONFIG_CHELSIO_T4_FCOE
3072 .ndo_fcoe_enable = cxgb_fcoe_enable,
3073 .ndo_fcoe_disable = cxgb_fcoe_disable,
3074#endif /* CONFIG_CHELSIO_T4_FCOE */
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05303075#ifdef CONFIG_NET_RX_BUSY_POLL
3076 .ndo_busy_poll = cxgb_busy_poll,
3077#endif
3078
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003079};
3080
3081void t4_fatal_err(struct adapter *adap)
3082{
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303083 t4_set_reg_field(adap, SGE_CONTROL_A, GLOBALENABLE_F, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003084 t4_intr_disable(adap);
3085 dev_alert(adap->pdev_dev, "encountered fatal error, adapter stopped\n");
3086}
3087
3088static void setup_memwin(struct adapter *adap)
3089{
Hariprasad Shenaib562fc32015-05-20 17:53:45 +05303090 u32 nic_win_base = t4_get_util_window(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003091
Hariprasad Shenaib562fc32015-05-20 17:53:45 +05303092 t4_setup_memwin(adap, nic_win_base, MEMWIN_NIC);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003093}
3094
3095static void setup_memwin_rdma(struct adapter *adap)
3096{
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003097 if (adap->vres.ocq.size) {
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05303098 u32 start;
3099 unsigned int sz_kb;
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003100
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05303101 start = t4_read_pcie_cfg4(adap, PCI_BASE_ADDRESS_2);
3102 start &= PCI_BASE_ADDRESS_MEM_MASK;
3103 start += OCQ_WIN_OFFSET(adap->pdev, &adap->vres);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003104 sz_kb = roundup_pow_of_two(adap->vres.ocq.size) >> 10;
3105 t4_write_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303106 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 3),
3107 start | BIR_V(1) | WINDOW_V(ilog2(sz_kb)));
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003108 t4_write_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303109 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3),
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003110 adap->vres.ocq.start);
3111 t4_read_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303112 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3));
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00003113 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003114}
3115
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003116static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c)
3117{
3118 u32 v;
3119 int ret;
3120
3121 /* get device capabilities */
3122 memset(c, 0, sizeof(*c));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303123 c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3124 FW_CMD_REQUEST_F | FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303125 c->cfvalid_to_len16 = htonl(FW_LEN16(*c));
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303126 ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), c);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003127 if (ret < 0)
3128 return ret;
3129
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303130 c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3131 FW_CMD_REQUEST_F | FW_CMD_WRITE_F);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303132 ret = t4_wr_mbox(adap, adap->mbox, c, sizeof(*c), NULL);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003133 if (ret < 0)
3134 return ret;
3135
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303136 ret = t4_config_glbl_rss(adap, adap->pf,
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003137 FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL,
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05303138 FW_RSS_GLB_CONFIG_CMD_TNLMAPEN_F |
3139 FW_RSS_GLB_CONFIG_CMD_TNLALLLKP_F);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003140 if (ret < 0)
3141 return ret;
3142
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303143 ret = t4_cfg_pfvf(adap, adap->mbox, adap->pf, 0, adap->sge.egr_sz, 64,
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303144 MAX_INGQ, 0, 0, 4, 0xf, 0xf, 16, FW_CMD_CAP_PF,
3145 FW_CMD_CAP_PF);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003146 if (ret < 0)
3147 return ret;
3148
3149 t4_sge_init(adap);
3150
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003151 /* tweak some settings */
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303152 t4_write_reg(adap, TP_SHIFT_CNT_A, 0x64f8849);
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303153 t4_write_reg(adap, ULP_RX_TDDP_PSZ_A, HPZ0_V(PAGE_SHIFT - 12));
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303154 t4_write_reg(adap, TP_PIO_ADDR_A, TP_INGRESS_CONFIG_A);
3155 v = t4_read_reg(adap, TP_PIO_DATA_A);
3156 t4_write_reg(adap, TP_PIO_DATA_A, v & ~CSUM_HAS_PSEUDO_HDR_F);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003157
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003158 /* first 4 Tx modulation queues point to consecutive Tx channels */
3159 adap->params.tp.tx_modq_map = 0xE4;
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303160 t4_write_reg(adap, TP_TX_MOD_QUEUE_REQ_MAP_A,
3161 TX_MOD_QUEUE_REQ_MAP_V(adap->params.tp.tx_modq_map));
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003162
3163 /* associate each Tx modulation queue with consecutive Tx channels */
3164 v = 0x84218421;
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303165 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303166 &v, 1, TP_TX_SCHED_HDR_A);
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303167 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303168 &v, 1, TP_TX_SCHED_FIFO_A);
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303169 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303170 &v, 1, TP_TX_SCHED_PCMD_A);
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003171
3172#define T4_TX_MODQ_10G_WEIGHT_DEFAULT 16 /* in KB units */
3173 if (is_offload(adap)) {
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303174 t4_write_reg(adap, TP_TX_MOD_QUEUE_WEIGHT0_A,
3175 TX_MODQ_WEIGHT0_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3176 TX_MODQ_WEIGHT1_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3177 TX_MODQ_WEIGHT2_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3178 TX_MODQ_WEIGHT3_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
3179 t4_write_reg(adap, TP_TX_MOD_CHANNEL_WEIGHT_A,
3180 TX_MODQ_WEIGHT0_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3181 TX_MODQ_WEIGHT1_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3182 TX_MODQ_WEIGHT2_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
3183 TX_MODQ_WEIGHT3_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003184 }
3185
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003186 /* get basic stuff going */
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303187 return t4_early_init(adap, adap->pf);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00003188}
3189
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003190/*
3191 * Max # of ATIDs. The absolute HW max is 16K but we keep it lower.
3192 */
3193#define MAX_ATIDS 8192U
3194
3195/*
3196 * Phase 0 of initialization: contact FW, obtain config, perform basic init.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003197 *
3198 * If the firmware we're dealing with has Configuration File support, then
3199 * we use that to perform all configuration
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003200 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00003201
3202/*
3203 * Tweak configuration based on module parameters, etc. Most of these have
3204 * defaults assigned to them by Firmware Configuration Files (if we're using
3205 * them) but need to be explicitly set if we're using hard-coded
3206 * initialization. But even in the case of using Firmware Configuration
3207 * Files, we'd like to expose the ability to change these via module
3208 * parameters so these are essentially common tweaks/settings for
3209 * Configuration Files and hard-coded initialization ...
3210 */
3211static int adap_init0_tweaks(struct adapter *adapter)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003212{
Vipul Pandya636f9d32012-09-26 02:39:39 +00003213 /*
3214 * Fix up various Host-Dependent Parameters like Page Size, Cache
3215 * Line Size, etc. The firmware default is for a 4KB Page Size and
3216 * 64B Cache Line Size ...
3217 */
3218 t4_fixup_host_params(adapter, PAGE_SIZE, L1_CACHE_BYTES);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003219
Vipul Pandya636f9d32012-09-26 02:39:39 +00003220 /*
3221 * Process module parameters which affect early initialization.
3222 */
3223 if (rx_dma_offset != 2 && rx_dma_offset != 0) {
3224 dev_err(&adapter->pdev->dev,
3225 "Ignoring illegal rx_dma_offset=%d, using 2\n",
3226 rx_dma_offset);
3227 rx_dma_offset = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003228 }
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303229 t4_set_reg_field(adapter, SGE_CONTROL_A,
3230 PKTSHIFT_V(PKTSHIFT_M),
3231 PKTSHIFT_V(rx_dma_offset));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003232
Vipul Pandya636f9d32012-09-26 02:39:39 +00003233 /*
3234 * Don't include the "IP Pseudo Header" in CPL_RX_PKT checksums: Linux
3235 * adds the pseudo header itself.
3236 */
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303237 t4_tp_wr_bits_indirect(adapter, TP_INGRESS_CONFIG_A,
3238 CSUM_HAS_PSEUDO_HDR_F, 0);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003239
3240 return 0;
3241}
3242
Hariprasad Shenai01b69612015-05-22 21:58:21 +05303243/* 10Gb/s-BT PHY Support. chip-external 10Gb/s-BT PHYs are complex chips
3244 * unto themselves and they contain their own firmware to perform their
3245 * tasks ...
3246 */
3247static int phy_aq1202_version(const u8 *phy_fw_data,
3248 size_t phy_fw_size)
3249{
3250 int offset;
3251
3252 /* At offset 0x8 you're looking for the primary image's
3253 * starting offset which is 3 Bytes wide
3254 *
3255 * At offset 0xa of the primary image, you look for the offset
3256 * of the DRAM segment which is 3 Bytes wide.
3257 *
3258 * The FW version is at offset 0x27e of the DRAM and is 2 Bytes
3259 * wide
3260 */
3261 #define be16(__p) (((__p)[0] << 8) | (__p)[1])
3262 #define le16(__p) ((__p)[0] | ((__p)[1] << 8))
3263 #define le24(__p) (le16(__p) | ((__p)[2] << 16))
3264
3265 offset = le24(phy_fw_data + 0x8) << 12;
3266 offset = le24(phy_fw_data + offset + 0xa);
3267 return be16(phy_fw_data + offset + 0x27e);
3268
3269 #undef be16
3270 #undef le16
3271 #undef le24
3272}
3273
3274static struct info_10gbt_phy_fw {
3275 unsigned int phy_fw_id; /* PCI Device ID */
3276 char *phy_fw_file; /* /lib/firmware/ PHY Firmware file */
3277 int (*phy_fw_version)(const u8 *phy_fw_data, size_t phy_fw_size);
3278 int phy_flash; /* Has FLASH for PHY Firmware */
3279} phy_info_array[] = {
3280 {
3281 PHY_AQ1202_DEVICEID,
3282 PHY_AQ1202_FIRMWARE,
3283 phy_aq1202_version,
3284 1,
3285 },
3286 {
3287 PHY_BCM84834_DEVICEID,
3288 PHY_BCM84834_FIRMWARE,
3289 NULL,
3290 0,
3291 },
3292 { 0, NULL, NULL },
3293};
3294
3295static struct info_10gbt_phy_fw *find_phy_info(int devid)
3296{
3297 int i;
3298
3299 for (i = 0; i < ARRAY_SIZE(phy_info_array); i++) {
3300 if (phy_info_array[i].phy_fw_id == devid)
3301 return &phy_info_array[i];
3302 }
3303 return NULL;
3304}
3305
3306/* Handle updating of chip-external 10Gb/s-BT PHY firmware. This needs to
3307 * happen after the FW_RESET_CMD but before the FW_INITIALIZE_CMD. On error
3308 * we return a negative error number. If we transfer new firmware we return 1
3309 * (from t4_load_phy_fw()). If we don't do anything we return 0.
3310 */
3311static int adap_init0_phy(struct adapter *adap)
3312{
3313 const struct firmware *phyf;
3314 int ret;
3315 struct info_10gbt_phy_fw *phy_info;
3316
3317 /* Use the device ID to determine which PHY file to flash.
3318 */
3319 phy_info = find_phy_info(adap->pdev->device);
3320 if (!phy_info) {
3321 dev_warn(adap->pdev_dev,
3322 "No PHY Firmware file found for this PHY\n");
3323 return -EOPNOTSUPP;
3324 }
3325
3326 /* If we have a T4 PHY firmware file under /lib/firmware/cxgb4/, then
3327 * use that. The adapter firmware provides us with a memory buffer
3328 * where we can load a PHY firmware file from the host if we want to
3329 * override the PHY firmware File in flash.
3330 */
3331 ret = request_firmware_direct(&phyf, phy_info->phy_fw_file,
3332 adap->pdev_dev);
3333 if (ret < 0) {
3334 /* For adapters without FLASH attached to PHY for their
3335 * firmware, it's obviously a fatal error if we can't get the
3336 * firmware to the adapter. For adapters with PHY firmware
3337 * FLASH storage, it's worth a warning if we can't find the
3338 * PHY Firmware but we'll neuter the error ...
3339 */
3340 dev_err(adap->pdev_dev, "unable to find PHY Firmware image "
3341 "/lib/firmware/%s, error %d\n",
3342 phy_info->phy_fw_file, -ret);
3343 if (phy_info->phy_flash) {
3344 int cur_phy_fw_ver = 0;
3345
3346 t4_phy_fw_ver(adap, &cur_phy_fw_ver);
3347 dev_warn(adap->pdev_dev, "continuing with, on-adapter "
3348 "FLASH copy, version %#x\n", cur_phy_fw_ver);
3349 ret = 0;
3350 }
3351
3352 return ret;
3353 }
3354
3355 /* Load PHY Firmware onto adapter.
3356 */
3357 ret = t4_load_phy_fw(adap, MEMWIN_NIC, &adap->win0_lock,
3358 phy_info->phy_fw_version,
3359 (u8 *)phyf->data, phyf->size);
3360 if (ret < 0)
3361 dev_err(adap->pdev_dev, "PHY Firmware transfer error %d\n",
3362 -ret);
3363 else if (ret > 0) {
3364 int new_phy_fw_ver = 0;
3365
3366 if (phy_info->phy_fw_version)
3367 new_phy_fw_ver = phy_info->phy_fw_version(phyf->data,
3368 phyf->size);
3369 dev_info(adap->pdev_dev, "Successfully transferred PHY "
3370 "Firmware /lib/firmware/%s, version %#x\n",
3371 phy_info->phy_fw_file, new_phy_fw_ver);
3372 }
3373
3374 release_firmware(phyf);
3375
3376 return ret;
3377}
3378
Vipul Pandya636f9d32012-09-26 02:39:39 +00003379/*
3380 * Attempt to initialize the adapter via a Firmware Configuration File.
3381 */
3382static int adap_init0_config(struct adapter *adapter, int reset)
3383{
3384 struct fw_caps_config_cmd caps_cmd;
3385 const struct firmware *cf;
3386 unsigned long mtype = 0, maddr = 0;
3387 u32 finiver, finicsum, cfcsum;
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303388 int ret;
3389 int config_issued = 0;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003390 char *fw_config_file, fw_config_file_path[256];
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303391 char *config_name = NULL;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003392
3393 /*
3394 * Reset device if necessary.
3395 */
3396 if (reset) {
3397 ret = t4_fw_reset(adapter, adapter->mbox,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303398 PIORSTMODE_F | PIORST_F);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003399 if (ret < 0)
3400 goto bye;
3401 }
3402
Hariprasad Shenai01b69612015-05-22 21:58:21 +05303403 /* If this is a 10Gb/s-BT adapter make sure the chip-external
3404 * 10Gb/s-BT PHYs have up-to-date firmware. Note that this step needs
3405 * to be performed after any global adapter RESET above since some
3406 * PHYs only have local RAM copies of the PHY firmware.
3407 */
3408 if (is_10gbt_device(adapter->pdev->device)) {
3409 ret = adap_init0_phy(adapter);
3410 if (ret < 0)
3411 goto bye;
3412 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00003413 /*
3414 * If we have a T4 configuration file under /lib/firmware/cxgb4/,
3415 * then use that. Otherwise, use the configuration file stored
3416 * in the adapter flash ...
3417 */
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303418 switch (CHELSIO_CHIP_VERSION(adapter->params.chip)) {
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003419 case CHELSIO_T4:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303420 fw_config_file = FW4_CFNAME;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003421 break;
3422 case CHELSIO_T5:
3423 fw_config_file = FW5_CFNAME;
3424 break;
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05303425 case CHELSIO_T6:
3426 fw_config_file = FW6_CFNAME;
3427 break;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00003428 default:
3429 dev_err(adapter->pdev_dev, "Device %d is not supported\n",
3430 adapter->pdev->device);
3431 ret = -EINVAL;
3432 goto bye;
3433 }
3434
3435 ret = request_firmware(&cf, fw_config_file, adapter->pdev_dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003436 if (ret < 0) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303437 config_name = "On FLASH";
Vipul Pandya636f9d32012-09-26 02:39:39 +00003438 mtype = FW_MEMTYPE_CF_FLASH;
3439 maddr = t4_flash_cfg_addr(adapter);
3440 } else {
3441 u32 params[7], val[7];
3442
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303443 sprintf(fw_config_file_path,
3444 "/lib/firmware/%s", fw_config_file);
3445 config_name = fw_config_file_path;
3446
Vipul Pandya636f9d32012-09-26 02:39:39 +00003447 if (cf->size >= FLASH_CFG_MAX_SIZE)
3448 ret = -ENOMEM;
3449 else {
Hariprasad Shenai51678652014-11-21 12:52:02 +05303450 params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3451 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
Vipul Pandya636f9d32012-09-26 02:39:39 +00003452 ret = t4_query_params(adapter, adapter->mbox,
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303453 adapter->pf, 0, 1, params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003454 if (ret == 0) {
3455 /*
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303456 * For t4_memory_rw() below addresses and
Vipul Pandya636f9d32012-09-26 02:39:39 +00003457 * sizes have to be in terms of multiples of 4
3458 * bytes. So, if the Configuration File isn't
3459 * a multiple of 4 bytes in length we'll have
3460 * to write that out separately since we can't
3461 * guarantee that the bytes following the
3462 * residual byte in the buffer returned by
3463 * request_firmware() are zeroed out ...
3464 */
3465 size_t resid = cf->size & 0x3;
3466 size_t size = cf->size & ~0x3;
3467 __be32 *data = (__be32 *)cf->data;
3468
Hariprasad Shenai51678652014-11-21 12:52:02 +05303469 mtype = FW_PARAMS_PARAM_Y_G(val[0]);
3470 maddr = FW_PARAMS_PARAM_Z_G(val[0]) << 16;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003471
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303472 spin_lock(&adapter->win0_lock);
3473 ret = t4_memory_rw(adapter, 0, mtype, maddr,
3474 size, data, T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003475 if (ret == 0 && resid != 0) {
3476 union {
3477 __be32 word;
3478 char buf[4];
3479 } last;
3480 int i;
3481
3482 last.word = data[size >> 2];
3483 for (i = resid; i < 4; i++)
3484 last.buf[i] = 0;
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303485 ret = t4_memory_rw(adapter, 0, mtype,
3486 maddr + size,
3487 4, &last.word,
3488 T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003489 }
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303490 spin_unlock(&adapter->win0_lock);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003491 }
3492 }
3493
3494 release_firmware(cf);
3495 if (ret)
3496 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003497 }
3498
Vipul Pandya636f9d32012-09-26 02:39:39 +00003499 /*
3500 * Issue a Capability Configuration command to the firmware to get it
3501 * to parse the Configuration File. We don't use t4_fw_config_file()
3502 * because we want the ability to modify various features after we've
3503 * processed the configuration file ...
3504 */
3505 memset(&caps_cmd, 0, sizeof(caps_cmd));
3506 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303507 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3508 FW_CMD_REQUEST_F |
3509 FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303510 caps_cmd.cfvalid_to_len16 =
Hariprasad Shenai51678652014-11-21 12:52:02 +05303511 htonl(FW_CAPS_CONFIG_CMD_CFVALID_F |
3512 FW_CAPS_CONFIG_CMD_MEMTYPE_CF_V(mtype) |
3513 FW_CAPS_CONFIG_CMD_MEMADDR64K_CF_V(maddr >> 16) |
Vipul Pandya636f9d32012-09-26 02:39:39 +00003514 FW_LEN16(caps_cmd));
3515 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
3516 &caps_cmd);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303517
3518 /* If the CAPS_CONFIG failed with an ENOENT (for a Firmware
3519 * Configuration File in FLASH), our last gasp effort is to use the
3520 * Firmware Configuration File which is embedded in the firmware. A
3521 * very few early versions of the firmware didn't have one embedded
3522 * but we can ignore those.
3523 */
3524 if (ret == -ENOENT) {
3525 memset(&caps_cmd, 0, sizeof(caps_cmd));
3526 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303527 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3528 FW_CMD_REQUEST_F |
3529 FW_CMD_READ_F);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303530 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
3531 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd,
3532 sizeof(caps_cmd), &caps_cmd);
3533 config_name = "Firmware Default";
3534 }
3535
3536 config_issued = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003537 if (ret < 0)
3538 goto bye;
3539
Vipul Pandya636f9d32012-09-26 02:39:39 +00003540 finiver = ntohl(caps_cmd.finiver);
3541 finicsum = ntohl(caps_cmd.finicsum);
3542 cfcsum = ntohl(caps_cmd.cfcsum);
3543 if (finicsum != cfcsum)
3544 dev_warn(adapter->pdev_dev, "Configuration File checksum "\
3545 "mismatch: [fini] csum=%#x, computed csum=%#x\n",
3546 finicsum, cfcsum);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003547
Vipul Pandya636f9d32012-09-26 02:39:39 +00003548 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00003549 * And now tell the firmware to use the configuration we just loaded.
3550 */
3551 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303552 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3553 FW_CMD_REQUEST_F |
3554 FW_CMD_WRITE_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303555 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00003556 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
3557 NULL);
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00003558 if (ret < 0)
3559 goto bye;
3560
Vipul Pandya636f9d32012-09-26 02:39:39 +00003561 /*
3562 * Tweak configuration based on system architecture, module
3563 * parameters, etc.
3564 */
3565 ret = adap_init0_tweaks(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003566 if (ret < 0)
3567 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003568
Vipul Pandya636f9d32012-09-26 02:39:39 +00003569 /*
3570 * And finally tell the firmware to initialize itself using the
3571 * parameters from the Configuration File.
3572 */
3573 ret = t4_fw_initialize(adapter, adapter->mbox);
3574 if (ret < 0)
3575 goto bye;
3576
Hariprasad Shenai06640312015-01-13 15:19:25 +05303577 /* Emit Firmware Configuration File information and return
3578 * successfully.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003579 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00003580 dev_info(adapter->pdev_dev, "Successfully configured using Firmware "\
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303581 "Configuration File \"%s\", version %#x, computed checksum %#x\n",
3582 config_name, finiver, cfcsum);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003583 return 0;
3584
3585 /*
3586 * Something bad happened. Return the error ... (If the "error"
3587 * is that there's no Configuration File on the adapter we don't
3588 * want to issue a warning since this is fairly common.)
3589 */
3590bye:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303591 if (config_issued && ret != -ENOENT)
3592 dev_warn(adapter->pdev_dev, "\"%s\" configuration file error %d\n",
3593 config_name, -ret);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003594 return ret;
3595}
3596
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303597static struct fw_info fw_info_array[] = {
3598 {
3599 .chip = CHELSIO_T4,
3600 .fs_name = FW4_CFNAME,
3601 .fw_mod_name = FW4_FNAME,
3602 .fw_hdr = {
3603 .chip = FW_HDR_CHIP_T4,
3604 .fw_ver = __cpu_to_be32(FW_VERSION(T4)),
3605 .intfver_nic = FW_INTFVER(T4, NIC),
3606 .intfver_vnic = FW_INTFVER(T4, VNIC),
3607 .intfver_ri = FW_INTFVER(T4, RI),
3608 .intfver_iscsi = FW_INTFVER(T4, ISCSI),
3609 .intfver_fcoe = FW_INTFVER(T4, FCOE),
3610 },
3611 }, {
3612 .chip = CHELSIO_T5,
3613 .fs_name = FW5_CFNAME,
3614 .fw_mod_name = FW5_FNAME,
3615 .fw_hdr = {
3616 .chip = FW_HDR_CHIP_T5,
3617 .fw_ver = __cpu_to_be32(FW_VERSION(T5)),
3618 .intfver_nic = FW_INTFVER(T5, NIC),
3619 .intfver_vnic = FW_INTFVER(T5, VNIC),
3620 .intfver_ri = FW_INTFVER(T5, RI),
3621 .intfver_iscsi = FW_INTFVER(T5, ISCSI),
3622 .intfver_fcoe = FW_INTFVER(T5, FCOE),
3623 },
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05303624 }, {
3625 .chip = CHELSIO_T6,
3626 .fs_name = FW6_CFNAME,
3627 .fw_mod_name = FW6_FNAME,
3628 .fw_hdr = {
3629 .chip = FW_HDR_CHIP_T6,
3630 .fw_ver = __cpu_to_be32(FW_VERSION(T6)),
3631 .intfver_nic = FW_INTFVER(T6, NIC),
3632 .intfver_vnic = FW_INTFVER(T6, VNIC),
3633 .intfver_ofld = FW_INTFVER(T6, OFLD),
3634 .intfver_ri = FW_INTFVER(T6, RI),
3635 .intfver_iscsipdu = FW_INTFVER(T6, ISCSIPDU),
3636 .intfver_iscsi = FW_INTFVER(T6, ISCSI),
3637 .intfver_fcoepdu = FW_INTFVER(T6, FCOEPDU),
3638 .intfver_fcoe = FW_INTFVER(T6, FCOE),
3639 },
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303640 }
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05303641
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303642};
3643
3644static struct fw_info *find_fw_info(int chip)
3645{
3646 int i;
3647
3648 for (i = 0; i < ARRAY_SIZE(fw_info_array); i++) {
3649 if (fw_info_array[i].chip == chip)
3650 return &fw_info_array[i];
3651 }
3652 return NULL;
3653}
3654
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003655/*
Vipul Pandya636f9d32012-09-26 02:39:39 +00003656 * Phase 0 of initialization: contact FW, obtain config, perform basic init.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003657 */
3658static int adap_init0(struct adapter *adap)
3659{
3660 int ret;
3661 u32 v, port_vec;
3662 enum dev_state state;
3663 u32 params[7], val[7];
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00003664 struct fw_caps_config_cmd caps_cmd;
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05303665 int reset = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003666
Hariprasad Shenaiae469b62015-04-01 21:41:16 +05303667 /* Grab Firmware Device Log parameters as early as possible so we have
3668 * access to it for debugging, etc.
3669 */
3670 ret = t4_init_devlog_params(adap);
3671 if (ret < 0)
3672 return ret;
3673
Hariprasad Shenai666224d2014-12-11 11:11:43 +05303674 /* Contact FW, advertising Master capability */
3675 ret = t4_fw_hello(adap, adap->mbox, adap->mbox, MASTER_MAY, &state);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003676 if (ret < 0) {
3677 dev_err(adap->pdev_dev, "could not connect to FW, error %d\n",
3678 ret);
3679 return ret;
3680 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00003681 if (ret == adap->mbox)
3682 adap->flags |= MASTER_PF;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003683
Vipul Pandya636f9d32012-09-26 02:39:39 +00003684 /*
3685 * If we're the Master PF Driver and the device is uninitialized,
3686 * then let's consider upgrading the firmware ... (We always want
3687 * to check the firmware version number in order to A. get it for
3688 * later reporting and B. to warn if the currently loaded firmware
3689 * is excessively mismatched relative to the driver.)
3690 */
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303691 t4_get_fw_version(adap, &adap->params.fw_vers);
3692 t4_get_tp_version(adap, &adap->params.tp_vers);
Hariprasad Shenaia69265e2015-08-28 11:17:12 +05303693 ret = t4_check_fw_version(adap);
3694 /* If firmware is too old (not supported by driver) force an update. */
Hariprasad Shenai21d11bd2015-10-08 10:08:23 +05303695 if (ret)
Hariprasad Shenaia69265e2015-08-28 11:17:12 +05303696 state = DEV_STATE_UNINIT;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003697 if ((adap->flags & MASTER_PF) && state != DEV_STATE_INIT) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303698 struct fw_info *fw_info;
3699 struct fw_hdr *card_fw;
3700 const struct firmware *fw;
3701 const u8 *fw_data = NULL;
3702 unsigned int fw_size = 0;
3703
3704 /* This is the firmware whose headers the driver was compiled
3705 * against
3706 */
3707 fw_info = find_fw_info(CHELSIO_CHIP_VERSION(adap->params.chip));
3708 if (fw_info == NULL) {
3709 dev_err(adap->pdev_dev,
3710 "unable to get firmware info for chip %d.\n",
3711 CHELSIO_CHIP_VERSION(adap->params.chip));
3712 return -EINVAL;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003713 }
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303714
3715 /* allocate memory to read the header of the firmware on the
3716 * card
3717 */
3718 card_fw = t4_alloc_mem(sizeof(*card_fw));
3719
3720 /* Get FW from from /lib/firmware/ */
3721 ret = request_firmware(&fw, fw_info->fw_mod_name,
3722 adap->pdev_dev);
3723 if (ret < 0) {
3724 dev_err(adap->pdev_dev,
3725 "unable to load firmware image %s, error %d\n",
3726 fw_info->fw_mod_name, ret);
3727 } else {
3728 fw_data = fw->data;
3729 fw_size = fw->size;
3730 }
3731
3732 /* upgrade FW logic */
3733 ret = t4_prep_fw(adap, fw_info, fw_data, fw_size, card_fw,
3734 state, &reset);
3735
3736 /* Cleaning up */
Markus Elfring0b5b6be2015-02-04 11:28:43 +01003737 release_firmware(fw);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303738 t4_free_mem(card_fw);
3739
Vipul Pandya636f9d32012-09-26 02:39:39 +00003740 if (ret < 0)
Hariprasad Shenai16e47622013-12-03 17:05:58 +05303741 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003742 }
3743
3744 /*
3745 * Grab VPD parameters. This should be done after we establish a
3746 * connection to the firmware since some of the VPD parameters
3747 * (notably the Core Clock frequency) are retrieved via requests to
3748 * the firmware. On the other hand, we need these fairly early on
3749 * so we do this right after getting ahold of the firmware.
3750 */
Hariprasad Shenai098ef6c2015-06-05 14:24:50 +05303751 ret = t4_get_vpd_params(adap, &adap->params.vpd);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003752 if (ret < 0)
3753 goto bye;
3754
Vipul Pandya636f9d32012-09-26 02:39:39 +00003755 /*
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003756 * Find out what ports are available to us. Note that we need to do
3757 * this before calling adap_init0_no_config() since it needs nports
3758 * and portvec ...
Vipul Pandya636f9d32012-09-26 02:39:39 +00003759 */
3760 v =
Hariprasad Shenai51678652014-11-21 12:52:02 +05303761 FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3762 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PORTVEC);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303763 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1, &v, &port_vec);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003764 if (ret < 0)
3765 goto bye;
3766
3767 adap->params.nports = hweight32(port_vec);
3768 adap->params.portvec = port_vec;
3769
Hariprasad Shenai06640312015-01-13 15:19:25 +05303770 /* If the firmware is initialized already, emit a simply note to that
3771 * effect. Otherwise, it's time to try initializing the adapter.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003772 */
3773 if (state == DEV_STATE_INIT) {
3774 dev_info(adap->pdev_dev, "Coming up as %s: "\
3775 "Adapter already initialized\n",
3776 adap->flags & MASTER_PF ? "MASTER" : "SLAVE");
Vipul Pandya636f9d32012-09-26 02:39:39 +00003777 } else {
3778 dev_info(adap->pdev_dev, "Coming up as MASTER: "\
3779 "Initializing adapter\n");
Hariprasad Shenai06640312015-01-13 15:19:25 +05303780
3781 /* Find out whether we're dealing with a version of the
3782 * firmware which has configuration file support.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003783 */
Hariprasad Shenai06640312015-01-13 15:19:25 +05303784 params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
3785 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303786 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 1,
Hariprasad Shenai06640312015-01-13 15:19:25 +05303787 params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003788
Hariprasad Shenai06640312015-01-13 15:19:25 +05303789 /* If the firmware doesn't support Configuration Files,
3790 * return an error.
3791 */
3792 if (ret < 0) {
3793 dev_err(adap->pdev_dev, "firmware doesn't support "
3794 "Firmware Configuration Files\n");
3795 goto bye;
3796 }
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003797
Hariprasad Shenai06640312015-01-13 15:19:25 +05303798 /* The firmware provides us with a memory buffer where we can
3799 * load a Configuration File from the host if we want to
3800 * override the Configuration File in flash.
3801 */
3802 ret = adap_init0_config(adap, reset);
3803 if (ret == -ENOENT) {
3804 dev_err(adap->pdev_dev, "no Configuration File "
3805 "present on adapter.\n");
3806 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003807 }
3808 if (ret < 0) {
Hariprasad Shenai06640312015-01-13 15:19:25 +05303809 dev_err(adap->pdev_dev, "could not initialize "
3810 "adapter, error %d\n", -ret);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003811 goto bye;
3812 }
3813 }
3814
Hariprasad Shenai06640312015-01-13 15:19:25 +05303815 /* Give the SGE code a chance to pull in anything that it needs ...
3816 * Note that this must be called after we retrieve our VPD parameters
3817 * in order to know how to convert core ticks to seconds, etc.
Vipul Pandya636f9d32012-09-26 02:39:39 +00003818 */
Hariprasad Shenai06640312015-01-13 15:19:25 +05303819 ret = t4_sge_init(adap);
3820 if (ret < 0)
3821 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003822
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00003823 if (is_bypass_device(adap->pdev->device))
3824 adap->params.bypass = 1;
3825
Vipul Pandya636f9d32012-09-26 02:39:39 +00003826 /*
3827 * Grab some of our basic fundamental operating parameters.
3828 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003829#define FW_PARAM_DEV(param) \
Hariprasad Shenai51678652014-11-21 12:52:02 +05303830 (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | \
3831 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_##param))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003832
3833#define FW_PARAM_PFVF(param) \
Hariprasad Shenai51678652014-11-21 12:52:02 +05303834 FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_PFVF) | \
3835 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_PFVF_##param)| \
3836 FW_PARAMS_PARAM_Y_V(0) | \
3837 FW_PARAMS_PARAM_Z_V(0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003838
Vipul Pandya636f9d32012-09-26 02:39:39 +00003839 params[0] = FW_PARAM_PFVF(EQ_START);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003840 params[1] = FW_PARAM_PFVF(L2T_START);
3841 params[2] = FW_PARAM_PFVF(L2T_END);
3842 params[3] = FW_PARAM_PFVF(FILTER_START);
3843 params[4] = FW_PARAM_PFVF(FILTER_END);
3844 params[5] = FW_PARAM_PFVF(IQFLINT_START);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303845 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003846 if (ret < 0)
3847 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003848 adap->sge.egr_start = val[0];
3849 adap->l2t_start = val[1];
3850 adap->l2t_end = val[2];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003851 adap->tids.ftid_base = val[3];
3852 adap->tids.nftids = val[4] - val[3] + 1;
3853 adap->sge.ingr_start = val[5];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003854
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303855 /* qids (ingress/egress) returned from firmware can be anywhere
3856 * in the range from EQ(IQFLINT)_START to EQ(IQFLINT)_END.
3857 * Hence driver needs to allocate memory for this range to
3858 * store the queue info. Get the highest IQFLINT/EQ index returned
3859 * in FW_EQ_*_CMD.alloc command.
3860 */
3861 params[0] = FW_PARAM_PFVF(EQ_END);
3862 params[1] = FW_PARAM_PFVF(IQFLINT_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303863 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303864 if (ret < 0)
3865 goto bye;
3866 adap->sge.egr_sz = val[0] - adap->sge.egr_start + 1;
3867 adap->sge.ingr_sz = val[1] - adap->sge.ingr_start + 1;
3868
3869 adap->sge.egr_map = kcalloc(adap->sge.egr_sz,
3870 sizeof(*adap->sge.egr_map), GFP_KERNEL);
3871 if (!adap->sge.egr_map) {
3872 ret = -ENOMEM;
3873 goto bye;
3874 }
3875
3876 adap->sge.ingr_map = kcalloc(adap->sge.ingr_sz,
3877 sizeof(*adap->sge.ingr_map), GFP_KERNEL);
3878 if (!adap->sge.ingr_map) {
3879 ret = -ENOMEM;
3880 goto bye;
3881 }
3882
3883 /* Allocate the memory for the vaious egress queue bitmaps
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05303884 * ie starving_fl, txq_maperr and blocked_fl.
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303885 */
3886 adap->sge.starving_fl = kcalloc(BITS_TO_LONGS(adap->sge.egr_sz),
3887 sizeof(long), GFP_KERNEL);
3888 if (!adap->sge.starving_fl) {
3889 ret = -ENOMEM;
3890 goto bye;
3891 }
3892
3893 adap->sge.txq_maperr = kcalloc(BITS_TO_LONGS(adap->sge.egr_sz),
3894 sizeof(long), GFP_KERNEL);
3895 if (!adap->sge.txq_maperr) {
3896 ret = -ENOMEM;
3897 goto bye;
3898 }
3899
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05303900#ifdef CONFIG_DEBUG_FS
3901 adap->sge.blocked_fl = kcalloc(BITS_TO_LONGS(adap->sge.egr_sz),
3902 sizeof(long), GFP_KERNEL);
3903 if (!adap->sge.blocked_fl) {
3904 ret = -ENOMEM;
3905 goto bye;
3906 }
3907#endif
3908
Anish Bhattb5a02f52015-01-14 15:17:34 -08003909 params[0] = FW_PARAM_PFVF(CLIP_START);
3910 params[1] = FW_PARAM_PFVF(CLIP_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303911 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
Anish Bhattb5a02f52015-01-14 15:17:34 -08003912 if (ret < 0)
3913 goto bye;
3914 adap->clipt_start = val[0];
3915 adap->clipt_end = val[1];
3916
Vipul Pandya636f9d32012-09-26 02:39:39 +00003917 /* query params related to active filter region */
3918 params[0] = FW_PARAM_PFVF(ACTIVE_FILTER_START);
3919 params[1] = FW_PARAM_PFVF(ACTIVE_FILTER_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303920 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00003921 /* If Active filter size is set we enable establishing
3922 * offload connection through firmware work request
3923 */
3924 if ((val[0] != val[1]) && (ret >= 0)) {
3925 adap->flags |= FW_OFLD_CONN;
3926 adap->tids.aftid_base = val[0];
3927 adap->tids.aftid_end = val[1];
3928 }
3929
Vipul Pandyab407a4a2013-04-29 04:04:40 +00003930 /* If we're running on newer firmware, let it know that we're
3931 * prepared to deal with encapsulated CPL messages. Older
3932 * firmware won't understand this and we'll just get
3933 * unencapsulated messages ...
3934 */
3935 params[0] = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
3936 val[0] = 1;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303937 (void)t4_set_params(adap, adap->mbox, adap->pf, 0, 1, params, val);
Vipul Pandyab407a4a2013-04-29 04:04:40 +00003938
Vipul Pandya636f9d32012-09-26 02:39:39 +00003939 /*
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05303940 * Find out whether we're allowed to use the T5+ ULPTX MEMWRITE DSGL
3941 * capability. Earlier versions of the firmware didn't have the
3942 * ULPTX_MEMWRITE_DSGL so we'll interpret a query failure as no
3943 * permission to use ULPTX MEMWRITE DSGL.
3944 */
3945 if (is_t4(adap->params.chip)) {
3946 adap->params.ulptx_memwrite_dsgl = false;
3947 } else {
3948 params[0] = FW_PARAM_DEV(ULPTX_MEMWRITE_DSGL);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303949 ret = t4_query_params(adap, adap->mbox, adap->pf, 0,
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05303950 1, params, val);
3951 adap->params.ulptx_memwrite_dsgl = (ret == 0 && val[0] != 0);
3952 }
3953
3954 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00003955 * Get device capabilities so we can determine what resources we need
3956 * to manage.
3957 */
3958 memset(&caps_cmd, 0, sizeof(caps_cmd));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303959 caps_cmd.op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
3960 FW_CMD_REQUEST_F | FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05303961 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00003962 ret = t4_wr_mbox(adap, adap->mbox, &caps_cmd, sizeof(caps_cmd),
3963 &caps_cmd);
3964 if (ret < 0)
3965 goto bye;
3966
Vipul Pandya13ee15d2012-09-26 02:39:40 +00003967 if (caps_cmd.ofldcaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003968 /* query offload-related parameters */
3969 params[0] = FW_PARAM_DEV(NTID);
3970 params[1] = FW_PARAM_PFVF(SERVER_START);
3971 params[2] = FW_PARAM_PFVF(SERVER_END);
3972 params[3] = FW_PARAM_PFVF(TDDP_START);
3973 params[4] = FW_PARAM_PFVF(TDDP_END);
3974 params[5] = FW_PARAM_DEV(FLOWC_BUFFIFO_SZ);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303975 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
Vipul Pandya636f9d32012-09-26 02:39:39 +00003976 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003977 if (ret < 0)
3978 goto bye;
3979 adap->tids.ntids = val[0];
3980 adap->tids.natids = min(adap->tids.ntids / 2, MAX_ATIDS);
3981 adap->tids.stid_base = val[1];
3982 adap->tids.nstids = val[2] - val[1] + 1;
Vipul Pandya636f9d32012-09-26 02:39:39 +00003983 /*
Joe Perchesdbedd442015-03-06 20:49:12 -08003984 * Setup server filter region. Divide the available filter
Vipul Pandya636f9d32012-09-26 02:39:39 +00003985 * region into two parts. Regular filters get 1/3rd and server
3986 * filters get 2/3rd part. This is only enabled if workarond
3987 * path is enabled.
3988 * 1. For regular filters.
3989 * 2. Server filter: This are special filters which are used
3990 * to redirect SYN packets to offload queue.
3991 */
3992 if (adap->flags & FW_OFLD_CONN && !is_bypass(adap)) {
3993 adap->tids.sftid_base = adap->tids.ftid_base +
3994 DIV_ROUND_UP(adap->tids.nftids, 3);
3995 adap->tids.nsftids = adap->tids.nftids -
3996 DIV_ROUND_UP(adap->tids.nftids, 3);
3997 adap->tids.nftids = adap->tids.sftid_base -
3998 adap->tids.ftid_base;
3999 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004000 adap->vres.ddp.start = val[3];
4001 adap->vres.ddp.size = val[4] - val[3] + 1;
4002 adap->params.ofldq_wr_cred = val[5];
Vipul Pandya636f9d32012-09-26 02:39:39 +00004003
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004004 adap->params.offload = 1;
4005 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00004006 if (caps_cmd.rdmacaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004007 params[0] = FW_PARAM_PFVF(STAG_START);
4008 params[1] = FW_PARAM_PFVF(STAG_END);
4009 params[2] = FW_PARAM_PFVF(RQ_START);
4010 params[3] = FW_PARAM_PFVF(RQ_END);
4011 params[4] = FW_PARAM_PFVF(PBL_START);
4012 params[5] = FW_PARAM_PFVF(PBL_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304013 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6,
Vipul Pandya636f9d32012-09-26 02:39:39 +00004014 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004015 if (ret < 0)
4016 goto bye;
4017 adap->vres.stag.start = val[0];
4018 adap->vres.stag.size = val[1] - val[0] + 1;
4019 adap->vres.rq.start = val[2];
4020 adap->vres.rq.size = val[3] - val[2] + 1;
4021 adap->vres.pbl.start = val[4];
4022 adap->vres.pbl.size = val[5] - val[4] + 1;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00004023
4024 params[0] = FW_PARAM_PFVF(SQRQ_START);
4025 params[1] = FW_PARAM_PFVF(SQRQ_END);
4026 params[2] = FW_PARAM_PFVF(CQ_START);
4027 params[3] = FW_PARAM_PFVF(CQ_END);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004028 params[4] = FW_PARAM_PFVF(OCQ_START);
4029 params[5] = FW_PARAM_PFVF(OCQ_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304030 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 6, params,
Hariprasad Shenai5c937dd2014-09-01 19:55:00 +05304031 val);
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00004032 if (ret < 0)
4033 goto bye;
4034 adap->vres.qp.start = val[0];
4035 adap->vres.qp.size = val[1] - val[0] + 1;
4036 adap->vres.cq.start = val[2];
4037 adap->vres.cq.size = val[3] - val[2] + 1;
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004038 adap->vres.ocq.start = val[4];
4039 adap->vres.ocq.size = val[5] - val[4] + 1;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05304040
4041 params[0] = FW_PARAM_DEV(MAXORDIRD_QP);
4042 params[1] = FW_PARAM_DEV(MAXIRD_ADAPTER);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304043 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2, params,
Hariprasad Shenai5c937dd2014-09-01 19:55:00 +05304044 val);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05304045 if (ret < 0) {
4046 adap->params.max_ordird_qp = 8;
4047 adap->params.max_ird_adapter = 32 * adap->tids.ntids;
4048 ret = 0;
4049 } else {
4050 adap->params.max_ordird_qp = val[0];
4051 adap->params.max_ird_adapter = val[1];
4052 }
4053 dev_info(adap->pdev_dev,
4054 "max_ordird_qp %d max_ird_adapter %d\n",
4055 adap->params.max_ordird_qp,
4056 adap->params.max_ird_adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004057 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00004058 if (caps_cmd.iscsicaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004059 params[0] = FW_PARAM_PFVF(ISCSI_START);
4060 params[1] = FW_PARAM_PFVF(ISCSI_END);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304061 ret = t4_query_params(adap, adap->mbox, adap->pf, 0, 2,
Vipul Pandya636f9d32012-09-26 02:39:39 +00004062 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004063 if (ret < 0)
4064 goto bye;
4065 adap->vres.iscsi.start = val[0];
4066 adap->vres.iscsi.size = val[1] - val[0] + 1;
4067 }
4068#undef FW_PARAM_PFVF
4069#undef FW_PARAM_DEV
4070
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05304071 /* The MTU/MSS Table is initialized by now, so load their values. If
4072 * we're initializing the adapter, then we'll make any modifications
4073 * we want to the MTU/MSS Table and also initialize the congestion
4074 * parameters.
Vipul Pandya636f9d32012-09-26 02:39:39 +00004075 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004076 t4_read_mtu_tbl(adap, adap->params.mtus, NULL);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05304077 if (state != DEV_STATE_INIT) {
4078 int i;
Casey Leedom7ee9ff92010-06-25 12:11:46 +00004079
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05304080 /* The default MTU Table contains values 1492 and 1500.
4081 * However, for TCP, it's better to have two values which are
4082 * a multiple of 8 +/- 4 bytes apart near this popular MTU.
4083 * This allows us to have a TCP Data Payload which is a
4084 * multiple of 8 regardless of what combination of TCP Options
4085 * are in use (always a multiple of 4 bytes) which is
4086 * important for performance reasons. For instance, if no
4087 * options are in use, then we have a 20-byte IP header and a
4088 * 20-byte TCP header. In this case, a 1500-byte MSS would
4089 * result in a TCP Data Payload of 1500 - 40 == 1460 bytes
4090 * which is not a multiple of 8. So using an MSS of 1488 in
4091 * this case results in a TCP Data Payload of 1448 bytes which
4092 * is a multiple of 8. On the other hand, if 12-byte TCP Time
4093 * Stamps have been negotiated, then an MTU of 1500 bytes
4094 * results in a TCP Data Payload of 1448 bytes which, as
4095 * above, is a multiple of 8 bytes ...
4096 */
4097 for (i = 0; i < NMTUS; i++)
4098 if (adap->params.mtus[i] == 1492) {
4099 adap->params.mtus[i] = 1488;
4100 break;
4101 }
4102
4103 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
4104 adap->params.b_wnd);
4105 }
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05304106 t4_init_sge_params(adap);
Vipul Pandya636f9d32012-09-26 02:39:39 +00004107 adap->flags |= FW_OK;
Hariprasad Shenaic1e9af02015-06-05 14:24:52 +05304108 t4_init_tp_params(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004109 return 0;
4110
4111 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00004112 * Something bad happened. If a command timed out or failed with EIO
4113 * FW does not operate within its spec or something catastrophic
4114 * happened to HW/FW, stop issuing commands.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004115 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00004116bye:
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05304117 kfree(adap->sge.egr_map);
4118 kfree(adap->sge.ingr_map);
4119 kfree(adap->sge.starving_fl);
4120 kfree(adap->sge.txq_maperr);
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05304121#ifdef CONFIG_DEBUG_FS
4122 kfree(adap->sge.blocked_fl);
4123#endif
Vipul Pandya636f9d32012-09-26 02:39:39 +00004124 if (ret != -ETIMEDOUT && ret != -EIO)
4125 t4_fw_bye(adap, adap->mbox);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004126 return ret;
4127}
4128
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004129/* EEH callbacks */
4130
4131static pci_ers_result_t eeh_err_detected(struct pci_dev *pdev,
4132 pci_channel_state_t state)
4133{
4134 int i;
4135 struct adapter *adap = pci_get_drvdata(pdev);
4136
4137 if (!adap)
4138 goto out;
4139
4140 rtnl_lock();
4141 adap->flags &= ~FW_OK;
4142 notify_ulds(adap, CXGB4_STATE_START_RECOVERY);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004143 spin_lock(&adap->stats_lock);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004144 for_each_port(adap, i) {
4145 struct net_device *dev = adap->port[i];
4146
4147 netif_device_detach(dev);
4148 netif_carrier_off(dev);
4149 }
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004150 spin_unlock(&adap->stats_lock);
Hariprasad Shenaib37987e2015-03-26 10:04:26 +05304151 disable_interrupts(adap);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004152 if (adap->flags & FULL_INIT_DONE)
4153 cxgb_down(adap);
4154 rtnl_unlock();
Gavin Shan144be3d2014-01-23 12:27:34 +08004155 if ((adap->flags & DEV_ENABLED)) {
4156 pci_disable_device(pdev);
4157 adap->flags &= ~DEV_ENABLED;
4158 }
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004159out: return state == pci_channel_io_perm_failure ?
4160 PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
4161}
4162
4163static pci_ers_result_t eeh_slot_reset(struct pci_dev *pdev)
4164{
4165 int i, ret;
4166 struct fw_caps_config_cmd c;
4167 struct adapter *adap = pci_get_drvdata(pdev);
4168
4169 if (!adap) {
4170 pci_restore_state(pdev);
4171 pci_save_state(pdev);
4172 return PCI_ERS_RESULT_RECOVERED;
4173 }
4174
Gavin Shan144be3d2014-01-23 12:27:34 +08004175 if (!(adap->flags & DEV_ENABLED)) {
4176 if (pci_enable_device(pdev)) {
4177 dev_err(&pdev->dev, "Cannot reenable PCI "
4178 "device after reset\n");
4179 return PCI_ERS_RESULT_DISCONNECT;
4180 }
4181 adap->flags |= DEV_ENABLED;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004182 }
4183
4184 pci_set_master(pdev);
4185 pci_restore_state(pdev);
4186 pci_save_state(pdev);
4187 pci_cleanup_aer_uncorrect_error_status(pdev);
4188
Hariprasad Shenai8203b502014-10-09 05:48:47 +05304189 if (t4_wait_dev_ready(adap->regs) < 0)
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004190 return PCI_ERS_RESULT_DISCONNECT;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304191 if (t4_fw_hello(adap, adap->mbox, adap->pf, MASTER_MUST, NULL) < 0)
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004192 return PCI_ERS_RESULT_DISCONNECT;
4193 adap->flags |= FW_OK;
4194 if (adap_init1(adap, &c))
4195 return PCI_ERS_RESULT_DISCONNECT;
4196
4197 for_each_port(adap, i) {
4198 struct port_info *p = adap2pinfo(adap, i);
4199
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304200 ret = t4_alloc_vi(adap, adap->mbox, p->tx_chan, adap->pf, 0, 1,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004201 NULL, NULL);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004202 if (ret < 0)
4203 return PCI_ERS_RESULT_DISCONNECT;
4204 p->viid = ret;
4205 p->xact_addr_filt = -1;
4206 }
4207
4208 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
4209 adap->params.b_wnd);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004210 setup_memwin(adap);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004211 if (cxgb_up(adap))
4212 return PCI_ERS_RESULT_DISCONNECT;
4213 return PCI_ERS_RESULT_RECOVERED;
4214}
4215
4216static void eeh_resume(struct pci_dev *pdev)
4217{
4218 int i;
4219 struct adapter *adap = pci_get_drvdata(pdev);
4220
4221 if (!adap)
4222 return;
4223
4224 rtnl_lock();
4225 for_each_port(adap, i) {
4226 struct net_device *dev = adap->port[i];
4227
4228 if (netif_running(dev)) {
4229 link_start(dev);
4230 cxgb_set_rxmode(dev);
4231 }
4232 netif_device_attach(dev);
4233 }
4234 rtnl_unlock();
4235}
4236
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07004237static const struct pci_error_handlers cxgb4_eeh = {
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004238 .error_detected = eeh_err_detected,
4239 .slot_reset = eeh_slot_reset,
4240 .resume = eeh_resume,
4241};
4242
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304243static inline bool is_x_10g_port(const struct link_config *lc)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004244{
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304245 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 ||
4246 (lc->supported & FW_PORT_CAP_SPEED_40G) != 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004247}
4248
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304249static inline void init_rspq(struct adapter *adap, struct sge_rspq *q,
4250 unsigned int us, unsigned int cnt,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004251 unsigned int size, unsigned int iqe_size)
4252{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304253 q->adap = adap;
Hariprasad Shenai812034f2015-04-06 20:23:23 +05304254 cxgb4_set_rspq_intr_params(q, us, cnt);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004255 q->iqe_len = iqe_size;
4256 q->size = size;
4257}
4258
4259/*
4260 * Perform default configuration of DMA queues depending on the number and type
4261 * of ports we found and the number of available CPUs. Most settings can be
4262 * modified by the admin prior to actual use.
4263 */
Bill Pemberton91744942012-12-03 09:23:02 -05004264static void cfg_queues(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004265{
4266 struct sge *s = &adap->sge;
Anish Bhatt688848b2014-06-19 21:37:13 -07004267 int i, n10g = 0, qidx = 0;
4268#ifndef CONFIG_CHELSIO_T4_DCB
4269 int q10g = 0;
4270#endif
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304271 int ciq_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004272
4273 for_each_port(adap, i)
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304274 n10g += is_x_10g_port(&adap2pinfo(adap, i)->link_cfg);
Anish Bhatt688848b2014-06-19 21:37:13 -07004275#ifdef CONFIG_CHELSIO_T4_DCB
4276 /* For Data Center Bridging support we need to be able to support up
4277 * to 8 Traffic Priorities; each of which will be assigned to its
4278 * own TX Queue in order to prevent Head-Of-Line Blocking.
4279 */
4280 if (adap->params.nports * 8 > MAX_ETH_QSETS) {
4281 dev_err(adap->pdev_dev, "MAX_ETH_QSETS=%d < %d!\n",
4282 MAX_ETH_QSETS, adap->params.nports * 8);
4283 BUG_ON(1);
4284 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004285
Anish Bhatt688848b2014-06-19 21:37:13 -07004286 for_each_port(adap, i) {
4287 struct port_info *pi = adap2pinfo(adap, i);
4288
4289 pi->first_qset = qidx;
4290 pi->nqsets = 8;
4291 qidx += pi->nqsets;
4292 }
4293#else /* !CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004294 /*
4295 * We default to 1 queue per non-10G port and up to # of cores queues
4296 * per 10G port.
4297 */
4298 if (n10g)
4299 q10g = (MAX_ETH_QSETS - (adap->params.nports - n10g)) / n10g;
Yuval Mintz5952dde2012-07-01 03:18:55 +00004300 if (q10g > netif_get_num_default_rss_queues())
4301 q10g = netif_get_num_default_rss_queues();
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004302
4303 for_each_port(adap, i) {
4304 struct port_info *pi = adap2pinfo(adap, i);
4305
4306 pi->first_qset = qidx;
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05304307 pi->nqsets = is_x_10g_port(&pi->link_cfg) ? q10g : 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004308 qidx += pi->nqsets;
4309 }
Anish Bhatt688848b2014-06-19 21:37:13 -07004310#endif /* !CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004311
4312 s->ethqsets = qidx;
4313 s->max_ethqsets = qidx; /* MSI-X may lower it later */
4314
4315 if (is_offload(adap)) {
4316 /*
4317 * For offload we use 1 queue/channel if all ports are up to 1G,
4318 * otherwise we divide all available queues amongst the channels
4319 * capped by the number of available cores.
4320 */
4321 if (n10g) {
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304322 i = min_t(int, ARRAY_SIZE(s->iscsirxq),
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004323 num_online_cpus());
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304324 s->iscsiqsets = roundup(i, adap->params.nports);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004325 } else
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304326 s->iscsiqsets = adap->params.nports;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004327 /* For RDMA one Rx queue per channel suffices */
4328 s->rdmaqs = adap->params.nports;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304329 /* Try and allow at least 1 CIQ per cpu rounding down
4330 * to the number of ports, with a minimum of 1 per port.
4331 * A 2 port card in a 6 cpu system: 6 CIQs, 3 / port.
4332 * A 4 port card in a 6 cpu system: 4 CIQs, 1 / port.
4333 * A 4 port card in a 2 cpu system: 4 CIQs, 1 / port.
4334 */
4335 s->rdmaciqs = min_t(int, MAX_RDMA_CIQS, num_online_cpus());
4336 s->rdmaciqs = (s->rdmaciqs / adap->params.nports) *
4337 adap->params.nports;
4338 s->rdmaciqs = max_t(int, s->rdmaciqs, adap->params.nports);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004339 }
4340
4341 for (i = 0; i < ARRAY_SIZE(s->ethrxq); i++) {
4342 struct sge_eth_rxq *r = &s->ethrxq[i];
4343
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304344 init_rspq(adap, &r->rspq, 5, 10, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004345 r->fl.size = 72;
4346 }
4347
4348 for (i = 0; i < ARRAY_SIZE(s->ethtxq); i++)
4349 s->ethtxq[i].q.size = 1024;
4350
4351 for (i = 0; i < ARRAY_SIZE(s->ctrlq); i++)
4352 s->ctrlq[i].q.size = 512;
4353
4354 for (i = 0; i < ARRAY_SIZE(s->ofldtxq); i++)
4355 s->ofldtxq[i].q.size = 1024;
4356
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304357 for (i = 0; i < ARRAY_SIZE(s->iscsirxq); i++) {
4358 struct sge_ofld_rxq *r = &s->iscsirxq[i];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004359
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304360 init_rspq(adap, &r->rspq, 5, 1, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004361 r->rspq.uld = CXGB4_ULD_ISCSI;
4362 r->fl.size = 72;
4363 }
4364
4365 for (i = 0; i < ARRAY_SIZE(s->rdmarxq); i++) {
4366 struct sge_ofld_rxq *r = &s->rdmarxq[i];
4367
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304368 init_rspq(adap, &r->rspq, 5, 1, 511, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004369 r->rspq.uld = CXGB4_ULD_RDMA;
4370 r->fl.size = 72;
4371 }
4372
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304373 ciq_size = 64 + adap->vres.cq.size + adap->tids.nftids;
4374 if (ciq_size > SGE_MAX_IQ_SIZE) {
4375 CH_WARN(adap, "CIQ size too small for available IQs\n");
4376 ciq_size = SGE_MAX_IQ_SIZE;
4377 }
4378
4379 for (i = 0; i < ARRAY_SIZE(s->rdmaciq); i++) {
4380 struct sge_ofld_rxq *r = &s->rdmaciq[i];
4381
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304382 init_rspq(adap, &r->rspq, 5, 1, ciq_size, 64);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304383 r->rspq.uld = CXGB4_ULD_RDMA;
4384 }
4385
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05304386 init_rspq(adap, &s->fw_evtq, 0, 1, 1024, 64);
4387 init_rspq(adap, &s->intrq, 0, 1, 2 * MAX_INGQ, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004388}
4389
4390/*
4391 * Reduce the number of Ethernet queues across all ports to at most n.
4392 * n provides at least one queue per port.
4393 */
Bill Pemberton91744942012-12-03 09:23:02 -05004394static void reduce_ethqs(struct adapter *adap, int n)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004395{
4396 int i;
4397 struct port_info *pi;
4398
4399 while (n < adap->sge.ethqsets)
4400 for_each_port(adap, i) {
4401 pi = adap2pinfo(adap, i);
4402 if (pi->nqsets > 1) {
4403 pi->nqsets--;
4404 adap->sge.ethqsets--;
4405 if (adap->sge.ethqsets <= n)
4406 break;
4407 }
4408 }
4409
4410 n = 0;
4411 for_each_port(adap, i) {
4412 pi = adap2pinfo(adap, i);
4413 pi->first_qset = n;
4414 n += pi->nqsets;
4415 }
4416}
4417
4418/* 2 MSI-X vectors needed for the FW queue and non-data interrupts */
4419#define EXTRA_VECS 2
4420
Bill Pemberton91744942012-12-03 09:23:02 -05004421static int enable_msix(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004422{
4423 int ofld_need = 0;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304424 int i, want, need, allocated;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004425 struct sge *s = &adap->sge;
4426 unsigned int nchan = adap->params.nports;
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304427 struct msix_entry *entries;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004428
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304429 entries = kmalloc(sizeof(*entries) * (MAX_INGQ + 1),
4430 GFP_KERNEL);
4431 if (!entries)
4432 return -ENOMEM;
4433
4434 for (i = 0; i < MAX_INGQ + 1; ++i)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004435 entries[i].entry = i;
4436
4437 want = s->max_ethqsets + EXTRA_VECS;
4438 if (is_offload(adap)) {
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304439 want += s->rdmaqs + s->rdmaciqs + s->iscsiqsets;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004440 /* need nchan for each possible ULD */
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304441 ofld_need = 3 * nchan;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004442 }
Anish Bhatt688848b2014-06-19 21:37:13 -07004443#ifdef CONFIG_CHELSIO_T4_DCB
4444 /* For Data Center Bridging we need 8 Ethernet TX Priority Queues for
4445 * each port.
4446 */
4447 need = 8 * adap->params.nports + EXTRA_VECS + ofld_need;
4448#else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004449 need = adap->params.nports + EXTRA_VECS + ofld_need;
Anish Bhatt688848b2014-06-19 21:37:13 -07004450#endif
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304451 allocated = pci_enable_msix_range(adap->pdev, entries, need, want);
4452 if (allocated < 0) {
4453 dev_info(adap->pdev_dev, "not enough MSI-X vectors left,"
4454 " not using MSI-X\n");
4455 kfree(entries);
4456 return allocated;
4457 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004458
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304459 /* Distribute available vectors to the various queue groups.
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004460 * Every group gets its minimum requirement and NIC gets top
4461 * priority for leftovers.
4462 */
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304463 i = allocated - EXTRA_VECS - ofld_need;
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004464 if (i < s->max_ethqsets) {
4465 s->max_ethqsets = i;
4466 if (i < s->ethqsets)
4467 reduce_ethqs(adap, i);
4468 }
4469 if (is_offload(adap)) {
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304470 if (allocated < want) {
4471 s->rdmaqs = nchan;
4472 s->rdmaciqs = nchan;
4473 }
4474
4475 /* leftovers go to OFLD */
4476 i = allocated - EXTRA_VECS - s->max_ethqsets -
4477 s->rdmaqs - s->rdmaciqs;
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304478 s->iscsiqsets = (i / nchan) * nchan; /* round down */
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004479 }
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304480 for (i = 0; i < allocated; ++i)
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004481 adap->msix_info[i].vec = entries[i].vector;
Hariprasad Shenai43eb4e82015-10-21 14:39:53 +05304482 dev_info(adap->pdev_dev, "%d MSI-X vectors allocated, "
4483 "nic %d iscsi %d rdma cpl %d rdma ciq %d\n",
Hariprasad Shenaif90ce562015-12-23 11:29:54 +05304484 allocated, s->max_ethqsets, s->iscsiqsets, s->rdmaqs,
Hariprasad Shenai43eb4e82015-10-21 14:39:53 +05304485 s->rdmaciqs);
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004486
Hariprasad Shenaif36e58e2015-03-04 18:16:28 +05304487 kfree(entries);
Alexander Gordeevc32ad222014-02-18 11:07:59 +01004488 return 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004489}
4490
4491#undef EXTRA_VECS
4492
Bill Pemberton91744942012-12-03 09:23:02 -05004493static int init_rss(struct adapter *adap)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004494{
Hariprasad Shenaic035e182015-05-06 19:48:37 +05304495 unsigned int i;
4496 int err;
4497
4498 err = t4_init_rss_mode(adap, adap->mbox);
4499 if (err)
4500 return err;
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004501
4502 for_each_port(adap, i) {
4503 struct port_info *pi = adap2pinfo(adap, i);
4504
4505 pi->rss = kcalloc(pi->rss_size, sizeof(u16), GFP_KERNEL);
4506 if (!pi->rss)
4507 return -ENOMEM;
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004508 }
4509 return 0;
4510}
4511
Hariprasad Shenai547fd272015-12-23 11:29:53 +05304512static int cxgb4_get_pcie_dev_link_caps(struct adapter *adap,
4513 enum pci_bus_speed *speed,
4514 enum pcie_link_width *width)
4515{
4516 u32 lnkcap1, lnkcap2;
4517 int err1, err2;
4518
4519#define PCIE_MLW_CAP_SHIFT 4 /* start of MLW mask in link capabilities */
4520
4521 *speed = PCI_SPEED_UNKNOWN;
4522 *width = PCIE_LNK_WIDTH_UNKNOWN;
4523
4524 err1 = pcie_capability_read_dword(adap->pdev, PCI_EXP_LNKCAP,
4525 &lnkcap1);
4526 err2 = pcie_capability_read_dword(adap->pdev, PCI_EXP_LNKCAP2,
4527 &lnkcap2);
4528 if (!err2 && lnkcap2) { /* PCIe r3.0-compliant */
4529 if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_8_0GB)
4530 *speed = PCIE_SPEED_8_0GT;
4531 else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_5_0GB)
4532 *speed = PCIE_SPEED_5_0GT;
4533 else if (lnkcap2 & PCI_EXP_LNKCAP2_SLS_2_5GB)
4534 *speed = PCIE_SPEED_2_5GT;
4535 }
4536 if (!err1) {
4537 *width = (lnkcap1 & PCI_EXP_LNKCAP_MLW) >> PCIE_MLW_CAP_SHIFT;
4538 if (!lnkcap2) { /* pre-r3.0 */
4539 if (lnkcap1 & PCI_EXP_LNKCAP_SLS_5_0GB)
4540 *speed = PCIE_SPEED_5_0GT;
4541 else if (lnkcap1 & PCI_EXP_LNKCAP_SLS_2_5GB)
4542 *speed = PCIE_SPEED_2_5GT;
4543 }
4544 }
4545
4546 if (*speed == PCI_SPEED_UNKNOWN || *width == PCIE_LNK_WIDTH_UNKNOWN)
4547 return err1 ? err1 : err2 ? err2 : -EINVAL;
4548 return 0;
4549}
4550
4551static void cxgb4_check_pcie_caps(struct adapter *adap)
4552{
4553 enum pcie_link_width width, width_cap;
4554 enum pci_bus_speed speed, speed_cap;
4555
4556#define PCIE_SPEED_STR(speed) \
4557 (speed == PCIE_SPEED_8_0GT ? "8.0GT/s" : \
4558 speed == PCIE_SPEED_5_0GT ? "5.0GT/s" : \
4559 speed == PCIE_SPEED_2_5GT ? "2.5GT/s" : \
4560 "Unknown")
4561
4562 if (cxgb4_get_pcie_dev_link_caps(adap, &speed_cap, &width_cap)) {
4563 dev_warn(adap->pdev_dev,
4564 "Unable to determine PCIe device BW capabilities\n");
4565 return;
4566 }
4567
4568 if (pcie_get_minimum_link(adap->pdev, &speed, &width) ||
4569 speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) {
4570 dev_warn(adap->pdev_dev,
4571 "Unable to determine PCI Express bandwidth.\n");
4572 return;
4573 }
4574
4575 dev_info(adap->pdev_dev, "PCIe link speed is %s, device supports %s\n",
4576 PCIE_SPEED_STR(speed), PCIE_SPEED_STR(speed_cap));
4577 dev_info(adap->pdev_dev, "PCIe link width is x%d, device supports x%d\n",
4578 width, width_cap);
4579 if (speed < speed_cap || width < width_cap)
4580 dev_info(adap->pdev_dev,
4581 "A slot with more lanes and/or higher speed is "
4582 "suggested for optimal performance.\n");
4583}
4584
Bill Pemberton91744942012-12-03 09:23:02 -05004585static void print_port_info(const struct net_device *dev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004586{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004587 char buf[80];
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004588 char *bufp = buf;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00004589 const char *spd = "";
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004590 const struct port_info *pi = netdev_priv(dev);
4591 const struct adapter *adap = pi->adapter;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00004592
4593 if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_2_5GB)
4594 spd = " 2.5 GT/s";
4595 else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_5_0GB)
4596 spd = " 5 GT/s";
Roland Dreierd2e752d2014-04-28 17:36:20 -07004597 else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_8_0GB)
4598 spd = " 8 GT/s";
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004599
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004600 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_100M)
4601 bufp += sprintf(bufp, "100/");
4602 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_1G)
4603 bufp += sprintf(bufp, "1000/");
4604 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_10G)
4605 bufp += sprintf(bufp, "10G/");
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05304606 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_40G)
4607 bufp += sprintf(bufp, "40G/");
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004608 if (bufp != buf)
4609 --bufp;
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05304610 sprintf(bufp, "BASE-%s", t4_get_port_type_description(pi->port_type));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004611
Hariprasad Shenai547fd272015-12-23 11:29:53 +05304612 netdev_info(dev, "Chelsio %s rev %d %s %sNIC %s\n",
Santosh Rastapur0a57a532013-03-14 05:08:49 +00004613 adap->params.vpd.id,
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05304614 CHELSIO_CHIP_RELEASE(adap->params.chip), buf,
Hariprasad Shenai547fd272015-12-23 11:29:53 +05304615 is_offload(adap) ? "R" : "",
Dimitris Michailidis118969e2010-12-14 21:36:48 +00004616 (adap->flags & USING_MSIX) ? " MSI-X" :
4617 (adap->flags & USING_MSI) ? " MSI" : "");
Kumar Sanghvia94cd702014-02-18 17:56:09 +05304618 netdev_info(dev, "S/N: %s, P/N: %s\n",
4619 adap->params.vpd.sn, adap->params.vpd.pn);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004620}
4621
Bill Pemberton91744942012-12-03 09:23:02 -05004622static void enable_pcie_relaxed_ordering(struct pci_dev *dev)
Dimitris Michailidisef306b52010-12-14 21:36:44 +00004623{
Jiang Liue5c8ae52012-08-20 13:53:19 -06004624 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_RELAX_EN);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00004625}
4626
Dimitris Michailidis06546392010-07-11 12:01:16 +00004627/*
4628 * Free the following resources:
4629 * - memory used for tables
4630 * - MSI/MSI-X
4631 * - net devices
4632 * - resources FW is holding for us
4633 */
4634static void free_some_resources(struct adapter *adapter)
4635{
4636 unsigned int i;
4637
4638 t4_free_mem(adapter->l2t);
4639 t4_free_mem(adapter->tids.tid_tab);
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05304640 kfree(adapter->sge.egr_map);
4641 kfree(adapter->sge.ingr_map);
4642 kfree(adapter->sge.starving_fl);
4643 kfree(adapter->sge.txq_maperr);
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05304644#ifdef CONFIG_DEBUG_FS
4645 kfree(adapter->sge.blocked_fl);
4646#endif
Dimitris Michailidis06546392010-07-11 12:01:16 +00004647 disable_msi(adapter);
4648
4649 for_each_port(adapter, i)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004650 if (adapter->port[i]) {
Hariprasad Shenai4f3a0fc2015-06-05 14:24:47 +05304651 struct port_info *pi = adap2pinfo(adapter, i);
4652
4653 if (pi->viid != 0)
4654 t4_free_vi(adapter, adapter->mbox, adapter->pf,
4655 0, pi->viid);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004656 kfree(adap2pinfo(adapter, i)->rss);
Dimitris Michailidis06546392010-07-11 12:01:16 +00004657 free_netdev(adapter->port[i]);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004658 }
Dimitris Michailidis06546392010-07-11 12:01:16 +00004659 if (adapter->flags & FW_OK)
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304660 t4_fw_bye(adapter, adapter->pf);
Dimitris Michailidis06546392010-07-11 12:01:16 +00004661}
4662
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00004663#define TSO_FLAGS (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN)
Dimitris Michailidis35d35682010-08-02 13:19:20 +00004664#define VLAN_FEAT (NETIF_F_SG | NETIF_F_IP_CSUM | TSO_FLAGS | \
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004665 NETIF_F_IPV6_CSUM | NETIF_F_HIGHDMA)
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004666#define SEGMENT_SIZE 128
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004667
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304668static int get_chip_type(struct pci_dev *pdev, u32 pl_rev)
4669{
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304670 u16 device_id;
4671
4672 /* Retrieve adapter's device ID */
4673 pci_read_config_word(pdev, PCI_DEVICE_ID, &device_id);
françois romieu46cdc9b2015-09-04 23:05:42 +02004674
4675 switch (device_id >> 12) {
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304676 case CHELSIO_T4:
françois romieu46cdc9b2015-09-04 23:05:42 +02004677 return CHELSIO_CHIP_CODE(CHELSIO_T4, pl_rev);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304678 case CHELSIO_T5:
françois romieu46cdc9b2015-09-04 23:05:42 +02004679 return CHELSIO_CHIP_CODE(CHELSIO_T5, pl_rev);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304680 case CHELSIO_T6:
françois romieu46cdc9b2015-09-04 23:05:42 +02004681 return CHELSIO_CHIP_CODE(CHELSIO_T6, pl_rev);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304682 default:
4683 dev_err(&pdev->dev, "Device %d is not supported\n",
4684 device_id);
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304685 }
françois romieu46cdc9b2015-09-04 23:05:42 +02004686 return -EINVAL;
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304687}
4688
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00004689static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004690{
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004691 int func, i, err, s_qpp, qpp, num_seg;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004692 struct port_info *pi;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00004693 bool highdma = false;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004694 struct adapter *adapter = NULL;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304695 void __iomem *regs;
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304696 u32 whoami, pl_rev;
4697 enum chip_type chip;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004698
4699 printk_once(KERN_INFO "%s - version %s\n", DRV_DESC, DRV_VERSION);
4700
4701 err = pci_request_regions(pdev, KBUILD_MODNAME);
4702 if (err) {
4703 /* Just info, some other driver may have claimed the device. */
4704 dev_info(&pdev->dev, "cannot obtain PCI resources\n");
4705 return err;
4706 }
4707
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004708 err = pci_enable_device(pdev);
4709 if (err) {
4710 dev_err(&pdev->dev, "cannot enable PCI device\n");
4711 goto out_release_regions;
4712 }
4713
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304714 regs = pci_ioremap_bar(pdev, 0);
4715 if (!regs) {
4716 dev_err(&pdev->dev, "cannot map device registers\n");
4717 err = -ENOMEM;
4718 goto out_disable_device;
4719 }
4720
Hariprasad Shenai8203b502014-10-09 05:48:47 +05304721 err = t4_wait_dev_ready(regs);
4722 if (err < 0)
4723 goto out_unmap_bar0;
4724
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304725 /* We control everything through one PF */
Hariprasad Shenaid86bd292015-08-04 14:36:19 +05304726 whoami = readl(regs + PL_WHOAMI_A);
4727 pl_rev = REV_G(readl(regs + PL_REV_A));
4728 chip = get_chip_type(pdev, pl_rev);
4729 func = CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5 ?
4730 SOURCEPF_G(whoami) : T6_SOURCEPF_G(whoami);
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304731 if (func != ent->driver_data) {
4732 iounmap(regs);
4733 pci_disable_device(pdev);
4734 pci_save_state(pdev); /* to restore SR-IOV later */
4735 goto sriov;
4736 }
4737
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004738 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
Michał Mirosławc8f44af2011-11-15 15:29:55 +00004739 highdma = true;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004740 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
4741 if (err) {
4742 dev_err(&pdev->dev, "unable to obtain 64-bit DMA for "
4743 "coherent allocations\n");
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304744 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004745 }
4746 } else {
4747 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
4748 if (err) {
4749 dev_err(&pdev->dev, "no usable DMA configuration\n");
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304750 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004751 }
4752 }
4753
4754 pci_enable_pcie_error_reporting(pdev);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00004755 enable_pcie_relaxed_ordering(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004756 pci_set_master(pdev);
4757 pci_save_state(pdev);
4758
4759 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
4760 if (!adapter) {
4761 err = -ENOMEM;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304762 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004763 }
4764
Anish Bhatt29aaee62014-08-20 13:44:06 -07004765 adapter->workq = create_singlethread_workqueue("cxgb4");
4766 if (!adapter->workq) {
4767 err = -ENOMEM;
4768 goto out_free_adapter;
4769 }
4770
Gavin Shan144be3d2014-01-23 12:27:34 +08004771 /* PCI device has been enabled */
4772 adapter->flags |= DEV_ENABLED;
4773
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304774 adapter->regs = regs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004775 adapter->pdev = pdev;
4776 adapter->pdev_dev = &pdev->dev;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304777 adapter->mbox = func;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304778 adapter->pf = func;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004779 adapter->msg_enable = dflt_msg_enable;
4780 memset(adapter->chan_map, 0xff, sizeof(adapter->chan_map));
4781
4782 spin_lock_init(&adapter->stats_lock);
4783 spin_lock_init(&adapter->tid_release_lock);
Anish Bhatte327c222014-10-29 17:54:03 -07004784 spin_lock_init(&adapter->win0_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004785
4786 INIT_WORK(&adapter->tid_release_task, process_tid_release_list);
Vipul Pandya881806b2012-05-18 15:29:24 +05304787 INIT_WORK(&adapter->db_full_task, process_db_full);
4788 INIT_WORK(&adapter->db_drop_task, process_db_drop);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004789
4790 err = t4_prep_adapter(adapter);
4791 if (err)
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304792 goto out_free_adapter;
4793
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004794
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05304795 if (!is_t4(adapter->params.chip)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05304796 s_qpp = (QUEUESPERPAGEPF0_S +
4797 (QUEUESPERPAGEPF1_S - QUEUESPERPAGEPF0_S) *
Hariprasad Shenaib2612722015-05-27 22:30:24 +05304798 adapter->pf);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05304799 qpp = 1 << QUEUESPERPAGEPF0_G(t4_read_reg(adapter,
4800 SGE_EGRESS_QUEUES_PER_PAGE_PF_A) >> s_qpp);
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004801 num_seg = PAGE_SIZE / SEGMENT_SIZE;
4802
4803 /* Each segment size is 128B. Write coalescing is enabled only
4804 * when SGE_EGRESS_QUEUES_PER_PAGE_PF reg value for the
4805 * queue is less no of segments that can be accommodated in
4806 * a page size.
4807 */
4808 if (qpp > num_seg) {
4809 dev_err(&pdev->dev,
4810 "Incorrect number of egress queues per page\n");
4811 err = -EINVAL;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304812 goto out_free_adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004813 }
4814 adapter->bar2 = ioremap_wc(pci_resource_start(pdev, 2),
4815 pci_resource_len(pdev, 2));
4816 if (!adapter->bar2) {
4817 dev_err(&pdev->dev, "cannot map device bar2 region\n");
4818 err = -ENOMEM;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05304819 goto out_free_adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00004820 }
4821 }
4822
Vipul Pandya636f9d32012-09-26 02:39:39 +00004823 setup_memwin(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004824 err = adap_init0(adapter);
Hariprasad Shenai5b377d12015-05-27 22:30:23 +05304825#ifdef CONFIG_DEBUG_FS
4826 bitmap_zero(adapter->sge.blocked_fl, adapter->sge.egr_sz);
4827#endif
Vipul Pandya636f9d32012-09-26 02:39:39 +00004828 setup_memwin_rdma(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004829 if (err)
4830 goto out_unmap_bar;
4831
Hariprasad Shenai2a485cf2015-09-08 16:25:40 +05304832 /* configure SGE_STAT_CFG_A to read WC stats */
4833 if (!is_t4(adapter->params.chip))
Hariprasad Shenai676d6a72015-12-23 22:47:14 +05304834 t4_write_reg(adapter, SGE_STAT_CFG_A, STATSOURCE_T5_V(7) |
4835 (is_t5(adapter->params.chip) ? STATMODE_V(0) :
4836 T6_STATMODE_V(0)));
Hariprasad Shenai2a485cf2015-09-08 16:25:40 +05304837
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004838 for_each_port(adapter, i) {
4839 struct net_device *netdev;
4840
4841 netdev = alloc_etherdev_mq(sizeof(struct port_info),
4842 MAX_ETH_QSETS);
4843 if (!netdev) {
4844 err = -ENOMEM;
4845 goto out_free_dev;
4846 }
4847
4848 SET_NETDEV_DEV(netdev, &pdev->dev);
4849
4850 adapter->port[i] = netdev;
4851 pi = netdev_priv(netdev);
4852 pi->adapter = adapter;
4853 pi->xact_addr_filt = -1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004854 pi->port_id = i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004855 netdev->irq = pdev->irq;
4856
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00004857 netdev->hw_features = NETIF_F_SG | TSO_FLAGS |
4858 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
4859 NETIF_F_RXCSUM | NETIF_F_RXHASH |
Patrick McHardyf6469682013-04-19 02:04:27 +00004860 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00004861 if (highdma)
4862 netdev->hw_features |= NETIF_F_HIGHDMA;
4863 netdev->features |= netdev->hw_features;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004864 netdev->vlan_features = netdev->features & VLAN_FEAT;
4865
Jiri Pirko01789342011-08-16 06:29:00 +00004866 netdev->priv_flags |= IFF_UNICAST_FLT;
4867
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004868 netdev->netdev_ops = &cxgb4_netdev_ops;
Anish Bhatt688848b2014-06-19 21:37:13 -07004869#ifdef CONFIG_CHELSIO_T4_DCB
4870 netdev->dcbnl_ops = &cxgb4_dcb_ops;
4871 cxgb4_dcb_state_init(netdev);
4872#endif
Hariprasad Shenai812034f2015-04-06 20:23:23 +05304873 cxgb4_set_ethtool_ops(netdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004874 }
4875
4876 pci_set_drvdata(pdev, adapter);
4877
4878 if (adapter->flags & FW_OK) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004879 err = t4_port_init(adapter, func, func, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004880 if (err)
4881 goto out_free_dev;
Hariprasad Shenai098ef6c2015-06-05 14:24:50 +05304882 } else if (adapter->params.nports == 1) {
4883 /* If we don't have a connection to the firmware -- possibly
4884 * because of an error -- grab the raw VPD parameters so we
4885 * can set the proper MAC Address on the debug network
4886 * interface that we've created.
4887 */
4888 u8 hw_addr[ETH_ALEN];
4889 u8 *na = adapter->params.vpd.na;
4890
4891 err = t4_get_raw_vpd_params(adapter, &adapter->params.vpd);
4892 if (!err) {
4893 for (i = 0; i < ETH_ALEN; i++)
4894 hw_addr[i] = (hex2val(na[2 * i + 0]) * 16 +
4895 hex2val(na[2 * i + 1]));
4896 t4_set_hw_addr(adapter, 0, hw_addr);
4897 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004898 }
4899
Hariprasad Shenai098ef6c2015-06-05 14:24:50 +05304900 /* Configure queues and allocate tables now, they can be needed as
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004901 * soon as the first register_netdev completes.
4902 */
4903 cfg_queues(adapter);
4904
Hariprasad Shenai5be9ed82015-07-07 21:49:18 +05304905 adapter->l2t = t4_init_l2t(adapter->l2t_start, adapter->l2t_end);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004906 if (!adapter->l2t) {
4907 /* We tolerate a lack of L2T, giving up some functionality */
4908 dev_warn(&pdev->dev, "could not allocate L2T, continuing\n");
4909 adapter->params.offload = 0;
4910 }
4911
Anish Bhattb5a02f52015-01-14 15:17:34 -08004912#if IS_ENABLED(CONFIG_IPV6)
Hariprasad Shenaieb72f742015-12-09 17:16:35 +05304913 if ((CHELSIO_CHIP_VERSION(adapter->params.chip) <= CHELSIO_T5) &&
4914 (!(t4_read_reg(adapter, LE_DB_CONFIG_A) & ASLIPCOMPEN_F))) {
4915 /* CLIP functionality is not present in hardware,
4916 * hence disable all offload features
Anish Bhattb5a02f52015-01-14 15:17:34 -08004917 */
4918 dev_warn(&pdev->dev,
Hariprasad Shenaieb72f742015-12-09 17:16:35 +05304919 "CLIP not enabled in hardware, continuing\n");
Anish Bhattb5a02f52015-01-14 15:17:34 -08004920 adapter->params.offload = 0;
Hariprasad Shenaieb72f742015-12-09 17:16:35 +05304921 } else {
4922 adapter->clipt = t4_init_clip_tbl(adapter->clipt_start,
4923 adapter->clipt_end);
4924 if (!adapter->clipt) {
4925 /* We tolerate a lack of clip_table, giving up
4926 * some functionality
4927 */
4928 dev_warn(&pdev->dev,
4929 "could not allocate Clip table, continuing\n");
4930 adapter->params.offload = 0;
4931 }
Anish Bhattb5a02f52015-01-14 15:17:34 -08004932 }
4933#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004934 if (is_offload(adapter) && tid_init(&adapter->tids) < 0) {
4935 dev_warn(&pdev->dev, "could not allocate TID table, "
4936 "continuing\n");
4937 adapter->params.offload = 0;
4938 }
4939
Hariprasad Shenai9a1bb9f2015-08-12 16:55:05 +05304940 if (is_offload(adapter)) {
4941 if (t4_read_reg(adapter, LE_DB_CONFIG_A) & HASHEN_F) {
4942 u32 hash_base, hash_reg;
4943
4944 if (chip <= CHELSIO_T5) {
4945 hash_reg = LE_DB_TID_HASHBASE_A;
4946 hash_base = t4_read_reg(adapter, hash_reg);
4947 adapter->tids.hash_base = hash_base / 4;
4948 } else {
4949 hash_reg = T6_LE_DB_HASH_TID_BASE_A;
4950 hash_base = t4_read_reg(adapter, hash_reg);
4951 adapter->tids.hash_base = hash_base;
4952 }
4953 }
4954 }
4955
Dimitris Michailidisf7cabcd2010-07-11 12:01:15 +00004956 /* See what interrupts we'll be using */
4957 if (msi > 1 && enable_msix(adapter) == 0)
4958 adapter->flags |= USING_MSIX;
4959 else if (msi > 0 && pci_enable_msi(pdev) == 0)
4960 adapter->flags |= USING_MSI;
4961
Hariprasad Shenai547fd272015-12-23 11:29:53 +05304962 /* check for PCI Express bandwidth capabiltites */
4963 cxgb4_check_pcie_caps(adapter);
4964
Dimitris Michailidis671b0062010-07-11 12:01:17 +00004965 err = init_rss(adapter);
4966 if (err)
4967 goto out_free_dev;
4968
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004969 /*
4970 * The card is now ready to go. If any errors occur during device
4971 * registration we do not fail the whole card but rather proceed only
4972 * with the ports we manage to register successfully. However we must
4973 * register at least one net device.
4974 */
4975 for_each_port(adapter, i) {
Dimitris Michailidisa57cabe2010-12-14 21:36:46 +00004976 pi = adap2pinfo(adapter, i);
4977 netif_set_real_num_tx_queues(adapter->port[i], pi->nqsets);
4978 netif_set_real_num_rx_queues(adapter->port[i], pi->nqsets);
4979
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004980 err = register_netdev(adapter->port[i]);
4981 if (err)
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00004982 break;
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00004983 adapter->chan_map[pi->tx_chan] = i;
4984 print_port_info(adapter->port[i]);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004985 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00004986 if (i == 0) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004987 dev_err(&pdev->dev, "could not register any net devices\n");
4988 goto out_free_dev;
4989 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00004990 if (err) {
4991 dev_warn(&pdev->dev, "only %d net devices registered\n", i);
4992 err = 0;
Joe Perches6403eab2011-06-03 11:51:20 +00004993 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004994
4995 if (cxgb4_debugfs_root) {
4996 adapter->debugfs_root = debugfs_create_dir(pci_name(pdev),
4997 cxgb4_debugfs_root);
4998 setup_debugfs(adapter);
4999 }
5000
David S. Miller88c51002011-10-07 13:38:43 -04005001 /* PCIe EEH recovery on powerpc platforms needs fundamental reset */
5002 pdev->needs_freset = 1;
5003
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005004 if (is_offload(adapter))
5005 attach_ulds(adapter);
5006
Hariprasad Shenai8e1e6052014-08-06 17:10:59 +05305007sriov:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005008#ifdef CONFIG_PCI_IOV
Santosh Rastapur7d6727c2013-03-14 05:08:56 +00005009 if (func < ARRAY_SIZE(num_vf) && num_vf[func] > 0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005010 if (pci_enable_sriov(pdev, num_vf[func]) == 0)
5011 dev_info(&pdev->dev,
5012 "instantiated %u virtual functions\n",
5013 num_vf[func]);
5014#endif
5015 return 0;
5016
5017 out_free_dev:
Dimitris Michailidis06546392010-07-11 12:01:16 +00005018 free_some_resources(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005019 out_unmap_bar:
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05305020 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005021 iounmap(adapter->bar2);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005022 out_free_adapter:
Anish Bhatt29aaee62014-08-20 13:44:06 -07005023 if (adapter->workq)
5024 destroy_workqueue(adapter->workq);
5025
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005026 kfree(adapter);
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305027 out_unmap_bar0:
5028 iounmap(regs);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005029 out_disable_device:
5030 pci_disable_pcie_error_reporting(pdev);
5031 pci_disable_device(pdev);
5032 out_release_regions:
5033 pci_release_regions(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005034 return err;
5035}
5036
Bill Pemberton91744942012-12-03 09:23:02 -05005037static void remove_one(struct pci_dev *pdev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005038{
5039 struct adapter *adapter = pci_get_drvdata(pdev);
5040
Vipul Pandya636f9d32012-09-26 02:39:39 +00005041#ifdef CONFIG_PCI_IOV
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005042 pci_disable_sriov(pdev);
5043
Vipul Pandya636f9d32012-09-26 02:39:39 +00005044#endif
5045
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005046 if (adapter) {
5047 int i;
5048
Anish Bhatt29aaee62014-08-20 13:44:06 -07005049 /* Tear down per-adapter Work Queue first since it can contain
5050 * references to our adapter data structure.
5051 */
5052 destroy_workqueue(adapter->workq);
5053
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005054 if (is_offload(adapter))
5055 detach_ulds(adapter);
5056
Hariprasad Shenaib37987e2015-03-26 10:04:26 +05305057 disable_interrupts(adapter);
5058
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005059 for_each_port(adapter, i)
Dimitris Michailidis8f3a7672010-12-14 21:36:52 +00005060 if (adapter->port[i]->reg_state == NETREG_REGISTERED)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005061 unregister_netdev(adapter->port[i]);
5062
Fabian Frederick9f16dc22014-06-27 22:51:52 +02005063 debugfs_remove_recursive(adapter->debugfs_root);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005064
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00005065 /* If we allocated filters, free up state associated with any
5066 * valid filters ...
5067 */
5068 if (adapter->tids.ftid_tab) {
5069 struct filter_entry *f = &adapter->tids.ftid_tab[0];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00005070 for (i = 0; i < (adapter->tids.nftids +
5071 adapter->tids.nsftids); i++, f++)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00005072 if (f->valid)
5073 clear_filter(adapter, f);
5074 }
5075
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00005076 if (adapter->flags & FULL_INIT_DONE)
5077 cxgb_down(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005078
Dimitris Michailidis06546392010-07-11 12:01:16 +00005079 free_some_resources(adapter);
Anish Bhattb5a02f52015-01-14 15:17:34 -08005080#if IS_ENABLED(CONFIG_IPV6)
5081 t4_cleanup_clip_tbl(adapter);
5082#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005083 iounmap(adapter->regs);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05305084 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005085 iounmap(adapter->bar2);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005086 pci_disable_pcie_error_reporting(pdev);
Gavin Shan144be3d2014-01-23 12:27:34 +08005087 if ((adapter->flags & DEV_ENABLED)) {
5088 pci_disable_device(pdev);
5089 adapter->flags &= ~DEV_ENABLED;
5090 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005091 pci_release_regions(pdev);
Li RongQingee9a33b2014-06-20 17:32:36 +08005092 synchronize_rcu();
Gavin Shan8b662fe2014-01-24 17:12:03 +08005093 kfree(adapter);
Dimitris Michailidisa069ec92010-09-30 09:17:12 +00005094 } else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005095 pci_release_regions(pdev);
5096}
5097
5098static struct pci_driver cxgb4_driver = {
5099 .name = KBUILD_MODNAME,
5100 .id_table = cxgb4_pci_tbl,
5101 .probe = init_one,
Bill Pemberton91744942012-12-03 09:23:02 -05005102 .remove = remove_one,
Thadeu Lima de Souza Cascardo687d7052014-02-24 17:04:52 -03005103 .shutdown = remove_one,
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005104 .err_handler = &cxgb4_eeh,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005105};
5106
5107static int __init cxgb4_init_module(void)
5108{
5109 int ret;
5110
5111 /* Debugfs support is optional, just warn if this fails */
5112 cxgb4_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
5113 if (!cxgb4_debugfs_root)
Joe Perches428ac432013-01-06 13:34:49 +00005114 pr_warn("could not create debugfs entry, continuing\n");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005115
5116 ret = pci_register_driver(&cxgb4_driver);
Anish Bhatt29aaee62014-08-20 13:44:06 -07005117 if (ret < 0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005118 debugfs_remove(cxgb4_debugfs_root);
Vipul Pandya01bcca62013-07-04 16:10:46 +05305119
Anish Bhatt1bb60372014-10-14 20:07:22 -07005120#if IS_ENABLED(CONFIG_IPV6)
Anish Bhattb5a02f52015-01-14 15:17:34 -08005121 if (!inet6addr_registered) {
5122 register_inet6addr_notifier(&cxgb4_inet6addr_notifier);
5123 inet6addr_registered = true;
5124 }
Anish Bhatt1bb60372014-10-14 20:07:22 -07005125#endif
Vipul Pandya01bcca62013-07-04 16:10:46 +05305126
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005127 return ret;
5128}
5129
5130static void __exit cxgb4_cleanup_module(void)
5131{
Anish Bhatt1bb60372014-10-14 20:07:22 -07005132#if IS_ENABLED(CONFIG_IPV6)
Hariprasad Shenai1793c792015-01-21 20:57:52 +05305133 if (inet6addr_registered) {
Anish Bhattb5a02f52015-01-14 15:17:34 -08005134 unregister_inet6addr_notifier(&cxgb4_inet6addr_notifier);
5135 inet6addr_registered = false;
5136 }
Anish Bhatt1bb60372014-10-14 20:07:22 -07005137#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005138 pci_unregister_driver(&cxgb4_driver);
5139 debugfs_remove(cxgb4_debugfs_root); /* NULL ok */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005140}
5141
5142module_init(cxgb4_init_module);
5143module_exit(cxgb4_cleanup_module);