blob: 041742b5e0e8f10078e641a0f26bbecadd8af044 [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
Vipul Pandya01bcca62013-07-04 16:10:46 +053079#ifdef DRV_VERSION
80#undef DRV_VERSION
81#endif
Santosh Rastapur3a7f8552013-03-14 05:08:55 +000082#define DRV_VERSION "2.0.0-ko"
83#define DRV_DESC "Chelsio T4/T5 Network Driver"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000084
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000085enum {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000086 MAX_TXQ_ENTRIES = 16384,
87 MAX_CTRL_TXQ_ENTRIES = 1024,
88 MAX_RSPQ_ENTRIES = 16384,
89 MAX_RX_BUFFERS = 16384,
90 MIN_TXQ_ENTRIES = 32,
91 MIN_CTRL_TXQ_ENTRIES = 32,
92 MIN_RSPQ_ENTRIES = 128,
93 MIN_FL_ENTRIES = 16
94};
95
Vipul Pandyaf2b7e782012-12-10 09:30:52 +000096/* Host shadow copy of ingress filter entry. This is in host native format
97 * and doesn't match the ordering or bit order, etc. of the hardware of the
98 * firmware command. The use of bit-field structure elements is purely to
99 * remind ourselves of the field size limitations and save memory in the case
100 * where the filter table is large.
101 */
102struct filter_entry {
103 /* Administrative fields for filter.
104 */
105 u32 valid:1; /* filter allocated and valid */
106 u32 locked:1; /* filter is administratively locked */
107
108 u32 pending:1; /* filter action is pending firmware reply */
109 u32 smtidx:8; /* Source MAC Table index for smac */
110 struct l2t_entry *l2t; /* Layer Two Table entry for dmac */
111
112 /* The filter itself. Most of this is a straight copy of information
113 * provided by the extended ioctl(). Some fields are translated to
114 * internal forms -- for instance the Ingress Queue ID passed in from
115 * the ioctl() is translated into the Absolute Ingress Queue ID.
116 */
117 struct ch_filter_specification fs;
118};
119
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000120#define DFLT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK | \
121 NETIF_MSG_TIMER | NETIF_MSG_IFDOWN | NETIF_MSG_IFUP |\
122 NETIF_MSG_RX_ERR | NETIF_MSG_TX_ERR)
123
Hariprasad Shenai3fedeab2014-11-25 08:33:58 +0530124/* Macros needed to support the PCI Device ID Table ...
125 */
126#define CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN \
127 static struct pci_device_id cxgb4_pci_tbl[] = {
128#define CH_PCI_DEVICE_ID_FUNCTION 0x4
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000129
Hariprasad Shenai3fedeab2014-11-25 08:33:58 +0530130/* Include PCI Device IDs for both PF4 and PF0-3 so our PCI probe() routine is
131 * called for both.
132 */
133#define CH_PCI_DEVICE_ID_FUNCTION2 0x0
134
135#define CH_PCI_ID_TABLE_ENTRY(devid) \
136 {PCI_VDEVICE(CHELSIO, (devid)), 4}
137
138#define CH_PCI_DEVICE_ID_TABLE_DEFINE_END \
139 { 0, } \
140 }
141
142#include "t4_pci_id_tbl.h"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000143
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530144#define FW4_FNAME "cxgb4/t4fw.bin"
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000145#define FW5_FNAME "cxgb4/t5fw.bin"
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530146#define FW4_CFNAME "cxgb4/t4-config.txt"
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000147#define FW5_CFNAME "cxgb4/t5-config.txt"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000148
149MODULE_DESCRIPTION(DRV_DESC);
150MODULE_AUTHOR("Chelsio Communications");
151MODULE_LICENSE("Dual BSD/GPL");
152MODULE_VERSION(DRV_VERSION);
153MODULE_DEVICE_TABLE(pci, cxgb4_pci_tbl);
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530154MODULE_FIRMWARE(FW4_FNAME);
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000155MODULE_FIRMWARE(FW5_FNAME);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000156
Vipul Pandya636f9d32012-09-26 02:39:39 +0000157/*
158 * Normally we're willing to become the firmware's Master PF but will be happy
159 * if another PF has already become the Master and initialized the adapter.
160 * Setting "force_init" will cause this driver to forcibly establish itself as
161 * the Master PF and initialize the adapter.
162 */
163static uint force_init;
164
165module_param(force_init, uint, 0644);
166MODULE_PARM_DESC(force_init, "Forcibly become Master PF and initialize adapter");
167
Vipul Pandya13ee15d2012-09-26 02:39:40 +0000168/*
169 * Normally if the firmware we connect to has Configuration File support, we
170 * use that and only fall back to the old Driver-based initialization if the
171 * Configuration File fails for some reason. If force_old_init is set, then
172 * we'll always use the old Driver-based initialization sequence.
173 */
174static uint force_old_init;
175
176module_param(force_old_init, uint, 0644);
Hariprasad Shenai06640312015-01-13 15:19:25 +0530177MODULE_PARM_DESC(force_old_init, "Force old initialization sequence, deprecated"
178 " parameter");
Vipul Pandya13ee15d2012-09-26 02:39:40 +0000179
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000180static int dflt_msg_enable = DFLT_MSG_ENABLE;
181
182module_param(dflt_msg_enable, int, 0644);
183MODULE_PARM_DESC(dflt_msg_enable, "Chelsio T4 default message enable bitmap");
184
185/*
186 * The driver uses the best interrupt scheme available on a platform in the
187 * order MSI-X, MSI, legacy INTx interrupts. This parameter determines which
188 * of these schemes the driver may consider as follows:
189 *
190 * msi = 2: choose from among all three options
191 * msi = 1: only consider MSI and INTx interrupts
192 * msi = 0: force INTx interrupts
193 */
194static int msi = 2;
195
196module_param(msi, int, 0644);
197MODULE_PARM_DESC(msi, "whether to use INTx (0), MSI (1) or MSI-X (2)");
198
199/*
200 * Queue interrupt hold-off timer values. Queues default to the first of these
201 * upon creation.
202 */
203static unsigned int intr_holdoff[SGE_NTIMERS - 1] = { 5, 10, 20, 50, 100 };
204
205module_param_array(intr_holdoff, uint, NULL, 0644);
206MODULE_PARM_DESC(intr_holdoff, "values for queue interrupt hold-off timers "
Hariprasad Shenai06640312015-01-13 15:19:25 +0530207 "0..4 in microseconds, deprecated parameter");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000208
209static unsigned int intr_cnt[SGE_NCOUNTERS - 1] = { 4, 8, 16 };
210
211module_param_array(intr_cnt, uint, NULL, 0644);
212MODULE_PARM_DESC(intr_cnt,
Hariprasad Shenai06640312015-01-13 15:19:25 +0530213 "thresholds 1..3 for queue interrupt packet counters, "
214 "deprecated parameter");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000215
Vipul Pandya636f9d32012-09-26 02:39:39 +0000216/*
217 * Normally we tell the chip to deliver Ingress Packets into our DMA buffers
218 * offset by 2 bytes in order to have the IP headers line up on 4-byte
219 * boundaries. This is a requirement for many architectures which will throw
220 * a machine check fault if an attempt is made to access one of the 4-byte IP
221 * header fields on a non-4-byte boundary. And it's a major performance issue
222 * even on some architectures which allow it like some implementations of the
223 * x86 ISA. However, some architectures don't mind this and for some very
224 * edge-case performance sensitive applications (like forwarding large volumes
225 * of small packets), setting this DMA offset to 0 will decrease the number of
226 * PCI-E Bus transfers enough to measurably affect performance.
227 */
228static int rx_dma_offset = 2;
229
Rusty Russelleb939922011-12-19 14:08:01 +0000230static bool vf_acls;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000231
232#ifdef CONFIG_PCI_IOV
233module_param(vf_acls, bool, 0644);
Hariprasad Shenai06640312015-01-13 15:19:25 +0530234MODULE_PARM_DESC(vf_acls, "if set enable virtualization L2 ACL enforcement, "
235 "deprecated parameter");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000236
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000237/* Configure the number of PCI-E Virtual Function which are to be instantiated
238 * on SR-IOV Capable Physical Functions.
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000239 */
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000240static unsigned int num_vf[NUM_OF_PF_WITH_SRIOV];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000241
242module_param_array(num_vf, uint, NULL, 0644);
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000243MODULE_PARM_DESC(num_vf, "number of VFs for each of PFs 0-3");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000244#endif
245
Anish Bhatt688848b2014-06-19 21:37:13 -0700246/* TX Queue select used to determine what algorithm to use for selecting TX
247 * queue. Select between the kernel provided function (select_queue=0) or user
248 * cxgb_select_queue function (select_queue=1)
249 *
250 * Default: select_queue=0
251 */
252static int select_queue;
253module_param(select_queue, int, 0644);
254MODULE_PARM_DESC(select_queue,
255 "Select between kernel provided method of selecting or driver method of selecting TX queue. Default is kernel method.");
256
Hariprasad Shenai06640312015-01-13 15:19:25 +0530257static unsigned int tp_vlan_pri_map = HW_TPL_FR_MT_PR_IV_P_FC;
Vipul Pandya13ee15d2012-09-26 02:39:40 +0000258
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000259module_param(tp_vlan_pri_map, uint, 0644);
Hariprasad Shenai06640312015-01-13 15:19:25 +0530260MODULE_PARM_DESC(tp_vlan_pri_map, "global compressed filter configuration, "
261 "deprecated parameter");
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000262
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000263static struct dentry *cxgb4_debugfs_root;
264
265static LIST_HEAD(adapter_list);
266static DEFINE_MUTEX(uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +0530267/* Adapter list to be accessed from atomic context */
268static LIST_HEAD(adap_rcu_list);
269static DEFINE_SPINLOCK(adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000270static struct cxgb4_uld_info ulds[CXGB4_ULD_MAX];
271static const char *uld_str[] = { "RDMA", "iSCSI" };
272
273static void link_report(struct net_device *dev)
274{
275 if (!netif_carrier_ok(dev))
276 netdev_info(dev, "link down\n");
277 else {
278 static const char *fc[] = { "no", "Rx", "Tx", "Tx/Rx" };
279
280 const char *s = "10Mbps";
281 const struct port_info *p = netdev_priv(dev);
282
283 switch (p->link_cfg.speed) {
Ben Hutchingse8b39012014-02-23 00:03:24 +0000284 case 10000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000285 s = "10Gbps";
286 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000287 case 1000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000288 s = "1000Mbps";
289 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000290 case 100:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000291 s = "100Mbps";
292 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000293 case 40000:
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +0530294 s = "40Gbps";
295 break;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000296 }
297
298 netdev_info(dev, "link up, %s, full-duplex, %s PAUSE\n", s,
299 fc[p->link_cfg.fc]);
300 }
301}
302
Anish Bhatt688848b2014-06-19 21:37:13 -0700303#ifdef CONFIG_CHELSIO_T4_DCB
304/* Set up/tear down Data Center Bridging Priority mapping for a net device. */
305static void dcb_tx_queue_prio_enable(struct net_device *dev, int enable)
306{
307 struct port_info *pi = netdev_priv(dev);
308 struct adapter *adap = pi->adapter;
309 struct sge_eth_txq *txq = &adap->sge.ethtxq[pi->first_qset];
310 int i;
311
312 /* We use a simple mapping of Port TX Queue Index to DCB
313 * Priority when we're enabling DCB.
314 */
315 for (i = 0; i < pi->nqsets; i++, txq++) {
316 u32 name, value;
317 int err;
318
Hariprasad Shenai51678652014-11-21 12:52:02 +0530319 name = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
320 FW_PARAMS_PARAM_X_V(
321 FW_PARAMS_PARAM_DMAQ_EQ_DCBPRIO_ETH) |
322 FW_PARAMS_PARAM_YZ_V(txq->q.cntxt_id));
Anish Bhatt688848b2014-06-19 21:37:13 -0700323 value = enable ? i : 0xffffffff;
324
325 /* Since we can be called while atomic (from "interrupt
326 * level") we need to issue the Set Parameters Commannd
327 * without sleeping (timeout < 0).
328 */
329 err = t4_set_params_nosleep(adap, adap->mbox, adap->fn, 0, 1,
330 &name, &value);
331
332 if (err)
333 dev_err(adap->pdev_dev,
334 "Can't %s DCB Priority on port %d, TX Queue %d: err=%d\n",
335 enable ? "set" : "unset", pi->port_id, i, -err);
Anish Bhatt10b00462014-08-07 16:14:03 -0700336 else
337 txq->dcb_prio = value;
Anish Bhatt688848b2014-06-19 21:37:13 -0700338 }
339}
340#endif /* CONFIG_CHELSIO_T4_DCB */
341
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000342void t4_os_link_changed(struct adapter *adapter, int port_id, int link_stat)
343{
344 struct net_device *dev = adapter->port[port_id];
345
346 /* Skip changes from disabled ports. */
347 if (netif_running(dev) && link_stat != netif_carrier_ok(dev)) {
348 if (link_stat)
349 netif_carrier_on(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700350 else {
351#ifdef CONFIG_CHELSIO_T4_DCB
352 cxgb4_dcb_state_init(dev);
353 dcb_tx_queue_prio_enable(dev, false);
354#endif /* CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000355 netif_carrier_off(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700356 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000357
358 link_report(dev);
359 }
360}
361
362void t4_os_portmod_changed(const struct adapter *adap, int port_id)
363{
364 static const char *mod_str[] = {
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000365 NULL, "LR", "SR", "ER", "passive DA", "active DA", "LRM"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000366 };
367
368 const struct net_device *dev = adap->port[port_id];
369 const struct port_info *pi = netdev_priv(dev);
370
371 if (pi->mod_type == FW_PORT_MOD_TYPE_NONE)
372 netdev_info(dev, "port module unplugged\n");
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000373 else if (pi->mod_type < ARRAY_SIZE(mod_str))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000374 netdev_info(dev, "%s module inserted\n", mod_str[pi->mod_type]);
375}
376
377/*
378 * Configure the exact and hash address filters to handle a port's multicast
379 * and secondary unicast MAC addresses.
380 */
381static int set_addr_filters(const struct net_device *dev, bool sleep)
382{
383 u64 mhash = 0;
384 u64 uhash = 0;
385 bool free = true;
386 u16 filt_idx[7];
387 const u8 *addr[7];
388 int ret, naddr = 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000389 const struct netdev_hw_addr *ha;
390 int uc_cnt = netdev_uc_count(dev);
David S. Miller4a35ecf2010-04-06 23:53:30 -0700391 int mc_cnt = netdev_mc_count(dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000392 const struct port_info *pi = netdev_priv(dev);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000393 unsigned int mb = pi->adapter->fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000394
395 /* first do the secondary unicast addresses */
396 netdev_for_each_uc_addr(ha, dev) {
397 addr[naddr++] = ha->addr;
398 if (--uc_cnt == 0 || naddr >= ARRAY_SIZE(addr)) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000399 ret = t4_alloc_mac_filt(pi->adapter, mb, pi->viid, free,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000400 naddr, addr, filt_idx, &uhash, sleep);
401 if (ret < 0)
402 return ret;
403
404 free = false;
405 naddr = 0;
406 }
407 }
408
409 /* next set up the multicast addresses */
David S. Miller4a35ecf2010-04-06 23:53:30 -0700410 netdev_for_each_mc_addr(ha, dev) {
411 addr[naddr++] = ha->addr;
412 if (--mc_cnt == 0 || naddr >= ARRAY_SIZE(addr)) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000413 ret = t4_alloc_mac_filt(pi->adapter, mb, pi->viid, free,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000414 naddr, addr, filt_idx, &mhash, sleep);
415 if (ret < 0)
416 return ret;
417
418 free = false;
419 naddr = 0;
420 }
421 }
422
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000423 return t4_set_addr_hash(pi->adapter, mb, pi->viid, uhash != 0,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000424 uhash | mhash, sleep);
425}
426
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530427int dbfifo_int_thresh = 10; /* 10 == 640 entry threshold */
428module_param(dbfifo_int_thresh, int, 0644);
429MODULE_PARM_DESC(dbfifo_int_thresh, "doorbell fifo interrupt threshold");
430
Vipul Pandya404d9e32012-10-08 02:59:43 +0000431/*
432 * usecs to sleep while draining the dbfifo
433 */
434static int dbfifo_drain_delay = 1000;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530435module_param(dbfifo_drain_delay, int, 0644);
436MODULE_PARM_DESC(dbfifo_drain_delay,
437 "usecs to sleep while draining the dbfifo");
438
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000439/*
440 * Set Rx properties of a port, such as promiscruity, address filters, and MTU.
441 * If @mtu is -1 it is left unchanged.
442 */
443static int set_rxmode(struct net_device *dev, int mtu, bool sleep_ok)
444{
445 int ret;
446 struct port_info *pi = netdev_priv(dev);
447
448 ret = set_addr_filters(dev, sleep_ok);
449 if (ret == 0)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000450 ret = t4_set_rxmode(pi->adapter, pi->adapter->fn, pi->viid, mtu,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000451 (dev->flags & IFF_PROMISC) ? 1 : 0,
Dimitris Michailidisf8f5aaf2010-05-10 15:58:07 +0000452 (dev->flags & IFF_ALLMULTI) ? 1 : 0, 1, -1,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000453 sleep_ok);
454 return ret;
455}
456
457/**
458 * link_start - enable a port
459 * @dev: the port to enable
460 *
461 * Performs the MAC and PHY actions needed to enable a port.
462 */
463static int link_start(struct net_device *dev)
464{
465 int ret;
466 struct port_info *pi = netdev_priv(dev);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000467 unsigned int mb = pi->adapter->fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000468
469 /*
470 * We do not set address filters and promiscuity here, the stack does
471 * that step explicitly.
472 */
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000473 ret = t4_set_rxmode(pi->adapter, mb, pi->viid, dev->mtu, -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +0000474 !!(dev->features & NETIF_F_HW_VLAN_CTAG_RX), true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000475 if (ret == 0) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000476 ret = t4_change_mac(pi->adapter, mb, pi->viid,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000477 pi->xact_addr_filt, dev->dev_addr, true,
Dimitris Michailidisb6bd29e2010-05-18 10:07:11 +0000478 true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000479 if (ret >= 0) {
480 pi->xact_addr_filt = ret;
481 ret = 0;
482 }
483 }
484 if (ret == 0)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000485 ret = t4_link_start(pi->adapter, mb, pi->tx_chan,
486 &pi->link_cfg);
Anish Bhatt30f00842014-08-05 16:05:23 -0700487 if (ret == 0) {
488 local_bh_disable();
Anish Bhatt688848b2014-06-19 21:37:13 -0700489 ret = t4_enable_vi_params(pi->adapter, mb, pi->viid, true,
490 true, CXGB4_DCB_ENABLED);
Anish Bhatt30f00842014-08-05 16:05:23 -0700491 local_bh_enable();
492 }
Anish Bhatt688848b2014-06-19 21:37:13 -0700493
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000494 return ret;
495}
496
Anish Bhatt688848b2014-06-19 21:37:13 -0700497int cxgb4_dcb_enabled(const struct net_device *dev)
498{
499#ifdef CONFIG_CHELSIO_T4_DCB
500 struct port_info *pi = netdev_priv(dev);
501
Anish Bhatt3bb06262014-10-23 14:37:31 -0700502 if (!pi->dcb.enabled)
503 return 0;
504
505 return ((pi->dcb.state == CXGB4_DCB_STATE_FW_ALLSYNCED) ||
506 (pi->dcb.state == CXGB4_DCB_STATE_HOST));
Anish Bhatt688848b2014-06-19 21:37:13 -0700507#else
508 return 0;
509#endif
510}
511EXPORT_SYMBOL(cxgb4_dcb_enabled);
512
513#ifdef CONFIG_CHELSIO_T4_DCB
514/* Handle a Data Center Bridging update message from the firmware. */
515static void dcb_rpl(struct adapter *adap, const struct fw_port_cmd *pcmd)
516{
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530517 int port = FW_PORT_CMD_PORTID_G(ntohl(pcmd->op_to_portid));
Anish Bhatt688848b2014-06-19 21:37:13 -0700518 struct net_device *dev = adap->port[port];
519 int old_dcb_enabled = cxgb4_dcb_enabled(dev);
520 int new_dcb_enabled;
521
522 cxgb4_dcb_handle_fw_update(adap, pcmd);
523 new_dcb_enabled = cxgb4_dcb_enabled(dev);
524
525 /* If the DCB has become enabled or disabled on the port then we're
526 * going to need to set up/tear down DCB Priority parameters for the
527 * TX Queues associated with the port.
528 */
529 if (new_dcb_enabled != old_dcb_enabled)
530 dcb_tx_queue_prio_enable(dev, new_dcb_enabled);
531}
532#endif /* CONFIG_CHELSIO_T4_DCB */
533
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000534/* Clear a filter and release any of its resources that we own. This also
535 * clears the filter's "pending" status.
536 */
537static void clear_filter(struct adapter *adap, struct filter_entry *f)
538{
539 /* If the new or old filter have loopback rewriteing rules then we'll
540 * need to free any existing Layer Two Table (L2T) entries of the old
541 * filter rule. The firmware will handle freeing up any Source MAC
542 * Table (SMT) entries used for rewriting Source MAC Addresses in
543 * loopback rules.
544 */
545 if (f->l2t)
546 cxgb4_l2t_release(f->l2t);
547
548 /* The zeroing of the filter rule below clears the filter valid,
549 * pending, locked flags, l2t pointer, etc. so it's all we need for
550 * this operation.
551 */
552 memset(f, 0, sizeof(*f));
553}
554
555/* Handle a filter write/deletion reply.
556 */
557static void filter_rpl(struct adapter *adap, const struct cpl_set_tcb_rpl *rpl)
558{
559 unsigned int idx = GET_TID(rpl);
560 unsigned int nidx = idx - adap->tids.ftid_base;
561 unsigned int ret;
562 struct filter_entry *f;
563
564 if (idx >= adap->tids.ftid_base && nidx <
565 (adap->tids.nftids + adap->tids.nsftids)) {
566 idx = nidx;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800567 ret = TCB_COOKIE_G(rpl->cookie);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000568 f = &adap->tids.ftid_tab[idx];
569
570 if (ret == FW_FILTER_WR_FLT_DELETED) {
571 /* Clear the filter when we get confirmation from the
572 * hardware that the filter has been deleted.
573 */
574 clear_filter(adap, f);
575 } else if (ret == FW_FILTER_WR_SMT_TBL_FULL) {
576 dev_err(adap->pdev_dev, "filter %u setup failed due to full SMT\n",
577 idx);
578 clear_filter(adap, f);
579 } else if (ret == FW_FILTER_WR_FLT_ADDED) {
580 f->smtidx = (be64_to_cpu(rpl->oldval) >> 24) & 0xff;
581 f->pending = 0; /* asynchronous setup completed */
582 f->valid = 1;
583 } else {
584 /* Something went wrong. Issue a warning about the
585 * problem and clear everything out.
586 */
587 dev_err(adap->pdev_dev, "filter %u setup failed with error %u\n",
588 idx, ret);
589 clear_filter(adap, f);
590 }
591 }
592}
593
594/* Response queue handler for the FW event queue.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000595 */
596static int fwevtq_handler(struct sge_rspq *q, const __be64 *rsp,
597 const struct pkt_gl *gl)
598{
599 u8 opcode = ((const struct rss_header *)rsp)->opcode;
600
601 rsp++; /* skip RSS header */
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000602
603 /* FW can send EGR_UPDATEs encapsulated in a CPL_FW4_MSG.
604 */
605 if (unlikely(opcode == CPL_FW4_MSG &&
606 ((const struct cpl_fw4_msg *)rsp)->type == FW_TYPE_RSSCPL)) {
607 rsp++;
608 opcode = ((const struct rss_header *)rsp)->opcode;
609 rsp++;
610 if (opcode != CPL_SGE_EGR_UPDATE) {
611 dev_err(q->adap->pdev_dev, "unexpected FW4/CPL %#x on FW event queue\n"
612 , opcode);
613 goto out;
614 }
615 }
616
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000617 if (likely(opcode == CPL_SGE_EGR_UPDATE)) {
618 const struct cpl_sge_egr_update *p = (void *)rsp;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800619 unsigned int qid = EGR_QID_G(ntohl(p->opcode_qid));
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000620 struct sge_txq *txq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000621
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000622 txq = q->adap->sge.egr_map[qid - q->adap->sge.egr_start];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000623 txq->restarts++;
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000624 if ((u8 *)txq < (u8 *)q->adap->sge.ofldtxq) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000625 struct sge_eth_txq *eq;
626
627 eq = container_of(txq, struct sge_eth_txq, q);
628 netif_tx_wake_queue(eq->txq);
629 } else {
630 struct sge_ofld_txq *oq;
631
632 oq = container_of(txq, struct sge_ofld_txq, q);
633 tasklet_schedule(&oq->qresume_tsk);
634 }
635 } else if (opcode == CPL_FW6_MSG || opcode == CPL_FW4_MSG) {
636 const struct cpl_fw6_msg *p = (void *)rsp;
637
Anish Bhatt688848b2014-06-19 21:37:13 -0700638#ifdef CONFIG_CHELSIO_T4_DCB
639 const struct fw_port_cmd *pcmd = (const void *)p->data;
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530640 unsigned int cmd = FW_CMD_OP_G(ntohl(pcmd->op_to_portid));
Anish Bhatt688848b2014-06-19 21:37:13 -0700641 unsigned int action =
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530642 FW_PORT_CMD_ACTION_G(ntohl(pcmd->action_to_len16));
Anish Bhatt688848b2014-06-19 21:37:13 -0700643
644 if (cmd == FW_PORT_CMD &&
645 action == FW_PORT_ACTION_GET_PORT_INFO) {
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530646 int port = FW_PORT_CMD_PORTID_G(
Anish Bhatt688848b2014-06-19 21:37:13 -0700647 be32_to_cpu(pcmd->op_to_portid));
648 struct net_device *dev = q->adap->port[port];
649 int state_input = ((pcmd->u.info.dcbxdis_pkd &
Hariprasad Shenai2b5fb1f2014-11-21 12:52:04 +0530650 FW_PORT_CMD_DCBXDIS_F)
Anish Bhatt688848b2014-06-19 21:37:13 -0700651 ? CXGB4_DCB_INPUT_FW_DISABLED
652 : CXGB4_DCB_INPUT_FW_ENABLED);
653
654 cxgb4_dcb_state_fsm(dev, state_input);
655 }
656
657 if (cmd == FW_PORT_CMD &&
658 action == FW_PORT_ACTION_L2_DCB_CFG)
659 dcb_rpl(q->adap, pcmd);
660 else
661#endif
662 if (p->type == 0)
663 t4_handle_fw_rpl(q->adap, p->data);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000664 } else if (opcode == CPL_L2T_WRITE_RPL) {
665 const struct cpl_l2t_write_rpl *p = (void *)rsp;
666
667 do_l2t_write_rpl(q->adap, p);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000668 } else if (opcode == CPL_SET_TCB_RPL) {
669 const struct cpl_set_tcb_rpl *p = (void *)rsp;
670
671 filter_rpl(q->adap, p);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000672 } else
673 dev_err(q->adap->pdev_dev,
674 "unexpected CPL %#x on FW event queue\n", opcode);
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000675out:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000676 return 0;
677}
678
679/**
680 * uldrx_handler - response queue handler for ULD queues
681 * @q: the response queue that received the packet
682 * @rsp: the response queue descriptor holding the offload message
683 * @gl: the gather list of packet fragments
684 *
685 * Deliver an ingress offload packet to a ULD. All processing is done by
686 * the ULD, we just maintain statistics.
687 */
688static int uldrx_handler(struct sge_rspq *q, const __be64 *rsp,
689 const struct pkt_gl *gl)
690{
691 struct sge_ofld_rxq *rxq = container_of(q, struct sge_ofld_rxq, rspq);
692
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000693 /* FW can send CPLs encapsulated in a CPL_FW4_MSG.
694 */
695 if (((const struct rss_header *)rsp)->opcode == CPL_FW4_MSG &&
696 ((const struct cpl_fw4_msg *)(rsp + 1))->type == FW_TYPE_RSSCPL)
697 rsp += 2;
698
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000699 if (ulds[q->uld].rx_handler(q->adap->uld_handle[q->uld], rsp, gl)) {
700 rxq->stats.nomem++;
701 return -1;
702 }
703 if (gl == NULL)
704 rxq->stats.imm++;
705 else if (gl == CXGB4_MSG_AN)
706 rxq->stats.an++;
707 else
708 rxq->stats.pkts++;
709 return 0;
710}
711
712static void disable_msi(struct adapter *adapter)
713{
714 if (adapter->flags & USING_MSIX) {
715 pci_disable_msix(adapter->pdev);
716 adapter->flags &= ~USING_MSIX;
717 } else if (adapter->flags & USING_MSI) {
718 pci_disable_msi(adapter->pdev);
719 adapter->flags &= ~USING_MSI;
720 }
721}
722
723/*
724 * Interrupt handler for non-data events used with MSI-X.
725 */
726static irqreturn_t t4_nondata_intr(int irq, void *cookie)
727{
728 struct adapter *adap = cookie;
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530729 u32 v = t4_read_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000730
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530731 if (v & PFSW_F) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000732 adap->swintr = 1;
Hariprasad Shenai0d804332015-01-05 16:30:47 +0530733 t4_write_reg(adap, MYPF_REG(PL_PF_INT_CAUSE_A), v);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000734 }
735 t4_slow_intr_handler(adap);
736 return IRQ_HANDLED;
737}
738
739/*
740 * Name the MSI-X interrupts.
741 */
742static void name_msix_vecs(struct adapter *adap)
743{
Dimitris Michailidisba278162010-12-14 21:36:50 +0000744 int i, j, msi_idx = 2, n = sizeof(adap->msix_info[0].desc);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000745
746 /* non-data interrupts */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000747 snprintf(adap->msix_info[0].desc, n, "%s", adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000748
749 /* FW events */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000750 snprintf(adap->msix_info[1].desc, n, "%s-FWeventq",
751 adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000752
753 /* Ethernet queues */
754 for_each_port(adap, j) {
755 struct net_device *d = adap->port[j];
756 const struct port_info *pi = netdev_priv(d);
757
Dimitris Michailidisba278162010-12-14 21:36:50 +0000758 for (i = 0; i < pi->nqsets; i++, msi_idx++)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000759 snprintf(adap->msix_info[msi_idx].desc, n, "%s-Rx%d",
760 d->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000761 }
762
763 /* offload queues */
Dimitris Michailidisba278162010-12-14 21:36:50 +0000764 for_each_ofldrxq(&adap->sge, i)
765 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-ofld%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000766 adap->port[0]->name, i);
Dimitris Michailidisba278162010-12-14 21:36:50 +0000767
768 for_each_rdmarxq(&adap->sge, i)
769 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000770 adap->port[0]->name, i);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530771
772 for_each_rdmaciq(&adap->sge, i)
773 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma-ciq%d",
774 adap->port[0]->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000775}
776
777static int request_msix_queue_irqs(struct adapter *adap)
778{
779 struct sge *s = &adap->sge;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530780 int err, ethqidx, ofldqidx = 0, rdmaqidx = 0, rdmaciqqidx = 0;
781 int msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000782
783 err = request_irq(adap->msix_info[1].vec, t4_sge_intr_msix, 0,
784 adap->msix_info[1].desc, &s->fw_evtq);
785 if (err)
786 return err;
787
788 for_each_ethrxq(s, ethqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000789 err = request_irq(adap->msix_info[msi_index].vec,
790 t4_sge_intr_msix, 0,
791 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000792 &s->ethrxq[ethqidx].rspq);
793 if (err)
794 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000795 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000796 }
797 for_each_ofldrxq(s, ofldqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000798 err = request_irq(adap->msix_info[msi_index].vec,
799 t4_sge_intr_msix, 0,
800 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000801 &s->ofldrxq[ofldqidx].rspq);
802 if (err)
803 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000804 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000805 }
806 for_each_rdmarxq(s, rdmaqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000807 err = request_irq(adap->msix_info[msi_index].vec,
808 t4_sge_intr_msix, 0,
809 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000810 &s->rdmarxq[rdmaqidx].rspq);
811 if (err)
812 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000813 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000814 }
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530815 for_each_rdmaciq(s, rdmaciqqidx) {
816 err = request_irq(adap->msix_info[msi_index].vec,
817 t4_sge_intr_msix, 0,
818 adap->msix_info[msi_index].desc,
819 &s->rdmaciq[rdmaciqqidx].rspq);
820 if (err)
821 goto unwind;
822 msi_index++;
823 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000824 return 0;
825
826unwind:
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530827 while (--rdmaciqqidx >= 0)
828 free_irq(adap->msix_info[--msi_index].vec,
829 &s->rdmaciq[rdmaciqqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000830 while (--rdmaqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000831 free_irq(adap->msix_info[--msi_index].vec,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000832 &s->rdmarxq[rdmaqidx].rspq);
833 while (--ofldqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000834 free_irq(adap->msix_info[--msi_index].vec,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000835 &s->ofldrxq[ofldqidx].rspq);
836 while (--ethqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000837 free_irq(adap->msix_info[--msi_index].vec,
838 &s->ethrxq[ethqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000839 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
840 return err;
841}
842
843static void free_msix_queue_irqs(struct adapter *adap)
844{
Vipul Pandya404d9e32012-10-08 02:59:43 +0000845 int i, msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000846 struct sge *s = &adap->sge;
847
848 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
849 for_each_ethrxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000850 free_irq(adap->msix_info[msi_index++].vec, &s->ethrxq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000851 for_each_ofldrxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000852 free_irq(adap->msix_info[msi_index++].vec, &s->ofldrxq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000853 for_each_rdmarxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +0000854 free_irq(adap->msix_info[msi_index++].vec, &s->rdmarxq[i].rspq);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530855 for_each_rdmaciq(s, i)
856 free_irq(adap->msix_info[msi_index++].vec, &s->rdmaciq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000857}
858
859/**
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000860 * write_rss - write the RSS table for a given port
861 * @pi: the port
862 * @queues: array of queue indices for RSS
863 *
864 * Sets up the portion of the HW RSS table for the port's VI to distribute
865 * packets to the Rx queues in @queues.
866 */
867static int write_rss(const struct port_info *pi, const u16 *queues)
868{
869 u16 *rss;
870 int i, err;
871 const struct sge_eth_rxq *q = &pi->adapter->sge.ethrxq[pi->first_qset];
872
873 rss = kmalloc(pi->rss_size * sizeof(u16), GFP_KERNEL);
874 if (!rss)
875 return -ENOMEM;
876
877 /* map the queue indices to queue ids */
878 for (i = 0; i < pi->rss_size; i++, queues++)
879 rss[i] = q[*queues].rspq.abs_id;
880
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000881 err = t4_config_rss_range(pi->adapter, pi->adapter->fn, pi->viid, 0,
882 pi->rss_size, rss, pi->rss_size);
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000883 kfree(rss);
884 return err;
885}
886
887/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000888 * setup_rss - configure RSS
889 * @adap: the adapter
890 *
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000891 * Sets up RSS for each port.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000892 */
893static int setup_rss(struct adapter *adap)
894{
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000895 int i, err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000896
897 for_each_port(adap, i) {
898 const struct port_info *pi = adap2pinfo(adap, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000899
Dimitris Michailidis671b0062010-07-11 12:01:17 +0000900 err = write_rss(pi, pi->rss);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000901 if (err)
902 return err;
903 }
904 return 0;
905}
906
907/*
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000908 * Return the channel of the ingress queue with the given qid.
909 */
910static unsigned int rxq_to_chan(const struct sge *p, unsigned int qid)
911{
912 qid -= p->ingr_start;
913 return netdev2pinfo(p->ingr_map[qid]->netdev)->tx_chan;
914}
915
916/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000917 * Wait until all NAPI handlers are descheduled.
918 */
919static void quiesce_rx(struct adapter *adap)
920{
921 int i;
922
923 for (i = 0; i < ARRAY_SIZE(adap->sge.ingr_map); i++) {
924 struct sge_rspq *q = adap->sge.ingr_map[i];
925
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530926 if (q && q->handler) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000927 napi_disable(&q->napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530928 local_bh_disable();
929 while (!cxgb_poll_lock_napi(q))
930 mdelay(1);
931 local_bh_enable();
932 }
933
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000934 }
935}
936
937/*
938 * Enable NAPI scheduling and interrupt generation for all Rx queues.
939 */
940static void enable_rx(struct adapter *adap)
941{
942 int i;
943
944 for (i = 0; i < ARRAY_SIZE(adap->sge.ingr_map); i++) {
945 struct sge_rspq *q = adap->sge.ingr_map[i];
946
947 if (!q)
948 continue;
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530949 if (q->handler) {
950 cxgb_busy_poll_init_lock(q);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000951 napi_enable(&q->napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +0530952 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000953 /* 0-increment GTS to start the timer and enable interrupts */
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530954 t4_write_reg(adap, MYPF_REG(SGE_PF_GTS_A),
955 SEINTARM_V(q->intr_params) |
956 INGRESSQID_V(q->cntxt_id));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000957 }
958}
959
960/**
961 * setup_sge_queues - configure SGE Tx/Rx/response queues
962 * @adap: the adapter
963 *
964 * Determines how many sets of SGE queues to use and initializes them.
965 * We support multiple queue sets per port if we have MSI-X, otherwise
966 * just one queue set per port.
967 */
968static int setup_sge_queues(struct adapter *adap)
969{
970 int err, msi_idx, i, j;
971 struct sge *s = &adap->sge;
972
973 bitmap_zero(s->starving_fl, MAX_EGRQ);
974 bitmap_zero(s->txq_maperr, MAX_EGRQ);
975
976 if (adap->flags & USING_MSIX)
977 msi_idx = 1; /* vector 0 is for non-queue interrupts */
978 else {
979 err = t4_sge_alloc_rxq(adap, &s->intrq, false, adap->port[0], 0,
980 NULL, NULL);
981 if (err)
982 return err;
983 msi_idx = -((int)s->intrq.abs_id + 1);
984 }
985
986 err = t4_sge_alloc_rxq(adap, &s->fw_evtq, true, adap->port[0],
987 msi_idx, NULL, fwevtq_handler);
988 if (err) {
989freeout: t4_free_sge_resources(adap);
990 return err;
991 }
992
993 for_each_port(adap, i) {
994 struct net_device *dev = adap->port[i];
995 struct port_info *pi = netdev_priv(dev);
996 struct sge_eth_rxq *q = &s->ethrxq[pi->first_qset];
997 struct sge_eth_txq *t = &s->ethtxq[pi->first_qset];
998
999 for (j = 0; j < pi->nqsets; j++, q++) {
1000 if (msi_idx > 0)
1001 msi_idx++;
1002 err = t4_sge_alloc_rxq(adap, &q->rspq, false, dev,
1003 msi_idx, &q->fl,
1004 t4_ethrx_handler);
1005 if (err)
1006 goto freeout;
1007 q->rspq.idx = j;
1008 memset(&q->stats, 0, sizeof(q->stats));
1009 }
1010 for (j = 0; j < pi->nqsets; j++, t++) {
1011 err = t4_sge_alloc_eth_txq(adap, t, dev,
1012 netdev_get_tx_queue(dev, j),
1013 s->fw_evtq.cntxt_id);
1014 if (err)
1015 goto freeout;
1016 }
1017 }
1018
1019 j = s->ofldqsets / adap->params.nports; /* ofld queues per channel */
1020 for_each_ofldrxq(s, i) {
1021 struct sge_ofld_rxq *q = &s->ofldrxq[i];
1022 struct net_device *dev = adap->port[i / j];
1023
1024 if (msi_idx > 0)
1025 msi_idx++;
1026 err = t4_sge_alloc_rxq(adap, &q->rspq, false, dev, msi_idx,
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301027 q->fl.size ? &q->fl : NULL,
1028 uldrx_handler);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001029 if (err)
1030 goto freeout;
1031 memset(&q->stats, 0, sizeof(q->stats));
1032 s->ofld_rxq[i] = q->rspq.abs_id;
1033 err = t4_sge_alloc_ofld_txq(adap, &s->ofldtxq[i], dev,
1034 s->fw_evtq.cntxt_id);
1035 if (err)
1036 goto freeout;
1037 }
1038
1039 for_each_rdmarxq(s, i) {
1040 struct sge_ofld_rxq *q = &s->rdmarxq[i];
1041
1042 if (msi_idx > 0)
1043 msi_idx++;
1044 err = t4_sge_alloc_rxq(adap, &q->rspq, false, adap->port[i],
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301045 msi_idx, q->fl.size ? &q->fl : NULL,
1046 uldrx_handler);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001047 if (err)
1048 goto freeout;
1049 memset(&q->stats, 0, sizeof(q->stats));
1050 s->rdma_rxq[i] = q->rspq.abs_id;
1051 }
1052
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301053 for_each_rdmaciq(s, i) {
1054 struct sge_ofld_rxq *q = &s->rdmaciq[i];
1055
1056 if (msi_idx > 0)
1057 msi_idx++;
1058 err = t4_sge_alloc_rxq(adap, &q->rspq, false, adap->port[i],
1059 msi_idx, q->fl.size ? &q->fl : NULL,
1060 uldrx_handler);
1061 if (err)
1062 goto freeout;
1063 memset(&q->stats, 0, sizeof(q->stats));
1064 s->rdma_ciq[i] = q->rspq.abs_id;
1065 }
1066
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001067 for_each_port(adap, i) {
1068 /*
1069 * Note that ->rdmarxq[i].rspq.cntxt_id below is 0 if we don't
1070 * have RDMA queues, and that's the right value.
1071 */
1072 err = t4_sge_alloc_ctrl_txq(adap, &s->ctrlq[i], adap->port[i],
1073 s->fw_evtq.cntxt_id,
1074 s->rdmarxq[i].rspq.cntxt_id);
1075 if (err)
1076 goto freeout;
1077 }
1078
Hariprasad Shenai9bb59b92014-09-01 19:54:57 +05301079 t4_write_reg(adap, is_t4(adap->params.chip) ?
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05301080 MPS_TRC_RSS_CONTROL_A :
1081 MPS_T5_TRC_RSS_CONTROL_A,
1082 RSSCONTROL_V(netdev2pinfo(adap->port[0])->tx_chan) |
1083 QUEUENUMBER_V(s->ethrxq[0].rspq.abs_id));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001084 return 0;
1085}
1086
1087/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001088 * Allocate a chunk of memory using kmalloc or, if that fails, vmalloc.
1089 * The allocated memory is cleared.
1090 */
1091void *t4_alloc_mem(size_t size)
1092{
Joe Perches8be04b92013-06-19 12:15:53 -07001093 void *p = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001094
1095 if (!p)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001096 p = vzalloc(size);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001097 return p;
1098}
1099
1100/*
1101 * Free memory allocated through alloc_mem().
1102 */
Hariprasad Shenaifd88b312014-11-07 09:35:23 +05301103void t4_free_mem(void *addr)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001104{
1105 if (is_vmalloc_addr(addr))
1106 vfree(addr);
1107 else
1108 kfree(addr);
1109}
1110
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001111/* Send a Work Request to write the filter at a specified index. We construct
1112 * a Firmware Filter Work Request to have the work done and put the indicated
1113 * filter into "pending" mode which will prevent any further actions against
1114 * it till we get a reply from the firmware on the completion status of the
1115 * request.
1116 */
1117static int set_filter_wr(struct adapter *adapter, int fidx)
1118{
1119 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1120 struct sk_buff *skb;
1121 struct fw_filter_wr *fwr;
1122 unsigned int ftid;
1123
1124 /* If the new filter requires loopback Destination MAC and/or VLAN
1125 * rewriting then we need to allocate a Layer 2 Table (L2T) entry for
1126 * the filter.
1127 */
1128 if (f->fs.newdmac || f->fs.newvlan) {
1129 /* allocate L2T entry for new filter */
1130 f->l2t = t4_l2t_alloc_switching(adapter->l2t);
1131 if (f->l2t == NULL)
1132 return -EAGAIN;
1133 if (t4_l2t_set_switching(adapter, f->l2t, f->fs.vlan,
1134 f->fs.eport, f->fs.dmac)) {
1135 cxgb4_l2t_release(f->l2t);
1136 f->l2t = NULL;
1137 return -ENOMEM;
1138 }
1139 }
1140
1141 ftid = adapter->tids.ftid_base + fidx;
1142
1143 skb = alloc_skb(sizeof(*fwr), GFP_KERNEL | __GFP_NOFAIL);
1144 fwr = (struct fw_filter_wr *)__skb_put(skb, sizeof(*fwr));
1145 memset(fwr, 0, sizeof(*fwr));
1146
1147 /* It would be nice to put most of the following in t4_hw.c but most
1148 * of the work is translating the cxgbtool ch_filter_specification
1149 * into the Work Request and the definition of that structure is
1150 * currently in cxgbtool.h which isn't appropriate to pull into the
1151 * common code. We may eventually try to come up with a more neutral
1152 * filter specification structure but for now it's easiest to simply
1153 * put this fairly direct code in line ...
1154 */
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301155 fwr->op_pkd = htonl(FW_WR_OP_V(FW_FILTER_WR));
1156 fwr->len16_pkd = htonl(FW_WR_LEN16_V(sizeof(*fwr)/16));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001157 fwr->tid_to_iq =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301158 htonl(FW_FILTER_WR_TID_V(ftid) |
1159 FW_FILTER_WR_RQTYPE_V(f->fs.type) |
1160 FW_FILTER_WR_NOREPLY_V(0) |
1161 FW_FILTER_WR_IQ_V(f->fs.iq));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001162 fwr->del_filter_to_l2tix =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301163 htonl(FW_FILTER_WR_RPTTID_V(f->fs.rpttid) |
1164 FW_FILTER_WR_DROP_V(f->fs.action == FILTER_DROP) |
1165 FW_FILTER_WR_DIRSTEER_V(f->fs.dirsteer) |
1166 FW_FILTER_WR_MASKHASH_V(f->fs.maskhash) |
1167 FW_FILTER_WR_DIRSTEERHASH_V(f->fs.dirsteerhash) |
1168 FW_FILTER_WR_LPBK_V(f->fs.action == FILTER_SWITCH) |
1169 FW_FILTER_WR_DMAC_V(f->fs.newdmac) |
1170 FW_FILTER_WR_SMAC_V(f->fs.newsmac) |
1171 FW_FILTER_WR_INSVLAN_V(f->fs.newvlan == VLAN_INSERT ||
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001172 f->fs.newvlan == VLAN_REWRITE) |
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301173 FW_FILTER_WR_RMVLAN_V(f->fs.newvlan == VLAN_REMOVE ||
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001174 f->fs.newvlan == VLAN_REWRITE) |
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301175 FW_FILTER_WR_HITCNTS_V(f->fs.hitcnts) |
1176 FW_FILTER_WR_TXCHAN_V(f->fs.eport) |
1177 FW_FILTER_WR_PRIO_V(f->fs.prio) |
1178 FW_FILTER_WR_L2TIX_V(f->l2t ? f->l2t->idx : 0));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001179 fwr->ethtype = htons(f->fs.val.ethtype);
1180 fwr->ethtypem = htons(f->fs.mask.ethtype);
1181 fwr->frag_to_ovlan_vldm =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301182 (FW_FILTER_WR_FRAG_V(f->fs.val.frag) |
1183 FW_FILTER_WR_FRAGM_V(f->fs.mask.frag) |
1184 FW_FILTER_WR_IVLAN_VLD_V(f->fs.val.ivlan_vld) |
1185 FW_FILTER_WR_OVLAN_VLD_V(f->fs.val.ovlan_vld) |
1186 FW_FILTER_WR_IVLAN_VLDM_V(f->fs.mask.ivlan_vld) |
1187 FW_FILTER_WR_OVLAN_VLDM_V(f->fs.mask.ovlan_vld));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001188 fwr->smac_sel = 0;
1189 fwr->rx_chan_rx_rpl_iq =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301190 htons(FW_FILTER_WR_RX_CHAN_V(0) |
1191 FW_FILTER_WR_RX_RPL_IQ_V(adapter->sge.fw_evtq.abs_id));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001192 fwr->maci_to_matchtypem =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301193 htonl(FW_FILTER_WR_MACI_V(f->fs.val.macidx) |
1194 FW_FILTER_WR_MACIM_V(f->fs.mask.macidx) |
1195 FW_FILTER_WR_FCOE_V(f->fs.val.fcoe) |
1196 FW_FILTER_WR_FCOEM_V(f->fs.mask.fcoe) |
1197 FW_FILTER_WR_PORT_V(f->fs.val.iport) |
1198 FW_FILTER_WR_PORTM_V(f->fs.mask.iport) |
1199 FW_FILTER_WR_MATCHTYPE_V(f->fs.val.matchtype) |
1200 FW_FILTER_WR_MATCHTYPEM_V(f->fs.mask.matchtype));
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001201 fwr->ptcl = f->fs.val.proto;
1202 fwr->ptclm = f->fs.mask.proto;
1203 fwr->ttyp = f->fs.val.tos;
1204 fwr->ttypm = f->fs.mask.tos;
1205 fwr->ivlan = htons(f->fs.val.ivlan);
1206 fwr->ivlanm = htons(f->fs.mask.ivlan);
1207 fwr->ovlan = htons(f->fs.val.ovlan);
1208 fwr->ovlanm = htons(f->fs.mask.ovlan);
1209 memcpy(fwr->lip, f->fs.val.lip, sizeof(fwr->lip));
1210 memcpy(fwr->lipm, f->fs.mask.lip, sizeof(fwr->lipm));
1211 memcpy(fwr->fip, f->fs.val.fip, sizeof(fwr->fip));
1212 memcpy(fwr->fipm, f->fs.mask.fip, sizeof(fwr->fipm));
1213 fwr->lp = htons(f->fs.val.lport);
1214 fwr->lpm = htons(f->fs.mask.lport);
1215 fwr->fp = htons(f->fs.val.fport);
1216 fwr->fpm = htons(f->fs.mask.fport);
1217 if (f->fs.newsmac)
1218 memcpy(fwr->sma, f->fs.smac, sizeof(fwr->sma));
1219
1220 /* Mark the filter as "pending" and ship off the Filter Work Request.
1221 * When we get the Work Request Reply we'll clear the pending status.
1222 */
1223 f->pending = 1;
1224 set_wr_txq(skb, CPL_PRIORITY_CONTROL, f->fs.val.iport & 0x3);
1225 t4_ofld_send(adapter, skb);
1226 return 0;
1227}
1228
1229/* Delete the filter at a specified index.
1230 */
1231static int del_filter_wr(struct adapter *adapter, int fidx)
1232{
1233 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1234 struct sk_buff *skb;
1235 struct fw_filter_wr *fwr;
1236 unsigned int len, ftid;
1237
1238 len = sizeof(*fwr);
1239 ftid = adapter->tids.ftid_base + fidx;
1240
1241 skb = alloc_skb(len, GFP_KERNEL | __GFP_NOFAIL);
1242 fwr = (struct fw_filter_wr *)__skb_put(skb, len);
1243 t4_mk_filtdelwr(ftid, fwr, adapter->sge.fw_evtq.abs_id);
1244
1245 /* Mark the filter as "pending" and ship off the Filter Work Request.
1246 * When we get the Work Request Reply we'll clear the pending status.
1247 */
1248 f->pending = 1;
1249 t4_mgmt_tx(adapter, skb);
1250 return 0;
1251}
1252
Anish Bhatt688848b2014-06-19 21:37:13 -07001253static u16 cxgb_select_queue(struct net_device *dev, struct sk_buff *skb,
1254 void *accel_priv, select_queue_fallback_t fallback)
1255{
1256 int txq;
1257
1258#ifdef CONFIG_CHELSIO_T4_DCB
1259 /* If a Data Center Bridging has been successfully negotiated on this
1260 * link then we'll use the skb's priority to map it to a TX Queue.
1261 * The skb's priority is determined via the VLAN Tag Priority Code
1262 * Point field.
1263 */
1264 if (cxgb4_dcb_enabled(dev)) {
1265 u16 vlan_tci;
1266 int err;
1267
1268 err = vlan_get_tag(skb, &vlan_tci);
1269 if (unlikely(err)) {
1270 if (net_ratelimit())
1271 netdev_warn(dev,
1272 "TX Packet without VLAN Tag on DCB Link\n");
1273 txq = 0;
1274 } else {
1275 txq = (vlan_tci & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
1276 }
1277 return txq;
1278 }
1279#endif /* CONFIG_CHELSIO_T4_DCB */
1280
1281 if (select_queue) {
1282 txq = (skb_rx_queue_recorded(skb)
1283 ? skb_get_rx_queue(skb)
1284 : smp_processor_id());
1285
1286 while (unlikely(txq >= dev->real_num_tx_queues))
1287 txq -= dev->real_num_tx_queues;
1288
1289 return txq;
1290 }
1291
1292 return fallback(dev, skb) % dev->real_num_tx_queues;
1293}
1294
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001295static inline int is_offload(const struct adapter *adap)
1296{
1297 return adap->params.offload;
1298}
1299
1300/*
1301 * Implementation of ethtool operations.
1302 */
1303
1304static u32 get_msglevel(struct net_device *dev)
1305{
1306 return netdev2adap(dev)->msg_enable;
1307}
1308
1309static void set_msglevel(struct net_device *dev, u32 val)
1310{
1311 netdev2adap(dev)->msg_enable = val;
1312}
1313
1314static char stats_strings[][ETH_GSTRING_LEN] = {
1315 "TxOctetsOK ",
1316 "TxFramesOK ",
1317 "TxBroadcastFrames ",
1318 "TxMulticastFrames ",
1319 "TxUnicastFrames ",
1320 "TxErrorFrames ",
1321
1322 "TxFrames64 ",
1323 "TxFrames65To127 ",
1324 "TxFrames128To255 ",
1325 "TxFrames256To511 ",
1326 "TxFrames512To1023 ",
1327 "TxFrames1024To1518 ",
1328 "TxFrames1519ToMax ",
1329
1330 "TxFramesDropped ",
1331 "TxPauseFrames ",
1332 "TxPPP0Frames ",
1333 "TxPPP1Frames ",
1334 "TxPPP2Frames ",
1335 "TxPPP3Frames ",
1336 "TxPPP4Frames ",
1337 "TxPPP5Frames ",
1338 "TxPPP6Frames ",
1339 "TxPPP7Frames ",
1340
1341 "RxOctetsOK ",
1342 "RxFramesOK ",
1343 "RxBroadcastFrames ",
1344 "RxMulticastFrames ",
1345 "RxUnicastFrames ",
1346
1347 "RxFramesTooLong ",
1348 "RxJabberErrors ",
1349 "RxFCSErrors ",
1350 "RxLengthErrors ",
1351 "RxSymbolErrors ",
1352 "RxRuntFrames ",
1353
1354 "RxFrames64 ",
1355 "RxFrames65To127 ",
1356 "RxFrames128To255 ",
1357 "RxFrames256To511 ",
1358 "RxFrames512To1023 ",
1359 "RxFrames1024To1518 ",
1360 "RxFrames1519ToMax ",
1361
1362 "RxPauseFrames ",
1363 "RxPPP0Frames ",
1364 "RxPPP1Frames ",
1365 "RxPPP2Frames ",
1366 "RxPPP3Frames ",
1367 "RxPPP4Frames ",
1368 "RxPPP5Frames ",
1369 "RxPPP6Frames ",
1370 "RxPPP7Frames ",
1371
1372 "RxBG0FramesDropped ",
1373 "RxBG1FramesDropped ",
1374 "RxBG2FramesDropped ",
1375 "RxBG3FramesDropped ",
1376 "RxBG0FramesTrunc ",
1377 "RxBG1FramesTrunc ",
1378 "RxBG2FramesTrunc ",
1379 "RxBG3FramesTrunc ",
1380
1381 "TSO ",
1382 "TxCsumOffload ",
1383 "RxCsumGood ",
1384 "VLANextractions ",
1385 "VLANinsertions ",
Dimitris Michailidis4a6346d2010-05-10 15:58:09 +00001386 "GROpackets ",
1387 "GROmerged ",
Santosh Rastapur22adfe02013-03-14 05:08:51 +00001388 "WriteCoalSuccess ",
1389 "WriteCoalFail ",
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001390};
1391
1392static int get_sset_count(struct net_device *dev, int sset)
1393{
1394 switch (sset) {
1395 case ETH_SS_STATS:
1396 return ARRAY_SIZE(stats_strings);
1397 default:
1398 return -EOPNOTSUPP;
1399 }
1400}
1401
1402#define T4_REGMAP_SIZE (160 * 1024)
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001403#define T5_REGMAP_SIZE (332 * 1024)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001404
1405static int get_regs_len(struct net_device *dev)
1406{
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001407 struct adapter *adap = netdev2adap(dev);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301408 if (is_t4(adap->params.chip))
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001409 return T4_REGMAP_SIZE;
1410 else
1411 return T5_REGMAP_SIZE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001412}
1413
1414static int get_eeprom_len(struct net_device *dev)
1415{
1416 return EEPROMSIZE;
1417}
1418
1419static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1420{
1421 struct adapter *adapter = netdev2adap(dev);
1422
Rick Jones23020ab2011-11-09 09:58:07 +00001423 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1424 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1425 strlcpy(info->bus_info, pci_name(adapter->pdev),
1426 sizeof(info->bus_info));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001427
Rick Jones84b40502011-11-21 10:54:05 +00001428 if (adapter->params.fw_vers)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001429 snprintf(info->fw_version, sizeof(info->fw_version),
1430 "%u.%u.%u.%u, TP %u.%u.%u.%u",
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05301431 FW_HDR_FW_VER_MAJOR_G(adapter->params.fw_vers),
1432 FW_HDR_FW_VER_MINOR_G(adapter->params.fw_vers),
1433 FW_HDR_FW_VER_MICRO_G(adapter->params.fw_vers),
1434 FW_HDR_FW_VER_BUILD_G(adapter->params.fw_vers),
1435 FW_HDR_FW_VER_MAJOR_G(adapter->params.tp_vers),
1436 FW_HDR_FW_VER_MINOR_G(adapter->params.tp_vers),
1437 FW_HDR_FW_VER_MICRO_G(adapter->params.tp_vers),
1438 FW_HDR_FW_VER_BUILD_G(adapter->params.tp_vers));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001439}
1440
1441static void get_strings(struct net_device *dev, u32 stringset, u8 *data)
1442{
1443 if (stringset == ETH_SS_STATS)
1444 memcpy(data, stats_strings, sizeof(stats_strings));
1445}
1446
1447/*
1448 * port stats maintained per queue of the port. They should be in the same
1449 * order as in stats_strings above.
1450 */
1451struct queue_port_stats {
1452 u64 tso;
1453 u64 tx_csum;
1454 u64 rx_csum;
1455 u64 vlan_ex;
1456 u64 vlan_ins;
Dimitris Michailidis4a6346d2010-05-10 15:58:09 +00001457 u64 gro_pkts;
1458 u64 gro_merged;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001459};
1460
1461static void collect_sge_port_stats(const struct adapter *adap,
1462 const struct port_info *p, struct queue_port_stats *s)
1463{
1464 int i;
1465 const struct sge_eth_txq *tx = &adap->sge.ethtxq[p->first_qset];
1466 const struct sge_eth_rxq *rx = &adap->sge.ethrxq[p->first_qset];
1467
1468 memset(s, 0, sizeof(*s));
1469 for (i = 0; i < p->nqsets; i++, rx++, tx++) {
1470 s->tso += tx->tso;
1471 s->tx_csum += tx->tx_cso;
1472 s->rx_csum += rx->stats.rx_cso;
1473 s->vlan_ex += rx->stats.vlan_ex;
1474 s->vlan_ins += tx->vlan_ins;
Dimitris Michailidis4a6346d2010-05-10 15:58:09 +00001475 s->gro_pkts += rx->stats.lro_pkts;
1476 s->gro_merged += rx->stats.lro_merged;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001477 }
1478}
1479
1480static void get_stats(struct net_device *dev, struct ethtool_stats *stats,
1481 u64 *data)
1482{
1483 struct port_info *pi = netdev_priv(dev);
1484 struct adapter *adapter = pi->adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00001485 u32 val1, val2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001486
1487 t4_get_port_stats(adapter, pi->tx_chan, (struct port_stats *)data);
1488
1489 data += sizeof(struct port_stats) / sizeof(u64);
1490 collect_sge_port_stats(adapter, pi, (struct queue_port_stats *)data);
Santosh Rastapur22adfe02013-03-14 05:08:51 +00001491 data += sizeof(struct queue_port_stats) / sizeof(u64);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301492 if (!is_t4(adapter->params.chip)) {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05301493 t4_write_reg(adapter, SGE_STAT_CFG_A, STATSOURCE_T5_V(7));
1494 val1 = t4_read_reg(adapter, SGE_STAT_TOTAL_A);
1495 val2 = t4_read_reg(adapter, SGE_STAT_MATCH_A);
Santosh Rastapur22adfe02013-03-14 05:08:51 +00001496 *data = val1 - val2;
1497 data++;
1498 *data = val2;
1499 data++;
1500 } else {
1501 memset(data, 0, 2 * sizeof(u64));
1502 *data += 2;
1503 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001504}
1505
1506/*
1507 * Return a version number to identify the type of adapter. The scheme is:
1508 * - bits 0..9: chip version
1509 * - bits 10..15: chip revision
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001510 * - bits 16..23: register dump version
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001511 */
1512static inline unsigned int mk_adap_vers(const struct adapter *ap)
1513{
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301514 return CHELSIO_CHIP_VERSION(ap->params.chip) |
1515 (CHELSIO_CHIP_RELEASE(ap->params.chip) << 10) | (1 << 16);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001516}
1517
1518static void reg_block_dump(struct adapter *ap, void *buf, unsigned int start,
1519 unsigned int end)
1520{
1521 u32 *p = buf + start;
1522
1523 for ( ; start <= end; start += sizeof(u32))
1524 *p++ = t4_read_reg(ap, start);
1525}
1526
1527static void get_regs(struct net_device *dev, struct ethtool_regs *regs,
1528 void *buf)
1529{
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001530 static const unsigned int t4_reg_ranges[] = {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001531 0x1008, 0x1108,
1532 0x1180, 0x11b4,
1533 0x11fc, 0x123c,
1534 0x1300, 0x173c,
1535 0x1800, 0x18fc,
1536 0x3000, 0x30d8,
1537 0x30e0, 0x5924,
1538 0x5960, 0x59d4,
1539 0x5a00, 0x5af8,
1540 0x6000, 0x6098,
1541 0x6100, 0x6150,
1542 0x6200, 0x6208,
1543 0x6240, 0x6248,
1544 0x6280, 0x6338,
1545 0x6370, 0x638c,
1546 0x6400, 0x643c,
1547 0x6500, 0x6524,
1548 0x6a00, 0x6a38,
1549 0x6a60, 0x6a78,
1550 0x6b00, 0x6b84,
1551 0x6bf0, 0x6c84,
1552 0x6cf0, 0x6d84,
1553 0x6df0, 0x6e84,
1554 0x6ef0, 0x6f84,
1555 0x6ff0, 0x7084,
1556 0x70f0, 0x7184,
1557 0x71f0, 0x7284,
1558 0x72f0, 0x7384,
1559 0x73f0, 0x7450,
1560 0x7500, 0x7530,
1561 0x7600, 0x761c,
1562 0x7680, 0x76cc,
1563 0x7700, 0x7798,
1564 0x77c0, 0x77fc,
1565 0x7900, 0x79fc,
1566 0x7b00, 0x7c38,
1567 0x7d00, 0x7efc,
1568 0x8dc0, 0x8e1c,
1569 0x8e30, 0x8e78,
1570 0x8ea0, 0x8f6c,
1571 0x8fc0, 0x9074,
1572 0x90fc, 0x90fc,
1573 0x9400, 0x9458,
1574 0x9600, 0x96bc,
1575 0x9800, 0x9808,
1576 0x9820, 0x983c,
1577 0x9850, 0x9864,
1578 0x9c00, 0x9c6c,
1579 0x9c80, 0x9cec,
1580 0x9d00, 0x9d6c,
1581 0x9d80, 0x9dec,
1582 0x9e00, 0x9e6c,
1583 0x9e80, 0x9eec,
1584 0x9f00, 0x9f6c,
1585 0x9f80, 0x9fec,
1586 0xd004, 0xd03c,
1587 0xdfc0, 0xdfe0,
1588 0xe000, 0xea7c,
Hariprasad Shenai3d9103f2014-09-01 19:54:59 +05301589 0xf000, 0x11110,
1590 0x11118, 0x11190,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001591 0x19040, 0x1906c,
1592 0x19078, 0x19080,
1593 0x1908c, 0x19124,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001594 0x19150, 0x191b0,
1595 0x191d0, 0x191e8,
1596 0x19238, 0x1924c,
1597 0x193f8, 0x19474,
1598 0x19490, 0x194f8,
1599 0x19800, 0x19f30,
1600 0x1a000, 0x1a06c,
1601 0x1a0b0, 0x1a120,
1602 0x1a128, 0x1a138,
1603 0x1a190, 0x1a1c4,
1604 0x1a1fc, 0x1a1fc,
1605 0x1e040, 0x1e04c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001606 0x1e284, 0x1e28c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001607 0x1e2c0, 0x1e2c0,
1608 0x1e2e0, 0x1e2e0,
1609 0x1e300, 0x1e384,
1610 0x1e3c0, 0x1e3c8,
1611 0x1e440, 0x1e44c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001612 0x1e684, 0x1e68c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001613 0x1e6c0, 0x1e6c0,
1614 0x1e6e0, 0x1e6e0,
1615 0x1e700, 0x1e784,
1616 0x1e7c0, 0x1e7c8,
1617 0x1e840, 0x1e84c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001618 0x1ea84, 0x1ea8c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001619 0x1eac0, 0x1eac0,
1620 0x1eae0, 0x1eae0,
1621 0x1eb00, 0x1eb84,
1622 0x1ebc0, 0x1ebc8,
1623 0x1ec40, 0x1ec4c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001624 0x1ee84, 0x1ee8c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001625 0x1eec0, 0x1eec0,
1626 0x1eee0, 0x1eee0,
1627 0x1ef00, 0x1ef84,
1628 0x1efc0, 0x1efc8,
1629 0x1f040, 0x1f04c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001630 0x1f284, 0x1f28c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001631 0x1f2c0, 0x1f2c0,
1632 0x1f2e0, 0x1f2e0,
1633 0x1f300, 0x1f384,
1634 0x1f3c0, 0x1f3c8,
1635 0x1f440, 0x1f44c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001636 0x1f684, 0x1f68c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001637 0x1f6c0, 0x1f6c0,
1638 0x1f6e0, 0x1f6e0,
1639 0x1f700, 0x1f784,
1640 0x1f7c0, 0x1f7c8,
1641 0x1f840, 0x1f84c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001642 0x1fa84, 0x1fa8c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001643 0x1fac0, 0x1fac0,
1644 0x1fae0, 0x1fae0,
1645 0x1fb00, 0x1fb84,
1646 0x1fbc0, 0x1fbc8,
1647 0x1fc40, 0x1fc4c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001648 0x1fe84, 0x1fe8c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001649 0x1fec0, 0x1fec0,
1650 0x1fee0, 0x1fee0,
1651 0x1ff00, 0x1ff84,
1652 0x1ffc0, 0x1ffc8,
1653 0x20000, 0x2002c,
1654 0x20100, 0x2013c,
1655 0x20190, 0x201c8,
1656 0x20200, 0x20318,
1657 0x20400, 0x20528,
1658 0x20540, 0x20614,
1659 0x21000, 0x21040,
1660 0x2104c, 0x21060,
1661 0x210c0, 0x210ec,
1662 0x21200, 0x21268,
1663 0x21270, 0x21284,
1664 0x212fc, 0x21388,
1665 0x21400, 0x21404,
1666 0x21500, 0x21518,
1667 0x2152c, 0x2153c,
1668 0x21550, 0x21554,
1669 0x21600, 0x21600,
1670 0x21608, 0x21628,
1671 0x21630, 0x2163c,
1672 0x21700, 0x2171c,
1673 0x21780, 0x2178c,
1674 0x21800, 0x21c38,
1675 0x21c80, 0x21d7c,
1676 0x21e00, 0x21e04,
1677 0x22000, 0x2202c,
1678 0x22100, 0x2213c,
1679 0x22190, 0x221c8,
1680 0x22200, 0x22318,
1681 0x22400, 0x22528,
1682 0x22540, 0x22614,
1683 0x23000, 0x23040,
1684 0x2304c, 0x23060,
1685 0x230c0, 0x230ec,
1686 0x23200, 0x23268,
1687 0x23270, 0x23284,
1688 0x232fc, 0x23388,
1689 0x23400, 0x23404,
1690 0x23500, 0x23518,
1691 0x2352c, 0x2353c,
1692 0x23550, 0x23554,
1693 0x23600, 0x23600,
1694 0x23608, 0x23628,
1695 0x23630, 0x2363c,
1696 0x23700, 0x2371c,
1697 0x23780, 0x2378c,
1698 0x23800, 0x23c38,
1699 0x23c80, 0x23d7c,
1700 0x23e00, 0x23e04,
1701 0x24000, 0x2402c,
1702 0x24100, 0x2413c,
1703 0x24190, 0x241c8,
1704 0x24200, 0x24318,
1705 0x24400, 0x24528,
1706 0x24540, 0x24614,
1707 0x25000, 0x25040,
1708 0x2504c, 0x25060,
1709 0x250c0, 0x250ec,
1710 0x25200, 0x25268,
1711 0x25270, 0x25284,
1712 0x252fc, 0x25388,
1713 0x25400, 0x25404,
1714 0x25500, 0x25518,
1715 0x2552c, 0x2553c,
1716 0x25550, 0x25554,
1717 0x25600, 0x25600,
1718 0x25608, 0x25628,
1719 0x25630, 0x2563c,
1720 0x25700, 0x2571c,
1721 0x25780, 0x2578c,
1722 0x25800, 0x25c38,
1723 0x25c80, 0x25d7c,
1724 0x25e00, 0x25e04,
1725 0x26000, 0x2602c,
1726 0x26100, 0x2613c,
1727 0x26190, 0x261c8,
1728 0x26200, 0x26318,
1729 0x26400, 0x26528,
1730 0x26540, 0x26614,
1731 0x27000, 0x27040,
1732 0x2704c, 0x27060,
1733 0x270c0, 0x270ec,
1734 0x27200, 0x27268,
1735 0x27270, 0x27284,
1736 0x272fc, 0x27388,
1737 0x27400, 0x27404,
1738 0x27500, 0x27518,
1739 0x2752c, 0x2753c,
1740 0x27550, 0x27554,
1741 0x27600, 0x27600,
1742 0x27608, 0x27628,
1743 0x27630, 0x2763c,
1744 0x27700, 0x2771c,
1745 0x27780, 0x2778c,
1746 0x27800, 0x27c38,
1747 0x27c80, 0x27d7c,
1748 0x27e00, 0x27e04
1749 };
1750
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001751 static const unsigned int t5_reg_ranges[] = {
1752 0x1008, 0x1148,
1753 0x1180, 0x11b4,
1754 0x11fc, 0x123c,
1755 0x1280, 0x173c,
1756 0x1800, 0x18fc,
1757 0x3000, 0x3028,
1758 0x3060, 0x30d8,
1759 0x30e0, 0x30fc,
1760 0x3140, 0x357c,
1761 0x35a8, 0x35cc,
1762 0x35ec, 0x35ec,
1763 0x3600, 0x5624,
1764 0x56cc, 0x575c,
1765 0x580c, 0x5814,
1766 0x5890, 0x58bc,
1767 0x5940, 0x59dc,
1768 0x59fc, 0x5a18,
1769 0x5a60, 0x5a9c,
1770 0x5b9c, 0x5bfc,
1771 0x6000, 0x6040,
1772 0x6058, 0x614c,
1773 0x7700, 0x7798,
1774 0x77c0, 0x78fc,
1775 0x7b00, 0x7c54,
1776 0x7d00, 0x7efc,
1777 0x8dc0, 0x8de0,
1778 0x8df8, 0x8e84,
1779 0x8ea0, 0x8f84,
1780 0x8fc0, 0x90f8,
1781 0x9400, 0x9470,
1782 0x9600, 0x96f4,
1783 0x9800, 0x9808,
1784 0x9820, 0x983c,
1785 0x9850, 0x9864,
1786 0x9c00, 0x9c6c,
1787 0x9c80, 0x9cec,
1788 0x9d00, 0x9d6c,
1789 0x9d80, 0x9dec,
1790 0x9e00, 0x9e6c,
1791 0x9e80, 0x9eec,
1792 0x9f00, 0x9f6c,
1793 0x9f80, 0xa020,
1794 0xd004, 0xd03c,
1795 0xdfc0, 0xdfe0,
1796 0xe000, 0x11088,
Hariprasad Shenai3d9103f2014-09-01 19:54:59 +05301797 0x1109c, 0x11110,
1798 0x11118, 0x1117c,
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001799 0x11190, 0x11204,
1800 0x19040, 0x1906c,
1801 0x19078, 0x19080,
1802 0x1908c, 0x19124,
1803 0x19150, 0x191b0,
1804 0x191d0, 0x191e8,
1805 0x19238, 0x19290,
1806 0x193f8, 0x19474,
1807 0x19490, 0x194cc,
1808 0x194f0, 0x194f8,
1809 0x19c00, 0x19c60,
1810 0x19c94, 0x19e10,
1811 0x19e50, 0x19f34,
1812 0x19f40, 0x19f50,
1813 0x19f90, 0x19fe4,
1814 0x1a000, 0x1a06c,
1815 0x1a0b0, 0x1a120,
1816 0x1a128, 0x1a138,
1817 0x1a190, 0x1a1c4,
1818 0x1a1fc, 0x1a1fc,
1819 0x1e008, 0x1e00c,
1820 0x1e040, 0x1e04c,
1821 0x1e284, 0x1e290,
1822 0x1e2c0, 0x1e2c0,
1823 0x1e2e0, 0x1e2e0,
1824 0x1e300, 0x1e384,
1825 0x1e3c0, 0x1e3c8,
1826 0x1e408, 0x1e40c,
1827 0x1e440, 0x1e44c,
1828 0x1e684, 0x1e690,
1829 0x1e6c0, 0x1e6c0,
1830 0x1e6e0, 0x1e6e0,
1831 0x1e700, 0x1e784,
1832 0x1e7c0, 0x1e7c8,
1833 0x1e808, 0x1e80c,
1834 0x1e840, 0x1e84c,
1835 0x1ea84, 0x1ea90,
1836 0x1eac0, 0x1eac0,
1837 0x1eae0, 0x1eae0,
1838 0x1eb00, 0x1eb84,
1839 0x1ebc0, 0x1ebc8,
1840 0x1ec08, 0x1ec0c,
1841 0x1ec40, 0x1ec4c,
1842 0x1ee84, 0x1ee90,
1843 0x1eec0, 0x1eec0,
1844 0x1eee0, 0x1eee0,
1845 0x1ef00, 0x1ef84,
1846 0x1efc0, 0x1efc8,
1847 0x1f008, 0x1f00c,
1848 0x1f040, 0x1f04c,
1849 0x1f284, 0x1f290,
1850 0x1f2c0, 0x1f2c0,
1851 0x1f2e0, 0x1f2e0,
1852 0x1f300, 0x1f384,
1853 0x1f3c0, 0x1f3c8,
1854 0x1f408, 0x1f40c,
1855 0x1f440, 0x1f44c,
1856 0x1f684, 0x1f690,
1857 0x1f6c0, 0x1f6c0,
1858 0x1f6e0, 0x1f6e0,
1859 0x1f700, 0x1f784,
1860 0x1f7c0, 0x1f7c8,
1861 0x1f808, 0x1f80c,
1862 0x1f840, 0x1f84c,
1863 0x1fa84, 0x1fa90,
1864 0x1fac0, 0x1fac0,
1865 0x1fae0, 0x1fae0,
1866 0x1fb00, 0x1fb84,
1867 0x1fbc0, 0x1fbc8,
1868 0x1fc08, 0x1fc0c,
1869 0x1fc40, 0x1fc4c,
1870 0x1fe84, 0x1fe90,
1871 0x1fec0, 0x1fec0,
1872 0x1fee0, 0x1fee0,
1873 0x1ff00, 0x1ff84,
1874 0x1ffc0, 0x1ffc8,
1875 0x30000, 0x30030,
1876 0x30100, 0x30144,
1877 0x30190, 0x301d0,
1878 0x30200, 0x30318,
1879 0x30400, 0x3052c,
1880 0x30540, 0x3061c,
1881 0x30800, 0x30834,
1882 0x308c0, 0x30908,
1883 0x30910, 0x309ac,
1884 0x30a00, 0x30a04,
1885 0x30a0c, 0x30a2c,
1886 0x30a44, 0x30a50,
1887 0x30a74, 0x30c24,
1888 0x30d08, 0x30d14,
1889 0x30d1c, 0x30d20,
1890 0x30d3c, 0x30d50,
1891 0x31200, 0x3120c,
1892 0x31220, 0x31220,
1893 0x31240, 0x31240,
1894 0x31600, 0x31600,
1895 0x31608, 0x3160c,
1896 0x31a00, 0x31a1c,
1897 0x31e04, 0x31e20,
1898 0x31e38, 0x31e3c,
1899 0x31e80, 0x31e80,
1900 0x31e88, 0x31ea8,
1901 0x31eb0, 0x31eb4,
1902 0x31ec8, 0x31ed4,
1903 0x31fb8, 0x32004,
1904 0x32208, 0x3223c,
1905 0x32600, 0x32630,
1906 0x32a00, 0x32abc,
1907 0x32b00, 0x32b70,
1908 0x33000, 0x33048,
1909 0x33060, 0x3309c,
1910 0x330f0, 0x33148,
1911 0x33160, 0x3319c,
1912 0x331f0, 0x332e4,
1913 0x332f8, 0x333e4,
1914 0x333f8, 0x33448,
1915 0x33460, 0x3349c,
1916 0x334f0, 0x33548,
1917 0x33560, 0x3359c,
1918 0x335f0, 0x336e4,
1919 0x336f8, 0x337e4,
1920 0x337f8, 0x337fc,
1921 0x33814, 0x33814,
1922 0x3382c, 0x3382c,
1923 0x33880, 0x3388c,
1924 0x338e8, 0x338ec,
1925 0x33900, 0x33948,
1926 0x33960, 0x3399c,
1927 0x339f0, 0x33ae4,
1928 0x33af8, 0x33b10,
1929 0x33b28, 0x33b28,
1930 0x33b3c, 0x33b50,
1931 0x33bf0, 0x33c10,
1932 0x33c28, 0x33c28,
1933 0x33c3c, 0x33c50,
1934 0x33cf0, 0x33cfc,
1935 0x34000, 0x34030,
1936 0x34100, 0x34144,
1937 0x34190, 0x341d0,
1938 0x34200, 0x34318,
1939 0x34400, 0x3452c,
1940 0x34540, 0x3461c,
1941 0x34800, 0x34834,
1942 0x348c0, 0x34908,
1943 0x34910, 0x349ac,
1944 0x34a00, 0x34a04,
1945 0x34a0c, 0x34a2c,
1946 0x34a44, 0x34a50,
1947 0x34a74, 0x34c24,
1948 0x34d08, 0x34d14,
1949 0x34d1c, 0x34d20,
1950 0x34d3c, 0x34d50,
1951 0x35200, 0x3520c,
1952 0x35220, 0x35220,
1953 0x35240, 0x35240,
1954 0x35600, 0x35600,
1955 0x35608, 0x3560c,
1956 0x35a00, 0x35a1c,
1957 0x35e04, 0x35e20,
1958 0x35e38, 0x35e3c,
1959 0x35e80, 0x35e80,
1960 0x35e88, 0x35ea8,
1961 0x35eb0, 0x35eb4,
1962 0x35ec8, 0x35ed4,
1963 0x35fb8, 0x36004,
1964 0x36208, 0x3623c,
1965 0x36600, 0x36630,
1966 0x36a00, 0x36abc,
1967 0x36b00, 0x36b70,
1968 0x37000, 0x37048,
1969 0x37060, 0x3709c,
1970 0x370f0, 0x37148,
1971 0x37160, 0x3719c,
1972 0x371f0, 0x372e4,
1973 0x372f8, 0x373e4,
1974 0x373f8, 0x37448,
1975 0x37460, 0x3749c,
1976 0x374f0, 0x37548,
1977 0x37560, 0x3759c,
1978 0x375f0, 0x376e4,
1979 0x376f8, 0x377e4,
1980 0x377f8, 0x377fc,
1981 0x37814, 0x37814,
1982 0x3782c, 0x3782c,
1983 0x37880, 0x3788c,
1984 0x378e8, 0x378ec,
1985 0x37900, 0x37948,
1986 0x37960, 0x3799c,
1987 0x379f0, 0x37ae4,
1988 0x37af8, 0x37b10,
1989 0x37b28, 0x37b28,
1990 0x37b3c, 0x37b50,
1991 0x37bf0, 0x37c10,
1992 0x37c28, 0x37c28,
1993 0x37c3c, 0x37c50,
1994 0x37cf0, 0x37cfc,
1995 0x38000, 0x38030,
1996 0x38100, 0x38144,
1997 0x38190, 0x381d0,
1998 0x38200, 0x38318,
1999 0x38400, 0x3852c,
2000 0x38540, 0x3861c,
2001 0x38800, 0x38834,
2002 0x388c0, 0x38908,
2003 0x38910, 0x389ac,
2004 0x38a00, 0x38a04,
2005 0x38a0c, 0x38a2c,
2006 0x38a44, 0x38a50,
2007 0x38a74, 0x38c24,
2008 0x38d08, 0x38d14,
2009 0x38d1c, 0x38d20,
2010 0x38d3c, 0x38d50,
2011 0x39200, 0x3920c,
2012 0x39220, 0x39220,
2013 0x39240, 0x39240,
2014 0x39600, 0x39600,
2015 0x39608, 0x3960c,
2016 0x39a00, 0x39a1c,
2017 0x39e04, 0x39e20,
2018 0x39e38, 0x39e3c,
2019 0x39e80, 0x39e80,
2020 0x39e88, 0x39ea8,
2021 0x39eb0, 0x39eb4,
2022 0x39ec8, 0x39ed4,
2023 0x39fb8, 0x3a004,
2024 0x3a208, 0x3a23c,
2025 0x3a600, 0x3a630,
2026 0x3aa00, 0x3aabc,
2027 0x3ab00, 0x3ab70,
2028 0x3b000, 0x3b048,
2029 0x3b060, 0x3b09c,
2030 0x3b0f0, 0x3b148,
2031 0x3b160, 0x3b19c,
2032 0x3b1f0, 0x3b2e4,
2033 0x3b2f8, 0x3b3e4,
2034 0x3b3f8, 0x3b448,
2035 0x3b460, 0x3b49c,
2036 0x3b4f0, 0x3b548,
2037 0x3b560, 0x3b59c,
2038 0x3b5f0, 0x3b6e4,
2039 0x3b6f8, 0x3b7e4,
2040 0x3b7f8, 0x3b7fc,
2041 0x3b814, 0x3b814,
2042 0x3b82c, 0x3b82c,
2043 0x3b880, 0x3b88c,
2044 0x3b8e8, 0x3b8ec,
2045 0x3b900, 0x3b948,
2046 0x3b960, 0x3b99c,
2047 0x3b9f0, 0x3bae4,
2048 0x3baf8, 0x3bb10,
2049 0x3bb28, 0x3bb28,
2050 0x3bb3c, 0x3bb50,
2051 0x3bbf0, 0x3bc10,
2052 0x3bc28, 0x3bc28,
2053 0x3bc3c, 0x3bc50,
2054 0x3bcf0, 0x3bcfc,
2055 0x3c000, 0x3c030,
2056 0x3c100, 0x3c144,
2057 0x3c190, 0x3c1d0,
2058 0x3c200, 0x3c318,
2059 0x3c400, 0x3c52c,
2060 0x3c540, 0x3c61c,
2061 0x3c800, 0x3c834,
2062 0x3c8c0, 0x3c908,
2063 0x3c910, 0x3c9ac,
2064 0x3ca00, 0x3ca04,
2065 0x3ca0c, 0x3ca2c,
2066 0x3ca44, 0x3ca50,
2067 0x3ca74, 0x3cc24,
2068 0x3cd08, 0x3cd14,
2069 0x3cd1c, 0x3cd20,
2070 0x3cd3c, 0x3cd50,
2071 0x3d200, 0x3d20c,
2072 0x3d220, 0x3d220,
2073 0x3d240, 0x3d240,
2074 0x3d600, 0x3d600,
2075 0x3d608, 0x3d60c,
2076 0x3da00, 0x3da1c,
2077 0x3de04, 0x3de20,
2078 0x3de38, 0x3de3c,
2079 0x3de80, 0x3de80,
2080 0x3de88, 0x3dea8,
2081 0x3deb0, 0x3deb4,
2082 0x3dec8, 0x3ded4,
2083 0x3dfb8, 0x3e004,
2084 0x3e208, 0x3e23c,
2085 0x3e600, 0x3e630,
2086 0x3ea00, 0x3eabc,
2087 0x3eb00, 0x3eb70,
2088 0x3f000, 0x3f048,
2089 0x3f060, 0x3f09c,
2090 0x3f0f0, 0x3f148,
2091 0x3f160, 0x3f19c,
2092 0x3f1f0, 0x3f2e4,
2093 0x3f2f8, 0x3f3e4,
2094 0x3f3f8, 0x3f448,
2095 0x3f460, 0x3f49c,
2096 0x3f4f0, 0x3f548,
2097 0x3f560, 0x3f59c,
2098 0x3f5f0, 0x3f6e4,
2099 0x3f6f8, 0x3f7e4,
2100 0x3f7f8, 0x3f7fc,
2101 0x3f814, 0x3f814,
2102 0x3f82c, 0x3f82c,
2103 0x3f880, 0x3f88c,
2104 0x3f8e8, 0x3f8ec,
2105 0x3f900, 0x3f948,
2106 0x3f960, 0x3f99c,
2107 0x3f9f0, 0x3fae4,
2108 0x3faf8, 0x3fb10,
2109 0x3fb28, 0x3fb28,
2110 0x3fb3c, 0x3fb50,
2111 0x3fbf0, 0x3fc10,
2112 0x3fc28, 0x3fc28,
2113 0x3fc3c, 0x3fc50,
2114 0x3fcf0, 0x3fcfc,
2115 0x40000, 0x4000c,
2116 0x40040, 0x40068,
2117 0x40080, 0x40144,
2118 0x40180, 0x4018c,
2119 0x40200, 0x40298,
2120 0x402ac, 0x4033c,
2121 0x403f8, 0x403fc,
Kumar Sanghvic1f49e32014-02-18 17:56:13 +05302122 0x41304, 0x413c4,
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002123 0x41400, 0x4141c,
2124 0x41480, 0x414d0,
2125 0x44000, 0x44078,
2126 0x440c0, 0x44278,
2127 0x442c0, 0x44478,
2128 0x444c0, 0x44678,
2129 0x446c0, 0x44878,
2130 0x448c0, 0x449fc,
2131 0x45000, 0x45068,
2132 0x45080, 0x45084,
2133 0x450a0, 0x450b0,
2134 0x45200, 0x45268,
2135 0x45280, 0x45284,
2136 0x452a0, 0x452b0,
2137 0x460c0, 0x460e4,
2138 0x47000, 0x4708c,
2139 0x47200, 0x47250,
2140 0x47400, 0x47420,
2141 0x47600, 0x47618,
2142 0x47800, 0x47814,
2143 0x48000, 0x4800c,
2144 0x48040, 0x48068,
2145 0x48080, 0x48144,
2146 0x48180, 0x4818c,
2147 0x48200, 0x48298,
2148 0x482ac, 0x4833c,
2149 0x483f8, 0x483fc,
Kumar Sanghvic1f49e32014-02-18 17:56:13 +05302150 0x49304, 0x493c4,
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002151 0x49400, 0x4941c,
2152 0x49480, 0x494d0,
2153 0x4c000, 0x4c078,
2154 0x4c0c0, 0x4c278,
2155 0x4c2c0, 0x4c478,
2156 0x4c4c0, 0x4c678,
2157 0x4c6c0, 0x4c878,
2158 0x4c8c0, 0x4c9fc,
2159 0x4d000, 0x4d068,
2160 0x4d080, 0x4d084,
2161 0x4d0a0, 0x4d0b0,
2162 0x4d200, 0x4d268,
2163 0x4d280, 0x4d284,
2164 0x4d2a0, 0x4d2b0,
2165 0x4e0c0, 0x4e0e4,
2166 0x4f000, 0x4f08c,
2167 0x4f200, 0x4f250,
2168 0x4f400, 0x4f420,
2169 0x4f600, 0x4f618,
2170 0x4f800, 0x4f814,
2171 0x50000, 0x500cc,
2172 0x50400, 0x50400,
2173 0x50800, 0x508cc,
2174 0x50c00, 0x50c00,
2175 0x51000, 0x5101c,
2176 0x51300, 0x51308,
2177 };
2178
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002179 int i;
2180 struct adapter *ap = netdev2adap(dev);
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002181 static const unsigned int *reg_ranges;
2182 int arr_size = 0, buf_size = 0;
2183
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302184 if (is_t4(ap->params.chip)) {
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002185 reg_ranges = &t4_reg_ranges[0];
2186 arr_size = ARRAY_SIZE(t4_reg_ranges);
2187 buf_size = T4_REGMAP_SIZE;
2188 } else {
2189 reg_ranges = &t5_reg_ranges[0];
2190 arr_size = ARRAY_SIZE(t5_reg_ranges);
2191 buf_size = T5_REGMAP_SIZE;
2192 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002193
2194 regs->version = mk_adap_vers(ap);
2195
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002196 memset(buf, 0, buf_size);
2197 for (i = 0; i < arr_size; i += 2)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002198 reg_block_dump(ap, buf, reg_ranges[i], reg_ranges[i + 1]);
2199}
2200
2201static int restart_autoneg(struct net_device *dev)
2202{
2203 struct port_info *p = netdev_priv(dev);
2204
2205 if (!netif_running(dev))
2206 return -EAGAIN;
2207 if (p->link_cfg.autoneg != AUTONEG_ENABLE)
2208 return -EINVAL;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002209 t4_restart_aneg(p->adapter, p->adapter->fn, p->tx_chan);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002210 return 0;
2211}
2212
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07002213static int identify_port(struct net_device *dev,
2214 enum ethtool_phys_id_state state)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002215{
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07002216 unsigned int val;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002217 struct adapter *adap = netdev2adap(dev);
2218
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07002219 if (state == ETHTOOL_ID_ACTIVE)
2220 val = 0xffff;
2221 else if (state == ETHTOOL_ID_INACTIVE)
2222 val = 0;
2223 else
2224 return -EINVAL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002225
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07002226 return t4_identify_port(adap, adap->fn, netdev2pinfo(dev)->viid, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002227}
2228
Hariprasad Shenai40e9de42014-12-12 12:07:57 +05302229static unsigned int from_fw_linkcaps(enum fw_port_type type, unsigned int caps)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002230{
2231 unsigned int v = 0;
2232
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002233 if (type == FW_PORT_TYPE_BT_SGMII || type == FW_PORT_TYPE_BT_XFI ||
2234 type == FW_PORT_TYPE_BT_XAUI) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002235 v |= SUPPORTED_TP;
2236 if (caps & FW_PORT_CAP_SPEED_100M)
2237 v |= SUPPORTED_100baseT_Full;
2238 if (caps & FW_PORT_CAP_SPEED_1G)
2239 v |= SUPPORTED_1000baseT_Full;
2240 if (caps & FW_PORT_CAP_SPEED_10G)
2241 v |= SUPPORTED_10000baseT_Full;
2242 } else if (type == FW_PORT_TYPE_KX4 || type == FW_PORT_TYPE_KX) {
2243 v |= SUPPORTED_Backplane;
2244 if (caps & FW_PORT_CAP_SPEED_1G)
2245 v |= SUPPORTED_1000baseKX_Full;
2246 if (caps & FW_PORT_CAP_SPEED_10G)
2247 v |= SUPPORTED_10000baseKX4_Full;
2248 } else if (type == FW_PORT_TYPE_KR)
2249 v |= SUPPORTED_Backplane | SUPPORTED_10000baseKR_Full;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002250 else if (type == FW_PORT_TYPE_BP_AP)
Dimitris Michailidis7d5e77a2010-12-14 21:36:47 +00002251 v |= SUPPORTED_Backplane | SUPPORTED_10000baseR_FEC |
2252 SUPPORTED_10000baseKR_Full | SUPPORTED_1000baseKX_Full;
2253 else if (type == FW_PORT_TYPE_BP4_AP)
2254 v |= SUPPORTED_Backplane | SUPPORTED_10000baseR_FEC |
2255 SUPPORTED_10000baseKR_Full | SUPPORTED_1000baseKX_Full |
2256 SUPPORTED_10000baseKX4_Full;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002257 else if (type == FW_PORT_TYPE_FIBER_XFI ||
Hariprasad Shenai40e9de42014-12-12 12:07:57 +05302258 type == FW_PORT_TYPE_FIBER_XAUI ||
2259 type == FW_PORT_TYPE_SFP ||
2260 type == FW_PORT_TYPE_QSFP_10G ||
2261 type == FW_PORT_TYPE_QSA) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002262 v |= SUPPORTED_FIBRE;
Hariprasad Shenai4c2d5182014-11-28 18:35:14 +05302263 if (caps & FW_PORT_CAP_SPEED_1G)
2264 v |= SUPPORTED_1000baseT_Full;
2265 if (caps & FW_PORT_CAP_SPEED_10G)
2266 v |= SUPPORTED_10000baseT_Full;
Hariprasad Shenai40e9de42014-12-12 12:07:57 +05302267 } else if (type == FW_PORT_TYPE_BP40_BA ||
2268 type == FW_PORT_TYPE_QSFP) {
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302269 v |= SUPPORTED_40000baseSR4_Full;
Hariprasad Shenai40e9de42014-12-12 12:07:57 +05302270 v |= SUPPORTED_FIBRE;
2271 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002272
2273 if (caps & FW_PORT_CAP_ANEG)
2274 v |= SUPPORTED_Autoneg;
2275 return v;
2276}
2277
2278static unsigned int to_fw_linkcaps(unsigned int caps)
2279{
2280 unsigned int v = 0;
2281
2282 if (caps & ADVERTISED_100baseT_Full)
2283 v |= FW_PORT_CAP_SPEED_100M;
2284 if (caps & ADVERTISED_1000baseT_Full)
2285 v |= FW_PORT_CAP_SPEED_1G;
2286 if (caps & ADVERTISED_10000baseT_Full)
2287 v |= FW_PORT_CAP_SPEED_10G;
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302288 if (caps & ADVERTISED_40000baseSR4_Full)
2289 v |= FW_PORT_CAP_SPEED_40G;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002290 return v;
2291}
2292
2293static int get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2294{
2295 const struct port_info *p = netdev_priv(dev);
2296
2297 if (p->port_type == FW_PORT_TYPE_BT_SGMII ||
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002298 p->port_type == FW_PORT_TYPE_BT_XFI ||
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002299 p->port_type == FW_PORT_TYPE_BT_XAUI)
2300 cmd->port = PORT_TP;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002301 else if (p->port_type == FW_PORT_TYPE_FIBER_XFI ||
2302 p->port_type == FW_PORT_TYPE_FIBER_XAUI)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002303 cmd->port = PORT_FIBRE;
Hariprasad Shenai3e00a502014-05-07 18:01:02 +05302304 else if (p->port_type == FW_PORT_TYPE_SFP ||
2305 p->port_type == FW_PORT_TYPE_QSFP_10G ||
Hariprasad Shenai40e9de42014-12-12 12:07:57 +05302306 p->port_type == FW_PORT_TYPE_QSA ||
Hariprasad Shenai3e00a502014-05-07 18:01:02 +05302307 p->port_type == FW_PORT_TYPE_QSFP) {
2308 if (p->mod_type == FW_PORT_MOD_TYPE_LR ||
2309 p->mod_type == FW_PORT_MOD_TYPE_SR ||
2310 p->mod_type == FW_PORT_MOD_TYPE_ER ||
2311 p->mod_type == FW_PORT_MOD_TYPE_LRM)
2312 cmd->port = PORT_FIBRE;
2313 else if (p->mod_type == FW_PORT_MOD_TYPE_TWINAX_PASSIVE ||
2314 p->mod_type == FW_PORT_MOD_TYPE_TWINAX_ACTIVE)
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002315 cmd->port = PORT_DA;
2316 else
Hariprasad Shenai3e00a502014-05-07 18:01:02 +05302317 cmd->port = PORT_OTHER;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002318 } else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002319 cmd->port = PORT_OTHER;
2320
2321 if (p->mdio_addr >= 0) {
2322 cmd->phy_address = p->mdio_addr;
2323 cmd->transceiver = XCVR_EXTERNAL;
2324 cmd->mdio_support = p->port_type == FW_PORT_TYPE_BT_SGMII ?
2325 MDIO_SUPPORTS_C22 : MDIO_SUPPORTS_C45;
2326 } else {
2327 cmd->phy_address = 0; /* not really, but no better option */
2328 cmd->transceiver = XCVR_INTERNAL;
2329 cmd->mdio_support = 0;
2330 }
2331
2332 cmd->supported = from_fw_linkcaps(p->port_type, p->link_cfg.supported);
2333 cmd->advertising = from_fw_linkcaps(p->port_type,
2334 p->link_cfg.advertising);
David Decotigny70739492011-04-27 18:32:40 +00002335 ethtool_cmd_speed_set(cmd,
2336 netif_carrier_ok(dev) ? p->link_cfg.speed : 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002337 cmd->duplex = DUPLEX_FULL;
2338 cmd->autoneg = p->link_cfg.autoneg;
2339 cmd->maxtxpkt = 0;
2340 cmd->maxrxpkt = 0;
2341 return 0;
2342}
2343
2344static unsigned int speed_to_caps(int speed)
2345{
Ben Hutchingse8b39012014-02-23 00:03:24 +00002346 if (speed == 100)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002347 return FW_PORT_CAP_SPEED_100M;
Ben Hutchingse8b39012014-02-23 00:03:24 +00002348 if (speed == 1000)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002349 return FW_PORT_CAP_SPEED_1G;
Ben Hutchingse8b39012014-02-23 00:03:24 +00002350 if (speed == 10000)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002351 return FW_PORT_CAP_SPEED_10G;
Ben Hutchingse8b39012014-02-23 00:03:24 +00002352 if (speed == 40000)
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302353 return FW_PORT_CAP_SPEED_40G;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002354 return 0;
2355}
2356
2357static int set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2358{
2359 unsigned int cap;
2360 struct port_info *p = netdev_priv(dev);
2361 struct link_config *lc = &p->link_cfg;
David Decotigny25db0332011-04-27 18:32:39 +00002362 u32 speed = ethtool_cmd_speed(cmd);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002363
2364 if (cmd->duplex != DUPLEX_FULL) /* only full-duplex supported */
2365 return -EINVAL;
2366
2367 if (!(lc->supported & FW_PORT_CAP_ANEG)) {
2368 /*
2369 * PHY offers a single speed. See if that's what's
2370 * being requested.
2371 */
2372 if (cmd->autoneg == AUTONEG_DISABLE &&
David Decotigny25db0332011-04-27 18:32:39 +00002373 (lc->supported & speed_to_caps(speed)))
2374 return 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002375 return -EINVAL;
2376 }
2377
2378 if (cmd->autoneg == AUTONEG_DISABLE) {
David Decotigny25db0332011-04-27 18:32:39 +00002379 cap = speed_to_caps(speed);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002380
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302381 if (!(lc->supported & cap) ||
Ben Hutchingse8b39012014-02-23 00:03:24 +00002382 (speed == 1000) ||
2383 (speed == 10000) ||
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302384 (speed == 40000))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002385 return -EINVAL;
2386 lc->requested_speed = cap;
2387 lc->advertising = 0;
2388 } else {
2389 cap = to_fw_linkcaps(cmd->advertising);
2390 if (!(lc->supported & cap))
2391 return -EINVAL;
2392 lc->requested_speed = 0;
2393 lc->advertising = cap | FW_PORT_CAP_ANEG;
2394 }
2395 lc->autoneg = cmd->autoneg;
2396
2397 if (netif_running(dev))
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002398 return t4_link_start(p->adapter, p->adapter->fn, p->tx_chan,
2399 lc);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002400 return 0;
2401}
2402
2403static void get_pauseparam(struct net_device *dev,
2404 struct ethtool_pauseparam *epause)
2405{
2406 struct port_info *p = netdev_priv(dev);
2407
2408 epause->autoneg = (p->link_cfg.requested_fc & PAUSE_AUTONEG) != 0;
2409 epause->rx_pause = (p->link_cfg.fc & PAUSE_RX) != 0;
2410 epause->tx_pause = (p->link_cfg.fc & PAUSE_TX) != 0;
2411}
2412
2413static int set_pauseparam(struct net_device *dev,
2414 struct ethtool_pauseparam *epause)
2415{
2416 struct port_info *p = netdev_priv(dev);
2417 struct link_config *lc = &p->link_cfg;
2418
2419 if (epause->autoneg == AUTONEG_DISABLE)
2420 lc->requested_fc = 0;
2421 else if (lc->supported & FW_PORT_CAP_ANEG)
2422 lc->requested_fc = PAUSE_AUTONEG;
2423 else
2424 return -EINVAL;
2425
2426 if (epause->rx_pause)
2427 lc->requested_fc |= PAUSE_RX;
2428 if (epause->tx_pause)
2429 lc->requested_fc |= PAUSE_TX;
2430 if (netif_running(dev))
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002431 return t4_link_start(p->adapter, p->adapter->fn, p->tx_chan,
2432 lc);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002433 return 0;
2434}
2435
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002436static void get_sge_param(struct net_device *dev, struct ethtool_ringparam *e)
2437{
2438 const struct port_info *pi = netdev_priv(dev);
2439 const struct sge *s = &pi->adapter->sge;
2440
2441 e->rx_max_pending = MAX_RX_BUFFERS;
2442 e->rx_mini_max_pending = MAX_RSPQ_ENTRIES;
2443 e->rx_jumbo_max_pending = 0;
2444 e->tx_max_pending = MAX_TXQ_ENTRIES;
2445
2446 e->rx_pending = s->ethrxq[pi->first_qset].fl.size - 8;
2447 e->rx_mini_pending = s->ethrxq[pi->first_qset].rspq.size;
2448 e->rx_jumbo_pending = 0;
2449 e->tx_pending = s->ethtxq[pi->first_qset].q.size;
2450}
2451
2452static int set_sge_param(struct net_device *dev, struct ethtool_ringparam *e)
2453{
2454 int i;
2455 const struct port_info *pi = netdev_priv(dev);
2456 struct adapter *adapter = pi->adapter;
2457 struct sge *s = &adapter->sge;
2458
2459 if (e->rx_pending > MAX_RX_BUFFERS || e->rx_jumbo_pending ||
2460 e->tx_pending > MAX_TXQ_ENTRIES ||
2461 e->rx_mini_pending > MAX_RSPQ_ENTRIES ||
2462 e->rx_mini_pending < MIN_RSPQ_ENTRIES ||
2463 e->rx_pending < MIN_FL_ENTRIES || e->tx_pending < MIN_TXQ_ENTRIES)
2464 return -EINVAL;
2465
2466 if (adapter->flags & FULL_INIT_DONE)
2467 return -EBUSY;
2468
2469 for (i = 0; i < pi->nqsets; ++i) {
2470 s->ethtxq[pi->first_qset + i].q.size = e->tx_pending;
2471 s->ethrxq[pi->first_qset + i].fl.size = e->rx_pending + 8;
2472 s->ethrxq[pi->first_qset + i].rspq.size = e->rx_mini_pending;
2473 }
2474 return 0;
2475}
2476
2477static int closest_timer(const struct sge *s, int time)
2478{
2479 int i, delta, match = 0, min_delta = INT_MAX;
2480
2481 for (i = 0; i < ARRAY_SIZE(s->timer_val); i++) {
2482 delta = time - s->timer_val[i];
2483 if (delta < 0)
2484 delta = -delta;
2485 if (delta < min_delta) {
2486 min_delta = delta;
2487 match = i;
2488 }
2489 }
2490 return match;
2491}
2492
2493static int closest_thres(const struct sge *s, int thres)
2494{
2495 int i, delta, match = 0, min_delta = INT_MAX;
2496
2497 for (i = 0; i < ARRAY_SIZE(s->counter_val); i++) {
2498 delta = thres - s->counter_val[i];
2499 if (delta < 0)
2500 delta = -delta;
2501 if (delta < min_delta) {
2502 min_delta = delta;
2503 match = i;
2504 }
2505 }
2506 return match;
2507}
2508
2509/*
2510 * Return a queue's interrupt hold-off time in us. 0 means no timer.
2511 */
Hariprasad Shenaidc9daab2015-01-27 13:47:45 +05302512unsigned int qtimer_val(const struct adapter *adap,
2513 const struct sge_rspq *q)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002514{
2515 unsigned int idx = q->intr_params >> 1;
2516
2517 return idx < SGE_NTIMERS ? adap->sge.timer_val[idx] : 0;
2518}
2519
2520/**
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302521 * set_rspq_intr_params - set a queue's interrupt holdoff parameters
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002522 * @q: the Rx queue
2523 * @us: the hold-off time in us, or 0 to disable timer
2524 * @cnt: the hold-off packet count, or 0 to disable counter
2525 *
2526 * Sets an Rx queue's interrupt hold-off time and packet count. At least
2527 * one of the two needs to be enabled for the queue to generate interrupts.
2528 */
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302529static int set_rspq_intr_params(struct sge_rspq *q,
2530 unsigned int us, unsigned int cnt)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002531{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302532 struct adapter *adap = q->adap;
2533
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002534 if ((us | cnt) == 0)
2535 cnt = 1;
2536
2537 if (cnt) {
2538 int err;
2539 u32 v, new_idx;
2540
2541 new_idx = closest_thres(&adap->sge, cnt);
2542 if (q->desc && q->pktcnt_idx != new_idx) {
2543 /* the queue has already been created, update it */
Hariprasad Shenai51678652014-11-21 12:52:02 +05302544 v = FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
2545 FW_PARAMS_PARAM_X_V(
2546 FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH) |
2547 FW_PARAMS_PARAM_YZ_V(q->cntxt_id);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002548 err = t4_set_params(adap, adap->fn, adap->fn, 0, 1, &v,
2549 &new_idx);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002550 if (err)
2551 return err;
2552 }
2553 q->pktcnt_idx = new_idx;
2554 }
2555
2556 us = us == 0 ? 6 : closest_timer(&adap->sge, us);
2557 q->intr_params = QINTR_TIMER_IDX(us) | (cnt > 0 ? QINTR_CNT_EN : 0);
2558 return 0;
2559}
2560
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302561/**
2562 * set_rx_intr_params - set a net devices's RX interrupt holdoff paramete!
2563 * @dev: the network device
2564 * @us: the hold-off time in us, or 0 to disable timer
2565 * @cnt: the hold-off packet count, or 0 to disable counter
2566 *
2567 * Set the RX interrupt hold-off parameters for a network device.
2568 */
2569static int set_rx_intr_params(struct net_device *dev,
2570 unsigned int us, unsigned int cnt)
2571{
2572 int i, err;
2573 struct port_info *pi = netdev_priv(dev);
2574 struct adapter *adap = pi->adapter;
2575 struct sge_eth_rxq *q = &adap->sge.ethrxq[pi->first_qset];
2576
2577 for (i = 0; i < pi->nqsets; i++, q++) {
2578 err = set_rspq_intr_params(&q->rspq, us, cnt);
2579 if (err)
2580 return err;
2581 }
2582 return 0;
2583}
2584
Hariprasad Shenaie553ec32014-09-26 00:23:55 +05302585static int set_adaptive_rx_setting(struct net_device *dev, int adaptive_rx)
2586{
2587 int i;
2588 struct port_info *pi = netdev_priv(dev);
2589 struct adapter *adap = pi->adapter;
2590 struct sge_eth_rxq *q = &adap->sge.ethrxq[pi->first_qset];
2591
2592 for (i = 0; i < pi->nqsets; i++, q++)
2593 q->rspq.adaptive_rx = adaptive_rx;
2594
2595 return 0;
2596}
2597
2598static int get_adaptive_rx_setting(struct net_device *dev)
2599{
2600 struct port_info *pi = netdev_priv(dev);
2601 struct adapter *adap = pi->adapter;
2602 struct sge_eth_rxq *q = &adap->sge.ethrxq[pi->first_qset];
2603
2604 return q->rspq.adaptive_rx;
2605}
2606
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002607static int set_coalesce(struct net_device *dev, struct ethtool_coalesce *c)
2608{
Hariprasad Shenaie553ec32014-09-26 00:23:55 +05302609 set_adaptive_rx_setting(dev, c->use_adaptive_rx_coalesce);
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302610 return set_rx_intr_params(dev, c->rx_coalesce_usecs,
2611 c->rx_max_coalesced_frames);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002612}
2613
2614static int get_coalesce(struct net_device *dev, struct ethtool_coalesce *c)
2615{
2616 const struct port_info *pi = netdev_priv(dev);
2617 const struct adapter *adap = pi->adapter;
2618 const struct sge_rspq *rq = &adap->sge.ethrxq[pi->first_qset].rspq;
2619
2620 c->rx_coalesce_usecs = qtimer_val(adap, rq);
2621 c->rx_max_coalesced_frames = (rq->intr_params & QINTR_CNT_EN) ?
2622 adap->sge.counter_val[rq->pktcnt_idx] : 0;
Hariprasad Shenaie553ec32014-09-26 00:23:55 +05302623 c->use_adaptive_rx_coalesce = get_adaptive_rx_setting(dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002624 return 0;
2625}
2626
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002627/**
2628 * eeprom_ptov - translate a physical EEPROM address to virtual
2629 * @phys_addr: the physical EEPROM address
2630 * @fn: the PCI function number
2631 * @sz: size of function-specific area
2632 *
2633 * Translate a physical EEPROM address to virtual. The first 1K is
2634 * accessed through virtual addresses starting at 31K, the rest is
2635 * accessed through virtual addresses starting at 0.
2636 *
2637 * The mapping is as follows:
2638 * [0..1K) -> [31K..32K)
2639 * [1K..1K+A) -> [31K-A..31K)
2640 * [1K+A..ES) -> [0..ES-A-1K)
2641 *
2642 * where A = @fn * @sz, and ES = EEPROM size.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002643 */
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002644static int eeprom_ptov(unsigned int phys_addr, unsigned int fn, unsigned int sz)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002645{
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002646 fn *= sz;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002647 if (phys_addr < 1024)
2648 return phys_addr + (31 << 10);
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002649 if (phys_addr < 1024 + fn)
2650 return 31744 - fn + phys_addr - 1024;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002651 if (phys_addr < EEPROMSIZE)
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002652 return phys_addr - 1024 - fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002653 return -EINVAL;
2654}
2655
2656/*
2657 * The next two routines implement eeprom read/write from physical addresses.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002658 */
2659static int eeprom_rd_phys(struct adapter *adap, unsigned int phys_addr, u32 *v)
2660{
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002661 int vaddr = eeprom_ptov(phys_addr, adap->fn, EEPROMPFSIZE);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002662
2663 if (vaddr >= 0)
2664 vaddr = pci_read_vpd(adap->pdev, vaddr, sizeof(u32), v);
2665 return vaddr < 0 ? vaddr : 0;
2666}
2667
2668static int eeprom_wr_phys(struct adapter *adap, unsigned int phys_addr, u32 v)
2669{
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002670 int vaddr = eeprom_ptov(phys_addr, adap->fn, EEPROMPFSIZE);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002671
2672 if (vaddr >= 0)
2673 vaddr = pci_write_vpd(adap->pdev, vaddr, sizeof(u32), &v);
2674 return vaddr < 0 ? vaddr : 0;
2675}
2676
2677#define EEPROM_MAGIC 0x38E2F10C
2678
2679static int get_eeprom(struct net_device *dev, struct ethtool_eeprom *e,
2680 u8 *data)
2681{
2682 int i, err = 0;
2683 struct adapter *adapter = netdev2adap(dev);
2684
2685 u8 *buf = kmalloc(EEPROMSIZE, GFP_KERNEL);
2686 if (!buf)
2687 return -ENOMEM;
2688
2689 e->magic = EEPROM_MAGIC;
2690 for (i = e->offset & ~3; !err && i < e->offset + e->len; i += 4)
2691 err = eeprom_rd_phys(adapter, i, (u32 *)&buf[i]);
2692
2693 if (!err)
2694 memcpy(data, buf + e->offset, e->len);
2695 kfree(buf);
2696 return err;
2697}
2698
2699static int set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
2700 u8 *data)
2701{
2702 u8 *buf;
2703 int err = 0;
2704 u32 aligned_offset, aligned_len, *p;
2705 struct adapter *adapter = netdev2adap(dev);
2706
2707 if (eeprom->magic != EEPROM_MAGIC)
2708 return -EINVAL;
2709
2710 aligned_offset = eeprom->offset & ~3;
2711 aligned_len = (eeprom->len + (eeprom->offset & 3) + 3) & ~3;
2712
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002713 if (adapter->fn > 0) {
2714 u32 start = 1024 + adapter->fn * EEPROMPFSIZE;
2715
2716 if (aligned_offset < start ||
2717 aligned_offset + aligned_len > start + EEPROMPFSIZE)
2718 return -EPERM;
2719 }
2720
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002721 if (aligned_offset != eeprom->offset || aligned_len != eeprom->len) {
2722 /*
2723 * RMW possibly needed for first or last words.
2724 */
2725 buf = kmalloc(aligned_len, GFP_KERNEL);
2726 if (!buf)
2727 return -ENOMEM;
2728 err = eeprom_rd_phys(adapter, aligned_offset, (u32 *)buf);
2729 if (!err && aligned_len > 4)
2730 err = eeprom_rd_phys(adapter,
2731 aligned_offset + aligned_len - 4,
2732 (u32 *)&buf[aligned_len - 4]);
2733 if (err)
2734 goto out;
2735 memcpy(buf + (eeprom->offset & 3), data, eeprom->len);
2736 } else
2737 buf = data;
2738
2739 err = t4_seeprom_wp(adapter, false);
2740 if (err)
2741 goto out;
2742
2743 for (p = (u32 *)buf; !err && aligned_len; aligned_len -= 4, p++) {
2744 err = eeprom_wr_phys(adapter, aligned_offset, *p);
2745 aligned_offset += 4;
2746 }
2747
2748 if (!err)
2749 err = t4_seeprom_wp(adapter, true);
2750out:
2751 if (buf != data)
2752 kfree(buf);
2753 return err;
2754}
2755
2756static int set_flash(struct net_device *netdev, struct ethtool_flash *ef)
2757{
2758 int ret;
2759 const struct firmware *fw;
2760 struct adapter *adap = netdev2adap(netdev);
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302761 unsigned int mbox = PCIE_FW_MASTER_M + 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002762
2763 ef->data[sizeof(ef->data) - 1] = '\0';
2764 ret = request_firmware(&fw, ef->data, adap->pdev_dev);
2765 if (ret < 0)
2766 return ret;
2767
Hariprasad Shenai22c0b962014-10-15 01:54:14 +05302768 /* If the adapter has been fully initialized then we'll go ahead and
2769 * try to get the firmware's cooperation in upgrading to the new
2770 * firmware image otherwise we'll try to do the entire job from the
2771 * host ... and we always "force" the operation in this path.
2772 */
2773 if (adap->flags & FULL_INIT_DONE)
2774 mbox = adap->mbox;
2775
2776 ret = t4_fw_upgrade(adap, mbox, fw->data, fw->size, 1);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002777 release_firmware(fw);
2778 if (!ret)
Hariprasad Shenai22c0b962014-10-15 01:54:14 +05302779 dev_info(adap->pdev_dev, "loaded firmware %s,"
2780 " reload cxgb4 driver\n", ef->data);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002781 return ret;
2782}
2783
2784#define WOL_SUPPORTED (WAKE_BCAST | WAKE_MAGIC)
2785#define BCAST_CRC 0xa0ccc1a6
2786
2787static void get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2788{
2789 wol->supported = WAKE_BCAST | WAKE_MAGIC;
2790 wol->wolopts = netdev2adap(dev)->wol;
2791 memset(&wol->sopass, 0, sizeof(wol->sopass));
2792}
2793
2794static int set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2795{
2796 int err = 0;
2797 struct port_info *pi = netdev_priv(dev);
2798
2799 if (wol->wolopts & ~WOL_SUPPORTED)
2800 return -EINVAL;
2801 t4_wol_magic_enable(pi->adapter, pi->tx_chan,
2802 (wol->wolopts & WAKE_MAGIC) ? dev->dev_addr : NULL);
2803 if (wol->wolopts & WAKE_BCAST) {
2804 err = t4_wol_pat_enable(pi->adapter, pi->tx_chan, 0xfe, ~0ULL,
2805 ~0ULL, 0, false);
2806 if (!err)
2807 err = t4_wol_pat_enable(pi->adapter, pi->tx_chan, 1,
2808 ~6ULL, ~0ULL, BCAST_CRC, true);
2809 } else
2810 t4_wol_pat_enable(pi->adapter, pi->tx_chan, 0, 0, 0, 0, false);
2811 return err;
2812}
2813
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002814static int cxgb_set_features(struct net_device *dev, netdev_features_t features)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002815{
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00002816 const struct port_info *pi = netdev_priv(dev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002817 netdev_features_t changed = dev->features ^ features;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002818 int err;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002819
Patrick McHardyf6469682013-04-19 02:04:27 +00002820 if (!(changed & NETIF_F_HW_VLAN_CTAG_RX))
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00002821 return 0;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002822
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00002823 err = t4_set_rxmode(pi->adapter, pi->adapter->fn, pi->viid, -1,
2824 -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +00002825 !!(features & NETIF_F_HW_VLAN_CTAG_RX), true);
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00002826 if (unlikely(err))
Patrick McHardyf6469682013-04-19 02:04:27 +00002827 dev->features = features ^ NETIF_F_HW_VLAN_CTAG_RX;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002828 return err;
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07002829}
2830
Ben Hutchings7850f632011-12-15 13:55:01 +00002831static u32 get_rss_table_size(struct net_device *dev)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002832{
2833 const struct port_info *pi = netdev_priv(dev);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002834
Ben Hutchings7850f632011-12-15 13:55:01 +00002835 return pi->rss_size;
2836}
2837
Eyal Perry892311f2014-12-02 18:12:10 +02002838static int get_rss_table(struct net_device *dev, u32 *p, u8 *key, u8 *hfunc)
Ben Hutchings7850f632011-12-15 13:55:01 +00002839{
2840 const struct port_info *pi = netdev_priv(dev);
2841 unsigned int n = pi->rss_size;
2842
Eyal Perry892311f2014-12-02 18:12:10 +02002843 if (hfunc)
2844 *hfunc = ETH_RSS_HASH_TOP;
2845 if (!p)
2846 return 0;
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002847 while (n--)
Ben Hutchings7850f632011-12-15 13:55:01 +00002848 p[n] = pi->rss[n];
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002849 return 0;
2850}
2851
Eyal Perry892311f2014-12-02 18:12:10 +02002852static int set_rss_table(struct net_device *dev, const u32 *p, const u8 *key,
2853 const u8 hfunc)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002854{
2855 unsigned int i;
2856 struct port_info *pi = netdev_priv(dev);
2857
Eyal Perry892311f2014-12-02 18:12:10 +02002858 /* We require at least one supported parameter to be changed and no
2859 * change in any of the unsupported parameters
2860 */
2861 if (key ||
2862 (hfunc != ETH_RSS_HASH_NO_CHANGE && hfunc != ETH_RSS_HASH_TOP))
2863 return -EOPNOTSUPP;
2864 if (!p)
2865 return 0;
2866
Ben Hutchings7850f632011-12-15 13:55:01 +00002867 for (i = 0; i < pi->rss_size; i++)
2868 pi->rss[i] = p[i];
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002869 if (pi->adapter->flags & FULL_INIT_DONE)
2870 return write_rss(pi, pi->rss);
2871 return 0;
2872}
2873
2874static int get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
Ben Hutchings815c7db2011-09-06 13:49:12 +00002875 u32 *rules)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002876{
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002877 const struct port_info *pi = netdev_priv(dev);
2878
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002879 switch (info->cmd) {
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002880 case ETHTOOL_GRXFH: {
2881 unsigned int v = pi->rss_mode;
2882
2883 info->data = 0;
2884 switch (info->flow_type) {
2885 case TCP_V4_FLOW:
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302886 if (v & FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN_F)
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002887 info->data = RXH_IP_SRC | RXH_IP_DST |
2888 RXH_L4_B_0_1 | RXH_L4_B_2_3;
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302889 else if (v & FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN_F)
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002890 info->data = RXH_IP_SRC | RXH_IP_DST;
2891 break;
2892 case UDP_V4_FLOW:
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302893 if ((v & FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN_F) &&
2894 (v & FW_RSS_VI_CONFIG_CMD_UDPEN_F))
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002895 info->data = RXH_IP_SRC | RXH_IP_DST |
2896 RXH_L4_B_0_1 | RXH_L4_B_2_3;
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302897 else if (v & FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN_F)
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002898 info->data = RXH_IP_SRC | RXH_IP_DST;
2899 break;
2900 case SCTP_V4_FLOW:
2901 case AH_ESP_V4_FLOW:
2902 case IPV4_FLOW:
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302903 if (v & FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN_F)
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002904 info->data = RXH_IP_SRC | RXH_IP_DST;
2905 break;
2906 case TCP_V6_FLOW:
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302907 if (v & FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN_F)
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002908 info->data = RXH_IP_SRC | RXH_IP_DST |
2909 RXH_L4_B_0_1 | RXH_L4_B_2_3;
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302910 else if (v & FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN_F)
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002911 info->data = RXH_IP_SRC | RXH_IP_DST;
2912 break;
2913 case UDP_V6_FLOW:
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302914 if ((v & FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN_F) &&
2915 (v & FW_RSS_VI_CONFIG_CMD_UDPEN_F))
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002916 info->data = RXH_IP_SRC | RXH_IP_DST |
2917 RXH_L4_B_0_1 | RXH_L4_B_2_3;
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302918 else if (v & FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN_F)
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002919 info->data = RXH_IP_SRC | RXH_IP_DST;
2920 break;
2921 case SCTP_V6_FLOW:
2922 case AH_ESP_V6_FLOW:
2923 case IPV6_FLOW:
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05302924 if (v & FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN_F)
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002925 info->data = RXH_IP_SRC | RXH_IP_DST;
2926 break;
2927 }
2928 return 0;
2929 }
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002930 case ETHTOOL_GRXRINGS:
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002931 info->data = pi->nqsets;
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002932 return 0;
2933 }
2934 return -EOPNOTSUPP;
2935}
2936
stephen hemminger9b07be42012-01-04 12:59:49 +00002937static const struct ethtool_ops cxgb_ethtool_ops = {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002938 .get_settings = get_settings,
2939 .set_settings = set_settings,
2940 .get_drvinfo = get_drvinfo,
2941 .get_msglevel = get_msglevel,
2942 .set_msglevel = set_msglevel,
2943 .get_ringparam = get_sge_param,
2944 .set_ringparam = set_sge_param,
2945 .get_coalesce = get_coalesce,
2946 .set_coalesce = set_coalesce,
2947 .get_eeprom_len = get_eeprom_len,
2948 .get_eeprom = get_eeprom,
2949 .set_eeprom = set_eeprom,
2950 .get_pauseparam = get_pauseparam,
2951 .set_pauseparam = set_pauseparam,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002952 .get_link = ethtool_op_get_link,
2953 .get_strings = get_strings,
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07002954 .set_phys_id = identify_port,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002955 .nway_reset = restart_autoneg,
2956 .get_sset_count = get_sset_count,
2957 .get_ethtool_stats = get_stats,
2958 .get_regs_len = get_regs_len,
2959 .get_regs = get_regs,
2960 .get_wol = get_wol,
2961 .set_wol = set_wol,
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002962 .get_rxnfc = get_rxnfc,
Ben Hutchings7850f632011-12-15 13:55:01 +00002963 .get_rxfh_indir_size = get_rss_table_size,
Ben Hutchingsfe62d002014-05-15 01:25:27 +01002964 .get_rxfh = get_rss_table,
2965 .set_rxfh = set_rss_table,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002966 .flash_device = set_flash,
2967};
2968
Bill Pemberton91744942012-12-03 09:23:02 -05002969static int setup_debugfs(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002970{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002971 if (IS_ERR_OR_NULL(adap->debugfs_root))
2972 return -1;
2973
Hariprasad Shenaifd88b312014-11-07 09:35:23 +05302974#ifdef CONFIG_DEBUG_FS
2975 t4_setup_debugfs(adap);
2976#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002977 return 0;
2978}
2979
2980/*
2981 * upper-layer driver support
2982 */
2983
2984/*
2985 * Allocate an active-open TID and set it to the supplied value.
2986 */
2987int cxgb4_alloc_atid(struct tid_info *t, void *data)
2988{
2989 int atid = -1;
2990
2991 spin_lock_bh(&t->atid_lock);
2992 if (t->afree) {
2993 union aopen_entry *p = t->afree;
2994
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00002995 atid = (p - t->atid_tab) + t->atid_base;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002996 t->afree = p->next;
2997 p->data = data;
2998 t->atids_in_use++;
2999 }
3000 spin_unlock_bh(&t->atid_lock);
3001 return atid;
3002}
3003EXPORT_SYMBOL(cxgb4_alloc_atid);
3004
3005/*
3006 * Release an active-open TID.
3007 */
3008void cxgb4_free_atid(struct tid_info *t, unsigned int atid)
3009{
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003010 union aopen_entry *p = &t->atid_tab[atid - t->atid_base];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003011
3012 spin_lock_bh(&t->atid_lock);
3013 p->next = t->afree;
3014 t->afree = p;
3015 t->atids_in_use--;
3016 spin_unlock_bh(&t->atid_lock);
3017}
3018EXPORT_SYMBOL(cxgb4_free_atid);
3019
3020/*
3021 * Allocate a server TID and set it to the supplied value.
3022 */
3023int cxgb4_alloc_stid(struct tid_info *t, int family, void *data)
3024{
3025 int stid;
3026
3027 spin_lock_bh(&t->stid_lock);
3028 if (family == PF_INET) {
3029 stid = find_first_zero_bit(t->stid_bmap, t->nstids);
3030 if (stid < t->nstids)
3031 __set_bit(stid, t->stid_bmap);
3032 else
3033 stid = -1;
3034 } else {
3035 stid = bitmap_find_free_region(t->stid_bmap, t->nstids, 2);
3036 if (stid < 0)
3037 stid = -1;
3038 }
3039 if (stid >= 0) {
3040 t->stid_tab[stid].data = data;
3041 stid += t->stid_base;
Kumar Sanghvi15f63b72013-12-18 16:38:22 +05303042 /* IPv6 requires max of 520 bits or 16 cells in TCAM
3043 * This is equivalent to 4 TIDs. With CLIP enabled it
3044 * needs 2 TIDs.
3045 */
3046 if (family == PF_INET)
3047 t->stids_in_use++;
3048 else
3049 t->stids_in_use += 4;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003050 }
3051 spin_unlock_bh(&t->stid_lock);
3052 return stid;
3053}
3054EXPORT_SYMBOL(cxgb4_alloc_stid);
3055
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003056/* Allocate a server filter TID and set it to the supplied value.
3057 */
3058int cxgb4_alloc_sftid(struct tid_info *t, int family, void *data)
3059{
3060 int stid;
3061
3062 spin_lock_bh(&t->stid_lock);
3063 if (family == PF_INET) {
3064 stid = find_next_zero_bit(t->stid_bmap,
3065 t->nstids + t->nsftids, t->nstids);
3066 if (stid < (t->nstids + t->nsftids))
3067 __set_bit(stid, t->stid_bmap);
3068 else
3069 stid = -1;
3070 } else {
3071 stid = -1;
3072 }
3073 if (stid >= 0) {
3074 t->stid_tab[stid].data = data;
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05303075 stid -= t->nstids;
3076 stid += t->sftid_base;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003077 t->stids_in_use++;
3078 }
3079 spin_unlock_bh(&t->stid_lock);
3080 return stid;
3081}
3082EXPORT_SYMBOL(cxgb4_alloc_sftid);
3083
3084/* Release a server TID.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003085 */
3086void cxgb4_free_stid(struct tid_info *t, unsigned int stid, int family)
3087{
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05303088 /* Is it a server filter TID? */
3089 if (t->nsftids && (stid >= t->sftid_base)) {
3090 stid -= t->sftid_base;
3091 stid += t->nstids;
3092 } else {
3093 stid -= t->stid_base;
3094 }
3095
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003096 spin_lock_bh(&t->stid_lock);
3097 if (family == PF_INET)
3098 __clear_bit(stid, t->stid_bmap);
3099 else
3100 bitmap_release_region(t->stid_bmap, stid, 2);
3101 t->stid_tab[stid].data = NULL;
Kumar Sanghvi15f63b72013-12-18 16:38:22 +05303102 if (family == PF_INET)
3103 t->stids_in_use--;
3104 else
3105 t->stids_in_use -= 4;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003106 spin_unlock_bh(&t->stid_lock);
3107}
3108EXPORT_SYMBOL(cxgb4_free_stid);
3109
3110/*
3111 * Populate a TID_RELEASE WR. Caller must properly size the skb.
3112 */
3113static void mk_tid_release(struct sk_buff *skb, unsigned int chan,
3114 unsigned int tid)
3115{
3116 struct cpl_tid_release *req;
3117
3118 set_wr_txq(skb, CPL_PRIORITY_SETUP, chan);
3119 req = (struct cpl_tid_release *)__skb_put(skb, sizeof(*req));
3120 INIT_TP_WR(req, tid);
3121 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_TID_RELEASE, tid));
3122}
3123
3124/*
3125 * Queue a TID release request and if necessary schedule a work queue to
3126 * process it.
3127 */
stephen hemminger31b9c192010-10-18 05:39:18 +00003128static void cxgb4_queue_tid_release(struct tid_info *t, unsigned int chan,
3129 unsigned int tid)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003130{
3131 void **p = &t->tid_tab[tid];
3132 struct adapter *adap = container_of(t, struct adapter, tids);
3133
3134 spin_lock_bh(&adap->tid_release_lock);
3135 *p = adap->tid_release_head;
3136 /* Low 2 bits encode the Tx channel number */
3137 adap->tid_release_head = (void **)((uintptr_t)p | chan);
3138 if (!adap->tid_release_task_busy) {
3139 adap->tid_release_task_busy = true;
Anish Bhatt29aaee62014-08-20 13:44:06 -07003140 queue_work(adap->workq, &adap->tid_release_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003141 }
3142 spin_unlock_bh(&adap->tid_release_lock);
3143}
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003144
3145/*
3146 * Process the list of pending TID release requests.
3147 */
3148static void process_tid_release_list(struct work_struct *work)
3149{
3150 struct sk_buff *skb;
3151 struct adapter *adap;
3152
3153 adap = container_of(work, struct adapter, tid_release_task);
3154
3155 spin_lock_bh(&adap->tid_release_lock);
3156 while (adap->tid_release_head) {
3157 void **p = adap->tid_release_head;
3158 unsigned int chan = (uintptr_t)p & 3;
3159 p = (void *)p - chan;
3160
3161 adap->tid_release_head = *p;
3162 *p = NULL;
3163 spin_unlock_bh(&adap->tid_release_lock);
3164
3165 while (!(skb = alloc_skb(sizeof(struct cpl_tid_release),
3166 GFP_KERNEL)))
3167 schedule_timeout_uninterruptible(1);
3168
3169 mk_tid_release(skb, chan, p - adap->tids.tid_tab);
3170 t4_ofld_send(adap, skb);
3171 spin_lock_bh(&adap->tid_release_lock);
3172 }
3173 adap->tid_release_task_busy = false;
3174 spin_unlock_bh(&adap->tid_release_lock);
3175}
3176
3177/*
3178 * Release a TID and inform HW. If we are unable to allocate the release
3179 * message we defer to a work queue.
3180 */
3181void cxgb4_remove_tid(struct tid_info *t, unsigned int chan, unsigned int tid)
3182{
3183 void *old;
3184 struct sk_buff *skb;
3185 struct adapter *adap = container_of(t, struct adapter, tids);
3186
3187 old = t->tid_tab[tid];
3188 skb = alloc_skb(sizeof(struct cpl_tid_release), GFP_ATOMIC);
3189 if (likely(skb)) {
3190 t->tid_tab[tid] = NULL;
3191 mk_tid_release(skb, chan, tid);
3192 t4_ofld_send(adap, skb);
3193 } else
3194 cxgb4_queue_tid_release(t, chan, tid);
3195 if (old)
3196 atomic_dec(&t->tids_in_use);
3197}
3198EXPORT_SYMBOL(cxgb4_remove_tid);
3199
3200/*
3201 * Allocate and initialize the TID tables. Returns 0 on success.
3202 */
3203static int tid_init(struct tid_info *t)
3204{
3205 size_t size;
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003206 unsigned int stid_bmap_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003207 unsigned int natids = t->natids;
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05303208 struct adapter *adap = container_of(t, struct adapter, tids);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003209
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003210 stid_bmap_size = BITS_TO_LONGS(t->nstids + t->nsftids);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003211 size = t->ntids * sizeof(*t->tid_tab) +
3212 natids * sizeof(*t->atid_tab) +
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003213 t->nstids * sizeof(*t->stid_tab) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003214 t->nsftids * sizeof(*t->stid_tab) +
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003215 stid_bmap_size * sizeof(long) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003216 t->nftids * sizeof(*t->ftid_tab) +
3217 t->nsftids * sizeof(*t->ftid_tab);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003218
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003219 t->tid_tab = t4_alloc_mem(size);
3220 if (!t->tid_tab)
3221 return -ENOMEM;
3222
3223 t->atid_tab = (union aopen_entry *)&t->tid_tab[t->ntids];
3224 t->stid_tab = (struct serv_entry *)&t->atid_tab[natids];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003225 t->stid_bmap = (unsigned long *)&t->stid_tab[t->nstids + t->nsftids];
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003226 t->ftid_tab = (struct filter_entry *)&t->stid_bmap[stid_bmap_size];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003227 spin_lock_init(&t->stid_lock);
3228 spin_lock_init(&t->atid_lock);
3229
3230 t->stids_in_use = 0;
3231 t->afree = NULL;
3232 t->atids_in_use = 0;
3233 atomic_set(&t->tids_in_use, 0);
3234
3235 /* Setup the free list for atid_tab and clear the stid bitmap. */
3236 if (natids) {
3237 while (--natids)
3238 t->atid_tab[natids - 1].next = &t->atid_tab[natids];
3239 t->afree = t->atid_tab;
3240 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003241 bitmap_zero(t->stid_bmap, t->nstids + t->nsftids);
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05303242 /* Reserve stid 0 for T4/T5 adapters */
3243 if (!t->stid_base &&
3244 (is_t4(adap->params.chip) || is_t5(adap->params.chip)))
3245 __set_bit(0, t->stid_bmap);
3246
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003247 return 0;
3248}
3249
3250/**
3251 * cxgb4_create_server - create an IP server
3252 * @dev: the device
3253 * @stid: the server TID
3254 * @sip: local IP address to bind server to
3255 * @sport: the server's TCP port
3256 * @queue: queue to direct messages from this server to
3257 *
3258 * Create an IP server for the given port and address.
3259 * Returns <0 on error and one of the %NET_XMIT_* values on success.
3260 */
3261int cxgb4_create_server(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00003262 __be32 sip, __be16 sport, __be16 vlan,
3263 unsigned int queue)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003264{
3265 unsigned int chan;
3266 struct sk_buff *skb;
3267 struct adapter *adap;
3268 struct cpl_pass_open_req *req;
Vipul Pandya80f40c12013-07-04 16:10:45 +05303269 int ret;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003270
3271 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
3272 if (!skb)
3273 return -ENOMEM;
3274
3275 adap = netdev2adap(dev);
3276 req = (struct cpl_pass_open_req *)__skb_put(skb, sizeof(*req));
3277 INIT_TP_WR(req, 0);
3278 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ, stid));
3279 req->local_port = sport;
3280 req->peer_port = htons(0);
3281 req->local_ip = sip;
3282 req->peer_ip = htonl(0);
Dimitris Michailidise46dab42010-08-23 17:20:58 +00003283 chan = rxq_to_chan(&adap->sge, queue);
Anish Bhattd7990b02014-11-12 17:15:57 -08003284 req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08003285 req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
3286 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05303287 ret = t4_mgmt_tx(adap, skb);
3288 return net_xmit_eval(ret);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003289}
3290EXPORT_SYMBOL(cxgb4_create_server);
3291
Vipul Pandya80f40c12013-07-04 16:10:45 +05303292/* cxgb4_create_server6 - create an IPv6 server
3293 * @dev: the device
3294 * @stid: the server TID
3295 * @sip: local IPv6 address to bind server to
3296 * @sport: the server's TCP port
3297 * @queue: queue to direct messages from this server to
3298 *
3299 * Create an IPv6 server for the given port and address.
3300 * Returns <0 on error and one of the %NET_XMIT_* values on success.
3301 */
3302int cxgb4_create_server6(const struct net_device *dev, unsigned int stid,
3303 const struct in6_addr *sip, __be16 sport,
3304 unsigned int queue)
3305{
3306 unsigned int chan;
3307 struct sk_buff *skb;
3308 struct adapter *adap;
3309 struct cpl_pass_open_req6 *req;
3310 int ret;
3311
3312 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
3313 if (!skb)
3314 return -ENOMEM;
3315
3316 adap = netdev2adap(dev);
3317 req = (struct cpl_pass_open_req6 *)__skb_put(skb, sizeof(*req));
3318 INIT_TP_WR(req, 0);
3319 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ6, stid));
3320 req->local_port = sport;
3321 req->peer_port = htons(0);
3322 req->local_ip_hi = *(__be64 *)(sip->s6_addr);
3323 req->local_ip_lo = *(__be64 *)(sip->s6_addr + 8);
3324 req->peer_ip_hi = cpu_to_be64(0);
3325 req->peer_ip_lo = cpu_to_be64(0);
3326 chan = rxq_to_chan(&adap->sge, queue);
Anish Bhattd7990b02014-11-12 17:15:57 -08003327 req->opt0 = cpu_to_be64(TX_CHAN_V(chan));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08003328 req->opt1 = cpu_to_be64(CONN_POLICY_V(CPL_CONN_POLICY_ASK) |
3329 SYN_RSS_ENABLE_F | SYN_RSS_QUEUE_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05303330 ret = t4_mgmt_tx(adap, skb);
3331 return net_xmit_eval(ret);
3332}
3333EXPORT_SYMBOL(cxgb4_create_server6);
3334
3335int cxgb4_remove_server(const struct net_device *dev, unsigned int stid,
3336 unsigned int queue, bool ipv6)
3337{
3338 struct sk_buff *skb;
3339 struct adapter *adap;
3340 struct cpl_close_listsvr_req *req;
3341 int ret;
3342
3343 adap = netdev2adap(dev);
3344
3345 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
3346 if (!skb)
3347 return -ENOMEM;
3348
3349 req = (struct cpl_close_listsvr_req *)__skb_put(skb, sizeof(*req));
3350 INIT_TP_WR(req, 0);
3351 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_CLOSE_LISTSRV_REQ, stid));
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08003352 req->reply_ctrl = htons(NO_REPLY_V(0) | (ipv6 ? LISTSVR_IPV6_V(1) :
3353 LISTSVR_IPV6_V(0)) | QUEUENO_V(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05303354 ret = t4_mgmt_tx(adap, skb);
3355 return net_xmit_eval(ret);
3356}
3357EXPORT_SYMBOL(cxgb4_remove_server);
3358
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003359/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003360 * cxgb4_best_mtu - find the entry in the MTU table closest to an MTU
3361 * @mtus: the HW MTU table
3362 * @mtu: the target MTU
3363 * @idx: index of selected entry in the MTU table
3364 *
3365 * Returns the index and the value in the HW MTU table that is closest to
3366 * but does not exceed @mtu, unless @mtu is smaller than any value in the
3367 * table, in which case that smallest available value is selected.
3368 */
3369unsigned int cxgb4_best_mtu(const unsigned short *mtus, unsigned short mtu,
3370 unsigned int *idx)
3371{
3372 unsigned int i = 0;
3373
3374 while (i < NMTUS - 1 && mtus[i + 1] <= mtu)
3375 ++i;
3376 if (idx)
3377 *idx = i;
3378 return mtus[i];
3379}
3380EXPORT_SYMBOL(cxgb4_best_mtu);
3381
3382/**
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05303383 * cxgb4_best_aligned_mtu - find best MTU, [hopefully] data size aligned
3384 * @mtus: the HW MTU table
3385 * @header_size: Header Size
3386 * @data_size_max: maximum Data Segment Size
3387 * @data_size_align: desired Data Segment Size Alignment (2^N)
3388 * @mtu_idxp: HW MTU Table Index return value pointer (possibly NULL)
3389 *
3390 * Similar to cxgb4_best_mtu() but instead of searching the Hardware
3391 * MTU Table based solely on a Maximum MTU parameter, we break that
3392 * parameter up into a Header Size and Maximum Data Segment Size, and
3393 * provide a desired Data Segment Size Alignment. If we find an MTU in
3394 * the Hardware MTU Table which will result in a Data Segment Size with
3395 * the requested alignment _and_ that MTU isn't "too far" from the
3396 * closest MTU, then we'll return that rather than the closest MTU.
3397 */
3398unsigned int cxgb4_best_aligned_mtu(const unsigned short *mtus,
3399 unsigned short header_size,
3400 unsigned short data_size_max,
3401 unsigned short data_size_align,
3402 unsigned int *mtu_idxp)
3403{
3404 unsigned short max_mtu = header_size + data_size_max;
3405 unsigned short data_size_align_mask = data_size_align - 1;
3406 int mtu_idx, aligned_mtu_idx;
3407
3408 /* Scan the MTU Table till we find an MTU which is larger than our
3409 * Maximum MTU or we reach the end of the table. Along the way,
3410 * record the last MTU found, if any, which will result in a Data
3411 * Segment Length matching the requested alignment.
3412 */
3413 for (mtu_idx = 0, aligned_mtu_idx = -1; mtu_idx < NMTUS; mtu_idx++) {
3414 unsigned short data_size = mtus[mtu_idx] - header_size;
3415
3416 /* If this MTU minus the Header Size would result in a
3417 * Data Segment Size of the desired alignment, remember it.
3418 */
3419 if ((data_size & data_size_align_mask) == 0)
3420 aligned_mtu_idx = mtu_idx;
3421
3422 /* If we're not at the end of the Hardware MTU Table and the
3423 * next element is larger than our Maximum MTU, drop out of
3424 * the loop.
3425 */
3426 if (mtu_idx+1 < NMTUS && mtus[mtu_idx+1] > max_mtu)
3427 break;
3428 }
3429
3430 /* If we fell out of the loop because we ran to the end of the table,
3431 * then we just have to use the last [largest] entry.
3432 */
3433 if (mtu_idx == NMTUS)
3434 mtu_idx--;
3435
3436 /* If we found an MTU which resulted in the requested Data Segment
3437 * Length alignment and that's "not far" from the largest MTU which is
3438 * less than or equal to the maximum MTU, then use that.
3439 */
3440 if (aligned_mtu_idx >= 0 &&
3441 mtu_idx - aligned_mtu_idx <= 1)
3442 mtu_idx = aligned_mtu_idx;
3443
3444 /* If the caller has passed in an MTU Index pointer, pass the
3445 * MTU Index back. Return the MTU value.
3446 */
3447 if (mtu_idxp)
3448 *mtu_idxp = mtu_idx;
3449 return mtus[mtu_idx];
3450}
3451EXPORT_SYMBOL(cxgb4_best_aligned_mtu);
3452
3453/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003454 * cxgb4_port_chan - get the HW channel of a port
3455 * @dev: the net device for the port
3456 *
3457 * Return the HW Tx channel of the given port.
3458 */
3459unsigned int cxgb4_port_chan(const struct net_device *dev)
3460{
3461 return netdev2pinfo(dev)->tx_chan;
3462}
3463EXPORT_SYMBOL(cxgb4_port_chan);
3464
Vipul Pandya881806b2012-05-18 15:29:24 +05303465unsigned int cxgb4_dbfifo_count(const struct net_device *dev, int lpfifo)
3466{
3467 struct adapter *adap = netdev2adap(dev);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003468 u32 v1, v2, lp_count, hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05303469
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303470 v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
3471 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303472 if (is_t4(adap->params.chip)) {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303473 lp_count = LP_COUNT_G(v1);
3474 hp_count = HP_COUNT_G(v1);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003475 } else {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303476 lp_count = LP_COUNT_T5_G(v1);
3477 hp_count = HP_COUNT_T5_G(v2);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003478 }
3479 return lpfifo ? lp_count : hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05303480}
3481EXPORT_SYMBOL(cxgb4_dbfifo_count);
3482
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003483/**
3484 * cxgb4_port_viid - get the VI id of a port
3485 * @dev: the net device for the port
3486 *
3487 * Return the VI id of the given port.
3488 */
3489unsigned int cxgb4_port_viid(const struct net_device *dev)
3490{
3491 return netdev2pinfo(dev)->viid;
3492}
3493EXPORT_SYMBOL(cxgb4_port_viid);
3494
3495/**
3496 * cxgb4_port_idx - get the index of a port
3497 * @dev: the net device for the port
3498 *
3499 * Return the index of the given port.
3500 */
3501unsigned int cxgb4_port_idx(const struct net_device *dev)
3502{
3503 return netdev2pinfo(dev)->port_id;
3504}
3505EXPORT_SYMBOL(cxgb4_port_idx);
3506
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003507void cxgb4_get_tcp_stats(struct pci_dev *pdev, struct tp_tcp_stats *v4,
3508 struct tp_tcp_stats *v6)
3509{
3510 struct adapter *adap = pci_get_drvdata(pdev);
3511
3512 spin_lock(&adap->stats_lock);
3513 t4_tp_get_tcp_stats(adap, v4, v6);
3514 spin_unlock(&adap->stats_lock);
3515}
3516EXPORT_SYMBOL(cxgb4_get_tcp_stats);
3517
3518void cxgb4_iscsi_init(struct net_device *dev, unsigned int tag_mask,
3519 const unsigned int *pgsz_order)
3520{
3521 struct adapter *adap = netdev2adap(dev);
3522
Hariprasad Shenai0d804332015-01-05 16:30:47 +05303523 t4_write_reg(adap, ULP_RX_ISCSI_TAGMASK_A, tag_mask);
3524 t4_write_reg(adap, ULP_RX_ISCSI_PSZ_A, HPZ0_V(pgsz_order[0]) |
3525 HPZ1_V(pgsz_order[1]) | HPZ2_V(pgsz_order[2]) |
3526 HPZ3_V(pgsz_order[3]));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003527}
3528EXPORT_SYMBOL(cxgb4_iscsi_init);
3529
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303530int cxgb4_flush_eq_cache(struct net_device *dev)
3531{
3532 struct adapter *adap = netdev2adap(dev);
3533 int ret;
3534
3535 ret = t4_fwaddrspace_write(adap, adap->mbox,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303536 0xe1000000 + SGE_CTXT_CMD_A, 0x20000000);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303537 return ret;
3538}
3539EXPORT_SYMBOL(cxgb4_flush_eq_cache);
3540
3541static int read_eq_indices(struct adapter *adap, u16 qid, u16 *pidx, u16 *cidx)
3542{
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303543 u32 addr = t4_read_reg(adap, SGE_DBQ_CTXT_BADDR_A) + 24 * qid + 8;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303544 __be64 indices;
3545 int ret;
3546
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303547 spin_lock(&adap->win0_lock);
3548 ret = t4_memory_rw(adap, 0, MEM_EDC0, addr,
3549 sizeof(indices), (__be32 *)&indices,
3550 T4_MEMORY_READ);
3551 spin_unlock(&adap->win0_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303552 if (!ret) {
Vipul Pandya404d9e32012-10-08 02:59:43 +00003553 *cidx = (be64_to_cpu(indices) >> 25) & 0xffff;
3554 *pidx = (be64_to_cpu(indices) >> 9) & 0xffff;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303555 }
3556 return ret;
3557}
3558
3559int cxgb4_sync_txq_pidx(struct net_device *dev, u16 qid, u16 pidx,
3560 u16 size)
3561{
3562 struct adapter *adap = netdev2adap(dev);
3563 u16 hw_pidx, hw_cidx;
3564 int ret;
3565
3566 ret = read_eq_indices(adap, qid, &hw_pidx, &hw_cidx);
3567 if (ret)
3568 goto out;
3569
3570 if (pidx != hw_pidx) {
3571 u16 delta;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303572 u32 val;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303573
3574 if (pidx >= hw_pidx)
3575 delta = pidx - hw_pidx;
3576 else
3577 delta = size - hw_pidx + pidx;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303578
3579 if (is_t4(adap->params.chip))
3580 val = PIDX_V(delta);
3581 else
3582 val = PIDX_T5_V(delta);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303583 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303584 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
3585 QID_V(qid) | val);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303586 }
3587out:
3588 return ret;
3589}
3590EXPORT_SYMBOL(cxgb4_sync_txq_pidx);
3591
Vipul Pandya3cbdb922013-03-14 05:08:59 +00003592void cxgb4_disable_db_coalescing(struct net_device *dev)
3593{
3594 struct adapter *adap;
3595
3596 adap = netdev2adap(dev);
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303597 t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, NOCOALESCE_F,
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303598 NOCOALESCE_F);
Vipul Pandya3cbdb922013-03-14 05:08:59 +00003599}
3600EXPORT_SYMBOL(cxgb4_disable_db_coalescing);
3601
3602void cxgb4_enable_db_coalescing(struct net_device *dev)
3603{
3604 struct adapter *adap;
3605
3606 adap = netdev2adap(dev);
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303607 t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, NOCOALESCE_F, 0);
Vipul Pandya3cbdb922013-03-14 05:08:59 +00003608}
3609EXPORT_SYMBOL(cxgb4_enable_db_coalescing);
3610
Hariprasad Shenai031cf472014-07-14 21:34:53 +05303611int cxgb4_read_tpte(struct net_device *dev, u32 stag, __be32 *tpte)
3612{
3613 struct adapter *adap;
3614 u32 offset, memtype, memaddr;
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05303615 u32 edc0_size, edc1_size, mc0_size, mc1_size, size;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05303616 u32 edc0_end, edc1_end, mc0_end, mc1_end;
3617 int ret;
3618
3619 adap = netdev2adap(dev);
3620
3621 offset = ((stag >> 8) * 32) + adap->vres.stag.start;
3622
3623 /* Figure out where the offset lands in the Memory Type/Address scheme.
3624 * This code assumes that the memory is laid out starting at offset 0
3625 * with no breaks as: EDC0, EDC1, MC0, MC1. All cards have both EDC0
3626 * and EDC1. Some cards will have neither MC0 nor MC1, most cards have
3627 * MC0, and some have both MC0 and MC1.
3628 */
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05303629 size = t4_read_reg(adap, MA_EDRAM0_BAR_A);
3630 edc0_size = EDRAM0_SIZE_G(size) << 20;
3631 size = t4_read_reg(adap, MA_EDRAM1_BAR_A);
3632 edc1_size = EDRAM1_SIZE_G(size) << 20;
3633 size = t4_read_reg(adap, MA_EXT_MEMORY0_BAR_A);
3634 mc0_size = EXT_MEM0_SIZE_G(size) << 20;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05303635
3636 edc0_end = edc0_size;
3637 edc1_end = edc0_end + edc1_size;
3638 mc0_end = edc1_end + mc0_size;
3639
3640 if (offset < edc0_end) {
3641 memtype = MEM_EDC0;
3642 memaddr = offset;
3643 } else if (offset < edc1_end) {
3644 memtype = MEM_EDC1;
3645 memaddr = offset - edc0_end;
3646 } else {
3647 if (offset < mc0_end) {
3648 memtype = MEM_MC0;
3649 memaddr = offset - edc1_end;
3650 } else if (is_t4(adap->params.chip)) {
3651 /* T4 only has a single memory channel */
3652 goto err;
3653 } else {
Hariprasad Shenai6559a7e2014-11-07 09:35:24 +05303654 size = t4_read_reg(adap, MA_EXT_MEMORY1_BAR_A);
3655 mc1_size = EXT_MEM1_SIZE_G(size) << 20;
Hariprasad Shenai031cf472014-07-14 21:34:53 +05303656 mc1_end = mc0_end + mc1_size;
3657 if (offset < mc1_end) {
3658 memtype = MEM_MC1;
3659 memaddr = offset - mc0_end;
3660 } else {
3661 /* offset beyond the end of any memory */
3662 goto err;
3663 }
3664 }
3665 }
3666
3667 spin_lock(&adap->win0_lock);
3668 ret = t4_memory_rw(adap, 0, memtype, memaddr, 32, tpte, T4_MEMORY_READ);
3669 spin_unlock(&adap->win0_lock);
3670 return ret;
3671
3672err:
3673 dev_err(adap->pdev_dev, "stag %#x, offset %#x out of range\n",
3674 stag, offset);
3675 return -EINVAL;
3676}
3677EXPORT_SYMBOL(cxgb4_read_tpte);
3678
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05303679u64 cxgb4_read_sge_timestamp(struct net_device *dev)
3680{
3681 u32 hi, lo;
3682 struct adapter *adap;
3683
3684 adap = netdev2adap(dev);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303685 lo = t4_read_reg(adap, SGE_TIMESTAMP_LO_A);
3686 hi = TSVAL_G(t4_read_reg(adap, SGE_TIMESTAMP_HI_A));
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05303687
3688 return ((u64)hi << 32) | (u64)lo;
3689}
3690EXPORT_SYMBOL(cxgb4_read_sge_timestamp);
3691
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05303692int cxgb4_bar2_sge_qregs(struct net_device *dev,
3693 unsigned int qid,
3694 enum cxgb4_bar2_qtype qtype,
3695 u64 *pbar2_qoffset,
3696 unsigned int *pbar2_qid)
3697{
Stephen Rothwelldd0bcc02014-12-10 19:48:02 +11003698 return cxgb4_t4_bar2_sge_qregs(netdev2adap(dev),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05303699 qid,
3700 (qtype == CXGB4_BAR2_QTYPE_EGRESS
3701 ? T4_BAR2_QTYPE_EGRESS
3702 : T4_BAR2_QTYPE_INGRESS),
3703 pbar2_qoffset,
3704 pbar2_qid);
3705}
3706EXPORT_SYMBOL(cxgb4_bar2_sge_qregs);
3707
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003708static struct pci_driver cxgb4_driver;
3709
3710static void check_neigh_update(struct neighbour *neigh)
3711{
3712 const struct device *parent;
3713 const struct net_device *netdev = neigh->dev;
3714
3715 if (netdev->priv_flags & IFF_802_1Q_VLAN)
3716 netdev = vlan_dev_real_dev(netdev);
3717 parent = netdev->dev.parent;
3718 if (parent && parent->driver == &cxgb4_driver.driver)
3719 t4_l2t_update(dev_get_drvdata(parent), neigh);
3720}
3721
3722static int netevent_cb(struct notifier_block *nb, unsigned long event,
3723 void *data)
3724{
3725 switch (event) {
3726 case NETEVENT_NEIGH_UPDATE:
3727 check_neigh_update(data);
3728 break;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003729 case NETEVENT_REDIRECT:
3730 default:
3731 break;
3732 }
3733 return 0;
3734}
3735
3736static bool netevent_registered;
3737static struct notifier_block cxgb4_netevent_nb = {
3738 .notifier_call = netevent_cb
3739};
3740
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303741static void drain_db_fifo(struct adapter *adap, int usecs)
3742{
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003743 u32 v1, v2, lp_count, hp_count;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303744
3745 do {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303746 v1 = t4_read_reg(adap, SGE_DBFIFO_STATUS_A);
3747 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2_A);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303748 if (is_t4(adap->params.chip)) {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303749 lp_count = LP_COUNT_G(v1);
3750 hp_count = HP_COUNT_G(v1);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003751 } else {
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303752 lp_count = LP_COUNT_T5_G(v1);
3753 hp_count = HP_COUNT_T5_G(v2);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003754 }
3755
3756 if (lp_count == 0 && hp_count == 0)
3757 break;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303758 set_current_state(TASK_UNINTERRUPTIBLE);
3759 schedule_timeout(usecs_to_jiffies(usecs));
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303760 } while (1);
3761}
3762
3763static void disable_txq_db(struct sge_txq *q)
3764{
Steve Wise05eb2382014-03-14 21:52:08 +05303765 unsigned long flags;
3766
3767 spin_lock_irqsave(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303768 q->db_disabled = 1;
Steve Wise05eb2382014-03-14 21:52:08 +05303769 spin_unlock_irqrestore(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303770}
3771
Steve Wise05eb2382014-03-14 21:52:08 +05303772static void enable_txq_db(struct adapter *adap, struct sge_txq *q)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303773{
3774 spin_lock_irq(&q->db_lock);
Steve Wise05eb2382014-03-14 21:52:08 +05303775 if (q->db_pidx_inc) {
3776 /* Make sure that all writes to the TX descriptors
3777 * are committed before we tell HW about them.
3778 */
3779 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303780 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
3781 QID_V(q->cntxt_id) | PIDX_V(q->db_pidx_inc));
Steve Wise05eb2382014-03-14 21:52:08 +05303782 q->db_pidx_inc = 0;
3783 }
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303784 q->db_disabled = 0;
3785 spin_unlock_irq(&q->db_lock);
3786}
3787
3788static void disable_dbs(struct adapter *adap)
3789{
3790 int i;
3791
3792 for_each_ethrxq(&adap->sge, i)
3793 disable_txq_db(&adap->sge.ethtxq[i].q);
3794 for_each_ofldrxq(&adap->sge, i)
3795 disable_txq_db(&adap->sge.ofldtxq[i].q);
3796 for_each_port(adap, i)
3797 disable_txq_db(&adap->sge.ctrlq[i].q);
3798}
3799
3800static void enable_dbs(struct adapter *adap)
3801{
3802 int i;
3803
3804 for_each_ethrxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05303805 enable_txq_db(adap, &adap->sge.ethtxq[i].q);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303806 for_each_ofldrxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05303807 enable_txq_db(adap, &adap->sge.ofldtxq[i].q);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303808 for_each_port(adap, i)
Steve Wise05eb2382014-03-14 21:52:08 +05303809 enable_txq_db(adap, &adap->sge.ctrlq[i].q);
3810}
3811
3812static void notify_rdma_uld(struct adapter *adap, enum cxgb4_control cmd)
3813{
3814 if (adap->uld_handle[CXGB4_ULD_RDMA])
3815 ulds[CXGB4_ULD_RDMA].control(adap->uld_handle[CXGB4_ULD_RDMA],
3816 cmd);
3817}
3818
3819static void process_db_full(struct work_struct *work)
3820{
3821 struct adapter *adap;
3822
3823 adap = container_of(work, struct adapter, db_full_task);
3824
3825 drain_db_fifo(adap, dbfifo_drain_delay);
3826 enable_dbs(adap);
3827 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303828 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
3829 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F,
3830 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303831}
3832
3833static void sync_txq_pidx(struct adapter *adap, struct sge_txq *q)
3834{
3835 u16 hw_pidx, hw_cidx;
3836 int ret;
3837
Steve Wise05eb2382014-03-14 21:52:08 +05303838 spin_lock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303839 ret = read_eq_indices(adap, (u16)q->cntxt_id, &hw_pidx, &hw_cidx);
3840 if (ret)
3841 goto out;
3842 if (q->db_pidx != hw_pidx) {
3843 u16 delta;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303844 u32 val;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303845
3846 if (q->db_pidx >= hw_pidx)
3847 delta = q->db_pidx - hw_pidx;
3848 else
3849 delta = q->size - hw_pidx + q->db_pidx;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303850
3851 if (is_t4(adap->params.chip))
3852 val = PIDX_V(delta);
3853 else
3854 val = PIDX_T5_V(delta);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303855 wmb();
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303856 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
3857 QID_V(q->cntxt_id) | val);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303858 }
3859out:
3860 q->db_disabled = 0;
Steve Wise05eb2382014-03-14 21:52:08 +05303861 q->db_pidx_inc = 0;
3862 spin_unlock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303863 if (ret)
3864 CH_WARN(adap, "DB drop recovery failed.\n");
3865}
3866static void recover_all_queues(struct adapter *adap)
3867{
3868 int i;
3869
3870 for_each_ethrxq(&adap->sge, i)
3871 sync_txq_pidx(adap, &adap->sge.ethtxq[i].q);
3872 for_each_ofldrxq(&adap->sge, i)
3873 sync_txq_pidx(adap, &adap->sge.ofldtxq[i].q);
3874 for_each_port(adap, i)
3875 sync_txq_pidx(adap, &adap->sge.ctrlq[i].q);
3876}
3877
Vipul Pandya881806b2012-05-18 15:29:24 +05303878static void process_db_drop(struct work_struct *work)
3879{
3880 struct adapter *adap;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303881
Vipul Pandya881806b2012-05-18 15:29:24 +05303882 adap = container_of(work, struct adapter, db_drop_task);
3883
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303884 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05303885 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003886 notify_rdma_uld(adap, CXGB4_CONTROL_DB_DROP);
Steve Wise05eb2382014-03-14 21:52:08 +05303887 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003888 recover_all_queues(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05303889 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003890 enable_dbs(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05303891 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003892 } else {
3893 u32 dropped_db = t4_read_reg(adap, 0x010ac);
3894 u16 qid = (dropped_db >> 15) & 0x1ffff;
3895 u16 pidx_inc = dropped_db & 0x1fff;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05303896 u64 bar2_qoffset;
3897 unsigned int bar2_qid;
3898 int ret;
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003899
Stephen Rothwelldd0bcc02014-12-10 19:48:02 +11003900 ret = cxgb4_t4_bar2_sge_qregs(adap, qid, T4_BAR2_QTYPE_EGRESS,
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05303901 &bar2_qoffset, &bar2_qid);
3902 if (ret)
3903 dev_err(adap->pdev_dev, "doorbell drop recovery: "
3904 "qid=%d, pidx_inc=%d\n", qid, pidx_inc);
3905 else
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303906 writel(PIDX_T5_V(pidx_inc) | QID_V(bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05303907 adap->bar2 + bar2_qoffset + SGE_UDB_KDOORBELL);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003908
3909 /* Re-enable BAR2 WC */
3910 t4_set_reg_field(adap, 0x10b0, 1<<15, 1<<15);
3911 }
3912
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303913 t4_set_reg_field(adap, SGE_DOORBELL_CONTROL_A, DROPPED_DB_F, 0);
Vipul Pandya881806b2012-05-18 15:29:24 +05303914}
3915
3916void t4_db_full(struct adapter *adap)
3917{
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303918 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05303919 disable_dbs(adap);
3920 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303921 t4_set_reg_field(adap, SGE_INT_ENABLE3_A,
3922 DBFIFO_HP_INT_F | DBFIFO_LP_INT_F, 0);
Anish Bhatt29aaee62014-08-20 13:44:06 -07003923 queue_work(adap->workq, &adap->db_full_task);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003924 }
Vipul Pandya881806b2012-05-18 15:29:24 +05303925}
3926
3927void t4_db_dropped(struct adapter *adap)
3928{
Steve Wise05eb2382014-03-14 21:52:08 +05303929 if (is_t4(adap->params.chip)) {
3930 disable_dbs(adap);
3931 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
3932 }
Anish Bhatt29aaee62014-08-20 13:44:06 -07003933 queue_work(adap->workq, &adap->db_drop_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05303934}
3935
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003936static void uld_attach(struct adapter *adap, unsigned int uld)
3937{
3938 void *handle;
3939 struct cxgb4_lld_info lli;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003940 unsigned short i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003941
3942 lli.pdev = adap->pdev;
Hariprasad Shenai35b1de52014-06-27 19:23:47 +05303943 lli.pf = adap->fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003944 lli.l2t = adap->l2t;
3945 lli.tids = &adap->tids;
3946 lli.ports = adap->port;
3947 lli.vr = &adap->vres;
3948 lli.mtus = adap->params.mtus;
3949 if (uld == CXGB4_ULD_RDMA) {
3950 lli.rxq_ids = adap->sge.rdma_rxq;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05303951 lli.ciq_ids = adap->sge.rdma_ciq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003952 lli.nrxq = adap->sge.rdmaqs;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05303953 lli.nciq = adap->sge.rdmaciqs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003954 } else if (uld == CXGB4_ULD_ISCSI) {
3955 lli.rxq_ids = adap->sge.ofld_rxq;
3956 lli.nrxq = adap->sge.ofldqsets;
3957 }
3958 lli.ntxq = adap->sge.ofldqsets;
3959 lli.nchan = adap->params.nports;
3960 lli.nports = adap->params.nports;
3961 lli.wr_cred = adap->params.ofldq_wr_cred;
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303962 lli.adapter_type = adap->params.chip;
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05303963 lli.iscsi_iolen = MAXRXDATA_G(t4_read_reg(adap, TP_PARA_REG2_A));
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05303964 lli.cclk_ps = 1000000000 / adap->params.vpd.cclk;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05303965 lli.udb_density = 1 << adap->params.sge.eq_qpp;
3966 lli.ucq_density = 1 << adap->params.sge.iq_qpp;
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05303967 lli.filt_mode = adap->params.tp.vlan_pri_map;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003968 /* MODQ_REQ_MAP sets queues 0-3 to chan 0-3 */
3969 for (i = 0; i < NCHAN; i++)
3970 lli.tx_modq[i] = i;
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303971 lli.gts_reg = adap->regs + MYPF_REG(SGE_PF_GTS_A);
3972 lli.db_reg = adap->regs + MYPF_REG(SGE_PF_KDOORBELL_A);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003973 lli.fw_vers = adap->params.fw_vers;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303974 lli.dbfifo_int_thresh = dbfifo_int_thresh;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +05303975 lli.sge_ingpadboundary = adap->sge.fl_align;
3976 lli.sge_egrstatuspagesize = adap->sge.stat_len;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003977 lli.sge_pktshift = adap->sge.pktshift;
3978 lli.enable_fw_ofld_conn = adap->flags & FW_OFLD_CONN;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303979 lli.max_ordird_qp = adap->params.max_ordird_qp;
3980 lli.max_ird_adapter = adap->params.max_ird_adapter;
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05303981 lli.ulptx_memwrite_dsgl = adap->params.ulptx_memwrite_dsgl;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003982
3983 handle = ulds[uld].add(&lli);
3984 if (IS_ERR(handle)) {
3985 dev_warn(adap->pdev_dev,
3986 "could not attach to the %s driver, error %ld\n",
3987 uld_str[uld], PTR_ERR(handle));
3988 return;
3989 }
3990
3991 adap->uld_handle[uld] = handle;
3992
3993 if (!netevent_registered) {
3994 register_netevent_notifier(&cxgb4_netevent_nb);
3995 netevent_registered = true;
3996 }
Dimitris Michailidise29f5db2010-05-18 10:07:13 +00003997
3998 if (adap->flags & FULL_INIT_DONE)
3999 ulds[uld].state_change(handle, CXGB4_STATE_UP);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004000}
4001
4002static void attach_ulds(struct adapter *adap)
4003{
4004 unsigned int i;
4005
Vipul Pandya01bcca62013-07-04 16:10:46 +05304006 spin_lock(&adap_rcu_lock);
4007 list_add_tail_rcu(&adap->rcu_node, &adap_rcu_list);
4008 spin_unlock(&adap_rcu_lock);
4009
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004010 mutex_lock(&uld_mutex);
4011 list_add_tail(&adap->list_node, &adapter_list);
4012 for (i = 0; i < CXGB4_ULD_MAX; i++)
4013 if (ulds[i].add)
4014 uld_attach(adap, i);
4015 mutex_unlock(&uld_mutex);
4016}
4017
4018static void detach_ulds(struct adapter *adap)
4019{
4020 unsigned int i;
4021
4022 mutex_lock(&uld_mutex);
4023 list_del(&adap->list_node);
4024 for (i = 0; i < CXGB4_ULD_MAX; i++)
4025 if (adap->uld_handle[i]) {
4026 ulds[i].state_change(adap->uld_handle[i],
4027 CXGB4_STATE_DETACH);
4028 adap->uld_handle[i] = NULL;
4029 }
4030 if (netevent_registered && list_empty(&adapter_list)) {
4031 unregister_netevent_notifier(&cxgb4_netevent_nb);
4032 netevent_registered = false;
4033 }
4034 mutex_unlock(&uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +05304035
4036 spin_lock(&adap_rcu_lock);
4037 list_del_rcu(&adap->rcu_node);
4038 spin_unlock(&adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004039}
4040
4041static void notify_ulds(struct adapter *adap, enum cxgb4_state new_state)
4042{
4043 unsigned int i;
4044
4045 mutex_lock(&uld_mutex);
4046 for (i = 0; i < CXGB4_ULD_MAX; i++)
4047 if (adap->uld_handle[i])
4048 ulds[i].state_change(adap->uld_handle[i], new_state);
4049 mutex_unlock(&uld_mutex);
4050}
4051
4052/**
4053 * cxgb4_register_uld - register an upper-layer driver
4054 * @type: the ULD type
4055 * @p: the ULD methods
4056 *
4057 * Registers an upper-layer driver with this driver and notifies the ULD
4058 * about any presently available devices that support its type. Returns
4059 * %-EBUSY if a ULD of the same type is already registered.
4060 */
4061int cxgb4_register_uld(enum cxgb4_uld type, const struct cxgb4_uld_info *p)
4062{
4063 int ret = 0;
4064 struct adapter *adap;
4065
4066 if (type >= CXGB4_ULD_MAX)
4067 return -EINVAL;
4068 mutex_lock(&uld_mutex);
4069 if (ulds[type].add) {
4070 ret = -EBUSY;
4071 goto out;
4072 }
4073 ulds[type] = *p;
4074 list_for_each_entry(adap, &adapter_list, list_node)
4075 uld_attach(adap, type);
4076out: mutex_unlock(&uld_mutex);
4077 return ret;
4078}
4079EXPORT_SYMBOL(cxgb4_register_uld);
4080
4081/**
4082 * cxgb4_unregister_uld - unregister an upper-layer driver
4083 * @type: the ULD type
4084 *
4085 * Unregisters an existing upper-layer driver.
4086 */
4087int cxgb4_unregister_uld(enum cxgb4_uld type)
4088{
4089 struct adapter *adap;
4090
4091 if (type >= CXGB4_ULD_MAX)
4092 return -EINVAL;
4093 mutex_lock(&uld_mutex);
4094 list_for_each_entry(adap, &adapter_list, list_node)
4095 adap->uld_handle[type] = NULL;
4096 ulds[type].add = NULL;
4097 mutex_unlock(&uld_mutex);
4098 return 0;
4099}
4100EXPORT_SYMBOL(cxgb4_unregister_uld);
4101
Anish Bhatt1bb60372014-10-14 20:07:22 -07004102#if IS_ENABLED(CONFIG_IPV6)
Anish Bhattb5a02f52015-01-14 15:17:34 -08004103static int cxgb4_inet6addr_handler(struct notifier_block *this,
4104 unsigned long event, void *data)
Vipul Pandya01bcca62013-07-04 16:10:46 +05304105{
Anish Bhattb5a02f52015-01-14 15:17:34 -08004106 struct inet6_ifaddr *ifa = data;
4107 struct net_device *event_dev = ifa->idev->dev;
4108 const struct device *parent = NULL;
4109#if IS_ENABLED(CONFIG_BONDING)
Vipul Pandya01bcca62013-07-04 16:10:46 +05304110 struct adapter *adap;
Anish Bhattb5a02f52015-01-14 15:17:34 -08004111#endif
4112 if (event_dev->priv_flags & IFF_802_1Q_VLAN)
4113 event_dev = vlan_dev_real_dev(event_dev);
4114#if IS_ENABLED(CONFIG_BONDING)
4115 if (event_dev->flags & IFF_MASTER) {
4116 list_for_each_entry(adap, &adapter_list, list_node) {
4117 switch (event) {
4118 case NETDEV_UP:
4119 cxgb4_clip_get(adap->port[0],
4120 (const u32 *)ifa, 1);
4121 break;
4122 case NETDEV_DOWN:
4123 cxgb4_clip_release(adap->port[0],
4124 (const u32 *)ifa, 1);
4125 break;
4126 default:
4127 break;
4128 }
4129 }
4130 return NOTIFY_OK;
4131 }
4132#endif
Vipul Pandya01bcca62013-07-04 16:10:46 +05304133
Anish Bhattb5a02f52015-01-14 15:17:34 -08004134 if (event_dev)
4135 parent = event_dev->dev.parent;
Vipul Pandya01bcca62013-07-04 16:10:46 +05304136
Anish Bhattb5a02f52015-01-14 15:17:34 -08004137 if (parent && parent->driver == &cxgb4_driver.driver) {
Vipul Pandya01bcca62013-07-04 16:10:46 +05304138 switch (event) {
4139 case NETDEV_UP:
Anish Bhattb5a02f52015-01-14 15:17:34 -08004140 cxgb4_clip_get(event_dev, (const u32 *)ifa, 1);
Vipul Pandya01bcca62013-07-04 16:10:46 +05304141 break;
4142 case NETDEV_DOWN:
Anish Bhattb5a02f52015-01-14 15:17:34 -08004143 cxgb4_clip_release(event_dev, (const u32 *)ifa, 1);
Vipul Pandya01bcca62013-07-04 16:10:46 +05304144 break;
4145 default:
4146 break;
4147 }
4148 }
Anish Bhattb5a02f52015-01-14 15:17:34 -08004149 return NOTIFY_OK;
Vipul Pandya01bcca62013-07-04 16:10:46 +05304150}
4151
Anish Bhattb5a02f52015-01-14 15:17:34 -08004152static bool inet6addr_registered;
Vipul Pandya01bcca62013-07-04 16:10:46 +05304153static struct notifier_block cxgb4_inet6addr_notifier = {
4154 .notifier_call = cxgb4_inet6addr_handler
4155};
4156
Vipul Pandya01bcca62013-07-04 16:10:46 +05304157static void update_clip(const struct adapter *adap)
4158{
4159 int i;
4160 struct net_device *dev;
4161 int ret;
4162
4163 rcu_read_lock();
4164
4165 for (i = 0; i < MAX_NPORTS; i++) {
4166 dev = adap->port[i];
4167 ret = 0;
4168
4169 if (dev)
Anish Bhattb5a02f52015-01-14 15:17:34 -08004170 ret = cxgb4_update_root_dev_clip(dev);
Vipul Pandya01bcca62013-07-04 16:10:46 +05304171
4172 if (ret < 0)
4173 break;
4174 }
4175 rcu_read_unlock();
4176}
Anish Bhatt1bb60372014-10-14 20:07:22 -07004177#endif /* IS_ENABLED(CONFIG_IPV6) */
Vipul Pandya01bcca62013-07-04 16:10:46 +05304178
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004179/**
4180 * cxgb_up - enable the adapter
4181 * @adap: adapter being enabled
4182 *
4183 * Called when the first port is enabled, this function performs the
4184 * actions necessary to make an adapter operational, such as completing
4185 * the initialization of HW modules, and enabling interrupts.
4186 *
4187 * Must be called with the rtnl lock held.
4188 */
4189static int cxgb_up(struct adapter *adap)
4190{
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004191 int err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004192
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004193 err = setup_sge_queues(adap);
4194 if (err)
4195 goto out;
4196 err = setup_rss(adap);
4197 if (err)
4198 goto freeq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004199
4200 if (adap->flags & USING_MSIX) {
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004201 name_msix_vecs(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004202 err = request_irq(adap->msix_info[0].vec, t4_nondata_intr, 0,
4203 adap->msix_info[0].desc, adap);
4204 if (err)
4205 goto irq_err;
4206
4207 err = request_msix_queue_irqs(adap);
4208 if (err) {
4209 free_irq(adap->msix_info[0].vec, adap);
4210 goto irq_err;
4211 }
4212 } else {
4213 err = request_irq(adap->pdev->irq, t4_intr_handler(adap),
4214 (adap->flags & USING_MSI) ? 0 : IRQF_SHARED,
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00004215 adap->port[0]->name, adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004216 if (err)
4217 goto irq_err;
4218 }
4219 enable_rx(adap);
4220 t4_sge_start(adap);
4221 t4_intr_enable(adap);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004222 adap->flags |= FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004223 notify_ulds(adap, CXGB4_STATE_UP);
Anish Bhatt1bb60372014-10-14 20:07:22 -07004224#if IS_ENABLED(CONFIG_IPV6)
Vipul Pandya01bcca62013-07-04 16:10:46 +05304225 update_clip(adap);
Anish Bhatt1bb60372014-10-14 20:07:22 -07004226#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004227 out:
4228 return err;
4229 irq_err:
4230 dev_err(adap->pdev_dev, "request_irq failed, err %d\n", err);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004231 freeq:
4232 t4_free_sge_resources(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004233 goto out;
4234}
4235
4236static void cxgb_down(struct adapter *adapter)
4237{
4238 t4_intr_disable(adapter);
4239 cancel_work_sync(&adapter->tid_release_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05304240 cancel_work_sync(&adapter->db_full_task);
4241 cancel_work_sync(&adapter->db_drop_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004242 adapter->tid_release_task_busy = false;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004243 adapter->tid_release_head = NULL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004244
4245 if (adapter->flags & USING_MSIX) {
4246 free_msix_queue_irqs(adapter);
4247 free_irq(adapter->msix_info[0].vec, adapter);
4248 } else
4249 free_irq(adapter->pdev->irq, adapter);
4250 quiesce_rx(adapter);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004251 t4_sge_stop(adapter);
4252 t4_free_sge_resources(adapter);
4253 adapter->flags &= ~FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004254}
4255
4256/*
4257 * net_device operations
4258 */
4259static int cxgb_open(struct net_device *dev)
4260{
4261 int err;
4262 struct port_info *pi = netdev_priv(dev);
4263 struct adapter *adapter = pi->adapter;
4264
Dimitris Michailidis6a3c8692011-01-19 15:29:05 +00004265 netif_carrier_off(dev);
4266
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004267 if (!(adapter->flags & FULL_INIT_DONE)) {
4268 err = cxgb_up(adapter);
4269 if (err < 0)
4270 return err;
4271 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004272
Dimitris Michailidisf68707b2010-06-18 10:05:32 +00004273 err = link_start(dev);
4274 if (!err)
4275 netif_tx_start_all_queues(dev);
4276 return err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004277}
4278
4279static int cxgb_close(struct net_device *dev)
4280{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004281 struct port_info *pi = netdev_priv(dev);
4282 struct adapter *adapter = pi->adapter;
4283
4284 netif_tx_stop_all_queues(dev);
4285 netif_carrier_off(dev);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004286 return t4_enable_vi(adapter, adapter->fn, pi->viid, false, false);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004287}
4288
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00004289/* Return an error number if the indicated filter isn't writable ...
4290 */
4291static int writable_filter(struct filter_entry *f)
4292{
4293 if (f->locked)
4294 return -EPERM;
4295 if (f->pending)
4296 return -EBUSY;
4297
4298 return 0;
4299}
4300
4301/* Delete the filter at the specified index (if valid). The checks for all
4302 * the common problems with doing this like the filter being locked, currently
4303 * pending in another operation, etc.
4304 */
4305static int delete_filter(struct adapter *adapter, unsigned int fidx)
4306{
4307 struct filter_entry *f;
4308 int ret;
4309
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004310 if (fidx >= adapter->tids.nftids + adapter->tids.nsftids)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00004311 return -EINVAL;
4312
4313 f = &adapter->tids.ftid_tab[fidx];
4314 ret = writable_filter(f);
4315 if (ret)
4316 return ret;
4317 if (f->valid)
4318 return del_filter_wr(adapter, fidx);
4319
4320 return 0;
4321}
4322
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004323int cxgb4_create_server_filter(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00004324 __be32 sip, __be16 sport, __be16 vlan,
4325 unsigned int queue, unsigned char port, unsigned char mask)
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004326{
4327 int ret;
4328 struct filter_entry *f;
4329 struct adapter *adap;
4330 int i;
4331 u8 *val;
4332
4333 adap = netdev2adap(dev);
4334
Vipul Pandya1cab7752012-12-10 09:30:55 +00004335 /* Adjust stid to correct filter index */
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05304336 stid -= adap->tids.sftid_base;
Vipul Pandya1cab7752012-12-10 09:30:55 +00004337 stid += adap->tids.nftids;
4338
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004339 /* Check to make sure the filter requested is writable ...
4340 */
4341 f = &adap->tids.ftid_tab[stid];
4342 ret = writable_filter(f);
4343 if (ret)
4344 return ret;
4345
4346 /* Clear out any old resources being used by the filter before
4347 * we start constructing the new filter.
4348 */
4349 if (f->valid)
4350 clear_filter(adap, f);
4351
4352 /* Clear out filter specifications */
4353 memset(&f->fs, 0, sizeof(struct ch_filter_specification));
4354 f->fs.val.lport = cpu_to_be16(sport);
4355 f->fs.mask.lport = ~0;
4356 val = (u8 *)&sip;
Vipul Pandya793dad92012-12-10 09:30:56 +00004357 if ((val[0] | val[1] | val[2] | val[3]) != 0) {
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004358 for (i = 0; i < 4; i++) {
4359 f->fs.val.lip[i] = val[i];
4360 f->fs.mask.lip[i] = ~0;
4361 }
Hariprasad Shenai0d804332015-01-05 16:30:47 +05304362 if (adap->params.tp.vlan_pri_map & PORT_F) {
Vipul Pandya793dad92012-12-10 09:30:56 +00004363 f->fs.val.iport = port;
4364 f->fs.mask.iport = mask;
4365 }
4366 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004367
Hariprasad Shenai0d804332015-01-05 16:30:47 +05304368 if (adap->params.tp.vlan_pri_map & PROTOCOL_F) {
Kumar Sanghvi7c89e552013-12-18 16:38:20 +05304369 f->fs.val.proto = IPPROTO_TCP;
4370 f->fs.mask.proto = ~0;
4371 }
4372
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004373 f->fs.dirsteer = 1;
4374 f->fs.iq = queue;
4375 /* Mark filter as locked */
4376 f->locked = 1;
4377 f->fs.rpttid = 1;
4378
4379 ret = set_filter_wr(adap, stid);
4380 if (ret) {
4381 clear_filter(adap, f);
4382 return ret;
4383 }
4384
4385 return 0;
4386}
4387EXPORT_SYMBOL(cxgb4_create_server_filter);
4388
4389int cxgb4_remove_server_filter(const struct net_device *dev, unsigned int stid,
4390 unsigned int queue, bool ipv6)
4391{
4392 int ret;
4393 struct filter_entry *f;
4394 struct adapter *adap;
4395
4396 adap = netdev2adap(dev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00004397
4398 /* Adjust stid to correct filter index */
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05304399 stid -= adap->tids.sftid_base;
Vipul Pandya1cab7752012-12-10 09:30:55 +00004400 stid += adap->tids.nftids;
4401
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004402 f = &adap->tids.ftid_tab[stid];
4403 /* Unlock the filter */
4404 f->locked = 0;
4405
4406 ret = delete_filter(adap, stid);
4407 if (ret)
4408 return ret;
4409
4410 return 0;
4411}
4412EXPORT_SYMBOL(cxgb4_remove_server_filter);
4413
Dimitris Michailidisf5152c92010-07-07 16:11:25 +00004414static struct rtnl_link_stats64 *cxgb_get_stats(struct net_device *dev,
4415 struct rtnl_link_stats64 *ns)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004416{
4417 struct port_stats stats;
4418 struct port_info *p = netdev_priv(dev);
4419 struct adapter *adapter = p->adapter;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004420
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004421 /* Block retrieving statistics during EEH error
4422 * recovery. Otherwise, the recovery might fail
4423 * and the PCI device will be removed permanently
4424 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004425 spin_lock(&adapter->stats_lock);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004426 if (!netif_device_present(dev)) {
4427 spin_unlock(&adapter->stats_lock);
4428 return ns;
4429 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004430 t4_get_port_stats(adapter, p->tx_chan, &stats);
4431 spin_unlock(&adapter->stats_lock);
4432
4433 ns->tx_bytes = stats.tx_octets;
4434 ns->tx_packets = stats.tx_frames;
4435 ns->rx_bytes = stats.rx_octets;
4436 ns->rx_packets = stats.rx_frames;
4437 ns->multicast = stats.rx_mcast_frames;
4438
4439 /* detailed rx_errors */
4440 ns->rx_length_errors = stats.rx_jabber + stats.rx_too_long +
4441 stats.rx_runt;
4442 ns->rx_over_errors = 0;
4443 ns->rx_crc_errors = stats.rx_fcs_err;
4444 ns->rx_frame_errors = stats.rx_symbol_err;
4445 ns->rx_fifo_errors = stats.rx_ovflow0 + stats.rx_ovflow1 +
4446 stats.rx_ovflow2 + stats.rx_ovflow3 +
4447 stats.rx_trunc0 + stats.rx_trunc1 +
4448 stats.rx_trunc2 + stats.rx_trunc3;
4449 ns->rx_missed_errors = 0;
4450
4451 /* detailed tx_errors */
4452 ns->tx_aborted_errors = 0;
4453 ns->tx_carrier_errors = 0;
4454 ns->tx_fifo_errors = 0;
4455 ns->tx_heartbeat_errors = 0;
4456 ns->tx_window_errors = 0;
4457
4458 ns->tx_errors = stats.tx_error_frames;
4459 ns->rx_errors = stats.rx_symbol_err + stats.rx_fcs_err +
4460 ns->rx_length_errors + stats.rx_len_err + ns->rx_fifo_errors;
4461 return ns;
4462}
4463
4464static int cxgb_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
4465{
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004466 unsigned int mbox;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004467 int ret = 0, prtad, devad;
4468 struct port_info *pi = netdev_priv(dev);
4469 struct mii_ioctl_data *data = (struct mii_ioctl_data *)&req->ifr_data;
4470
4471 switch (cmd) {
4472 case SIOCGMIIPHY:
4473 if (pi->mdio_addr < 0)
4474 return -EOPNOTSUPP;
4475 data->phy_id = pi->mdio_addr;
4476 break;
4477 case SIOCGMIIREG:
4478 case SIOCSMIIREG:
4479 if (mdio_phy_id_is_c45(data->phy_id)) {
4480 prtad = mdio_phy_id_prtad(data->phy_id);
4481 devad = mdio_phy_id_devad(data->phy_id);
4482 } else if (data->phy_id < 32) {
4483 prtad = data->phy_id;
4484 devad = 0;
4485 data->reg_num &= 0x1f;
4486 } else
4487 return -EINVAL;
4488
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004489 mbox = pi->adapter->fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004490 if (cmd == SIOCGMIIREG)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004491 ret = t4_mdio_rd(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004492 data->reg_num, &data->val_out);
4493 else
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004494 ret = t4_mdio_wr(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004495 data->reg_num, data->val_in);
4496 break;
4497 default:
4498 return -EOPNOTSUPP;
4499 }
4500 return ret;
4501}
4502
4503static void cxgb_set_rxmode(struct net_device *dev)
4504{
4505 /* unfortunately we can't return errors to the stack */
4506 set_rxmode(dev, -1, false);
4507}
4508
4509static int cxgb_change_mtu(struct net_device *dev, int new_mtu)
4510{
4511 int ret;
4512 struct port_info *pi = netdev_priv(dev);
4513
4514 if (new_mtu < 81 || new_mtu > MAX_MTU) /* accommodate SACK */
4515 return -EINVAL;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004516 ret = t4_set_rxmode(pi->adapter, pi->adapter->fn, pi->viid, new_mtu, -1,
4517 -1, -1, -1, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004518 if (!ret)
4519 dev->mtu = new_mtu;
4520 return ret;
4521}
4522
4523static int cxgb_set_mac_addr(struct net_device *dev, void *p)
4524{
4525 int ret;
4526 struct sockaddr *addr = p;
4527 struct port_info *pi = netdev_priv(dev);
4528
4529 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00004530 return -EADDRNOTAVAIL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004531
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004532 ret = t4_change_mac(pi->adapter, pi->adapter->fn, pi->viid,
4533 pi->xact_addr_filt, addr->sa_data, true, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004534 if (ret < 0)
4535 return ret;
4536
4537 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
4538 pi->xact_addr_filt = ret;
4539 return 0;
4540}
4541
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004542#ifdef CONFIG_NET_POLL_CONTROLLER
4543static void cxgb_netpoll(struct net_device *dev)
4544{
4545 struct port_info *pi = netdev_priv(dev);
4546 struct adapter *adap = pi->adapter;
4547
4548 if (adap->flags & USING_MSIX) {
4549 int i;
4550 struct sge_eth_rxq *rx = &adap->sge.ethrxq[pi->first_qset];
4551
4552 for (i = pi->nqsets; i; i--, rx++)
4553 t4_sge_intr_msix(0, &rx->rspq);
4554 } else
4555 t4_intr_handler(adap)(0, adap);
4556}
4557#endif
4558
4559static const struct net_device_ops cxgb4_netdev_ops = {
4560 .ndo_open = cxgb_open,
4561 .ndo_stop = cxgb_close,
4562 .ndo_start_xmit = t4_eth_xmit,
Anish Bhatt688848b2014-06-19 21:37:13 -07004563 .ndo_select_queue = cxgb_select_queue,
Dimitris Michailidis9be793b2010-06-18 10:05:31 +00004564 .ndo_get_stats64 = cxgb_get_stats,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004565 .ndo_set_rx_mode = cxgb_set_rxmode,
4566 .ndo_set_mac_address = cxgb_set_mac_addr,
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00004567 .ndo_set_features = cxgb_set_features,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004568 .ndo_validate_addr = eth_validate_addr,
4569 .ndo_do_ioctl = cxgb_ioctl,
4570 .ndo_change_mtu = cxgb_change_mtu,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004571#ifdef CONFIG_NET_POLL_CONTROLLER
4572 .ndo_poll_controller = cxgb_netpoll,
4573#endif
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05304574#ifdef CONFIG_NET_RX_BUSY_POLL
4575 .ndo_busy_poll = cxgb_busy_poll,
4576#endif
4577
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004578};
4579
4580void t4_fatal_err(struct adapter *adap)
4581{
Hariprasad Shenaif612b812015-01-05 16:30:43 +05304582 t4_set_reg_field(adap, SGE_CONTROL_A, GLOBALENABLE_F, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004583 t4_intr_disable(adap);
4584 dev_alert(adap->pdev_dev, "encountered fatal error, adapter stopped\n");
4585}
4586
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304587/* Return the specified PCI-E Configuration Space register from our Physical
4588 * Function. We try first via a Firmware LDST Command since we prefer to let
4589 * the firmware own all of these registers, but if that fails we go for it
4590 * directly ourselves.
4591 */
4592static u32 t4_read_pcie_cfg4(struct adapter *adap, int reg)
4593{
4594 struct fw_ldst_cmd ldst_cmd;
4595 u32 val;
4596 int ret;
4597
4598 /* Construct and send the Firmware LDST Command to retrieve the
4599 * specified PCI-E Configuration Space register.
4600 */
4601 memset(&ldst_cmd, 0, sizeof(ldst_cmd));
4602 ldst_cmd.op_to_addrspace =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05304603 htonl(FW_CMD_OP_V(FW_LDST_CMD) |
4604 FW_CMD_REQUEST_F |
4605 FW_CMD_READ_F |
Hariprasad Shenai51678652014-11-21 12:52:02 +05304606 FW_LDST_CMD_ADDRSPACE_V(FW_LDST_ADDRSPC_FUNC_PCIE));
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304607 ldst_cmd.cycles_to_len16 = htonl(FW_LEN16(ldst_cmd));
Hariprasad Shenai51678652014-11-21 12:52:02 +05304608 ldst_cmd.u.pcie.select_naccess = FW_LDST_CMD_NACCESS_V(1);
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304609 ldst_cmd.u.pcie.ctrl_to_fn =
Hariprasad Shenai51678652014-11-21 12:52:02 +05304610 (FW_LDST_CMD_LC_F | FW_LDST_CMD_FN_V(adap->fn));
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304611 ldst_cmd.u.pcie.r = reg;
4612 ret = t4_wr_mbox(adap, adap->mbox, &ldst_cmd, sizeof(ldst_cmd),
4613 &ldst_cmd);
4614
4615 /* If the LDST Command suucceeded, exctract the returned register
4616 * value. Otherwise read it directly ourself.
4617 */
4618 if (ret == 0)
4619 val = ntohl(ldst_cmd.u.pcie.data[0]);
4620 else
4621 t4_hw_pci_read_cfg4(adap, reg, &val);
4622
4623 return val;
4624}
4625
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004626static void setup_memwin(struct adapter *adap)
4627{
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304628 u32 mem_win0_base, mem_win1_base, mem_win2_base, mem_win2_aperture;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004629
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05304630 if (is_t4(adap->params.chip)) {
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304631 u32 bar0;
4632
4633 /* Truncation intentional: we only read the bottom 32-bits of
4634 * the 64-bit BAR0/BAR1 ... We use the hardware backdoor
4635 * mechanism to read BAR0 instead of using
4636 * pci_resource_start() because we could be operating from
4637 * within a Virtual Machine which is trapping our accesses to
4638 * our Configuration Space and we need to set up the PCI-E
4639 * Memory Window decoders with the actual addresses which will
4640 * be coming across the PCI-E link.
4641 */
4642 bar0 = t4_read_pcie_cfg4(adap, PCI_BASE_ADDRESS_0);
4643 bar0 &= PCI_BASE_ADDRESS_MEM_MASK;
4644 adap->t4_bar0 = bar0;
4645
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004646 mem_win0_base = bar0 + MEMWIN0_BASE;
4647 mem_win1_base = bar0 + MEMWIN1_BASE;
4648 mem_win2_base = bar0 + MEMWIN2_BASE;
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304649 mem_win2_aperture = MEMWIN2_APERTURE;
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004650 } else {
4651 /* For T5, only relative offset inside the PCIe BAR is passed */
4652 mem_win0_base = MEMWIN0_BASE;
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304653 mem_win1_base = MEMWIN1_BASE;
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004654 mem_win2_base = MEMWIN2_BASE_T5;
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304655 mem_win2_aperture = MEMWIN2_APERTURE_T5;
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004656 }
Hariprasad Shenaif061de422015-01-05 16:30:44 +05304657 t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 0),
4658 mem_win0_base | BIR_V(0) |
4659 WINDOW_V(ilog2(MEMWIN0_APERTURE) - 10));
4660 t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 1),
4661 mem_win1_base | BIR_V(0) |
4662 WINDOW_V(ilog2(MEMWIN1_APERTURE) - 10));
4663 t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 2),
4664 mem_win2_base | BIR_V(0) |
4665 WINDOW_V(ilog2(mem_win2_aperture) - 10));
4666 t4_read_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 2));
Vipul Pandya636f9d32012-09-26 02:39:39 +00004667}
4668
4669static void setup_memwin_rdma(struct adapter *adap)
4670{
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004671 if (adap->vres.ocq.size) {
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304672 u32 start;
4673 unsigned int sz_kb;
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004674
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304675 start = t4_read_pcie_cfg4(adap, PCI_BASE_ADDRESS_2);
4676 start &= PCI_BASE_ADDRESS_MEM_MASK;
4677 start += OCQ_WIN_OFFSET(adap->pdev, &adap->vres);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004678 sz_kb = roundup_pow_of_two(adap->vres.ocq.size) >> 10;
4679 t4_write_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05304680 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN_A, 3),
4681 start | BIR_V(1) | WINDOW_V(ilog2(sz_kb)));
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004682 t4_write_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05304683 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3),
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004684 adap->vres.ocq.start);
4685 t4_read_reg(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05304686 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET_A, 3));
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004687 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004688}
4689
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004690static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c)
4691{
4692 u32 v;
4693 int ret;
4694
4695 /* get device capabilities */
4696 memset(c, 0, sizeof(*c));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05304697 c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
4698 FW_CMD_REQUEST_F | FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05304699 c->cfvalid_to_len16 = htonl(FW_LEN16(*c));
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004700 ret = t4_wr_mbox(adap, adap->fn, c, sizeof(*c), c);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004701 if (ret < 0)
4702 return ret;
4703
4704 /* select capabilities we'll be using */
4705 if (c->niccaps & htons(FW_CAPS_CONFIG_NIC_VM)) {
4706 if (!vf_acls)
4707 c->niccaps ^= htons(FW_CAPS_CONFIG_NIC_VM);
4708 else
4709 c->niccaps = htons(FW_CAPS_CONFIG_NIC_VM);
4710 } else if (vf_acls) {
4711 dev_err(adap->pdev_dev, "virtualization ACLs not supported");
4712 return ret;
4713 }
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05304714 c->op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
4715 FW_CMD_REQUEST_F | FW_CMD_WRITE_F);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004716 ret = t4_wr_mbox(adap, adap->fn, c, sizeof(*c), NULL);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004717 if (ret < 0)
4718 return ret;
4719
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004720 ret = t4_config_glbl_rss(adap, adap->fn,
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004721 FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL,
Hariprasad Shenaib2e1a3f2014-11-21 12:52:05 +05304722 FW_RSS_GLB_CONFIG_CMD_TNLMAPEN_F |
4723 FW_RSS_GLB_CONFIG_CMD_TNLALLLKP_F);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004724 if (ret < 0)
4725 return ret;
4726
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004727 ret = t4_cfg_pfvf(adap, adap->fn, adap->fn, 0, MAX_EGRQ, 64, MAX_INGQ,
4728 0, 0, 4, 0xf, 0xf, 16, FW_CMD_CAP_PF, FW_CMD_CAP_PF);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004729 if (ret < 0)
4730 return ret;
4731
4732 t4_sge_init(adap);
4733
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004734 /* tweak some settings */
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05304735 t4_write_reg(adap, TP_SHIFT_CNT_A, 0x64f8849);
Hariprasad Shenai0d804332015-01-05 16:30:47 +05304736 t4_write_reg(adap, ULP_RX_TDDP_PSZ_A, HPZ0_V(PAGE_SHIFT - 12));
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05304737 t4_write_reg(adap, TP_PIO_ADDR_A, TP_INGRESS_CONFIG_A);
4738 v = t4_read_reg(adap, TP_PIO_DATA_A);
4739 t4_write_reg(adap, TP_PIO_DATA_A, v & ~CSUM_HAS_PSEUDO_HDR_F);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004740
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004741 /* first 4 Tx modulation queues point to consecutive Tx channels */
4742 adap->params.tp.tx_modq_map = 0xE4;
Hariprasad Shenai0d804332015-01-05 16:30:47 +05304743 t4_write_reg(adap, TP_TX_MOD_QUEUE_REQ_MAP_A,
4744 TX_MOD_QUEUE_REQ_MAP_V(adap->params.tp.tx_modq_map));
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004745
4746 /* associate each Tx modulation queue with consecutive Tx channels */
4747 v = 0x84218421;
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05304748 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05304749 &v, 1, TP_TX_SCHED_HDR_A);
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05304750 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05304751 &v, 1, TP_TX_SCHED_FIFO_A);
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05304752 t4_write_indirect(adap, TP_PIO_ADDR_A, TP_PIO_DATA_A,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05304753 &v, 1, TP_TX_SCHED_PCMD_A);
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004754
4755#define T4_TX_MODQ_10G_WEIGHT_DEFAULT 16 /* in KB units */
4756 if (is_offload(adap)) {
Hariprasad Shenai0d804332015-01-05 16:30:47 +05304757 t4_write_reg(adap, TP_TX_MOD_QUEUE_WEIGHT0_A,
4758 TX_MODQ_WEIGHT0_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
4759 TX_MODQ_WEIGHT1_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
4760 TX_MODQ_WEIGHT2_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
4761 TX_MODQ_WEIGHT3_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
4762 t4_write_reg(adap, TP_TX_MOD_CHANNEL_WEIGHT_A,
4763 TX_MODQ_WEIGHT0_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
4764 TX_MODQ_WEIGHT1_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
4765 TX_MODQ_WEIGHT2_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
4766 TX_MODQ_WEIGHT3_V(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004767 }
4768
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004769 /* get basic stuff going */
4770 return t4_early_init(adap, adap->fn);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004771}
4772
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004773/*
4774 * Max # of ATIDs. The absolute HW max is 16K but we keep it lower.
4775 */
4776#define MAX_ATIDS 8192U
4777
4778/*
4779 * Phase 0 of initialization: contact FW, obtain config, perform basic init.
Vipul Pandya636f9d32012-09-26 02:39:39 +00004780 *
4781 * If the firmware we're dealing with has Configuration File support, then
4782 * we use that to perform all configuration
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004783 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00004784
4785/*
4786 * Tweak configuration based on module parameters, etc. Most of these have
4787 * defaults assigned to them by Firmware Configuration Files (if we're using
4788 * them) but need to be explicitly set if we're using hard-coded
4789 * initialization. But even in the case of using Firmware Configuration
4790 * Files, we'd like to expose the ability to change these via module
4791 * parameters so these are essentially common tweaks/settings for
4792 * Configuration Files and hard-coded initialization ...
4793 */
4794static int adap_init0_tweaks(struct adapter *adapter)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004795{
Vipul Pandya636f9d32012-09-26 02:39:39 +00004796 /*
4797 * Fix up various Host-Dependent Parameters like Page Size, Cache
4798 * Line Size, etc. The firmware default is for a 4KB Page Size and
4799 * 64B Cache Line Size ...
4800 */
4801 t4_fixup_host_params(adapter, PAGE_SIZE, L1_CACHE_BYTES);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004802
Vipul Pandya636f9d32012-09-26 02:39:39 +00004803 /*
4804 * Process module parameters which affect early initialization.
4805 */
4806 if (rx_dma_offset != 2 && rx_dma_offset != 0) {
4807 dev_err(&adapter->pdev->dev,
4808 "Ignoring illegal rx_dma_offset=%d, using 2\n",
4809 rx_dma_offset);
4810 rx_dma_offset = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004811 }
Hariprasad Shenaif612b812015-01-05 16:30:43 +05304812 t4_set_reg_field(adapter, SGE_CONTROL_A,
4813 PKTSHIFT_V(PKTSHIFT_M),
4814 PKTSHIFT_V(rx_dma_offset));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004815
Vipul Pandya636f9d32012-09-26 02:39:39 +00004816 /*
4817 * Don't include the "IP Pseudo Header" in CPL_RX_PKT checksums: Linux
4818 * adds the pseudo header itself.
4819 */
Hariprasad Shenai837e4a42015-01-05 16:30:46 +05304820 t4_tp_wr_bits_indirect(adapter, TP_INGRESS_CONFIG_A,
4821 CSUM_HAS_PSEUDO_HDR_F, 0);
Vipul Pandya636f9d32012-09-26 02:39:39 +00004822
4823 return 0;
4824}
4825
4826/*
4827 * Attempt to initialize the adapter via a Firmware Configuration File.
4828 */
4829static int adap_init0_config(struct adapter *adapter, int reset)
4830{
4831 struct fw_caps_config_cmd caps_cmd;
4832 const struct firmware *cf;
4833 unsigned long mtype = 0, maddr = 0;
4834 u32 finiver, finicsum, cfcsum;
Hariprasad Shenai16e47622013-12-03 17:05:58 +05304835 int ret;
4836 int config_issued = 0;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00004837 char *fw_config_file, fw_config_file_path[256];
Hariprasad Shenai16e47622013-12-03 17:05:58 +05304838 char *config_name = NULL;
Vipul Pandya636f9d32012-09-26 02:39:39 +00004839
4840 /*
4841 * Reset device if necessary.
4842 */
4843 if (reset) {
4844 ret = t4_fw_reset(adapter, adapter->mbox,
Hariprasad Shenai0d804332015-01-05 16:30:47 +05304845 PIORSTMODE_F | PIORST_F);
Vipul Pandya636f9d32012-09-26 02:39:39 +00004846 if (ret < 0)
4847 goto bye;
4848 }
4849
4850 /*
4851 * If we have a T4 configuration file under /lib/firmware/cxgb4/,
4852 * then use that. Otherwise, use the configuration file stored
4853 * in the adapter flash ...
4854 */
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05304855 switch (CHELSIO_CHIP_VERSION(adapter->params.chip)) {
Santosh Rastapur0a57a532013-03-14 05:08:49 +00004856 case CHELSIO_T4:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05304857 fw_config_file = FW4_CFNAME;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00004858 break;
4859 case CHELSIO_T5:
4860 fw_config_file = FW5_CFNAME;
4861 break;
4862 default:
4863 dev_err(adapter->pdev_dev, "Device %d is not supported\n",
4864 adapter->pdev->device);
4865 ret = -EINVAL;
4866 goto bye;
4867 }
4868
4869 ret = request_firmware(&cf, fw_config_file, adapter->pdev_dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004870 if (ret < 0) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05304871 config_name = "On FLASH";
Vipul Pandya636f9d32012-09-26 02:39:39 +00004872 mtype = FW_MEMTYPE_CF_FLASH;
4873 maddr = t4_flash_cfg_addr(adapter);
4874 } else {
4875 u32 params[7], val[7];
4876
Hariprasad Shenai16e47622013-12-03 17:05:58 +05304877 sprintf(fw_config_file_path,
4878 "/lib/firmware/%s", fw_config_file);
4879 config_name = fw_config_file_path;
4880
Vipul Pandya636f9d32012-09-26 02:39:39 +00004881 if (cf->size >= FLASH_CFG_MAX_SIZE)
4882 ret = -ENOMEM;
4883 else {
Hariprasad Shenai51678652014-11-21 12:52:02 +05304884 params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
4885 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
Vipul Pandya636f9d32012-09-26 02:39:39 +00004886 ret = t4_query_params(adapter, adapter->mbox,
4887 adapter->fn, 0, 1, params, val);
4888 if (ret == 0) {
4889 /*
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05304890 * For t4_memory_rw() below addresses and
Vipul Pandya636f9d32012-09-26 02:39:39 +00004891 * sizes have to be in terms of multiples of 4
4892 * bytes. So, if the Configuration File isn't
4893 * a multiple of 4 bytes in length we'll have
4894 * to write that out separately since we can't
4895 * guarantee that the bytes following the
4896 * residual byte in the buffer returned by
4897 * request_firmware() are zeroed out ...
4898 */
4899 size_t resid = cf->size & 0x3;
4900 size_t size = cf->size & ~0x3;
4901 __be32 *data = (__be32 *)cf->data;
4902
Hariprasad Shenai51678652014-11-21 12:52:02 +05304903 mtype = FW_PARAMS_PARAM_Y_G(val[0]);
4904 maddr = FW_PARAMS_PARAM_Z_G(val[0]) << 16;
Vipul Pandya636f9d32012-09-26 02:39:39 +00004905
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05304906 spin_lock(&adapter->win0_lock);
4907 ret = t4_memory_rw(adapter, 0, mtype, maddr,
4908 size, data, T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00004909 if (ret == 0 && resid != 0) {
4910 union {
4911 __be32 word;
4912 char buf[4];
4913 } last;
4914 int i;
4915
4916 last.word = data[size >> 2];
4917 for (i = resid; i < 4; i++)
4918 last.buf[i] = 0;
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05304919 ret = t4_memory_rw(adapter, 0, mtype,
4920 maddr + size,
4921 4, &last.word,
4922 T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00004923 }
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05304924 spin_unlock(&adapter->win0_lock);
Vipul Pandya636f9d32012-09-26 02:39:39 +00004925 }
4926 }
4927
4928 release_firmware(cf);
4929 if (ret)
4930 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004931 }
4932
Vipul Pandya636f9d32012-09-26 02:39:39 +00004933 /*
4934 * Issue a Capability Configuration command to the firmware to get it
4935 * to parse the Configuration File. We don't use t4_fw_config_file()
4936 * because we want the ability to modify various features after we've
4937 * processed the configuration file ...
4938 */
4939 memset(&caps_cmd, 0, sizeof(caps_cmd));
4940 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05304941 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
4942 FW_CMD_REQUEST_F |
4943 FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05304944 caps_cmd.cfvalid_to_len16 =
Hariprasad Shenai51678652014-11-21 12:52:02 +05304945 htonl(FW_CAPS_CONFIG_CMD_CFVALID_F |
4946 FW_CAPS_CONFIG_CMD_MEMTYPE_CF_V(mtype) |
4947 FW_CAPS_CONFIG_CMD_MEMADDR64K_CF_V(maddr >> 16) |
Vipul Pandya636f9d32012-09-26 02:39:39 +00004948 FW_LEN16(caps_cmd));
4949 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
4950 &caps_cmd);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05304951
4952 /* If the CAPS_CONFIG failed with an ENOENT (for a Firmware
4953 * Configuration File in FLASH), our last gasp effort is to use the
4954 * Firmware Configuration File which is embedded in the firmware. A
4955 * very few early versions of the firmware didn't have one embedded
4956 * but we can ignore those.
4957 */
4958 if (ret == -ENOENT) {
4959 memset(&caps_cmd, 0, sizeof(caps_cmd));
4960 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05304961 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
4962 FW_CMD_REQUEST_F |
4963 FW_CMD_READ_F);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05304964 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
4965 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd,
4966 sizeof(caps_cmd), &caps_cmd);
4967 config_name = "Firmware Default";
4968 }
4969
4970 config_issued = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004971 if (ret < 0)
4972 goto bye;
4973
Vipul Pandya636f9d32012-09-26 02:39:39 +00004974 finiver = ntohl(caps_cmd.finiver);
4975 finicsum = ntohl(caps_cmd.finicsum);
4976 cfcsum = ntohl(caps_cmd.cfcsum);
4977 if (finicsum != cfcsum)
4978 dev_warn(adapter->pdev_dev, "Configuration File checksum "\
4979 "mismatch: [fini] csum=%#x, computed csum=%#x\n",
4980 finicsum, cfcsum);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004981
Vipul Pandya636f9d32012-09-26 02:39:39 +00004982 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00004983 * And now tell the firmware to use the configuration we just loaded.
4984 */
4985 caps_cmd.op_to_write =
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05304986 htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
4987 FW_CMD_REQUEST_F |
4988 FW_CMD_WRITE_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05304989 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00004990 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
4991 NULL);
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00004992 if (ret < 0)
4993 goto bye;
4994
Vipul Pandya636f9d32012-09-26 02:39:39 +00004995 /*
4996 * Tweak configuration based on system architecture, module
4997 * parameters, etc.
4998 */
4999 ret = adap_init0_tweaks(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005000 if (ret < 0)
5001 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005002
Vipul Pandya636f9d32012-09-26 02:39:39 +00005003 /*
5004 * And finally tell the firmware to initialize itself using the
5005 * parameters from the Configuration File.
5006 */
5007 ret = t4_fw_initialize(adapter, adapter->mbox);
5008 if (ret < 0)
5009 goto bye;
5010
Hariprasad Shenai06640312015-01-13 15:19:25 +05305011 /* Emit Firmware Configuration File information and return
5012 * successfully.
Vipul Pandya636f9d32012-09-26 02:39:39 +00005013 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00005014 dev_info(adapter->pdev_dev, "Successfully configured using Firmware "\
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305015 "Configuration File \"%s\", version %#x, computed checksum %#x\n",
5016 config_name, finiver, cfcsum);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005017 return 0;
5018
5019 /*
5020 * Something bad happened. Return the error ... (If the "error"
5021 * is that there's no Configuration File on the adapter we don't
5022 * want to issue a warning since this is fairly common.)
5023 */
5024bye:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305025 if (config_issued && ret != -ENOENT)
5026 dev_warn(adapter->pdev_dev, "\"%s\" configuration file error %d\n",
5027 config_name, -ret);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005028 return ret;
5029}
5030
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305031static struct fw_info fw_info_array[] = {
5032 {
5033 .chip = CHELSIO_T4,
5034 .fs_name = FW4_CFNAME,
5035 .fw_mod_name = FW4_FNAME,
5036 .fw_hdr = {
5037 .chip = FW_HDR_CHIP_T4,
5038 .fw_ver = __cpu_to_be32(FW_VERSION(T4)),
5039 .intfver_nic = FW_INTFVER(T4, NIC),
5040 .intfver_vnic = FW_INTFVER(T4, VNIC),
5041 .intfver_ri = FW_INTFVER(T4, RI),
5042 .intfver_iscsi = FW_INTFVER(T4, ISCSI),
5043 .intfver_fcoe = FW_INTFVER(T4, FCOE),
5044 },
5045 }, {
5046 .chip = CHELSIO_T5,
5047 .fs_name = FW5_CFNAME,
5048 .fw_mod_name = FW5_FNAME,
5049 .fw_hdr = {
5050 .chip = FW_HDR_CHIP_T5,
5051 .fw_ver = __cpu_to_be32(FW_VERSION(T5)),
5052 .intfver_nic = FW_INTFVER(T5, NIC),
5053 .intfver_vnic = FW_INTFVER(T5, VNIC),
5054 .intfver_ri = FW_INTFVER(T5, RI),
5055 .intfver_iscsi = FW_INTFVER(T5, ISCSI),
5056 .intfver_fcoe = FW_INTFVER(T5, FCOE),
5057 },
5058 }
5059};
5060
5061static struct fw_info *find_fw_info(int chip)
5062{
5063 int i;
5064
5065 for (i = 0; i < ARRAY_SIZE(fw_info_array); i++) {
5066 if (fw_info_array[i].chip == chip)
5067 return &fw_info_array[i];
5068 }
5069 return NULL;
5070}
5071
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005072/*
Vipul Pandya636f9d32012-09-26 02:39:39 +00005073 * Phase 0 of initialization: contact FW, obtain config, perform basic init.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005074 */
5075static int adap_init0(struct adapter *adap)
5076{
5077 int ret;
5078 u32 v, port_vec;
5079 enum dev_state state;
5080 u32 params[7], val[7];
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00005081 struct fw_caps_config_cmd caps_cmd;
Hariprasad Shenai49aa2842015-01-07 08:48:00 +05305082 struct fw_devlog_cmd devlog_cmd;
5083 u32 devlog_meminfo;
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05305084 int reset = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005085
Hariprasad Shenai666224d2014-12-11 11:11:43 +05305086 /* Contact FW, advertising Master capability */
5087 ret = t4_fw_hello(adap, adap->mbox, adap->mbox, MASTER_MAY, &state);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005088 if (ret < 0) {
5089 dev_err(adap->pdev_dev, "could not connect to FW, error %d\n",
5090 ret);
5091 return ret;
5092 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00005093 if (ret == adap->mbox)
5094 adap->flags |= MASTER_PF;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005095
Vipul Pandya636f9d32012-09-26 02:39:39 +00005096 /*
5097 * If we're the Master PF Driver and the device is uninitialized,
5098 * then let's consider upgrading the firmware ... (We always want
5099 * to check the firmware version number in order to A. get it for
5100 * later reporting and B. to warn if the currently loaded firmware
5101 * is excessively mismatched relative to the driver.)
5102 */
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305103 t4_get_fw_version(adap, &adap->params.fw_vers);
5104 t4_get_tp_version(adap, &adap->params.tp_vers);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005105 if ((adap->flags & MASTER_PF) && state != DEV_STATE_INIT) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305106 struct fw_info *fw_info;
5107 struct fw_hdr *card_fw;
5108 const struct firmware *fw;
5109 const u8 *fw_data = NULL;
5110 unsigned int fw_size = 0;
5111
5112 /* This is the firmware whose headers the driver was compiled
5113 * against
5114 */
5115 fw_info = find_fw_info(CHELSIO_CHIP_VERSION(adap->params.chip));
5116 if (fw_info == NULL) {
5117 dev_err(adap->pdev_dev,
5118 "unable to get firmware info for chip %d.\n",
5119 CHELSIO_CHIP_VERSION(adap->params.chip));
5120 return -EINVAL;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005121 }
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305122
5123 /* allocate memory to read the header of the firmware on the
5124 * card
5125 */
5126 card_fw = t4_alloc_mem(sizeof(*card_fw));
5127
5128 /* Get FW from from /lib/firmware/ */
5129 ret = request_firmware(&fw, fw_info->fw_mod_name,
5130 adap->pdev_dev);
5131 if (ret < 0) {
5132 dev_err(adap->pdev_dev,
5133 "unable to load firmware image %s, error %d\n",
5134 fw_info->fw_mod_name, ret);
5135 } else {
5136 fw_data = fw->data;
5137 fw_size = fw->size;
5138 }
5139
5140 /* upgrade FW logic */
5141 ret = t4_prep_fw(adap, fw_info, fw_data, fw_size, card_fw,
5142 state, &reset);
5143
5144 /* Cleaning up */
5145 if (fw != NULL)
5146 release_firmware(fw);
5147 t4_free_mem(card_fw);
5148
Vipul Pandya636f9d32012-09-26 02:39:39 +00005149 if (ret < 0)
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305150 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005151 }
5152
5153 /*
5154 * Grab VPD parameters. This should be done after we establish a
5155 * connection to the firmware since some of the VPD parameters
5156 * (notably the Core Clock frequency) are retrieved via requests to
5157 * the firmware. On the other hand, we need these fairly early on
5158 * so we do this right after getting ahold of the firmware.
5159 */
5160 ret = get_vpd_params(adap, &adap->params.vpd);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005161 if (ret < 0)
5162 goto bye;
5163
Hariprasad Shenai49aa2842015-01-07 08:48:00 +05305164 /* Read firmware device log parameters. We really need to find a way
5165 * to get these parameters initialized with some default values (which
5166 * are likely to be correct) for the case where we either don't
5167 * attache to the firmware or it's crashed when we probe the adapter.
5168 * That way we'll still be able to perform early firmware startup
5169 * debugging ... If the request to get the Firmware's Device Log
5170 * parameters fails, we'll live so we don't make that a fatal error.
5171 */
5172 memset(&devlog_cmd, 0, sizeof(devlog_cmd));
5173 devlog_cmd.op_to_write = htonl(FW_CMD_OP_V(FW_DEVLOG_CMD) |
5174 FW_CMD_REQUEST_F | FW_CMD_READ_F);
5175 devlog_cmd.retval_len16 = htonl(FW_LEN16(devlog_cmd));
5176 ret = t4_wr_mbox(adap, adap->mbox, &devlog_cmd, sizeof(devlog_cmd),
5177 &devlog_cmd);
5178 if (ret == 0) {
5179 devlog_meminfo =
5180 ntohl(devlog_cmd.memtype_devlog_memaddr16_devlog);
5181 adap->params.devlog.memtype =
5182 FW_DEVLOG_CMD_MEMTYPE_DEVLOG_G(devlog_meminfo);
5183 adap->params.devlog.start =
5184 FW_DEVLOG_CMD_MEMADDR16_DEVLOG_G(devlog_meminfo) << 4;
5185 adap->params.devlog.size = ntohl(devlog_cmd.memsize_devlog);
5186 }
5187
Vipul Pandya636f9d32012-09-26 02:39:39 +00005188 /*
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005189 * Find out what ports are available to us. Note that we need to do
5190 * this before calling adap_init0_no_config() since it needs nports
5191 * and portvec ...
Vipul Pandya636f9d32012-09-26 02:39:39 +00005192 */
5193 v =
Hariprasad Shenai51678652014-11-21 12:52:02 +05305194 FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
5195 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_PORTVEC);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005196 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 1, &v, &port_vec);
5197 if (ret < 0)
5198 goto bye;
5199
5200 adap->params.nports = hweight32(port_vec);
5201 adap->params.portvec = port_vec;
5202
Hariprasad Shenai06640312015-01-13 15:19:25 +05305203 /* If the firmware is initialized already, emit a simply note to that
5204 * effect. Otherwise, it's time to try initializing the adapter.
Vipul Pandya636f9d32012-09-26 02:39:39 +00005205 */
5206 if (state == DEV_STATE_INIT) {
5207 dev_info(adap->pdev_dev, "Coming up as %s: "\
5208 "Adapter already initialized\n",
5209 adap->flags & MASTER_PF ? "MASTER" : "SLAVE");
Vipul Pandya636f9d32012-09-26 02:39:39 +00005210 } else {
5211 dev_info(adap->pdev_dev, "Coming up as MASTER: "\
5212 "Initializing adapter\n");
Hariprasad Shenai06640312015-01-13 15:19:25 +05305213
5214 /* Find out whether we're dealing with a version of the
5215 * firmware which has configuration file support.
Vipul Pandya636f9d32012-09-26 02:39:39 +00005216 */
Hariprasad Shenai06640312015-01-13 15:19:25 +05305217 params[0] = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) |
5218 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_CF));
5219 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 1,
5220 params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005221
Hariprasad Shenai06640312015-01-13 15:19:25 +05305222 /* If the firmware doesn't support Configuration Files,
5223 * return an error.
5224 */
5225 if (ret < 0) {
5226 dev_err(adap->pdev_dev, "firmware doesn't support "
5227 "Firmware Configuration Files\n");
5228 goto bye;
5229 }
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005230
Hariprasad Shenai06640312015-01-13 15:19:25 +05305231 /* The firmware provides us with a memory buffer where we can
5232 * load a Configuration File from the host if we want to
5233 * override the Configuration File in flash.
5234 */
5235 ret = adap_init0_config(adap, reset);
5236 if (ret == -ENOENT) {
5237 dev_err(adap->pdev_dev, "no Configuration File "
5238 "present on adapter.\n");
5239 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005240 }
5241 if (ret < 0) {
Hariprasad Shenai06640312015-01-13 15:19:25 +05305242 dev_err(adap->pdev_dev, "could not initialize "
5243 "adapter, error %d\n", -ret);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005244 goto bye;
5245 }
5246 }
5247
Hariprasad Shenai06640312015-01-13 15:19:25 +05305248 /* Give the SGE code a chance to pull in anything that it needs ...
5249 * Note that this must be called after we retrieve our VPD parameters
5250 * in order to know how to convert core ticks to seconds, etc.
Vipul Pandya636f9d32012-09-26 02:39:39 +00005251 */
Hariprasad Shenai06640312015-01-13 15:19:25 +05305252 ret = t4_sge_init(adap);
5253 if (ret < 0)
5254 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005255
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00005256 if (is_bypass_device(adap->pdev->device))
5257 adap->params.bypass = 1;
5258
Vipul Pandya636f9d32012-09-26 02:39:39 +00005259 /*
5260 * Grab some of our basic fundamental operating parameters.
5261 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005262#define FW_PARAM_DEV(param) \
Hariprasad Shenai51678652014-11-21 12:52:02 +05305263 (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DEV) | \
5264 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DEV_##param))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005265
5266#define FW_PARAM_PFVF(param) \
Hariprasad Shenai51678652014-11-21 12:52:02 +05305267 FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_PFVF) | \
5268 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_PFVF_##param)| \
5269 FW_PARAMS_PARAM_Y_V(0) | \
5270 FW_PARAMS_PARAM_Z_V(0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005271
Vipul Pandya636f9d32012-09-26 02:39:39 +00005272 params[0] = FW_PARAM_PFVF(EQ_START);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005273 params[1] = FW_PARAM_PFVF(L2T_START);
5274 params[2] = FW_PARAM_PFVF(L2T_END);
5275 params[3] = FW_PARAM_PFVF(FILTER_START);
5276 params[4] = FW_PARAM_PFVF(FILTER_END);
5277 params[5] = FW_PARAM_PFVF(IQFLINT_START);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005278 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6, params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005279 if (ret < 0)
5280 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005281 adap->sge.egr_start = val[0];
5282 adap->l2t_start = val[1];
5283 adap->l2t_end = val[2];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005284 adap->tids.ftid_base = val[3];
5285 adap->tids.nftids = val[4] - val[3] + 1;
5286 adap->sge.ingr_start = val[5];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005287
Anish Bhattb5a02f52015-01-14 15:17:34 -08005288 params[0] = FW_PARAM_PFVF(CLIP_START);
5289 params[1] = FW_PARAM_PFVF(CLIP_END);
5290 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, params, val);
5291 if (ret < 0)
5292 goto bye;
5293 adap->clipt_start = val[0];
5294 adap->clipt_end = val[1];
5295
Vipul Pandya636f9d32012-09-26 02:39:39 +00005296 /* query params related to active filter region */
5297 params[0] = FW_PARAM_PFVF(ACTIVE_FILTER_START);
5298 params[1] = FW_PARAM_PFVF(ACTIVE_FILTER_END);
5299 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, params, val);
5300 /* If Active filter size is set we enable establishing
5301 * offload connection through firmware work request
5302 */
5303 if ((val[0] != val[1]) && (ret >= 0)) {
5304 adap->flags |= FW_OFLD_CONN;
5305 adap->tids.aftid_base = val[0];
5306 adap->tids.aftid_end = val[1];
5307 }
5308
Vipul Pandyab407a4a2013-04-29 04:04:40 +00005309 /* If we're running on newer firmware, let it know that we're
5310 * prepared to deal with encapsulated CPL messages. Older
5311 * firmware won't understand this and we'll just get
5312 * unencapsulated messages ...
5313 */
5314 params[0] = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
5315 val[0] = 1;
5316 (void) t4_set_params(adap, adap->mbox, adap->fn, 0, 1, params, val);
5317
Vipul Pandya636f9d32012-09-26 02:39:39 +00005318 /*
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05305319 * Find out whether we're allowed to use the T5+ ULPTX MEMWRITE DSGL
5320 * capability. Earlier versions of the firmware didn't have the
5321 * ULPTX_MEMWRITE_DSGL so we'll interpret a query failure as no
5322 * permission to use ULPTX MEMWRITE DSGL.
5323 */
5324 if (is_t4(adap->params.chip)) {
5325 adap->params.ulptx_memwrite_dsgl = false;
5326 } else {
5327 params[0] = FW_PARAM_DEV(ULPTX_MEMWRITE_DSGL);
5328 ret = t4_query_params(adap, adap->mbox, adap->fn, 0,
5329 1, params, val);
5330 adap->params.ulptx_memwrite_dsgl = (ret == 0 && val[0] != 0);
5331 }
5332
5333 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00005334 * Get device capabilities so we can determine what resources we need
5335 * to manage.
5336 */
5337 memset(&caps_cmd, 0, sizeof(caps_cmd));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05305338 caps_cmd.op_to_write = htonl(FW_CMD_OP_V(FW_CAPS_CONFIG_CMD) |
5339 FW_CMD_REQUEST_F | FW_CMD_READ_F);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05305340 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00005341 ret = t4_wr_mbox(adap, adap->mbox, &caps_cmd, sizeof(caps_cmd),
5342 &caps_cmd);
5343 if (ret < 0)
5344 goto bye;
5345
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005346 if (caps_cmd.ofldcaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005347 /* query offload-related parameters */
5348 params[0] = FW_PARAM_DEV(NTID);
5349 params[1] = FW_PARAM_PFVF(SERVER_START);
5350 params[2] = FW_PARAM_PFVF(SERVER_END);
5351 params[3] = FW_PARAM_PFVF(TDDP_START);
5352 params[4] = FW_PARAM_PFVF(TDDP_END);
5353 params[5] = FW_PARAM_DEV(FLOWC_BUFFIFO_SZ);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005354 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6,
5355 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005356 if (ret < 0)
5357 goto bye;
5358 adap->tids.ntids = val[0];
5359 adap->tids.natids = min(adap->tids.ntids / 2, MAX_ATIDS);
5360 adap->tids.stid_base = val[1];
5361 adap->tids.nstids = val[2] - val[1] + 1;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005362 /*
5363 * Setup server filter region. Divide the availble filter
5364 * region into two parts. Regular filters get 1/3rd and server
5365 * filters get 2/3rd part. This is only enabled if workarond
5366 * path is enabled.
5367 * 1. For regular filters.
5368 * 2. Server filter: This are special filters which are used
5369 * to redirect SYN packets to offload queue.
5370 */
5371 if (adap->flags & FW_OFLD_CONN && !is_bypass(adap)) {
5372 adap->tids.sftid_base = adap->tids.ftid_base +
5373 DIV_ROUND_UP(adap->tids.nftids, 3);
5374 adap->tids.nsftids = adap->tids.nftids -
5375 DIV_ROUND_UP(adap->tids.nftids, 3);
5376 adap->tids.nftids = adap->tids.sftid_base -
5377 adap->tids.ftid_base;
5378 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005379 adap->vres.ddp.start = val[3];
5380 adap->vres.ddp.size = val[4] - val[3] + 1;
5381 adap->params.ofldq_wr_cred = val[5];
Vipul Pandya636f9d32012-09-26 02:39:39 +00005382
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005383 adap->params.offload = 1;
5384 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00005385 if (caps_cmd.rdmacaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005386 params[0] = FW_PARAM_PFVF(STAG_START);
5387 params[1] = FW_PARAM_PFVF(STAG_END);
5388 params[2] = FW_PARAM_PFVF(RQ_START);
5389 params[3] = FW_PARAM_PFVF(RQ_END);
5390 params[4] = FW_PARAM_PFVF(PBL_START);
5391 params[5] = FW_PARAM_PFVF(PBL_END);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005392 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6,
5393 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005394 if (ret < 0)
5395 goto bye;
5396 adap->vres.stag.start = val[0];
5397 adap->vres.stag.size = val[1] - val[0] + 1;
5398 adap->vres.rq.start = val[2];
5399 adap->vres.rq.size = val[3] - val[2] + 1;
5400 adap->vres.pbl.start = val[4];
5401 adap->vres.pbl.size = val[5] - val[4] + 1;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00005402
5403 params[0] = FW_PARAM_PFVF(SQRQ_START);
5404 params[1] = FW_PARAM_PFVF(SQRQ_END);
5405 params[2] = FW_PARAM_PFVF(CQ_START);
5406 params[3] = FW_PARAM_PFVF(CQ_END);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00005407 params[4] = FW_PARAM_PFVF(OCQ_START);
5408 params[5] = FW_PARAM_PFVF(OCQ_END);
Hariprasad Shenai5c937dd2014-09-01 19:55:00 +05305409 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6, params,
5410 val);
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00005411 if (ret < 0)
5412 goto bye;
5413 adap->vres.qp.start = val[0];
5414 adap->vres.qp.size = val[1] - val[0] + 1;
5415 adap->vres.cq.start = val[2];
5416 adap->vres.cq.size = val[3] - val[2] + 1;
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00005417 adap->vres.ocq.start = val[4];
5418 adap->vres.ocq.size = val[5] - val[4] + 1;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05305419
5420 params[0] = FW_PARAM_DEV(MAXORDIRD_QP);
5421 params[1] = FW_PARAM_DEV(MAXIRD_ADAPTER);
Hariprasad Shenai5c937dd2014-09-01 19:55:00 +05305422 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, params,
5423 val);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05305424 if (ret < 0) {
5425 adap->params.max_ordird_qp = 8;
5426 adap->params.max_ird_adapter = 32 * adap->tids.ntids;
5427 ret = 0;
5428 } else {
5429 adap->params.max_ordird_qp = val[0];
5430 adap->params.max_ird_adapter = val[1];
5431 }
5432 dev_info(adap->pdev_dev,
5433 "max_ordird_qp %d max_ird_adapter %d\n",
5434 adap->params.max_ordird_qp,
5435 adap->params.max_ird_adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005436 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00005437 if (caps_cmd.iscsicaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005438 params[0] = FW_PARAM_PFVF(ISCSI_START);
5439 params[1] = FW_PARAM_PFVF(ISCSI_END);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005440 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2,
5441 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005442 if (ret < 0)
5443 goto bye;
5444 adap->vres.iscsi.start = val[0];
5445 adap->vres.iscsi.size = val[1] - val[0] + 1;
5446 }
5447#undef FW_PARAM_PFVF
5448#undef FW_PARAM_DEV
5449
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05305450 /* The MTU/MSS Table is initialized by now, so load their values. If
5451 * we're initializing the adapter, then we'll make any modifications
5452 * we want to the MTU/MSS Table and also initialize the congestion
5453 * parameters.
Vipul Pandya636f9d32012-09-26 02:39:39 +00005454 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005455 t4_read_mtu_tbl(adap, adap->params.mtus, NULL);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05305456 if (state != DEV_STATE_INIT) {
5457 int i;
Casey Leedom7ee9ff92010-06-25 12:11:46 +00005458
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05305459 /* The default MTU Table contains values 1492 and 1500.
5460 * However, for TCP, it's better to have two values which are
5461 * a multiple of 8 +/- 4 bytes apart near this popular MTU.
5462 * This allows us to have a TCP Data Payload which is a
5463 * multiple of 8 regardless of what combination of TCP Options
5464 * are in use (always a multiple of 4 bytes) which is
5465 * important for performance reasons. For instance, if no
5466 * options are in use, then we have a 20-byte IP header and a
5467 * 20-byte TCP header. In this case, a 1500-byte MSS would
5468 * result in a TCP Data Payload of 1500 - 40 == 1460 bytes
5469 * which is not a multiple of 8. So using an MSS of 1488 in
5470 * this case results in a TCP Data Payload of 1448 bytes which
5471 * is a multiple of 8. On the other hand, if 12-byte TCP Time
5472 * Stamps have been negotiated, then an MTU of 1500 bytes
5473 * results in a TCP Data Payload of 1448 bytes which, as
5474 * above, is a multiple of 8 bytes ...
5475 */
5476 for (i = 0; i < NMTUS; i++)
5477 if (adap->params.mtus[i] == 1492) {
5478 adap->params.mtus[i] = 1488;
5479 break;
5480 }
5481
5482 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
5483 adap->params.b_wnd);
5484 }
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05305485 t4_init_sge_params(adap);
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05305486 t4_init_tp_params(adap);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005487 adap->flags |= FW_OK;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005488 return 0;
5489
5490 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00005491 * Something bad happened. If a command timed out or failed with EIO
5492 * FW does not operate within its spec or something catastrophic
5493 * happened to HW/FW, stop issuing commands.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005494 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00005495bye:
5496 if (ret != -ETIMEDOUT && ret != -EIO)
5497 t4_fw_bye(adap, adap->mbox);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005498 return ret;
5499}
5500
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005501/* EEH callbacks */
5502
5503static pci_ers_result_t eeh_err_detected(struct pci_dev *pdev,
5504 pci_channel_state_t state)
5505{
5506 int i;
5507 struct adapter *adap = pci_get_drvdata(pdev);
5508
5509 if (!adap)
5510 goto out;
5511
5512 rtnl_lock();
5513 adap->flags &= ~FW_OK;
5514 notify_ulds(adap, CXGB4_STATE_START_RECOVERY);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08005515 spin_lock(&adap->stats_lock);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005516 for_each_port(adap, i) {
5517 struct net_device *dev = adap->port[i];
5518
5519 netif_device_detach(dev);
5520 netif_carrier_off(dev);
5521 }
Gavin Shan9fe6cb52014-01-23 12:27:35 +08005522 spin_unlock(&adap->stats_lock);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005523 if (adap->flags & FULL_INIT_DONE)
5524 cxgb_down(adap);
5525 rtnl_unlock();
Gavin Shan144be3d2014-01-23 12:27:34 +08005526 if ((adap->flags & DEV_ENABLED)) {
5527 pci_disable_device(pdev);
5528 adap->flags &= ~DEV_ENABLED;
5529 }
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005530out: return state == pci_channel_io_perm_failure ?
5531 PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
5532}
5533
5534static pci_ers_result_t eeh_slot_reset(struct pci_dev *pdev)
5535{
5536 int i, ret;
5537 struct fw_caps_config_cmd c;
5538 struct adapter *adap = pci_get_drvdata(pdev);
5539
5540 if (!adap) {
5541 pci_restore_state(pdev);
5542 pci_save_state(pdev);
5543 return PCI_ERS_RESULT_RECOVERED;
5544 }
5545
Gavin Shan144be3d2014-01-23 12:27:34 +08005546 if (!(adap->flags & DEV_ENABLED)) {
5547 if (pci_enable_device(pdev)) {
5548 dev_err(&pdev->dev, "Cannot reenable PCI "
5549 "device after reset\n");
5550 return PCI_ERS_RESULT_DISCONNECT;
5551 }
5552 adap->flags |= DEV_ENABLED;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005553 }
5554
5555 pci_set_master(pdev);
5556 pci_restore_state(pdev);
5557 pci_save_state(pdev);
5558 pci_cleanup_aer_uncorrect_error_status(pdev);
5559
Hariprasad Shenai8203b502014-10-09 05:48:47 +05305560 if (t4_wait_dev_ready(adap->regs) < 0)
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005561 return PCI_ERS_RESULT_DISCONNECT;
Thadeu Lima de Souza Cascardo777c2302013-05-03 08:11:04 +00005562 if (t4_fw_hello(adap, adap->fn, adap->fn, MASTER_MUST, NULL) < 0)
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005563 return PCI_ERS_RESULT_DISCONNECT;
5564 adap->flags |= FW_OK;
5565 if (adap_init1(adap, &c))
5566 return PCI_ERS_RESULT_DISCONNECT;
5567
5568 for_each_port(adap, i) {
5569 struct port_info *p = adap2pinfo(adap, i);
5570
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00005571 ret = t4_alloc_vi(adap, adap->fn, p->tx_chan, adap->fn, 0, 1,
5572 NULL, NULL);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005573 if (ret < 0)
5574 return PCI_ERS_RESULT_DISCONNECT;
5575 p->viid = ret;
5576 p->xact_addr_filt = -1;
5577 }
5578
5579 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
5580 adap->params.b_wnd);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00005581 setup_memwin(adap);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005582 if (cxgb_up(adap))
5583 return PCI_ERS_RESULT_DISCONNECT;
5584 return PCI_ERS_RESULT_RECOVERED;
5585}
5586
5587static void eeh_resume(struct pci_dev *pdev)
5588{
5589 int i;
5590 struct adapter *adap = pci_get_drvdata(pdev);
5591
5592 if (!adap)
5593 return;
5594
5595 rtnl_lock();
5596 for_each_port(adap, i) {
5597 struct net_device *dev = adap->port[i];
5598
5599 if (netif_running(dev)) {
5600 link_start(dev);
5601 cxgb_set_rxmode(dev);
5602 }
5603 netif_device_attach(dev);
5604 }
5605 rtnl_unlock();
5606}
5607
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07005608static const struct pci_error_handlers cxgb4_eeh = {
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005609 .error_detected = eeh_err_detected,
5610 .slot_reset = eeh_slot_reset,
5611 .resume = eeh_resume,
5612};
5613
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05305614static inline bool is_x_10g_port(const struct link_config *lc)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005615{
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05305616 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 ||
5617 (lc->supported & FW_PORT_CAP_SPEED_40G) != 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005618}
5619
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05305620static inline void init_rspq(struct adapter *adap, struct sge_rspq *q,
5621 unsigned int us, unsigned int cnt,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005622 unsigned int size, unsigned int iqe_size)
5623{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05305624 q->adap = adap;
5625 set_rspq_intr_params(q, us, cnt);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005626 q->iqe_len = iqe_size;
5627 q->size = size;
5628}
5629
5630/*
5631 * Perform default configuration of DMA queues depending on the number and type
5632 * of ports we found and the number of available CPUs. Most settings can be
5633 * modified by the admin prior to actual use.
5634 */
Bill Pemberton91744942012-12-03 09:23:02 -05005635static void cfg_queues(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005636{
5637 struct sge *s = &adap->sge;
Anish Bhatt688848b2014-06-19 21:37:13 -07005638 int i, n10g = 0, qidx = 0;
5639#ifndef CONFIG_CHELSIO_T4_DCB
5640 int q10g = 0;
5641#endif
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05305642 int ciq_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005643
5644 for_each_port(adap, i)
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05305645 n10g += is_x_10g_port(&adap2pinfo(adap, i)->link_cfg);
Anish Bhatt688848b2014-06-19 21:37:13 -07005646#ifdef CONFIG_CHELSIO_T4_DCB
5647 /* For Data Center Bridging support we need to be able to support up
5648 * to 8 Traffic Priorities; each of which will be assigned to its
5649 * own TX Queue in order to prevent Head-Of-Line Blocking.
5650 */
5651 if (adap->params.nports * 8 > MAX_ETH_QSETS) {
5652 dev_err(adap->pdev_dev, "MAX_ETH_QSETS=%d < %d!\n",
5653 MAX_ETH_QSETS, adap->params.nports * 8);
5654 BUG_ON(1);
5655 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005656
Anish Bhatt688848b2014-06-19 21:37:13 -07005657 for_each_port(adap, i) {
5658 struct port_info *pi = adap2pinfo(adap, i);
5659
5660 pi->first_qset = qidx;
5661 pi->nqsets = 8;
5662 qidx += pi->nqsets;
5663 }
5664#else /* !CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005665 /*
5666 * We default to 1 queue per non-10G port and up to # of cores queues
5667 * per 10G port.
5668 */
5669 if (n10g)
5670 q10g = (MAX_ETH_QSETS - (adap->params.nports - n10g)) / n10g;
Yuval Mintz5952dde2012-07-01 03:18:55 +00005671 if (q10g > netif_get_num_default_rss_queues())
5672 q10g = netif_get_num_default_rss_queues();
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005673
5674 for_each_port(adap, i) {
5675 struct port_info *pi = adap2pinfo(adap, i);
5676
5677 pi->first_qset = qidx;
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05305678 pi->nqsets = is_x_10g_port(&pi->link_cfg) ? q10g : 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005679 qidx += pi->nqsets;
5680 }
Anish Bhatt688848b2014-06-19 21:37:13 -07005681#endif /* !CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005682
5683 s->ethqsets = qidx;
5684 s->max_ethqsets = qidx; /* MSI-X may lower it later */
5685
5686 if (is_offload(adap)) {
5687 /*
5688 * For offload we use 1 queue/channel if all ports are up to 1G,
5689 * otherwise we divide all available queues amongst the channels
5690 * capped by the number of available cores.
5691 */
5692 if (n10g) {
5693 i = min_t(int, ARRAY_SIZE(s->ofldrxq),
5694 num_online_cpus());
5695 s->ofldqsets = roundup(i, adap->params.nports);
5696 } else
5697 s->ofldqsets = adap->params.nports;
5698 /* For RDMA one Rx queue per channel suffices */
5699 s->rdmaqs = adap->params.nports;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05305700 s->rdmaciqs = adap->params.nports;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005701 }
5702
5703 for (i = 0; i < ARRAY_SIZE(s->ethrxq); i++) {
5704 struct sge_eth_rxq *r = &s->ethrxq[i];
5705
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05305706 init_rspq(adap, &r->rspq, 5, 10, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005707 r->fl.size = 72;
5708 }
5709
5710 for (i = 0; i < ARRAY_SIZE(s->ethtxq); i++)
5711 s->ethtxq[i].q.size = 1024;
5712
5713 for (i = 0; i < ARRAY_SIZE(s->ctrlq); i++)
5714 s->ctrlq[i].q.size = 512;
5715
5716 for (i = 0; i < ARRAY_SIZE(s->ofldtxq); i++)
5717 s->ofldtxq[i].q.size = 1024;
5718
5719 for (i = 0; i < ARRAY_SIZE(s->ofldrxq); i++) {
5720 struct sge_ofld_rxq *r = &s->ofldrxq[i];
5721
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05305722 init_rspq(adap, &r->rspq, 5, 1, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005723 r->rspq.uld = CXGB4_ULD_ISCSI;
5724 r->fl.size = 72;
5725 }
5726
5727 for (i = 0; i < ARRAY_SIZE(s->rdmarxq); i++) {
5728 struct sge_ofld_rxq *r = &s->rdmarxq[i];
5729
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05305730 init_rspq(adap, &r->rspq, 5, 1, 511, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005731 r->rspq.uld = CXGB4_ULD_RDMA;
5732 r->fl.size = 72;
5733 }
5734
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05305735 ciq_size = 64 + adap->vres.cq.size + adap->tids.nftids;
5736 if (ciq_size > SGE_MAX_IQ_SIZE) {
5737 CH_WARN(adap, "CIQ size too small for available IQs\n");
5738 ciq_size = SGE_MAX_IQ_SIZE;
5739 }
5740
5741 for (i = 0; i < ARRAY_SIZE(s->rdmaciq); i++) {
5742 struct sge_ofld_rxq *r = &s->rdmaciq[i];
5743
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05305744 init_rspq(adap, &r->rspq, 5, 1, ciq_size, 64);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05305745 r->rspq.uld = CXGB4_ULD_RDMA;
5746 }
5747
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05305748 init_rspq(adap, &s->fw_evtq, 0, 1, 1024, 64);
5749 init_rspq(adap, &s->intrq, 0, 1, 2 * MAX_INGQ, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005750}
5751
5752/*
5753 * Reduce the number of Ethernet queues across all ports to at most n.
5754 * n provides at least one queue per port.
5755 */
Bill Pemberton91744942012-12-03 09:23:02 -05005756static void reduce_ethqs(struct adapter *adap, int n)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005757{
5758 int i;
5759 struct port_info *pi;
5760
5761 while (n < adap->sge.ethqsets)
5762 for_each_port(adap, i) {
5763 pi = adap2pinfo(adap, i);
5764 if (pi->nqsets > 1) {
5765 pi->nqsets--;
5766 adap->sge.ethqsets--;
5767 if (adap->sge.ethqsets <= n)
5768 break;
5769 }
5770 }
5771
5772 n = 0;
5773 for_each_port(adap, i) {
5774 pi = adap2pinfo(adap, i);
5775 pi->first_qset = n;
5776 n += pi->nqsets;
5777 }
5778}
5779
5780/* 2 MSI-X vectors needed for the FW queue and non-data interrupts */
5781#define EXTRA_VECS 2
5782
Bill Pemberton91744942012-12-03 09:23:02 -05005783static int enable_msix(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005784{
5785 int ofld_need = 0;
Alexander Gordeevc32ad222014-02-18 11:07:59 +01005786 int i, want, need;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005787 struct sge *s = &adap->sge;
5788 unsigned int nchan = adap->params.nports;
5789 struct msix_entry entries[MAX_INGQ + 1];
5790
5791 for (i = 0; i < ARRAY_SIZE(entries); ++i)
5792 entries[i].entry = i;
5793
5794 want = s->max_ethqsets + EXTRA_VECS;
5795 if (is_offload(adap)) {
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05305796 want += s->rdmaqs + s->rdmaciqs + s->ofldqsets;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005797 /* need nchan for each possible ULD */
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05305798 ofld_need = 3 * nchan;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005799 }
Anish Bhatt688848b2014-06-19 21:37:13 -07005800#ifdef CONFIG_CHELSIO_T4_DCB
5801 /* For Data Center Bridging we need 8 Ethernet TX Priority Queues for
5802 * each port.
5803 */
5804 need = 8 * adap->params.nports + EXTRA_VECS + ofld_need;
5805#else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005806 need = adap->params.nports + EXTRA_VECS + ofld_need;
Anish Bhatt688848b2014-06-19 21:37:13 -07005807#endif
Alexander Gordeevc32ad222014-02-18 11:07:59 +01005808 want = pci_enable_msix_range(adap->pdev, entries, need, want);
5809 if (want < 0)
5810 return want;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005811
Alexander Gordeevc32ad222014-02-18 11:07:59 +01005812 /*
5813 * Distribute available vectors to the various queue groups.
5814 * Every group gets its minimum requirement and NIC gets top
5815 * priority for leftovers.
5816 */
5817 i = want - EXTRA_VECS - ofld_need;
5818 if (i < s->max_ethqsets) {
5819 s->max_ethqsets = i;
5820 if (i < s->ethqsets)
5821 reduce_ethqs(adap, i);
5822 }
5823 if (is_offload(adap)) {
5824 i = want - EXTRA_VECS - s->max_ethqsets;
5825 i -= ofld_need - nchan;
5826 s->ofldqsets = (i / nchan) * nchan; /* round down */
5827 }
5828 for (i = 0; i < want; ++i)
5829 adap->msix_info[i].vec = entries[i].vector;
5830
5831 return 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005832}
5833
5834#undef EXTRA_VECS
5835
Bill Pemberton91744942012-12-03 09:23:02 -05005836static int init_rss(struct adapter *adap)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00005837{
5838 unsigned int i, j;
5839
5840 for_each_port(adap, i) {
5841 struct port_info *pi = adap2pinfo(adap, i);
5842
5843 pi->rss = kcalloc(pi->rss_size, sizeof(u16), GFP_KERNEL);
5844 if (!pi->rss)
5845 return -ENOMEM;
5846 for (j = 0; j < pi->rss_size; j++)
Ben Hutchings278bc422011-12-15 13:56:49 +00005847 pi->rss[j] = ethtool_rxfh_indir_default(j, pi->nqsets);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00005848 }
5849 return 0;
5850}
5851
Bill Pemberton91744942012-12-03 09:23:02 -05005852static void print_port_info(const struct net_device *dev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005853{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005854 char buf[80];
Dimitris Michailidis118969e2010-12-14 21:36:48 +00005855 char *bufp = buf;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00005856 const char *spd = "";
Dimitris Michailidis118969e2010-12-14 21:36:48 +00005857 const struct port_info *pi = netdev_priv(dev);
5858 const struct adapter *adap = pi->adapter;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00005859
5860 if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_2_5GB)
5861 spd = " 2.5 GT/s";
5862 else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_5_0GB)
5863 spd = " 5 GT/s";
Roland Dreierd2e752d2014-04-28 17:36:20 -07005864 else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_8_0GB)
5865 spd = " 8 GT/s";
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005866
Dimitris Michailidis118969e2010-12-14 21:36:48 +00005867 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_100M)
5868 bufp += sprintf(bufp, "100/");
5869 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_1G)
5870 bufp += sprintf(bufp, "1000/");
5871 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_10G)
5872 bufp += sprintf(bufp, "10G/");
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05305873 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_40G)
5874 bufp += sprintf(bufp, "40G/");
Dimitris Michailidis118969e2010-12-14 21:36:48 +00005875 if (bufp != buf)
5876 --bufp;
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05305877 sprintf(bufp, "BASE-%s", t4_get_port_type_description(pi->port_type));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005878
Dimitris Michailidis118969e2010-12-14 21:36:48 +00005879 netdev_info(dev, "Chelsio %s rev %d %s %sNIC PCIe x%d%s%s\n",
Santosh Rastapur0a57a532013-03-14 05:08:49 +00005880 adap->params.vpd.id,
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05305881 CHELSIO_CHIP_RELEASE(adap->params.chip), buf,
Dimitris Michailidis118969e2010-12-14 21:36:48 +00005882 is_offload(adap) ? "R" : "", adap->params.pci.width, spd,
5883 (adap->flags & USING_MSIX) ? " MSI-X" :
5884 (adap->flags & USING_MSI) ? " MSI" : "");
Kumar Sanghvia94cd702014-02-18 17:56:09 +05305885 netdev_info(dev, "S/N: %s, P/N: %s\n",
5886 adap->params.vpd.sn, adap->params.vpd.pn);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005887}
5888
Bill Pemberton91744942012-12-03 09:23:02 -05005889static void enable_pcie_relaxed_ordering(struct pci_dev *dev)
Dimitris Michailidisef306b52010-12-14 21:36:44 +00005890{
Jiang Liue5c8ae52012-08-20 13:53:19 -06005891 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_RELAX_EN);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00005892}
5893
Dimitris Michailidis06546392010-07-11 12:01:16 +00005894/*
5895 * Free the following resources:
5896 * - memory used for tables
5897 * - MSI/MSI-X
5898 * - net devices
5899 * - resources FW is holding for us
5900 */
5901static void free_some_resources(struct adapter *adapter)
5902{
5903 unsigned int i;
5904
5905 t4_free_mem(adapter->l2t);
5906 t4_free_mem(adapter->tids.tid_tab);
5907 disable_msi(adapter);
5908
5909 for_each_port(adapter, i)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00005910 if (adapter->port[i]) {
5911 kfree(adap2pinfo(adapter, i)->rss);
Dimitris Michailidis06546392010-07-11 12:01:16 +00005912 free_netdev(adapter->port[i]);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00005913 }
Dimitris Michailidis06546392010-07-11 12:01:16 +00005914 if (adapter->flags & FW_OK)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00005915 t4_fw_bye(adapter, adapter->fn);
Dimitris Michailidis06546392010-07-11 12:01:16 +00005916}
5917
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00005918#define TSO_FLAGS (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN)
Dimitris Michailidis35d35682010-08-02 13:19:20 +00005919#define VLAN_FEAT (NETIF_F_SG | NETIF_F_IP_CSUM | TSO_FLAGS | \
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005920 NETIF_F_IPV6_CSUM | NETIF_F_HIGHDMA)
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005921#define SEGMENT_SIZE 128
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005922
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00005923static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005924{
Santosh Rastapur22adfe02013-03-14 05:08:51 +00005925 int func, i, err, s_qpp, qpp, num_seg;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005926 struct port_info *pi;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005927 bool highdma = false;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005928 struct adapter *adapter = NULL;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305929 void __iomem *regs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005930
5931 printk_once(KERN_INFO "%s - version %s\n", DRV_DESC, DRV_VERSION);
5932
5933 err = pci_request_regions(pdev, KBUILD_MODNAME);
5934 if (err) {
5935 /* Just info, some other driver may have claimed the device. */
5936 dev_info(&pdev->dev, "cannot obtain PCI resources\n");
5937 return err;
5938 }
5939
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005940 err = pci_enable_device(pdev);
5941 if (err) {
5942 dev_err(&pdev->dev, "cannot enable PCI device\n");
5943 goto out_release_regions;
5944 }
5945
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305946 regs = pci_ioremap_bar(pdev, 0);
5947 if (!regs) {
5948 dev_err(&pdev->dev, "cannot map device registers\n");
5949 err = -ENOMEM;
5950 goto out_disable_device;
5951 }
5952
Hariprasad Shenai8203b502014-10-09 05:48:47 +05305953 err = t4_wait_dev_ready(regs);
5954 if (err < 0)
5955 goto out_unmap_bar0;
5956
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305957 /* We control everything through one PF */
Hariprasad Shenai0d804332015-01-05 16:30:47 +05305958 func = SOURCEPF_G(readl(regs + PL_WHOAMI_A));
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305959 if (func != ent->driver_data) {
5960 iounmap(regs);
5961 pci_disable_device(pdev);
5962 pci_save_state(pdev); /* to restore SR-IOV later */
5963 goto sriov;
5964 }
5965
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005966 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005967 highdma = true;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005968 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
5969 if (err) {
5970 dev_err(&pdev->dev, "unable to obtain 64-bit DMA for "
5971 "coherent allocations\n");
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305972 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005973 }
5974 } else {
5975 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
5976 if (err) {
5977 dev_err(&pdev->dev, "no usable DMA configuration\n");
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305978 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005979 }
5980 }
5981
5982 pci_enable_pcie_error_reporting(pdev);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00005983 enable_pcie_relaxed_ordering(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005984 pci_set_master(pdev);
5985 pci_save_state(pdev);
5986
5987 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
5988 if (!adapter) {
5989 err = -ENOMEM;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05305990 goto out_unmap_bar0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005991 }
5992
Anish Bhatt29aaee62014-08-20 13:44:06 -07005993 adapter->workq = create_singlethread_workqueue("cxgb4");
5994 if (!adapter->workq) {
5995 err = -ENOMEM;
5996 goto out_free_adapter;
5997 }
5998
Gavin Shan144be3d2014-01-23 12:27:34 +08005999 /* PCI device has been enabled */
6000 adapter->flags |= DEV_ENABLED;
6001
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05306002 adapter->regs = regs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006003 adapter->pdev = pdev;
6004 adapter->pdev_dev = &pdev->dev;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05306005 adapter->mbox = func;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00006006 adapter->fn = func;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006007 adapter->msg_enable = dflt_msg_enable;
6008 memset(adapter->chan_map, 0xff, sizeof(adapter->chan_map));
6009
6010 spin_lock_init(&adapter->stats_lock);
6011 spin_lock_init(&adapter->tid_release_lock);
Anish Bhatte327c222014-10-29 17:54:03 -07006012 spin_lock_init(&adapter->win0_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006013
6014 INIT_WORK(&adapter->tid_release_task, process_tid_release_list);
Vipul Pandya881806b2012-05-18 15:29:24 +05306015 INIT_WORK(&adapter->db_full_task, process_db_full);
6016 INIT_WORK(&adapter->db_drop_task, process_db_drop);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006017
6018 err = t4_prep_adapter(adapter);
6019 if (err)
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05306020 goto out_free_adapter;
6021
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006022
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05306023 if (!is_t4(adapter->params.chip)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05306024 s_qpp = (QUEUESPERPAGEPF0_S +
6025 (QUEUESPERPAGEPF1_S - QUEUESPERPAGEPF0_S) *
6026 adapter->fn);
6027 qpp = 1 << QUEUESPERPAGEPF0_G(t4_read_reg(adapter,
6028 SGE_EGRESS_QUEUES_PER_PAGE_PF_A) >> s_qpp);
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006029 num_seg = PAGE_SIZE / SEGMENT_SIZE;
6030
6031 /* Each segment size is 128B. Write coalescing is enabled only
6032 * when SGE_EGRESS_QUEUES_PER_PAGE_PF reg value for the
6033 * queue is less no of segments that can be accommodated in
6034 * a page size.
6035 */
6036 if (qpp > num_seg) {
6037 dev_err(&pdev->dev,
6038 "Incorrect number of egress queues per page\n");
6039 err = -EINVAL;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05306040 goto out_free_adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006041 }
6042 adapter->bar2 = ioremap_wc(pci_resource_start(pdev, 2),
6043 pci_resource_len(pdev, 2));
6044 if (!adapter->bar2) {
6045 dev_err(&pdev->dev, "cannot map device bar2 region\n");
6046 err = -ENOMEM;
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05306047 goto out_free_adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006048 }
6049 }
6050
Vipul Pandya636f9d32012-09-26 02:39:39 +00006051 setup_memwin(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006052 err = adap_init0(adapter);
Vipul Pandya636f9d32012-09-26 02:39:39 +00006053 setup_memwin_rdma(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006054 if (err)
6055 goto out_unmap_bar;
6056
6057 for_each_port(adapter, i) {
6058 struct net_device *netdev;
6059
6060 netdev = alloc_etherdev_mq(sizeof(struct port_info),
6061 MAX_ETH_QSETS);
6062 if (!netdev) {
6063 err = -ENOMEM;
6064 goto out_free_dev;
6065 }
6066
6067 SET_NETDEV_DEV(netdev, &pdev->dev);
6068
6069 adapter->port[i] = netdev;
6070 pi = netdev_priv(netdev);
6071 pi->adapter = adapter;
6072 pi->xact_addr_filt = -1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006073 pi->port_id = i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006074 netdev->irq = pdev->irq;
6075
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00006076 netdev->hw_features = NETIF_F_SG | TSO_FLAGS |
6077 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
6078 NETIF_F_RXCSUM | NETIF_F_RXHASH |
Patrick McHardyf6469682013-04-19 02:04:27 +00006079 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006080 if (highdma)
6081 netdev->hw_features |= NETIF_F_HIGHDMA;
6082 netdev->features |= netdev->hw_features;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006083 netdev->vlan_features = netdev->features & VLAN_FEAT;
6084
Jiri Pirko01789342011-08-16 06:29:00 +00006085 netdev->priv_flags |= IFF_UNICAST_FLT;
6086
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006087 netdev->netdev_ops = &cxgb4_netdev_ops;
Anish Bhatt688848b2014-06-19 21:37:13 -07006088#ifdef CONFIG_CHELSIO_T4_DCB
6089 netdev->dcbnl_ops = &cxgb4_dcb_ops;
6090 cxgb4_dcb_state_init(netdev);
6091#endif
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00006092 netdev->ethtool_ops = &cxgb_ethtool_ops;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006093 }
6094
6095 pci_set_drvdata(pdev, adapter);
6096
6097 if (adapter->flags & FW_OK) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00006098 err = t4_port_init(adapter, func, func, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006099 if (err)
6100 goto out_free_dev;
6101 }
6102
6103 /*
6104 * Configure queues and allocate tables now, they can be needed as
6105 * soon as the first register_netdev completes.
6106 */
6107 cfg_queues(adapter);
6108
6109 adapter->l2t = t4_init_l2t();
6110 if (!adapter->l2t) {
6111 /* We tolerate a lack of L2T, giving up some functionality */
6112 dev_warn(&pdev->dev, "could not allocate L2T, continuing\n");
6113 adapter->params.offload = 0;
6114 }
6115
Anish Bhattb5a02f52015-01-14 15:17:34 -08006116#if IS_ENABLED(CONFIG_IPV6)
6117 adapter->clipt = t4_init_clip_tbl(adapter->clipt_start,
6118 adapter->clipt_end);
6119 if (!adapter->clipt) {
6120 /* We tolerate a lack of clip_table, giving up
6121 * some functionality
6122 */
6123 dev_warn(&pdev->dev,
6124 "could not allocate Clip table, continuing\n");
6125 adapter->params.offload = 0;
6126 }
6127#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006128 if (is_offload(adapter) && tid_init(&adapter->tids) < 0) {
6129 dev_warn(&pdev->dev, "could not allocate TID table, "
6130 "continuing\n");
6131 adapter->params.offload = 0;
6132 }
6133
Dimitris Michailidisf7cabcd2010-07-11 12:01:15 +00006134 /* See what interrupts we'll be using */
6135 if (msi > 1 && enable_msix(adapter) == 0)
6136 adapter->flags |= USING_MSIX;
6137 else if (msi > 0 && pci_enable_msi(pdev) == 0)
6138 adapter->flags |= USING_MSI;
6139
Dimitris Michailidis671b0062010-07-11 12:01:17 +00006140 err = init_rss(adapter);
6141 if (err)
6142 goto out_free_dev;
6143
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006144 /*
6145 * The card is now ready to go. If any errors occur during device
6146 * registration we do not fail the whole card but rather proceed only
6147 * with the ports we manage to register successfully. However we must
6148 * register at least one net device.
6149 */
6150 for_each_port(adapter, i) {
Dimitris Michailidisa57cabe2010-12-14 21:36:46 +00006151 pi = adap2pinfo(adapter, i);
6152 netif_set_real_num_tx_queues(adapter->port[i], pi->nqsets);
6153 netif_set_real_num_rx_queues(adapter->port[i], pi->nqsets);
6154
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006155 err = register_netdev(adapter->port[i]);
6156 if (err)
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00006157 break;
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00006158 adapter->chan_map[pi->tx_chan] = i;
6159 print_port_info(adapter->port[i]);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006160 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00006161 if (i == 0) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006162 dev_err(&pdev->dev, "could not register any net devices\n");
6163 goto out_free_dev;
6164 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00006165 if (err) {
6166 dev_warn(&pdev->dev, "only %d net devices registered\n", i);
6167 err = 0;
Joe Perches6403eab2011-06-03 11:51:20 +00006168 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006169
6170 if (cxgb4_debugfs_root) {
6171 adapter->debugfs_root = debugfs_create_dir(pci_name(pdev),
6172 cxgb4_debugfs_root);
6173 setup_debugfs(adapter);
6174 }
6175
David S. Miller88c51002011-10-07 13:38:43 -04006176 /* PCIe EEH recovery on powerpc platforms needs fundamental reset */
6177 pdev->needs_freset = 1;
6178
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006179 if (is_offload(adapter))
6180 attach_ulds(adapter);
6181
Hariprasad Shenai8e1e6052014-08-06 17:10:59 +05306182sriov:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006183#ifdef CONFIG_PCI_IOV
Santosh Rastapur7d6727c2013-03-14 05:08:56 +00006184 if (func < ARRAY_SIZE(num_vf) && num_vf[func] > 0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006185 if (pci_enable_sriov(pdev, num_vf[func]) == 0)
6186 dev_info(&pdev->dev,
6187 "instantiated %u virtual functions\n",
6188 num_vf[func]);
6189#endif
6190 return 0;
6191
6192 out_free_dev:
Dimitris Michailidis06546392010-07-11 12:01:16 +00006193 free_some_resources(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006194 out_unmap_bar:
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05306195 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006196 iounmap(adapter->bar2);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006197 out_free_adapter:
Anish Bhatt29aaee62014-08-20 13:44:06 -07006198 if (adapter->workq)
6199 destroy_workqueue(adapter->workq);
6200
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006201 kfree(adapter);
Hariprasad Shenaid6ce2622014-09-16 02:58:46 +05306202 out_unmap_bar0:
6203 iounmap(regs);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006204 out_disable_device:
6205 pci_disable_pcie_error_reporting(pdev);
6206 pci_disable_device(pdev);
6207 out_release_regions:
6208 pci_release_regions(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006209 return err;
6210}
6211
Bill Pemberton91744942012-12-03 09:23:02 -05006212static void remove_one(struct pci_dev *pdev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006213{
6214 struct adapter *adapter = pci_get_drvdata(pdev);
6215
Vipul Pandya636f9d32012-09-26 02:39:39 +00006216#ifdef CONFIG_PCI_IOV
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006217 pci_disable_sriov(pdev);
6218
Vipul Pandya636f9d32012-09-26 02:39:39 +00006219#endif
6220
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006221 if (adapter) {
6222 int i;
6223
Anish Bhatt29aaee62014-08-20 13:44:06 -07006224 /* Tear down per-adapter Work Queue first since it can contain
6225 * references to our adapter data structure.
6226 */
6227 destroy_workqueue(adapter->workq);
6228
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006229 if (is_offload(adapter))
6230 detach_ulds(adapter);
6231
6232 for_each_port(adapter, i)
Dimitris Michailidis8f3a7672010-12-14 21:36:52 +00006233 if (adapter->port[i]->reg_state == NETREG_REGISTERED)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006234 unregister_netdev(adapter->port[i]);
6235
Fabian Frederick9f16dc22014-06-27 22:51:52 +02006236 debugfs_remove_recursive(adapter->debugfs_root);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006237
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00006238 /* If we allocated filters, free up state associated with any
6239 * valid filters ...
6240 */
6241 if (adapter->tids.ftid_tab) {
6242 struct filter_entry *f = &adapter->tids.ftid_tab[0];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00006243 for (i = 0; i < (adapter->tids.nftids +
6244 adapter->tids.nsftids); i++, f++)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00006245 if (f->valid)
6246 clear_filter(adapter, f);
6247 }
6248
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00006249 if (adapter->flags & FULL_INIT_DONE)
6250 cxgb_down(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006251
Dimitris Michailidis06546392010-07-11 12:01:16 +00006252 free_some_resources(adapter);
Anish Bhattb5a02f52015-01-14 15:17:34 -08006253#if IS_ENABLED(CONFIG_IPV6)
6254 t4_cleanup_clip_tbl(adapter);
6255#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006256 iounmap(adapter->regs);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05306257 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006258 iounmap(adapter->bar2);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006259 pci_disable_pcie_error_reporting(pdev);
Gavin Shan144be3d2014-01-23 12:27:34 +08006260 if ((adapter->flags & DEV_ENABLED)) {
6261 pci_disable_device(pdev);
6262 adapter->flags &= ~DEV_ENABLED;
6263 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006264 pci_release_regions(pdev);
Li RongQingee9a33b2014-06-20 17:32:36 +08006265 synchronize_rcu();
Gavin Shan8b662fe2014-01-24 17:12:03 +08006266 kfree(adapter);
Dimitris Michailidisa069ec92010-09-30 09:17:12 +00006267 } else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006268 pci_release_regions(pdev);
6269}
6270
6271static struct pci_driver cxgb4_driver = {
6272 .name = KBUILD_MODNAME,
6273 .id_table = cxgb4_pci_tbl,
6274 .probe = init_one,
Bill Pemberton91744942012-12-03 09:23:02 -05006275 .remove = remove_one,
Thadeu Lima de Souza Cascardo687d7052014-02-24 17:04:52 -03006276 .shutdown = remove_one,
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006277 .err_handler = &cxgb4_eeh,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006278};
6279
6280static int __init cxgb4_init_module(void)
6281{
6282 int ret;
6283
6284 /* Debugfs support is optional, just warn if this fails */
6285 cxgb4_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
6286 if (!cxgb4_debugfs_root)
Joe Perches428ac432013-01-06 13:34:49 +00006287 pr_warn("could not create debugfs entry, continuing\n");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006288
6289 ret = pci_register_driver(&cxgb4_driver);
Anish Bhatt29aaee62014-08-20 13:44:06 -07006290 if (ret < 0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006291 debugfs_remove(cxgb4_debugfs_root);
Vipul Pandya01bcca62013-07-04 16:10:46 +05306292
Anish Bhatt1bb60372014-10-14 20:07:22 -07006293#if IS_ENABLED(CONFIG_IPV6)
Anish Bhattb5a02f52015-01-14 15:17:34 -08006294 if (!inet6addr_registered) {
6295 register_inet6addr_notifier(&cxgb4_inet6addr_notifier);
6296 inet6addr_registered = true;
6297 }
Anish Bhatt1bb60372014-10-14 20:07:22 -07006298#endif
Vipul Pandya01bcca62013-07-04 16:10:46 +05306299
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006300 return ret;
6301}
6302
6303static void __exit cxgb4_cleanup_module(void)
6304{
Anish Bhatt1bb60372014-10-14 20:07:22 -07006305#if IS_ENABLED(CONFIG_IPV6)
Hariprasad Shenai1793c792015-01-21 20:57:52 +05306306 if (inet6addr_registered) {
Anish Bhattb5a02f52015-01-14 15:17:34 -08006307 unregister_inet6addr_notifier(&cxgb4_inet6addr_notifier);
6308 inet6addr_registered = false;
6309 }
Anish Bhatt1bb60372014-10-14 20:07:22 -07006310#endif
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006311 pci_unregister_driver(&cxgb4_driver);
6312 debugfs_remove(cxgb4_debugfs_root); /* NULL ok */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006313}
6314
6315module_init(cxgb4_init_module);
6316module_exit(cxgb4_cleanup_module);