blob: ba7d13de5e83fc31d4b7d3c68031c67646e6ebec [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>
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000064#include <asm/uaccess.h>
65
66#include "cxgb4.h"
67#include "t4_regs.h"
68#include "t4_msg.h"
69#include "t4fw_api.h"
Anish Bhatt688848b2014-06-19 21:37:13 -070070#include "cxgb4_dcb.h"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000071#include "l2t.h"
72
Vipul Pandya01bcca62013-07-04 16:10:46 +053073#include <../drivers/net/bonding/bonding.h>
74
75#ifdef DRV_VERSION
76#undef DRV_VERSION
77#endif
Santosh Rastapur3a7f8552013-03-14 05:08:55 +000078#define DRV_VERSION "2.0.0-ko"
79#define DRV_DESC "Chelsio T4/T5 Network Driver"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +000080
81/*
82 * Max interrupt hold-off timer value in us. Queues fall back to this value
83 * under extreme memory pressure so it's largish to give the system time to
84 * recover.
85 */
86#define MAX_SGE_TIMERVAL 200U
87
Casey Leedom7ee9ff92010-06-25 12:11:46 +000088enum {
Vipul Pandya13ee15d2012-09-26 02:39:40 +000089 /*
90 * Physical Function provisioning constants.
91 */
92 PFRES_NVI = 4, /* # of Virtual Interfaces */
93 PFRES_NETHCTRL = 128, /* # of EQs used for ETH or CTRL Qs */
94 PFRES_NIQFLINT = 128, /* # of ingress Qs/w Free List(s)/intr
95 */
96 PFRES_NEQ = 256, /* # of egress queues */
97 PFRES_NIQ = 0, /* # of ingress queues */
98 PFRES_TC = 0, /* PCI-E traffic class */
99 PFRES_NEXACTF = 128, /* # of exact MPS filters */
100
101 PFRES_R_CAPS = FW_CMD_CAP_PF,
102 PFRES_WX_CAPS = FW_CMD_CAP_PF,
103
104#ifdef CONFIG_PCI_IOV
105 /*
106 * Virtual Function provisioning constants. We need two extra Ingress
107 * Queues with Interrupt capability to serve as the VF's Firmware
108 * Event Queue and Forwarded Interrupt Queue (when using MSI mode) --
109 * neither will have Free Lists associated with them). For each
110 * Ethernet/Control Egress Queue and for each Free List, we need an
111 * Egress Context.
112 */
Casey Leedom7ee9ff92010-06-25 12:11:46 +0000113 VFRES_NPORTS = 1, /* # of "ports" per VF */
114 VFRES_NQSETS = 2, /* # of "Queue Sets" per VF */
115
116 VFRES_NVI = VFRES_NPORTS, /* # of Virtual Interfaces */
117 VFRES_NETHCTRL = VFRES_NQSETS, /* # of EQs used for ETH or CTRL Qs */
118 VFRES_NIQFLINT = VFRES_NQSETS+2,/* # of ingress Qs/w Free List(s)/intr */
Casey Leedom7ee9ff92010-06-25 12:11:46 +0000119 VFRES_NEQ = VFRES_NQSETS*2, /* # of egress queues */
Vipul Pandya13ee15d2012-09-26 02:39:40 +0000120 VFRES_NIQ = 0, /* # of non-fl/int ingress queues */
Casey Leedom7ee9ff92010-06-25 12:11:46 +0000121 VFRES_TC = 0, /* PCI-E traffic class */
122 VFRES_NEXACTF = 16, /* # of exact MPS filters */
123
124 VFRES_R_CAPS = FW_CMD_CAP_DMAQ|FW_CMD_CAP_VF|FW_CMD_CAP_PORT,
125 VFRES_WX_CAPS = FW_CMD_CAP_DMAQ|FW_CMD_CAP_VF,
Vipul Pandya13ee15d2012-09-26 02:39:40 +0000126#endif
Casey Leedom7ee9ff92010-06-25 12:11:46 +0000127};
128
129/*
130 * Provide a Port Access Rights Mask for the specified PF/VF. This is very
131 * static and likely not to be useful in the long run. We really need to
132 * implement some form of persistent configuration which the firmware
133 * controls.
134 */
135static unsigned int pfvfres_pmask(struct adapter *adapter,
136 unsigned int pf, unsigned int vf)
137{
138 unsigned int portn, portvec;
139
140 /*
141 * Give PF's access to all of the ports.
142 */
143 if (vf == 0)
144 return FW_PFVF_CMD_PMASK_MASK;
145
146 /*
147 * For VFs, we'll assign them access to the ports based purely on the
148 * PF. We assign active ports in order, wrapping around if there are
149 * fewer active ports than PFs: e.g. active port[pf % nports].
150 * Unfortunately the adapter's port_info structs haven't been
151 * initialized yet so we have to compute this.
152 */
153 if (adapter->params.nports == 0)
154 return 0;
155
156 portn = pf % adapter->params.nports;
157 portvec = adapter->params.portvec;
158 for (;;) {
159 /*
160 * Isolate the lowest set bit in the port vector. If we're at
161 * the port number that we want, return that as the pmask.
162 * otherwise mask that bit out of the port vector and
163 * decrement our port number ...
164 */
165 unsigned int pmask = portvec ^ (portvec & (portvec-1));
166 if (portn == 0)
167 return pmask;
168 portn--;
169 portvec &= ~pmask;
170 }
171 /*NOTREACHED*/
172}
Casey Leedom7ee9ff92010-06-25 12:11:46 +0000173
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000174enum {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000175 MAX_TXQ_ENTRIES = 16384,
176 MAX_CTRL_TXQ_ENTRIES = 1024,
177 MAX_RSPQ_ENTRIES = 16384,
178 MAX_RX_BUFFERS = 16384,
179 MIN_TXQ_ENTRIES = 32,
180 MIN_CTRL_TXQ_ENTRIES = 32,
181 MIN_RSPQ_ENTRIES = 128,
182 MIN_FL_ENTRIES = 16
183};
184
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000185/* Host shadow copy of ingress filter entry. This is in host native format
186 * and doesn't match the ordering or bit order, etc. of the hardware of the
187 * firmware command. The use of bit-field structure elements is purely to
188 * remind ourselves of the field size limitations and save memory in the case
189 * where the filter table is large.
190 */
191struct filter_entry {
192 /* Administrative fields for filter.
193 */
194 u32 valid:1; /* filter allocated and valid */
195 u32 locked:1; /* filter is administratively locked */
196
197 u32 pending:1; /* filter action is pending firmware reply */
198 u32 smtidx:8; /* Source MAC Table index for smac */
199 struct l2t_entry *l2t; /* Layer Two Table entry for dmac */
200
201 /* The filter itself. Most of this is a straight copy of information
202 * provided by the extended ioctl(). Some fields are translated to
203 * internal forms -- for instance the Ingress Queue ID passed in from
204 * the ioctl() is translated into the Absolute Ingress Queue ID.
205 */
206 struct ch_filter_specification fs;
207};
208
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000209#define DFLT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK | \
210 NETIF_MSG_TIMER | NETIF_MSG_IFDOWN | NETIF_MSG_IFUP |\
211 NETIF_MSG_RX_ERR | NETIF_MSG_TX_ERR)
212
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000213#define CH_DEVICE(devid, data) { PCI_VDEVICE(CHELSIO, devid), (data) }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000214
215static DEFINE_PCI_DEVICE_TABLE(cxgb4_pci_tbl) = {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000216 CH_DEVICE(0xa000, 0), /* PE10K */
Dimitris Michailidisccea7902010-08-23 17:21:01 +0000217 CH_DEVICE(0x4001, -1),
218 CH_DEVICE(0x4002, -1),
219 CH_DEVICE(0x4003, -1),
220 CH_DEVICE(0x4004, -1),
221 CH_DEVICE(0x4005, -1),
222 CH_DEVICE(0x4006, -1),
223 CH_DEVICE(0x4007, -1),
224 CH_DEVICE(0x4008, -1),
225 CH_DEVICE(0x4009, -1),
226 CH_DEVICE(0x400a, -1),
Hariprasad Shenaifb1e9332014-06-27 19:23:50 +0530227 CH_DEVICE(0x400d, -1),
228 CH_DEVICE(0x400e, -1),
229 CH_DEVICE(0x4080, -1),
230 CH_DEVICE(0x4081, -1),
231 CH_DEVICE(0x4082, -1),
232 CH_DEVICE(0x4083, -1),
233 CH_DEVICE(0x4084, -1),
234 CH_DEVICE(0x4085, -1),
235 CH_DEVICE(0x4086, -1),
236 CH_DEVICE(0x4087, -1),
237 CH_DEVICE(0x4088, -1),
Dimitris Michailidisccea7902010-08-23 17:21:01 +0000238 CH_DEVICE(0x4401, 4),
239 CH_DEVICE(0x4402, 4),
240 CH_DEVICE(0x4403, 4),
241 CH_DEVICE(0x4404, 4),
242 CH_DEVICE(0x4405, 4),
243 CH_DEVICE(0x4406, 4),
244 CH_DEVICE(0x4407, 4),
245 CH_DEVICE(0x4408, 4),
246 CH_DEVICE(0x4409, 4),
247 CH_DEVICE(0x440a, 4),
Vipul Pandyaf637d572012-03-05 22:56:36 +0000248 CH_DEVICE(0x440d, 4),
249 CH_DEVICE(0x440e, 4),
Hariprasad Shenaifb1e9332014-06-27 19:23:50 +0530250 CH_DEVICE(0x4480, 4),
251 CH_DEVICE(0x4481, 4),
252 CH_DEVICE(0x4482, 4),
253 CH_DEVICE(0x4483, 4),
254 CH_DEVICE(0x4484, 4),
255 CH_DEVICE(0x4485, 4),
256 CH_DEVICE(0x4486, 4),
257 CH_DEVICE(0x4487, 4),
258 CH_DEVICE(0x4488, 4),
Vipul Pandya9ef603a2013-04-29 04:04:39 +0000259 CH_DEVICE(0x5001, 4),
260 CH_DEVICE(0x5002, 4),
261 CH_DEVICE(0x5003, 4),
262 CH_DEVICE(0x5004, 4),
263 CH_DEVICE(0x5005, 4),
264 CH_DEVICE(0x5006, 4),
265 CH_DEVICE(0x5007, 4),
266 CH_DEVICE(0x5008, 4),
267 CH_DEVICE(0x5009, 4),
268 CH_DEVICE(0x500A, 4),
269 CH_DEVICE(0x500B, 4),
270 CH_DEVICE(0x500C, 4),
271 CH_DEVICE(0x500D, 4),
272 CH_DEVICE(0x500E, 4),
273 CH_DEVICE(0x500F, 4),
274 CH_DEVICE(0x5010, 4),
275 CH_DEVICE(0x5011, 4),
276 CH_DEVICE(0x5012, 4),
277 CH_DEVICE(0x5013, 4),
Hariprasad Shenaif0a8e6d2014-02-18 17:56:15 +0530278 CH_DEVICE(0x5014, 4),
279 CH_DEVICE(0x5015, 4),
Hariprasad Shenai0183aa62014-03-27 18:17:09 +0530280 CH_DEVICE(0x5080, 4),
281 CH_DEVICE(0x5081, 4),
282 CH_DEVICE(0x5082, 4),
283 CH_DEVICE(0x5083, 4),
284 CH_DEVICE(0x5084, 4),
285 CH_DEVICE(0x5085, 4),
Vipul Pandya9ef603a2013-04-29 04:04:39 +0000286 CH_DEVICE(0x5401, 4),
287 CH_DEVICE(0x5402, 4),
288 CH_DEVICE(0x5403, 4),
289 CH_DEVICE(0x5404, 4),
290 CH_DEVICE(0x5405, 4),
291 CH_DEVICE(0x5406, 4),
292 CH_DEVICE(0x5407, 4),
293 CH_DEVICE(0x5408, 4),
294 CH_DEVICE(0x5409, 4),
295 CH_DEVICE(0x540A, 4),
296 CH_DEVICE(0x540B, 4),
297 CH_DEVICE(0x540C, 4),
298 CH_DEVICE(0x540D, 4),
299 CH_DEVICE(0x540E, 4),
300 CH_DEVICE(0x540F, 4),
301 CH_DEVICE(0x5410, 4),
302 CH_DEVICE(0x5411, 4),
303 CH_DEVICE(0x5412, 4),
304 CH_DEVICE(0x5413, 4),
Hariprasad Shenaif0a8e6d2014-02-18 17:56:15 +0530305 CH_DEVICE(0x5414, 4),
306 CH_DEVICE(0x5415, 4),
Hariprasad Shenai0183aa62014-03-27 18:17:09 +0530307 CH_DEVICE(0x5480, 4),
308 CH_DEVICE(0x5481, 4),
309 CH_DEVICE(0x5482, 4),
310 CH_DEVICE(0x5483, 4),
311 CH_DEVICE(0x5484, 4),
312 CH_DEVICE(0x5485, 4),
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000313 { 0, }
314};
315
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530316#define FW4_FNAME "cxgb4/t4fw.bin"
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000317#define FW5_FNAME "cxgb4/t5fw.bin"
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530318#define FW4_CFNAME "cxgb4/t4-config.txt"
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000319#define FW5_CFNAME "cxgb4/t5-config.txt"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000320
321MODULE_DESCRIPTION(DRV_DESC);
322MODULE_AUTHOR("Chelsio Communications");
323MODULE_LICENSE("Dual BSD/GPL");
324MODULE_VERSION(DRV_VERSION);
325MODULE_DEVICE_TABLE(pci, cxgb4_pci_tbl);
Hariprasad Shenai16e47622013-12-03 17:05:58 +0530326MODULE_FIRMWARE(FW4_FNAME);
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000327MODULE_FIRMWARE(FW5_FNAME);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000328
Vipul Pandya636f9d32012-09-26 02:39:39 +0000329/*
330 * Normally we're willing to become the firmware's Master PF but will be happy
331 * if another PF has already become the Master and initialized the adapter.
332 * Setting "force_init" will cause this driver to forcibly establish itself as
333 * the Master PF and initialize the adapter.
334 */
335static uint force_init;
336
337module_param(force_init, uint, 0644);
338MODULE_PARM_DESC(force_init, "Forcibly become Master PF and initialize adapter");
339
Vipul Pandya13ee15d2012-09-26 02:39:40 +0000340/*
341 * Normally if the firmware we connect to has Configuration File support, we
342 * use that and only fall back to the old Driver-based initialization if the
343 * Configuration File fails for some reason. If force_old_init is set, then
344 * we'll always use the old Driver-based initialization sequence.
345 */
346static uint force_old_init;
347
348module_param(force_old_init, uint, 0644);
349MODULE_PARM_DESC(force_old_init, "Force old initialization sequence");
350
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000351static int dflt_msg_enable = DFLT_MSG_ENABLE;
352
353module_param(dflt_msg_enable, int, 0644);
354MODULE_PARM_DESC(dflt_msg_enable, "Chelsio T4 default message enable bitmap");
355
356/*
357 * The driver uses the best interrupt scheme available on a platform in the
358 * order MSI-X, MSI, legacy INTx interrupts. This parameter determines which
359 * of these schemes the driver may consider as follows:
360 *
361 * msi = 2: choose from among all three options
362 * msi = 1: only consider MSI and INTx interrupts
363 * msi = 0: force INTx interrupts
364 */
365static int msi = 2;
366
367module_param(msi, int, 0644);
368MODULE_PARM_DESC(msi, "whether to use INTx (0), MSI (1) or MSI-X (2)");
369
370/*
371 * Queue interrupt hold-off timer values. Queues default to the first of these
372 * upon creation.
373 */
374static unsigned int intr_holdoff[SGE_NTIMERS - 1] = { 5, 10, 20, 50, 100 };
375
376module_param_array(intr_holdoff, uint, NULL, 0644);
377MODULE_PARM_DESC(intr_holdoff, "values for queue interrupt hold-off timers "
378 "0..4 in microseconds");
379
380static unsigned int intr_cnt[SGE_NCOUNTERS - 1] = { 4, 8, 16 };
381
382module_param_array(intr_cnt, uint, NULL, 0644);
383MODULE_PARM_DESC(intr_cnt,
384 "thresholds 1..3 for queue interrupt packet counters");
385
Vipul Pandya636f9d32012-09-26 02:39:39 +0000386/*
387 * Normally we tell the chip to deliver Ingress Packets into our DMA buffers
388 * offset by 2 bytes in order to have the IP headers line up on 4-byte
389 * boundaries. This is a requirement for many architectures which will throw
390 * a machine check fault if an attempt is made to access one of the 4-byte IP
391 * header fields on a non-4-byte boundary. And it's a major performance issue
392 * even on some architectures which allow it like some implementations of the
393 * x86 ISA. However, some architectures don't mind this and for some very
394 * edge-case performance sensitive applications (like forwarding large volumes
395 * of small packets), setting this DMA offset to 0 will decrease the number of
396 * PCI-E Bus transfers enough to measurably affect performance.
397 */
398static int rx_dma_offset = 2;
399
Rusty Russelleb939922011-12-19 14:08:01 +0000400static bool vf_acls;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000401
402#ifdef CONFIG_PCI_IOV
403module_param(vf_acls, bool, 0644);
404MODULE_PARM_DESC(vf_acls, "if set enable virtualization L2 ACL enforcement");
405
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000406/* Configure the number of PCI-E Virtual Function which are to be instantiated
407 * on SR-IOV Capable Physical Functions.
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000408 */
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000409static unsigned int num_vf[NUM_OF_PF_WITH_SRIOV];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000410
411module_param_array(num_vf, uint, NULL, 0644);
Santosh Rastapur7d6727c2013-03-14 05:08:56 +0000412MODULE_PARM_DESC(num_vf, "number of VFs for each of PFs 0-3");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000413#endif
414
Anish Bhatt688848b2014-06-19 21:37:13 -0700415/* TX Queue select used to determine what algorithm to use for selecting TX
416 * queue. Select between the kernel provided function (select_queue=0) or user
417 * cxgb_select_queue function (select_queue=1)
418 *
419 * Default: select_queue=0
420 */
421static int select_queue;
422module_param(select_queue, int, 0644);
423MODULE_PARM_DESC(select_queue,
424 "Select between kernel provided method of selecting or driver method of selecting TX queue. Default is kernel method.");
425
Vipul Pandya13ee15d2012-09-26 02:39:40 +0000426/*
427 * The filter TCAM has a fixed portion and a variable portion. The fixed
428 * portion can match on source/destination IP IPv4/IPv6 addresses and TCP/UDP
429 * ports. The variable portion is 36 bits which can include things like Exact
430 * Match MAC Index (9 bits), Ether Type (16 bits), IP Protocol (8 bits),
431 * [Inner] VLAN Tag (17 bits), etc. which, if all were somehow selected, would
432 * far exceed the 36-bit budget for this "compressed" header portion of the
433 * filter. Thus, we have a scarce resource which must be carefully managed.
434 *
435 * By default we set this up to mostly match the set of filter matching
436 * capabilities of T3 but with accommodations for some of T4's more
437 * interesting features:
438 *
439 * { IP Fragment (1), MPS Match Type (3), IP Protocol (8),
440 * [Inner] VLAN (17), Port (3), FCoE (1) }
441 */
442enum {
443 TP_VLAN_PRI_MAP_DEFAULT = HW_TPL_FR_MT_PR_IV_P_FC,
444 TP_VLAN_PRI_MAP_FIRST = FCOE_SHIFT,
445 TP_VLAN_PRI_MAP_LAST = FRAGMENTATION_SHIFT,
446};
447
448static unsigned int tp_vlan_pri_map = TP_VLAN_PRI_MAP_DEFAULT;
449
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000450module_param(tp_vlan_pri_map, uint, 0644);
451MODULE_PARM_DESC(tp_vlan_pri_map, "global compressed filter configuration");
452
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000453static struct dentry *cxgb4_debugfs_root;
454
455static LIST_HEAD(adapter_list);
456static DEFINE_MUTEX(uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +0530457/* Adapter list to be accessed from atomic context */
458static LIST_HEAD(adap_rcu_list);
459static DEFINE_SPINLOCK(adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000460static struct cxgb4_uld_info ulds[CXGB4_ULD_MAX];
461static const char *uld_str[] = { "RDMA", "iSCSI" };
462
463static void link_report(struct net_device *dev)
464{
465 if (!netif_carrier_ok(dev))
466 netdev_info(dev, "link down\n");
467 else {
468 static const char *fc[] = { "no", "Rx", "Tx", "Tx/Rx" };
469
470 const char *s = "10Mbps";
471 const struct port_info *p = netdev_priv(dev);
472
473 switch (p->link_cfg.speed) {
Ben Hutchingse8b39012014-02-23 00:03:24 +0000474 case 10000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000475 s = "10Gbps";
476 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000477 case 1000:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000478 s = "1000Mbps";
479 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000480 case 100:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000481 s = "100Mbps";
482 break;
Ben Hutchingse8b39012014-02-23 00:03:24 +0000483 case 40000:
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +0530484 s = "40Gbps";
485 break;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000486 }
487
488 netdev_info(dev, "link up, %s, full-duplex, %s PAUSE\n", s,
489 fc[p->link_cfg.fc]);
490 }
491}
492
Anish Bhatt688848b2014-06-19 21:37:13 -0700493#ifdef CONFIG_CHELSIO_T4_DCB
494/* Set up/tear down Data Center Bridging Priority mapping for a net device. */
495static void dcb_tx_queue_prio_enable(struct net_device *dev, int enable)
496{
497 struct port_info *pi = netdev_priv(dev);
498 struct adapter *adap = pi->adapter;
499 struct sge_eth_txq *txq = &adap->sge.ethtxq[pi->first_qset];
500 int i;
501
502 /* We use a simple mapping of Port TX Queue Index to DCB
503 * Priority when we're enabling DCB.
504 */
505 for (i = 0; i < pi->nqsets; i++, txq++) {
506 u32 name, value;
507 int err;
508
509 name = (FW_PARAMS_MNEM(FW_PARAMS_MNEM_DMAQ) |
510 FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DMAQ_EQ_DCBPRIO_ETH) |
511 FW_PARAMS_PARAM_YZ(txq->q.cntxt_id));
512 value = enable ? i : 0xffffffff;
513
514 /* Since we can be called while atomic (from "interrupt
515 * level") we need to issue the Set Parameters Commannd
516 * without sleeping (timeout < 0).
517 */
518 err = t4_set_params_nosleep(adap, adap->mbox, adap->fn, 0, 1,
519 &name, &value);
520
521 if (err)
522 dev_err(adap->pdev_dev,
523 "Can't %s DCB Priority on port %d, TX Queue %d: err=%d\n",
524 enable ? "set" : "unset", pi->port_id, i, -err);
525 }
526}
527#endif /* CONFIG_CHELSIO_T4_DCB */
528
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000529void t4_os_link_changed(struct adapter *adapter, int port_id, int link_stat)
530{
531 struct net_device *dev = adapter->port[port_id];
532
533 /* Skip changes from disabled ports. */
534 if (netif_running(dev) && link_stat != netif_carrier_ok(dev)) {
535 if (link_stat)
536 netif_carrier_on(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700537 else {
538#ifdef CONFIG_CHELSIO_T4_DCB
539 cxgb4_dcb_state_init(dev);
540 dcb_tx_queue_prio_enable(dev, false);
541#endif /* CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000542 netif_carrier_off(dev);
Anish Bhatt688848b2014-06-19 21:37:13 -0700543 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000544
545 link_report(dev);
546 }
547}
548
549void t4_os_portmod_changed(const struct adapter *adap, int port_id)
550{
551 static const char *mod_str[] = {
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000552 NULL, "LR", "SR", "ER", "passive DA", "active DA", "LRM"
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000553 };
554
555 const struct net_device *dev = adap->port[port_id];
556 const struct port_info *pi = netdev_priv(dev);
557
558 if (pi->mod_type == FW_PORT_MOD_TYPE_NONE)
559 netdev_info(dev, "port module unplugged\n");
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +0000560 else if (pi->mod_type < ARRAY_SIZE(mod_str))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000561 netdev_info(dev, "%s module inserted\n", mod_str[pi->mod_type]);
562}
563
564/*
565 * Configure the exact and hash address filters to handle a port's multicast
566 * and secondary unicast MAC addresses.
567 */
568static int set_addr_filters(const struct net_device *dev, bool sleep)
569{
570 u64 mhash = 0;
571 u64 uhash = 0;
572 bool free = true;
573 u16 filt_idx[7];
574 const u8 *addr[7];
575 int ret, naddr = 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000576 const struct netdev_hw_addr *ha;
577 int uc_cnt = netdev_uc_count(dev);
David S. Miller4a35ecf2010-04-06 23:53:30 -0700578 int mc_cnt = netdev_mc_count(dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000579 const struct port_info *pi = netdev_priv(dev);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000580 unsigned int mb = pi->adapter->fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000581
582 /* first do the secondary unicast addresses */
583 netdev_for_each_uc_addr(ha, dev) {
584 addr[naddr++] = ha->addr;
585 if (--uc_cnt == 0 || naddr >= ARRAY_SIZE(addr)) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000586 ret = t4_alloc_mac_filt(pi->adapter, mb, pi->viid, free,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000587 naddr, addr, filt_idx, &uhash, sleep);
588 if (ret < 0)
589 return ret;
590
591 free = false;
592 naddr = 0;
593 }
594 }
595
596 /* next set up the multicast addresses */
David S. Miller4a35ecf2010-04-06 23:53:30 -0700597 netdev_for_each_mc_addr(ha, dev) {
598 addr[naddr++] = ha->addr;
599 if (--mc_cnt == 0 || naddr >= ARRAY_SIZE(addr)) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000600 ret = t4_alloc_mac_filt(pi->adapter, mb, pi->viid, free,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000601 naddr, addr, filt_idx, &mhash, sleep);
602 if (ret < 0)
603 return ret;
604
605 free = false;
606 naddr = 0;
607 }
608 }
609
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000610 return t4_set_addr_hash(pi->adapter, mb, pi->viid, uhash != 0,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000611 uhash | mhash, sleep);
612}
613
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530614int dbfifo_int_thresh = 10; /* 10 == 640 entry threshold */
615module_param(dbfifo_int_thresh, int, 0644);
616MODULE_PARM_DESC(dbfifo_int_thresh, "doorbell fifo interrupt threshold");
617
Vipul Pandya404d9e32012-10-08 02:59:43 +0000618/*
619 * usecs to sleep while draining the dbfifo
620 */
621static int dbfifo_drain_delay = 1000;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530622module_param(dbfifo_drain_delay, int, 0644);
623MODULE_PARM_DESC(dbfifo_drain_delay,
624 "usecs to sleep while draining the dbfifo");
625
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000626/*
627 * Set Rx properties of a port, such as promiscruity, address filters, and MTU.
628 * If @mtu is -1 it is left unchanged.
629 */
630static int set_rxmode(struct net_device *dev, int mtu, bool sleep_ok)
631{
632 int ret;
633 struct port_info *pi = netdev_priv(dev);
634
635 ret = set_addr_filters(dev, sleep_ok);
636 if (ret == 0)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000637 ret = t4_set_rxmode(pi->adapter, pi->adapter->fn, pi->viid, mtu,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000638 (dev->flags & IFF_PROMISC) ? 1 : 0,
Dimitris Michailidisf8f5aaf2010-05-10 15:58:07 +0000639 (dev->flags & IFF_ALLMULTI) ? 1 : 0, 1, -1,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000640 sleep_ok);
641 return ret;
642}
643
Vipul Pandya3069ee9b2012-05-18 15:29:26 +0530644static struct workqueue_struct *workq;
645
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000646/**
647 * link_start - enable a port
648 * @dev: the port to enable
649 *
650 * Performs the MAC and PHY actions needed to enable a port.
651 */
652static int link_start(struct net_device *dev)
653{
654 int ret;
655 struct port_info *pi = netdev_priv(dev);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000656 unsigned int mb = pi->adapter->fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000657
658 /*
659 * We do not set address filters and promiscuity here, the stack does
660 * that step explicitly.
661 */
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000662 ret = t4_set_rxmode(pi->adapter, mb, pi->viid, dev->mtu, -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +0000663 !!(dev->features & NETIF_F_HW_VLAN_CTAG_RX), true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000664 if (ret == 0) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000665 ret = t4_change_mac(pi->adapter, mb, pi->viid,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000666 pi->xact_addr_filt, dev->dev_addr, true,
Dimitris Michailidisb6bd29e2010-05-18 10:07:11 +0000667 true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000668 if (ret >= 0) {
669 pi->xact_addr_filt = ret;
670 ret = 0;
671 }
672 }
673 if (ret == 0)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +0000674 ret = t4_link_start(pi->adapter, mb, pi->tx_chan,
675 &pi->link_cfg);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000676 if (ret == 0)
Anish Bhatt688848b2014-06-19 21:37:13 -0700677 ret = t4_enable_vi_params(pi->adapter, mb, pi->viid, true,
678 true, CXGB4_DCB_ENABLED);
679
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000680 return ret;
681}
682
Anish Bhatt688848b2014-06-19 21:37:13 -0700683int cxgb4_dcb_enabled(const struct net_device *dev)
684{
685#ifdef CONFIG_CHELSIO_T4_DCB
686 struct port_info *pi = netdev_priv(dev);
687
688 return pi->dcb.state == CXGB4_DCB_STATE_FW_ALLSYNCED;
689#else
690 return 0;
691#endif
692}
693EXPORT_SYMBOL(cxgb4_dcb_enabled);
694
695#ifdef CONFIG_CHELSIO_T4_DCB
696/* Handle a Data Center Bridging update message from the firmware. */
697static void dcb_rpl(struct adapter *adap, const struct fw_port_cmd *pcmd)
698{
699 int port = FW_PORT_CMD_PORTID_GET(ntohl(pcmd->op_to_portid));
700 struct net_device *dev = adap->port[port];
701 int old_dcb_enabled = cxgb4_dcb_enabled(dev);
702 int new_dcb_enabled;
703
704 cxgb4_dcb_handle_fw_update(adap, pcmd);
705 new_dcb_enabled = cxgb4_dcb_enabled(dev);
706
707 /* If the DCB has become enabled or disabled on the port then we're
708 * going to need to set up/tear down DCB Priority parameters for the
709 * TX Queues associated with the port.
710 */
711 if (new_dcb_enabled != old_dcb_enabled)
712 dcb_tx_queue_prio_enable(dev, new_dcb_enabled);
713}
714#endif /* CONFIG_CHELSIO_T4_DCB */
715
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000716/* Clear a filter and release any of its resources that we own. This also
717 * clears the filter's "pending" status.
718 */
719static void clear_filter(struct adapter *adap, struct filter_entry *f)
720{
721 /* If the new or old filter have loopback rewriteing rules then we'll
722 * need to free any existing Layer Two Table (L2T) entries of the old
723 * filter rule. The firmware will handle freeing up any Source MAC
724 * Table (SMT) entries used for rewriting Source MAC Addresses in
725 * loopback rules.
726 */
727 if (f->l2t)
728 cxgb4_l2t_release(f->l2t);
729
730 /* The zeroing of the filter rule below clears the filter valid,
731 * pending, locked flags, l2t pointer, etc. so it's all we need for
732 * this operation.
733 */
734 memset(f, 0, sizeof(*f));
735}
736
737/* Handle a filter write/deletion reply.
738 */
739static void filter_rpl(struct adapter *adap, const struct cpl_set_tcb_rpl *rpl)
740{
741 unsigned int idx = GET_TID(rpl);
742 unsigned int nidx = idx - adap->tids.ftid_base;
743 unsigned int ret;
744 struct filter_entry *f;
745
746 if (idx >= adap->tids.ftid_base && nidx <
747 (adap->tids.nftids + adap->tids.nsftids)) {
748 idx = nidx;
749 ret = GET_TCB_COOKIE(rpl->cookie);
750 f = &adap->tids.ftid_tab[idx];
751
752 if (ret == FW_FILTER_WR_FLT_DELETED) {
753 /* Clear the filter when we get confirmation from the
754 * hardware that the filter has been deleted.
755 */
756 clear_filter(adap, f);
757 } else if (ret == FW_FILTER_WR_SMT_TBL_FULL) {
758 dev_err(adap->pdev_dev, "filter %u setup failed due to full SMT\n",
759 idx);
760 clear_filter(adap, f);
761 } else if (ret == FW_FILTER_WR_FLT_ADDED) {
762 f->smtidx = (be64_to_cpu(rpl->oldval) >> 24) & 0xff;
763 f->pending = 0; /* asynchronous setup completed */
764 f->valid = 1;
765 } else {
766 /* Something went wrong. Issue a warning about the
767 * problem and clear everything out.
768 */
769 dev_err(adap->pdev_dev, "filter %u setup failed with error %u\n",
770 idx, ret);
771 clear_filter(adap, f);
772 }
773 }
774}
775
776/* Response queue handler for the FW event queue.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000777 */
778static int fwevtq_handler(struct sge_rspq *q, const __be64 *rsp,
779 const struct pkt_gl *gl)
780{
781 u8 opcode = ((const struct rss_header *)rsp)->opcode;
782
783 rsp++; /* skip RSS header */
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000784
785 /* FW can send EGR_UPDATEs encapsulated in a CPL_FW4_MSG.
786 */
787 if (unlikely(opcode == CPL_FW4_MSG &&
788 ((const struct cpl_fw4_msg *)rsp)->type == FW_TYPE_RSSCPL)) {
789 rsp++;
790 opcode = ((const struct rss_header *)rsp)->opcode;
791 rsp++;
792 if (opcode != CPL_SGE_EGR_UPDATE) {
793 dev_err(q->adap->pdev_dev, "unexpected FW4/CPL %#x on FW event queue\n"
794 , opcode);
795 goto out;
796 }
797 }
798
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000799 if (likely(opcode == CPL_SGE_EGR_UPDATE)) {
800 const struct cpl_sge_egr_update *p = (void *)rsp;
801 unsigned int qid = EGR_QID(ntohl(p->opcode_qid));
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000802 struct sge_txq *txq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000803
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000804 txq = q->adap->sge.egr_map[qid - q->adap->sge.egr_start];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000805 txq->restarts++;
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000806 if ((u8 *)txq < (u8 *)q->adap->sge.ofldtxq) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000807 struct sge_eth_txq *eq;
808
809 eq = container_of(txq, struct sge_eth_txq, q);
810 netif_tx_wake_queue(eq->txq);
811 } else {
812 struct sge_ofld_txq *oq;
813
814 oq = container_of(txq, struct sge_ofld_txq, q);
815 tasklet_schedule(&oq->qresume_tsk);
816 }
817 } else if (opcode == CPL_FW6_MSG || opcode == CPL_FW4_MSG) {
818 const struct cpl_fw6_msg *p = (void *)rsp;
819
Anish Bhatt688848b2014-06-19 21:37:13 -0700820#ifdef CONFIG_CHELSIO_T4_DCB
821 const struct fw_port_cmd *pcmd = (const void *)p->data;
822 unsigned int cmd = FW_CMD_OP_GET(ntohl(pcmd->op_to_portid));
823 unsigned int action =
824 FW_PORT_CMD_ACTION_GET(ntohl(pcmd->action_to_len16));
825
826 if (cmd == FW_PORT_CMD &&
827 action == FW_PORT_ACTION_GET_PORT_INFO) {
828 int port = FW_PORT_CMD_PORTID_GET(
829 be32_to_cpu(pcmd->op_to_portid));
830 struct net_device *dev = q->adap->port[port];
831 int state_input = ((pcmd->u.info.dcbxdis_pkd &
832 FW_PORT_CMD_DCBXDIS)
833 ? CXGB4_DCB_INPUT_FW_DISABLED
834 : CXGB4_DCB_INPUT_FW_ENABLED);
835
836 cxgb4_dcb_state_fsm(dev, state_input);
837 }
838
839 if (cmd == FW_PORT_CMD &&
840 action == FW_PORT_ACTION_L2_DCB_CFG)
841 dcb_rpl(q->adap, pcmd);
842 else
843#endif
844 if (p->type == 0)
845 t4_handle_fw_rpl(q->adap, p->data);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000846 } else if (opcode == CPL_L2T_WRITE_RPL) {
847 const struct cpl_l2t_write_rpl *p = (void *)rsp;
848
849 do_l2t_write_rpl(q->adap, p);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +0000850 } else if (opcode == CPL_SET_TCB_RPL) {
851 const struct cpl_set_tcb_rpl *p = (void *)rsp;
852
853 filter_rpl(q->adap, p);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000854 } else
855 dev_err(q->adap->pdev_dev,
856 "unexpected CPL %#x on FW event queue\n", opcode);
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000857out:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000858 return 0;
859}
860
861/**
862 * uldrx_handler - response queue handler for ULD queues
863 * @q: the response queue that received the packet
864 * @rsp: the response queue descriptor holding the offload message
865 * @gl: the gather list of packet fragments
866 *
867 * Deliver an ingress offload packet to a ULD. All processing is done by
868 * the ULD, we just maintain statistics.
869 */
870static int uldrx_handler(struct sge_rspq *q, const __be64 *rsp,
871 const struct pkt_gl *gl)
872{
873 struct sge_ofld_rxq *rxq = container_of(q, struct sge_ofld_rxq, rspq);
874
Vipul Pandyab407a4a2013-04-29 04:04:40 +0000875 /* FW can send CPLs encapsulated in a CPL_FW4_MSG.
876 */
877 if (((const struct rss_header *)rsp)->opcode == CPL_FW4_MSG &&
878 ((const struct cpl_fw4_msg *)(rsp + 1))->type == FW_TYPE_RSSCPL)
879 rsp += 2;
880
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000881 if (ulds[q->uld].rx_handler(q->adap->uld_handle[q->uld], rsp, gl)) {
882 rxq->stats.nomem++;
883 return -1;
884 }
885 if (gl == NULL)
886 rxq->stats.imm++;
887 else if (gl == CXGB4_MSG_AN)
888 rxq->stats.an++;
889 else
890 rxq->stats.pkts++;
891 return 0;
892}
893
894static void disable_msi(struct adapter *adapter)
895{
896 if (adapter->flags & USING_MSIX) {
897 pci_disable_msix(adapter->pdev);
898 adapter->flags &= ~USING_MSIX;
899 } else if (adapter->flags & USING_MSI) {
900 pci_disable_msi(adapter->pdev);
901 adapter->flags &= ~USING_MSI;
902 }
903}
904
905/*
906 * Interrupt handler for non-data events used with MSI-X.
907 */
908static irqreturn_t t4_nondata_intr(int irq, void *cookie)
909{
910 struct adapter *adap = cookie;
911
912 u32 v = t4_read_reg(adap, MYPF_REG(PL_PF_INT_CAUSE));
913 if (v & PFSW) {
914 adap->swintr = 1;
915 t4_write_reg(adap, MYPF_REG(PL_PF_INT_CAUSE), v);
916 }
917 t4_slow_intr_handler(adap);
918 return IRQ_HANDLED;
919}
920
921/*
922 * Name the MSI-X interrupts.
923 */
924static void name_msix_vecs(struct adapter *adap)
925{
Dimitris Michailidisba278162010-12-14 21:36:50 +0000926 int i, j, msi_idx = 2, n = sizeof(adap->msix_info[0].desc);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000927
928 /* non-data interrupts */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000929 snprintf(adap->msix_info[0].desc, n, "%s", adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000930
931 /* FW events */
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000932 snprintf(adap->msix_info[1].desc, n, "%s-FWeventq",
933 adap->port[0]->name);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000934
935 /* Ethernet queues */
936 for_each_port(adap, j) {
937 struct net_device *d = adap->port[j];
938 const struct port_info *pi = netdev_priv(d);
939
Dimitris Michailidisba278162010-12-14 21:36:50 +0000940 for (i = 0; i < pi->nqsets; i++, msi_idx++)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000941 snprintf(adap->msix_info[msi_idx].desc, n, "%s-Rx%d",
942 d->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000943 }
944
945 /* offload queues */
Dimitris Michailidisba278162010-12-14 21:36:50 +0000946 for_each_ofldrxq(&adap->sge, i)
947 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-ofld%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000948 adap->port[0]->name, i);
Dimitris Michailidisba278162010-12-14 21:36:50 +0000949
950 for_each_rdmarxq(&adap->sge, i)
951 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma%d",
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +0000952 adap->port[0]->name, i);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530953
954 for_each_rdmaciq(&adap->sge, i)
955 snprintf(adap->msix_info[msi_idx++].desc, n, "%s-rdma-ciq%d",
956 adap->port[0]->name, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000957}
958
959static int request_msix_queue_irqs(struct adapter *adap)
960{
961 struct sge *s = &adap->sge;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530962 int err, ethqidx, ofldqidx = 0, rdmaqidx = 0, rdmaciqqidx = 0;
963 int msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000964
965 err = request_irq(adap->msix_info[1].vec, t4_sge_intr_msix, 0,
966 adap->msix_info[1].desc, &s->fw_evtq);
967 if (err)
968 return err;
969
970 for_each_ethrxq(s, ethqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000971 err = request_irq(adap->msix_info[msi_index].vec,
972 t4_sge_intr_msix, 0,
973 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000974 &s->ethrxq[ethqidx].rspq);
975 if (err)
976 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000977 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000978 }
979 for_each_ofldrxq(s, ofldqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000980 err = request_irq(adap->msix_info[msi_index].vec,
981 t4_sge_intr_msix, 0,
982 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000983 &s->ofldrxq[ofldqidx].rspq);
984 if (err)
985 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000986 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000987 }
988 for_each_rdmarxq(s, rdmaqidx) {
Vipul Pandya404d9e32012-10-08 02:59:43 +0000989 err = request_irq(adap->msix_info[msi_index].vec,
990 t4_sge_intr_msix, 0,
991 adap->msix_info[msi_index].desc,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000992 &s->rdmarxq[rdmaqidx].rspq);
993 if (err)
994 goto unwind;
Vipul Pandya404d9e32012-10-08 02:59:43 +0000995 msi_index++;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +0000996 }
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530997 for_each_rdmaciq(s, rdmaciqqidx) {
998 err = request_irq(adap->msix_info[msi_index].vec,
999 t4_sge_intr_msix, 0,
1000 adap->msix_info[msi_index].desc,
1001 &s->rdmaciq[rdmaciqqidx].rspq);
1002 if (err)
1003 goto unwind;
1004 msi_index++;
1005 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001006 return 0;
1007
1008unwind:
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301009 while (--rdmaciqqidx >= 0)
1010 free_irq(adap->msix_info[--msi_index].vec,
1011 &s->rdmaciq[rdmaciqqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001012 while (--rdmaqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +00001013 free_irq(adap->msix_info[--msi_index].vec,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001014 &s->rdmarxq[rdmaqidx].rspq);
1015 while (--ofldqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +00001016 free_irq(adap->msix_info[--msi_index].vec,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001017 &s->ofldrxq[ofldqidx].rspq);
1018 while (--ethqidx >= 0)
Vipul Pandya404d9e32012-10-08 02:59:43 +00001019 free_irq(adap->msix_info[--msi_index].vec,
1020 &s->ethrxq[ethqidx].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001021 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
1022 return err;
1023}
1024
1025static void free_msix_queue_irqs(struct adapter *adap)
1026{
Vipul Pandya404d9e32012-10-08 02:59:43 +00001027 int i, msi_index = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001028 struct sge *s = &adap->sge;
1029
1030 free_irq(adap->msix_info[1].vec, &s->fw_evtq);
1031 for_each_ethrxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +00001032 free_irq(adap->msix_info[msi_index++].vec, &s->ethrxq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001033 for_each_ofldrxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +00001034 free_irq(adap->msix_info[msi_index++].vec, &s->ofldrxq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001035 for_each_rdmarxq(s, i)
Vipul Pandya404d9e32012-10-08 02:59:43 +00001036 free_irq(adap->msix_info[msi_index++].vec, &s->rdmarxq[i].rspq);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301037 for_each_rdmaciq(s, i)
1038 free_irq(adap->msix_info[msi_index++].vec, &s->rdmaciq[i].rspq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001039}
1040
1041/**
Dimitris Michailidis671b0062010-07-11 12:01:17 +00001042 * write_rss - write the RSS table for a given port
1043 * @pi: the port
1044 * @queues: array of queue indices for RSS
1045 *
1046 * Sets up the portion of the HW RSS table for the port's VI to distribute
1047 * packets to the Rx queues in @queues.
1048 */
1049static int write_rss(const struct port_info *pi, const u16 *queues)
1050{
1051 u16 *rss;
1052 int i, err;
1053 const struct sge_eth_rxq *q = &pi->adapter->sge.ethrxq[pi->first_qset];
1054
1055 rss = kmalloc(pi->rss_size * sizeof(u16), GFP_KERNEL);
1056 if (!rss)
1057 return -ENOMEM;
1058
1059 /* map the queue indices to queue ids */
1060 for (i = 0; i < pi->rss_size; i++, queues++)
1061 rss[i] = q[*queues].rspq.abs_id;
1062
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00001063 err = t4_config_rss_range(pi->adapter, pi->adapter->fn, pi->viid, 0,
1064 pi->rss_size, rss, pi->rss_size);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00001065 kfree(rss);
1066 return err;
1067}
1068
1069/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001070 * setup_rss - configure RSS
1071 * @adap: the adapter
1072 *
Dimitris Michailidis671b0062010-07-11 12:01:17 +00001073 * Sets up RSS for each port.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001074 */
1075static int setup_rss(struct adapter *adap)
1076{
Dimitris Michailidis671b0062010-07-11 12:01:17 +00001077 int i, err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001078
1079 for_each_port(adap, i) {
1080 const struct port_info *pi = adap2pinfo(adap, i);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001081
Dimitris Michailidis671b0062010-07-11 12:01:17 +00001082 err = write_rss(pi, pi->rss);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001083 if (err)
1084 return err;
1085 }
1086 return 0;
1087}
1088
1089/*
Dimitris Michailidise46dab42010-08-23 17:20:58 +00001090 * Return the channel of the ingress queue with the given qid.
1091 */
1092static unsigned int rxq_to_chan(const struct sge *p, unsigned int qid)
1093{
1094 qid -= p->ingr_start;
1095 return netdev2pinfo(p->ingr_map[qid]->netdev)->tx_chan;
1096}
1097
1098/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001099 * Wait until all NAPI handlers are descheduled.
1100 */
1101static void quiesce_rx(struct adapter *adap)
1102{
1103 int i;
1104
1105 for (i = 0; i < ARRAY_SIZE(adap->sge.ingr_map); i++) {
1106 struct sge_rspq *q = adap->sge.ingr_map[i];
1107
1108 if (q && q->handler)
1109 napi_disable(&q->napi);
1110 }
1111}
1112
1113/*
1114 * Enable NAPI scheduling and interrupt generation for all Rx queues.
1115 */
1116static void enable_rx(struct adapter *adap)
1117{
1118 int i;
1119
1120 for (i = 0; i < ARRAY_SIZE(adap->sge.ingr_map); i++) {
1121 struct sge_rspq *q = adap->sge.ingr_map[i];
1122
1123 if (!q)
1124 continue;
1125 if (q->handler)
1126 napi_enable(&q->napi);
1127 /* 0-increment GTS to start the timer and enable interrupts */
1128 t4_write_reg(adap, MYPF_REG(SGE_PF_GTS),
1129 SEINTARM(q->intr_params) |
1130 INGRESSQID(q->cntxt_id));
1131 }
1132}
1133
1134/**
1135 * setup_sge_queues - configure SGE Tx/Rx/response queues
1136 * @adap: the adapter
1137 *
1138 * Determines how many sets of SGE queues to use and initializes them.
1139 * We support multiple queue sets per port if we have MSI-X, otherwise
1140 * just one queue set per port.
1141 */
1142static int setup_sge_queues(struct adapter *adap)
1143{
1144 int err, msi_idx, i, j;
1145 struct sge *s = &adap->sge;
1146
1147 bitmap_zero(s->starving_fl, MAX_EGRQ);
1148 bitmap_zero(s->txq_maperr, MAX_EGRQ);
1149
1150 if (adap->flags & USING_MSIX)
1151 msi_idx = 1; /* vector 0 is for non-queue interrupts */
1152 else {
1153 err = t4_sge_alloc_rxq(adap, &s->intrq, false, adap->port[0], 0,
1154 NULL, NULL);
1155 if (err)
1156 return err;
1157 msi_idx = -((int)s->intrq.abs_id + 1);
1158 }
1159
1160 err = t4_sge_alloc_rxq(adap, &s->fw_evtq, true, adap->port[0],
1161 msi_idx, NULL, fwevtq_handler);
1162 if (err) {
1163freeout: t4_free_sge_resources(adap);
1164 return err;
1165 }
1166
1167 for_each_port(adap, i) {
1168 struct net_device *dev = adap->port[i];
1169 struct port_info *pi = netdev_priv(dev);
1170 struct sge_eth_rxq *q = &s->ethrxq[pi->first_qset];
1171 struct sge_eth_txq *t = &s->ethtxq[pi->first_qset];
1172
1173 for (j = 0; j < pi->nqsets; j++, q++) {
1174 if (msi_idx > 0)
1175 msi_idx++;
1176 err = t4_sge_alloc_rxq(adap, &q->rspq, false, dev,
1177 msi_idx, &q->fl,
1178 t4_ethrx_handler);
1179 if (err)
1180 goto freeout;
1181 q->rspq.idx = j;
1182 memset(&q->stats, 0, sizeof(q->stats));
1183 }
1184 for (j = 0; j < pi->nqsets; j++, t++) {
1185 err = t4_sge_alloc_eth_txq(adap, t, dev,
1186 netdev_get_tx_queue(dev, j),
1187 s->fw_evtq.cntxt_id);
1188 if (err)
1189 goto freeout;
1190 }
1191 }
1192
1193 j = s->ofldqsets / adap->params.nports; /* ofld queues per channel */
1194 for_each_ofldrxq(s, i) {
1195 struct sge_ofld_rxq *q = &s->ofldrxq[i];
1196 struct net_device *dev = adap->port[i / j];
1197
1198 if (msi_idx > 0)
1199 msi_idx++;
1200 err = t4_sge_alloc_rxq(adap, &q->rspq, false, dev, msi_idx,
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301201 q->fl.size ? &q->fl : NULL,
1202 uldrx_handler);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001203 if (err)
1204 goto freeout;
1205 memset(&q->stats, 0, sizeof(q->stats));
1206 s->ofld_rxq[i] = q->rspq.abs_id;
1207 err = t4_sge_alloc_ofld_txq(adap, &s->ofldtxq[i], dev,
1208 s->fw_evtq.cntxt_id);
1209 if (err)
1210 goto freeout;
1211 }
1212
1213 for_each_rdmarxq(s, i) {
1214 struct sge_ofld_rxq *q = &s->rdmarxq[i];
1215
1216 if (msi_idx > 0)
1217 msi_idx++;
1218 err = t4_sge_alloc_rxq(adap, &q->rspq, false, adap->port[i],
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301219 msi_idx, q->fl.size ? &q->fl : NULL,
1220 uldrx_handler);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001221 if (err)
1222 goto freeout;
1223 memset(&q->stats, 0, sizeof(q->stats));
1224 s->rdma_rxq[i] = q->rspq.abs_id;
1225 }
1226
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05301227 for_each_rdmaciq(s, i) {
1228 struct sge_ofld_rxq *q = &s->rdmaciq[i];
1229
1230 if (msi_idx > 0)
1231 msi_idx++;
1232 err = t4_sge_alloc_rxq(adap, &q->rspq, false, adap->port[i],
1233 msi_idx, q->fl.size ? &q->fl : NULL,
1234 uldrx_handler);
1235 if (err)
1236 goto freeout;
1237 memset(&q->stats, 0, sizeof(q->stats));
1238 s->rdma_ciq[i] = q->rspq.abs_id;
1239 }
1240
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001241 for_each_port(adap, i) {
1242 /*
1243 * Note that ->rdmarxq[i].rspq.cntxt_id below is 0 if we don't
1244 * have RDMA queues, and that's the right value.
1245 */
1246 err = t4_sge_alloc_ctrl_txq(adap, &s->ctrlq[i], adap->port[i],
1247 s->fw_evtq.cntxt_id,
1248 s->rdmarxq[i].rspq.cntxt_id);
1249 if (err)
1250 goto freeout;
1251 }
1252
1253 t4_write_reg(adap, MPS_TRC_RSS_CONTROL,
1254 RSSCONTROL(netdev2pinfo(adap->port[0])->tx_chan) |
1255 QUEUENUMBER(s->ethrxq[0].rspq.abs_id));
1256 return 0;
1257}
1258
1259/*
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001260 * Allocate a chunk of memory using kmalloc or, if that fails, vmalloc.
1261 * The allocated memory is cleared.
1262 */
1263void *t4_alloc_mem(size_t size)
1264{
Joe Perches8be04b92013-06-19 12:15:53 -07001265 void *p = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001266
1267 if (!p)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00001268 p = vzalloc(size);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001269 return p;
1270}
1271
1272/*
1273 * Free memory allocated through alloc_mem().
1274 */
stephen hemminger31b9c192010-10-18 05:39:18 +00001275static void t4_free_mem(void *addr)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001276{
1277 if (is_vmalloc_addr(addr))
1278 vfree(addr);
1279 else
1280 kfree(addr);
1281}
1282
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00001283/* Send a Work Request to write the filter at a specified index. We construct
1284 * a Firmware Filter Work Request to have the work done and put the indicated
1285 * filter into "pending" mode which will prevent any further actions against
1286 * it till we get a reply from the firmware on the completion status of the
1287 * request.
1288 */
1289static int set_filter_wr(struct adapter *adapter, int fidx)
1290{
1291 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1292 struct sk_buff *skb;
1293 struct fw_filter_wr *fwr;
1294 unsigned int ftid;
1295
1296 /* If the new filter requires loopback Destination MAC and/or VLAN
1297 * rewriting then we need to allocate a Layer 2 Table (L2T) entry for
1298 * the filter.
1299 */
1300 if (f->fs.newdmac || f->fs.newvlan) {
1301 /* allocate L2T entry for new filter */
1302 f->l2t = t4_l2t_alloc_switching(adapter->l2t);
1303 if (f->l2t == NULL)
1304 return -EAGAIN;
1305 if (t4_l2t_set_switching(adapter, f->l2t, f->fs.vlan,
1306 f->fs.eport, f->fs.dmac)) {
1307 cxgb4_l2t_release(f->l2t);
1308 f->l2t = NULL;
1309 return -ENOMEM;
1310 }
1311 }
1312
1313 ftid = adapter->tids.ftid_base + fidx;
1314
1315 skb = alloc_skb(sizeof(*fwr), GFP_KERNEL | __GFP_NOFAIL);
1316 fwr = (struct fw_filter_wr *)__skb_put(skb, sizeof(*fwr));
1317 memset(fwr, 0, sizeof(*fwr));
1318
1319 /* It would be nice to put most of the following in t4_hw.c but most
1320 * of the work is translating the cxgbtool ch_filter_specification
1321 * into the Work Request and the definition of that structure is
1322 * currently in cxgbtool.h which isn't appropriate to pull into the
1323 * common code. We may eventually try to come up with a more neutral
1324 * filter specification structure but for now it's easiest to simply
1325 * put this fairly direct code in line ...
1326 */
1327 fwr->op_pkd = htonl(FW_WR_OP(FW_FILTER_WR));
1328 fwr->len16_pkd = htonl(FW_WR_LEN16(sizeof(*fwr)/16));
1329 fwr->tid_to_iq =
1330 htonl(V_FW_FILTER_WR_TID(ftid) |
1331 V_FW_FILTER_WR_RQTYPE(f->fs.type) |
1332 V_FW_FILTER_WR_NOREPLY(0) |
1333 V_FW_FILTER_WR_IQ(f->fs.iq));
1334 fwr->del_filter_to_l2tix =
1335 htonl(V_FW_FILTER_WR_RPTTID(f->fs.rpttid) |
1336 V_FW_FILTER_WR_DROP(f->fs.action == FILTER_DROP) |
1337 V_FW_FILTER_WR_DIRSTEER(f->fs.dirsteer) |
1338 V_FW_FILTER_WR_MASKHASH(f->fs.maskhash) |
1339 V_FW_FILTER_WR_DIRSTEERHASH(f->fs.dirsteerhash) |
1340 V_FW_FILTER_WR_LPBK(f->fs.action == FILTER_SWITCH) |
1341 V_FW_FILTER_WR_DMAC(f->fs.newdmac) |
1342 V_FW_FILTER_WR_SMAC(f->fs.newsmac) |
1343 V_FW_FILTER_WR_INSVLAN(f->fs.newvlan == VLAN_INSERT ||
1344 f->fs.newvlan == VLAN_REWRITE) |
1345 V_FW_FILTER_WR_RMVLAN(f->fs.newvlan == VLAN_REMOVE ||
1346 f->fs.newvlan == VLAN_REWRITE) |
1347 V_FW_FILTER_WR_HITCNTS(f->fs.hitcnts) |
1348 V_FW_FILTER_WR_TXCHAN(f->fs.eport) |
1349 V_FW_FILTER_WR_PRIO(f->fs.prio) |
1350 V_FW_FILTER_WR_L2TIX(f->l2t ? f->l2t->idx : 0));
1351 fwr->ethtype = htons(f->fs.val.ethtype);
1352 fwr->ethtypem = htons(f->fs.mask.ethtype);
1353 fwr->frag_to_ovlan_vldm =
1354 (V_FW_FILTER_WR_FRAG(f->fs.val.frag) |
1355 V_FW_FILTER_WR_FRAGM(f->fs.mask.frag) |
1356 V_FW_FILTER_WR_IVLAN_VLD(f->fs.val.ivlan_vld) |
1357 V_FW_FILTER_WR_OVLAN_VLD(f->fs.val.ovlan_vld) |
1358 V_FW_FILTER_WR_IVLAN_VLDM(f->fs.mask.ivlan_vld) |
1359 V_FW_FILTER_WR_OVLAN_VLDM(f->fs.mask.ovlan_vld));
1360 fwr->smac_sel = 0;
1361 fwr->rx_chan_rx_rpl_iq =
1362 htons(V_FW_FILTER_WR_RX_CHAN(0) |
1363 V_FW_FILTER_WR_RX_RPL_IQ(adapter->sge.fw_evtq.abs_id));
1364 fwr->maci_to_matchtypem =
1365 htonl(V_FW_FILTER_WR_MACI(f->fs.val.macidx) |
1366 V_FW_FILTER_WR_MACIM(f->fs.mask.macidx) |
1367 V_FW_FILTER_WR_FCOE(f->fs.val.fcoe) |
1368 V_FW_FILTER_WR_FCOEM(f->fs.mask.fcoe) |
1369 V_FW_FILTER_WR_PORT(f->fs.val.iport) |
1370 V_FW_FILTER_WR_PORTM(f->fs.mask.iport) |
1371 V_FW_FILTER_WR_MATCHTYPE(f->fs.val.matchtype) |
1372 V_FW_FILTER_WR_MATCHTYPEM(f->fs.mask.matchtype));
1373 fwr->ptcl = f->fs.val.proto;
1374 fwr->ptclm = f->fs.mask.proto;
1375 fwr->ttyp = f->fs.val.tos;
1376 fwr->ttypm = f->fs.mask.tos;
1377 fwr->ivlan = htons(f->fs.val.ivlan);
1378 fwr->ivlanm = htons(f->fs.mask.ivlan);
1379 fwr->ovlan = htons(f->fs.val.ovlan);
1380 fwr->ovlanm = htons(f->fs.mask.ovlan);
1381 memcpy(fwr->lip, f->fs.val.lip, sizeof(fwr->lip));
1382 memcpy(fwr->lipm, f->fs.mask.lip, sizeof(fwr->lipm));
1383 memcpy(fwr->fip, f->fs.val.fip, sizeof(fwr->fip));
1384 memcpy(fwr->fipm, f->fs.mask.fip, sizeof(fwr->fipm));
1385 fwr->lp = htons(f->fs.val.lport);
1386 fwr->lpm = htons(f->fs.mask.lport);
1387 fwr->fp = htons(f->fs.val.fport);
1388 fwr->fpm = htons(f->fs.mask.fport);
1389 if (f->fs.newsmac)
1390 memcpy(fwr->sma, f->fs.smac, sizeof(fwr->sma));
1391
1392 /* Mark the filter as "pending" and ship off the Filter Work Request.
1393 * When we get the Work Request Reply we'll clear the pending status.
1394 */
1395 f->pending = 1;
1396 set_wr_txq(skb, CPL_PRIORITY_CONTROL, f->fs.val.iport & 0x3);
1397 t4_ofld_send(adapter, skb);
1398 return 0;
1399}
1400
1401/* Delete the filter at a specified index.
1402 */
1403static int del_filter_wr(struct adapter *adapter, int fidx)
1404{
1405 struct filter_entry *f = &adapter->tids.ftid_tab[fidx];
1406 struct sk_buff *skb;
1407 struct fw_filter_wr *fwr;
1408 unsigned int len, ftid;
1409
1410 len = sizeof(*fwr);
1411 ftid = adapter->tids.ftid_base + fidx;
1412
1413 skb = alloc_skb(len, GFP_KERNEL | __GFP_NOFAIL);
1414 fwr = (struct fw_filter_wr *)__skb_put(skb, len);
1415 t4_mk_filtdelwr(ftid, fwr, adapter->sge.fw_evtq.abs_id);
1416
1417 /* Mark the filter as "pending" and ship off the Filter Work Request.
1418 * When we get the Work Request Reply we'll clear the pending status.
1419 */
1420 f->pending = 1;
1421 t4_mgmt_tx(adapter, skb);
1422 return 0;
1423}
1424
Anish Bhatt688848b2014-06-19 21:37:13 -07001425static u16 cxgb_select_queue(struct net_device *dev, struct sk_buff *skb,
1426 void *accel_priv, select_queue_fallback_t fallback)
1427{
1428 int txq;
1429
1430#ifdef CONFIG_CHELSIO_T4_DCB
1431 /* If a Data Center Bridging has been successfully negotiated on this
1432 * link then we'll use the skb's priority to map it to a TX Queue.
1433 * The skb's priority is determined via the VLAN Tag Priority Code
1434 * Point field.
1435 */
1436 if (cxgb4_dcb_enabled(dev)) {
1437 u16 vlan_tci;
1438 int err;
1439
1440 err = vlan_get_tag(skb, &vlan_tci);
1441 if (unlikely(err)) {
1442 if (net_ratelimit())
1443 netdev_warn(dev,
1444 "TX Packet without VLAN Tag on DCB Link\n");
1445 txq = 0;
1446 } else {
1447 txq = (vlan_tci & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
1448 }
1449 return txq;
1450 }
1451#endif /* CONFIG_CHELSIO_T4_DCB */
1452
1453 if (select_queue) {
1454 txq = (skb_rx_queue_recorded(skb)
1455 ? skb_get_rx_queue(skb)
1456 : smp_processor_id());
1457
1458 while (unlikely(txq >= dev->real_num_tx_queues))
1459 txq -= dev->real_num_tx_queues;
1460
1461 return txq;
1462 }
1463
1464 return fallback(dev, skb) % dev->real_num_tx_queues;
1465}
1466
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001467static inline int is_offload(const struct adapter *adap)
1468{
1469 return adap->params.offload;
1470}
1471
1472/*
1473 * Implementation of ethtool operations.
1474 */
1475
1476static u32 get_msglevel(struct net_device *dev)
1477{
1478 return netdev2adap(dev)->msg_enable;
1479}
1480
1481static void set_msglevel(struct net_device *dev, u32 val)
1482{
1483 netdev2adap(dev)->msg_enable = val;
1484}
1485
1486static char stats_strings[][ETH_GSTRING_LEN] = {
1487 "TxOctetsOK ",
1488 "TxFramesOK ",
1489 "TxBroadcastFrames ",
1490 "TxMulticastFrames ",
1491 "TxUnicastFrames ",
1492 "TxErrorFrames ",
1493
1494 "TxFrames64 ",
1495 "TxFrames65To127 ",
1496 "TxFrames128To255 ",
1497 "TxFrames256To511 ",
1498 "TxFrames512To1023 ",
1499 "TxFrames1024To1518 ",
1500 "TxFrames1519ToMax ",
1501
1502 "TxFramesDropped ",
1503 "TxPauseFrames ",
1504 "TxPPP0Frames ",
1505 "TxPPP1Frames ",
1506 "TxPPP2Frames ",
1507 "TxPPP3Frames ",
1508 "TxPPP4Frames ",
1509 "TxPPP5Frames ",
1510 "TxPPP6Frames ",
1511 "TxPPP7Frames ",
1512
1513 "RxOctetsOK ",
1514 "RxFramesOK ",
1515 "RxBroadcastFrames ",
1516 "RxMulticastFrames ",
1517 "RxUnicastFrames ",
1518
1519 "RxFramesTooLong ",
1520 "RxJabberErrors ",
1521 "RxFCSErrors ",
1522 "RxLengthErrors ",
1523 "RxSymbolErrors ",
1524 "RxRuntFrames ",
1525
1526 "RxFrames64 ",
1527 "RxFrames65To127 ",
1528 "RxFrames128To255 ",
1529 "RxFrames256To511 ",
1530 "RxFrames512To1023 ",
1531 "RxFrames1024To1518 ",
1532 "RxFrames1519ToMax ",
1533
1534 "RxPauseFrames ",
1535 "RxPPP0Frames ",
1536 "RxPPP1Frames ",
1537 "RxPPP2Frames ",
1538 "RxPPP3Frames ",
1539 "RxPPP4Frames ",
1540 "RxPPP5Frames ",
1541 "RxPPP6Frames ",
1542 "RxPPP7Frames ",
1543
1544 "RxBG0FramesDropped ",
1545 "RxBG1FramesDropped ",
1546 "RxBG2FramesDropped ",
1547 "RxBG3FramesDropped ",
1548 "RxBG0FramesTrunc ",
1549 "RxBG1FramesTrunc ",
1550 "RxBG2FramesTrunc ",
1551 "RxBG3FramesTrunc ",
1552
1553 "TSO ",
1554 "TxCsumOffload ",
1555 "RxCsumGood ",
1556 "VLANextractions ",
1557 "VLANinsertions ",
Dimitris Michailidis4a6346d2010-05-10 15:58:09 +00001558 "GROpackets ",
1559 "GROmerged ",
Santosh Rastapur22adfe02013-03-14 05:08:51 +00001560 "WriteCoalSuccess ",
1561 "WriteCoalFail ",
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001562};
1563
1564static int get_sset_count(struct net_device *dev, int sset)
1565{
1566 switch (sset) {
1567 case ETH_SS_STATS:
1568 return ARRAY_SIZE(stats_strings);
1569 default:
1570 return -EOPNOTSUPP;
1571 }
1572}
1573
1574#define T4_REGMAP_SIZE (160 * 1024)
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001575#define T5_REGMAP_SIZE (332 * 1024)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001576
1577static int get_regs_len(struct net_device *dev)
1578{
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001579 struct adapter *adap = netdev2adap(dev);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301580 if (is_t4(adap->params.chip))
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001581 return T4_REGMAP_SIZE;
1582 else
1583 return T5_REGMAP_SIZE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001584}
1585
1586static int get_eeprom_len(struct net_device *dev)
1587{
1588 return EEPROMSIZE;
1589}
1590
1591static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1592{
1593 struct adapter *adapter = netdev2adap(dev);
1594
Rick Jones23020ab2011-11-09 09:58:07 +00001595 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1596 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1597 strlcpy(info->bus_info, pci_name(adapter->pdev),
1598 sizeof(info->bus_info));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001599
Rick Jones84b40502011-11-21 10:54:05 +00001600 if (adapter->params.fw_vers)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001601 snprintf(info->fw_version, sizeof(info->fw_version),
1602 "%u.%u.%u.%u, TP %u.%u.%u.%u",
1603 FW_HDR_FW_VER_MAJOR_GET(adapter->params.fw_vers),
1604 FW_HDR_FW_VER_MINOR_GET(adapter->params.fw_vers),
1605 FW_HDR_FW_VER_MICRO_GET(adapter->params.fw_vers),
1606 FW_HDR_FW_VER_BUILD_GET(adapter->params.fw_vers),
1607 FW_HDR_FW_VER_MAJOR_GET(adapter->params.tp_vers),
1608 FW_HDR_FW_VER_MINOR_GET(adapter->params.tp_vers),
1609 FW_HDR_FW_VER_MICRO_GET(adapter->params.tp_vers),
1610 FW_HDR_FW_VER_BUILD_GET(adapter->params.tp_vers));
1611}
1612
1613static void get_strings(struct net_device *dev, u32 stringset, u8 *data)
1614{
1615 if (stringset == ETH_SS_STATS)
1616 memcpy(data, stats_strings, sizeof(stats_strings));
1617}
1618
1619/*
1620 * port stats maintained per queue of the port. They should be in the same
1621 * order as in stats_strings above.
1622 */
1623struct queue_port_stats {
1624 u64 tso;
1625 u64 tx_csum;
1626 u64 rx_csum;
1627 u64 vlan_ex;
1628 u64 vlan_ins;
Dimitris Michailidis4a6346d2010-05-10 15:58:09 +00001629 u64 gro_pkts;
1630 u64 gro_merged;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001631};
1632
1633static void collect_sge_port_stats(const struct adapter *adap,
1634 const struct port_info *p, struct queue_port_stats *s)
1635{
1636 int i;
1637 const struct sge_eth_txq *tx = &adap->sge.ethtxq[p->first_qset];
1638 const struct sge_eth_rxq *rx = &adap->sge.ethrxq[p->first_qset];
1639
1640 memset(s, 0, sizeof(*s));
1641 for (i = 0; i < p->nqsets; i++, rx++, tx++) {
1642 s->tso += tx->tso;
1643 s->tx_csum += tx->tx_cso;
1644 s->rx_csum += rx->stats.rx_cso;
1645 s->vlan_ex += rx->stats.vlan_ex;
1646 s->vlan_ins += tx->vlan_ins;
Dimitris Michailidis4a6346d2010-05-10 15:58:09 +00001647 s->gro_pkts += rx->stats.lro_pkts;
1648 s->gro_merged += rx->stats.lro_merged;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001649 }
1650}
1651
1652static void get_stats(struct net_device *dev, struct ethtool_stats *stats,
1653 u64 *data)
1654{
1655 struct port_info *pi = netdev_priv(dev);
1656 struct adapter *adapter = pi->adapter;
Santosh Rastapur22adfe02013-03-14 05:08:51 +00001657 u32 val1, val2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001658
1659 t4_get_port_stats(adapter, pi->tx_chan, (struct port_stats *)data);
1660
1661 data += sizeof(struct port_stats) / sizeof(u64);
1662 collect_sge_port_stats(adapter, pi, (struct queue_port_stats *)data);
Santosh Rastapur22adfe02013-03-14 05:08:51 +00001663 data += sizeof(struct queue_port_stats) / sizeof(u64);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301664 if (!is_t4(adapter->params.chip)) {
Santosh Rastapur22adfe02013-03-14 05:08:51 +00001665 t4_write_reg(adapter, SGE_STAT_CFG, STATSOURCE_T5(7));
1666 val1 = t4_read_reg(adapter, SGE_STAT_TOTAL);
1667 val2 = t4_read_reg(adapter, SGE_STAT_MATCH);
1668 *data = val1 - val2;
1669 data++;
1670 *data = val2;
1671 data++;
1672 } else {
1673 memset(data, 0, 2 * sizeof(u64));
1674 *data += 2;
1675 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001676}
1677
1678/*
1679 * Return a version number to identify the type of adapter. The scheme is:
1680 * - bits 0..9: chip version
1681 * - bits 10..15: chip revision
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001682 * - bits 16..23: register dump version
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001683 */
1684static inline unsigned int mk_adap_vers(const struct adapter *ap)
1685{
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301686 return CHELSIO_CHIP_VERSION(ap->params.chip) |
1687 (CHELSIO_CHIP_RELEASE(ap->params.chip) << 10) | (1 << 16);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001688}
1689
1690static void reg_block_dump(struct adapter *ap, void *buf, unsigned int start,
1691 unsigned int end)
1692{
1693 u32 *p = buf + start;
1694
1695 for ( ; start <= end; start += sizeof(u32))
1696 *p++ = t4_read_reg(ap, start);
1697}
1698
1699static void get_regs(struct net_device *dev, struct ethtool_regs *regs,
1700 void *buf)
1701{
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001702 static const unsigned int t4_reg_ranges[] = {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001703 0x1008, 0x1108,
1704 0x1180, 0x11b4,
1705 0x11fc, 0x123c,
1706 0x1300, 0x173c,
1707 0x1800, 0x18fc,
1708 0x3000, 0x30d8,
1709 0x30e0, 0x5924,
1710 0x5960, 0x59d4,
1711 0x5a00, 0x5af8,
1712 0x6000, 0x6098,
1713 0x6100, 0x6150,
1714 0x6200, 0x6208,
1715 0x6240, 0x6248,
1716 0x6280, 0x6338,
1717 0x6370, 0x638c,
1718 0x6400, 0x643c,
1719 0x6500, 0x6524,
1720 0x6a00, 0x6a38,
1721 0x6a60, 0x6a78,
1722 0x6b00, 0x6b84,
1723 0x6bf0, 0x6c84,
1724 0x6cf0, 0x6d84,
1725 0x6df0, 0x6e84,
1726 0x6ef0, 0x6f84,
1727 0x6ff0, 0x7084,
1728 0x70f0, 0x7184,
1729 0x71f0, 0x7284,
1730 0x72f0, 0x7384,
1731 0x73f0, 0x7450,
1732 0x7500, 0x7530,
1733 0x7600, 0x761c,
1734 0x7680, 0x76cc,
1735 0x7700, 0x7798,
1736 0x77c0, 0x77fc,
1737 0x7900, 0x79fc,
1738 0x7b00, 0x7c38,
1739 0x7d00, 0x7efc,
1740 0x8dc0, 0x8e1c,
1741 0x8e30, 0x8e78,
1742 0x8ea0, 0x8f6c,
1743 0x8fc0, 0x9074,
1744 0x90fc, 0x90fc,
1745 0x9400, 0x9458,
1746 0x9600, 0x96bc,
1747 0x9800, 0x9808,
1748 0x9820, 0x983c,
1749 0x9850, 0x9864,
1750 0x9c00, 0x9c6c,
1751 0x9c80, 0x9cec,
1752 0x9d00, 0x9d6c,
1753 0x9d80, 0x9dec,
1754 0x9e00, 0x9e6c,
1755 0x9e80, 0x9eec,
1756 0x9f00, 0x9f6c,
1757 0x9f80, 0x9fec,
1758 0xd004, 0xd03c,
1759 0xdfc0, 0xdfe0,
1760 0xe000, 0xea7c,
1761 0xf000, 0x11190,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001762 0x19040, 0x1906c,
1763 0x19078, 0x19080,
1764 0x1908c, 0x19124,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001765 0x19150, 0x191b0,
1766 0x191d0, 0x191e8,
1767 0x19238, 0x1924c,
1768 0x193f8, 0x19474,
1769 0x19490, 0x194f8,
1770 0x19800, 0x19f30,
1771 0x1a000, 0x1a06c,
1772 0x1a0b0, 0x1a120,
1773 0x1a128, 0x1a138,
1774 0x1a190, 0x1a1c4,
1775 0x1a1fc, 0x1a1fc,
1776 0x1e040, 0x1e04c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001777 0x1e284, 0x1e28c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001778 0x1e2c0, 0x1e2c0,
1779 0x1e2e0, 0x1e2e0,
1780 0x1e300, 0x1e384,
1781 0x1e3c0, 0x1e3c8,
1782 0x1e440, 0x1e44c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001783 0x1e684, 0x1e68c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001784 0x1e6c0, 0x1e6c0,
1785 0x1e6e0, 0x1e6e0,
1786 0x1e700, 0x1e784,
1787 0x1e7c0, 0x1e7c8,
1788 0x1e840, 0x1e84c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001789 0x1ea84, 0x1ea8c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001790 0x1eac0, 0x1eac0,
1791 0x1eae0, 0x1eae0,
1792 0x1eb00, 0x1eb84,
1793 0x1ebc0, 0x1ebc8,
1794 0x1ec40, 0x1ec4c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001795 0x1ee84, 0x1ee8c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001796 0x1eec0, 0x1eec0,
1797 0x1eee0, 0x1eee0,
1798 0x1ef00, 0x1ef84,
1799 0x1efc0, 0x1efc8,
1800 0x1f040, 0x1f04c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001801 0x1f284, 0x1f28c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001802 0x1f2c0, 0x1f2c0,
1803 0x1f2e0, 0x1f2e0,
1804 0x1f300, 0x1f384,
1805 0x1f3c0, 0x1f3c8,
1806 0x1f440, 0x1f44c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001807 0x1f684, 0x1f68c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001808 0x1f6c0, 0x1f6c0,
1809 0x1f6e0, 0x1f6e0,
1810 0x1f700, 0x1f784,
1811 0x1f7c0, 0x1f7c8,
1812 0x1f840, 0x1f84c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001813 0x1fa84, 0x1fa8c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001814 0x1fac0, 0x1fac0,
1815 0x1fae0, 0x1fae0,
1816 0x1fb00, 0x1fb84,
1817 0x1fbc0, 0x1fbc8,
1818 0x1fc40, 0x1fc4c,
Dimitris Michailidis835bb602010-07-11 17:33:48 -07001819 0x1fe84, 0x1fe8c,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00001820 0x1fec0, 0x1fec0,
1821 0x1fee0, 0x1fee0,
1822 0x1ff00, 0x1ff84,
1823 0x1ffc0, 0x1ffc8,
1824 0x20000, 0x2002c,
1825 0x20100, 0x2013c,
1826 0x20190, 0x201c8,
1827 0x20200, 0x20318,
1828 0x20400, 0x20528,
1829 0x20540, 0x20614,
1830 0x21000, 0x21040,
1831 0x2104c, 0x21060,
1832 0x210c0, 0x210ec,
1833 0x21200, 0x21268,
1834 0x21270, 0x21284,
1835 0x212fc, 0x21388,
1836 0x21400, 0x21404,
1837 0x21500, 0x21518,
1838 0x2152c, 0x2153c,
1839 0x21550, 0x21554,
1840 0x21600, 0x21600,
1841 0x21608, 0x21628,
1842 0x21630, 0x2163c,
1843 0x21700, 0x2171c,
1844 0x21780, 0x2178c,
1845 0x21800, 0x21c38,
1846 0x21c80, 0x21d7c,
1847 0x21e00, 0x21e04,
1848 0x22000, 0x2202c,
1849 0x22100, 0x2213c,
1850 0x22190, 0x221c8,
1851 0x22200, 0x22318,
1852 0x22400, 0x22528,
1853 0x22540, 0x22614,
1854 0x23000, 0x23040,
1855 0x2304c, 0x23060,
1856 0x230c0, 0x230ec,
1857 0x23200, 0x23268,
1858 0x23270, 0x23284,
1859 0x232fc, 0x23388,
1860 0x23400, 0x23404,
1861 0x23500, 0x23518,
1862 0x2352c, 0x2353c,
1863 0x23550, 0x23554,
1864 0x23600, 0x23600,
1865 0x23608, 0x23628,
1866 0x23630, 0x2363c,
1867 0x23700, 0x2371c,
1868 0x23780, 0x2378c,
1869 0x23800, 0x23c38,
1870 0x23c80, 0x23d7c,
1871 0x23e00, 0x23e04,
1872 0x24000, 0x2402c,
1873 0x24100, 0x2413c,
1874 0x24190, 0x241c8,
1875 0x24200, 0x24318,
1876 0x24400, 0x24528,
1877 0x24540, 0x24614,
1878 0x25000, 0x25040,
1879 0x2504c, 0x25060,
1880 0x250c0, 0x250ec,
1881 0x25200, 0x25268,
1882 0x25270, 0x25284,
1883 0x252fc, 0x25388,
1884 0x25400, 0x25404,
1885 0x25500, 0x25518,
1886 0x2552c, 0x2553c,
1887 0x25550, 0x25554,
1888 0x25600, 0x25600,
1889 0x25608, 0x25628,
1890 0x25630, 0x2563c,
1891 0x25700, 0x2571c,
1892 0x25780, 0x2578c,
1893 0x25800, 0x25c38,
1894 0x25c80, 0x25d7c,
1895 0x25e00, 0x25e04,
1896 0x26000, 0x2602c,
1897 0x26100, 0x2613c,
1898 0x26190, 0x261c8,
1899 0x26200, 0x26318,
1900 0x26400, 0x26528,
1901 0x26540, 0x26614,
1902 0x27000, 0x27040,
1903 0x2704c, 0x27060,
1904 0x270c0, 0x270ec,
1905 0x27200, 0x27268,
1906 0x27270, 0x27284,
1907 0x272fc, 0x27388,
1908 0x27400, 0x27404,
1909 0x27500, 0x27518,
1910 0x2752c, 0x2753c,
1911 0x27550, 0x27554,
1912 0x27600, 0x27600,
1913 0x27608, 0x27628,
1914 0x27630, 0x2763c,
1915 0x27700, 0x2771c,
1916 0x27780, 0x2778c,
1917 0x27800, 0x27c38,
1918 0x27c80, 0x27d7c,
1919 0x27e00, 0x27e04
1920 };
1921
Santosh Rastapur251f9e82013-03-14 05:08:50 +00001922 static const unsigned int t5_reg_ranges[] = {
1923 0x1008, 0x1148,
1924 0x1180, 0x11b4,
1925 0x11fc, 0x123c,
1926 0x1280, 0x173c,
1927 0x1800, 0x18fc,
1928 0x3000, 0x3028,
1929 0x3060, 0x30d8,
1930 0x30e0, 0x30fc,
1931 0x3140, 0x357c,
1932 0x35a8, 0x35cc,
1933 0x35ec, 0x35ec,
1934 0x3600, 0x5624,
1935 0x56cc, 0x575c,
1936 0x580c, 0x5814,
1937 0x5890, 0x58bc,
1938 0x5940, 0x59dc,
1939 0x59fc, 0x5a18,
1940 0x5a60, 0x5a9c,
1941 0x5b9c, 0x5bfc,
1942 0x6000, 0x6040,
1943 0x6058, 0x614c,
1944 0x7700, 0x7798,
1945 0x77c0, 0x78fc,
1946 0x7b00, 0x7c54,
1947 0x7d00, 0x7efc,
1948 0x8dc0, 0x8de0,
1949 0x8df8, 0x8e84,
1950 0x8ea0, 0x8f84,
1951 0x8fc0, 0x90f8,
1952 0x9400, 0x9470,
1953 0x9600, 0x96f4,
1954 0x9800, 0x9808,
1955 0x9820, 0x983c,
1956 0x9850, 0x9864,
1957 0x9c00, 0x9c6c,
1958 0x9c80, 0x9cec,
1959 0x9d00, 0x9d6c,
1960 0x9d80, 0x9dec,
1961 0x9e00, 0x9e6c,
1962 0x9e80, 0x9eec,
1963 0x9f00, 0x9f6c,
1964 0x9f80, 0xa020,
1965 0xd004, 0xd03c,
1966 0xdfc0, 0xdfe0,
1967 0xe000, 0x11088,
1968 0x1109c, 0x1117c,
1969 0x11190, 0x11204,
1970 0x19040, 0x1906c,
1971 0x19078, 0x19080,
1972 0x1908c, 0x19124,
1973 0x19150, 0x191b0,
1974 0x191d0, 0x191e8,
1975 0x19238, 0x19290,
1976 0x193f8, 0x19474,
1977 0x19490, 0x194cc,
1978 0x194f0, 0x194f8,
1979 0x19c00, 0x19c60,
1980 0x19c94, 0x19e10,
1981 0x19e50, 0x19f34,
1982 0x19f40, 0x19f50,
1983 0x19f90, 0x19fe4,
1984 0x1a000, 0x1a06c,
1985 0x1a0b0, 0x1a120,
1986 0x1a128, 0x1a138,
1987 0x1a190, 0x1a1c4,
1988 0x1a1fc, 0x1a1fc,
1989 0x1e008, 0x1e00c,
1990 0x1e040, 0x1e04c,
1991 0x1e284, 0x1e290,
1992 0x1e2c0, 0x1e2c0,
1993 0x1e2e0, 0x1e2e0,
1994 0x1e300, 0x1e384,
1995 0x1e3c0, 0x1e3c8,
1996 0x1e408, 0x1e40c,
1997 0x1e440, 0x1e44c,
1998 0x1e684, 0x1e690,
1999 0x1e6c0, 0x1e6c0,
2000 0x1e6e0, 0x1e6e0,
2001 0x1e700, 0x1e784,
2002 0x1e7c0, 0x1e7c8,
2003 0x1e808, 0x1e80c,
2004 0x1e840, 0x1e84c,
2005 0x1ea84, 0x1ea90,
2006 0x1eac0, 0x1eac0,
2007 0x1eae0, 0x1eae0,
2008 0x1eb00, 0x1eb84,
2009 0x1ebc0, 0x1ebc8,
2010 0x1ec08, 0x1ec0c,
2011 0x1ec40, 0x1ec4c,
2012 0x1ee84, 0x1ee90,
2013 0x1eec0, 0x1eec0,
2014 0x1eee0, 0x1eee0,
2015 0x1ef00, 0x1ef84,
2016 0x1efc0, 0x1efc8,
2017 0x1f008, 0x1f00c,
2018 0x1f040, 0x1f04c,
2019 0x1f284, 0x1f290,
2020 0x1f2c0, 0x1f2c0,
2021 0x1f2e0, 0x1f2e0,
2022 0x1f300, 0x1f384,
2023 0x1f3c0, 0x1f3c8,
2024 0x1f408, 0x1f40c,
2025 0x1f440, 0x1f44c,
2026 0x1f684, 0x1f690,
2027 0x1f6c0, 0x1f6c0,
2028 0x1f6e0, 0x1f6e0,
2029 0x1f700, 0x1f784,
2030 0x1f7c0, 0x1f7c8,
2031 0x1f808, 0x1f80c,
2032 0x1f840, 0x1f84c,
2033 0x1fa84, 0x1fa90,
2034 0x1fac0, 0x1fac0,
2035 0x1fae0, 0x1fae0,
2036 0x1fb00, 0x1fb84,
2037 0x1fbc0, 0x1fbc8,
2038 0x1fc08, 0x1fc0c,
2039 0x1fc40, 0x1fc4c,
2040 0x1fe84, 0x1fe90,
2041 0x1fec0, 0x1fec0,
2042 0x1fee0, 0x1fee0,
2043 0x1ff00, 0x1ff84,
2044 0x1ffc0, 0x1ffc8,
2045 0x30000, 0x30030,
2046 0x30100, 0x30144,
2047 0x30190, 0x301d0,
2048 0x30200, 0x30318,
2049 0x30400, 0x3052c,
2050 0x30540, 0x3061c,
2051 0x30800, 0x30834,
2052 0x308c0, 0x30908,
2053 0x30910, 0x309ac,
2054 0x30a00, 0x30a04,
2055 0x30a0c, 0x30a2c,
2056 0x30a44, 0x30a50,
2057 0x30a74, 0x30c24,
2058 0x30d08, 0x30d14,
2059 0x30d1c, 0x30d20,
2060 0x30d3c, 0x30d50,
2061 0x31200, 0x3120c,
2062 0x31220, 0x31220,
2063 0x31240, 0x31240,
2064 0x31600, 0x31600,
2065 0x31608, 0x3160c,
2066 0x31a00, 0x31a1c,
2067 0x31e04, 0x31e20,
2068 0x31e38, 0x31e3c,
2069 0x31e80, 0x31e80,
2070 0x31e88, 0x31ea8,
2071 0x31eb0, 0x31eb4,
2072 0x31ec8, 0x31ed4,
2073 0x31fb8, 0x32004,
2074 0x32208, 0x3223c,
2075 0x32600, 0x32630,
2076 0x32a00, 0x32abc,
2077 0x32b00, 0x32b70,
2078 0x33000, 0x33048,
2079 0x33060, 0x3309c,
2080 0x330f0, 0x33148,
2081 0x33160, 0x3319c,
2082 0x331f0, 0x332e4,
2083 0x332f8, 0x333e4,
2084 0x333f8, 0x33448,
2085 0x33460, 0x3349c,
2086 0x334f0, 0x33548,
2087 0x33560, 0x3359c,
2088 0x335f0, 0x336e4,
2089 0x336f8, 0x337e4,
2090 0x337f8, 0x337fc,
2091 0x33814, 0x33814,
2092 0x3382c, 0x3382c,
2093 0x33880, 0x3388c,
2094 0x338e8, 0x338ec,
2095 0x33900, 0x33948,
2096 0x33960, 0x3399c,
2097 0x339f0, 0x33ae4,
2098 0x33af8, 0x33b10,
2099 0x33b28, 0x33b28,
2100 0x33b3c, 0x33b50,
2101 0x33bf0, 0x33c10,
2102 0x33c28, 0x33c28,
2103 0x33c3c, 0x33c50,
2104 0x33cf0, 0x33cfc,
2105 0x34000, 0x34030,
2106 0x34100, 0x34144,
2107 0x34190, 0x341d0,
2108 0x34200, 0x34318,
2109 0x34400, 0x3452c,
2110 0x34540, 0x3461c,
2111 0x34800, 0x34834,
2112 0x348c0, 0x34908,
2113 0x34910, 0x349ac,
2114 0x34a00, 0x34a04,
2115 0x34a0c, 0x34a2c,
2116 0x34a44, 0x34a50,
2117 0x34a74, 0x34c24,
2118 0x34d08, 0x34d14,
2119 0x34d1c, 0x34d20,
2120 0x34d3c, 0x34d50,
2121 0x35200, 0x3520c,
2122 0x35220, 0x35220,
2123 0x35240, 0x35240,
2124 0x35600, 0x35600,
2125 0x35608, 0x3560c,
2126 0x35a00, 0x35a1c,
2127 0x35e04, 0x35e20,
2128 0x35e38, 0x35e3c,
2129 0x35e80, 0x35e80,
2130 0x35e88, 0x35ea8,
2131 0x35eb0, 0x35eb4,
2132 0x35ec8, 0x35ed4,
2133 0x35fb8, 0x36004,
2134 0x36208, 0x3623c,
2135 0x36600, 0x36630,
2136 0x36a00, 0x36abc,
2137 0x36b00, 0x36b70,
2138 0x37000, 0x37048,
2139 0x37060, 0x3709c,
2140 0x370f0, 0x37148,
2141 0x37160, 0x3719c,
2142 0x371f0, 0x372e4,
2143 0x372f8, 0x373e4,
2144 0x373f8, 0x37448,
2145 0x37460, 0x3749c,
2146 0x374f0, 0x37548,
2147 0x37560, 0x3759c,
2148 0x375f0, 0x376e4,
2149 0x376f8, 0x377e4,
2150 0x377f8, 0x377fc,
2151 0x37814, 0x37814,
2152 0x3782c, 0x3782c,
2153 0x37880, 0x3788c,
2154 0x378e8, 0x378ec,
2155 0x37900, 0x37948,
2156 0x37960, 0x3799c,
2157 0x379f0, 0x37ae4,
2158 0x37af8, 0x37b10,
2159 0x37b28, 0x37b28,
2160 0x37b3c, 0x37b50,
2161 0x37bf0, 0x37c10,
2162 0x37c28, 0x37c28,
2163 0x37c3c, 0x37c50,
2164 0x37cf0, 0x37cfc,
2165 0x38000, 0x38030,
2166 0x38100, 0x38144,
2167 0x38190, 0x381d0,
2168 0x38200, 0x38318,
2169 0x38400, 0x3852c,
2170 0x38540, 0x3861c,
2171 0x38800, 0x38834,
2172 0x388c0, 0x38908,
2173 0x38910, 0x389ac,
2174 0x38a00, 0x38a04,
2175 0x38a0c, 0x38a2c,
2176 0x38a44, 0x38a50,
2177 0x38a74, 0x38c24,
2178 0x38d08, 0x38d14,
2179 0x38d1c, 0x38d20,
2180 0x38d3c, 0x38d50,
2181 0x39200, 0x3920c,
2182 0x39220, 0x39220,
2183 0x39240, 0x39240,
2184 0x39600, 0x39600,
2185 0x39608, 0x3960c,
2186 0x39a00, 0x39a1c,
2187 0x39e04, 0x39e20,
2188 0x39e38, 0x39e3c,
2189 0x39e80, 0x39e80,
2190 0x39e88, 0x39ea8,
2191 0x39eb0, 0x39eb4,
2192 0x39ec8, 0x39ed4,
2193 0x39fb8, 0x3a004,
2194 0x3a208, 0x3a23c,
2195 0x3a600, 0x3a630,
2196 0x3aa00, 0x3aabc,
2197 0x3ab00, 0x3ab70,
2198 0x3b000, 0x3b048,
2199 0x3b060, 0x3b09c,
2200 0x3b0f0, 0x3b148,
2201 0x3b160, 0x3b19c,
2202 0x3b1f0, 0x3b2e4,
2203 0x3b2f8, 0x3b3e4,
2204 0x3b3f8, 0x3b448,
2205 0x3b460, 0x3b49c,
2206 0x3b4f0, 0x3b548,
2207 0x3b560, 0x3b59c,
2208 0x3b5f0, 0x3b6e4,
2209 0x3b6f8, 0x3b7e4,
2210 0x3b7f8, 0x3b7fc,
2211 0x3b814, 0x3b814,
2212 0x3b82c, 0x3b82c,
2213 0x3b880, 0x3b88c,
2214 0x3b8e8, 0x3b8ec,
2215 0x3b900, 0x3b948,
2216 0x3b960, 0x3b99c,
2217 0x3b9f0, 0x3bae4,
2218 0x3baf8, 0x3bb10,
2219 0x3bb28, 0x3bb28,
2220 0x3bb3c, 0x3bb50,
2221 0x3bbf0, 0x3bc10,
2222 0x3bc28, 0x3bc28,
2223 0x3bc3c, 0x3bc50,
2224 0x3bcf0, 0x3bcfc,
2225 0x3c000, 0x3c030,
2226 0x3c100, 0x3c144,
2227 0x3c190, 0x3c1d0,
2228 0x3c200, 0x3c318,
2229 0x3c400, 0x3c52c,
2230 0x3c540, 0x3c61c,
2231 0x3c800, 0x3c834,
2232 0x3c8c0, 0x3c908,
2233 0x3c910, 0x3c9ac,
2234 0x3ca00, 0x3ca04,
2235 0x3ca0c, 0x3ca2c,
2236 0x3ca44, 0x3ca50,
2237 0x3ca74, 0x3cc24,
2238 0x3cd08, 0x3cd14,
2239 0x3cd1c, 0x3cd20,
2240 0x3cd3c, 0x3cd50,
2241 0x3d200, 0x3d20c,
2242 0x3d220, 0x3d220,
2243 0x3d240, 0x3d240,
2244 0x3d600, 0x3d600,
2245 0x3d608, 0x3d60c,
2246 0x3da00, 0x3da1c,
2247 0x3de04, 0x3de20,
2248 0x3de38, 0x3de3c,
2249 0x3de80, 0x3de80,
2250 0x3de88, 0x3dea8,
2251 0x3deb0, 0x3deb4,
2252 0x3dec8, 0x3ded4,
2253 0x3dfb8, 0x3e004,
2254 0x3e208, 0x3e23c,
2255 0x3e600, 0x3e630,
2256 0x3ea00, 0x3eabc,
2257 0x3eb00, 0x3eb70,
2258 0x3f000, 0x3f048,
2259 0x3f060, 0x3f09c,
2260 0x3f0f0, 0x3f148,
2261 0x3f160, 0x3f19c,
2262 0x3f1f0, 0x3f2e4,
2263 0x3f2f8, 0x3f3e4,
2264 0x3f3f8, 0x3f448,
2265 0x3f460, 0x3f49c,
2266 0x3f4f0, 0x3f548,
2267 0x3f560, 0x3f59c,
2268 0x3f5f0, 0x3f6e4,
2269 0x3f6f8, 0x3f7e4,
2270 0x3f7f8, 0x3f7fc,
2271 0x3f814, 0x3f814,
2272 0x3f82c, 0x3f82c,
2273 0x3f880, 0x3f88c,
2274 0x3f8e8, 0x3f8ec,
2275 0x3f900, 0x3f948,
2276 0x3f960, 0x3f99c,
2277 0x3f9f0, 0x3fae4,
2278 0x3faf8, 0x3fb10,
2279 0x3fb28, 0x3fb28,
2280 0x3fb3c, 0x3fb50,
2281 0x3fbf0, 0x3fc10,
2282 0x3fc28, 0x3fc28,
2283 0x3fc3c, 0x3fc50,
2284 0x3fcf0, 0x3fcfc,
2285 0x40000, 0x4000c,
2286 0x40040, 0x40068,
2287 0x40080, 0x40144,
2288 0x40180, 0x4018c,
2289 0x40200, 0x40298,
2290 0x402ac, 0x4033c,
2291 0x403f8, 0x403fc,
Kumar Sanghvic1f49e32014-02-18 17:56:13 +05302292 0x41304, 0x413c4,
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002293 0x41400, 0x4141c,
2294 0x41480, 0x414d0,
2295 0x44000, 0x44078,
2296 0x440c0, 0x44278,
2297 0x442c0, 0x44478,
2298 0x444c0, 0x44678,
2299 0x446c0, 0x44878,
2300 0x448c0, 0x449fc,
2301 0x45000, 0x45068,
2302 0x45080, 0x45084,
2303 0x450a0, 0x450b0,
2304 0x45200, 0x45268,
2305 0x45280, 0x45284,
2306 0x452a0, 0x452b0,
2307 0x460c0, 0x460e4,
2308 0x47000, 0x4708c,
2309 0x47200, 0x47250,
2310 0x47400, 0x47420,
2311 0x47600, 0x47618,
2312 0x47800, 0x47814,
2313 0x48000, 0x4800c,
2314 0x48040, 0x48068,
2315 0x48080, 0x48144,
2316 0x48180, 0x4818c,
2317 0x48200, 0x48298,
2318 0x482ac, 0x4833c,
2319 0x483f8, 0x483fc,
Kumar Sanghvic1f49e32014-02-18 17:56:13 +05302320 0x49304, 0x493c4,
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002321 0x49400, 0x4941c,
2322 0x49480, 0x494d0,
2323 0x4c000, 0x4c078,
2324 0x4c0c0, 0x4c278,
2325 0x4c2c0, 0x4c478,
2326 0x4c4c0, 0x4c678,
2327 0x4c6c0, 0x4c878,
2328 0x4c8c0, 0x4c9fc,
2329 0x4d000, 0x4d068,
2330 0x4d080, 0x4d084,
2331 0x4d0a0, 0x4d0b0,
2332 0x4d200, 0x4d268,
2333 0x4d280, 0x4d284,
2334 0x4d2a0, 0x4d2b0,
2335 0x4e0c0, 0x4e0e4,
2336 0x4f000, 0x4f08c,
2337 0x4f200, 0x4f250,
2338 0x4f400, 0x4f420,
2339 0x4f600, 0x4f618,
2340 0x4f800, 0x4f814,
2341 0x50000, 0x500cc,
2342 0x50400, 0x50400,
2343 0x50800, 0x508cc,
2344 0x50c00, 0x50c00,
2345 0x51000, 0x5101c,
2346 0x51300, 0x51308,
2347 };
2348
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002349 int i;
2350 struct adapter *ap = netdev2adap(dev);
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002351 static const unsigned int *reg_ranges;
2352 int arr_size = 0, buf_size = 0;
2353
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302354 if (is_t4(ap->params.chip)) {
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002355 reg_ranges = &t4_reg_ranges[0];
2356 arr_size = ARRAY_SIZE(t4_reg_ranges);
2357 buf_size = T4_REGMAP_SIZE;
2358 } else {
2359 reg_ranges = &t5_reg_ranges[0];
2360 arr_size = ARRAY_SIZE(t5_reg_ranges);
2361 buf_size = T5_REGMAP_SIZE;
2362 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002363
2364 regs->version = mk_adap_vers(ap);
2365
Santosh Rastapur251f9e82013-03-14 05:08:50 +00002366 memset(buf, 0, buf_size);
2367 for (i = 0; i < arr_size; i += 2)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002368 reg_block_dump(ap, buf, reg_ranges[i], reg_ranges[i + 1]);
2369}
2370
2371static int restart_autoneg(struct net_device *dev)
2372{
2373 struct port_info *p = netdev_priv(dev);
2374
2375 if (!netif_running(dev))
2376 return -EAGAIN;
2377 if (p->link_cfg.autoneg != AUTONEG_ENABLE)
2378 return -EINVAL;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002379 t4_restart_aneg(p->adapter, p->adapter->fn, p->tx_chan);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002380 return 0;
2381}
2382
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07002383static int identify_port(struct net_device *dev,
2384 enum ethtool_phys_id_state state)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002385{
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07002386 unsigned int val;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002387 struct adapter *adap = netdev2adap(dev);
2388
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07002389 if (state == ETHTOOL_ID_ACTIVE)
2390 val = 0xffff;
2391 else if (state == ETHTOOL_ID_INACTIVE)
2392 val = 0;
2393 else
2394 return -EINVAL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002395
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07002396 return t4_identify_port(adap, adap->fn, netdev2pinfo(dev)->viid, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002397}
2398
2399static unsigned int from_fw_linkcaps(unsigned int type, unsigned int caps)
2400{
2401 unsigned int v = 0;
2402
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002403 if (type == FW_PORT_TYPE_BT_SGMII || type == FW_PORT_TYPE_BT_XFI ||
2404 type == FW_PORT_TYPE_BT_XAUI) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002405 v |= SUPPORTED_TP;
2406 if (caps & FW_PORT_CAP_SPEED_100M)
2407 v |= SUPPORTED_100baseT_Full;
2408 if (caps & FW_PORT_CAP_SPEED_1G)
2409 v |= SUPPORTED_1000baseT_Full;
2410 if (caps & FW_PORT_CAP_SPEED_10G)
2411 v |= SUPPORTED_10000baseT_Full;
2412 } else if (type == FW_PORT_TYPE_KX4 || type == FW_PORT_TYPE_KX) {
2413 v |= SUPPORTED_Backplane;
2414 if (caps & FW_PORT_CAP_SPEED_1G)
2415 v |= SUPPORTED_1000baseKX_Full;
2416 if (caps & FW_PORT_CAP_SPEED_10G)
2417 v |= SUPPORTED_10000baseKX4_Full;
2418 } else if (type == FW_PORT_TYPE_KR)
2419 v |= SUPPORTED_Backplane | SUPPORTED_10000baseKR_Full;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002420 else if (type == FW_PORT_TYPE_BP_AP)
Dimitris Michailidis7d5e77a2010-12-14 21:36:47 +00002421 v |= SUPPORTED_Backplane | SUPPORTED_10000baseR_FEC |
2422 SUPPORTED_10000baseKR_Full | SUPPORTED_1000baseKX_Full;
2423 else if (type == FW_PORT_TYPE_BP4_AP)
2424 v |= SUPPORTED_Backplane | SUPPORTED_10000baseR_FEC |
2425 SUPPORTED_10000baseKR_Full | SUPPORTED_1000baseKX_Full |
2426 SUPPORTED_10000baseKX4_Full;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002427 else if (type == FW_PORT_TYPE_FIBER_XFI ||
2428 type == FW_PORT_TYPE_FIBER_XAUI || type == FW_PORT_TYPE_SFP)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002429 v |= SUPPORTED_FIBRE;
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302430 else if (type == FW_PORT_TYPE_BP40_BA)
2431 v |= SUPPORTED_40000baseSR4_Full;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002432
2433 if (caps & FW_PORT_CAP_ANEG)
2434 v |= SUPPORTED_Autoneg;
2435 return v;
2436}
2437
2438static unsigned int to_fw_linkcaps(unsigned int caps)
2439{
2440 unsigned int v = 0;
2441
2442 if (caps & ADVERTISED_100baseT_Full)
2443 v |= FW_PORT_CAP_SPEED_100M;
2444 if (caps & ADVERTISED_1000baseT_Full)
2445 v |= FW_PORT_CAP_SPEED_1G;
2446 if (caps & ADVERTISED_10000baseT_Full)
2447 v |= FW_PORT_CAP_SPEED_10G;
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302448 if (caps & ADVERTISED_40000baseSR4_Full)
2449 v |= FW_PORT_CAP_SPEED_40G;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002450 return v;
2451}
2452
2453static int get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2454{
2455 const struct port_info *p = netdev_priv(dev);
2456
2457 if (p->port_type == FW_PORT_TYPE_BT_SGMII ||
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002458 p->port_type == FW_PORT_TYPE_BT_XFI ||
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002459 p->port_type == FW_PORT_TYPE_BT_XAUI)
2460 cmd->port = PORT_TP;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002461 else if (p->port_type == FW_PORT_TYPE_FIBER_XFI ||
2462 p->port_type == FW_PORT_TYPE_FIBER_XAUI)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002463 cmd->port = PORT_FIBRE;
Hariprasad Shenai3e00a502014-05-07 18:01:02 +05302464 else if (p->port_type == FW_PORT_TYPE_SFP ||
2465 p->port_type == FW_PORT_TYPE_QSFP_10G ||
2466 p->port_type == FW_PORT_TYPE_QSFP) {
2467 if (p->mod_type == FW_PORT_MOD_TYPE_LR ||
2468 p->mod_type == FW_PORT_MOD_TYPE_SR ||
2469 p->mod_type == FW_PORT_MOD_TYPE_ER ||
2470 p->mod_type == FW_PORT_MOD_TYPE_LRM)
2471 cmd->port = PORT_FIBRE;
2472 else if (p->mod_type == FW_PORT_MOD_TYPE_TWINAX_PASSIVE ||
2473 p->mod_type == FW_PORT_MOD_TYPE_TWINAX_ACTIVE)
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002474 cmd->port = PORT_DA;
2475 else
Hariprasad Shenai3e00a502014-05-07 18:01:02 +05302476 cmd->port = PORT_OTHER;
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00002477 } else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002478 cmd->port = PORT_OTHER;
2479
2480 if (p->mdio_addr >= 0) {
2481 cmd->phy_address = p->mdio_addr;
2482 cmd->transceiver = XCVR_EXTERNAL;
2483 cmd->mdio_support = p->port_type == FW_PORT_TYPE_BT_SGMII ?
2484 MDIO_SUPPORTS_C22 : MDIO_SUPPORTS_C45;
2485 } else {
2486 cmd->phy_address = 0; /* not really, but no better option */
2487 cmd->transceiver = XCVR_INTERNAL;
2488 cmd->mdio_support = 0;
2489 }
2490
2491 cmd->supported = from_fw_linkcaps(p->port_type, p->link_cfg.supported);
2492 cmd->advertising = from_fw_linkcaps(p->port_type,
2493 p->link_cfg.advertising);
David Decotigny70739492011-04-27 18:32:40 +00002494 ethtool_cmd_speed_set(cmd,
2495 netif_carrier_ok(dev) ? p->link_cfg.speed : 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002496 cmd->duplex = DUPLEX_FULL;
2497 cmd->autoneg = p->link_cfg.autoneg;
2498 cmd->maxtxpkt = 0;
2499 cmd->maxrxpkt = 0;
2500 return 0;
2501}
2502
2503static unsigned int speed_to_caps(int speed)
2504{
Ben Hutchingse8b39012014-02-23 00:03:24 +00002505 if (speed == 100)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002506 return FW_PORT_CAP_SPEED_100M;
Ben Hutchingse8b39012014-02-23 00:03:24 +00002507 if (speed == 1000)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002508 return FW_PORT_CAP_SPEED_1G;
Ben Hutchingse8b39012014-02-23 00:03:24 +00002509 if (speed == 10000)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002510 return FW_PORT_CAP_SPEED_10G;
Ben Hutchingse8b39012014-02-23 00:03:24 +00002511 if (speed == 40000)
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302512 return FW_PORT_CAP_SPEED_40G;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002513 return 0;
2514}
2515
2516static int set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2517{
2518 unsigned int cap;
2519 struct port_info *p = netdev_priv(dev);
2520 struct link_config *lc = &p->link_cfg;
David Decotigny25db0332011-04-27 18:32:39 +00002521 u32 speed = ethtool_cmd_speed(cmd);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002522
2523 if (cmd->duplex != DUPLEX_FULL) /* only full-duplex supported */
2524 return -EINVAL;
2525
2526 if (!(lc->supported & FW_PORT_CAP_ANEG)) {
2527 /*
2528 * PHY offers a single speed. See if that's what's
2529 * being requested.
2530 */
2531 if (cmd->autoneg == AUTONEG_DISABLE &&
David Decotigny25db0332011-04-27 18:32:39 +00002532 (lc->supported & speed_to_caps(speed)))
2533 return 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002534 return -EINVAL;
2535 }
2536
2537 if (cmd->autoneg == AUTONEG_DISABLE) {
David Decotigny25db0332011-04-27 18:32:39 +00002538 cap = speed_to_caps(speed);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002539
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302540 if (!(lc->supported & cap) ||
Ben Hutchingse8b39012014-02-23 00:03:24 +00002541 (speed == 1000) ||
2542 (speed == 10000) ||
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05302543 (speed == 40000))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002544 return -EINVAL;
2545 lc->requested_speed = cap;
2546 lc->advertising = 0;
2547 } else {
2548 cap = to_fw_linkcaps(cmd->advertising);
2549 if (!(lc->supported & cap))
2550 return -EINVAL;
2551 lc->requested_speed = 0;
2552 lc->advertising = cap | FW_PORT_CAP_ANEG;
2553 }
2554 lc->autoneg = cmd->autoneg;
2555
2556 if (netif_running(dev))
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002557 return t4_link_start(p->adapter, p->adapter->fn, p->tx_chan,
2558 lc);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002559 return 0;
2560}
2561
2562static void get_pauseparam(struct net_device *dev,
2563 struct ethtool_pauseparam *epause)
2564{
2565 struct port_info *p = netdev_priv(dev);
2566
2567 epause->autoneg = (p->link_cfg.requested_fc & PAUSE_AUTONEG) != 0;
2568 epause->rx_pause = (p->link_cfg.fc & PAUSE_RX) != 0;
2569 epause->tx_pause = (p->link_cfg.fc & PAUSE_TX) != 0;
2570}
2571
2572static int set_pauseparam(struct net_device *dev,
2573 struct ethtool_pauseparam *epause)
2574{
2575 struct port_info *p = netdev_priv(dev);
2576 struct link_config *lc = &p->link_cfg;
2577
2578 if (epause->autoneg == AUTONEG_DISABLE)
2579 lc->requested_fc = 0;
2580 else if (lc->supported & FW_PORT_CAP_ANEG)
2581 lc->requested_fc = PAUSE_AUTONEG;
2582 else
2583 return -EINVAL;
2584
2585 if (epause->rx_pause)
2586 lc->requested_fc |= PAUSE_RX;
2587 if (epause->tx_pause)
2588 lc->requested_fc |= PAUSE_TX;
2589 if (netif_running(dev))
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002590 return t4_link_start(p->adapter, p->adapter->fn, p->tx_chan,
2591 lc);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002592 return 0;
2593}
2594
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002595static void get_sge_param(struct net_device *dev, struct ethtool_ringparam *e)
2596{
2597 const struct port_info *pi = netdev_priv(dev);
2598 const struct sge *s = &pi->adapter->sge;
2599
2600 e->rx_max_pending = MAX_RX_BUFFERS;
2601 e->rx_mini_max_pending = MAX_RSPQ_ENTRIES;
2602 e->rx_jumbo_max_pending = 0;
2603 e->tx_max_pending = MAX_TXQ_ENTRIES;
2604
2605 e->rx_pending = s->ethrxq[pi->first_qset].fl.size - 8;
2606 e->rx_mini_pending = s->ethrxq[pi->first_qset].rspq.size;
2607 e->rx_jumbo_pending = 0;
2608 e->tx_pending = s->ethtxq[pi->first_qset].q.size;
2609}
2610
2611static int set_sge_param(struct net_device *dev, struct ethtool_ringparam *e)
2612{
2613 int i;
2614 const struct port_info *pi = netdev_priv(dev);
2615 struct adapter *adapter = pi->adapter;
2616 struct sge *s = &adapter->sge;
2617
2618 if (e->rx_pending > MAX_RX_BUFFERS || e->rx_jumbo_pending ||
2619 e->tx_pending > MAX_TXQ_ENTRIES ||
2620 e->rx_mini_pending > MAX_RSPQ_ENTRIES ||
2621 e->rx_mini_pending < MIN_RSPQ_ENTRIES ||
2622 e->rx_pending < MIN_FL_ENTRIES || e->tx_pending < MIN_TXQ_ENTRIES)
2623 return -EINVAL;
2624
2625 if (adapter->flags & FULL_INIT_DONE)
2626 return -EBUSY;
2627
2628 for (i = 0; i < pi->nqsets; ++i) {
2629 s->ethtxq[pi->first_qset + i].q.size = e->tx_pending;
2630 s->ethrxq[pi->first_qset + i].fl.size = e->rx_pending + 8;
2631 s->ethrxq[pi->first_qset + i].rspq.size = e->rx_mini_pending;
2632 }
2633 return 0;
2634}
2635
2636static int closest_timer(const struct sge *s, int time)
2637{
2638 int i, delta, match = 0, min_delta = INT_MAX;
2639
2640 for (i = 0; i < ARRAY_SIZE(s->timer_val); i++) {
2641 delta = time - s->timer_val[i];
2642 if (delta < 0)
2643 delta = -delta;
2644 if (delta < min_delta) {
2645 min_delta = delta;
2646 match = i;
2647 }
2648 }
2649 return match;
2650}
2651
2652static int closest_thres(const struct sge *s, int thres)
2653{
2654 int i, delta, match = 0, min_delta = INT_MAX;
2655
2656 for (i = 0; i < ARRAY_SIZE(s->counter_val); i++) {
2657 delta = thres - s->counter_val[i];
2658 if (delta < 0)
2659 delta = -delta;
2660 if (delta < min_delta) {
2661 min_delta = delta;
2662 match = i;
2663 }
2664 }
2665 return match;
2666}
2667
2668/*
2669 * Return a queue's interrupt hold-off time in us. 0 means no timer.
2670 */
2671static unsigned int qtimer_val(const struct adapter *adap,
2672 const struct sge_rspq *q)
2673{
2674 unsigned int idx = q->intr_params >> 1;
2675
2676 return idx < SGE_NTIMERS ? adap->sge.timer_val[idx] : 0;
2677}
2678
2679/**
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302680 * set_rspq_intr_params - set a queue's interrupt holdoff parameters
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002681 * @q: the Rx queue
2682 * @us: the hold-off time in us, or 0 to disable timer
2683 * @cnt: the hold-off packet count, or 0 to disable counter
2684 *
2685 * Sets an Rx queue's interrupt hold-off time and packet count. At least
2686 * one of the two needs to be enabled for the queue to generate interrupts.
2687 */
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302688static int set_rspq_intr_params(struct sge_rspq *q,
2689 unsigned int us, unsigned int cnt)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002690{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302691 struct adapter *adap = q->adap;
2692
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002693 if ((us | cnt) == 0)
2694 cnt = 1;
2695
2696 if (cnt) {
2697 int err;
2698 u32 v, new_idx;
2699
2700 new_idx = closest_thres(&adap->sge, cnt);
2701 if (q->desc && q->pktcnt_idx != new_idx) {
2702 /* the queue has already been created, update it */
2703 v = FW_PARAMS_MNEM(FW_PARAMS_MNEM_DMAQ) |
2704 FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DMAQ_IQ_INTCNTTHRESH) |
2705 FW_PARAMS_PARAM_YZ(q->cntxt_id);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002706 err = t4_set_params(adap, adap->fn, adap->fn, 0, 1, &v,
2707 &new_idx);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002708 if (err)
2709 return err;
2710 }
2711 q->pktcnt_idx = new_idx;
2712 }
2713
2714 us = us == 0 ? 6 : closest_timer(&adap->sge, us);
2715 q->intr_params = QINTR_TIMER_IDX(us) | (cnt > 0 ? QINTR_CNT_EN : 0);
2716 return 0;
2717}
2718
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302719/**
2720 * set_rx_intr_params - set a net devices's RX interrupt holdoff paramete!
2721 * @dev: the network device
2722 * @us: the hold-off time in us, or 0 to disable timer
2723 * @cnt: the hold-off packet count, or 0 to disable counter
2724 *
2725 * Set the RX interrupt hold-off parameters for a network device.
2726 */
2727static int set_rx_intr_params(struct net_device *dev,
2728 unsigned int us, unsigned int cnt)
2729{
2730 int i, err;
2731 struct port_info *pi = netdev_priv(dev);
2732 struct adapter *adap = pi->adapter;
2733 struct sge_eth_rxq *q = &adap->sge.ethrxq[pi->first_qset];
2734
2735 for (i = 0; i < pi->nqsets; i++, q++) {
2736 err = set_rspq_intr_params(&q->rspq, us, cnt);
2737 if (err)
2738 return err;
2739 }
2740 return 0;
2741}
2742
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002743static int set_coalesce(struct net_device *dev, struct ethtool_coalesce *c)
2744{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05302745 return set_rx_intr_params(dev, c->rx_coalesce_usecs,
2746 c->rx_max_coalesced_frames);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002747}
2748
2749static int get_coalesce(struct net_device *dev, struct ethtool_coalesce *c)
2750{
2751 const struct port_info *pi = netdev_priv(dev);
2752 const struct adapter *adap = pi->adapter;
2753 const struct sge_rspq *rq = &adap->sge.ethrxq[pi->first_qset].rspq;
2754
2755 c->rx_coalesce_usecs = qtimer_val(adap, rq);
2756 c->rx_max_coalesced_frames = (rq->intr_params & QINTR_CNT_EN) ?
2757 adap->sge.counter_val[rq->pktcnt_idx] : 0;
2758 return 0;
2759}
2760
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002761/**
2762 * eeprom_ptov - translate a physical EEPROM address to virtual
2763 * @phys_addr: the physical EEPROM address
2764 * @fn: the PCI function number
2765 * @sz: size of function-specific area
2766 *
2767 * Translate a physical EEPROM address to virtual. The first 1K is
2768 * accessed through virtual addresses starting at 31K, the rest is
2769 * accessed through virtual addresses starting at 0.
2770 *
2771 * The mapping is as follows:
2772 * [0..1K) -> [31K..32K)
2773 * [1K..1K+A) -> [31K-A..31K)
2774 * [1K+A..ES) -> [0..ES-A-1K)
2775 *
2776 * where A = @fn * @sz, and ES = EEPROM size.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002777 */
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002778static int eeprom_ptov(unsigned int phys_addr, unsigned int fn, unsigned int sz)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002779{
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002780 fn *= sz;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002781 if (phys_addr < 1024)
2782 return phys_addr + (31 << 10);
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002783 if (phys_addr < 1024 + fn)
2784 return 31744 - fn + phys_addr - 1024;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002785 if (phys_addr < EEPROMSIZE)
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002786 return phys_addr - 1024 - fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002787 return -EINVAL;
2788}
2789
2790/*
2791 * The next two routines implement eeprom read/write from physical addresses.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002792 */
2793static int eeprom_rd_phys(struct adapter *adap, unsigned int phys_addr, u32 *v)
2794{
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002795 int vaddr = eeprom_ptov(phys_addr, adap->fn, EEPROMPFSIZE);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002796
2797 if (vaddr >= 0)
2798 vaddr = pci_read_vpd(adap->pdev, vaddr, sizeof(u32), v);
2799 return vaddr < 0 ? vaddr : 0;
2800}
2801
2802static int eeprom_wr_phys(struct adapter *adap, unsigned int phys_addr, u32 v)
2803{
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002804 int vaddr = eeprom_ptov(phys_addr, adap->fn, EEPROMPFSIZE);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002805
2806 if (vaddr >= 0)
2807 vaddr = pci_write_vpd(adap->pdev, vaddr, sizeof(u32), &v);
2808 return vaddr < 0 ? vaddr : 0;
2809}
2810
2811#define EEPROM_MAGIC 0x38E2F10C
2812
2813static int get_eeprom(struct net_device *dev, struct ethtool_eeprom *e,
2814 u8 *data)
2815{
2816 int i, err = 0;
2817 struct adapter *adapter = netdev2adap(dev);
2818
2819 u8 *buf = kmalloc(EEPROMSIZE, GFP_KERNEL);
2820 if (!buf)
2821 return -ENOMEM;
2822
2823 e->magic = EEPROM_MAGIC;
2824 for (i = e->offset & ~3; !err && i < e->offset + e->len; i += 4)
2825 err = eeprom_rd_phys(adapter, i, (u32 *)&buf[i]);
2826
2827 if (!err)
2828 memcpy(data, buf + e->offset, e->len);
2829 kfree(buf);
2830 return err;
2831}
2832
2833static int set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
2834 u8 *data)
2835{
2836 u8 *buf;
2837 int err = 0;
2838 u32 aligned_offset, aligned_len, *p;
2839 struct adapter *adapter = netdev2adap(dev);
2840
2841 if (eeprom->magic != EEPROM_MAGIC)
2842 return -EINVAL;
2843
2844 aligned_offset = eeprom->offset & ~3;
2845 aligned_len = (eeprom->len + (eeprom->offset & 3) + 3) & ~3;
2846
Dimitris Michailidis1478b3e2010-08-23 17:20:59 +00002847 if (adapter->fn > 0) {
2848 u32 start = 1024 + adapter->fn * EEPROMPFSIZE;
2849
2850 if (aligned_offset < start ||
2851 aligned_offset + aligned_len > start + EEPROMPFSIZE)
2852 return -EPERM;
2853 }
2854
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002855 if (aligned_offset != eeprom->offset || aligned_len != eeprom->len) {
2856 /*
2857 * RMW possibly needed for first or last words.
2858 */
2859 buf = kmalloc(aligned_len, GFP_KERNEL);
2860 if (!buf)
2861 return -ENOMEM;
2862 err = eeprom_rd_phys(adapter, aligned_offset, (u32 *)buf);
2863 if (!err && aligned_len > 4)
2864 err = eeprom_rd_phys(adapter,
2865 aligned_offset + aligned_len - 4,
2866 (u32 *)&buf[aligned_len - 4]);
2867 if (err)
2868 goto out;
2869 memcpy(buf + (eeprom->offset & 3), data, eeprom->len);
2870 } else
2871 buf = data;
2872
2873 err = t4_seeprom_wp(adapter, false);
2874 if (err)
2875 goto out;
2876
2877 for (p = (u32 *)buf; !err && aligned_len; aligned_len -= 4, p++) {
2878 err = eeprom_wr_phys(adapter, aligned_offset, *p);
2879 aligned_offset += 4;
2880 }
2881
2882 if (!err)
2883 err = t4_seeprom_wp(adapter, true);
2884out:
2885 if (buf != data)
2886 kfree(buf);
2887 return err;
2888}
2889
2890static int set_flash(struct net_device *netdev, struct ethtool_flash *ef)
2891{
2892 int ret;
2893 const struct firmware *fw;
2894 struct adapter *adap = netdev2adap(netdev);
2895
2896 ef->data[sizeof(ef->data) - 1] = '\0';
2897 ret = request_firmware(&fw, ef->data, adap->pdev_dev);
2898 if (ret < 0)
2899 return ret;
2900
2901 ret = t4_load_fw(adap, fw->data, fw->size);
2902 release_firmware(fw);
2903 if (!ret)
2904 dev_info(adap->pdev_dev, "loaded firmware %s\n", ef->data);
2905 return ret;
2906}
2907
2908#define WOL_SUPPORTED (WAKE_BCAST | WAKE_MAGIC)
2909#define BCAST_CRC 0xa0ccc1a6
2910
2911static void get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2912{
2913 wol->supported = WAKE_BCAST | WAKE_MAGIC;
2914 wol->wolopts = netdev2adap(dev)->wol;
2915 memset(&wol->sopass, 0, sizeof(wol->sopass));
2916}
2917
2918static int set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2919{
2920 int err = 0;
2921 struct port_info *pi = netdev_priv(dev);
2922
2923 if (wol->wolopts & ~WOL_SUPPORTED)
2924 return -EINVAL;
2925 t4_wol_magic_enable(pi->adapter, pi->tx_chan,
2926 (wol->wolopts & WAKE_MAGIC) ? dev->dev_addr : NULL);
2927 if (wol->wolopts & WAKE_BCAST) {
2928 err = t4_wol_pat_enable(pi->adapter, pi->tx_chan, 0xfe, ~0ULL,
2929 ~0ULL, 0, false);
2930 if (!err)
2931 err = t4_wol_pat_enable(pi->adapter, pi->tx_chan, 1,
2932 ~6ULL, ~0ULL, BCAST_CRC, true);
2933 } else
2934 t4_wol_pat_enable(pi->adapter, pi->tx_chan, 0, 0, 0, 0, false);
2935 return err;
2936}
2937
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002938static int cxgb_set_features(struct net_device *dev, netdev_features_t features)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00002939{
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00002940 const struct port_info *pi = netdev_priv(dev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002941 netdev_features_t changed = dev->features ^ features;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002942 int err;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002943
Patrick McHardyf6469682013-04-19 02:04:27 +00002944 if (!(changed & NETIF_F_HW_VLAN_CTAG_RX))
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00002945 return 0;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002946
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00002947 err = t4_set_rxmode(pi->adapter, pi->adapter->fn, pi->viid, -1,
2948 -1, -1, -1,
Patrick McHardyf6469682013-04-19 02:04:27 +00002949 !!(features & NETIF_F_HW_VLAN_CTAG_RX), true);
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00002950 if (unlikely(err))
Patrick McHardyf6469682013-04-19 02:04:27 +00002951 dev->features = features ^ NETIF_F_HW_VLAN_CTAG_RX;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002952 return err;
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07002953}
2954
Ben Hutchings7850f632011-12-15 13:55:01 +00002955static u32 get_rss_table_size(struct net_device *dev)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002956{
2957 const struct port_info *pi = netdev_priv(dev);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002958
Ben Hutchings7850f632011-12-15 13:55:01 +00002959 return pi->rss_size;
2960}
2961
Ben Hutchingsfe62d002014-05-15 01:25:27 +01002962static int get_rss_table(struct net_device *dev, u32 *p, u8 *key)
Ben Hutchings7850f632011-12-15 13:55:01 +00002963{
2964 const struct port_info *pi = netdev_priv(dev);
2965 unsigned int n = pi->rss_size;
2966
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002967 while (n--)
Ben Hutchings7850f632011-12-15 13:55:01 +00002968 p[n] = pi->rss[n];
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002969 return 0;
2970}
2971
Ben Hutchingsfe62d002014-05-15 01:25:27 +01002972static int set_rss_table(struct net_device *dev, const u32 *p, const u8 *key)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002973{
2974 unsigned int i;
2975 struct port_info *pi = netdev_priv(dev);
2976
Ben Hutchings7850f632011-12-15 13:55:01 +00002977 for (i = 0; i < pi->rss_size; i++)
2978 pi->rss[i] = p[i];
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002979 if (pi->adapter->flags & FULL_INIT_DONE)
2980 return write_rss(pi, pi->rss);
2981 return 0;
2982}
2983
2984static int get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
Ben Hutchings815c7db2011-09-06 13:49:12 +00002985 u32 *rules)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002986{
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002987 const struct port_info *pi = netdev_priv(dev);
2988
Dimitris Michailidis671b0062010-07-11 12:01:17 +00002989 switch (info->cmd) {
Dimitris Michailidisf7965642010-07-11 12:01:18 +00002990 case ETHTOOL_GRXFH: {
2991 unsigned int v = pi->rss_mode;
2992
2993 info->data = 0;
2994 switch (info->flow_type) {
2995 case TCP_V4_FLOW:
2996 if (v & FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN)
2997 info->data = RXH_IP_SRC | RXH_IP_DST |
2998 RXH_L4_B_0_1 | RXH_L4_B_2_3;
2999 else if (v & FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN)
3000 info->data = RXH_IP_SRC | RXH_IP_DST;
3001 break;
3002 case UDP_V4_FLOW:
3003 if ((v & FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN) &&
3004 (v & FW_RSS_VI_CONFIG_CMD_UDPEN))
3005 info->data = RXH_IP_SRC | RXH_IP_DST |
3006 RXH_L4_B_0_1 | RXH_L4_B_2_3;
3007 else if (v & FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN)
3008 info->data = RXH_IP_SRC | RXH_IP_DST;
3009 break;
3010 case SCTP_V4_FLOW:
3011 case AH_ESP_V4_FLOW:
3012 case IPV4_FLOW:
3013 if (v & FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN)
3014 info->data = RXH_IP_SRC | RXH_IP_DST;
3015 break;
3016 case TCP_V6_FLOW:
3017 if (v & FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN)
3018 info->data = RXH_IP_SRC | RXH_IP_DST |
3019 RXH_L4_B_0_1 | RXH_L4_B_2_3;
3020 else if (v & FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN)
3021 info->data = RXH_IP_SRC | RXH_IP_DST;
3022 break;
3023 case UDP_V6_FLOW:
3024 if ((v & FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN) &&
3025 (v & FW_RSS_VI_CONFIG_CMD_UDPEN))
3026 info->data = RXH_IP_SRC | RXH_IP_DST |
3027 RXH_L4_B_0_1 | RXH_L4_B_2_3;
3028 else if (v & FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN)
3029 info->data = RXH_IP_SRC | RXH_IP_DST;
3030 break;
3031 case SCTP_V6_FLOW:
3032 case AH_ESP_V6_FLOW:
3033 case IPV6_FLOW:
3034 if (v & FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN)
3035 info->data = RXH_IP_SRC | RXH_IP_DST;
3036 break;
3037 }
3038 return 0;
3039 }
Dimitris Michailidis671b0062010-07-11 12:01:17 +00003040 case ETHTOOL_GRXRINGS:
Dimitris Michailidisf7965642010-07-11 12:01:18 +00003041 info->data = pi->nqsets;
Dimitris Michailidis671b0062010-07-11 12:01:17 +00003042 return 0;
3043 }
3044 return -EOPNOTSUPP;
3045}
3046
stephen hemminger9b07be42012-01-04 12:59:49 +00003047static const struct ethtool_ops cxgb_ethtool_ops = {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003048 .get_settings = get_settings,
3049 .set_settings = set_settings,
3050 .get_drvinfo = get_drvinfo,
3051 .get_msglevel = get_msglevel,
3052 .set_msglevel = set_msglevel,
3053 .get_ringparam = get_sge_param,
3054 .set_ringparam = set_sge_param,
3055 .get_coalesce = get_coalesce,
3056 .set_coalesce = set_coalesce,
3057 .get_eeprom_len = get_eeprom_len,
3058 .get_eeprom = get_eeprom,
3059 .set_eeprom = set_eeprom,
3060 .get_pauseparam = get_pauseparam,
3061 .set_pauseparam = set_pauseparam,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003062 .get_link = ethtool_op_get_link,
3063 .get_strings = get_strings,
Dimitris Michailidisc5e06362011-04-08 13:06:25 -07003064 .set_phys_id = identify_port,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003065 .nway_reset = restart_autoneg,
3066 .get_sset_count = get_sset_count,
3067 .get_ethtool_stats = get_stats,
3068 .get_regs_len = get_regs_len,
3069 .get_regs = get_regs,
3070 .get_wol = get_wol,
3071 .set_wol = set_wol,
Dimitris Michailidis671b0062010-07-11 12:01:17 +00003072 .get_rxnfc = get_rxnfc,
Ben Hutchings7850f632011-12-15 13:55:01 +00003073 .get_rxfh_indir_size = get_rss_table_size,
Ben Hutchingsfe62d002014-05-15 01:25:27 +01003074 .get_rxfh = get_rss_table,
3075 .set_rxfh = set_rss_table,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003076 .flash_device = set_flash,
3077};
3078
3079/*
3080 * debugfs support
3081 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003082static ssize_t mem_read(struct file *file, char __user *buf, size_t count,
3083 loff_t *ppos)
3084{
3085 loff_t pos = *ppos;
Al Viro496ad9a2013-01-23 17:07:38 -05003086 loff_t avail = file_inode(file)->i_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003087 unsigned int mem = (uintptr_t)file->private_data & 3;
3088 struct adapter *adap = file->private_data - mem;
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303089 __be32 *data;
3090 int ret;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003091
3092 if (pos < 0)
3093 return -EINVAL;
3094 if (pos >= avail)
3095 return 0;
3096 if (count > avail - pos)
3097 count = avail - pos;
3098
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303099 data = t4_alloc_mem(count);
3100 if (!data)
3101 return -ENOMEM;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003102
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303103 spin_lock(&adap->win0_lock);
3104 ret = t4_memory_rw(adap, 0, mem, pos, count, data, T4_MEMORY_READ);
3105 spin_unlock(&adap->win0_lock);
3106 if (ret) {
3107 t4_free_mem(data);
3108 return ret;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003109 }
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303110 ret = copy_to_user(buf, data, count);
3111
3112 t4_free_mem(data);
3113 if (ret)
3114 return -EFAULT;
3115
3116 *ppos = pos + count;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003117 return count;
3118}
3119
3120static const struct file_operations mem_debugfs_fops = {
3121 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07003122 .open = simple_open,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003123 .read = mem_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003124 .llseek = default_llseek,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003125};
3126
Bill Pemberton91744942012-12-03 09:23:02 -05003127static void add_debugfs_mem(struct adapter *adap, const char *name,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00003128 unsigned int idx, unsigned int size_mb)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003129{
3130 struct dentry *de;
3131
3132 de = debugfs_create_file(name, S_IRUSR, adap->debugfs_root,
3133 (void *)adap + idx, &mem_debugfs_fops);
3134 if (de && de->d_inode)
3135 de->d_inode->i_size = size_mb << 20;
3136}
3137
Bill Pemberton91744942012-12-03 09:23:02 -05003138static int setup_debugfs(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003139{
3140 int i;
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00003141 u32 size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003142
3143 if (IS_ERR_OR_NULL(adap->debugfs_root))
3144 return -1;
3145
3146 i = t4_read_reg(adap, MA_TARGET_MEM_ENABLE);
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00003147 if (i & EDRAM0_ENABLE) {
3148 size = t4_read_reg(adap, MA_EDRAM0_BAR);
3149 add_debugfs_mem(adap, "edc0", MEM_EDC0, EDRAM_SIZE_GET(size));
3150 }
3151 if (i & EDRAM1_ENABLE) {
3152 size = t4_read_reg(adap, MA_EDRAM1_BAR);
3153 add_debugfs_mem(adap, "edc1", MEM_EDC1, EDRAM_SIZE_GET(size));
3154 }
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303155 if (is_t4(adap->params.chip)) {
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00003156 size = t4_read_reg(adap, MA_EXT_MEMORY_BAR);
3157 if (i & EXT_MEM_ENABLE)
3158 add_debugfs_mem(adap, "mc", MEM_MC,
3159 EXT_MEM_SIZE_GET(size));
3160 } else {
3161 if (i & EXT_MEM_ENABLE) {
3162 size = t4_read_reg(adap, MA_EXT_MEMORY_BAR);
3163 add_debugfs_mem(adap, "mc0", MEM_MC0,
3164 EXT_MEM_SIZE_GET(size));
3165 }
3166 if (i & EXT_MEM1_ENABLE) {
3167 size = t4_read_reg(adap, MA_EXT_MEMORY1_BAR);
3168 add_debugfs_mem(adap, "mc1", MEM_MC1,
3169 EXT_MEM_SIZE_GET(size));
3170 }
3171 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003172 if (adap->l2t)
3173 debugfs_create_file("l2t", S_IRUSR, adap->debugfs_root, adap,
3174 &t4_l2t_fops);
3175 return 0;
3176}
3177
3178/*
3179 * upper-layer driver support
3180 */
3181
3182/*
3183 * Allocate an active-open TID and set it to the supplied value.
3184 */
3185int cxgb4_alloc_atid(struct tid_info *t, void *data)
3186{
3187 int atid = -1;
3188
3189 spin_lock_bh(&t->atid_lock);
3190 if (t->afree) {
3191 union aopen_entry *p = t->afree;
3192
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003193 atid = (p - t->atid_tab) + t->atid_base;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003194 t->afree = p->next;
3195 p->data = data;
3196 t->atids_in_use++;
3197 }
3198 spin_unlock_bh(&t->atid_lock);
3199 return atid;
3200}
3201EXPORT_SYMBOL(cxgb4_alloc_atid);
3202
3203/*
3204 * Release an active-open TID.
3205 */
3206void cxgb4_free_atid(struct tid_info *t, unsigned int atid)
3207{
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003208 union aopen_entry *p = &t->atid_tab[atid - t->atid_base];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003209
3210 spin_lock_bh(&t->atid_lock);
3211 p->next = t->afree;
3212 t->afree = p;
3213 t->atids_in_use--;
3214 spin_unlock_bh(&t->atid_lock);
3215}
3216EXPORT_SYMBOL(cxgb4_free_atid);
3217
3218/*
3219 * Allocate a server TID and set it to the supplied value.
3220 */
3221int cxgb4_alloc_stid(struct tid_info *t, int family, void *data)
3222{
3223 int stid;
3224
3225 spin_lock_bh(&t->stid_lock);
3226 if (family == PF_INET) {
3227 stid = find_first_zero_bit(t->stid_bmap, t->nstids);
3228 if (stid < t->nstids)
3229 __set_bit(stid, t->stid_bmap);
3230 else
3231 stid = -1;
3232 } else {
3233 stid = bitmap_find_free_region(t->stid_bmap, t->nstids, 2);
3234 if (stid < 0)
3235 stid = -1;
3236 }
3237 if (stid >= 0) {
3238 t->stid_tab[stid].data = data;
3239 stid += t->stid_base;
Kumar Sanghvi15f63b72013-12-18 16:38:22 +05303240 /* IPv6 requires max of 520 bits or 16 cells in TCAM
3241 * This is equivalent to 4 TIDs. With CLIP enabled it
3242 * needs 2 TIDs.
3243 */
3244 if (family == PF_INET)
3245 t->stids_in_use++;
3246 else
3247 t->stids_in_use += 4;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003248 }
3249 spin_unlock_bh(&t->stid_lock);
3250 return stid;
3251}
3252EXPORT_SYMBOL(cxgb4_alloc_stid);
3253
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003254/* Allocate a server filter TID and set it to the supplied value.
3255 */
3256int cxgb4_alloc_sftid(struct tid_info *t, int family, void *data)
3257{
3258 int stid;
3259
3260 spin_lock_bh(&t->stid_lock);
3261 if (family == PF_INET) {
3262 stid = find_next_zero_bit(t->stid_bmap,
3263 t->nstids + t->nsftids, t->nstids);
3264 if (stid < (t->nstids + t->nsftids))
3265 __set_bit(stid, t->stid_bmap);
3266 else
3267 stid = -1;
3268 } else {
3269 stid = -1;
3270 }
3271 if (stid >= 0) {
3272 t->stid_tab[stid].data = data;
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05303273 stid -= t->nstids;
3274 stid += t->sftid_base;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003275 t->stids_in_use++;
3276 }
3277 spin_unlock_bh(&t->stid_lock);
3278 return stid;
3279}
3280EXPORT_SYMBOL(cxgb4_alloc_sftid);
3281
3282/* Release a server TID.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003283 */
3284void cxgb4_free_stid(struct tid_info *t, unsigned int stid, int family)
3285{
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05303286 /* Is it a server filter TID? */
3287 if (t->nsftids && (stid >= t->sftid_base)) {
3288 stid -= t->sftid_base;
3289 stid += t->nstids;
3290 } else {
3291 stid -= t->stid_base;
3292 }
3293
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003294 spin_lock_bh(&t->stid_lock);
3295 if (family == PF_INET)
3296 __clear_bit(stid, t->stid_bmap);
3297 else
3298 bitmap_release_region(t->stid_bmap, stid, 2);
3299 t->stid_tab[stid].data = NULL;
Kumar Sanghvi15f63b72013-12-18 16:38:22 +05303300 if (family == PF_INET)
3301 t->stids_in_use--;
3302 else
3303 t->stids_in_use -= 4;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003304 spin_unlock_bh(&t->stid_lock);
3305}
3306EXPORT_SYMBOL(cxgb4_free_stid);
3307
3308/*
3309 * Populate a TID_RELEASE WR. Caller must properly size the skb.
3310 */
3311static void mk_tid_release(struct sk_buff *skb, unsigned int chan,
3312 unsigned int tid)
3313{
3314 struct cpl_tid_release *req;
3315
3316 set_wr_txq(skb, CPL_PRIORITY_SETUP, chan);
3317 req = (struct cpl_tid_release *)__skb_put(skb, sizeof(*req));
3318 INIT_TP_WR(req, tid);
3319 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_TID_RELEASE, tid));
3320}
3321
3322/*
3323 * Queue a TID release request and if necessary schedule a work queue to
3324 * process it.
3325 */
stephen hemminger31b9c192010-10-18 05:39:18 +00003326static void cxgb4_queue_tid_release(struct tid_info *t, unsigned int chan,
3327 unsigned int tid)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003328{
3329 void **p = &t->tid_tab[tid];
3330 struct adapter *adap = container_of(t, struct adapter, tids);
3331
3332 spin_lock_bh(&adap->tid_release_lock);
3333 *p = adap->tid_release_head;
3334 /* Low 2 bits encode the Tx channel number */
3335 adap->tid_release_head = (void **)((uintptr_t)p | chan);
3336 if (!adap->tid_release_task_busy) {
3337 adap->tid_release_task_busy = true;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303338 queue_work(workq, &adap->tid_release_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003339 }
3340 spin_unlock_bh(&adap->tid_release_lock);
3341}
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003342
3343/*
3344 * Process the list of pending TID release requests.
3345 */
3346static void process_tid_release_list(struct work_struct *work)
3347{
3348 struct sk_buff *skb;
3349 struct adapter *adap;
3350
3351 adap = container_of(work, struct adapter, tid_release_task);
3352
3353 spin_lock_bh(&adap->tid_release_lock);
3354 while (adap->tid_release_head) {
3355 void **p = adap->tid_release_head;
3356 unsigned int chan = (uintptr_t)p & 3;
3357 p = (void *)p - chan;
3358
3359 adap->tid_release_head = *p;
3360 *p = NULL;
3361 spin_unlock_bh(&adap->tid_release_lock);
3362
3363 while (!(skb = alloc_skb(sizeof(struct cpl_tid_release),
3364 GFP_KERNEL)))
3365 schedule_timeout_uninterruptible(1);
3366
3367 mk_tid_release(skb, chan, p - adap->tids.tid_tab);
3368 t4_ofld_send(adap, skb);
3369 spin_lock_bh(&adap->tid_release_lock);
3370 }
3371 adap->tid_release_task_busy = false;
3372 spin_unlock_bh(&adap->tid_release_lock);
3373}
3374
3375/*
3376 * Release a TID and inform HW. If we are unable to allocate the release
3377 * message we defer to a work queue.
3378 */
3379void cxgb4_remove_tid(struct tid_info *t, unsigned int chan, unsigned int tid)
3380{
3381 void *old;
3382 struct sk_buff *skb;
3383 struct adapter *adap = container_of(t, struct adapter, tids);
3384
3385 old = t->tid_tab[tid];
3386 skb = alloc_skb(sizeof(struct cpl_tid_release), GFP_ATOMIC);
3387 if (likely(skb)) {
3388 t->tid_tab[tid] = NULL;
3389 mk_tid_release(skb, chan, tid);
3390 t4_ofld_send(adap, skb);
3391 } else
3392 cxgb4_queue_tid_release(t, chan, tid);
3393 if (old)
3394 atomic_dec(&t->tids_in_use);
3395}
3396EXPORT_SYMBOL(cxgb4_remove_tid);
3397
3398/*
3399 * Allocate and initialize the TID tables. Returns 0 on success.
3400 */
3401static int tid_init(struct tid_info *t)
3402{
3403 size_t size;
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003404 unsigned int stid_bmap_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003405 unsigned int natids = t->natids;
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05303406 struct adapter *adap = container_of(t, struct adapter, tids);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003407
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003408 stid_bmap_size = BITS_TO_LONGS(t->nstids + t->nsftids);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003409 size = t->ntids * sizeof(*t->tid_tab) +
3410 natids * sizeof(*t->atid_tab) +
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003411 t->nstids * sizeof(*t->stid_tab) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003412 t->nsftids * sizeof(*t->stid_tab) +
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003413 stid_bmap_size * sizeof(long) +
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003414 t->nftids * sizeof(*t->ftid_tab) +
3415 t->nsftids * sizeof(*t->ftid_tab);
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003416
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003417 t->tid_tab = t4_alloc_mem(size);
3418 if (!t->tid_tab)
3419 return -ENOMEM;
3420
3421 t->atid_tab = (union aopen_entry *)&t->tid_tab[t->ntids];
3422 t->stid_tab = (struct serv_entry *)&t->atid_tab[natids];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003423 t->stid_bmap = (unsigned long *)&t->stid_tab[t->nstids + t->nsftids];
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00003424 t->ftid_tab = (struct filter_entry *)&t->stid_bmap[stid_bmap_size];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003425 spin_lock_init(&t->stid_lock);
3426 spin_lock_init(&t->atid_lock);
3427
3428 t->stids_in_use = 0;
3429 t->afree = NULL;
3430 t->atids_in_use = 0;
3431 atomic_set(&t->tids_in_use, 0);
3432
3433 /* Setup the free list for atid_tab and clear the stid bitmap. */
3434 if (natids) {
3435 while (--natids)
3436 t->atid_tab[natids - 1].next = &t->atid_tab[natids];
3437 t->afree = t->atid_tab;
3438 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00003439 bitmap_zero(t->stid_bmap, t->nstids + t->nsftids);
Kumar Sanghvib6f8eae2013-12-18 16:38:19 +05303440 /* Reserve stid 0 for T4/T5 adapters */
3441 if (!t->stid_base &&
3442 (is_t4(adap->params.chip) || is_t5(adap->params.chip)))
3443 __set_bit(0, t->stid_bmap);
3444
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003445 return 0;
3446}
3447
Vipul Pandya01bcca62013-07-04 16:10:46 +05303448static int cxgb4_clip_get(const struct net_device *dev,
3449 const struct in6_addr *lip)
3450{
3451 struct adapter *adap;
3452 struct fw_clip_cmd c;
3453
3454 adap = netdev2adap(dev);
3455 memset(&c, 0, sizeof(c));
3456 c.op_to_write = htonl(FW_CMD_OP(FW_CLIP_CMD) |
3457 FW_CMD_REQUEST | FW_CMD_WRITE);
3458 c.alloc_to_len16 = htonl(F_FW_CLIP_CMD_ALLOC | FW_LEN16(c));
Joe Perches12f2a472014-03-24 10:45:12 -07003459 c.ip_hi = *(__be64 *)(lip->s6_addr);
3460 c.ip_lo = *(__be64 *)(lip->s6_addr + 8);
Vipul Pandya01bcca62013-07-04 16:10:46 +05303461 return t4_wr_mbox_meat(adap, adap->mbox, &c, sizeof(c), &c, false);
3462}
3463
3464static int cxgb4_clip_release(const struct net_device *dev,
3465 const struct in6_addr *lip)
3466{
3467 struct adapter *adap;
3468 struct fw_clip_cmd c;
3469
3470 adap = netdev2adap(dev);
3471 memset(&c, 0, sizeof(c));
3472 c.op_to_write = htonl(FW_CMD_OP(FW_CLIP_CMD) |
3473 FW_CMD_REQUEST | FW_CMD_READ);
3474 c.alloc_to_len16 = htonl(F_FW_CLIP_CMD_FREE | FW_LEN16(c));
Joe Perches12f2a472014-03-24 10:45:12 -07003475 c.ip_hi = *(__be64 *)(lip->s6_addr);
3476 c.ip_lo = *(__be64 *)(lip->s6_addr + 8);
Vipul Pandya01bcca62013-07-04 16:10:46 +05303477 return t4_wr_mbox_meat(adap, adap->mbox, &c, sizeof(c), &c, false);
3478}
3479
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003480/**
3481 * cxgb4_create_server - create an IP server
3482 * @dev: the device
3483 * @stid: the server TID
3484 * @sip: local IP address to bind server to
3485 * @sport: the server's TCP port
3486 * @queue: queue to direct messages from this server to
3487 *
3488 * Create an IP server for the given port and address.
3489 * Returns <0 on error and one of the %NET_XMIT_* values on success.
3490 */
3491int cxgb4_create_server(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00003492 __be32 sip, __be16 sport, __be16 vlan,
3493 unsigned int queue)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003494{
3495 unsigned int chan;
3496 struct sk_buff *skb;
3497 struct adapter *adap;
3498 struct cpl_pass_open_req *req;
Vipul Pandya80f40c12013-07-04 16:10:45 +05303499 int ret;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003500
3501 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
3502 if (!skb)
3503 return -ENOMEM;
3504
3505 adap = netdev2adap(dev);
3506 req = (struct cpl_pass_open_req *)__skb_put(skb, sizeof(*req));
3507 INIT_TP_WR(req, 0);
3508 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ, stid));
3509 req->local_port = sport;
3510 req->peer_port = htons(0);
3511 req->local_ip = sip;
3512 req->peer_ip = htonl(0);
Dimitris Michailidise46dab42010-08-23 17:20:58 +00003513 chan = rxq_to_chan(&adap->sge, queue);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003514 req->opt0 = cpu_to_be64(TX_CHAN(chan));
3515 req->opt1 = cpu_to_be64(CONN_POLICY_ASK |
3516 SYN_RSS_ENABLE | SYN_RSS_QUEUE(queue));
Vipul Pandya80f40c12013-07-04 16:10:45 +05303517 ret = t4_mgmt_tx(adap, skb);
3518 return net_xmit_eval(ret);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003519}
3520EXPORT_SYMBOL(cxgb4_create_server);
3521
Vipul Pandya80f40c12013-07-04 16:10:45 +05303522/* cxgb4_create_server6 - create an IPv6 server
3523 * @dev: the device
3524 * @stid: the server TID
3525 * @sip: local IPv6 address to bind server to
3526 * @sport: the server's TCP port
3527 * @queue: queue to direct messages from this server to
3528 *
3529 * Create an IPv6 server for the given port and address.
3530 * Returns <0 on error and one of the %NET_XMIT_* values on success.
3531 */
3532int cxgb4_create_server6(const struct net_device *dev, unsigned int stid,
3533 const struct in6_addr *sip, __be16 sport,
3534 unsigned int queue)
3535{
3536 unsigned int chan;
3537 struct sk_buff *skb;
3538 struct adapter *adap;
3539 struct cpl_pass_open_req6 *req;
3540 int ret;
3541
3542 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
3543 if (!skb)
3544 return -ENOMEM;
3545
3546 adap = netdev2adap(dev);
3547 req = (struct cpl_pass_open_req6 *)__skb_put(skb, sizeof(*req));
3548 INIT_TP_WR(req, 0);
3549 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_OPEN_REQ6, stid));
3550 req->local_port = sport;
3551 req->peer_port = htons(0);
3552 req->local_ip_hi = *(__be64 *)(sip->s6_addr);
3553 req->local_ip_lo = *(__be64 *)(sip->s6_addr + 8);
3554 req->peer_ip_hi = cpu_to_be64(0);
3555 req->peer_ip_lo = cpu_to_be64(0);
3556 chan = rxq_to_chan(&adap->sge, queue);
3557 req->opt0 = cpu_to_be64(TX_CHAN(chan));
3558 req->opt1 = cpu_to_be64(CONN_POLICY_ASK |
3559 SYN_RSS_ENABLE | SYN_RSS_QUEUE(queue));
3560 ret = t4_mgmt_tx(adap, skb);
3561 return net_xmit_eval(ret);
3562}
3563EXPORT_SYMBOL(cxgb4_create_server6);
3564
3565int cxgb4_remove_server(const struct net_device *dev, unsigned int stid,
3566 unsigned int queue, bool ipv6)
3567{
3568 struct sk_buff *skb;
3569 struct adapter *adap;
3570 struct cpl_close_listsvr_req *req;
3571 int ret;
3572
3573 adap = netdev2adap(dev);
3574
3575 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
3576 if (!skb)
3577 return -ENOMEM;
3578
3579 req = (struct cpl_close_listsvr_req *)__skb_put(skb, sizeof(*req));
3580 INIT_TP_WR(req, 0);
3581 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_CLOSE_LISTSRV_REQ, stid));
3582 req->reply_ctrl = htons(NO_REPLY(0) | (ipv6 ? LISTSVR_IPV6(1) :
3583 LISTSVR_IPV6(0)) | QUEUENO(queue));
3584 ret = t4_mgmt_tx(adap, skb);
3585 return net_xmit_eval(ret);
3586}
3587EXPORT_SYMBOL(cxgb4_remove_server);
3588
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003589/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003590 * cxgb4_best_mtu - find the entry in the MTU table closest to an MTU
3591 * @mtus: the HW MTU table
3592 * @mtu: the target MTU
3593 * @idx: index of selected entry in the MTU table
3594 *
3595 * Returns the index and the value in the HW MTU table that is closest to
3596 * but does not exceed @mtu, unless @mtu is smaller than any value in the
3597 * table, in which case that smallest available value is selected.
3598 */
3599unsigned int cxgb4_best_mtu(const unsigned short *mtus, unsigned short mtu,
3600 unsigned int *idx)
3601{
3602 unsigned int i = 0;
3603
3604 while (i < NMTUS - 1 && mtus[i + 1] <= mtu)
3605 ++i;
3606 if (idx)
3607 *idx = i;
3608 return mtus[i];
3609}
3610EXPORT_SYMBOL(cxgb4_best_mtu);
3611
3612/**
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05303613 * cxgb4_best_aligned_mtu - find best MTU, [hopefully] data size aligned
3614 * @mtus: the HW MTU table
3615 * @header_size: Header Size
3616 * @data_size_max: maximum Data Segment Size
3617 * @data_size_align: desired Data Segment Size Alignment (2^N)
3618 * @mtu_idxp: HW MTU Table Index return value pointer (possibly NULL)
3619 *
3620 * Similar to cxgb4_best_mtu() but instead of searching the Hardware
3621 * MTU Table based solely on a Maximum MTU parameter, we break that
3622 * parameter up into a Header Size and Maximum Data Segment Size, and
3623 * provide a desired Data Segment Size Alignment. If we find an MTU in
3624 * the Hardware MTU Table which will result in a Data Segment Size with
3625 * the requested alignment _and_ that MTU isn't "too far" from the
3626 * closest MTU, then we'll return that rather than the closest MTU.
3627 */
3628unsigned int cxgb4_best_aligned_mtu(const unsigned short *mtus,
3629 unsigned short header_size,
3630 unsigned short data_size_max,
3631 unsigned short data_size_align,
3632 unsigned int *mtu_idxp)
3633{
3634 unsigned short max_mtu = header_size + data_size_max;
3635 unsigned short data_size_align_mask = data_size_align - 1;
3636 int mtu_idx, aligned_mtu_idx;
3637
3638 /* Scan the MTU Table till we find an MTU which is larger than our
3639 * Maximum MTU or we reach the end of the table. Along the way,
3640 * record the last MTU found, if any, which will result in a Data
3641 * Segment Length matching the requested alignment.
3642 */
3643 for (mtu_idx = 0, aligned_mtu_idx = -1; mtu_idx < NMTUS; mtu_idx++) {
3644 unsigned short data_size = mtus[mtu_idx] - header_size;
3645
3646 /* If this MTU minus the Header Size would result in a
3647 * Data Segment Size of the desired alignment, remember it.
3648 */
3649 if ((data_size & data_size_align_mask) == 0)
3650 aligned_mtu_idx = mtu_idx;
3651
3652 /* If we're not at the end of the Hardware MTU Table and the
3653 * next element is larger than our Maximum MTU, drop out of
3654 * the loop.
3655 */
3656 if (mtu_idx+1 < NMTUS && mtus[mtu_idx+1] > max_mtu)
3657 break;
3658 }
3659
3660 /* If we fell out of the loop because we ran to the end of the table,
3661 * then we just have to use the last [largest] entry.
3662 */
3663 if (mtu_idx == NMTUS)
3664 mtu_idx--;
3665
3666 /* If we found an MTU which resulted in the requested Data Segment
3667 * Length alignment and that's "not far" from the largest MTU which is
3668 * less than or equal to the maximum MTU, then use that.
3669 */
3670 if (aligned_mtu_idx >= 0 &&
3671 mtu_idx - aligned_mtu_idx <= 1)
3672 mtu_idx = aligned_mtu_idx;
3673
3674 /* If the caller has passed in an MTU Index pointer, pass the
3675 * MTU Index back. Return the MTU value.
3676 */
3677 if (mtu_idxp)
3678 *mtu_idxp = mtu_idx;
3679 return mtus[mtu_idx];
3680}
3681EXPORT_SYMBOL(cxgb4_best_aligned_mtu);
3682
3683/**
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003684 * cxgb4_port_chan - get the HW channel of a port
3685 * @dev: the net device for the port
3686 *
3687 * Return the HW Tx channel of the given port.
3688 */
3689unsigned int cxgb4_port_chan(const struct net_device *dev)
3690{
3691 return netdev2pinfo(dev)->tx_chan;
3692}
3693EXPORT_SYMBOL(cxgb4_port_chan);
3694
Vipul Pandya881806b2012-05-18 15:29:24 +05303695unsigned int cxgb4_dbfifo_count(const struct net_device *dev, int lpfifo)
3696{
3697 struct adapter *adap = netdev2adap(dev);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003698 u32 v1, v2, lp_count, hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05303699
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003700 v1 = t4_read_reg(adap, A_SGE_DBFIFO_STATUS);
3701 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303702 if (is_t4(adap->params.chip)) {
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003703 lp_count = G_LP_COUNT(v1);
3704 hp_count = G_HP_COUNT(v1);
3705 } else {
3706 lp_count = G_LP_COUNT_T5(v1);
3707 hp_count = G_HP_COUNT_T5(v2);
3708 }
3709 return lpfifo ? lp_count : hp_count;
Vipul Pandya881806b2012-05-18 15:29:24 +05303710}
3711EXPORT_SYMBOL(cxgb4_dbfifo_count);
3712
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003713/**
3714 * cxgb4_port_viid - get the VI id of a port
3715 * @dev: the net device for the port
3716 *
3717 * Return the VI id of the given port.
3718 */
3719unsigned int cxgb4_port_viid(const struct net_device *dev)
3720{
3721 return netdev2pinfo(dev)->viid;
3722}
3723EXPORT_SYMBOL(cxgb4_port_viid);
3724
3725/**
3726 * cxgb4_port_idx - get the index of a port
3727 * @dev: the net device for the port
3728 *
3729 * Return the index of the given port.
3730 */
3731unsigned int cxgb4_port_idx(const struct net_device *dev)
3732{
3733 return netdev2pinfo(dev)->port_id;
3734}
3735EXPORT_SYMBOL(cxgb4_port_idx);
3736
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003737void cxgb4_get_tcp_stats(struct pci_dev *pdev, struct tp_tcp_stats *v4,
3738 struct tp_tcp_stats *v6)
3739{
3740 struct adapter *adap = pci_get_drvdata(pdev);
3741
3742 spin_lock(&adap->stats_lock);
3743 t4_tp_get_tcp_stats(adap, v4, v6);
3744 spin_unlock(&adap->stats_lock);
3745}
3746EXPORT_SYMBOL(cxgb4_get_tcp_stats);
3747
3748void cxgb4_iscsi_init(struct net_device *dev, unsigned int tag_mask,
3749 const unsigned int *pgsz_order)
3750{
3751 struct adapter *adap = netdev2adap(dev);
3752
3753 t4_write_reg(adap, ULP_RX_ISCSI_TAGMASK, tag_mask);
3754 t4_write_reg(adap, ULP_RX_ISCSI_PSZ, HPZ0(pgsz_order[0]) |
3755 HPZ1(pgsz_order[1]) | HPZ2(pgsz_order[2]) |
3756 HPZ3(pgsz_order[3]));
3757}
3758EXPORT_SYMBOL(cxgb4_iscsi_init);
3759
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303760int cxgb4_flush_eq_cache(struct net_device *dev)
3761{
3762 struct adapter *adap = netdev2adap(dev);
3763 int ret;
3764
3765 ret = t4_fwaddrspace_write(adap, adap->mbox,
3766 0xe1000000 + A_SGE_CTXT_CMD, 0x20000000);
3767 return ret;
3768}
3769EXPORT_SYMBOL(cxgb4_flush_eq_cache);
3770
3771static int read_eq_indices(struct adapter *adap, u16 qid, u16 *pidx, u16 *cidx)
3772{
3773 u32 addr = t4_read_reg(adap, A_SGE_DBQ_CTXT_BADDR) + 24 * qid + 8;
3774 __be64 indices;
3775 int ret;
3776
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05303777 spin_lock(&adap->win0_lock);
3778 ret = t4_memory_rw(adap, 0, MEM_EDC0, addr,
3779 sizeof(indices), (__be32 *)&indices,
3780 T4_MEMORY_READ);
3781 spin_unlock(&adap->win0_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303782 if (!ret) {
Vipul Pandya404d9e32012-10-08 02:59:43 +00003783 *cidx = (be64_to_cpu(indices) >> 25) & 0xffff;
3784 *pidx = (be64_to_cpu(indices) >> 9) & 0xffff;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303785 }
3786 return ret;
3787}
3788
3789int cxgb4_sync_txq_pidx(struct net_device *dev, u16 qid, u16 pidx,
3790 u16 size)
3791{
3792 struct adapter *adap = netdev2adap(dev);
3793 u16 hw_pidx, hw_cidx;
3794 int ret;
3795
3796 ret = read_eq_indices(adap, qid, &hw_pidx, &hw_cidx);
3797 if (ret)
3798 goto out;
3799
3800 if (pidx != hw_pidx) {
3801 u16 delta;
3802
3803 if (pidx >= hw_pidx)
3804 delta = pidx - hw_pidx;
3805 else
3806 delta = size - hw_pidx + pidx;
3807 wmb();
Vipul Pandya840f3002012-09-05 02:01:55 +00003808 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL),
3809 QID(qid) | PIDX(delta));
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303810 }
3811out:
3812 return ret;
3813}
3814EXPORT_SYMBOL(cxgb4_sync_txq_pidx);
3815
Vipul Pandya3cbdb922013-03-14 05:08:59 +00003816void cxgb4_disable_db_coalescing(struct net_device *dev)
3817{
3818 struct adapter *adap;
3819
3820 adap = netdev2adap(dev);
3821 t4_set_reg_field(adap, A_SGE_DOORBELL_CONTROL, F_NOCOALESCE,
3822 F_NOCOALESCE);
3823}
3824EXPORT_SYMBOL(cxgb4_disable_db_coalescing);
3825
3826void cxgb4_enable_db_coalescing(struct net_device *dev)
3827{
3828 struct adapter *adap;
3829
3830 adap = netdev2adap(dev);
3831 t4_set_reg_field(adap, A_SGE_DOORBELL_CONTROL, F_NOCOALESCE, 0);
3832}
3833EXPORT_SYMBOL(cxgb4_enable_db_coalescing);
3834
Hariprasad Shenai031cf472014-07-14 21:34:53 +05303835int cxgb4_read_tpte(struct net_device *dev, u32 stag, __be32 *tpte)
3836{
3837 struct adapter *adap;
3838 u32 offset, memtype, memaddr;
3839 u32 edc0_size, edc1_size, mc0_size, mc1_size;
3840 u32 edc0_end, edc1_end, mc0_end, mc1_end;
3841 int ret;
3842
3843 adap = netdev2adap(dev);
3844
3845 offset = ((stag >> 8) * 32) + adap->vres.stag.start;
3846
3847 /* Figure out where the offset lands in the Memory Type/Address scheme.
3848 * This code assumes that the memory is laid out starting at offset 0
3849 * with no breaks as: EDC0, EDC1, MC0, MC1. All cards have both EDC0
3850 * and EDC1. Some cards will have neither MC0 nor MC1, most cards have
3851 * MC0, and some have both MC0 and MC1.
3852 */
3853 edc0_size = EDRAM_SIZE_GET(t4_read_reg(adap, MA_EDRAM0_BAR)) << 20;
3854 edc1_size = EDRAM_SIZE_GET(t4_read_reg(adap, MA_EDRAM1_BAR)) << 20;
3855 mc0_size = EXT_MEM_SIZE_GET(t4_read_reg(adap, MA_EXT_MEMORY_BAR)) << 20;
3856
3857 edc0_end = edc0_size;
3858 edc1_end = edc0_end + edc1_size;
3859 mc0_end = edc1_end + mc0_size;
3860
3861 if (offset < edc0_end) {
3862 memtype = MEM_EDC0;
3863 memaddr = offset;
3864 } else if (offset < edc1_end) {
3865 memtype = MEM_EDC1;
3866 memaddr = offset - edc0_end;
3867 } else {
3868 if (offset < mc0_end) {
3869 memtype = MEM_MC0;
3870 memaddr = offset - edc1_end;
3871 } else if (is_t4(adap->params.chip)) {
3872 /* T4 only has a single memory channel */
3873 goto err;
3874 } else {
3875 mc1_size = EXT_MEM_SIZE_GET(
3876 t4_read_reg(adap,
3877 MA_EXT_MEMORY1_BAR)) << 20;
3878 mc1_end = mc0_end + mc1_size;
3879 if (offset < mc1_end) {
3880 memtype = MEM_MC1;
3881 memaddr = offset - mc0_end;
3882 } else {
3883 /* offset beyond the end of any memory */
3884 goto err;
3885 }
3886 }
3887 }
3888
3889 spin_lock(&adap->win0_lock);
3890 ret = t4_memory_rw(adap, 0, memtype, memaddr, 32, tpte, T4_MEMORY_READ);
3891 spin_unlock(&adap->win0_lock);
3892 return ret;
3893
3894err:
3895 dev_err(adap->pdev_dev, "stag %#x, offset %#x out of range\n",
3896 stag, offset);
3897 return -EINVAL;
3898}
3899EXPORT_SYMBOL(cxgb4_read_tpte);
3900
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003901static struct pci_driver cxgb4_driver;
3902
3903static void check_neigh_update(struct neighbour *neigh)
3904{
3905 const struct device *parent;
3906 const struct net_device *netdev = neigh->dev;
3907
3908 if (netdev->priv_flags & IFF_802_1Q_VLAN)
3909 netdev = vlan_dev_real_dev(netdev);
3910 parent = netdev->dev.parent;
3911 if (parent && parent->driver == &cxgb4_driver.driver)
3912 t4_l2t_update(dev_get_drvdata(parent), neigh);
3913}
3914
3915static int netevent_cb(struct notifier_block *nb, unsigned long event,
3916 void *data)
3917{
3918 switch (event) {
3919 case NETEVENT_NEIGH_UPDATE:
3920 check_neigh_update(data);
3921 break;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00003922 case NETEVENT_REDIRECT:
3923 default:
3924 break;
3925 }
3926 return 0;
3927}
3928
3929static bool netevent_registered;
3930static struct notifier_block cxgb4_netevent_nb = {
3931 .notifier_call = netevent_cb
3932};
3933
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303934static void drain_db_fifo(struct adapter *adap, int usecs)
3935{
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003936 u32 v1, v2, lp_count, hp_count;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303937
3938 do {
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003939 v1 = t4_read_reg(adap, A_SGE_DBFIFO_STATUS);
3940 v2 = t4_read_reg(adap, SGE_DBFIFO_STATUS2);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05303941 if (is_t4(adap->params.chip)) {
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00003942 lp_count = G_LP_COUNT(v1);
3943 hp_count = G_HP_COUNT(v1);
3944 } else {
3945 lp_count = G_LP_COUNT_T5(v1);
3946 hp_count = G_HP_COUNT_T5(v2);
3947 }
3948
3949 if (lp_count == 0 && hp_count == 0)
3950 break;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303951 set_current_state(TASK_UNINTERRUPTIBLE);
3952 schedule_timeout(usecs_to_jiffies(usecs));
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303953 } while (1);
3954}
3955
3956static void disable_txq_db(struct sge_txq *q)
3957{
Steve Wise05eb2382014-03-14 21:52:08 +05303958 unsigned long flags;
3959
3960 spin_lock_irqsave(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303961 q->db_disabled = 1;
Steve Wise05eb2382014-03-14 21:52:08 +05303962 spin_unlock_irqrestore(&q->db_lock, flags);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303963}
3964
Steve Wise05eb2382014-03-14 21:52:08 +05303965static void enable_txq_db(struct adapter *adap, struct sge_txq *q)
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303966{
3967 spin_lock_irq(&q->db_lock);
Steve Wise05eb2382014-03-14 21:52:08 +05303968 if (q->db_pidx_inc) {
3969 /* Make sure that all writes to the TX descriptors
3970 * are committed before we tell HW about them.
3971 */
3972 wmb();
3973 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL),
3974 QID(q->cntxt_id) | PIDX(q->db_pidx_inc));
3975 q->db_pidx_inc = 0;
3976 }
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303977 q->db_disabled = 0;
3978 spin_unlock_irq(&q->db_lock);
3979}
3980
3981static void disable_dbs(struct adapter *adap)
3982{
3983 int i;
3984
3985 for_each_ethrxq(&adap->sge, i)
3986 disable_txq_db(&adap->sge.ethtxq[i].q);
3987 for_each_ofldrxq(&adap->sge, i)
3988 disable_txq_db(&adap->sge.ofldtxq[i].q);
3989 for_each_port(adap, i)
3990 disable_txq_db(&adap->sge.ctrlq[i].q);
3991}
3992
3993static void enable_dbs(struct adapter *adap)
3994{
3995 int i;
3996
3997 for_each_ethrxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05303998 enable_txq_db(adap, &adap->sge.ethtxq[i].q);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05303999 for_each_ofldrxq(&adap->sge, i)
Steve Wise05eb2382014-03-14 21:52:08 +05304000 enable_txq_db(adap, &adap->sge.ofldtxq[i].q);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304001 for_each_port(adap, i)
Steve Wise05eb2382014-03-14 21:52:08 +05304002 enable_txq_db(adap, &adap->sge.ctrlq[i].q);
4003}
4004
4005static void notify_rdma_uld(struct adapter *adap, enum cxgb4_control cmd)
4006{
4007 if (adap->uld_handle[CXGB4_ULD_RDMA])
4008 ulds[CXGB4_ULD_RDMA].control(adap->uld_handle[CXGB4_ULD_RDMA],
4009 cmd);
4010}
4011
4012static void process_db_full(struct work_struct *work)
4013{
4014 struct adapter *adap;
4015
4016 adap = container_of(work, struct adapter, db_full_task);
4017
4018 drain_db_fifo(adap, dbfifo_drain_delay);
4019 enable_dbs(adap);
4020 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
4021 t4_set_reg_field(adap, SGE_INT_ENABLE3,
4022 DBFIFO_HP_INT | DBFIFO_LP_INT,
4023 DBFIFO_HP_INT | DBFIFO_LP_INT);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304024}
4025
4026static void sync_txq_pidx(struct adapter *adap, struct sge_txq *q)
4027{
4028 u16 hw_pidx, hw_cidx;
4029 int ret;
4030
Steve Wise05eb2382014-03-14 21:52:08 +05304031 spin_lock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304032 ret = read_eq_indices(adap, (u16)q->cntxt_id, &hw_pidx, &hw_cidx);
4033 if (ret)
4034 goto out;
4035 if (q->db_pidx != hw_pidx) {
4036 u16 delta;
4037
4038 if (q->db_pidx >= hw_pidx)
4039 delta = q->db_pidx - hw_pidx;
4040 else
4041 delta = q->size - hw_pidx + q->db_pidx;
4042 wmb();
Vipul Pandya840f3002012-09-05 02:01:55 +00004043 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL),
4044 QID(q->cntxt_id) | PIDX(delta));
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304045 }
4046out:
4047 q->db_disabled = 0;
Steve Wise05eb2382014-03-14 21:52:08 +05304048 q->db_pidx_inc = 0;
4049 spin_unlock_irq(&q->db_lock);
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304050 if (ret)
4051 CH_WARN(adap, "DB drop recovery failed.\n");
4052}
4053static void recover_all_queues(struct adapter *adap)
4054{
4055 int i;
4056
4057 for_each_ethrxq(&adap->sge, i)
4058 sync_txq_pidx(adap, &adap->sge.ethtxq[i].q);
4059 for_each_ofldrxq(&adap->sge, i)
4060 sync_txq_pidx(adap, &adap->sge.ofldtxq[i].q);
4061 for_each_port(adap, i)
4062 sync_txq_pidx(adap, &adap->sge.ctrlq[i].q);
4063}
4064
Vipul Pandya881806b2012-05-18 15:29:24 +05304065static void process_db_drop(struct work_struct *work)
4066{
4067 struct adapter *adap;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304068
Vipul Pandya881806b2012-05-18 15:29:24 +05304069 adap = container_of(work, struct adapter, db_drop_task);
4070
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05304071 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05304072 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00004073 notify_rdma_uld(adap, CXGB4_CONTROL_DB_DROP);
Steve Wise05eb2382014-03-14 21:52:08 +05304074 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00004075 recover_all_queues(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05304076 drain_db_fifo(adap, dbfifo_drain_delay);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00004077 enable_dbs(adap);
Steve Wise05eb2382014-03-14 21:52:08 +05304078 notify_rdma_uld(adap, CXGB4_CONTROL_DB_EMPTY);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00004079 } else {
4080 u32 dropped_db = t4_read_reg(adap, 0x010ac);
4081 u16 qid = (dropped_db >> 15) & 0x1ffff;
4082 u16 pidx_inc = dropped_db & 0x1fff;
4083 unsigned int s_qpp;
4084 unsigned short udb_density;
4085 unsigned long qpshift;
4086 int page;
4087 u32 udb;
4088
4089 dev_warn(adap->pdev_dev,
4090 "Dropped DB 0x%x qid %d bar2 %d coalesce %d pidx %d\n",
4091 dropped_db, qid,
4092 (dropped_db >> 14) & 1,
4093 (dropped_db >> 13) & 1,
4094 pidx_inc);
4095
4096 drain_db_fifo(adap, 1);
4097
4098 s_qpp = QUEUESPERPAGEPF1 * adap->fn;
4099 udb_density = 1 << QUEUESPERPAGEPF0_GET(t4_read_reg(adap,
4100 SGE_EGRESS_QUEUES_PER_PAGE_PF) >> s_qpp);
4101 qpshift = PAGE_SHIFT - ilog2(udb_density);
4102 udb = qid << qpshift;
4103 udb &= PAGE_MASK;
4104 page = udb / PAGE_SIZE;
4105 udb += (qid - (page * udb_density)) * 128;
4106
4107 writel(PIDX(pidx_inc), adap->bar2 + udb + 8);
4108
4109 /* Re-enable BAR2 WC */
4110 t4_set_reg_field(adap, 0x10b0, 1<<15, 1<<15);
4111 }
4112
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304113 t4_set_reg_field(adap, A_SGE_DOORBELL_CONTROL, F_DROPPED_DB, 0);
Vipul Pandya881806b2012-05-18 15:29:24 +05304114}
4115
4116void t4_db_full(struct adapter *adap)
4117{
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05304118 if (is_t4(adap->params.chip)) {
Steve Wise05eb2382014-03-14 21:52:08 +05304119 disable_dbs(adap);
4120 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
Santosh Rastapur2cc301d2013-03-14 05:08:52 +00004121 t4_set_reg_field(adap, SGE_INT_ENABLE3,
4122 DBFIFO_HP_INT | DBFIFO_LP_INT, 0);
4123 queue_work(workq, &adap->db_full_task);
4124 }
Vipul Pandya881806b2012-05-18 15:29:24 +05304125}
4126
4127void t4_db_dropped(struct adapter *adap)
4128{
Steve Wise05eb2382014-03-14 21:52:08 +05304129 if (is_t4(adap->params.chip)) {
4130 disable_dbs(adap);
4131 notify_rdma_uld(adap, CXGB4_CONTROL_DB_FULL);
4132 }
4133 queue_work(workq, &adap->db_drop_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05304134}
4135
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004136static void uld_attach(struct adapter *adap, unsigned int uld)
4137{
4138 void *handle;
4139 struct cxgb4_lld_info lli;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004140 unsigned short i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004141
4142 lli.pdev = adap->pdev;
Hariprasad Shenai35b1de52014-06-27 19:23:47 +05304143 lli.pf = adap->fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004144 lli.l2t = adap->l2t;
4145 lli.tids = &adap->tids;
4146 lli.ports = adap->port;
4147 lli.vr = &adap->vres;
4148 lli.mtus = adap->params.mtus;
4149 if (uld == CXGB4_ULD_RDMA) {
4150 lli.rxq_ids = adap->sge.rdma_rxq;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304151 lli.ciq_ids = adap->sge.rdma_ciq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004152 lli.nrxq = adap->sge.rdmaqs;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05304153 lli.nciq = adap->sge.rdmaciqs;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004154 } else if (uld == CXGB4_ULD_ISCSI) {
4155 lli.rxq_ids = adap->sge.ofld_rxq;
4156 lli.nrxq = adap->sge.ofldqsets;
4157 }
4158 lli.ntxq = adap->sge.ofldqsets;
4159 lli.nchan = adap->params.nports;
4160 lli.nports = adap->params.nports;
4161 lli.wr_cred = adap->params.ofldq_wr_cred;
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05304162 lli.adapter_type = adap->params.chip;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004163 lli.iscsi_iolen = MAXRXDATA_GET(t4_read_reg(adap, TP_PARA_REG2));
4164 lli.udb_density = 1 << QUEUESPERPAGEPF0_GET(
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004165 t4_read_reg(adap, SGE_EGRESS_QUEUES_PER_PAGE_PF) >>
4166 (adap->fn * 4));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004167 lli.ucq_density = 1 << QUEUESPERPAGEPF0_GET(
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004168 t4_read_reg(adap, SGE_INGRESS_QUEUES_PER_PAGE_PF) >>
4169 (adap->fn * 4));
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05304170 lli.filt_mode = adap->params.tp.vlan_pri_map;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004171 /* MODQ_REQ_MAP sets queues 0-3 to chan 0-3 */
4172 for (i = 0; i < NCHAN; i++)
4173 lli.tx_modq[i] = i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004174 lli.gts_reg = adap->regs + MYPF_REG(SGE_PF_GTS);
4175 lli.db_reg = adap->regs + MYPF_REG(SGE_PF_KDOORBELL);
4176 lli.fw_vers = adap->params.fw_vers;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05304177 lli.dbfifo_int_thresh = dbfifo_int_thresh;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +05304178 lli.sge_ingpadboundary = adap->sge.fl_align;
4179 lli.sge_egrstatuspagesize = adap->sge.stat_len;
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004180 lli.sge_pktshift = adap->sge.pktshift;
4181 lli.enable_fw_ofld_conn = adap->flags & FW_OFLD_CONN;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05304182 lli.max_ordird_qp = adap->params.max_ordird_qp;
4183 lli.max_ird_adapter = adap->params.max_ird_adapter;
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05304184 lli.ulptx_memwrite_dsgl = adap->params.ulptx_memwrite_dsgl;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004185
4186 handle = ulds[uld].add(&lli);
4187 if (IS_ERR(handle)) {
4188 dev_warn(adap->pdev_dev,
4189 "could not attach to the %s driver, error %ld\n",
4190 uld_str[uld], PTR_ERR(handle));
4191 return;
4192 }
4193
4194 adap->uld_handle[uld] = handle;
4195
4196 if (!netevent_registered) {
4197 register_netevent_notifier(&cxgb4_netevent_nb);
4198 netevent_registered = true;
4199 }
Dimitris Michailidise29f5db2010-05-18 10:07:13 +00004200
4201 if (adap->flags & FULL_INIT_DONE)
4202 ulds[uld].state_change(handle, CXGB4_STATE_UP);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004203}
4204
4205static void attach_ulds(struct adapter *adap)
4206{
4207 unsigned int i;
4208
Vipul Pandya01bcca62013-07-04 16:10:46 +05304209 spin_lock(&adap_rcu_lock);
4210 list_add_tail_rcu(&adap->rcu_node, &adap_rcu_list);
4211 spin_unlock(&adap_rcu_lock);
4212
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004213 mutex_lock(&uld_mutex);
4214 list_add_tail(&adap->list_node, &adapter_list);
4215 for (i = 0; i < CXGB4_ULD_MAX; i++)
4216 if (ulds[i].add)
4217 uld_attach(adap, i);
4218 mutex_unlock(&uld_mutex);
4219}
4220
4221static void detach_ulds(struct adapter *adap)
4222{
4223 unsigned int i;
4224
4225 mutex_lock(&uld_mutex);
4226 list_del(&adap->list_node);
4227 for (i = 0; i < CXGB4_ULD_MAX; i++)
4228 if (adap->uld_handle[i]) {
4229 ulds[i].state_change(adap->uld_handle[i],
4230 CXGB4_STATE_DETACH);
4231 adap->uld_handle[i] = NULL;
4232 }
4233 if (netevent_registered && list_empty(&adapter_list)) {
4234 unregister_netevent_notifier(&cxgb4_netevent_nb);
4235 netevent_registered = false;
4236 }
4237 mutex_unlock(&uld_mutex);
Vipul Pandya01bcca62013-07-04 16:10:46 +05304238
4239 spin_lock(&adap_rcu_lock);
4240 list_del_rcu(&adap->rcu_node);
4241 spin_unlock(&adap_rcu_lock);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004242}
4243
4244static void notify_ulds(struct adapter *adap, enum cxgb4_state new_state)
4245{
4246 unsigned int i;
4247
4248 mutex_lock(&uld_mutex);
4249 for (i = 0; i < CXGB4_ULD_MAX; i++)
4250 if (adap->uld_handle[i])
4251 ulds[i].state_change(adap->uld_handle[i], new_state);
4252 mutex_unlock(&uld_mutex);
4253}
4254
4255/**
4256 * cxgb4_register_uld - register an upper-layer driver
4257 * @type: the ULD type
4258 * @p: the ULD methods
4259 *
4260 * Registers an upper-layer driver with this driver and notifies the ULD
4261 * about any presently available devices that support its type. Returns
4262 * %-EBUSY if a ULD of the same type is already registered.
4263 */
4264int cxgb4_register_uld(enum cxgb4_uld type, const struct cxgb4_uld_info *p)
4265{
4266 int ret = 0;
4267 struct adapter *adap;
4268
4269 if (type >= CXGB4_ULD_MAX)
4270 return -EINVAL;
4271 mutex_lock(&uld_mutex);
4272 if (ulds[type].add) {
4273 ret = -EBUSY;
4274 goto out;
4275 }
4276 ulds[type] = *p;
4277 list_for_each_entry(adap, &adapter_list, list_node)
4278 uld_attach(adap, type);
4279out: mutex_unlock(&uld_mutex);
4280 return ret;
4281}
4282EXPORT_SYMBOL(cxgb4_register_uld);
4283
4284/**
4285 * cxgb4_unregister_uld - unregister an upper-layer driver
4286 * @type: the ULD type
4287 *
4288 * Unregisters an existing upper-layer driver.
4289 */
4290int cxgb4_unregister_uld(enum cxgb4_uld type)
4291{
4292 struct adapter *adap;
4293
4294 if (type >= CXGB4_ULD_MAX)
4295 return -EINVAL;
4296 mutex_lock(&uld_mutex);
4297 list_for_each_entry(adap, &adapter_list, list_node)
4298 adap->uld_handle[type] = NULL;
4299 ulds[type].add = NULL;
4300 mutex_unlock(&uld_mutex);
4301 return 0;
4302}
4303EXPORT_SYMBOL(cxgb4_unregister_uld);
4304
Vipul Pandya01bcca62013-07-04 16:10:46 +05304305/* Check if netdev on which event is occured belongs to us or not. Return
Li RongQingee9a33b2014-06-20 17:32:36 +08004306 * success (true) if it belongs otherwise failure (false).
4307 * Called with rcu_read_lock() held.
Vipul Pandya01bcca62013-07-04 16:10:46 +05304308 */
Li RongQingee9a33b2014-06-20 17:32:36 +08004309static bool cxgb4_netdev(const struct net_device *netdev)
Vipul Pandya01bcca62013-07-04 16:10:46 +05304310{
4311 struct adapter *adap;
4312 int i;
4313
Vipul Pandya01bcca62013-07-04 16:10:46 +05304314 list_for_each_entry_rcu(adap, &adap_rcu_list, rcu_node)
4315 for (i = 0; i < MAX_NPORTS; i++)
Li RongQingee9a33b2014-06-20 17:32:36 +08004316 if (adap->port[i] == netdev)
4317 return true;
4318 return false;
Vipul Pandya01bcca62013-07-04 16:10:46 +05304319}
4320
4321static int clip_add(struct net_device *event_dev, struct inet6_ifaddr *ifa,
4322 unsigned long event)
4323{
4324 int ret = NOTIFY_DONE;
4325
4326 rcu_read_lock();
4327 if (cxgb4_netdev(event_dev)) {
4328 switch (event) {
4329 case NETDEV_UP:
4330 ret = cxgb4_clip_get(event_dev,
4331 (const struct in6_addr *)ifa->addr.s6_addr);
4332 if (ret < 0) {
4333 rcu_read_unlock();
4334 return ret;
4335 }
4336 ret = NOTIFY_OK;
4337 break;
4338 case NETDEV_DOWN:
4339 cxgb4_clip_release(event_dev,
4340 (const struct in6_addr *)ifa->addr.s6_addr);
4341 ret = NOTIFY_OK;
4342 break;
4343 default:
4344 break;
4345 }
4346 }
4347 rcu_read_unlock();
4348 return ret;
4349}
4350
4351static int cxgb4_inet6addr_handler(struct notifier_block *this,
4352 unsigned long event, void *data)
4353{
4354 struct inet6_ifaddr *ifa = data;
4355 struct net_device *event_dev;
4356 int ret = NOTIFY_DONE;
Vipul Pandya01bcca62013-07-04 16:10:46 +05304357 struct bonding *bond = netdev_priv(ifa->idev->dev);
Veaceslav Falico9caff1e72013-09-25 09:20:14 +02004358 struct list_head *iter;
Vipul Pandya01bcca62013-07-04 16:10:46 +05304359 struct slave *slave;
4360 struct pci_dev *first_pdev = NULL;
4361
4362 if (ifa->idev->dev->priv_flags & IFF_802_1Q_VLAN) {
4363 event_dev = vlan_dev_real_dev(ifa->idev->dev);
4364 ret = clip_add(event_dev, ifa, event);
4365 } else if (ifa->idev->dev->flags & IFF_MASTER) {
4366 /* It is possible that two different adapters are bonded in one
4367 * bond. We need to find such different adapters and add clip
4368 * in all of them only once.
4369 */
4370 read_lock(&bond->lock);
Veaceslav Falico9caff1e72013-09-25 09:20:14 +02004371 bond_for_each_slave(bond, slave, iter) {
Vipul Pandya01bcca62013-07-04 16:10:46 +05304372 if (!first_pdev) {
4373 ret = clip_add(slave->dev, ifa, event);
4374 /* If clip_add is success then only initialize
4375 * first_pdev since it means it is our device
4376 */
4377 if (ret == NOTIFY_OK)
4378 first_pdev = to_pci_dev(
4379 slave->dev->dev.parent);
4380 } else if (first_pdev !=
4381 to_pci_dev(slave->dev->dev.parent))
4382 ret = clip_add(slave->dev, ifa, event);
4383 }
4384 read_unlock(&bond->lock);
4385 } else
4386 ret = clip_add(ifa->idev->dev, ifa, event);
4387
4388 return ret;
4389}
4390
4391static struct notifier_block cxgb4_inet6addr_notifier = {
4392 .notifier_call = cxgb4_inet6addr_handler
4393};
4394
4395/* Retrieves IPv6 addresses from a root device (bond, vlan) associated with
4396 * a physical device.
4397 * The physical device reference is needed to send the actul CLIP command.
4398 */
4399static int update_dev_clip(struct net_device *root_dev, struct net_device *dev)
4400{
4401 struct inet6_dev *idev = NULL;
4402 struct inet6_ifaddr *ifa;
4403 int ret = 0;
4404
4405 idev = __in6_dev_get(root_dev);
4406 if (!idev)
4407 return ret;
4408
4409 read_lock_bh(&idev->lock);
4410 list_for_each_entry(ifa, &idev->addr_list, if_list) {
4411 ret = cxgb4_clip_get(dev,
4412 (const struct in6_addr *)ifa->addr.s6_addr);
4413 if (ret < 0)
4414 break;
4415 }
4416 read_unlock_bh(&idev->lock);
4417
4418 return ret;
4419}
4420
4421static int update_root_dev_clip(struct net_device *dev)
4422{
4423 struct net_device *root_dev = NULL;
4424 int i, ret = 0;
4425
4426 /* First populate the real net device's IPv6 addresses */
4427 ret = update_dev_clip(dev, dev);
4428 if (ret)
4429 return ret;
4430
4431 /* Parse all bond and vlan devices layered on top of the physical dev */
4432 for (i = 0; i < VLAN_N_VID; i++) {
dingtianhongf06c7f9f2014-05-09 14:58:05 +08004433 root_dev = __vlan_find_dev_deep_rcu(dev, htons(ETH_P_8021Q), i);
Vipul Pandya01bcca62013-07-04 16:10:46 +05304434 if (!root_dev)
4435 continue;
4436
4437 ret = update_dev_clip(root_dev, dev);
4438 if (ret)
4439 break;
4440 }
4441 return ret;
4442}
4443
4444static void update_clip(const struct adapter *adap)
4445{
4446 int i;
4447 struct net_device *dev;
4448 int ret;
4449
4450 rcu_read_lock();
4451
4452 for (i = 0; i < MAX_NPORTS; i++) {
4453 dev = adap->port[i];
4454 ret = 0;
4455
4456 if (dev)
4457 ret = update_root_dev_clip(dev);
4458
4459 if (ret < 0)
4460 break;
4461 }
4462 rcu_read_unlock();
4463}
4464
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004465/**
4466 * cxgb_up - enable the adapter
4467 * @adap: adapter being enabled
4468 *
4469 * Called when the first port is enabled, this function performs the
4470 * actions necessary to make an adapter operational, such as completing
4471 * the initialization of HW modules, and enabling interrupts.
4472 *
4473 * Must be called with the rtnl lock held.
4474 */
4475static int cxgb_up(struct adapter *adap)
4476{
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004477 int err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004478
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004479 err = setup_sge_queues(adap);
4480 if (err)
4481 goto out;
4482 err = setup_rss(adap);
4483 if (err)
4484 goto freeq;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004485
4486 if (adap->flags & USING_MSIX) {
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004487 name_msix_vecs(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004488 err = request_irq(adap->msix_info[0].vec, t4_nondata_intr, 0,
4489 adap->msix_info[0].desc, adap);
4490 if (err)
4491 goto irq_err;
4492
4493 err = request_msix_queue_irqs(adap);
4494 if (err) {
4495 free_irq(adap->msix_info[0].vec, adap);
4496 goto irq_err;
4497 }
4498 } else {
4499 err = request_irq(adap->pdev->irq, t4_intr_handler(adap),
4500 (adap->flags & USING_MSI) ? 0 : IRQF_SHARED,
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00004501 adap->port[0]->name, adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004502 if (err)
4503 goto irq_err;
4504 }
4505 enable_rx(adap);
4506 t4_sge_start(adap);
4507 t4_intr_enable(adap);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004508 adap->flags |= FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004509 notify_ulds(adap, CXGB4_STATE_UP);
Vipul Pandya01bcca62013-07-04 16:10:46 +05304510 update_clip(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004511 out:
4512 return err;
4513 irq_err:
4514 dev_err(adap->pdev_dev, "request_irq failed, err %d\n", err);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004515 freeq:
4516 t4_free_sge_resources(adap);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004517 goto out;
4518}
4519
4520static void cxgb_down(struct adapter *adapter)
4521{
4522 t4_intr_disable(adapter);
4523 cancel_work_sync(&adapter->tid_release_task);
Vipul Pandya881806b2012-05-18 15:29:24 +05304524 cancel_work_sync(&adapter->db_full_task);
4525 cancel_work_sync(&adapter->db_drop_task);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004526 adapter->tid_release_task_busy = false;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00004527 adapter->tid_release_head = NULL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004528
4529 if (adapter->flags & USING_MSIX) {
4530 free_msix_queue_irqs(adapter);
4531 free_irq(adapter->msix_info[0].vec, adapter);
4532 } else
4533 free_irq(adapter->pdev->irq, adapter);
4534 quiesce_rx(adapter);
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004535 t4_sge_stop(adapter);
4536 t4_free_sge_resources(adapter);
4537 adapter->flags &= ~FULL_INIT_DONE;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004538}
4539
4540/*
4541 * net_device operations
4542 */
4543static int cxgb_open(struct net_device *dev)
4544{
4545 int err;
4546 struct port_info *pi = netdev_priv(dev);
4547 struct adapter *adapter = pi->adapter;
4548
Dimitris Michailidis6a3c8692011-01-19 15:29:05 +00004549 netif_carrier_off(dev);
4550
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00004551 if (!(adapter->flags & FULL_INIT_DONE)) {
4552 err = cxgb_up(adapter);
4553 if (err < 0)
4554 return err;
4555 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004556
Dimitris Michailidisf68707b2010-06-18 10:05:32 +00004557 err = link_start(dev);
4558 if (!err)
4559 netif_tx_start_all_queues(dev);
4560 return err;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004561}
4562
4563static int cxgb_close(struct net_device *dev)
4564{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004565 struct port_info *pi = netdev_priv(dev);
4566 struct adapter *adapter = pi->adapter;
4567
4568 netif_tx_stop_all_queues(dev);
4569 netif_carrier_off(dev);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004570 return t4_enable_vi(adapter, adapter->fn, pi->viid, false, false);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004571}
4572
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00004573/* Return an error number if the indicated filter isn't writable ...
4574 */
4575static int writable_filter(struct filter_entry *f)
4576{
4577 if (f->locked)
4578 return -EPERM;
4579 if (f->pending)
4580 return -EBUSY;
4581
4582 return 0;
4583}
4584
4585/* Delete the filter at the specified index (if valid). The checks for all
4586 * the common problems with doing this like the filter being locked, currently
4587 * pending in another operation, etc.
4588 */
4589static int delete_filter(struct adapter *adapter, unsigned int fidx)
4590{
4591 struct filter_entry *f;
4592 int ret;
4593
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004594 if (fidx >= adapter->tids.nftids + adapter->tids.nsftids)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00004595 return -EINVAL;
4596
4597 f = &adapter->tids.ftid_tab[fidx];
4598 ret = writable_filter(f);
4599 if (ret)
4600 return ret;
4601 if (f->valid)
4602 return del_filter_wr(adapter, fidx);
4603
4604 return 0;
4605}
4606
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004607int cxgb4_create_server_filter(const struct net_device *dev, unsigned int stid,
Vipul Pandya793dad92012-12-10 09:30:56 +00004608 __be32 sip, __be16 sport, __be16 vlan,
4609 unsigned int queue, unsigned char port, unsigned char mask)
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004610{
4611 int ret;
4612 struct filter_entry *f;
4613 struct adapter *adap;
4614 int i;
4615 u8 *val;
4616
4617 adap = netdev2adap(dev);
4618
Vipul Pandya1cab7752012-12-10 09:30:55 +00004619 /* Adjust stid to correct filter index */
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05304620 stid -= adap->tids.sftid_base;
Vipul Pandya1cab7752012-12-10 09:30:55 +00004621 stid += adap->tids.nftids;
4622
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004623 /* Check to make sure the filter requested is writable ...
4624 */
4625 f = &adap->tids.ftid_tab[stid];
4626 ret = writable_filter(f);
4627 if (ret)
4628 return ret;
4629
4630 /* Clear out any old resources being used by the filter before
4631 * we start constructing the new filter.
4632 */
4633 if (f->valid)
4634 clear_filter(adap, f);
4635
4636 /* Clear out filter specifications */
4637 memset(&f->fs, 0, sizeof(struct ch_filter_specification));
4638 f->fs.val.lport = cpu_to_be16(sport);
4639 f->fs.mask.lport = ~0;
4640 val = (u8 *)&sip;
Vipul Pandya793dad92012-12-10 09:30:56 +00004641 if ((val[0] | val[1] | val[2] | val[3]) != 0) {
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004642 for (i = 0; i < 4; i++) {
4643 f->fs.val.lip[i] = val[i];
4644 f->fs.mask.lip[i] = ~0;
4645 }
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05304646 if (adap->params.tp.vlan_pri_map & F_PORT) {
Vipul Pandya793dad92012-12-10 09:30:56 +00004647 f->fs.val.iport = port;
4648 f->fs.mask.iport = mask;
4649 }
4650 }
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004651
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05304652 if (adap->params.tp.vlan_pri_map & F_PROTOCOL) {
Kumar Sanghvi7c89e552013-12-18 16:38:20 +05304653 f->fs.val.proto = IPPROTO_TCP;
4654 f->fs.mask.proto = ~0;
4655 }
4656
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004657 f->fs.dirsteer = 1;
4658 f->fs.iq = queue;
4659 /* Mark filter as locked */
4660 f->locked = 1;
4661 f->fs.rpttid = 1;
4662
4663 ret = set_filter_wr(adap, stid);
4664 if (ret) {
4665 clear_filter(adap, f);
4666 return ret;
4667 }
4668
4669 return 0;
4670}
4671EXPORT_SYMBOL(cxgb4_create_server_filter);
4672
4673int cxgb4_remove_server_filter(const struct net_device *dev, unsigned int stid,
4674 unsigned int queue, bool ipv6)
4675{
4676 int ret;
4677 struct filter_entry *f;
4678 struct adapter *adap;
4679
4680 adap = netdev2adap(dev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00004681
4682 /* Adjust stid to correct filter index */
Kumar Sanghvi470c60c2013-12-18 16:38:21 +05304683 stid -= adap->tids.sftid_base;
Vipul Pandya1cab7752012-12-10 09:30:55 +00004684 stid += adap->tids.nftids;
4685
Vipul Pandyadca4fae2012-12-10 09:30:53 +00004686 f = &adap->tids.ftid_tab[stid];
4687 /* Unlock the filter */
4688 f->locked = 0;
4689
4690 ret = delete_filter(adap, stid);
4691 if (ret)
4692 return ret;
4693
4694 return 0;
4695}
4696EXPORT_SYMBOL(cxgb4_remove_server_filter);
4697
Dimitris Michailidisf5152c92010-07-07 16:11:25 +00004698static struct rtnl_link_stats64 *cxgb_get_stats(struct net_device *dev,
4699 struct rtnl_link_stats64 *ns)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004700{
4701 struct port_stats stats;
4702 struct port_info *p = netdev_priv(dev);
4703 struct adapter *adapter = p->adapter;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004704
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004705 /* Block retrieving statistics during EEH error
4706 * recovery. Otherwise, the recovery might fail
4707 * and the PCI device will be removed permanently
4708 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004709 spin_lock(&adapter->stats_lock);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08004710 if (!netif_device_present(dev)) {
4711 spin_unlock(&adapter->stats_lock);
4712 return ns;
4713 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004714 t4_get_port_stats(adapter, p->tx_chan, &stats);
4715 spin_unlock(&adapter->stats_lock);
4716
4717 ns->tx_bytes = stats.tx_octets;
4718 ns->tx_packets = stats.tx_frames;
4719 ns->rx_bytes = stats.rx_octets;
4720 ns->rx_packets = stats.rx_frames;
4721 ns->multicast = stats.rx_mcast_frames;
4722
4723 /* detailed rx_errors */
4724 ns->rx_length_errors = stats.rx_jabber + stats.rx_too_long +
4725 stats.rx_runt;
4726 ns->rx_over_errors = 0;
4727 ns->rx_crc_errors = stats.rx_fcs_err;
4728 ns->rx_frame_errors = stats.rx_symbol_err;
4729 ns->rx_fifo_errors = stats.rx_ovflow0 + stats.rx_ovflow1 +
4730 stats.rx_ovflow2 + stats.rx_ovflow3 +
4731 stats.rx_trunc0 + stats.rx_trunc1 +
4732 stats.rx_trunc2 + stats.rx_trunc3;
4733 ns->rx_missed_errors = 0;
4734
4735 /* detailed tx_errors */
4736 ns->tx_aborted_errors = 0;
4737 ns->tx_carrier_errors = 0;
4738 ns->tx_fifo_errors = 0;
4739 ns->tx_heartbeat_errors = 0;
4740 ns->tx_window_errors = 0;
4741
4742 ns->tx_errors = stats.tx_error_frames;
4743 ns->rx_errors = stats.rx_symbol_err + stats.rx_fcs_err +
4744 ns->rx_length_errors + stats.rx_len_err + ns->rx_fifo_errors;
4745 return ns;
4746}
4747
4748static int cxgb_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
4749{
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004750 unsigned int mbox;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004751 int ret = 0, prtad, devad;
4752 struct port_info *pi = netdev_priv(dev);
4753 struct mii_ioctl_data *data = (struct mii_ioctl_data *)&req->ifr_data;
4754
4755 switch (cmd) {
4756 case SIOCGMIIPHY:
4757 if (pi->mdio_addr < 0)
4758 return -EOPNOTSUPP;
4759 data->phy_id = pi->mdio_addr;
4760 break;
4761 case SIOCGMIIREG:
4762 case SIOCSMIIREG:
4763 if (mdio_phy_id_is_c45(data->phy_id)) {
4764 prtad = mdio_phy_id_prtad(data->phy_id);
4765 devad = mdio_phy_id_devad(data->phy_id);
4766 } else if (data->phy_id < 32) {
4767 prtad = data->phy_id;
4768 devad = 0;
4769 data->reg_num &= 0x1f;
4770 } else
4771 return -EINVAL;
4772
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004773 mbox = pi->adapter->fn;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004774 if (cmd == SIOCGMIIREG)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004775 ret = t4_mdio_rd(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004776 data->reg_num, &data->val_out);
4777 else
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004778 ret = t4_mdio_wr(pi->adapter, mbox, prtad, devad,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004779 data->reg_num, data->val_in);
4780 break;
4781 default:
4782 return -EOPNOTSUPP;
4783 }
4784 return ret;
4785}
4786
4787static void cxgb_set_rxmode(struct net_device *dev)
4788{
4789 /* unfortunately we can't return errors to the stack */
4790 set_rxmode(dev, -1, false);
4791}
4792
4793static int cxgb_change_mtu(struct net_device *dev, int new_mtu)
4794{
4795 int ret;
4796 struct port_info *pi = netdev_priv(dev);
4797
4798 if (new_mtu < 81 || new_mtu > MAX_MTU) /* accommodate SACK */
4799 return -EINVAL;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004800 ret = t4_set_rxmode(pi->adapter, pi->adapter->fn, pi->viid, new_mtu, -1,
4801 -1, -1, -1, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004802 if (!ret)
4803 dev->mtu = new_mtu;
4804 return ret;
4805}
4806
4807static int cxgb_set_mac_addr(struct net_device *dev, void *p)
4808{
4809 int ret;
4810 struct sockaddr *addr = p;
4811 struct port_info *pi = netdev_priv(dev);
4812
4813 if (!is_valid_ether_addr(addr->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00004814 return -EADDRNOTAVAIL;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004815
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004816 ret = t4_change_mac(pi->adapter, pi->adapter->fn, pi->viid,
4817 pi->xact_addr_filt, addr->sa_data, true, true);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004818 if (ret < 0)
4819 return ret;
4820
4821 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
4822 pi->xact_addr_filt = ret;
4823 return 0;
4824}
4825
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004826#ifdef CONFIG_NET_POLL_CONTROLLER
4827static void cxgb_netpoll(struct net_device *dev)
4828{
4829 struct port_info *pi = netdev_priv(dev);
4830 struct adapter *adap = pi->adapter;
4831
4832 if (adap->flags & USING_MSIX) {
4833 int i;
4834 struct sge_eth_rxq *rx = &adap->sge.ethrxq[pi->first_qset];
4835
4836 for (i = pi->nqsets; i; i--, rx++)
4837 t4_sge_intr_msix(0, &rx->rspq);
4838 } else
4839 t4_intr_handler(adap)(0, adap);
4840}
4841#endif
4842
4843static const struct net_device_ops cxgb4_netdev_ops = {
4844 .ndo_open = cxgb_open,
4845 .ndo_stop = cxgb_close,
4846 .ndo_start_xmit = t4_eth_xmit,
Anish Bhatt688848b2014-06-19 21:37:13 -07004847 .ndo_select_queue = cxgb_select_queue,
Dimitris Michailidis9be793b2010-06-18 10:05:31 +00004848 .ndo_get_stats64 = cxgb_get_stats,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004849 .ndo_set_rx_mode = cxgb_set_rxmode,
4850 .ndo_set_mac_address = cxgb_set_mac_addr,
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00004851 .ndo_set_features = cxgb_set_features,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004852 .ndo_validate_addr = eth_validate_addr,
4853 .ndo_do_ioctl = cxgb_ioctl,
4854 .ndo_change_mtu = cxgb_change_mtu,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004855#ifdef CONFIG_NET_POLL_CONTROLLER
4856 .ndo_poll_controller = cxgb_netpoll,
4857#endif
4858};
4859
4860void t4_fatal_err(struct adapter *adap)
4861{
4862 t4_set_reg_field(adap, SGE_CONTROL, GLOBALENABLE, 0);
4863 t4_intr_disable(adap);
4864 dev_alert(adap->pdev_dev, "encountered fatal error, adapter stopped\n");
4865}
4866
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304867/* Return the specified PCI-E Configuration Space register from our Physical
4868 * Function. We try first via a Firmware LDST Command since we prefer to let
4869 * the firmware own all of these registers, but if that fails we go for it
4870 * directly ourselves.
4871 */
4872static u32 t4_read_pcie_cfg4(struct adapter *adap, int reg)
4873{
4874 struct fw_ldst_cmd ldst_cmd;
4875 u32 val;
4876 int ret;
4877
4878 /* Construct and send the Firmware LDST Command to retrieve the
4879 * specified PCI-E Configuration Space register.
4880 */
4881 memset(&ldst_cmd, 0, sizeof(ldst_cmd));
4882 ldst_cmd.op_to_addrspace =
4883 htonl(FW_CMD_OP(FW_LDST_CMD) |
4884 FW_CMD_REQUEST |
4885 FW_CMD_READ |
4886 FW_LDST_CMD_ADDRSPACE(FW_LDST_ADDRSPC_FUNC_PCIE));
4887 ldst_cmd.cycles_to_len16 = htonl(FW_LEN16(ldst_cmd));
4888 ldst_cmd.u.pcie.select_naccess = FW_LDST_CMD_NACCESS(1);
4889 ldst_cmd.u.pcie.ctrl_to_fn =
4890 (FW_LDST_CMD_LC | FW_LDST_CMD_FN(adap->fn));
4891 ldst_cmd.u.pcie.r = reg;
4892 ret = t4_wr_mbox(adap, adap->mbox, &ldst_cmd, sizeof(ldst_cmd),
4893 &ldst_cmd);
4894
4895 /* If the LDST Command suucceeded, exctract the returned register
4896 * value. Otherwise read it directly ourself.
4897 */
4898 if (ret == 0)
4899 val = ntohl(ldst_cmd.u.pcie.data[0]);
4900 else
4901 t4_hw_pci_read_cfg4(adap, reg, &val);
4902
4903 return val;
4904}
4905
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004906static void setup_memwin(struct adapter *adap)
4907{
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304908 u32 mem_win0_base, mem_win1_base, mem_win2_base, mem_win2_aperture;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004909
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05304910 if (is_t4(adap->params.chip)) {
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304911 u32 bar0;
4912
4913 /* Truncation intentional: we only read the bottom 32-bits of
4914 * the 64-bit BAR0/BAR1 ... We use the hardware backdoor
4915 * mechanism to read BAR0 instead of using
4916 * pci_resource_start() because we could be operating from
4917 * within a Virtual Machine which is trapping our accesses to
4918 * our Configuration Space and we need to set up the PCI-E
4919 * Memory Window decoders with the actual addresses which will
4920 * be coming across the PCI-E link.
4921 */
4922 bar0 = t4_read_pcie_cfg4(adap, PCI_BASE_ADDRESS_0);
4923 bar0 &= PCI_BASE_ADDRESS_MEM_MASK;
4924 adap->t4_bar0 = bar0;
4925
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004926 mem_win0_base = bar0 + MEMWIN0_BASE;
4927 mem_win1_base = bar0 + MEMWIN1_BASE;
4928 mem_win2_base = bar0 + MEMWIN2_BASE;
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304929 mem_win2_aperture = MEMWIN2_APERTURE;
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004930 } else {
4931 /* For T5, only relative offset inside the PCIe BAR is passed */
4932 mem_win0_base = MEMWIN0_BASE;
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304933 mem_win1_base = MEMWIN1_BASE;
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004934 mem_win2_base = MEMWIN2_BASE_T5;
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304935 mem_win2_aperture = MEMWIN2_APERTURE_T5;
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004936 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004937 t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 0),
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004938 mem_win0_base | BIR(0) |
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004939 WINDOW(ilog2(MEMWIN0_APERTURE) - 10));
4940 t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 1),
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004941 mem_win1_base | BIR(0) |
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004942 WINDOW(ilog2(MEMWIN1_APERTURE) - 10));
4943 t4_write_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 2),
Santosh Rastapur19dd37b2013-03-14 05:08:53 +00004944 mem_win2_base | BIR(0) |
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304945 WINDOW(ilog2(mem_win2_aperture) - 10));
4946 t4_read_reg(adap, PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 2));
Vipul Pandya636f9d32012-09-26 02:39:39 +00004947}
4948
4949static void setup_memwin_rdma(struct adapter *adap)
4950{
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004951 if (adap->vres.ocq.size) {
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304952 u32 start;
4953 unsigned int sz_kb;
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004954
Hariprasad Shenai0abfd152014-06-27 19:23:48 +05304955 start = t4_read_pcie_cfg4(adap, PCI_BASE_ADDRESS_2);
4956 start &= PCI_BASE_ADDRESS_MEM_MASK;
4957 start += OCQ_WIN_OFFSET(adap->pdev, &adap->vres);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00004958 sz_kb = roundup_pow_of_two(adap->vres.ocq.size) >> 10;
4959 t4_write_reg(adap,
4960 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_BASE_WIN, 3),
4961 start | BIR(1) | WINDOW(ilog2(sz_kb)));
4962 t4_write_reg(adap,
4963 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET, 3),
4964 adap->vres.ocq.start);
4965 t4_read_reg(adap,
4966 PCIE_MEM_ACCESS_REG(PCIE_MEM_ACCESS_OFFSET, 3));
4967 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00004968}
4969
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004970static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c)
4971{
4972 u32 v;
4973 int ret;
4974
4975 /* get device capabilities */
4976 memset(c, 0, sizeof(*c));
4977 c->op_to_write = htonl(FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
4978 FW_CMD_REQUEST | FW_CMD_READ);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05304979 c->cfvalid_to_len16 = htonl(FW_LEN16(*c));
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004980 ret = t4_wr_mbox(adap, adap->fn, c, sizeof(*c), c);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004981 if (ret < 0)
4982 return ret;
4983
4984 /* select capabilities we'll be using */
4985 if (c->niccaps & htons(FW_CAPS_CONFIG_NIC_VM)) {
4986 if (!vf_acls)
4987 c->niccaps ^= htons(FW_CAPS_CONFIG_NIC_VM);
4988 else
4989 c->niccaps = htons(FW_CAPS_CONFIG_NIC_VM);
4990 } else if (vf_acls) {
4991 dev_err(adap->pdev_dev, "virtualization ACLs not supported");
4992 return ret;
4993 }
4994 c->op_to_write = htonl(FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
4995 FW_CMD_REQUEST | FW_CMD_WRITE);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00004996 ret = t4_wr_mbox(adap, adap->fn, c, sizeof(*c), NULL);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00004997 if (ret < 0)
4998 return ret;
4999
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00005000 ret = t4_config_glbl_rss(adap, adap->fn,
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00005001 FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL,
5002 FW_RSS_GLB_CONFIG_CMD_TNLMAPEN |
5003 FW_RSS_GLB_CONFIG_CMD_TNLALLLKP);
5004 if (ret < 0)
5005 return ret;
5006
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00005007 ret = t4_cfg_pfvf(adap, adap->fn, adap->fn, 0, MAX_EGRQ, 64, MAX_INGQ,
5008 0, 0, 4, 0xf, 0xf, 16, FW_CMD_CAP_PF, FW_CMD_CAP_PF);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00005009 if (ret < 0)
5010 return ret;
5011
5012 t4_sge_init(adap);
5013
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00005014 /* tweak some settings */
5015 t4_write_reg(adap, TP_SHIFT_CNT, 0x64f8849);
5016 t4_write_reg(adap, ULP_RX_TDDP_PSZ, HPZ0(PAGE_SHIFT - 12));
5017 t4_write_reg(adap, TP_PIO_ADDR, TP_INGRESS_CONFIG);
5018 v = t4_read_reg(adap, TP_PIO_DATA);
5019 t4_write_reg(adap, TP_PIO_DATA, v & ~CSUM_HAS_PSEUDO_HDR);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00005020
Vipul Pandyadca4fae2012-12-10 09:30:53 +00005021 /* first 4 Tx modulation queues point to consecutive Tx channels */
5022 adap->params.tp.tx_modq_map = 0xE4;
5023 t4_write_reg(adap, A_TP_TX_MOD_QUEUE_REQ_MAP,
5024 V_TX_MOD_QUEUE_REQ_MAP(adap->params.tp.tx_modq_map));
5025
5026 /* associate each Tx modulation queue with consecutive Tx channels */
5027 v = 0x84218421;
5028 t4_write_indirect(adap, TP_PIO_ADDR, TP_PIO_DATA,
5029 &v, 1, A_TP_TX_SCHED_HDR);
5030 t4_write_indirect(adap, TP_PIO_ADDR, TP_PIO_DATA,
5031 &v, 1, A_TP_TX_SCHED_FIFO);
5032 t4_write_indirect(adap, TP_PIO_ADDR, TP_PIO_DATA,
5033 &v, 1, A_TP_TX_SCHED_PCMD);
5034
5035#define T4_TX_MODQ_10G_WEIGHT_DEFAULT 16 /* in KB units */
5036 if (is_offload(adap)) {
5037 t4_write_reg(adap, A_TP_TX_MOD_QUEUE_WEIGHT0,
5038 V_TX_MODQ_WEIGHT0(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
5039 V_TX_MODQ_WEIGHT1(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
5040 V_TX_MODQ_WEIGHT2(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
5041 V_TX_MODQ_WEIGHT3(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
5042 t4_write_reg(adap, A_TP_TX_MOD_CHANNEL_WEIGHT,
5043 V_TX_MODQ_WEIGHT0(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
5044 V_TX_MODQ_WEIGHT1(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
5045 V_TX_MODQ_WEIGHT2(T4_TX_MODQ_10G_WEIGHT_DEFAULT) |
5046 V_TX_MODQ_WEIGHT3(T4_TX_MODQ_10G_WEIGHT_DEFAULT));
5047 }
5048
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00005049 /* get basic stuff going */
5050 return t4_early_init(adap, adap->fn);
Dimitris Michailidis02b5fb82010-06-18 10:05:28 +00005051}
5052
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005053/*
5054 * Max # of ATIDs. The absolute HW max is 16K but we keep it lower.
5055 */
5056#define MAX_ATIDS 8192U
5057
5058/*
5059 * Phase 0 of initialization: contact FW, obtain config, perform basic init.
Vipul Pandya636f9d32012-09-26 02:39:39 +00005060 *
5061 * If the firmware we're dealing with has Configuration File support, then
5062 * we use that to perform all configuration
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005063 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00005064
5065/*
5066 * Tweak configuration based on module parameters, etc. Most of these have
5067 * defaults assigned to them by Firmware Configuration Files (if we're using
5068 * them) but need to be explicitly set if we're using hard-coded
5069 * initialization. But even in the case of using Firmware Configuration
5070 * Files, we'd like to expose the ability to change these via module
5071 * parameters so these are essentially common tweaks/settings for
5072 * Configuration Files and hard-coded initialization ...
5073 */
5074static int adap_init0_tweaks(struct adapter *adapter)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005075{
Vipul Pandya636f9d32012-09-26 02:39:39 +00005076 /*
5077 * Fix up various Host-Dependent Parameters like Page Size, Cache
5078 * Line Size, etc. The firmware default is for a 4KB Page Size and
5079 * 64B Cache Line Size ...
5080 */
5081 t4_fixup_host_params(adapter, PAGE_SIZE, L1_CACHE_BYTES);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005082
Vipul Pandya636f9d32012-09-26 02:39:39 +00005083 /*
5084 * Process module parameters which affect early initialization.
5085 */
5086 if (rx_dma_offset != 2 && rx_dma_offset != 0) {
5087 dev_err(&adapter->pdev->dev,
5088 "Ignoring illegal rx_dma_offset=%d, using 2\n",
5089 rx_dma_offset);
5090 rx_dma_offset = 2;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005091 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00005092 t4_set_reg_field(adapter, SGE_CONTROL,
5093 PKTSHIFT_MASK,
5094 PKTSHIFT(rx_dma_offset));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005095
Vipul Pandya636f9d32012-09-26 02:39:39 +00005096 /*
5097 * Don't include the "IP Pseudo Header" in CPL_RX_PKT checksums: Linux
5098 * adds the pseudo header itself.
5099 */
5100 t4_tp_wr_bits_indirect(adapter, TP_INGRESS_CONFIG,
5101 CSUM_HAS_PSEUDO_HDR, 0);
5102
5103 return 0;
5104}
5105
5106/*
5107 * Attempt to initialize the adapter via a Firmware Configuration File.
5108 */
5109static int adap_init0_config(struct adapter *adapter, int reset)
5110{
5111 struct fw_caps_config_cmd caps_cmd;
5112 const struct firmware *cf;
5113 unsigned long mtype = 0, maddr = 0;
5114 u32 finiver, finicsum, cfcsum;
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305115 int ret;
5116 int config_issued = 0;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00005117 char *fw_config_file, fw_config_file_path[256];
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305118 char *config_name = NULL;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005119
5120 /*
5121 * Reset device if necessary.
5122 */
5123 if (reset) {
5124 ret = t4_fw_reset(adapter, adapter->mbox,
5125 PIORSTMODE | PIORST);
5126 if (ret < 0)
5127 goto bye;
5128 }
5129
5130 /*
5131 * If we have a T4 configuration file under /lib/firmware/cxgb4/,
5132 * then use that. Otherwise, use the configuration file stored
5133 * in the adapter flash ...
5134 */
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05305135 switch (CHELSIO_CHIP_VERSION(adapter->params.chip)) {
Santosh Rastapur0a57a532013-03-14 05:08:49 +00005136 case CHELSIO_T4:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305137 fw_config_file = FW4_CFNAME;
Santosh Rastapur0a57a532013-03-14 05:08:49 +00005138 break;
5139 case CHELSIO_T5:
5140 fw_config_file = FW5_CFNAME;
5141 break;
5142 default:
5143 dev_err(adapter->pdev_dev, "Device %d is not supported\n",
5144 adapter->pdev->device);
5145 ret = -EINVAL;
5146 goto bye;
5147 }
5148
5149 ret = request_firmware(&cf, fw_config_file, adapter->pdev_dev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005150 if (ret < 0) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305151 config_name = "On FLASH";
Vipul Pandya636f9d32012-09-26 02:39:39 +00005152 mtype = FW_MEMTYPE_CF_FLASH;
5153 maddr = t4_flash_cfg_addr(adapter);
5154 } else {
5155 u32 params[7], val[7];
5156
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305157 sprintf(fw_config_file_path,
5158 "/lib/firmware/%s", fw_config_file);
5159 config_name = fw_config_file_path;
5160
Vipul Pandya636f9d32012-09-26 02:39:39 +00005161 if (cf->size >= FLASH_CFG_MAX_SIZE)
5162 ret = -ENOMEM;
5163 else {
5164 params[0] = (FW_PARAMS_MNEM(FW_PARAMS_MNEM_DEV) |
5165 FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DEV_CF));
5166 ret = t4_query_params(adapter, adapter->mbox,
5167 adapter->fn, 0, 1, params, val);
5168 if (ret == 0) {
5169 /*
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05305170 * For t4_memory_rw() below addresses and
Vipul Pandya636f9d32012-09-26 02:39:39 +00005171 * sizes have to be in terms of multiples of 4
5172 * bytes. So, if the Configuration File isn't
5173 * a multiple of 4 bytes in length we'll have
5174 * to write that out separately since we can't
5175 * guarantee that the bytes following the
5176 * residual byte in the buffer returned by
5177 * request_firmware() are zeroed out ...
5178 */
5179 size_t resid = cf->size & 0x3;
5180 size_t size = cf->size & ~0x3;
5181 __be32 *data = (__be32 *)cf->data;
5182
5183 mtype = FW_PARAMS_PARAM_Y_GET(val[0]);
5184 maddr = FW_PARAMS_PARAM_Z_GET(val[0]) << 16;
5185
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05305186 spin_lock(&adapter->win0_lock);
5187 ret = t4_memory_rw(adapter, 0, mtype, maddr,
5188 size, data, T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005189 if (ret == 0 && resid != 0) {
5190 union {
5191 __be32 word;
5192 char buf[4];
5193 } last;
5194 int i;
5195
5196 last.word = data[size >> 2];
5197 for (i = resid; i < 4; i++)
5198 last.buf[i] = 0;
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05305199 ret = t4_memory_rw(adapter, 0, mtype,
5200 maddr + size,
5201 4, &last.word,
5202 T4_MEMORY_WRITE);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005203 }
Hariprasad Shenaifc5ab022014-06-27 19:23:49 +05305204 spin_unlock(&adapter->win0_lock);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005205 }
5206 }
5207
5208 release_firmware(cf);
5209 if (ret)
5210 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005211 }
5212
Vipul Pandya636f9d32012-09-26 02:39:39 +00005213 /*
5214 * Issue a Capability Configuration command to the firmware to get it
5215 * to parse the Configuration File. We don't use t4_fw_config_file()
5216 * because we want the ability to modify various features after we've
5217 * processed the configuration file ...
5218 */
5219 memset(&caps_cmd, 0, sizeof(caps_cmd));
5220 caps_cmd.op_to_write =
5221 htonl(FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
5222 FW_CMD_REQUEST |
5223 FW_CMD_READ);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05305224 caps_cmd.cfvalid_to_len16 =
Vipul Pandya636f9d32012-09-26 02:39:39 +00005225 htonl(FW_CAPS_CONFIG_CMD_CFVALID |
5226 FW_CAPS_CONFIG_CMD_MEMTYPE_CF(mtype) |
5227 FW_CAPS_CONFIG_CMD_MEMADDR64K_CF(maddr >> 16) |
5228 FW_LEN16(caps_cmd));
5229 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
5230 &caps_cmd);
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305231
5232 /* If the CAPS_CONFIG failed with an ENOENT (for a Firmware
5233 * Configuration File in FLASH), our last gasp effort is to use the
5234 * Firmware Configuration File which is embedded in the firmware. A
5235 * very few early versions of the firmware didn't have one embedded
5236 * but we can ignore those.
5237 */
5238 if (ret == -ENOENT) {
5239 memset(&caps_cmd, 0, sizeof(caps_cmd));
5240 caps_cmd.op_to_write =
5241 htonl(FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
5242 FW_CMD_REQUEST |
5243 FW_CMD_READ);
5244 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
5245 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd,
5246 sizeof(caps_cmd), &caps_cmd);
5247 config_name = "Firmware Default";
5248 }
5249
5250 config_issued = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005251 if (ret < 0)
5252 goto bye;
5253
Vipul Pandya636f9d32012-09-26 02:39:39 +00005254 finiver = ntohl(caps_cmd.finiver);
5255 finicsum = ntohl(caps_cmd.finicsum);
5256 cfcsum = ntohl(caps_cmd.cfcsum);
5257 if (finicsum != cfcsum)
5258 dev_warn(adapter->pdev_dev, "Configuration File checksum "\
5259 "mismatch: [fini] csum=%#x, computed csum=%#x\n",
5260 finicsum, cfcsum);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005261
Vipul Pandya636f9d32012-09-26 02:39:39 +00005262 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00005263 * And now tell the firmware to use the configuration we just loaded.
5264 */
5265 caps_cmd.op_to_write =
5266 htonl(FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
5267 FW_CMD_REQUEST |
5268 FW_CMD_WRITE);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05305269 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00005270 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
5271 NULL);
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00005272 if (ret < 0)
5273 goto bye;
5274
Vipul Pandya636f9d32012-09-26 02:39:39 +00005275 /*
5276 * Tweak configuration based on system architecture, module
5277 * parameters, etc.
5278 */
5279 ret = adap_init0_tweaks(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005280 if (ret < 0)
5281 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005282
Vipul Pandya636f9d32012-09-26 02:39:39 +00005283 /*
5284 * And finally tell the firmware to initialize itself using the
5285 * parameters from the Configuration File.
5286 */
5287 ret = t4_fw_initialize(adapter, adapter->mbox);
5288 if (ret < 0)
5289 goto bye;
5290
5291 /*
5292 * Return successfully and note that we're operating with parameters
5293 * not supplied by the driver, rather than from hard-wired
5294 * initialization constants burried in the driver.
5295 */
5296 adapter->flags |= USING_SOFT_PARAMS;
5297 dev_info(adapter->pdev_dev, "Successfully configured using Firmware "\
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305298 "Configuration File \"%s\", version %#x, computed checksum %#x\n",
5299 config_name, finiver, cfcsum);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005300 return 0;
5301
5302 /*
5303 * Something bad happened. Return the error ... (If the "error"
5304 * is that there's no Configuration File on the adapter we don't
5305 * want to issue a warning since this is fairly common.)
5306 */
5307bye:
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305308 if (config_issued && ret != -ENOENT)
5309 dev_warn(adapter->pdev_dev, "\"%s\" configuration file error %d\n",
5310 config_name, -ret);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005311 return ret;
5312}
5313
5314/*
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005315 * Attempt to initialize the adapter via hard-coded, driver supplied
5316 * parameters ...
5317 */
5318static int adap_init0_no_config(struct adapter *adapter, int reset)
5319{
5320 struct sge *s = &adapter->sge;
5321 struct fw_caps_config_cmd caps_cmd;
5322 u32 v;
5323 int i, ret;
5324
5325 /*
5326 * Reset device if necessary
5327 */
5328 if (reset) {
5329 ret = t4_fw_reset(adapter, adapter->mbox,
5330 PIORSTMODE | PIORST);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005331 if (ret < 0)
5332 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005333 }
Dimitris Michailidisa0881ca2010-06-18 10:05:34 +00005334
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005335 /*
5336 * Get device capabilities and select which we'll be using.
5337 */
5338 memset(&caps_cmd, 0, sizeof(caps_cmd));
5339 caps_cmd.op_to_write = htonl(FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
5340 FW_CMD_REQUEST | FW_CMD_READ);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05305341 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005342 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
5343 &caps_cmd);
5344 if (ret < 0)
5345 goto bye;
5346
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005347 if (caps_cmd.niccaps & htons(FW_CAPS_CONFIG_NIC_VM)) {
5348 if (!vf_acls)
5349 caps_cmd.niccaps ^= htons(FW_CAPS_CONFIG_NIC_VM);
5350 else
5351 caps_cmd.niccaps = htons(FW_CAPS_CONFIG_NIC_VM);
5352 } else if (vf_acls) {
5353 dev_err(adapter->pdev_dev, "virtualization ACLs not supported");
5354 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005355 }
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005356 caps_cmd.op_to_write = htonl(FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
5357 FW_CMD_REQUEST | FW_CMD_WRITE);
5358 ret = t4_wr_mbox(adapter, adapter->mbox, &caps_cmd, sizeof(caps_cmd),
5359 NULL);
5360 if (ret < 0)
5361 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005362
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005363 /*
5364 * Tweak configuration based on system architecture, module
5365 * parameters, etc.
5366 */
5367 ret = adap_init0_tweaks(adapter);
5368 if (ret < 0)
5369 goto bye;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005370
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005371 /*
5372 * Select RSS Global Mode we want to use. We use "Basic Virtual"
5373 * mode which maps each Virtual Interface to its own section of
5374 * the RSS Table and we turn on all map and hash enables ...
5375 */
5376 adapter->flags |= RSS_TNLALLLOOKUP;
5377 ret = t4_config_glbl_rss(adapter, adapter->mbox,
5378 FW_RSS_GLB_CONFIG_CMD_MODE_BASICVIRTUAL,
5379 FW_RSS_GLB_CONFIG_CMD_TNLMAPEN |
5380 FW_RSS_GLB_CONFIG_CMD_HASHTOEPLITZ |
5381 ((adapter->flags & RSS_TNLALLLOOKUP) ?
5382 FW_RSS_GLB_CONFIG_CMD_TNLALLLKP : 0));
5383 if (ret < 0)
5384 goto bye;
5385
5386 /*
5387 * Set up our own fundamental resource provisioning ...
5388 */
5389 ret = t4_cfg_pfvf(adapter, adapter->mbox, adapter->fn, 0,
5390 PFRES_NEQ, PFRES_NETHCTRL,
5391 PFRES_NIQFLINT, PFRES_NIQ,
5392 PFRES_TC, PFRES_NVI,
5393 FW_PFVF_CMD_CMASK_MASK,
5394 pfvfres_pmask(adapter, adapter->fn, 0),
5395 PFRES_NEXACTF,
5396 PFRES_R_CAPS, PFRES_WX_CAPS);
5397 if (ret < 0)
5398 goto bye;
5399
5400 /*
5401 * Perform low level SGE initialization. We need to do this before we
5402 * send the firmware the INITIALIZE command because that will cause
5403 * any other PF Drivers which are waiting for the Master
5404 * Initialization to proceed forward.
5405 */
5406 for (i = 0; i < SGE_NTIMERS - 1; i++)
5407 s->timer_val[i] = min(intr_holdoff[i], MAX_SGE_TIMERVAL);
5408 s->timer_val[SGE_NTIMERS - 1] = MAX_SGE_TIMERVAL;
5409 s->counter_val[0] = 1;
5410 for (i = 1; i < SGE_NCOUNTERS; i++)
5411 s->counter_val[i] = min(intr_cnt[i - 1],
5412 THRESHOLD_0_GET(THRESHOLD_0_MASK));
5413 t4_sge_init(adapter);
Casey Leedom7ee9ff92010-06-25 12:11:46 +00005414
5415#ifdef CONFIG_PCI_IOV
5416 /*
5417 * Provision resource limits for Virtual Functions. We currently
5418 * grant them all the same static resource limits except for the Port
5419 * Access Rights Mask which we're assigning based on the PF. All of
5420 * the static provisioning stuff for both the PF and VF really needs
5421 * to be managed in a persistent manner for each device which the
5422 * firmware controls.
5423 */
5424 {
5425 int pf, vf;
5426
Santosh Rastapur7d6727c2013-03-14 05:08:56 +00005427 for (pf = 0; pf < ARRAY_SIZE(num_vf); pf++) {
Casey Leedom7ee9ff92010-06-25 12:11:46 +00005428 if (num_vf[pf] <= 0)
5429 continue;
5430
5431 /* VF numbering starts at 1! */
5432 for (vf = 1; vf <= num_vf[pf]; vf++) {
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005433 ret = t4_cfg_pfvf(adapter, adapter->mbox,
5434 pf, vf,
Casey Leedom7ee9ff92010-06-25 12:11:46 +00005435 VFRES_NEQ, VFRES_NETHCTRL,
5436 VFRES_NIQFLINT, VFRES_NIQ,
5437 VFRES_TC, VFRES_NVI,
Vipul Pandya1f1e4952013-01-09 07:42:49 +00005438 FW_PFVF_CMD_CMASK_MASK,
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005439 pfvfres_pmask(
5440 adapter, pf, vf),
Casey Leedom7ee9ff92010-06-25 12:11:46 +00005441 VFRES_NEXACTF,
5442 VFRES_R_CAPS, VFRES_WX_CAPS);
5443 if (ret < 0)
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005444 dev_warn(adapter->pdev_dev,
5445 "failed to "\
Casey Leedom7ee9ff92010-06-25 12:11:46 +00005446 "provision pf/vf=%d/%d; "
5447 "err=%d\n", pf, vf, ret);
5448 }
5449 }
5450 }
5451#endif
5452
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005453 /*
5454 * Set up the default filter mode. Later we'll want to implement this
5455 * via a firmware command, etc. ... This needs to be done before the
5456 * firmare initialization command ... If the selected set of fields
5457 * isn't equal to the default value, we'll need to make sure that the
5458 * field selections will fit in the 36-bit budget.
5459 */
5460 if (tp_vlan_pri_map != TP_VLAN_PRI_MAP_DEFAULT) {
Vipul Pandya404d9e32012-10-08 02:59:43 +00005461 int j, bits = 0;
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005462
Vipul Pandya404d9e32012-10-08 02:59:43 +00005463 for (j = TP_VLAN_PRI_MAP_FIRST; j <= TP_VLAN_PRI_MAP_LAST; j++)
5464 switch (tp_vlan_pri_map & (1 << j)) {
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005465 case 0:
5466 /* compressed filter field not enabled */
5467 break;
5468 case FCOE_MASK:
5469 bits += 1;
5470 break;
5471 case PORT_MASK:
5472 bits += 3;
5473 break;
5474 case VNIC_ID_MASK:
5475 bits += 17;
5476 break;
5477 case VLAN_MASK:
5478 bits += 17;
5479 break;
5480 case TOS_MASK:
5481 bits += 8;
5482 break;
5483 case PROTOCOL_MASK:
5484 bits += 8;
5485 break;
5486 case ETHERTYPE_MASK:
5487 bits += 16;
5488 break;
5489 case MACMATCH_MASK:
5490 bits += 9;
5491 break;
5492 case MPSHITTYPE_MASK:
5493 bits += 3;
5494 break;
5495 case FRAGMENTATION_MASK:
5496 bits += 1;
5497 break;
5498 }
5499
5500 if (bits > 36) {
5501 dev_err(adapter->pdev_dev,
5502 "tp_vlan_pri_map=%#x needs %d bits > 36;"\
5503 " using %#x\n", tp_vlan_pri_map, bits,
5504 TP_VLAN_PRI_MAP_DEFAULT);
5505 tp_vlan_pri_map = TP_VLAN_PRI_MAP_DEFAULT;
5506 }
5507 }
5508 v = tp_vlan_pri_map;
5509 t4_write_indirect(adapter, TP_PIO_ADDR, TP_PIO_DATA,
5510 &v, 1, TP_VLAN_PRI_MAP);
5511
5512 /*
5513 * We need Five Tuple Lookup mode to be set in TP_GLOBAL_CONFIG order
5514 * to support any of the compressed filter fields above. Newer
5515 * versions of the firmware do this automatically but it doesn't hurt
5516 * to set it here. Meanwhile, we do _not_ need to set Lookup Every
5517 * Packet in TP_INGRESS_CONFIG to support matching non-TCP packets
5518 * since the firmware automatically turns this on and off when we have
5519 * a non-zero number of filters active (since it does have a
5520 * performance impact).
5521 */
5522 if (tp_vlan_pri_map)
5523 t4_set_reg_field(adapter, TP_GLOBAL_CONFIG,
5524 FIVETUPLELOOKUP_MASK,
5525 FIVETUPLELOOKUP_MASK);
5526
5527 /*
5528 * Tweak some settings.
5529 */
5530 t4_write_reg(adapter, TP_SHIFT_CNT, SYNSHIFTMAX(6) |
5531 RXTSHIFTMAXR1(4) | RXTSHIFTMAXR2(15) |
5532 PERSHIFTBACKOFFMAX(8) | PERSHIFTMAX(8) |
5533 KEEPALIVEMAXR1(4) | KEEPALIVEMAXR2(9));
5534
5535 /*
5536 * Get basic stuff going by issuing the Firmware Initialize command.
5537 * Note that this _must_ be after all PFVF commands ...
5538 */
5539 ret = t4_fw_initialize(adapter, adapter->mbox);
5540 if (ret < 0)
5541 goto bye;
5542
5543 /*
5544 * Return successfully!
5545 */
5546 dev_info(adapter->pdev_dev, "Successfully configured using built-in "\
5547 "driver parameters\n");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005548 return 0;
5549
5550 /*
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005551 * Something bad happened. Return the error ...
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005552 */
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005553bye:
5554 return ret;
5555}
5556
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305557static struct fw_info fw_info_array[] = {
5558 {
5559 .chip = CHELSIO_T4,
5560 .fs_name = FW4_CFNAME,
5561 .fw_mod_name = FW4_FNAME,
5562 .fw_hdr = {
5563 .chip = FW_HDR_CHIP_T4,
5564 .fw_ver = __cpu_to_be32(FW_VERSION(T4)),
5565 .intfver_nic = FW_INTFVER(T4, NIC),
5566 .intfver_vnic = FW_INTFVER(T4, VNIC),
5567 .intfver_ri = FW_INTFVER(T4, RI),
5568 .intfver_iscsi = FW_INTFVER(T4, ISCSI),
5569 .intfver_fcoe = FW_INTFVER(T4, FCOE),
5570 },
5571 }, {
5572 .chip = CHELSIO_T5,
5573 .fs_name = FW5_CFNAME,
5574 .fw_mod_name = FW5_FNAME,
5575 .fw_hdr = {
5576 .chip = FW_HDR_CHIP_T5,
5577 .fw_ver = __cpu_to_be32(FW_VERSION(T5)),
5578 .intfver_nic = FW_INTFVER(T5, NIC),
5579 .intfver_vnic = FW_INTFVER(T5, VNIC),
5580 .intfver_ri = FW_INTFVER(T5, RI),
5581 .intfver_iscsi = FW_INTFVER(T5, ISCSI),
5582 .intfver_fcoe = FW_INTFVER(T5, FCOE),
5583 },
5584 }
5585};
5586
5587static struct fw_info *find_fw_info(int chip)
5588{
5589 int i;
5590
5591 for (i = 0; i < ARRAY_SIZE(fw_info_array); i++) {
5592 if (fw_info_array[i].chip == chip)
5593 return &fw_info_array[i];
5594 }
5595 return NULL;
5596}
5597
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005598/*
Vipul Pandya636f9d32012-09-26 02:39:39 +00005599 * Phase 0 of initialization: contact FW, obtain config, perform basic init.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005600 */
5601static int adap_init0(struct adapter *adap)
5602{
5603 int ret;
5604 u32 v, port_vec;
5605 enum dev_state state;
5606 u32 params[7], val[7];
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00005607 struct fw_caps_config_cmd caps_cmd;
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05305608 int reset = 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005609
Vipul Pandya636f9d32012-09-26 02:39:39 +00005610 /*
5611 * Contact FW, advertising Master capability (and potentially forcing
5612 * ourselves as the Master PF if our module parameter force_init is
5613 * set).
5614 */
5615 ret = t4_fw_hello(adap, adap->mbox, adap->fn,
5616 force_init ? MASTER_MUST : MASTER_MAY,
5617 &state);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005618 if (ret < 0) {
5619 dev_err(adap->pdev_dev, "could not connect to FW, error %d\n",
5620 ret);
5621 return ret;
5622 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00005623 if (ret == adap->mbox)
5624 adap->flags |= MASTER_PF;
5625 if (force_init && state == DEV_STATE_INIT)
5626 state = DEV_STATE_UNINIT;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005627
Vipul Pandya636f9d32012-09-26 02:39:39 +00005628 /*
5629 * If we're the Master PF Driver and the device is uninitialized,
5630 * then let's consider upgrading the firmware ... (We always want
5631 * to check the firmware version number in order to A. get it for
5632 * later reporting and B. to warn if the currently loaded firmware
5633 * is excessively mismatched relative to the driver.)
5634 */
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305635 t4_get_fw_version(adap, &adap->params.fw_vers);
5636 t4_get_tp_version(adap, &adap->params.tp_vers);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005637 if ((adap->flags & MASTER_PF) && state != DEV_STATE_INIT) {
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305638 struct fw_info *fw_info;
5639 struct fw_hdr *card_fw;
5640 const struct firmware *fw;
5641 const u8 *fw_data = NULL;
5642 unsigned int fw_size = 0;
5643
5644 /* This is the firmware whose headers the driver was compiled
5645 * against
5646 */
5647 fw_info = find_fw_info(CHELSIO_CHIP_VERSION(adap->params.chip));
5648 if (fw_info == NULL) {
5649 dev_err(adap->pdev_dev,
5650 "unable to get firmware info for chip %d.\n",
5651 CHELSIO_CHIP_VERSION(adap->params.chip));
5652 return -EINVAL;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005653 }
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305654
5655 /* allocate memory to read the header of the firmware on the
5656 * card
5657 */
5658 card_fw = t4_alloc_mem(sizeof(*card_fw));
5659
5660 /* Get FW from from /lib/firmware/ */
5661 ret = request_firmware(&fw, fw_info->fw_mod_name,
5662 adap->pdev_dev);
5663 if (ret < 0) {
5664 dev_err(adap->pdev_dev,
5665 "unable to load firmware image %s, error %d\n",
5666 fw_info->fw_mod_name, ret);
5667 } else {
5668 fw_data = fw->data;
5669 fw_size = fw->size;
5670 }
5671
5672 /* upgrade FW logic */
5673 ret = t4_prep_fw(adap, fw_info, fw_data, fw_size, card_fw,
5674 state, &reset);
5675
5676 /* Cleaning up */
5677 if (fw != NULL)
5678 release_firmware(fw);
5679 t4_free_mem(card_fw);
5680
Vipul Pandya636f9d32012-09-26 02:39:39 +00005681 if (ret < 0)
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305682 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005683 }
5684
5685 /*
5686 * Grab VPD parameters. This should be done after we establish a
5687 * connection to the firmware since some of the VPD parameters
5688 * (notably the Core Clock frequency) are retrieved via requests to
5689 * the firmware. On the other hand, we need these fairly early on
5690 * so we do this right after getting ahold of the firmware.
5691 */
5692 ret = get_vpd_params(adap, &adap->params.vpd);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005693 if (ret < 0)
5694 goto bye;
5695
Vipul Pandya636f9d32012-09-26 02:39:39 +00005696 /*
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005697 * Find out what ports are available to us. Note that we need to do
5698 * this before calling adap_init0_no_config() since it needs nports
5699 * and portvec ...
Vipul Pandya636f9d32012-09-26 02:39:39 +00005700 */
5701 v =
5702 FW_PARAMS_MNEM(FW_PARAMS_MNEM_DEV) |
5703 FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DEV_PORTVEC);
5704 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 1, &v, &port_vec);
5705 if (ret < 0)
5706 goto bye;
5707
5708 adap->params.nports = hweight32(port_vec);
5709 adap->params.portvec = port_vec;
5710
5711 /*
5712 * If the firmware is initialized already (and we're not forcing a
5713 * master initialization), note that we're living with existing
5714 * adapter parameters. Otherwise, it's time to try initializing the
5715 * adapter ...
5716 */
5717 if (state == DEV_STATE_INIT) {
5718 dev_info(adap->pdev_dev, "Coming up as %s: "\
5719 "Adapter already initialized\n",
5720 adap->flags & MASTER_PF ? "MASTER" : "SLAVE");
5721 adap->flags |= USING_SOFT_PARAMS;
5722 } else {
5723 dev_info(adap->pdev_dev, "Coming up as MASTER: "\
5724 "Initializing adapter\n");
Vipul Pandya636f9d32012-09-26 02:39:39 +00005725
5726 /*
5727 * If the firmware doesn't support Configuration
5728 * Files warn user and exit,
5729 */
5730 if (ret < 0)
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005731 dev_warn(adap->pdev_dev, "Firmware doesn't support "
Vipul Pandya636f9d32012-09-26 02:39:39 +00005732 "configuration file.\n");
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005733 if (force_old_init)
5734 ret = adap_init0_no_config(adap, reset);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005735 else {
5736 /*
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005737 * Find out whether we're dealing with a version of
5738 * the firmware which has configuration file support.
Vipul Pandya636f9d32012-09-26 02:39:39 +00005739 */
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005740 params[0] = (FW_PARAMS_MNEM(FW_PARAMS_MNEM_DEV) |
5741 FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DEV_CF));
5742 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 1,
5743 params, val);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005744
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005745 /*
5746 * If the firmware doesn't support Configuration
5747 * Files, use the old Driver-based, hard-wired
5748 * initialization. Otherwise, try using the
5749 * Configuration File support and fall back to the
5750 * Driver-based initialization if there's no
5751 * Configuration File found.
5752 */
5753 if (ret < 0)
5754 ret = adap_init0_no_config(adap, reset);
5755 else {
5756 /*
5757 * The firmware provides us with a memory
5758 * buffer where we can load a Configuration
5759 * File from the host if we want to override
5760 * the Configuration File in flash.
5761 */
5762
5763 ret = adap_init0_config(adap, reset);
5764 if (ret == -ENOENT) {
5765 dev_info(adap->pdev_dev,
5766 "No Configuration File present "
Hariprasad Shenai16e47622013-12-03 17:05:58 +05305767 "on adapter. Using hard-wired "
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005768 "configuration parameters.\n");
5769 ret = adap_init0_no_config(adap, reset);
5770 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00005771 }
5772 }
5773 if (ret < 0) {
5774 dev_err(adap->pdev_dev,
5775 "could not initialize adapter, error %d\n",
5776 -ret);
5777 goto bye;
5778 }
5779 }
5780
5781 /*
5782 * If we're living with non-hard-coded parameters (either from a
5783 * Firmware Configuration File or values programmed by a different PF
5784 * Driver), give the SGE code a chance to pull in anything that it
5785 * needs ... Note that this must be called after we retrieve our VPD
5786 * parameters in order to know how to convert core ticks to seconds.
5787 */
5788 if (adap->flags & USING_SOFT_PARAMS) {
5789 ret = t4_sge_init(adap);
5790 if (ret < 0)
5791 goto bye;
5792 }
5793
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00005794 if (is_bypass_device(adap->pdev->device))
5795 adap->params.bypass = 1;
5796
Vipul Pandya636f9d32012-09-26 02:39:39 +00005797 /*
5798 * Grab some of our basic fundamental operating parameters.
5799 */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005800#define FW_PARAM_DEV(param) \
5801 (FW_PARAMS_MNEM(FW_PARAMS_MNEM_DEV) | \
Vipul Pandya636f9d32012-09-26 02:39:39 +00005802 FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_DEV_##param))
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005803
5804#define FW_PARAM_PFVF(param) \
Vipul Pandya636f9d32012-09-26 02:39:39 +00005805 FW_PARAMS_MNEM(FW_PARAMS_MNEM_PFVF) | \
5806 FW_PARAMS_PARAM_X(FW_PARAMS_PARAM_PFVF_##param)| \
5807 FW_PARAMS_PARAM_Y(0) | \
5808 FW_PARAMS_PARAM_Z(0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005809
Vipul Pandya636f9d32012-09-26 02:39:39 +00005810 params[0] = FW_PARAM_PFVF(EQ_START);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005811 params[1] = FW_PARAM_PFVF(L2T_START);
5812 params[2] = FW_PARAM_PFVF(L2T_END);
5813 params[3] = FW_PARAM_PFVF(FILTER_START);
5814 params[4] = FW_PARAM_PFVF(FILTER_END);
5815 params[5] = FW_PARAM_PFVF(IQFLINT_START);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005816 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6, params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005817 if (ret < 0)
5818 goto bye;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005819 adap->sge.egr_start = val[0];
5820 adap->l2t_start = val[1];
5821 adap->l2t_end = val[2];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005822 adap->tids.ftid_base = val[3];
5823 adap->tids.nftids = val[4] - val[3] + 1;
5824 adap->sge.ingr_start = val[5];
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005825
Vipul Pandya636f9d32012-09-26 02:39:39 +00005826 /* query params related to active filter region */
5827 params[0] = FW_PARAM_PFVF(ACTIVE_FILTER_START);
5828 params[1] = FW_PARAM_PFVF(ACTIVE_FILTER_END);
5829 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2, params, val);
5830 /* If Active filter size is set we enable establishing
5831 * offload connection through firmware work request
5832 */
5833 if ((val[0] != val[1]) && (ret >= 0)) {
5834 adap->flags |= FW_OFLD_CONN;
5835 adap->tids.aftid_base = val[0];
5836 adap->tids.aftid_end = val[1];
5837 }
5838
Vipul Pandyab407a4a2013-04-29 04:04:40 +00005839 /* If we're running on newer firmware, let it know that we're
5840 * prepared to deal with encapsulated CPL messages. Older
5841 * firmware won't understand this and we'll just get
5842 * unencapsulated messages ...
5843 */
5844 params[0] = FW_PARAM_PFVF(CPLFW4MSG_ENCAP);
5845 val[0] = 1;
5846 (void) t4_set_params(adap, adap->mbox, adap->fn, 0, 1, params, val);
5847
Vipul Pandya636f9d32012-09-26 02:39:39 +00005848 /*
Kumar Sanghvi1ac0f092014-02-18 17:56:12 +05305849 * Find out whether we're allowed to use the T5+ ULPTX MEMWRITE DSGL
5850 * capability. Earlier versions of the firmware didn't have the
5851 * ULPTX_MEMWRITE_DSGL so we'll interpret a query failure as no
5852 * permission to use ULPTX MEMWRITE DSGL.
5853 */
5854 if (is_t4(adap->params.chip)) {
5855 adap->params.ulptx_memwrite_dsgl = false;
5856 } else {
5857 params[0] = FW_PARAM_DEV(ULPTX_MEMWRITE_DSGL);
5858 ret = t4_query_params(adap, adap->mbox, adap->fn, 0,
5859 1, params, val);
5860 adap->params.ulptx_memwrite_dsgl = (ret == 0 && val[0] != 0);
5861 }
5862
5863 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00005864 * Get device capabilities so we can determine what resources we need
5865 * to manage.
5866 */
5867 memset(&caps_cmd, 0, sizeof(caps_cmd));
Vipul Pandya9a4da2c2012-10-19 02:09:53 +00005868 caps_cmd.op_to_write = htonl(FW_CMD_OP(FW_CAPS_CONFIG_CMD) |
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005869 FW_CMD_REQUEST | FW_CMD_READ);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05305870 caps_cmd.cfvalid_to_len16 = htonl(FW_LEN16(caps_cmd));
Vipul Pandya636f9d32012-09-26 02:39:39 +00005871 ret = t4_wr_mbox(adap, adap->mbox, &caps_cmd, sizeof(caps_cmd),
5872 &caps_cmd);
5873 if (ret < 0)
5874 goto bye;
5875
Vipul Pandya13ee15d2012-09-26 02:39:40 +00005876 if (caps_cmd.ofldcaps) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005877 /* query offload-related parameters */
5878 params[0] = FW_PARAM_DEV(NTID);
5879 params[1] = FW_PARAM_PFVF(SERVER_START);
5880 params[2] = FW_PARAM_PFVF(SERVER_END);
5881 params[3] = FW_PARAM_PFVF(TDDP_START);
5882 params[4] = FW_PARAM_PFVF(TDDP_END);
5883 params[5] = FW_PARAM_DEV(FLOWC_BUFFIFO_SZ);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005884 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6,
5885 params, val);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005886 if (ret < 0)
5887 goto bye;
5888 adap->tids.ntids = val[0];
5889 adap->tids.natids = min(adap->tids.ntids / 2, MAX_ATIDS);
5890 adap->tids.stid_base = val[1];
5891 adap->tids.nstids = val[2] - val[1] + 1;
Vipul Pandya636f9d32012-09-26 02:39:39 +00005892 /*
5893 * Setup server filter region. Divide the availble filter
5894 * region into two parts. Regular filters get 1/3rd and server
5895 * filters get 2/3rd part. This is only enabled if workarond
5896 * path is enabled.
5897 * 1. For regular filters.
5898 * 2. Server filter: This are special filters which are used
5899 * to redirect SYN packets to offload queue.
5900 */
5901 if (adap->flags & FW_OFLD_CONN && !is_bypass(adap)) {
5902 adap->tids.sftid_base = adap->tids.ftid_base +
5903 DIV_ROUND_UP(adap->tids.nftids, 3);
5904 adap->tids.nsftids = adap->tids.nftids -
5905 DIV_ROUND_UP(adap->tids.nftids, 3);
5906 adap->tids.nftids = adap->tids.sftid_base -
5907 adap->tids.ftid_base;
5908 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005909 adap->vres.ddp.start = val[3];
5910 adap->vres.ddp.size = val[4] - val[3] + 1;
5911 adap->params.ofldq_wr_cred = val[5];
Vipul Pandya636f9d32012-09-26 02:39:39 +00005912
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00005913 adap->params.offload = 1;
5914 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00005915 if (caps_cmd.rdmacaps) {
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005916 params[0] = FW_PARAM_PFVF(STAG_START);
5917 params[1] = FW_PARAM_PFVF(STAG_END);
5918 params[2] = FW_PARAM_PFVF(RQ_START);
5919 params[3] = FW_PARAM_PFVF(RQ_END);
5920 params[4] = FW_PARAM_PFVF(PBL_START);
5921 params[5] = FW_PARAM_PFVF(PBL_END);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005922 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 6,
5923 params, val);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005924 if (ret < 0)
5925 goto bye;
5926 adap->vres.stag.start = val[0];
5927 adap->vres.stag.size = val[1] - val[0] + 1;
5928 adap->vres.rq.start = val[2];
5929 adap->vres.rq.size = val[3] - val[2] + 1;
5930 adap->vres.pbl.start = val[4];
5931 adap->vres.pbl.size = val[5] - val[4] + 1;
5932
5933 params[0] = FW_PARAM_PFVF(SQRQ_START);
5934 params[1] = FW_PARAM_PFVF(SQRQ_END);
5935 params[2] = FW_PARAM_PFVF(CQ_START);
5936 params[3] = FW_PARAM_PFVF(CQ_END);
5937 params[4] = FW_PARAM_PFVF(OCQ_START);
5938 params[5] = FW_PARAM_PFVF(OCQ_END);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005939 ret = t4_query_params(adap, 0, 0, 0, 6, params, val);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005940 if (ret < 0)
5941 goto bye;
5942 adap->vres.qp.start = val[0];
5943 adap->vres.qp.size = val[1] - val[0] + 1;
5944 adap->vres.cq.start = val[2];
5945 adap->vres.cq.size = val[3] - val[2] + 1;
5946 adap->vres.ocq.start = val[4];
5947 adap->vres.ocq.size = val[5] - val[4] + 1;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05305948
5949 params[0] = FW_PARAM_DEV(MAXORDIRD_QP);
5950 params[1] = FW_PARAM_DEV(MAXIRD_ADAPTER);
5951 ret = t4_query_params(adap, 0, 0, 0, 2, params, val);
5952 if (ret < 0) {
5953 adap->params.max_ordird_qp = 8;
5954 adap->params.max_ird_adapter = 32 * adap->tids.ntids;
5955 ret = 0;
5956 } else {
5957 adap->params.max_ordird_qp = val[0];
5958 adap->params.max_ird_adapter = val[1];
5959 }
5960 dev_info(adap->pdev_dev,
5961 "max_ordird_qp %d max_ird_adapter %d\n",
5962 adap->params.max_ordird_qp,
5963 adap->params.max_ird_adapter);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005964 }
Vipul Pandya636f9d32012-09-26 02:39:39 +00005965 if (caps_cmd.iscsicaps) {
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005966 params[0] = FW_PARAM_PFVF(ISCSI_START);
5967 params[1] = FW_PARAM_PFVF(ISCSI_END);
Vipul Pandya636f9d32012-09-26 02:39:39 +00005968 ret = t4_query_params(adap, adap->mbox, adap->fn, 0, 2,
5969 params, val);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005970 if (ret < 0)
5971 goto bye;
5972 adap->vres.iscsi.start = val[0];
5973 adap->vres.iscsi.size = val[1] - val[0] + 1;
5974 }
5975#undef FW_PARAM_PFVF
5976#undef FW_PARAM_DEV
5977
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05305978 /* The MTU/MSS Table is initialized by now, so load their values. If
5979 * we're initializing the adapter, then we'll make any modifications
5980 * we want to the MTU/MSS Table and also initialize the congestion
5981 * parameters.
Vipul Pandya636f9d32012-09-26 02:39:39 +00005982 */
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005983 t4_read_mtu_tbl(adap, adap->params.mtus, NULL);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05305984 if (state != DEV_STATE_INIT) {
5985 int i;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00005986
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05305987 /* The default MTU Table contains values 1492 and 1500.
5988 * However, for TCP, it's better to have two values which are
5989 * a multiple of 8 +/- 4 bytes apart near this popular MTU.
5990 * This allows us to have a TCP Data Payload which is a
5991 * multiple of 8 regardless of what combination of TCP Options
5992 * are in use (always a multiple of 4 bytes) which is
5993 * important for performance reasons. For instance, if no
5994 * options are in use, then we have a 20-byte IP header and a
5995 * 20-byte TCP header. In this case, a 1500-byte MSS would
5996 * result in a TCP Data Payload of 1500 - 40 == 1460 bytes
5997 * which is not a multiple of 8. So using an MSS of 1488 in
5998 * this case results in a TCP Data Payload of 1448 bytes which
5999 * is a multiple of 8. On the other hand, if 12-byte TCP Time
6000 * Stamps have been negotiated, then an MTU of 1500 bytes
6001 * results in a TCP Data Payload of 1448 bytes which, as
6002 * above, is a multiple of 8 bytes ...
6003 */
6004 for (i = 0; i < NMTUS; i++)
6005 if (adap->params.mtus[i] == 1492) {
6006 adap->params.mtus[i] = 1488;
6007 break;
6008 }
6009
6010 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
6011 adap->params.b_wnd);
6012 }
Kumar Sanghvidcf7b6f2013-12-18 16:38:23 +05306013 t4_init_tp_params(adap);
Vipul Pandya636f9d32012-09-26 02:39:39 +00006014 adap->flags |= FW_OK;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006015 return 0;
6016
6017 /*
Vipul Pandya636f9d32012-09-26 02:39:39 +00006018 * Something bad happened. If a command timed out or failed with EIO
6019 * FW does not operate within its spec or something catastrophic
6020 * happened to HW/FW, stop issuing commands.
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006021 */
Vipul Pandya636f9d32012-09-26 02:39:39 +00006022bye:
6023 if (ret != -ETIMEDOUT && ret != -EIO)
6024 t4_fw_bye(adap, adap->mbox);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006025 return ret;
6026}
6027
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006028/* EEH callbacks */
6029
6030static pci_ers_result_t eeh_err_detected(struct pci_dev *pdev,
6031 pci_channel_state_t state)
6032{
6033 int i;
6034 struct adapter *adap = pci_get_drvdata(pdev);
6035
6036 if (!adap)
6037 goto out;
6038
6039 rtnl_lock();
6040 adap->flags &= ~FW_OK;
6041 notify_ulds(adap, CXGB4_STATE_START_RECOVERY);
Gavin Shan9fe6cb52014-01-23 12:27:35 +08006042 spin_lock(&adap->stats_lock);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006043 for_each_port(adap, i) {
6044 struct net_device *dev = adap->port[i];
6045
6046 netif_device_detach(dev);
6047 netif_carrier_off(dev);
6048 }
Gavin Shan9fe6cb52014-01-23 12:27:35 +08006049 spin_unlock(&adap->stats_lock);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006050 if (adap->flags & FULL_INIT_DONE)
6051 cxgb_down(adap);
6052 rtnl_unlock();
Gavin Shan144be3d2014-01-23 12:27:34 +08006053 if ((adap->flags & DEV_ENABLED)) {
6054 pci_disable_device(pdev);
6055 adap->flags &= ~DEV_ENABLED;
6056 }
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006057out: return state == pci_channel_io_perm_failure ?
6058 PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_NEED_RESET;
6059}
6060
6061static pci_ers_result_t eeh_slot_reset(struct pci_dev *pdev)
6062{
6063 int i, ret;
6064 struct fw_caps_config_cmd c;
6065 struct adapter *adap = pci_get_drvdata(pdev);
6066
6067 if (!adap) {
6068 pci_restore_state(pdev);
6069 pci_save_state(pdev);
6070 return PCI_ERS_RESULT_RECOVERED;
6071 }
6072
Gavin Shan144be3d2014-01-23 12:27:34 +08006073 if (!(adap->flags & DEV_ENABLED)) {
6074 if (pci_enable_device(pdev)) {
6075 dev_err(&pdev->dev, "Cannot reenable PCI "
6076 "device after reset\n");
6077 return PCI_ERS_RESULT_DISCONNECT;
6078 }
6079 adap->flags |= DEV_ENABLED;
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006080 }
6081
6082 pci_set_master(pdev);
6083 pci_restore_state(pdev);
6084 pci_save_state(pdev);
6085 pci_cleanup_aer_uncorrect_error_status(pdev);
6086
6087 if (t4_wait_dev_ready(adap) < 0)
6088 return PCI_ERS_RESULT_DISCONNECT;
Thadeu Lima de Souza Cascardo777c2302013-05-03 08:11:04 +00006089 if (t4_fw_hello(adap, adap->fn, adap->fn, MASTER_MUST, NULL) < 0)
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006090 return PCI_ERS_RESULT_DISCONNECT;
6091 adap->flags |= FW_OK;
6092 if (adap_init1(adap, &c))
6093 return PCI_ERS_RESULT_DISCONNECT;
6094
6095 for_each_port(adap, i) {
6096 struct port_info *p = adap2pinfo(adap, i);
6097
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00006098 ret = t4_alloc_vi(adap, adap->fn, p->tx_chan, adap->fn, 0, 1,
6099 NULL, NULL);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006100 if (ret < 0)
6101 return PCI_ERS_RESULT_DISCONNECT;
6102 p->viid = ret;
6103 p->xact_addr_filt = -1;
6104 }
6105
6106 t4_load_mtus(adap, adap->params.mtus, adap->params.a_wnd,
6107 adap->params.b_wnd);
Dimitris Michailidis1ae970e2010-08-02 13:19:19 +00006108 setup_memwin(adap);
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006109 if (cxgb_up(adap))
6110 return PCI_ERS_RESULT_DISCONNECT;
6111 return PCI_ERS_RESULT_RECOVERED;
6112}
6113
6114static void eeh_resume(struct pci_dev *pdev)
6115{
6116 int i;
6117 struct adapter *adap = pci_get_drvdata(pdev);
6118
6119 if (!adap)
6120 return;
6121
6122 rtnl_lock();
6123 for_each_port(adap, i) {
6124 struct net_device *dev = adap->port[i];
6125
6126 if (netif_running(dev)) {
6127 link_start(dev);
6128 cxgb_set_rxmode(dev);
6129 }
6130 netif_device_attach(dev);
6131 }
6132 rtnl_unlock();
6133}
6134
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07006135static const struct pci_error_handlers cxgb4_eeh = {
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006136 .error_detected = eeh_err_detected,
6137 .slot_reset = eeh_slot_reset,
6138 .resume = eeh_resume,
6139};
6140
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05306141static inline bool is_x_10g_port(const struct link_config *lc)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006142{
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05306143 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 ||
6144 (lc->supported & FW_PORT_CAP_SPEED_40G) != 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006145}
6146
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05306147static inline void init_rspq(struct adapter *adap, struct sge_rspq *q,
6148 unsigned int us, unsigned int cnt,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006149 unsigned int size, unsigned int iqe_size)
6150{
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05306151 q->adap = adap;
6152 set_rspq_intr_params(q, us, cnt);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006153 q->iqe_len = iqe_size;
6154 q->size = size;
6155}
6156
6157/*
6158 * Perform default configuration of DMA queues depending on the number and type
6159 * of ports we found and the number of available CPUs. Most settings can be
6160 * modified by the admin prior to actual use.
6161 */
Bill Pemberton91744942012-12-03 09:23:02 -05006162static void cfg_queues(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006163{
6164 struct sge *s = &adap->sge;
Anish Bhatt688848b2014-06-19 21:37:13 -07006165 int i, n10g = 0, qidx = 0;
6166#ifndef CONFIG_CHELSIO_T4_DCB
6167 int q10g = 0;
6168#endif
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05306169 int ciq_size;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006170
6171 for_each_port(adap, i)
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05306172 n10g += is_x_10g_port(&adap2pinfo(adap, i)->link_cfg);
Anish Bhatt688848b2014-06-19 21:37:13 -07006173#ifdef CONFIG_CHELSIO_T4_DCB
6174 /* For Data Center Bridging support we need to be able to support up
6175 * to 8 Traffic Priorities; each of which will be assigned to its
6176 * own TX Queue in order to prevent Head-Of-Line Blocking.
6177 */
6178 if (adap->params.nports * 8 > MAX_ETH_QSETS) {
6179 dev_err(adap->pdev_dev, "MAX_ETH_QSETS=%d < %d!\n",
6180 MAX_ETH_QSETS, adap->params.nports * 8);
6181 BUG_ON(1);
6182 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006183
Anish Bhatt688848b2014-06-19 21:37:13 -07006184 for_each_port(adap, i) {
6185 struct port_info *pi = adap2pinfo(adap, i);
6186
6187 pi->first_qset = qidx;
6188 pi->nqsets = 8;
6189 qidx += pi->nqsets;
6190 }
6191#else /* !CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006192 /*
6193 * We default to 1 queue per non-10G port and up to # of cores queues
6194 * per 10G port.
6195 */
6196 if (n10g)
6197 q10g = (MAX_ETH_QSETS - (adap->params.nports - n10g)) / n10g;
Yuval Mintz5952dde2012-07-01 03:18:55 +00006198 if (q10g > netif_get_num_default_rss_queues())
6199 q10g = netif_get_num_default_rss_queues();
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006200
6201 for_each_port(adap, i) {
6202 struct port_info *pi = adap2pinfo(adap, i);
6203
6204 pi->first_qset = qidx;
Kumar Sanghvi57d8b762014-02-18 17:56:10 +05306205 pi->nqsets = is_x_10g_port(&pi->link_cfg) ? q10g : 1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006206 qidx += pi->nqsets;
6207 }
Anish Bhatt688848b2014-06-19 21:37:13 -07006208#endif /* !CONFIG_CHELSIO_T4_DCB */
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006209
6210 s->ethqsets = qidx;
6211 s->max_ethqsets = qidx; /* MSI-X may lower it later */
6212
6213 if (is_offload(adap)) {
6214 /*
6215 * For offload we use 1 queue/channel if all ports are up to 1G,
6216 * otherwise we divide all available queues amongst the channels
6217 * capped by the number of available cores.
6218 */
6219 if (n10g) {
6220 i = min_t(int, ARRAY_SIZE(s->ofldrxq),
6221 num_online_cpus());
6222 s->ofldqsets = roundup(i, adap->params.nports);
6223 } else
6224 s->ofldqsets = adap->params.nports;
6225 /* For RDMA one Rx queue per channel suffices */
6226 s->rdmaqs = adap->params.nports;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05306227 s->rdmaciqs = adap->params.nports;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006228 }
6229
6230 for (i = 0; i < ARRAY_SIZE(s->ethrxq); i++) {
6231 struct sge_eth_rxq *r = &s->ethrxq[i];
6232
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05306233 init_rspq(adap, &r->rspq, 5, 10, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006234 r->fl.size = 72;
6235 }
6236
6237 for (i = 0; i < ARRAY_SIZE(s->ethtxq); i++)
6238 s->ethtxq[i].q.size = 1024;
6239
6240 for (i = 0; i < ARRAY_SIZE(s->ctrlq); i++)
6241 s->ctrlq[i].q.size = 512;
6242
6243 for (i = 0; i < ARRAY_SIZE(s->ofldtxq); i++)
6244 s->ofldtxq[i].q.size = 1024;
6245
6246 for (i = 0; i < ARRAY_SIZE(s->ofldrxq); i++) {
6247 struct sge_ofld_rxq *r = &s->ofldrxq[i];
6248
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05306249 init_rspq(adap, &r->rspq, 5, 1, 1024, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006250 r->rspq.uld = CXGB4_ULD_ISCSI;
6251 r->fl.size = 72;
6252 }
6253
6254 for (i = 0; i < ARRAY_SIZE(s->rdmarxq); i++) {
6255 struct sge_ofld_rxq *r = &s->rdmarxq[i];
6256
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05306257 init_rspq(adap, &r->rspq, 5, 1, 511, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006258 r->rspq.uld = CXGB4_ULD_RDMA;
6259 r->fl.size = 72;
6260 }
6261
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05306262 ciq_size = 64 + adap->vres.cq.size + adap->tids.nftids;
6263 if (ciq_size > SGE_MAX_IQ_SIZE) {
6264 CH_WARN(adap, "CIQ size too small for available IQs\n");
6265 ciq_size = SGE_MAX_IQ_SIZE;
6266 }
6267
6268 for (i = 0; i < ARRAY_SIZE(s->rdmaciq); i++) {
6269 struct sge_ofld_rxq *r = &s->rdmaciq[i];
6270
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05306271 init_rspq(adap, &r->rspq, 5, 1, ciq_size, 64);
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05306272 r->rspq.uld = CXGB4_ULD_RDMA;
6273 }
6274
Hariprasad Shenaic887ad02014-06-06 21:40:45 +05306275 init_rspq(adap, &s->fw_evtq, 0, 1, 1024, 64);
6276 init_rspq(adap, &s->intrq, 0, 1, 2 * MAX_INGQ, 64);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006277}
6278
6279/*
6280 * Reduce the number of Ethernet queues across all ports to at most n.
6281 * n provides at least one queue per port.
6282 */
Bill Pemberton91744942012-12-03 09:23:02 -05006283static void reduce_ethqs(struct adapter *adap, int n)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006284{
6285 int i;
6286 struct port_info *pi;
6287
6288 while (n < adap->sge.ethqsets)
6289 for_each_port(adap, i) {
6290 pi = adap2pinfo(adap, i);
6291 if (pi->nqsets > 1) {
6292 pi->nqsets--;
6293 adap->sge.ethqsets--;
6294 if (adap->sge.ethqsets <= n)
6295 break;
6296 }
6297 }
6298
6299 n = 0;
6300 for_each_port(adap, i) {
6301 pi = adap2pinfo(adap, i);
6302 pi->first_qset = n;
6303 n += pi->nqsets;
6304 }
6305}
6306
6307/* 2 MSI-X vectors needed for the FW queue and non-data interrupts */
6308#define EXTRA_VECS 2
6309
Bill Pemberton91744942012-12-03 09:23:02 -05006310static int enable_msix(struct adapter *adap)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006311{
6312 int ofld_need = 0;
Alexander Gordeevc32ad222014-02-18 11:07:59 +01006313 int i, want, need;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006314 struct sge *s = &adap->sge;
6315 unsigned int nchan = adap->params.nports;
6316 struct msix_entry entries[MAX_INGQ + 1];
6317
6318 for (i = 0; i < ARRAY_SIZE(entries); ++i)
6319 entries[i].entry = i;
6320
6321 want = s->max_ethqsets + EXTRA_VECS;
6322 if (is_offload(adap)) {
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05306323 want += s->rdmaqs + s->rdmaciqs + s->ofldqsets;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006324 /* need nchan for each possible ULD */
Hariprasad Shenaicf38be62014-06-06 21:40:42 +05306325 ofld_need = 3 * nchan;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006326 }
Anish Bhatt688848b2014-06-19 21:37:13 -07006327#ifdef CONFIG_CHELSIO_T4_DCB
6328 /* For Data Center Bridging we need 8 Ethernet TX Priority Queues for
6329 * each port.
6330 */
6331 need = 8 * adap->params.nports + EXTRA_VECS + ofld_need;
6332#else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006333 need = adap->params.nports + EXTRA_VECS + ofld_need;
Anish Bhatt688848b2014-06-19 21:37:13 -07006334#endif
Alexander Gordeevc32ad222014-02-18 11:07:59 +01006335 want = pci_enable_msix_range(adap->pdev, entries, need, want);
6336 if (want < 0)
6337 return want;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006338
Alexander Gordeevc32ad222014-02-18 11:07:59 +01006339 /*
6340 * Distribute available vectors to the various queue groups.
6341 * Every group gets its minimum requirement and NIC gets top
6342 * priority for leftovers.
6343 */
6344 i = want - EXTRA_VECS - ofld_need;
6345 if (i < s->max_ethqsets) {
6346 s->max_ethqsets = i;
6347 if (i < s->ethqsets)
6348 reduce_ethqs(adap, i);
6349 }
6350 if (is_offload(adap)) {
6351 i = want - EXTRA_VECS - s->max_ethqsets;
6352 i -= ofld_need - nchan;
6353 s->ofldqsets = (i / nchan) * nchan; /* round down */
6354 }
6355 for (i = 0; i < want; ++i)
6356 adap->msix_info[i].vec = entries[i].vector;
6357
6358 return 0;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006359}
6360
6361#undef EXTRA_VECS
6362
Bill Pemberton91744942012-12-03 09:23:02 -05006363static int init_rss(struct adapter *adap)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00006364{
6365 unsigned int i, j;
6366
6367 for_each_port(adap, i) {
6368 struct port_info *pi = adap2pinfo(adap, i);
6369
6370 pi->rss = kcalloc(pi->rss_size, sizeof(u16), GFP_KERNEL);
6371 if (!pi->rss)
6372 return -ENOMEM;
6373 for (j = 0; j < pi->rss_size; j++)
Ben Hutchings278bc422011-12-15 13:56:49 +00006374 pi->rss[j] = ethtool_rxfh_indir_default(j, pi->nqsets);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00006375 }
6376 return 0;
6377}
6378
Bill Pemberton91744942012-12-03 09:23:02 -05006379static void print_port_info(const struct net_device *dev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006380{
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006381 char buf[80];
Dimitris Michailidis118969e2010-12-14 21:36:48 +00006382 char *bufp = buf;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00006383 const char *spd = "";
Dimitris Michailidis118969e2010-12-14 21:36:48 +00006384 const struct port_info *pi = netdev_priv(dev);
6385 const struct adapter *adap = pi->adapter;
Dimitris Michailidisf1a051b2010-05-10 15:58:08 +00006386
6387 if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_2_5GB)
6388 spd = " 2.5 GT/s";
6389 else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_5_0GB)
6390 spd = " 5 GT/s";
Roland Dreierd2e752d2014-04-28 17:36:20 -07006391 else if (adap->params.pci.speed == PCI_EXP_LNKSTA_CLS_8_0GB)
6392 spd = " 8 GT/s";
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006393
Dimitris Michailidis118969e2010-12-14 21:36:48 +00006394 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_100M)
6395 bufp += sprintf(bufp, "100/");
6396 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_1G)
6397 bufp += sprintf(bufp, "1000/");
6398 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_10G)
6399 bufp += sprintf(bufp, "10G/");
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05306400 if (pi->link_cfg.supported & FW_PORT_CAP_SPEED_40G)
6401 bufp += sprintf(bufp, "40G/");
Dimitris Michailidis118969e2010-12-14 21:36:48 +00006402 if (bufp != buf)
6403 --bufp;
Kumar Sanghvi72aca4b2014-02-18 17:56:08 +05306404 sprintf(bufp, "BASE-%s", t4_get_port_type_description(pi->port_type));
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006405
Dimitris Michailidis118969e2010-12-14 21:36:48 +00006406 netdev_info(dev, "Chelsio %s rev %d %s %sNIC PCIe x%d%s%s\n",
Santosh Rastapur0a57a532013-03-14 05:08:49 +00006407 adap->params.vpd.id,
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05306408 CHELSIO_CHIP_RELEASE(adap->params.chip), buf,
Dimitris Michailidis118969e2010-12-14 21:36:48 +00006409 is_offload(adap) ? "R" : "", adap->params.pci.width, spd,
6410 (adap->flags & USING_MSIX) ? " MSI-X" :
6411 (adap->flags & USING_MSI) ? " MSI" : "");
Kumar Sanghvia94cd702014-02-18 17:56:09 +05306412 netdev_info(dev, "S/N: %s, P/N: %s\n",
6413 adap->params.vpd.sn, adap->params.vpd.pn);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006414}
6415
Bill Pemberton91744942012-12-03 09:23:02 -05006416static void enable_pcie_relaxed_ordering(struct pci_dev *dev)
Dimitris Michailidisef306b52010-12-14 21:36:44 +00006417{
Jiang Liue5c8ae52012-08-20 13:53:19 -06006418 pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_RELAX_EN);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00006419}
6420
Dimitris Michailidis06546392010-07-11 12:01:16 +00006421/*
6422 * Free the following resources:
6423 * - memory used for tables
6424 * - MSI/MSI-X
6425 * - net devices
6426 * - resources FW is holding for us
6427 */
6428static void free_some_resources(struct adapter *adapter)
6429{
6430 unsigned int i;
6431
6432 t4_free_mem(adapter->l2t);
6433 t4_free_mem(adapter->tids.tid_tab);
6434 disable_msi(adapter);
6435
6436 for_each_port(adapter, i)
Dimitris Michailidis671b0062010-07-11 12:01:17 +00006437 if (adapter->port[i]) {
6438 kfree(adap2pinfo(adapter, i)->rss);
Dimitris Michailidis06546392010-07-11 12:01:16 +00006439 free_netdev(adapter->port[i]);
Dimitris Michailidis671b0062010-07-11 12:01:17 +00006440 }
Dimitris Michailidis06546392010-07-11 12:01:16 +00006441 if (adapter->flags & FW_OK)
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00006442 t4_fw_bye(adapter, adapter->fn);
Dimitris Michailidis06546392010-07-11 12:01:16 +00006443}
6444
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00006445#define TSO_FLAGS (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN)
Dimitris Michailidis35d35682010-08-02 13:19:20 +00006446#define VLAN_FEAT (NETIF_F_SG | NETIF_F_IP_CSUM | TSO_FLAGS | \
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006447 NETIF_F_IPV6_CSUM | NETIF_F_HIGHDMA)
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006448#define SEGMENT_SIZE 128
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006449
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00006450static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006451{
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006452 int func, i, err, s_qpp, qpp, num_seg;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006453 struct port_info *pi;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006454 bool highdma = false;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006455 struct adapter *adapter = NULL;
6456
6457 printk_once(KERN_INFO "%s - version %s\n", DRV_DESC, DRV_VERSION);
6458
6459 err = pci_request_regions(pdev, KBUILD_MODNAME);
6460 if (err) {
6461 /* Just info, some other driver may have claimed the device. */
6462 dev_info(&pdev->dev, "cannot obtain PCI resources\n");
6463 return err;
6464 }
6465
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006466 err = pci_enable_device(pdev);
6467 if (err) {
6468 dev_err(&pdev->dev, "cannot enable PCI device\n");
6469 goto out_release_regions;
6470 }
6471
6472 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006473 highdma = true;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006474 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
6475 if (err) {
6476 dev_err(&pdev->dev, "unable to obtain 64-bit DMA for "
6477 "coherent allocations\n");
6478 goto out_disable_device;
6479 }
6480 } else {
6481 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
6482 if (err) {
6483 dev_err(&pdev->dev, "no usable DMA configuration\n");
6484 goto out_disable_device;
6485 }
6486 }
6487
6488 pci_enable_pcie_error_reporting(pdev);
Dimitris Michailidisef306b52010-12-14 21:36:44 +00006489 enable_pcie_relaxed_ordering(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006490 pci_set_master(pdev);
6491 pci_save_state(pdev);
6492
6493 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
6494 if (!adapter) {
6495 err = -ENOMEM;
6496 goto out_disable_device;
6497 }
6498
Gavin Shan144be3d2014-01-23 12:27:34 +08006499 /* PCI device has been enabled */
6500 adapter->flags |= DEV_ENABLED;
6501
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006502 adapter->regs = pci_ioremap_bar(pdev, 0);
6503 if (!adapter->regs) {
6504 dev_err(&pdev->dev, "cannot map device registers\n");
6505 err = -ENOMEM;
6506 goto out_free_adapter;
6507 }
6508
Hariprasad Shenai35b1de52014-06-27 19:23:47 +05306509 /* We control everything through one PF */
6510 func = SOURCEPF_GET(readl(adapter->regs + PL_WHOAMI));
6511 if ((pdev->device == 0xa000 && func != 0) ||
6512 func != ent->driver_data) {
6513 pci_save_state(pdev); /* to restore SR-IOV later */
6514 err = 0;
6515 goto out_unmap_bar0;
6516 }
6517
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006518 adapter->pdev = pdev;
6519 adapter->pdev_dev = &pdev->dev;
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05306520 adapter->mbox = func;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00006521 adapter->fn = func;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006522 adapter->msg_enable = dflt_msg_enable;
6523 memset(adapter->chan_map, 0xff, sizeof(adapter->chan_map));
6524
6525 spin_lock_init(&adapter->stats_lock);
6526 spin_lock_init(&adapter->tid_release_lock);
6527
6528 INIT_WORK(&adapter->tid_release_task, process_tid_release_list);
Vipul Pandya881806b2012-05-18 15:29:24 +05306529 INIT_WORK(&adapter->db_full_task, process_db_full);
6530 INIT_WORK(&adapter->db_drop_task, process_db_drop);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006531
6532 err = t4_prep_adapter(adapter);
6533 if (err)
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006534 goto out_unmap_bar0;
6535
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05306536 if (!is_t4(adapter->params.chip)) {
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006537 s_qpp = QUEUESPERPAGEPF1 * adapter->fn;
6538 qpp = 1 << QUEUESPERPAGEPF0_GET(t4_read_reg(adapter,
6539 SGE_EGRESS_QUEUES_PER_PAGE_PF) >> s_qpp);
6540 num_seg = PAGE_SIZE / SEGMENT_SIZE;
6541
6542 /* Each segment size is 128B. Write coalescing is enabled only
6543 * when SGE_EGRESS_QUEUES_PER_PAGE_PF reg value for the
6544 * queue is less no of segments that can be accommodated in
6545 * a page size.
6546 */
6547 if (qpp > num_seg) {
6548 dev_err(&pdev->dev,
6549 "Incorrect number of egress queues per page\n");
6550 err = -EINVAL;
6551 goto out_unmap_bar0;
6552 }
6553 adapter->bar2 = ioremap_wc(pci_resource_start(pdev, 2),
6554 pci_resource_len(pdev, 2));
6555 if (!adapter->bar2) {
6556 dev_err(&pdev->dev, "cannot map device bar2 region\n");
6557 err = -ENOMEM;
6558 goto out_unmap_bar0;
6559 }
6560 }
6561
Vipul Pandya636f9d32012-09-26 02:39:39 +00006562 setup_memwin(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006563 err = adap_init0(adapter);
Vipul Pandya636f9d32012-09-26 02:39:39 +00006564 setup_memwin_rdma(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006565 if (err)
6566 goto out_unmap_bar;
6567
6568 for_each_port(adapter, i) {
6569 struct net_device *netdev;
6570
6571 netdev = alloc_etherdev_mq(sizeof(struct port_info),
6572 MAX_ETH_QSETS);
6573 if (!netdev) {
6574 err = -ENOMEM;
6575 goto out_free_dev;
6576 }
6577
6578 SET_NETDEV_DEV(netdev, &pdev->dev);
6579
6580 adapter->port[i] = netdev;
6581 pi = netdev_priv(netdev);
6582 pi->adapter = adapter;
6583 pi->xact_addr_filt = -1;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006584 pi->port_id = i;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006585 netdev->irq = pdev->irq;
6586
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00006587 netdev->hw_features = NETIF_F_SG | TSO_FLAGS |
6588 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
6589 NETIF_F_RXCSUM | NETIF_F_RXHASH |
Patrick McHardyf6469682013-04-19 02:04:27 +00006590 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006591 if (highdma)
6592 netdev->hw_features |= NETIF_F_HIGHDMA;
6593 netdev->features |= netdev->hw_features;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006594 netdev->vlan_features = netdev->features & VLAN_FEAT;
6595
Jiri Pirko01789342011-08-16 06:29:00 +00006596 netdev->priv_flags |= IFF_UNICAST_FLT;
6597
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006598 netdev->netdev_ops = &cxgb4_netdev_ops;
Anish Bhatt688848b2014-06-19 21:37:13 -07006599#ifdef CONFIG_CHELSIO_T4_DCB
6600 netdev->dcbnl_ops = &cxgb4_dcb_ops;
6601 cxgb4_dcb_state_init(netdev);
6602#endif
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00006603 netdev->ethtool_ops = &cxgb_ethtool_ops;
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006604 }
6605
6606 pci_set_drvdata(pdev, adapter);
6607
6608 if (adapter->flags & FW_OK) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00006609 err = t4_port_init(adapter, func, func, 0);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006610 if (err)
6611 goto out_free_dev;
6612 }
6613
6614 /*
6615 * Configure queues and allocate tables now, they can be needed as
6616 * soon as the first register_netdev completes.
6617 */
6618 cfg_queues(adapter);
6619
6620 adapter->l2t = t4_init_l2t();
6621 if (!adapter->l2t) {
6622 /* We tolerate a lack of L2T, giving up some functionality */
6623 dev_warn(&pdev->dev, "could not allocate L2T, continuing\n");
6624 adapter->params.offload = 0;
6625 }
6626
6627 if (is_offload(adapter) && tid_init(&adapter->tids) < 0) {
6628 dev_warn(&pdev->dev, "could not allocate TID table, "
6629 "continuing\n");
6630 adapter->params.offload = 0;
6631 }
6632
Dimitris Michailidisf7cabcd2010-07-11 12:01:15 +00006633 /* See what interrupts we'll be using */
6634 if (msi > 1 && enable_msix(adapter) == 0)
6635 adapter->flags |= USING_MSIX;
6636 else if (msi > 0 && pci_enable_msi(pdev) == 0)
6637 adapter->flags |= USING_MSI;
6638
Dimitris Michailidis671b0062010-07-11 12:01:17 +00006639 err = init_rss(adapter);
6640 if (err)
6641 goto out_free_dev;
6642
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006643 /*
6644 * The card is now ready to go. If any errors occur during device
6645 * registration we do not fail the whole card but rather proceed only
6646 * with the ports we manage to register successfully. However we must
6647 * register at least one net device.
6648 */
6649 for_each_port(adapter, i) {
Dimitris Michailidisa57cabe2010-12-14 21:36:46 +00006650 pi = adap2pinfo(adapter, i);
6651 netif_set_real_num_tx_queues(adapter->port[i], pi->nqsets);
6652 netif_set_real_num_rx_queues(adapter->port[i], pi->nqsets);
6653
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006654 err = register_netdev(adapter->port[i]);
6655 if (err)
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00006656 break;
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00006657 adapter->chan_map[pi->tx_chan] = i;
6658 print_port_info(adapter->port[i]);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006659 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00006660 if (i == 0) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006661 dev_err(&pdev->dev, "could not register any net devices\n");
6662 goto out_free_dev;
6663 }
Dimitris Michailidisb1a3c2b2010-12-14 21:36:51 +00006664 if (err) {
6665 dev_warn(&pdev->dev, "only %d net devices registered\n", i);
6666 err = 0;
Joe Perches6403eab2011-06-03 11:51:20 +00006667 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006668
6669 if (cxgb4_debugfs_root) {
6670 adapter->debugfs_root = debugfs_create_dir(pci_name(pdev),
6671 cxgb4_debugfs_root);
6672 setup_debugfs(adapter);
6673 }
6674
David S. Miller88c51002011-10-07 13:38:43 -04006675 /* PCIe EEH recovery on powerpc platforms needs fundamental reset */
6676 pdev->needs_freset = 1;
6677
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006678 if (is_offload(adapter))
6679 attach_ulds(adapter);
6680
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006681#ifdef CONFIG_PCI_IOV
Santosh Rastapur7d6727c2013-03-14 05:08:56 +00006682 if (func < ARRAY_SIZE(num_vf) && num_vf[func] > 0)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006683 if (pci_enable_sriov(pdev, num_vf[func]) == 0)
6684 dev_info(&pdev->dev,
6685 "instantiated %u virtual functions\n",
6686 num_vf[func]);
6687#endif
6688 return 0;
6689
6690 out_free_dev:
Dimitris Michailidis06546392010-07-11 12:01:16 +00006691 free_some_resources(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006692 out_unmap_bar:
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05306693 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006694 iounmap(adapter->bar2);
6695 out_unmap_bar0:
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006696 iounmap(adapter->regs);
6697 out_free_adapter:
6698 kfree(adapter);
6699 out_disable_device:
6700 pci_disable_pcie_error_reporting(pdev);
6701 pci_disable_device(pdev);
6702 out_release_regions:
6703 pci_release_regions(pdev);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006704 return err;
6705}
6706
Bill Pemberton91744942012-12-03 09:23:02 -05006707static void remove_one(struct pci_dev *pdev)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006708{
6709 struct adapter *adapter = pci_get_drvdata(pdev);
6710
Vipul Pandya636f9d32012-09-26 02:39:39 +00006711#ifdef CONFIG_PCI_IOV
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006712 pci_disable_sriov(pdev);
6713
Vipul Pandya636f9d32012-09-26 02:39:39 +00006714#endif
6715
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006716 if (adapter) {
6717 int i;
6718
6719 if (is_offload(adapter))
6720 detach_ulds(adapter);
6721
6722 for_each_port(adapter, i)
Dimitris Michailidis8f3a7672010-12-14 21:36:52 +00006723 if (adapter->port[i]->reg_state == NETREG_REGISTERED)
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006724 unregister_netdev(adapter->port[i]);
6725
Fabian Frederick9f16dc22014-06-27 22:51:52 +02006726 debugfs_remove_recursive(adapter->debugfs_root);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006727
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00006728 /* If we allocated filters, free up state associated with any
6729 * valid filters ...
6730 */
6731 if (adapter->tids.ftid_tab) {
6732 struct filter_entry *f = &adapter->tids.ftid_tab[0];
Vipul Pandyadca4fae2012-12-10 09:30:53 +00006733 for (i = 0; i < (adapter->tids.nftids +
6734 adapter->tids.nsftids); i++, f++)
Vipul Pandyaf2b7e782012-12-10 09:30:52 +00006735 if (f->valid)
6736 clear_filter(adapter, f);
6737 }
6738
Dimitris Michailidisaaefae92010-05-18 10:07:12 +00006739 if (adapter->flags & FULL_INIT_DONE)
6740 cxgb_down(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006741
Dimitris Michailidis06546392010-07-11 12:01:16 +00006742 free_some_resources(adapter);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006743 iounmap(adapter->regs);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05306744 if (!is_t4(adapter->params.chip))
Santosh Rastapur22adfe02013-03-14 05:08:51 +00006745 iounmap(adapter->bar2);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006746 pci_disable_pcie_error_reporting(pdev);
Gavin Shan144be3d2014-01-23 12:27:34 +08006747 if ((adapter->flags & DEV_ENABLED)) {
6748 pci_disable_device(pdev);
6749 adapter->flags &= ~DEV_ENABLED;
6750 }
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006751 pci_release_regions(pdev);
Li RongQingee9a33b2014-06-20 17:32:36 +08006752 synchronize_rcu();
Gavin Shan8b662fe2014-01-24 17:12:03 +08006753 kfree(adapter);
Dimitris Michailidisa069ec92010-09-30 09:17:12 +00006754 } else
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006755 pci_release_regions(pdev);
6756}
6757
6758static struct pci_driver cxgb4_driver = {
6759 .name = KBUILD_MODNAME,
6760 .id_table = cxgb4_pci_tbl,
6761 .probe = init_one,
Bill Pemberton91744942012-12-03 09:23:02 -05006762 .remove = remove_one,
Thadeu Lima de Souza Cascardo687d7052014-02-24 17:04:52 -03006763 .shutdown = remove_one,
Dimitris Michailidis204dc3c2010-06-18 10:05:29 +00006764 .err_handler = &cxgb4_eeh,
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006765};
6766
6767static int __init cxgb4_init_module(void)
6768{
6769 int ret;
6770
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05306771 workq = create_singlethread_workqueue("cxgb4");
6772 if (!workq)
6773 return -ENOMEM;
6774
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006775 /* Debugfs support is optional, just warn if this fails */
6776 cxgb4_debugfs_root = debugfs_create_dir(KBUILD_MODNAME, NULL);
6777 if (!cxgb4_debugfs_root)
Joe Perches428ac432013-01-06 13:34:49 +00006778 pr_warn("could not create debugfs entry, continuing\n");
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006779
6780 ret = pci_register_driver(&cxgb4_driver);
Wei Yang73a695f2013-09-15 21:53:00 +08006781 if (ret < 0) {
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006782 debugfs_remove(cxgb4_debugfs_root);
Wei Yang73a695f2013-09-15 21:53:00 +08006783 destroy_workqueue(workq);
6784 }
Vipul Pandya01bcca62013-07-04 16:10:46 +05306785
6786 register_inet6addr_notifier(&cxgb4_inet6addr_notifier);
6787
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006788 return ret;
6789}
6790
6791static void __exit cxgb4_cleanup_module(void)
6792{
Vipul Pandya01bcca62013-07-04 16:10:46 +05306793 unregister_inet6addr_notifier(&cxgb4_inet6addr_notifier);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006794 pci_unregister_driver(&cxgb4_driver);
6795 debugfs_remove(cxgb4_debugfs_root); /* NULL ok */
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05306796 flush_workqueue(workq);
6797 destroy_workqueue(workq);
Dimitris Michailidisb8ff05a2010-04-01 15:28:26 +00006798}
6799
6800module_init(cxgb4_init_module);
6801module_exit(cxgb4_cleanup_module);