blob: 8c381c696a3ddb9db446f53b2523bab39f742258 [file] [log] [blame]
Divy Le Ray4d22de32007-01-18 22:04:14 -05001/*
Divy Le Raya02d44a2008-10-13 18:47:30 -07002 * Copyright (c) 2003-2008 Chelsio, Inc. All rights reserved.
Divy Le Ray4d22de32007-01-18 22:04:14 -05003 *
Divy Le Ray1d68e932007-01-30 19:44:35 -08004 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
Divy Le Ray4d22de32007-01-18 22:04:14 -05009 *
Divy Le Ray1d68e932007-01-30 19:44:35 -080010 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
Divy Le Ray4d22de32007-01-18 22:04:14 -050031 */
Divy Le Ray4d22de32007-01-18 22:04:14 -050032#include <linux/module.h>
33#include <linux/moduleparam.h>
34#include <linux/init.h>
35#include <linux/pci.h>
36#include <linux/dma-mapping.h>
37#include <linux/netdevice.h>
38#include <linux/etherdevice.h>
39#include <linux/if_vlan.h>
Ben Hutchings0f07c4e2009-04-29 08:07:20 +000040#include <linux/mdio.h>
Divy Le Ray4d22de32007-01-18 22:04:14 -050041#include <linux/sockios.h>
42#include <linux/workqueue.h>
43#include <linux/proc_fs.h>
44#include <linux/rtnetlink.h>
Divy Le Ray2e283962007-03-18 13:10:06 -070045#include <linux/firmware.h>
vignesh babud9da4662007-07-09 11:50:22 -070046#include <linux/log2.h>
Divy Le Ray4d22de32007-01-18 22:04:14 -050047#include <asm/uaccess.h>
48
49#include "common.h"
50#include "cxgb3_ioctl.h"
51#include "regs.h"
52#include "cxgb3_offload.h"
53#include "version.h"
54
55#include "cxgb3_ctl_defs.h"
56#include "t3_cpl.h"
57#include "firmware_exports.h"
58
59enum {
60 MAX_TXQ_ENTRIES = 16384,
61 MAX_CTRL_TXQ_ENTRIES = 1024,
62 MAX_RSPQ_ENTRIES = 16384,
63 MAX_RX_BUFFERS = 16384,
64 MAX_RX_JUMBO_BUFFERS = 16384,
65 MIN_TXQ_ENTRIES = 4,
66 MIN_CTRL_TXQ_ENTRIES = 4,
67 MIN_RSPQ_ENTRIES = 32,
68 MIN_FL_ENTRIES = 32
69};
70
71#define PORT_MASK ((1 << MAX_NPORTS) - 1)
72
73#define DFLT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK | \
74 NETIF_MSG_TIMER | NETIF_MSG_IFDOWN | NETIF_MSG_IFUP |\
75 NETIF_MSG_RX_ERR | NETIF_MSG_TX_ERR)
76
77#define EEPROM_MAGIC 0x38E2F10C
78
Divy Le Ray678771d2007-11-16 14:26:44 -080079#define CH_DEVICE(devid, idx) \
80 { PCI_VENDOR_ID_CHELSIO, devid, PCI_ANY_ID, PCI_ANY_ID, 0, 0, idx }
Divy Le Ray4d22de32007-01-18 22:04:14 -050081
82static const struct pci_device_id cxgb3_pci_tbl[] = {
Divy Le Ray678771d2007-11-16 14:26:44 -080083 CH_DEVICE(0x20, 0), /* PE9000 */
84 CH_DEVICE(0x21, 1), /* T302E */
85 CH_DEVICE(0x22, 2), /* T310E */
86 CH_DEVICE(0x23, 3), /* T320X */
87 CH_DEVICE(0x24, 1), /* T302X */
88 CH_DEVICE(0x25, 3), /* T320E */
89 CH_DEVICE(0x26, 2), /* T310X */
90 CH_DEVICE(0x30, 2), /* T3B10 */
91 CH_DEVICE(0x31, 3), /* T3B20 */
92 CH_DEVICE(0x32, 1), /* T3B02 */
Divy Le Rayce03aad2009-02-18 17:47:57 -080093 CH_DEVICE(0x35, 6), /* T3C20-derived T3C10 */
Divy Le Ray74451422009-05-29 12:52:44 +000094 CH_DEVICE(0x36, 3), /* S320E-CR */
95 CH_DEVICE(0x37, 7), /* N320E-G2 */
Divy Le Ray4d22de32007-01-18 22:04:14 -050096 {0,}
97};
98
99MODULE_DESCRIPTION(DRV_DESC);
100MODULE_AUTHOR("Chelsio Communications");
Divy Le Ray1d68e932007-01-30 19:44:35 -0800101MODULE_LICENSE("Dual BSD/GPL");
Divy Le Ray4d22de32007-01-18 22:04:14 -0500102MODULE_VERSION(DRV_VERSION);
103MODULE_DEVICE_TABLE(pci, cxgb3_pci_tbl);
104
105static int dflt_msg_enable = DFLT_MSG_ENABLE;
106
107module_param(dflt_msg_enable, int, 0644);
108MODULE_PARM_DESC(dflt_msg_enable, "Chelsio T3 default message enable bitmap");
109
110/*
111 * The driver uses the best interrupt scheme available on a platform in the
112 * order MSI-X, MSI, legacy pin interrupts. This parameter determines which
113 * of these schemes the driver may consider as follows:
114 *
115 * msi = 2: choose from among all three options
116 * msi = 1: only consider MSI and pin interrupts
117 * msi = 0: force pin interrupts
118 */
119static int msi = 2;
120
121module_param(msi, int, 0644);
122MODULE_PARM_DESC(msi, "whether to use MSI or MSI-X");
123
124/*
125 * The driver enables offload as a default.
126 * To disable it, use ofld_disable = 1.
127 */
128
129static int ofld_disable = 0;
130
131module_param(ofld_disable, int, 0644);
132MODULE_PARM_DESC(ofld_disable, "whether to enable offload at init time or not");
133
134/*
135 * We have work elements that we need to cancel when an interface is taken
136 * down. Normally the work elements would be executed by keventd but that
137 * can deadlock because of linkwatch. If our close method takes the rtnl
138 * lock and linkwatch is ahead of our work elements in keventd, linkwatch
139 * will block keventd as it needs the rtnl lock, and we'll deadlock waiting
140 * for our work to complete. Get our own work queue to solve this.
141 */
142static struct workqueue_struct *cxgb3_wq;
143
144/**
145 * link_report - show link status and link speed/duplex
146 * @p: the port whose settings are to be reported
147 *
148 * Shows the link status, speed, and duplex of a port.
149 */
150static void link_report(struct net_device *dev)
151{
152 if (!netif_carrier_ok(dev))
153 printk(KERN_INFO "%s: link down\n", dev->name);
154 else {
155 const char *s = "10Mbps";
156 const struct port_info *p = netdev_priv(dev);
157
158 switch (p->link_config.speed) {
159 case SPEED_10000:
160 s = "10Gbps";
161 break;
162 case SPEED_1000:
163 s = "1000Mbps";
164 break;
165 case SPEED_100:
166 s = "100Mbps";
167 break;
168 }
169
170 printk(KERN_INFO "%s: link up, %s, %s-duplex\n", dev->name, s,
171 p->link_config.duplex == DUPLEX_FULL ? "full" : "half");
172 }
173}
174
Divy Le Ray34701fd2009-07-07 19:48:32 +0000175static void enable_tx_fifo_drain(struct adapter *adapter,
176 struct port_info *pi)
177{
178 t3_set_reg_field(adapter, A_XGM_TXFIFO_CFG + pi->mac.offset, 0,
179 F_ENDROPPKT);
180 t3_write_reg(adapter, A_XGM_RX_CTRL + pi->mac.offset, 0);
181 t3_write_reg(adapter, A_XGM_TX_CTRL + pi->mac.offset, F_TXEN);
182 t3_write_reg(adapter, A_XGM_RX_CTRL + pi->mac.offset, F_RXEN);
183}
184
185static void disable_tx_fifo_drain(struct adapter *adapter,
186 struct port_info *pi)
187{
188 t3_set_reg_field(adapter, A_XGM_TXFIFO_CFG + pi->mac.offset,
189 F_ENDROPPKT, 0);
190}
191
Divy Le Raybf792092009-03-12 21:14:19 +0000192void t3_os_link_fault(struct adapter *adap, int port_id, int state)
193{
194 struct net_device *dev = adap->port[port_id];
195 struct port_info *pi = netdev_priv(dev);
196
197 if (state == netif_carrier_ok(dev))
198 return;
199
200 if (state) {
201 struct cmac *mac = &pi->mac;
202
203 netif_carrier_on(dev);
204
Divy Le Ray34701fd2009-07-07 19:48:32 +0000205 disable_tx_fifo_drain(adap, pi);
206
Divy Le Raybf792092009-03-12 21:14:19 +0000207 /* Clear local faults */
208 t3_xgm_intr_disable(adap, pi->port_id);
209 t3_read_reg(adap, A_XGM_INT_STATUS +
210 pi->mac.offset);
211 t3_write_reg(adap,
212 A_XGM_INT_CAUSE + pi->mac.offset,
213 F_XGM_INT);
214
215 t3_set_reg_field(adap,
216 A_XGM_INT_ENABLE +
217 pi->mac.offset,
218 F_XGM_INT, F_XGM_INT);
219 t3_xgm_intr_enable(adap, pi->port_id);
220
221 t3_mac_enable(mac, MAC_DIRECTION_TX);
Divy Le Ray34701fd2009-07-07 19:48:32 +0000222 } else {
Divy Le Raybf792092009-03-12 21:14:19 +0000223 netif_carrier_off(dev);
224
Divy Le Ray34701fd2009-07-07 19:48:32 +0000225 /* Flush TX FIFO */
226 enable_tx_fifo_drain(adap, pi);
227 }
Divy Le Raybf792092009-03-12 21:14:19 +0000228 link_report(dev);
229}
230
Divy Le Ray4d22de32007-01-18 22:04:14 -0500231/**
232 * t3_os_link_changed - handle link status changes
233 * @adapter: the adapter associated with the link change
234 * @port_id: the port index whose limk status has changed
235 * @link_stat: the new status of the link
236 * @speed: the new speed setting
237 * @duplex: the new duplex setting
238 * @pause: the new flow-control setting
239 *
240 * This is the OS-dependent handler for link status changes. The OS
241 * neutral handler takes care of most of the processing for these events,
242 * then calls this handler for any OS-specific processing.
243 */
244void t3_os_link_changed(struct adapter *adapter, int port_id, int link_stat,
245 int speed, int duplex, int pause)
246{
247 struct net_device *dev = adapter->port[port_id];
Divy Le Ray6d6daba2007-03-31 00:23:24 -0700248 struct port_info *pi = netdev_priv(dev);
249 struct cmac *mac = &pi->mac;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500250
251 /* Skip changes from disabled ports. */
252 if (!netif_running(dev))
253 return;
254
255 if (link_stat != netif_carrier_ok(dev)) {
Divy Le Ray6d6daba2007-03-31 00:23:24 -0700256 if (link_stat) {
Divy Le Ray34701fd2009-07-07 19:48:32 +0000257 disable_tx_fifo_drain(adapter, pi);
258
Divy Le Ray59cf8102007-04-09 20:10:27 -0700259 t3_mac_enable(mac, MAC_DIRECTION_RX);
Divy Le Raybf792092009-03-12 21:14:19 +0000260
261 /* Clear local faults */
262 t3_xgm_intr_disable(adapter, pi->port_id);
263 t3_read_reg(adapter, A_XGM_INT_STATUS +
264 pi->mac.offset);
265 t3_write_reg(adapter,
266 A_XGM_INT_CAUSE + pi->mac.offset,
267 F_XGM_INT);
268
269 t3_set_reg_field(adapter,
270 A_XGM_INT_ENABLE + pi->mac.offset,
271 F_XGM_INT, F_XGM_INT);
272 t3_xgm_intr_enable(adapter, pi->port_id);
273
Divy Le Ray4d22de32007-01-18 22:04:14 -0500274 netif_carrier_on(dev);
Divy Le Ray6d6daba2007-03-31 00:23:24 -0700275 } else {
Divy Le Ray4d22de32007-01-18 22:04:14 -0500276 netif_carrier_off(dev);
Divy Le Raybf792092009-03-12 21:14:19 +0000277
278 t3_xgm_intr_disable(adapter, pi->port_id);
279 t3_read_reg(adapter, A_XGM_INT_STATUS + pi->mac.offset);
280 t3_set_reg_field(adapter,
281 A_XGM_INT_ENABLE + pi->mac.offset,
282 F_XGM_INT, 0);
283
284 if (is_10G(adapter))
285 pi->phy.ops->power_down(&pi->phy, 1);
286
287 t3_read_reg(adapter, A_XGM_INT_STATUS + pi->mac.offset);
Divy Le Ray59cf8102007-04-09 20:10:27 -0700288 t3_mac_disable(mac, MAC_DIRECTION_RX);
289 t3_link_start(&pi->phy, mac, &pi->link_config);
Divy Le Ray34701fd2009-07-07 19:48:32 +0000290
291 /* Flush TX FIFO */
292 enable_tx_fifo_drain(adapter, pi);
Divy Le Ray6d6daba2007-03-31 00:23:24 -0700293 }
294
Divy Le Ray4d22de32007-01-18 22:04:14 -0500295 link_report(dev);
296 }
297}
298
Divy Le Ray1e882022008-10-08 17:40:07 -0700299/**
300 * t3_os_phymod_changed - handle PHY module changes
301 * @phy: the PHY reporting the module change
302 * @mod_type: new module type
303 *
304 * This is the OS-dependent handler for PHY module changes. It is
305 * invoked when a PHY module is removed or inserted for any OS-specific
306 * processing.
307 */
308void t3_os_phymod_changed(struct adapter *adap, int port_id)
309{
310 static const char *mod_str[] = {
311 NULL, "SR", "LR", "LRM", "TWINAX", "TWINAX", "unknown"
312 };
313
314 const struct net_device *dev = adap->port[port_id];
315 const struct port_info *pi = netdev_priv(dev);
316
317 if (pi->phy.modtype == phy_modtype_none)
318 printk(KERN_INFO "%s: PHY module unplugged\n", dev->name);
319 else
320 printk(KERN_INFO "%s: %s PHY module inserted\n", dev->name,
321 mod_str[pi->phy.modtype]);
322}
323
Divy Le Ray4d22de32007-01-18 22:04:14 -0500324static void cxgb_set_rxmode(struct net_device *dev)
325{
326 struct t3_rx_mode rm;
327 struct port_info *pi = netdev_priv(dev);
328
329 init_rx_mode(&rm, dev, dev->mc_list);
330 t3_mac_set_rx_mode(&pi->mac, &rm);
331}
332
333/**
334 * link_start - enable a port
335 * @dev: the device to enable
336 *
337 * Performs the MAC and PHY actions needed to enable a port.
338 */
339static void link_start(struct net_device *dev)
340{
341 struct t3_rx_mode rm;
342 struct port_info *pi = netdev_priv(dev);
343 struct cmac *mac = &pi->mac;
344
345 init_rx_mode(&rm, dev, dev->mc_list);
346 t3_mac_reset(mac);
347 t3_mac_set_mtu(mac, dev->mtu);
348 t3_mac_set_address(mac, 0, dev->dev_addr);
349 t3_mac_set_rx_mode(mac, &rm);
350 t3_link_start(&pi->phy, mac, &pi->link_config);
351 t3_mac_enable(mac, MAC_DIRECTION_RX | MAC_DIRECTION_TX);
352}
353
354static inline void cxgb_disable_msi(struct adapter *adapter)
355{
356 if (adapter->flags & USING_MSIX) {
357 pci_disable_msix(adapter->pdev);
358 adapter->flags &= ~USING_MSIX;
359 } else if (adapter->flags & USING_MSI) {
360 pci_disable_msi(adapter->pdev);
361 adapter->flags &= ~USING_MSI;
362 }
363}
364
365/*
366 * Interrupt handler for asynchronous events used with MSI-X.
367 */
368static irqreturn_t t3_async_intr_handler(int irq, void *cookie)
369{
370 t3_slow_intr_handler(cookie);
371 return IRQ_HANDLED;
372}
373
374/*
375 * Name the MSI-X interrupts.
376 */
377static void name_msix_vecs(struct adapter *adap)
378{
379 int i, j, msi_idx = 1, n = sizeof(adap->msix_info[0].desc) - 1;
380
381 snprintf(adap->msix_info[0].desc, n, "%s", adap->name);
382 adap->msix_info[0].desc[n] = 0;
383
384 for_each_port(adap, j) {
385 struct net_device *d = adap->port[j];
386 const struct port_info *pi = netdev_priv(d);
387
388 for (i = 0; i < pi->nqsets; i++, msi_idx++) {
389 snprintf(adap->msix_info[msi_idx].desc, n,
Divy Le Ray8c263762008-10-08 17:37:33 -0700390 "%s-%d", d->name, pi->first_qset + i);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500391 adap->msix_info[msi_idx].desc[n] = 0;
392 }
Divy Le Ray8c263762008-10-08 17:37:33 -0700393 }
Divy Le Ray4d22de32007-01-18 22:04:14 -0500394}
395
396static int request_msix_data_irqs(struct adapter *adap)
397{
398 int i, j, err, qidx = 0;
399
400 for_each_port(adap, i) {
401 int nqsets = adap2pinfo(adap, i)->nqsets;
402
403 for (j = 0; j < nqsets; ++j) {
404 err = request_irq(adap->msix_info[qidx + 1].vec,
405 t3_intr_handler(adap,
406 adap->sge.qs[qidx].
407 rspq.polling), 0,
408 adap->msix_info[qidx + 1].desc,
409 &adap->sge.qs[qidx]);
410 if (err) {
411 while (--qidx >= 0)
412 free_irq(adap->msix_info[qidx + 1].vec,
413 &adap->sge.qs[qidx]);
414 return err;
415 }
416 qidx++;
417 }
418 }
419 return 0;
420}
421
Divy Le Ray8c263762008-10-08 17:37:33 -0700422static void free_irq_resources(struct adapter *adapter)
423{
424 if (adapter->flags & USING_MSIX) {
425 int i, n = 0;
426
427 free_irq(adapter->msix_info[0].vec, adapter);
428 for_each_port(adapter, i)
Divy Le Ray5cda9362009-01-18 21:29:40 -0800429 n += adap2pinfo(adapter, i)->nqsets;
Divy Le Ray8c263762008-10-08 17:37:33 -0700430
431 for (i = 0; i < n; ++i)
432 free_irq(adapter->msix_info[i + 1].vec,
433 &adapter->sge.qs[i]);
434 } else
435 free_irq(adapter->pdev->irq, adapter);
436}
437
Divy Le Rayb8819552007-12-17 18:47:31 -0800438static int await_mgmt_replies(struct adapter *adap, unsigned long init_cnt,
439 unsigned long n)
440{
441 int attempts = 5;
442
443 while (adap->sge.qs[0].rspq.offload_pkts < init_cnt + n) {
444 if (!--attempts)
445 return -ETIMEDOUT;
446 msleep(10);
447 }
448 return 0;
449}
450
451static int init_tp_parity(struct adapter *adap)
452{
453 int i;
454 struct sk_buff *skb;
455 struct cpl_set_tcb_field *greq;
456 unsigned long cnt = adap->sge.qs[0].rspq.offload_pkts;
457
458 t3_tp_set_offload_mode(adap, 1);
459
460 for (i = 0; i < 16; i++) {
461 struct cpl_smt_write_req *req;
462
Divy Le Ray74b793e2009-06-09 23:25:21 +0000463 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
464 if (!skb)
465 skb = adap->nofail_skb;
466 if (!skb)
467 goto alloc_skb_fail;
468
Divy Le Rayb8819552007-12-17 18:47:31 -0800469 req = (struct cpl_smt_write_req *)__skb_put(skb, sizeof(*req));
470 memset(req, 0, sizeof(*req));
471 req->wr.wr_hi = htonl(V_WR_OP(FW_WROPCODE_FORWARD));
472 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_SMT_WRITE_REQ, i));
Divy Le Raydce7d1d2009-07-07 19:48:59 +0000473 req->mtu_idx = NMTUS - 1;
Divy Le Rayb8819552007-12-17 18:47:31 -0800474 req->iff = i;
475 t3_mgmt_tx(adap, skb);
Divy Le Ray74b793e2009-06-09 23:25:21 +0000476 if (skb == adap->nofail_skb) {
477 await_mgmt_replies(adap, cnt, i + 1);
478 adap->nofail_skb = alloc_skb(sizeof(*greq), GFP_KERNEL);
479 if (!adap->nofail_skb)
480 goto alloc_skb_fail;
481 }
Divy Le Rayb8819552007-12-17 18:47:31 -0800482 }
483
484 for (i = 0; i < 2048; i++) {
485 struct cpl_l2t_write_req *req;
486
Divy Le Ray74b793e2009-06-09 23:25:21 +0000487 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
488 if (!skb)
489 skb = adap->nofail_skb;
490 if (!skb)
491 goto alloc_skb_fail;
492
Divy Le Rayb8819552007-12-17 18:47:31 -0800493 req = (struct cpl_l2t_write_req *)__skb_put(skb, sizeof(*req));
494 memset(req, 0, sizeof(*req));
495 req->wr.wr_hi = htonl(V_WR_OP(FW_WROPCODE_FORWARD));
496 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_L2T_WRITE_REQ, i));
497 req->params = htonl(V_L2T_W_IDX(i));
498 t3_mgmt_tx(adap, skb);
Divy Le Ray74b793e2009-06-09 23:25:21 +0000499 if (skb == adap->nofail_skb) {
500 await_mgmt_replies(adap, cnt, 16 + i + 1);
501 adap->nofail_skb = alloc_skb(sizeof(*greq), GFP_KERNEL);
502 if (!adap->nofail_skb)
503 goto alloc_skb_fail;
504 }
Divy Le Rayb8819552007-12-17 18:47:31 -0800505 }
506
507 for (i = 0; i < 2048; i++) {
508 struct cpl_rte_write_req *req;
509
Divy Le Ray74b793e2009-06-09 23:25:21 +0000510 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
511 if (!skb)
512 skb = adap->nofail_skb;
513 if (!skb)
514 goto alloc_skb_fail;
515
Divy Le Rayb8819552007-12-17 18:47:31 -0800516 req = (struct cpl_rte_write_req *)__skb_put(skb, sizeof(*req));
517 memset(req, 0, sizeof(*req));
518 req->wr.wr_hi = htonl(V_WR_OP(FW_WROPCODE_FORWARD));
519 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_RTE_WRITE_REQ, i));
520 req->l2t_idx = htonl(V_L2T_W_IDX(i));
521 t3_mgmt_tx(adap, skb);
Divy Le Ray74b793e2009-06-09 23:25:21 +0000522 if (skb == adap->nofail_skb) {
523 await_mgmt_replies(adap, cnt, 16 + 2048 + i + 1);
524 adap->nofail_skb = alloc_skb(sizeof(*greq), GFP_KERNEL);
525 if (!adap->nofail_skb)
526 goto alloc_skb_fail;
527 }
Divy Le Rayb8819552007-12-17 18:47:31 -0800528 }
529
Divy Le Ray74b793e2009-06-09 23:25:21 +0000530 skb = alloc_skb(sizeof(*greq), GFP_KERNEL);
531 if (!skb)
532 skb = adap->nofail_skb;
533 if (!skb)
534 goto alloc_skb_fail;
535
Divy Le Rayb8819552007-12-17 18:47:31 -0800536 greq = (struct cpl_set_tcb_field *)__skb_put(skb, sizeof(*greq));
537 memset(greq, 0, sizeof(*greq));
538 greq->wr.wr_hi = htonl(V_WR_OP(FW_WROPCODE_FORWARD));
539 OPCODE_TID(greq) = htonl(MK_OPCODE_TID(CPL_SET_TCB_FIELD, 0));
540 greq->mask = cpu_to_be64(1);
541 t3_mgmt_tx(adap, skb);
542
543 i = await_mgmt_replies(adap, cnt, 16 + 2048 + 2048 + 1);
Divy Le Ray74b793e2009-06-09 23:25:21 +0000544 if (skb == adap->nofail_skb) {
545 i = await_mgmt_replies(adap, cnt, 16 + 2048 + 2048 + 1);
546 adap->nofail_skb = alloc_skb(sizeof(*greq), GFP_KERNEL);
547 }
548
Divy Le Rayb8819552007-12-17 18:47:31 -0800549 t3_tp_set_offload_mode(adap, 0);
550 return i;
Divy Le Ray74b793e2009-06-09 23:25:21 +0000551
552alloc_skb_fail:
553 t3_tp_set_offload_mode(adap, 0);
554 return -ENOMEM;
Divy Le Rayb8819552007-12-17 18:47:31 -0800555}
556
Divy Le Ray4d22de32007-01-18 22:04:14 -0500557/**
558 * setup_rss - configure RSS
559 * @adap: the adapter
560 *
561 * Sets up RSS to distribute packets to multiple receive queues. We
562 * configure the RSS CPU lookup table to distribute to the number of HW
563 * receive queues, and the response queue lookup table to narrow that
564 * down to the response queues actually configured for each port.
565 * We always configure the RSS mapping for two ports since the mapping
566 * table has plenty of entries.
567 */
568static void setup_rss(struct adapter *adap)
569{
570 int i;
571 unsigned int nq0 = adap2pinfo(adap, 0)->nqsets;
572 unsigned int nq1 = adap->port[1] ? adap2pinfo(adap, 1)->nqsets : 1;
573 u8 cpus[SGE_QSETS + 1];
574 u16 rspq_map[RSS_TABLE_SIZE];
575
576 for (i = 0; i < SGE_QSETS; ++i)
577 cpus[i] = i;
578 cpus[SGE_QSETS] = 0xff; /* terminator */
579
580 for (i = 0; i < RSS_TABLE_SIZE / 2; ++i) {
581 rspq_map[i] = i % nq0;
582 rspq_map[i + RSS_TABLE_SIZE / 2] = (i % nq1) + nq0;
583 }
584
585 t3_config_rss(adap, F_RQFEEDBACKENABLE | F_TNLLKPEN | F_TNLMAPEN |
586 F_TNLPRTEN | F_TNL2TUPEN | F_TNL4TUPEN |
Divy Le Raya2604be2007-11-16 11:22:16 -0800587 V_RRCPLCPUSIZE(6) | F_HASHTOEPLITZ, cpus, rspq_map);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500588}
589
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700590static void init_napi(struct adapter *adap)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500591{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700592 int i;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500593
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700594 for (i = 0; i < SGE_QSETS; i++) {
595 struct sge_qset *qs = &adap->sge.qs[i];
Divy Le Ray4d22de32007-01-18 22:04:14 -0500596
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700597 if (qs->adap)
598 netif_napi_add(qs->netdev, &qs->napi, qs->napi.poll,
599 64);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500600 }
Divy Le Ray48c4b6d2008-05-06 19:25:56 -0700601
602 /*
603 * netif_napi_add() can be called only once per napi_struct because it
604 * adds each new napi_struct to a list. Be careful not to call it a
605 * second time, e.g., during EEH recovery, by making a note of it.
606 */
607 adap->flags |= NAPI_INIT;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500608}
609
610/*
611 * Wait until all NAPI handlers are descheduled. This includes the handlers of
612 * both netdevices representing interfaces and the dummy ones for the extra
613 * queues.
614 */
615static void quiesce_rx(struct adapter *adap)
616{
617 int i;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500618
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700619 for (i = 0; i < SGE_QSETS; i++)
620 if (adap->sge.qs[i].adap)
621 napi_disable(&adap->sge.qs[i].napi);
622}
Divy Le Ray4d22de32007-01-18 22:04:14 -0500623
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700624static void enable_all_napi(struct adapter *adap)
625{
626 int i;
627 for (i = 0; i < SGE_QSETS; i++)
628 if (adap->sge.qs[i].adap)
629 napi_enable(&adap->sge.qs[i].napi);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500630}
631
632/**
Divy Le Ray04ecb072008-10-28 22:40:32 -0700633 * set_qset_lro - Turn a queue set's LRO capability on and off
634 * @dev: the device the qset is attached to
635 * @qset_idx: the queue set index
636 * @val: the LRO switch
637 *
638 * Sets LRO on or off for a particular queue set.
639 * the device's features flag is updated to reflect the LRO
640 * capability when all queues belonging to the device are
641 * in the same state.
642 */
643static void set_qset_lro(struct net_device *dev, int qset_idx, int val)
644{
645 struct port_info *pi = netdev_priv(dev);
646 struct adapter *adapter = pi->adapter;
Divy Le Ray04ecb072008-10-28 22:40:32 -0700647
648 adapter->params.sge.qset[qset_idx].lro = !!val;
649 adapter->sge.qs[qset_idx].lro_enabled = !!val;
Divy Le Ray04ecb072008-10-28 22:40:32 -0700650}
651
652/**
Divy Le Ray4d22de32007-01-18 22:04:14 -0500653 * setup_sge_qsets - configure SGE Tx/Rx/response queues
654 * @adap: the adapter
655 *
656 * Determines how many sets of SGE queues to use and initializes them.
657 * We support multiple queue sets per port if we have MSI-X, otherwise
658 * just one queue set per port.
659 */
660static int setup_sge_qsets(struct adapter *adap)
661{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700662 int i, j, err, irq_idx = 0, qset_idx = 0;
Divy Le Ray8ac3ba62007-03-31 00:23:19 -0700663 unsigned int ntxq = SGE_TXQ_PER_SET;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500664
665 if (adap->params.rev > 0 && !(adap->flags & USING_MSI))
666 irq_idx = -1;
667
668 for_each_port(adap, i) {
669 struct net_device *dev = adap->port[i];
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700670 struct port_info *pi = netdev_priv(dev);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500671
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700672 pi->qs = &adap->sge.qs[pi->first_qset];
Divy Le Ray8c263762008-10-08 17:37:33 -0700673 for (j = pi->first_qset; j < pi->first_qset + pi->nqsets;
674 ++j, ++qset_idx) {
Roland Dreier47fd23f2009-01-11 00:19:36 -0800675 set_qset_lro(dev, qset_idx, pi->rx_offload & T3_LRO);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500676 err = t3_sge_alloc_qset(adap, qset_idx, 1,
677 (adap->flags & USING_MSIX) ? qset_idx + 1 :
678 irq_idx,
Divy Le Ray82ad3322008-12-16 01:09:39 -0800679 &adap->params.sge.qset[qset_idx], ntxq, dev,
680 netdev_get_tx_queue(dev, j));
Divy Le Ray4d22de32007-01-18 22:04:14 -0500681 if (err) {
682 t3_free_sge_resources(adap);
683 return err;
684 }
685 }
686 }
687
688 return 0;
689}
690
Divy Le Ray3e5192e2007-11-16 11:22:10 -0800691static ssize_t attr_show(struct device *d, char *buf,
Divy Le Ray896392e2007-02-24 16:43:50 -0800692 ssize_t(*format) (struct net_device *, char *))
Divy Le Ray4d22de32007-01-18 22:04:14 -0500693{
694 ssize_t len;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500695
696 /* Synchronize with ioctls that may shut down the device */
697 rtnl_lock();
Divy Le Ray896392e2007-02-24 16:43:50 -0800698 len = (*format) (to_net_dev(d), buf);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500699 rtnl_unlock();
700 return len;
701}
702
Divy Le Ray3e5192e2007-11-16 11:22:10 -0800703static ssize_t attr_store(struct device *d,
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800704 const char *buf, size_t len,
Divy Le Ray896392e2007-02-24 16:43:50 -0800705 ssize_t(*set) (struct net_device *, unsigned int),
Divy Le Ray4d22de32007-01-18 22:04:14 -0500706 unsigned int min_val, unsigned int max_val)
707{
708 char *endp;
709 ssize_t ret;
710 unsigned int val;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500711
712 if (!capable(CAP_NET_ADMIN))
713 return -EPERM;
714
715 val = simple_strtoul(buf, &endp, 0);
716 if (endp == buf || val < min_val || val > max_val)
717 return -EINVAL;
718
719 rtnl_lock();
Divy Le Ray896392e2007-02-24 16:43:50 -0800720 ret = (*set) (to_net_dev(d), val);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500721 if (!ret)
722 ret = len;
723 rtnl_unlock();
724 return ret;
725}
726
727#define CXGB3_SHOW(name, val_expr) \
Divy Le Ray896392e2007-02-24 16:43:50 -0800728static ssize_t format_##name(struct net_device *dev, char *buf) \
Divy Le Ray4d22de32007-01-18 22:04:14 -0500729{ \
Divy Le Ray5fbf8162007-08-29 19:15:47 -0700730 struct port_info *pi = netdev_priv(dev); \
731 struct adapter *adap = pi->adapter; \
Divy Le Ray4d22de32007-01-18 22:04:14 -0500732 return sprintf(buf, "%u\n", val_expr); \
733} \
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800734static ssize_t show_##name(struct device *d, struct device_attribute *attr, \
735 char *buf) \
Divy Le Ray4d22de32007-01-18 22:04:14 -0500736{ \
Divy Le Ray3e5192e2007-11-16 11:22:10 -0800737 return attr_show(d, buf, format_##name); \
Divy Le Ray4d22de32007-01-18 22:04:14 -0500738}
739
Divy Le Ray896392e2007-02-24 16:43:50 -0800740static ssize_t set_nfilters(struct net_device *dev, unsigned int val)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500741{
Divy Le Ray5fbf8162007-08-29 19:15:47 -0700742 struct port_info *pi = netdev_priv(dev);
743 struct adapter *adap = pi->adapter;
Divy Le Ray9f238482007-03-31 00:23:13 -0700744 int min_tids = is_offload(adap) ? MC5_MIN_TIDS : 0;
Divy Le Ray896392e2007-02-24 16:43:50 -0800745
Divy Le Ray4d22de32007-01-18 22:04:14 -0500746 if (adap->flags & FULL_INIT_DONE)
747 return -EBUSY;
748 if (val && adap->params.rev == 0)
749 return -EINVAL;
Divy Le Ray9f238482007-03-31 00:23:13 -0700750 if (val > t3_mc5_size(&adap->mc5) - adap->params.mc5.nservers -
751 min_tids)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500752 return -EINVAL;
753 adap->params.mc5.nfilters = val;
754 return 0;
755}
756
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800757static ssize_t store_nfilters(struct device *d, struct device_attribute *attr,
758 const char *buf, size_t len)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500759{
Divy Le Ray3e5192e2007-11-16 11:22:10 -0800760 return attr_store(d, buf, len, set_nfilters, 0, ~0);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500761}
762
Divy Le Ray896392e2007-02-24 16:43:50 -0800763static ssize_t set_nservers(struct net_device *dev, unsigned int val)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500764{
Divy Le Ray5fbf8162007-08-29 19:15:47 -0700765 struct port_info *pi = netdev_priv(dev);
766 struct adapter *adap = pi->adapter;
Divy Le Ray896392e2007-02-24 16:43:50 -0800767
Divy Le Ray4d22de32007-01-18 22:04:14 -0500768 if (adap->flags & FULL_INIT_DONE)
769 return -EBUSY;
Divy Le Ray9f238482007-03-31 00:23:13 -0700770 if (val > t3_mc5_size(&adap->mc5) - adap->params.mc5.nfilters -
771 MC5_MIN_TIDS)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500772 return -EINVAL;
773 adap->params.mc5.nservers = val;
774 return 0;
775}
776
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800777static ssize_t store_nservers(struct device *d, struct device_attribute *attr,
778 const char *buf, size_t len)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500779{
Divy Le Ray3e5192e2007-11-16 11:22:10 -0800780 return attr_store(d, buf, len, set_nservers, 0, ~0);
Divy Le Ray4d22de32007-01-18 22:04:14 -0500781}
782
783#define CXGB3_ATTR_R(name, val_expr) \
784CXGB3_SHOW(name, val_expr) \
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800785static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500786
787#define CXGB3_ATTR_RW(name, val_expr, store_method) \
788CXGB3_SHOW(name, val_expr) \
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800789static DEVICE_ATTR(name, S_IRUGO | S_IWUSR, show_##name, store_method)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500790
791CXGB3_ATTR_R(cam_size, t3_mc5_size(&adap->mc5));
792CXGB3_ATTR_RW(nfilters, adap->params.mc5.nfilters, store_nfilters);
793CXGB3_ATTR_RW(nservers, adap->params.mc5.nservers, store_nservers);
794
795static struct attribute *cxgb3_attrs[] = {
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800796 &dev_attr_cam_size.attr,
797 &dev_attr_nfilters.attr,
798 &dev_attr_nservers.attr,
Divy Le Ray4d22de32007-01-18 22:04:14 -0500799 NULL
800};
801
802static struct attribute_group cxgb3_attr_group = {.attrs = cxgb3_attrs };
803
Divy Le Ray3e5192e2007-11-16 11:22:10 -0800804static ssize_t tm_attr_show(struct device *d,
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800805 char *buf, int sched)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500806{
Divy Le Ray5fbf8162007-08-29 19:15:47 -0700807 struct port_info *pi = netdev_priv(to_net_dev(d));
808 struct adapter *adap = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500809 unsigned int v, addr, bpt, cpt;
Divy Le Ray5fbf8162007-08-29 19:15:47 -0700810 ssize_t len;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500811
812 addr = A_TP_TX_MOD_Q1_Q0_RATE_LIMIT - sched / 2;
813 rtnl_lock();
814 t3_write_reg(adap, A_TP_TM_PIO_ADDR, addr);
815 v = t3_read_reg(adap, A_TP_TM_PIO_DATA);
816 if (sched & 1)
817 v >>= 16;
818 bpt = (v >> 8) & 0xff;
819 cpt = v & 0xff;
820 if (!cpt)
821 len = sprintf(buf, "disabled\n");
822 else {
823 v = (adap->params.vpd.cclk * 1000) / cpt;
824 len = sprintf(buf, "%u Kbps\n", (v * bpt) / 125);
825 }
826 rtnl_unlock();
827 return len;
828}
829
Divy Le Ray3e5192e2007-11-16 11:22:10 -0800830static ssize_t tm_attr_store(struct device *d,
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800831 const char *buf, size_t len, int sched)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500832{
Divy Le Ray5fbf8162007-08-29 19:15:47 -0700833 struct port_info *pi = netdev_priv(to_net_dev(d));
834 struct adapter *adap = pi->adapter;
835 unsigned int val;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500836 char *endp;
837 ssize_t ret;
Divy Le Ray4d22de32007-01-18 22:04:14 -0500838
839 if (!capable(CAP_NET_ADMIN))
840 return -EPERM;
841
842 val = simple_strtoul(buf, &endp, 0);
843 if (endp == buf || val > 10000000)
844 return -EINVAL;
845
846 rtnl_lock();
847 ret = t3_config_sched(adap, val, sched);
848 if (!ret)
849 ret = len;
850 rtnl_unlock();
851 return ret;
852}
853
854#define TM_ATTR(name, sched) \
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800855static ssize_t show_##name(struct device *d, struct device_attribute *attr, \
856 char *buf) \
Divy Le Ray4d22de32007-01-18 22:04:14 -0500857{ \
Divy Le Ray3e5192e2007-11-16 11:22:10 -0800858 return tm_attr_show(d, buf, sched); \
Divy Le Ray4d22de32007-01-18 22:04:14 -0500859} \
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800860static ssize_t store_##name(struct device *d, struct device_attribute *attr, \
861 const char *buf, size_t len) \
Divy Le Ray4d22de32007-01-18 22:04:14 -0500862{ \
Divy Le Ray3e5192e2007-11-16 11:22:10 -0800863 return tm_attr_store(d, buf, len, sched); \
Divy Le Ray4d22de32007-01-18 22:04:14 -0500864} \
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800865static DEVICE_ATTR(name, S_IRUGO | S_IWUSR, show_##name, store_##name)
Divy Le Ray4d22de32007-01-18 22:04:14 -0500866
867TM_ATTR(sched0, 0);
868TM_ATTR(sched1, 1);
869TM_ATTR(sched2, 2);
870TM_ATTR(sched3, 3);
871TM_ATTR(sched4, 4);
872TM_ATTR(sched5, 5);
873TM_ATTR(sched6, 6);
874TM_ATTR(sched7, 7);
875
876static struct attribute *offload_attrs[] = {
Divy Le Ray0ee8d332007-02-08 16:55:59 -0800877 &dev_attr_sched0.attr,
878 &dev_attr_sched1.attr,
879 &dev_attr_sched2.attr,
880 &dev_attr_sched3.attr,
881 &dev_attr_sched4.attr,
882 &dev_attr_sched5.attr,
883 &dev_attr_sched6.attr,
884 &dev_attr_sched7.attr,
Divy Le Ray4d22de32007-01-18 22:04:14 -0500885 NULL
886};
887
888static struct attribute_group offload_attr_group = {.attrs = offload_attrs };
889
890/*
891 * Sends an sk_buff to an offload queue driver
892 * after dealing with any active network taps.
893 */
894static inline int offload_tx(struct t3cdev *tdev, struct sk_buff *skb)
895{
896 int ret;
897
898 local_bh_disable();
899 ret = t3_offload_tx(tdev, skb);
900 local_bh_enable();
901 return ret;
902}
903
904static int write_smt_entry(struct adapter *adapter, int idx)
905{
906 struct cpl_smt_write_req *req;
907 struct sk_buff *skb = alloc_skb(sizeof(*req), GFP_KERNEL);
908
909 if (!skb)
910 return -ENOMEM;
911
912 req = (struct cpl_smt_write_req *)__skb_put(skb, sizeof(*req));
913 req->wr.wr_hi = htonl(V_WR_OP(FW_WROPCODE_FORWARD));
914 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_SMT_WRITE_REQ, idx));
915 req->mtu_idx = NMTUS - 1; /* should be 0 but there's a T3 bug */
916 req->iff = idx;
917 memset(req->src_mac1, 0, sizeof(req->src_mac1));
918 memcpy(req->src_mac0, adapter->port[idx]->dev_addr, ETH_ALEN);
919 skb->priority = 1;
920 offload_tx(&adapter->tdev, skb);
921 return 0;
922}
923
924static int init_smt(struct adapter *adapter)
925{
926 int i;
927
928 for_each_port(adapter, i)
929 write_smt_entry(adapter, i);
930 return 0;
931}
932
933static void init_port_mtus(struct adapter *adapter)
934{
935 unsigned int mtus = adapter->port[0]->mtu;
936
937 if (adapter->port[1])
938 mtus |= adapter->port[1]->mtu << 16;
939 t3_write_reg(adapter, A_TP_MTU_PORT_TABLE, mtus);
940}
941
Divy Le Ray8c263762008-10-08 17:37:33 -0700942static int send_pktsched_cmd(struct adapter *adap, int sched, int qidx, int lo,
Divy Le Ray14ab9892007-01-30 19:43:50 -0800943 int hi, int port)
944{
945 struct sk_buff *skb;
946 struct mngt_pktsched_wr *req;
Divy Le Ray8c263762008-10-08 17:37:33 -0700947 int ret;
Divy Le Ray14ab9892007-01-30 19:43:50 -0800948
Divy Le Ray74b793e2009-06-09 23:25:21 +0000949 skb = alloc_skb(sizeof(*req), GFP_KERNEL);
950 if (!skb)
951 skb = adap->nofail_skb;
952 if (!skb)
953 return -ENOMEM;
954
Divy Le Ray14ab9892007-01-30 19:43:50 -0800955 req = (struct mngt_pktsched_wr *)skb_put(skb, sizeof(*req));
956 req->wr_hi = htonl(V_WR_OP(FW_WROPCODE_MNGT));
957 req->mngt_opcode = FW_MNGTOPCODE_PKTSCHED_SET;
958 req->sched = sched;
959 req->idx = qidx;
960 req->min = lo;
961 req->max = hi;
962 req->binding = port;
Divy Le Ray8c263762008-10-08 17:37:33 -0700963 ret = t3_mgmt_tx(adap, skb);
Divy Le Ray74b793e2009-06-09 23:25:21 +0000964 if (skb == adap->nofail_skb) {
965 adap->nofail_skb = alloc_skb(sizeof(struct cpl_set_tcb_field),
966 GFP_KERNEL);
967 if (!adap->nofail_skb)
968 ret = -ENOMEM;
969 }
Divy Le Ray8c263762008-10-08 17:37:33 -0700970
971 return ret;
Divy Le Ray14ab9892007-01-30 19:43:50 -0800972}
973
Divy Le Ray8c263762008-10-08 17:37:33 -0700974static int bind_qsets(struct adapter *adap)
Divy Le Ray14ab9892007-01-30 19:43:50 -0800975{
Divy Le Ray8c263762008-10-08 17:37:33 -0700976 int i, j, err = 0;
Divy Le Ray14ab9892007-01-30 19:43:50 -0800977
978 for_each_port(adap, i) {
979 const struct port_info *pi = adap2pinfo(adap, i);
980
Divy Le Ray8c263762008-10-08 17:37:33 -0700981 for (j = 0; j < pi->nqsets; ++j) {
982 int ret = send_pktsched_cmd(adap, 1,
983 pi->first_qset + j, -1,
984 -1, i);
985 if (ret)
986 err = ret;
987 }
Divy Le Ray14ab9892007-01-30 19:43:50 -0800988 }
Divy Le Ray8c263762008-10-08 17:37:33 -0700989
990 return err;
Divy Le Ray14ab9892007-01-30 19:43:50 -0800991}
992
Divy Le Ray851fd7b2008-11-26 15:38:36 -0800993#define FW_FNAME "cxgb3/t3fw-%d.%d.%d.bin"
994#define TPSRAM_NAME "cxgb3/t3%c_psram-%d.%d.%d.bin"
Divy Le Ray2e8c07c2009-07-07 19:49:09 +0000995#define AEL2005_OPT_EDC_NAME "cxgb3/ael2005_opt_edc.bin"
996#define AEL2005_TWX_EDC_NAME "cxgb3/ael2005_twx_edc.bin"
997#define AEL2020_TWX_EDC_NAME "cxgb3/ael2005_twx_edc.bin"
998
999static inline const char *get_edc_fw_name(int edc_idx)
1000{
1001 const char *fw_name = NULL;
1002
1003 switch (edc_idx) {
1004 case EDC_OPT_AEL2005:
1005 fw_name = AEL2005_OPT_EDC_NAME;
1006 break;
1007 case EDC_TWX_AEL2005:
1008 fw_name = AEL2005_TWX_EDC_NAME;
1009 break;
1010 case EDC_TWX_AEL2020:
1011 fw_name = AEL2020_TWX_EDC_NAME;
1012 break;
1013 }
1014 return fw_name;
1015}
1016
1017int t3_get_edc_fw(struct cphy *phy, int edc_idx, int size)
1018{
1019 struct adapter *adapter = phy->adapter;
1020 const struct firmware *fw;
1021 char buf[64];
1022 u32 csum;
1023 const __be32 *p;
1024 u16 *cache = phy->phy_cache;
1025 int i, ret;
1026
1027 snprintf(buf, sizeof(buf), get_edc_fw_name(edc_idx));
1028
1029 ret = request_firmware(&fw, buf, &adapter->pdev->dev);
1030 if (ret < 0) {
1031 dev_err(&adapter->pdev->dev,
1032 "could not upgrade firmware: unable to load %s\n",
1033 buf);
1034 return ret;
1035 }
1036
1037 /* check size, take checksum in account */
1038 if (fw->size > size + 4) {
1039 CH_ERR(adapter, "firmware image too large %u, expected %d\n",
1040 (unsigned int)fw->size, size + 4);
1041 ret = -EINVAL;
1042 }
1043
1044 /* compute checksum */
1045 p = (const __be32 *)fw->data;
1046 for (csum = 0, i = 0; i < fw->size / sizeof(csum); i++)
1047 csum += ntohl(p[i]);
1048
1049 if (csum != 0xffffffff) {
1050 CH_ERR(adapter, "corrupted firmware image, checksum %u\n",
1051 csum);
1052 ret = -EINVAL;
1053 }
1054
1055 for (i = 0; i < size / 4 ; i++) {
1056 *cache++ = (be32_to_cpu(p[i]) & 0xffff0000) >> 16;
1057 *cache++ = be32_to_cpu(p[i]) & 0xffff;
1058 }
1059
1060 release_firmware(fw);
1061
1062 return ret;
1063}
Divy Le Ray2e283962007-03-18 13:10:06 -07001064
1065static int upgrade_fw(struct adapter *adap)
1066{
1067 int ret;
1068 char buf[64];
1069 const struct firmware *fw;
1070 struct device *dev = &adap->pdev->dev;
1071
1072 snprintf(buf, sizeof(buf), FW_FNAME, FW_VERSION_MAJOR,
Divy Le Ray7f672cf2007-03-31 00:23:30 -07001073 FW_VERSION_MINOR, FW_VERSION_MICRO);
Divy Le Ray2e283962007-03-18 13:10:06 -07001074 ret = request_firmware(&fw, buf, dev);
1075 if (ret < 0) {
1076 dev_err(dev, "could not upgrade firmware: unable to load %s\n",
1077 buf);
1078 return ret;
1079 }
1080 ret = t3_load_fw(adap, fw->data, fw->size);
1081 release_firmware(fw);
Divy Le Ray47330072007-08-29 19:15:52 -07001082
1083 if (ret == 0)
1084 dev_info(dev, "successful upgrade to firmware %d.%d.%d\n",
1085 FW_VERSION_MAJOR, FW_VERSION_MINOR, FW_VERSION_MICRO);
1086 else
1087 dev_err(dev, "failed to upgrade to firmware %d.%d.%d\n",
1088 FW_VERSION_MAJOR, FW_VERSION_MINOR, FW_VERSION_MICRO);
Jeff Garzik2eab17a2007-11-23 21:59:45 -05001089
Divy Le Ray47330072007-08-29 19:15:52 -07001090 return ret;
1091}
1092
1093static inline char t3rev2char(struct adapter *adapter)
1094{
1095 char rev = 0;
1096
1097 switch(adapter->params.rev) {
1098 case T3_REV_B:
1099 case T3_REV_B2:
1100 rev = 'b';
1101 break;
Divy Le Ray1aafee22007-09-05 15:58:36 -07001102 case T3_REV_C:
1103 rev = 'c';
1104 break;
Divy Le Ray47330072007-08-29 19:15:52 -07001105 }
1106 return rev;
1107}
1108
Stephen Hemminger9265fab2007-10-08 16:22:29 -07001109static int update_tpsram(struct adapter *adap)
Divy Le Ray47330072007-08-29 19:15:52 -07001110{
1111 const struct firmware *tpsram;
1112 char buf[64];
1113 struct device *dev = &adap->pdev->dev;
1114 int ret;
1115 char rev;
Jeff Garzik2eab17a2007-11-23 21:59:45 -05001116
Divy Le Ray47330072007-08-29 19:15:52 -07001117 rev = t3rev2char(adap);
1118 if (!rev)
1119 return 0;
1120
1121 snprintf(buf, sizeof(buf), TPSRAM_NAME, rev,
1122 TP_VERSION_MAJOR, TP_VERSION_MINOR, TP_VERSION_MICRO);
1123
1124 ret = request_firmware(&tpsram, buf, dev);
1125 if (ret < 0) {
1126 dev_err(dev, "could not load TP SRAM: unable to load %s\n",
1127 buf);
1128 return ret;
1129 }
Jeff Garzik2eab17a2007-11-23 21:59:45 -05001130
Divy Le Ray47330072007-08-29 19:15:52 -07001131 ret = t3_check_tpsram(adap, tpsram->data, tpsram->size);
1132 if (ret)
Jeff Garzik2eab17a2007-11-23 21:59:45 -05001133 goto release_tpsram;
Divy Le Ray47330072007-08-29 19:15:52 -07001134
1135 ret = t3_set_proto_sram(adap, tpsram->data);
1136 if (ret == 0)
1137 dev_info(dev,
1138 "successful update of protocol engine "
1139 "to %d.%d.%d\n",
1140 TP_VERSION_MAJOR, TP_VERSION_MINOR, TP_VERSION_MICRO);
1141 else
1142 dev_err(dev, "failed to update of protocol engine %d.%d.%d\n",
1143 TP_VERSION_MAJOR, TP_VERSION_MINOR, TP_VERSION_MICRO);
1144 if (ret)
1145 dev_err(dev, "loading protocol SRAM failed\n");
1146
1147release_tpsram:
1148 release_firmware(tpsram);
Jeff Garzik2eab17a2007-11-23 21:59:45 -05001149
Divy Le Ray2e283962007-03-18 13:10:06 -07001150 return ret;
1151}
1152
Divy Le Ray4d22de32007-01-18 22:04:14 -05001153/**
1154 * cxgb_up - enable the adapter
1155 * @adapter: adapter being enabled
1156 *
1157 * Called when the first port is enabled, this function performs the
1158 * actions necessary to make an adapter operational, such as completing
1159 * the initialization of HW modules, and enabling interrupts.
1160 *
1161 * Must be called with the rtnl lock held.
1162 */
1163static int cxgb_up(struct adapter *adap)
1164{
Denis Chengc54f5c22007-07-18 15:24:49 +08001165 int err;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001166
1167 if (!(adap->flags & FULL_INIT_DONE)) {
Divy Le Ray8207bef2008-12-16 01:51:47 -08001168 err = t3_check_fw_version(adap);
Divy Le Raya5a3b462007-09-05 15:58:09 -07001169 if (err == -EINVAL) {
Divy Le Ray2e283962007-03-18 13:10:06 -07001170 err = upgrade_fw(adap);
Divy Le Ray8207bef2008-12-16 01:51:47 -08001171 CH_WARN(adap, "FW upgrade to %d.%d.%d %s\n",
1172 FW_VERSION_MAJOR, FW_VERSION_MINOR,
1173 FW_VERSION_MICRO, err ? "failed" : "succeeded");
Divy Le Raya5a3b462007-09-05 15:58:09 -07001174 }
Divy Le Ray4d22de32007-01-18 22:04:14 -05001175
Divy Le Ray8207bef2008-12-16 01:51:47 -08001176 err = t3_check_tpsram_version(adap);
Divy Le Ray47330072007-08-29 19:15:52 -07001177 if (err == -EINVAL) {
1178 err = update_tpsram(adap);
Divy Le Ray8207bef2008-12-16 01:51:47 -08001179 CH_WARN(adap, "TP upgrade to %d.%d.%d %s\n",
1180 TP_VERSION_MAJOR, TP_VERSION_MINOR,
1181 TP_VERSION_MICRO, err ? "failed" : "succeeded");
Divy Le Ray47330072007-08-29 19:15:52 -07001182 }
1183
Divy Le Ray20d3fc12008-10-08 17:36:03 -07001184 /*
1185 * Clear interrupts now to catch errors if t3_init_hw fails.
1186 * We clear them again later as initialization may trigger
1187 * conditions that can interrupt.
1188 */
1189 t3_intr_clear(adap);
1190
Divy Le Ray4d22de32007-01-18 22:04:14 -05001191 err = t3_init_hw(adap, 0);
1192 if (err)
1193 goto out;
1194
Divy Le Rayb8819552007-12-17 18:47:31 -08001195 t3_set_reg_field(adap, A_TP_PARA_REG5, 0, F_RXDDPOFFINIT);
Divy Le Ray6cdbd772007-04-09 20:10:33 -07001196 t3_write_reg(adap, A_ULPRX_TDDP_PSZ, V_HPZ0(PAGE_SHIFT - 12));
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001197
Divy Le Ray4d22de32007-01-18 22:04:14 -05001198 err = setup_sge_qsets(adap);
1199 if (err)
1200 goto out;
1201
1202 setup_rss(adap);
Divy Le Ray48c4b6d2008-05-06 19:25:56 -07001203 if (!(adap->flags & NAPI_INIT))
1204 init_napi(adap);
Divy Le Ray31563782009-03-26 16:39:09 +00001205
1206 t3_start_sge_timers(adap);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001207 adap->flags |= FULL_INIT_DONE;
1208 }
1209
1210 t3_intr_clear(adap);
1211
1212 if (adap->flags & USING_MSIX) {
1213 name_msix_vecs(adap);
1214 err = request_irq(adap->msix_info[0].vec,
1215 t3_async_intr_handler, 0,
1216 adap->msix_info[0].desc, adap);
1217 if (err)
1218 goto irq_err;
1219
Divy Le Ray42256f52007-11-16 11:21:39 -08001220 err = request_msix_data_irqs(adap);
1221 if (err) {
Divy Le Ray4d22de32007-01-18 22:04:14 -05001222 free_irq(adap->msix_info[0].vec, adap);
1223 goto irq_err;
1224 }
1225 } else if ((err = request_irq(adap->pdev->irq,
1226 t3_intr_handler(adap,
1227 adap->sge.qs[0].rspq.
1228 polling),
Thomas Gleixner2db63462007-02-14 00:33:20 -08001229 (adap->flags & USING_MSI) ?
1230 0 : IRQF_SHARED,
Divy Le Ray4d22de32007-01-18 22:04:14 -05001231 adap->name, adap)))
1232 goto irq_err;
1233
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001234 enable_all_napi(adap);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001235 t3_sge_start(adap);
1236 t3_intr_enable(adap);
Divy Le Ray14ab9892007-01-30 19:43:50 -08001237
Divy Le Rayb8819552007-12-17 18:47:31 -08001238 if (adap->params.rev >= T3_REV_C && !(adap->flags & TP_PARITY_INIT) &&
1239 is_offload(adap) && init_tp_parity(adap) == 0)
1240 adap->flags |= TP_PARITY_INIT;
1241
1242 if (adap->flags & TP_PARITY_INIT) {
1243 t3_write_reg(adap, A_TP_INT_CAUSE,
1244 F_CMCACHEPERR | F_ARPLUTPERR);
1245 t3_write_reg(adap, A_TP_INT_ENABLE, 0x7fbfffff);
1246 }
1247
Divy Le Ray8c263762008-10-08 17:37:33 -07001248 if (!(adap->flags & QUEUES_BOUND)) {
1249 err = bind_qsets(adap);
1250 if (err) {
1251 CH_ERR(adap, "failed to bind qsets, err %d\n", err);
1252 t3_intr_disable(adap);
1253 free_irq_resources(adap);
1254 goto out;
1255 }
1256 adap->flags |= QUEUES_BOUND;
1257 }
Divy Le Ray14ab9892007-01-30 19:43:50 -08001258
Divy Le Ray4d22de32007-01-18 22:04:14 -05001259out:
1260 return err;
1261irq_err:
1262 CH_ERR(adap, "request_irq failed, err %d\n", err);
1263 goto out;
1264}
1265
1266/*
1267 * Release resources when all the ports and offloading have been stopped.
1268 */
1269static void cxgb_down(struct adapter *adapter)
1270{
1271 t3_sge_stop(adapter);
1272 spin_lock_irq(&adapter->work_lock); /* sync with PHY intr task */
1273 t3_intr_disable(adapter);
1274 spin_unlock_irq(&adapter->work_lock);
1275
Divy Le Ray8c263762008-10-08 17:37:33 -07001276 free_irq_resources(adapter);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001277 quiesce_rx(adapter);
Divy Le Rayc80b0c22009-04-17 12:21:17 +00001278 flush_workqueue(cxgb3_wq); /* wait for external IRQ handler */
Divy Le Ray4d22de32007-01-18 22:04:14 -05001279}
1280
1281static void schedule_chk_task(struct adapter *adap)
1282{
1283 unsigned int timeo;
1284
1285 timeo = adap->params.linkpoll_period ?
1286 (HZ * adap->params.linkpoll_period) / 10 :
1287 adap->params.stats_update_period * HZ;
1288 if (timeo)
1289 queue_delayed_work(cxgb3_wq, &adap->adap_check_task, timeo);
1290}
1291
1292static int offload_open(struct net_device *dev)
1293{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001294 struct port_info *pi = netdev_priv(dev);
1295 struct adapter *adapter = pi->adapter;
1296 struct t3cdev *tdev = dev2t3cdev(dev);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001297 int adap_up = adapter->open_device_map & PORT_MASK;
Denis Chengc54f5c22007-07-18 15:24:49 +08001298 int err;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001299
1300 if (test_and_set_bit(OFFLOAD_DEVMAP_BIT, &adapter->open_device_map))
1301 return 0;
1302
1303 if (!adap_up && (err = cxgb_up(adapter)) < 0)
Divy Le Ray48c4b6d2008-05-06 19:25:56 -07001304 goto out;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001305
1306 t3_tp_set_offload_mode(adapter, 1);
1307 tdev->lldev = adapter->port[0];
1308 err = cxgb3_offload_activate(adapter);
1309 if (err)
1310 goto out;
1311
1312 init_port_mtus(adapter);
1313 t3_load_mtus(adapter, adapter->params.mtus, adapter->params.a_wnd,
1314 adapter->params.b_wnd,
1315 adapter->params.rev == 0 ?
1316 adapter->port[0]->mtu : 0xffff);
1317 init_smt(adapter);
1318
Dan Noed96a51f2008-04-12 22:34:38 -04001319 if (sysfs_create_group(&tdev->lldev->dev.kobj, &offload_attr_group))
1320 dev_dbg(&dev->dev, "cannot create sysfs group\n");
Divy Le Ray4d22de32007-01-18 22:04:14 -05001321
1322 /* Call back all registered clients */
1323 cxgb3_add_clients(tdev);
1324
1325out:
1326 /* restore them in case the offload module has changed them */
1327 if (err) {
1328 t3_tp_set_offload_mode(adapter, 0);
1329 clear_bit(OFFLOAD_DEVMAP_BIT, &adapter->open_device_map);
1330 cxgb3_set_dummy_ops(tdev);
1331 }
1332 return err;
1333}
1334
1335static int offload_close(struct t3cdev *tdev)
1336{
1337 struct adapter *adapter = tdev2adap(tdev);
1338
1339 if (!test_bit(OFFLOAD_DEVMAP_BIT, &adapter->open_device_map))
1340 return 0;
1341
1342 /* Call back all registered clients */
1343 cxgb3_remove_clients(tdev);
1344
Divy Le Ray0ee8d332007-02-08 16:55:59 -08001345 sysfs_remove_group(&tdev->lldev->dev.kobj, &offload_attr_group);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001346
Divy Le Rayc80b0c22009-04-17 12:21:17 +00001347 /* Flush work scheduled while releasing TIDs */
1348 flush_scheduled_work();
1349
Divy Le Ray4d22de32007-01-18 22:04:14 -05001350 tdev->lldev = NULL;
1351 cxgb3_set_dummy_ops(tdev);
1352 t3_tp_set_offload_mode(adapter, 0);
1353 clear_bit(OFFLOAD_DEVMAP_BIT, &adapter->open_device_map);
1354
1355 if (!adapter->open_device_map)
1356 cxgb_down(adapter);
1357
1358 cxgb3_offload_deactivate(adapter);
1359 return 0;
1360}
1361
1362static int cxgb_open(struct net_device *dev)
1363{
Divy Le Ray4d22de32007-01-18 22:04:14 -05001364 struct port_info *pi = netdev_priv(dev);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001365 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001366 int other_ports = adapter->open_device_map & PORT_MASK;
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001367 int err;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001368
Divy Le Ray48c4b6d2008-05-06 19:25:56 -07001369 if (!adapter->open_device_map && (err = cxgb_up(adapter)) < 0)
Divy Le Ray4d22de32007-01-18 22:04:14 -05001370 return err;
1371
1372 set_bit(pi->port_id, &adapter->open_device_map);
Divy Le Ray8ac3ba62007-03-31 00:23:19 -07001373 if (is_offload(adapter) && !ofld_disable) {
Divy Le Ray4d22de32007-01-18 22:04:14 -05001374 err = offload_open(dev);
1375 if (err)
1376 printk(KERN_WARNING
1377 "Could not initialize offload capabilities\n");
1378 }
1379
Divy Le Ray82ad3322008-12-16 01:09:39 -08001380 dev->real_num_tx_queues = pi->nqsets;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001381 link_start(dev);
1382 t3_port_intr_enable(adapter, pi->port_id);
Divy Le Ray82ad3322008-12-16 01:09:39 -08001383 netif_tx_start_all_queues(dev);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001384 if (!other_ports)
1385 schedule_chk_task(adapter);
1386
1387 return 0;
1388}
1389
1390static int cxgb_close(struct net_device *dev)
1391{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001392 struct port_info *pi = netdev_priv(dev);
1393 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001394
Divy Le Raye8d19372009-04-17 12:21:27 +00001395
1396 if (!adapter->open_device_map)
1397 return 0;
1398
Divy Le Raybf792092009-03-12 21:14:19 +00001399 /* Stop link fault interrupts */
1400 t3_xgm_intr_disable(adapter, pi->port_id);
1401 t3_read_reg(adapter, A_XGM_INT_STATUS + pi->mac.offset);
1402
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001403 t3_port_intr_disable(adapter, pi->port_id);
Divy Le Ray82ad3322008-12-16 01:09:39 -08001404 netif_tx_stop_all_queues(dev);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001405 pi->phy.ops->power_down(&pi->phy, 1);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001406 netif_carrier_off(dev);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001407 t3_mac_disable(&pi->mac, MAC_DIRECTION_TX | MAC_DIRECTION_RX);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001408
Divy Le Ray20d3fc12008-10-08 17:36:03 -07001409 spin_lock_irq(&adapter->work_lock); /* sync with update task */
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001410 clear_bit(pi->port_id, &adapter->open_device_map);
Divy Le Ray20d3fc12008-10-08 17:36:03 -07001411 spin_unlock_irq(&adapter->work_lock);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001412
1413 if (!(adapter->open_device_map & PORT_MASK))
Divy Le Rayc80b0c22009-04-17 12:21:17 +00001414 cancel_delayed_work_sync(&adapter->adap_check_task);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001415
1416 if (!adapter->open_device_map)
1417 cxgb_down(adapter);
1418
1419 return 0;
1420}
1421
1422static struct net_device_stats *cxgb_get_stats(struct net_device *dev)
1423{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001424 struct port_info *pi = netdev_priv(dev);
1425 struct adapter *adapter = pi->adapter;
1426 struct net_device_stats *ns = &pi->netstats;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001427 const struct mac_stats *pstats;
1428
1429 spin_lock(&adapter->stats_lock);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001430 pstats = t3_mac_update_stats(&pi->mac);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001431 spin_unlock(&adapter->stats_lock);
1432
1433 ns->tx_bytes = pstats->tx_octets;
1434 ns->tx_packets = pstats->tx_frames;
1435 ns->rx_bytes = pstats->rx_octets;
1436 ns->rx_packets = pstats->rx_frames;
1437 ns->multicast = pstats->rx_mcast_frames;
1438
1439 ns->tx_errors = pstats->tx_underrun;
1440 ns->rx_errors = pstats->rx_symbol_errs + pstats->rx_fcs_errs +
1441 pstats->rx_too_long + pstats->rx_jabber + pstats->rx_short +
1442 pstats->rx_fifo_ovfl;
1443
1444 /* detailed rx_errors */
1445 ns->rx_length_errors = pstats->rx_jabber + pstats->rx_too_long;
1446 ns->rx_over_errors = 0;
1447 ns->rx_crc_errors = pstats->rx_fcs_errs;
1448 ns->rx_frame_errors = pstats->rx_symbol_errs;
1449 ns->rx_fifo_errors = pstats->rx_fifo_ovfl;
1450 ns->rx_missed_errors = pstats->rx_cong_drops;
1451
1452 /* detailed tx_errors */
1453 ns->tx_aborted_errors = 0;
1454 ns->tx_carrier_errors = 0;
1455 ns->tx_fifo_errors = pstats->tx_underrun;
1456 ns->tx_heartbeat_errors = 0;
1457 ns->tx_window_errors = 0;
1458 return ns;
1459}
1460
1461static u32 get_msglevel(struct net_device *dev)
1462{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001463 struct port_info *pi = netdev_priv(dev);
1464 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001465
1466 return adapter->msg_enable;
1467}
1468
1469static void set_msglevel(struct net_device *dev, u32 val)
1470{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001471 struct port_info *pi = netdev_priv(dev);
1472 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001473
1474 adapter->msg_enable = val;
1475}
1476
1477static char stats_strings[][ETH_GSTRING_LEN] = {
1478 "TxOctetsOK ",
1479 "TxFramesOK ",
1480 "TxMulticastFramesOK",
1481 "TxBroadcastFramesOK",
1482 "TxPauseFrames ",
1483 "TxUnderrun ",
1484 "TxExtUnderrun ",
1485
1486 "TxFrames64 ",
1487 "TxFrames65To127 ",
1488 "TxFrames128To255 ",
1489 "TxFrames256To511 ",
1490 "TxFrames512To1023 ",
1491 "TxFrames1024To1518 ",
1492 "TxFrames1519ToMax ",
1493
1494 "RxOctetsOK ",
1495 "RxFramesOK ",
1496 "RxMulticastFramesOK",
1497 "RxBroadcastFramesOK",
1498 "RxPauseFrames ",
1499 "RxFCSErrors ",
1500 "RxSymbolErrors ",
1501 "RxShortErrors ",
1502 "RxJabberErrors ",
1503 "RxLengthErrors ",
1504 "RxFIFOoverflow ",
1505
1506 "RxFrames64 ",
1507 "RxFrames65To127 ",
1508 "RxFrames128To255 ",
1509 "RxFrames256To511 ",
1510 "RxFrames512To1023 ",
1511 "RxFrames1024To1518 ",
1512 "RxFrames1519ToMax ",
1513
1514 "PhyFIFOErrors ",
1515 "TSO ",
1516 "VLANextractions ",
1517 "VLANinsertions ",
1518 "TxCsumOffload ",
1519 "RxCsumGood ",
Divy Le Rayb47385b2008-05-21 18:56:26 -07001520 "LroAggregated ",
1521 "LroFlushed ",
1522 "LroNoDesc ",
Divy Le Rayfc906642007-03-18 13:10:12 -07001523 "RxDrops ",
1524
1525 "CheckTXEnToggled ",
1526 "CheckResets ",
1527
Divy Le Raybf792092009-03-12 21:14:19 +00001528 "LinkFaults ",
Divy Le Ray4d22de32007-01-18 22:04:14 -05001529};
1530
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001531static int get_sset_count(struct net_device *dev, int sset)
Divy Le Ray4d22de32007-01-18 22:04:14 -05001532{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001533 switch (sset) {
1534 case ETH_SS_STATS:
1535 return ARRAY_SIZE(stats_strings);
1536 default:
1537 return -EOPNOTSUPP;
1538 }
Divy Le Ray4d22de32007-01-18 22:04:14 -05001539}
1540
1541#define T3_REGMAP_SIZE (3 * 1024)
1542
1543static int get_regs_len(struct net_device *dev)
1544{
1545 return T3_REGMAP_SIZE;
1546}
1547
1548static int get_eeprom_len(struct net_device *dev)
1549{
1550 return EEPROMSIZE;
1551}
1552
1553static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1554{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001555 struct port_info *pi = netdev_priv(dev);
1556 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001557 u32 fw_vers = 0;
Divy Le Ray47330072007-08-29 19:15:52 -07001558 u32 tp_vers = 0;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001559
Steve Wisecf3760d2008-11-06 17:06:42 -06001560 spin_lock(&adapter->stats_lock);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001561 t3_get_fw_version(adapter, &fw_vers);
Divy Le Ray47330072007-08-29 19:15:52 -07001562 t3_get_tp_version(adapter, &tp_vers);
Steve Wisecf3760d2008-11-06 17:06:42 -06001563 spin_unlock(&adapter->stats_lock);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001564
1565 strcpy(info->driver, DRV_NAME);
1566 strcpy(info->version, DRV_VERSION);
1567 strcpy(info->bus_info, pci_name(adapter->pdev));
1568 if (!fw_vers)
1569 strcpy(info->fw_version, "N/A");
Divy Le Ray4aac3892007-01-30 19:43:45 -08001570 else {
Divy Le Ray4d22de32007-01-18 22:04:14 -05001571 snprintf(info->fw_version, sizeof(info->fw_version),
Divy Le Ray47330072007-08-29 19:15:52 -07001572 "%s %u.%u.%u TP %u.%u.%u",
Divy Le Ray4aac3892007-01-30 19:43:45 -08001573 G_FW_VERSION_TYPE(fw_vers) ? "T" : "N",
1574 G_FW_VERSION_MAJOR(fw_vers),
1575 G_FW_VERSION_MINOR(fw_vers),
Divy Le Ray47330072007-08-29 19:15:52 -07001576 G_FW_VERSION_MICRO(fw_vers),
1577 G_TP_VERSION_MAJOR(tp_vers),
1578 G_TP_VERSION_MINOR(tp_vers),
1579 G_TP_VERSION_MICRO(tp_vers));
Divy Le Ray4aac3892007-01-30 19:43:45 -08001580 }
Divy Le Ray4d22de32007-01-18 22:04:14 -05001581}
1582
1583static void get_strings(struct net_device *dev, u32 stringset, u8 * data)
1584{
1585 if (stringset == ETH_SS_STATS)
1586 memcpy(data, stats_strings, sizeof(stats_strings));
1587}
1588
1589static unsigned long collect_sge_port_stats(struct adapter *adapter,
1590 struct port_info *p, int idx)
1591{
1592 int i;
1593 unsigned long tot = 0;
1594
Divy Le Ray8c263762008-10-08 17:37:33 -07001595 for (i = p->first_qset; i < p->first_qset + p->nqsets; ++i)
1596 tot += adapter->sge.qs[i].port_stats[idx];
Divy Le Ray4d22de32007-01-18 22:04:14 -05001597 return tot;
1598}
1599
1600static void get_stats(struct net_device *dev, struct ethtool_stats *stats,
1601 u64 *data)
1602{
Divy Le Ray4d22de32007-01-18 22:04:14 -05001603 struct port_info *pi = netdev_priv(dev);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001604 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001605 const struct mac_stats *s;
1606
1607 spin_lock(&adapter->stats_lock);
1608 s = t3_mac_update_stats(&pi->mac);
1609 spin_unlock(&adapter->stats_lock);
1610
1611 *data++ = s->tx_octets;
1612 *data++ = s->tx_frames;
1613 *data++ = s->tx_mcast_frames;
1614 *data++ = s->tx_bcast_frames;
1615 *data++ = s->tx_pause;
1616 *data++ = s->tx_underrun;
1617 *data++ = s->tx_fifo_urun;
1618
1619 *data++ = s->tx_frames_64;
1620 *data++ = s->tx_frames_65_127;
1621 *data++ = s->tx_frames_128_255;
1622 *data++ = s->tx_frames_256_511;
1623 *data++ = s->tx_frames_512_1023;
1624 *data++ = s->tx_frames_1024_1518;
1625 *data++ = s->tx_frames_1519_max;
1626
1627 *data++ = s->rx_octets;
1628 *data++ = s->rx_frames;
1629 *data++ = s->rx_mcast_frames;
1630 *data++ = s->rx_bcast_frames;
1631 *data++ = s->rx_pause;
1632 *data++ = s->rx_fcs_errs;
1633 *data++ = s->rx_symbol_errs;
1634 *data++ = s->rx_short;
1635 *data++ = s->rx_jabber;
1636 *data++ = s->rx_too_long;
1637 *data++ = s->rx_fifo_ovfl;
1638
1639 *data++ = s->rx_frames_64;
1640 *data++ = s->rx_frames_65_127;
1641 *data++ = s->rx_frames_128_255;
1642 *data++ = s->rx_frames_256_511;
1643 *data++ = s->rx_frames_512_1023;
1644 *data++ = s->rx_frames_1024_1518;
1645 *data++ = s->rx_frames_1519_max;
1646
1647 *data++ = pi->phy.fifo_errors;
1648
1649 *data++ = collect_sge_port_stats(adapter, pi, SGE_PSTAT_TSO);
1650 *data++ = collect_sge_port_stats(adapter, pi, SGE_PSTAT_VLANEX);
1651 *data++ = collect_sge_port_stats(adapter, pi, SGE_PSTAT_VLANINS);
1652 *data++ = collect_sge_port_stats(adapter, pi, SGE_PSTAT_TX_CSUM);
1653 *data++ = collect_sge_port_stats(adapter, pi, SGE_PSTAT_RX_CSUM_GOOD);
Herbert Xu7be2df42009-01-21 14:39:13 -08001654 *data++ = 0;
1655 *data++ = 0;
1656 *data++ = 0;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001657 *data++ = s->rx_cong_drops;
Divy Le Rayfc906642007-03-18 13:10:12 -07001658
1659 *data++ = s->num_toggled;
1660 *data++ = s->num_resets;
Divy Le Raybf792092009-03-12 21:14:19 +00001661
1662 *data++ = s->link_faults;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001663}
1664
1665static inline void reg_block_dump(struct adapter *ap, void *buf,
1666 unsigned int start, unsigned int end)
1667{
1668 u32 *p = buf + start;
1669
1670 for (; start <= end; start += sizeof(u32))
1671 *p++ = t3_read_reg(ap, start);
1672}
1673
1674static void get_regs(struct net_device *dev, struct ethtool_regs *regs,
1675 void *buf)
1676{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001677 struct port_info *pi = netdev_priv(dev);
1678 struct adapter *ap = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001679
1680 /*
1681 * Version scheme:
1682 * bits 0..9: chip version
1683 * bits 10..15: chip revision
1684 * bit 31: set for PCIe cards
1685 */
1686 regs->version = 3 | (ap->params.rev << 10) | (is_pcie(ap) << 31);
1687
1688 /*
1689 * We skip the MAC statistics registers because they are clear-on-read.
1690 * Also reading multi-register stats would need to synchronize with the
1691 * periodic mac stats accumulation. Hard to justify the complexity.
1692 */
1693 memset(buf, 0, T3_REGMAP_SIZE);
1694 reg_block_dump(ap, buf, 0, A_SG_RSPQ_CREDIT_RETURN);
1695 reg_block_dump(ap, buf, A_SG_HI_DRB_HI_THRSH, A_ULPRX_PBL_ULIMIT);
1696 reg_block_dump(ap, buf, A_ULPTX_CONFIG, A_MPS_INT_CAUSE);
1697 reg_block_dump(ap, buf, A_CPL_SWITCH_CNTRL, A_CPL_MAP_TBL_DATA);
1698 reg_block_dump(ap, buf, A_SMB_GLOBAL_TIME_CFG, A_XGM_SERDES_STAT3);
1699 reg_block_dump(ap, buf, A_XGM_SERDES_STATUS0,
1700 XGM_REG(A_XGM_SERDES_STAT3, 1));
1701 reg_block_dump(ap, buf, XGM_REG(A_XGM_SERDES_STATUS0, 1),
1702 XGM_REG(A_XGM_RX_SPI4_SOP_EOP_CNT, 1));
1703}
1704
1705static int restart_autoneg(struct net_device *dev)
1706{
1707 struct port_info *p = netdev_priv(dev);
1708
1709 if (!netif_running(dev))
1710 return -EAGAIN;
1711 if (p->link_config.autoneg != AUTONEG_ENABLE)
1712 return -EINVAL;
1713 p->phy.ops->autoneg_restart(&p->phy);
1714 return 0;
1715}
1716
1717static int cxgb3_phys_id(struct net_device *dev, u32 data)
1718{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001719 struct port_info *pi = netdev_priv(dev);
1720 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001721 int i;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001722
1723 if (data == 0)
1724 data = 2;
1725
1726 for (i = 0; i < data * 2; i++) {
1727 t3_set_reg_field(adapter, A_T3DBG_GPIO_EN, F_GPIO0_OUT_VAL,
1728 (i & 1) ? F_GPIO0_OUT_VAL : 0);
1729 if (msleep_interruptible(500))
1730 break;
1731 }
1732 t3_set_reg_field(adapter, A_T3DBG_GPIO_EN, F_GPIO0_OUT_VAL,
1733 F_GPIO0_OUT_VAL);
1734 return 0;
1735}
1736
1737static int get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1738{
1739 struct port_info *p = netdev_priv(dev);
1740
1741 cmd->supported = p->link_config.supported;
1742 cmd->advertising = p->link_config.advertising;
1743
1744 if (netif_carrier_ok(dev)) {
1745 cmd->speed = p->link_config.speed;
1746 cmd->duplex = p->link_config.duplex;
1747 } else {
1748 cmd->speed = -1;
1749 cmd->duplex = -1;
1750 }
1751
1752 cmd->port = (cmd->supported & SUPPORTED_TP) ? PORT_TP : PORT_FIBRE;
Ben Hutchings0f07c4e2009-04-29 08:07:20 +00001753 cmd->phy_address = p->phy.mdio.prtad;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001754 cmd->transceiver = XCVR_EXTERNAL;
1755 cmd->autoneg = p->link_config.autoneg;
1756 cmd->maxtxpkt = 0;
1757 cmd->maxrxpkt = 0;
1758 return 0;
1759}
1760
1761static int speed_duplex_to_caps(int speed, int duplex)
1762{
1763 int cap = 0;
1764
1765 switch (speed) {
1766 case SPEED_10:
1767 if (duplex == DUPLEX_FULL)
1768 cap = SUPPORTED_10baseT_Full;
1769 else
1770 cap = SUPPORTED_10baseT_Half;
1771 break;
1772 case SPEED_100:
1773 if (duplex == DUPLEX_FULL)
1774 cap = SUPPORTED_100baseT_Full;
1775 else
1776 cap = SUPPORTED_100baseT_Half;
1777 break;
1778 case SPEED_1000:
1779 if (duplex == DUPLEX_FULL)
1780 cap = SUPPORTED_1000baseT_Full;
1781 else
1782 cap = SUPPORTED_1000baseT_Half;
1783 break;
1784 case SPEED_10000:
1785 if (duplex == DUPLEX_FULL)
1786 cap = SUPPORTED_10000baseT_Full;
1787 }
1788 return cap;
1789}
1790
1791#define ADVERTISED_MASK (ADVERTISED_10baseT_Half | ADVERTISED_10baseT_Full | \
1792 ADVERTISED_100baseT_Half | ADVERTISED_100baseT_Full | \
1793 ADVERTISED_1000baseT_Half | ADVERTISED_1000baseT_Full | \
1794 ADVERTISED_10000baseT_Full)
1795
1796static int set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1797{
1798 struct port_info *p = netdev_priv(dev);
1799 struct link_config *lc = &p->link_config;
1800
Divy Le Ray9b1e3652008-10-08 17:39:31 -07001801 if (!(lc->supported & SUPPORTED_Autoneg)) {
1802 /*
1803 * PHY offers a single speed/duplex. See if that's what's
1804 * being requested.
1805 */
1806 if (cmd->autoneg == AUTONEG_DISABLE) {
Hannes Eder97915b52009-02-14 11:16:04 +00001807 int cap = speed_duplex_to_caps(cmd->speed, cmd->duplex);
Divy Le Ray9b1e3652008-10-08 17:39:31 -07001808 if (lc->supported & cap)
1809 return 0;
1810 }
1811 return -EINVAL;
1812 }
Divy Le Ray4d22de32007-01-18 22:04:14 -05001813
1814 if (cmd->autoneg == AUTONEG_DISABLE) {
1815 int cap = speed_duplex_to_caps(cmd->speed, cmd->duplex);
1816
1817 if (!(lc->supported & cap) || cmd->speed == SPEED_1000)
1818 return -EINVAL;
1819 lc->requested_speed = cmd->speed;
1820 lc->requested_duplex = cmd->duplex;
1821 lc->advertising = 0;
1822 } else {
1823 cmd->advertising &= ADVERTISED_MASK;
1824 cmd->advertising &= lc->supported;
1825 if (!cmd->advertising)
1826 return -EINVAL;
1827 lc->requested_speed = SPEED_INVALID;
1828 lc->requested_duplex = DUPLEX_INVALID;
1829 lc->advertising = cmd->advertising | ADVERTISED_Autoneg;
1830 }
1831 lc->autoneg = cmd->autoneg;
1832 if (netif_running(dev))
1833 t3_link_start(&p->phy, &p->mac, lc);
1834 return 0;
1835}
1836
1837static void get_pauseparam(struct net_device *dev,
1838 struct ethtool_pauseparam *epause)
1839{
1840 struct port_info *p = netdev_priv(dev);
1841
1842 epause->autoneg = (p->link_config.requested_fc & PAUSE_AUTONEG) != 0;
1843 epause->rx_pause = (p->link_config.fc & PAUSE_RX) != 0;
1844 epause->tx_pause = (p->link_config.fc & PAUSE_TX) != 0;
1845}
1846
1847static int set_pauseparam(struct net_device *dev,
1848 struct ethtool_pauseparam *epause)
1849{
1850 struct port_info *p = netdev_priv(dev);
1851 struct link_config *lc = &p->link_config;
1852
1853 if (epause->autoneg == AUTONEG_DISABLE)
1854 lc->requested_fc = 0;
1855 else if (lc->supported & SUPPORTED_Autoneg)
1856 lc->requested_fc = PAUSE_AUTONEG;
1857 else
1858 return -EINVAL;
1859
1860 if (epause->rx_pause)
1861 lc->requested_fc |= PAUSE_RX;
1862 if (epause->tx_pause)
1863 lc->requested_fc |= PAUSE_TX;
1864 if (lc->autoneg == AUTONEG_ENABLE) {
1865 if (netif_running(dev))
1866 t3_link_start(&p->phy, &p->mac, lc);
1867 } else {
1868 lc->fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX);
1869 if (netif_running(dev))
1870 t3_mac_set_speed_duplex_fc(&p->mac, -1, -1, lc->fc);
1871 }
1872 return 0;
1873}
1874
1875static u32 get_rx_csum(struct net_device *dev)
1876{
1877 struct port_info *p = netdev_priv(dev);
1878
Roland Dreier47fd23f2009-01-11 00:19:36 -08001879 return p->rx_offload & T3_RX_CSUM;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001880}
1881
1882static int set_rx_csum(struct net_device *dev, u32 data)
1883{
1884 struct port_info *p = netdev_priv(dev);
1885
Roland Dreier47fd23f2009-01-11 00:19:36 -08001886 if (data) {
1887 p->rx_offload |= T3_RX_CSUM;
1888 } else {
Divy Le Rayb47385b2008-05-21 18:56:26 -07001889 int i;
1890
Roland Dreier47fd23f2009-01-11 00:19:36 -08001891 p->rx_offload &= ~(T3_RX_CSUM | T3_LRO);
Divy Le Ray04ecb072008-10-28 22:40:32 -07001892 for (i = p->first_qset; i < p->first_qset + p->nqsets; i++)
1893 set_qset_lro(dev, i, 0);
Divy Le Rayb47385b2008-05-21 18:56:26 -07001894 }
Divy Le Ray4d22de32007-01-18 22:04:14 -05001895 return 0;
1896}
1897
1898static void get_sge_param(struct net_device *dev, struct ethtool_ringparam *e)
1899{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001900 struct port_info *pi = netdev_priv(dev);
1901 struct adapter *adapter = pi->adapter;
Divy Le Ray05b97b32007-03-18 13:10:01 -07001902 const struct qset_params *q = &adapter->params.sge.qset[pi->first_qset];
Divy Le Ray4d22de32007-01-18 22:04:14 -05001903
1904 e->rx_max_pending = MAX_RX_BUFFERS;
1905 e->rx_mini_max_pending = 0;
1906 e->rx_jumbo_max_pending = MAX_RX_JUMBO_BUFFERS;
1907 e->tx_max_pending = MAX_TXQ_ENTRIES;
1908
Divy Le Ray05b97b32007-03-18 13:10:01 -07001909 e->rx_pending = q->fl_size;
1910 e->rx_mini_pending = q->rspq_size;
1911 e->rx_jumbo_pending = q->jumbo_size;
1912 e->tx_pending = q->txq_size[0];
Divy Le Ray4d22de32007-01-18 22:04:14 -05001913}
1914
1915static int set_sge_param(struct net_device *dev, struct ethtool_ringparam *e)
1916{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001917 struct port_info *pi = netdev_priv(dev);
1918 struct adapter *adapter = pi->adapter;
Divy Le Ray05b97b32007-03-18 13:10:01 -07001919 struct qset_params *q;
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001920 int i;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001921
1922 if (e->rx_pending > MAX_RX_BUFFERS ||
1923 e->rx_jumbo_pending > MAX_RX_JUMBO_BUFFERS ||
1924 e->tx_pending > MAX_TXQ_ENTRIES ||
1925 e->rx_mini_pending > MAX_RSPQ_ENTRIES ||
1926 e->rx_mini_pending < MIN_RSPQ_ENTRIES ||
1927 e->rx_pending < MIN_FL_ENTRIES ||
1928 e->rx_jumbo_pending < MIN_FL_ENTRIES ||
1929 e->tx_pending < adapter->params.nports * MIN_TXQ_ENTRIES)
1930 return -EINVAL;
1931
1932 if (adapter->flags & FULL_INIT_DONE)
1933 return -EBUSY;
1934
Divy Le Ray05b97b32007-03-18 13:10:01 -07001935 q = &adapter->params.sge.qset[pi->first_qset];
1936 for (i = 0; i < pi->nqsets; ++i, ++q) {
Divy Le Ray4d22de32007-01-18 22:04:14 -05001937 q->rspq_size = e->rx_mini_pending;
1938 q->fl_size = e->rx_pending;
1939 q->jumbo_size = e->rx_jumbo_pending;
1940 q->txq_size[0] = e->tx_pending;
1941 q->txq_size[1] = e->tx_pending;
1942 q->txq_size[2] = e->tx_pending;
1943 }
1944 return 0;
1945}
1946
1947static int set_coalesce(struct net_device *dev, struct ethtool_coalesce *c)
1948{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001949 struct port_info *pi = netdev_priv(dev);
1950 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001951 struct qset_params *qsp = &adapter->params.sge.qset[0];
1952 struct sge_qset *qs = &adapter->sge.qs[0];
1953
1954 if (c->rx_coalesce_usecs * 10 > M_NEWTIMER)
1955 return -EINVAL;
1956
1957 qsp->coalesce_usecs = c->rx_coalesce_usecs;
1958 t3_update_qset_coalesce(qs, qsp);
1959 return 0;
1960}
1961
1962static int get_coalesce(struct net_device *dev, struct ethtool_coalesce *c)
1963{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001964 struct port_info *pi = netdev_priv(dev);
1965 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001966 struct qset_params *q = adapter->params.sge.qset;
1967
1968 c->rx_coalesce_usecs = q->coalesce_usecs;
1969 return 0;
1970}
1971
1972static int get_eeprom(struct net_device *dev, struct ethtool_eeprom *e,
1973 u8 * data)
1974{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001975 struct port_info *pi = netdev_priv(dev);
1976 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001977 int i, err = 0;
Divy Le Ray4d22de32007-01-18 22:04:14 -05001978
1979 u8 *buf = kmalloc(EEPROMSIZE, GFP_KERNEL);
1980 if (!buf)
1981 return -ENOMEM;
1982
1983 e->magic = EEPROM_MAGIC;
1984 for (i = e->offset & ~3; !err && i < e->offset + e->len; i += 4)
Al Viro05e5c112007-12-22 18:56:23 +00001985 err = t3_seeprom_read(adapter, i, (__le32 *) & buf[i]);
Divy Le Ray4d22de32007-01-18 22:04:14 -05001986
1987 if (!err)
1988 memcpy(data, buf + e->offset, e->len);
1989 kfree(buf);
1990 return err;
1991}
1992
1993static int set_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom,
1994 u8 * data)
1995{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07001996 struct port_info *pi = netdev_priv(dev);
1997 struct adapter *adapter = pi->adapter;
Al Viro05e5c112007-12-22 18:56:23 +00001998 u32 aligned_offset, aligned_len;
1999 __le32 *p;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002000 u8 *buf;
Denis Chengc54f5c22007-07-18 15:24:49 +08002001 int err;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002002
2003 if (eeprom->magic != EEPROM_MAGIC)
2004 return -EINVAL;
2005
2006 aligned_offset = eeprom->offset & ~3;
2007 aligned_len = (eeprom->len + (eeprom->offset & 3) + 3) & ~3;
2008
2009 if (aligned_offset != eeprom->offset || aligned_len != eeprom->len) {
2010 buf = kmalloc(aligned_len, GFP_KERNEL);
2011 if (!buf)
2012 return -ENOMEM;
Al Viro05e5c112007-12-22 18:56:23 +00002013 err = t3_seeprom_read(adapter, aligned_offset, (__le32 *) buf);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002014 if (!err && aligned_len > 4)
2015 err = t3_seeprom_read(adapter,
2016 aligned_offset + aligned_len - 4,
Al Viro05e5c112007-12-22 18:56:23 +00002017 (__le32 *) & buf[aligned_len - 4]);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002018 if (err)
2019 goto out;
2020 memcpy(buf + (eeprom->offset & 3), data, eeprom->len);
2021 } else
2022 buf = data;
2023
2024 err = t3_seeprom_wp(adapter, 0);
2025 if (err)
2026 goto out;
2027
Al Viro05e5c112007-12-22 18:56:23 +00002028 for (p = (__le32 *) buf; !err && aligned_len; aligned_len -= 4, p++) {
Divy Le Ray4d22de32007-01-18 22:04:14 -05002029 err = t3_seeprom_write(adapter, aligned_offset, *p);
2030 aligned_offset += 4;
2031 }
2032
2033 if (!err)
2034 err = t3_seeprom_wp(adapter, 1);
2035out:
2036 if (buf != data)
2037 kfree(buf);
2038 return err;
2039}
2040
2041static void get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2042{
2043 wol->supported = 0;
2044 wol->wolopts = 0;
2045 memset(&wol->sopass, 0, sizeof(wol->sopass));
2046}
2047
2048static const struct ethtool_ops cxgb_ethtool_ops = {
2049 .get_settings = get_settings,
2050 .set_settings = set_settings,
2051 .get_drvinfo = get_drvinfo,
2052 .get_msglevel = get_msglevel,
2053 .set_msglevel = set_msglevel,
2054 .get_ringparam = get_sge_param,
2055 .set_ringparam = set_sge_param,
2056 .get_coalesce = get_coalesce,
2057 .set_coalesce = set_coalesce,
2058 .get_eeprom_len = get_eeprom_len,
2059 .get_eeprom = get_eeprom,
2060 .set_eeprom = set_eeprom,
2061 .get_pauseparam = get_pauseparam,
2062 .set_pauseparam = set_pauseparam,
2063 .get_rx_csum = get_rx_csum,
2064 .set_rx_csum = set_rx_csum,
Divy Le Ray4d22de32007-01-18 22:04:14 -05002065 .set_tx_csum = ethtool_op_set_tx_csum,
Divy Le Ray4d22de32007-01-18 22:04:14 -05002066 .set_sg = ethtool_op_set_sg,
2067 .get_link = ethtool_op_get_link,
2068 .get_strings = get_strings,
2069 .phys_id = cxgb3_phys_id,
2070 .nway_reset = restart_autoneg,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002071 .get_sset_count = get_sset_count,
Divy Le Ray4d22de32007-01-18 22:04:14 -05002072 .get_ethtool_stats = get_stats,
2073 .get_regs_len = get_regs_len,
2074 .get_regs = get_regs,
2075 .get_wol = get_wol,
Divy Le Ray4d22de32007-01-18 22:04:14 -05002076 .set_tso = ethtool_op_set_tso,
Divy Le Ray4d22de32007-01-18 22:04:14 -05002077};
2078
2079static int in_range(int val, int lo, int hi)
2080{
2081 return val < 0 || (val <= hi && val >= lo);
2082}
2083
2084static int cxgb_extension_ioctl(struct net_device *dev, void __user *useraddr)
2085{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07002086 struct port_info *pi = netdev_priv(dev);
2087 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002088 u32 cmd;
Divy Le Ray5fbf8162007-08-29 19:15:47 -07002089 int ret;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002090
2091 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
2092 return -EFAULT;
2093
2094 switch (cmd) {
Divy Le Ray4d22de32007-01-18 22:04:14 -05002095 case CHELSIO_SET_QSET_PARAMS:{
2096 int i;
2097 struct qset_params *q;
2098 struct ch_qset_params t;
Divy Le Ray8c263762008-10-08 17:37:33 -07002099 int q1 = pi->first_qset;
2100 int nqsets = pi->nqsets;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002101
2102 if (!capable(CAP_NET_ADMIN))
2103 return -EPERM;
2104 if (copy_from_user(&t, useraddr, sizeof(t)))
2105 return -EFAULT;
2106 if (t.qset_idx >= SGE_QSETS)
2107 return -EINVAL;
2108 if (!in_range(t.intr_lat, 0, M_NEWTIMER) ||
2109 !in_range(t.cong_thres, 0, 255) ||
2110 !in_range(t.txq_size[0], MIN_TXQ_ENTRIES,
2111 MAX_TXQ_ENTRIES) ||
2112 !in_range(t.txq_size[1], MIN_TXQ_ENTRIES,
2113 MAX_TXQ_ENTRIES) ||
2114 !in_range(t.txq_size[2], MIN_CTRL_TXQ_ENTRIES,
2115 MAX_CTRL_TXQ_ENTRIES) ||
2116 !in_range(t.fl_size[0], MIN_FL_ENTRIES,
2117 MAX_RX_BUFFERS)
2118 || !in_range(t.fl_size[1], MIN_FL_ENTRIES,
2119 MAX_RX_JUMBO_BUFFERS)
2120 || !in_range(t.rspq_size, MIN_RSPQ_ENTRIES,
2121 MAX_RSPQ_ENTRIES))
2122 return -EINVAL;
Divy Le Ray8c263762008-10-08 17:37:33 -07002123
2124 if ((adapter->flags & FULL_INIT_DONE) && t.lro > 0)
2125 for_each_port(adapter, i) {
2126 pi = adap2pinfo(adapter, i);
2127 if (t.qset_idx >= pi->first_qset &&
2128 t.qset_idx < pi->first_qset + pi->nqsets &&
Roland Dreier47fd23f2009-01-11 00:19:36 -08002129 !(pi->rx_offload & T3_RX_CSUM))
Divy Le Ray8c263762008-10-08 17:37:33 -07002130 return -EINVAL;
2131 }
2132
Divy Le Ray4d22de32007-01-18 22:04:14 -05002133 if ((adapter->flags & FULL_INIT_DONE) &&
2134 (t.rspq_size >= 0 || t.fl_size[0] >= 0 ||
2135 t.fl_size[1] >= 0 || t.txq_size[0] >= 0 ||
2136 t.txq_size[1] >= 0 || t.txq_size[2] >= 0 ||
2137 t.polling >= 0 || t.cong_thres >= 0))
2138 return -EBUSY;
2139
Divy Le Ray8c263762008-10-08 17:37:33 -07002140 /* Allow setting of any available qset when offload enabled */
2141 if (test_bit(OFFLOAD_DEVMAP_BIT, &adapter->open_device_map)) {
2142 q1 = 0;
2143 for_each_port(adapter, i) {
2144 pi = adap2pinfo(adapter, i);
2145 nqsets += pi->first_qset + pi->nqsets;
2146 }
2147 }
2148
2149 if (t.qset_idx < q1)
2150 return -EINVAL;
2151 if (t.qset_idx > q1 + nqsets - 1)
2152 return -EINVAL;
2153
Divy Le Ray4d22de32007-01-18 22:04:14 -05002154 q = &adapter->params.sge.qset[t.qset_idx];
2155
2156 if (t.rspq_size >= 0)
2157 q->rspq_size = t.rspq_size;
2158 if (t.fl_size[0] >= 0)
2159 q->fl_size = t.fl_size[0];
2160 if (t.fl_size[1] >= 0)
2161 q->jumbo_size = t.fl_size[1];
2162 if (t.txq_size[0] >= 0)
2163 q->txq_size[0] = t.txq_size[0];
2164 if (t.txq_size[1] >= 0)
2165 q->txq_size[1] = t.txq_size[1];
2166 if (t.txq_size[2] >= 0)
2167 q->txq_size[2] = t.txq_size[2];
2168 if (t.cong_thres >= 0)
2169 q->cong_thres = t.cong_thres;
2170 if (t.intr_lat >= 0) {
2171 struct sge_qset *qs =
2172 &adapter->sge.qs[t.qset_idx];
2173
2174 q->coalesce_usecs = t.intr_lat;
2175 t3_update_qset_coalesce(qs, q);
2176 }
2177 if (t.polling >= 0) {
2178 if (adapter->flags & USING_MSIX)
2179 q->polling = t.polling;
2180 else {
2181 /* No polling with INTx for T3A */
2182 if (adapter->params.rev == 0 &&
2183 !(adapter->flags & USING_MSI))
2184 t.polling = 0;
2185
2186 for (i = 0; i < SGE_QSETS; i++) {
2187 q = &adapter->params.sge.
2188 qset[i];
2189 q->polling = t.polling;
2190 }
2191 }
2192 }
Divy Le Ray04ecb072008-10-28 22:40:32 -07002193 if (t.lro >= 0)
2194 set_qset_lro(dev, t.qset_idx, t.lro);
2195
Divy Le Ray4d22de32007-01-18 22:04:14 -05002196 break;
2197 }
2198 case CHELSIO_GET_QSET_PARAMS:{
2199 struct qset_params *q;
2200 struct ch_qset_params t;
Divy Le Ray8c263762008-10-08 17:37:33 -07002201 int q1 = pi->first_qset;
2202 int nqsets = pi->nqsets;
2203 int i;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002204
2205 if (copy_from_user(&t, useraddr, sizeof(t)))
2206 return -EFAULT;
Divy Le Ray8c263762008-10-08 17:37:33 -07002207
2208 /* Display qsets for all ports when offload enabled */
2209 if (test_bit(OFFLOAD_DEVMAP_BIT, &adapter->open_device_map)) {
2210 q1 = 0;
2211 for_each_port(adapter, i) {
2212 pi = adap2pinfo(adapter, i);
2213 nqsets = pi->first_qset + pi->nqsets;
2214 }
2215 }
2216
2217 if (t.qset_idx >= nqsets)
Divy Le Ray4d22de32007-01-18 22:04:14 -05002218 return -EINVAL;
2219
Divy Le Ray8c263762008-10-08 17:37:33 -07002220 q = &adapter->params.sge.qset[q1 + t.qset_idx];
Divy Le Ray4d22de32007-01-18 22:04:14 -05002221 t.rspq_size = q->rspq_size;
2222 t.txq_size[0] = q->txq_size[0];
2223 t.txq_size[1] = q->txq_size[1];
2224 t.txq_size[2] = q->txq_size[2];
2225 t.fl_size[0] = q->fl_size;
2226 t.fl_size[1] = q->jumbo_size;
2227 t.polling = q->polling;
Divy Le Rayb47385b2008-05-21 18:56:26 -07002228 t.lro = q->lro;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002229 t.intr_lat = q->coalesce_usecs;
2230 t.cong_thres = q->cong_thres;
Divy Le Ray8c263762008-10-08 17:37:33 -07002231 t.qnum = q1;
2232
2233 if (adapter->flags & USING_MSIX)
2234 t.vector = adapter->msix_info[q1 + t.qset_idx + 1].vec;
2235 else
2236 t.vector = adapter->pdev->irq;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002237
2238 if (copy_to_user(useraddr, &t, sizeof(t)))
2239 return -EFAULT;
2240 break;
2241 }
2242 case CHELSIO_SET_QSET_NUM:{
2243 struct ch_reg edata;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002244 unsigned int i, first_qset = 0, other_qsets = 0;
2245
2246 if (!capable(CAP_NET_ADMIN))
2247 return -EPERM;
2248 if (adapter->flags & FULL_INIT_DONE)
2249 return -EBUSY;
2250 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2251 return -EFAULT;
2252 if (edata.val < 1 ||
2253 (edata.val > 1 && !(adapter->flags & USING_MSIX)))
2254 return -EINVAL;
2255
2256 for_each_port(adapter, i)
2257 if (adapter->port[i] && adapter->port[i] != dev)
2258 other_qsets += adap2pinfo(adapter, i)->nqsets;
2259
2260 if (edata.val + other_qsets > SGE_QSETS)
2261 return -EINVAL;
2262
2263 pi->nqsets = edata.val;
2264
2265 for_each_port(adapter, i)
2266 if (adapter->port[i]) {
2267 pi = adap2pinfo(adapter, i);
2268 pi->first_qset = first_qset;
2269 first_qset += pi->nqsets;
2270 }
2271 break;
2272 }
2273 case CHELSIO_GET_QSET_NUM:{
2274 struct ch_reg edata;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002275
2276 edata.cmd = CHELSIO_GET_QSET_NUM;
2277 edata.val = pi->nqsets;
2278 if (copy_to_user(useraddr, &edata, sizeof(edata)))
2279 return -EFAULT;
2280 break;
2281 }
2282 case CHELSIO_LOAD_FW:{
2283 u8 *fw_data;
2284 struct ch_mem_range t;
2285
Alan Cox1b3aa7a2008-04-29 14:29:30 +01002286 if (!capable(CAP_SYS_RAWIO))
Divy Le Ray4d22de32007-01-18 22:04:14 -05002287 return -EPERM;
2288 if (copy_from_user(&t, useraddr, sizeof(t)))
2289 return -EFAULT;
Alan Cox1b3aa7a2008-04-29 14:29:30 +01002290 /* Check t.len sanity ? */
Divy Le Ray4d22de32007-01-18 22:04:14 -05002291 fw_data = kmalloc(t.len, GFP_KERNEL);
2292 if (!fw_data)
2293 return -ENOMEM;
2294
2295 if (copy_from_user
2296 (fw_data, useraddr + sizeof(t), t.len)) {
2297 kfree(fw_data);
2298 return -EFAULT;
2299 }
2300
2301 ret = t3_load_fw(adapter, fw_data, t.len);
2302 kfree(fw_data);
2303 if (ret)
2304 return ret;
2305 break;
2306 }
2307 case CHELSIO_SETMTUTAB:{
2308 struct ch_mtus m;
2309 int i;
2310
2311 if (!is_offload(adapter))
2312 return -EOPNOTSUPP;
2313 if (!capable(CAP_NET_ADMIN))
2314 return -EPERM;
2315 if (offload_running(adapter))
2316 return -EBUSY;
2317 if (copy_from_user(&m, useraddr, sizeof(m)))
2318 return -EFAULT;
2319 if (m.nmtus != NMTUS)
2320 return -EINVAL;
2321 if (m.mtus[0] < 81) /* accommodate SACK */
2322 return -EINVAL;
2323
2324 /* MTUs must be in ascending order */
2325 for (i = 1; i < NMTUS; ++i)
2326 if (m.mtus[i] < m.mtus[i - 1])
2327 return -EINVAL;
2328
2329 memcpy(adapter->params.mtus, m.mtus,
2330 sizeof(adapter->params.mtus));
2331 break;
2332 }
2333 case CHELSIO_GET_PM:{
2334 struct tp_params *p = &adapter->params.tp;
2335 struct ch_pm m = {.cmd = CHELSIO_GET_PM };
2336
2337 if (!is_offload(adapter))
2338 return -EOPNOTSUPP;
2339 m.tx_pg_sz = p->tx_pg_size;
2340 m.tx_num_pg = p->tx_num_pgs;
2341 m.rx_pg_sz = p->rx_pg_size;
2342 m.rx_num_pg = p->rx_num_pgs;
2343 m.pm_total = p->pmtx_size + p->chan_rx_size * p->nchan;
2344 if (copy_to_user(useraddr, &m, sizeof(m)))
2345 return -EFAULT;
2346 break;
2347 }
2348 case CHELSIO_SET_PM:{
2349 struct ch_pm m;
2350 struct tp_params *p = &adapter->params.tp;
2351
2352 if (!is_offload(adapter))
2353 return -EOPNOTSUPP;
2354 if (!capable(CAP_NET_ADMIN))
2355 return -EPERM;
2356 if (adapter->flags & FULL_INIT_DONE)
2357 return -EBUSY;
2358 if (copy_from_user(&m, useraddr, sizeof(m)))
2359 return -EFAULT;
vignesh babud9da4662007-07-09 11:50:22 -07002360 if (!is_power_of_2(m.rx_pg_sz) ||
2361 !is_power_of_2(m.tx_pg_sz))
Divy Le Ray4d22de32007-01-18 22:04:14 -05002362 return -EINVAL; /* not power of 2 */
2363 if (!(m.rx_pg_sz & 0x14000))
2364 return -EINVAL; /* not 16KB or 64KB */
2365 if (!(m.tx_pg_sz & 0x1554000))
2366 return -EINVAL;
2367 if (m.tx_num_pg == -1)
2368 m.tx_num_pg = p->tx_num_pgs;
2369 if (m.rx_num_pg == -1)
2370 m.rx_num_pg = p->rx_num_pgs;
2371 if (m.tx_num_pg % 24 || m.rx_num_pg % 24)
2372 return -EINVAL;
2373 if (m.rx_num_pg * m.rx_pg_sz > p->chan_rx_size ||
2374 m.tx_num_pg * m.tx_pg_sz > p->chan_tx_size)
2375 return -EINVAL;
2376 p->rx_pg_size = m.rx_pg_sz;
2377 p->tx_pg_size = m.tx_pg_sz;
2378 p->rx_num_pgs = m.rx_num_pg;
2379 p->tx_num_pgs = m.tx_num_pg;
2380 break;
2381 }
2382 case CHELSIO_GET_MEM:{
2383 struct ch_mem_range t;
2384 struct mc7 *mem;
2385 u64 buf[32];
2386
2387 if (!is_offload(adapter))
2388 return -EOPNOTSUPP;
2389 if (!(adapter->flags & FULL_INIT_DONE))
2390 return -EIO; /* need the memory controllers */
2391 if (copy_from_user(&t, useraddr, sizeof(t)))
2392 return -EFAULT;
2393 if ((t.addr & 7) || (t.len & 7))
2394 return -EINVAL;
2395 if (t.mem_id == MEM_CM)
2396 mem = &adapter->cm;
2397 else if (t.mem_id == MEM_PMRX)
2398 mem = &adapter->pmrx;
2399 else if (t.mem_id == MEM_PMTX)
2400 mem = &adapter->pmtx;
2401 else
2402 return -EINVAL;
2403
2404 /*
Divy Le Ray18254942007-02-24 16:43:56 -08002405 * Version scheme:
2406 * bits 0..9: chip version
2407 * bits 10..15: chip revision
2408 */
Divy Le Ray4d22de32007-01-18 22:04:14 -05002409 t.version = 3 | (adapter->params.rev << 10);
2410 if (copy_to_user(useraddr, &t, sizeof(t)))
2411 return -EFAULT;
2412
2413 /*
2414 * Read 256 bytes at a time as len can be large and we don't
2415 * want to use huge intermediate buffers.
2416 */
2417 useraddr += sizeof(t); /* advance to start of buffer */
2418 while (t.len) {
2419 unsigned int chunk =
2420 min_t(unsigned int, t.len, sizeof(buf));
2421
2422 ret =
2423 t3_mc7_bd_read(mem, t.addr / 8, chunk / 8,
2424 buf);
2425 if (ret)
2426 return ret;
2427 if (copy_to_user(useraddr, buf, chunk))
2428 return -EFAULT;
2429 useraddr += chunk;
2430 t.addr += chunk;
2431 t.len -= chunk;
2432 }
2433 break;
2434 }
2435 case CHELSIO_SET_TRACE_FILTER:{
2436 struct ch_trace t;
2437 const struct trace_params *tp;
2438
2439 if (!capable(CAP_NET_ADMIN))
2440 return -EPERM;
2441 if (!offload_running(adapter))
2442 return -EAGAIN;
2443 if (copy_from_user(&t, useraddr, sizeof(t)))
2444 return -EFAULT;
2445
2446 tp = (const struct trace_params *)&t.sip;
2447 if (t.config_tx)
2448 t3_config_trace_filter(adapter, tp, 0,
2449 t.invert_match,
2450 t.trace_tx);
2451 if (t.config_rx)
2452 t3_config_trace_filter(adapter, tp, 1,
2453 t.invert_match,
2454 t.trace_rx);
2455 break;
2456 }
Divy Le Ray4d22de32007-01-18 22:04:14 -05002457 default:
2458 return -EOPNOTSUPP;
2459 }
2460 return 0;
2461}
2462
2463static int cxgb_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
2464{
Divy Le Ray4d22de32007-01-18 22:04:14 -05002465 struct mii_ioctl_data *data = if_mii(req);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07002466 struct port_info *pi = netdev_priv(dev);
2467 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002468
2469 switch (cmd) {
Ben Hutchings0f07c4e2009-04-29 08:07:20 +00002470 case SIOCGMIIREG:
2471 case SIOCSMIIREG:
2472 /* Convert phy_id from older PRTAD/DEVAD format */
2473 if (is_10G(adapter) &&
2474 !mdio_phy_id_is_c45(data->phy_id) &&
2475 (data->phy_id & 0x1f00) &&
2476 !(data->phy_id & 0xe0e0))
2477 data->phy_id = mdio_phy_id_c45(data->phy_id >> 8,
2478 data->phy_id & 0x1f);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002479 /* FALLTHRU */
Ben Hutchings0f07c4e2009-04-29 08:07:20 +00002480 case SIOCGMIIPHY:
2481 return mdio_mii_ioctl(&pi->phy.mdio, data, cmd);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002482 case SIOCCHIOCTL:
2483 return cxgb_extension_ioctl(dev, req->ifr_data);
2484 default:
2485 return -EOPNOTSUPP;
2486 }
Divy Le Ray4d22de32007-01-18 22:04:14 -05002487}
2488
2489static int cxgb_change_mtu(struct net_device *dev, int new_mtu)
2490{
Divy Le Ray4d22de32007-01-18 22:04:14 -05002491 struct port_info *pi = netdev_priv(dev);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07002492 struct adapter *adapter = pi->adapter;
2493 int ret;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002494
2495 if (new_mtu < 81) /* accommodate SACK */
2496 return -EINVAL;
2497 if ((ret = t3_mac_set_mtu(&pi->mac, new_mtu)))
2498 return ret;
2499 dev->mtu = new_mtu;
2500 init_port_mtus(adapter);
2501 if (adapter->params.rev == 0 && offload_running(adapter))
2502 t3_load_mtus(adapter, adapter->params.mtus,
2503 adapter->params.a_wnd, adapter->params.b_wnd,
2504 adapter->port[0]->mtu);
2505 return 0;
2506}
2507
2508static int cxgb_set_mac_addr(struct net_device *dev, void *p)
2509{
Divy Le Ray4d22de32007-01-18 22:04:14 -05002510 struct port_info *pi = netdev_priv(dev);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07002511 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002512 struct sockaddr *addr = p;
2513
2514 if (!is_valid_ether_addr(addr->sa_data))
2515 return -EINVAL;
2516
2517 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
2518 t3_mac_set_address(&pi->mac, 0, dev->dev_addr);
2519 if (offload_running(adapter))
2520 write_smt_entry(adapter, pi->port_id);
2521 return 0;
2522}
2523
2524/**
2525 * t3_synchronize_rx - wait for current Rx processing on a port to complete
2526 * @adap: the adapter
2527 * @p: the port
2528 *
2529 * Ensures that current Rx processing on any of the queues associated with
2530 * the given port completes before returning. We do this by acquiring and
2531 * releasing the locks of the response queues associated with the port.
2532 */
2533static void t3_synchronize_rx(struct adapter *adap, const struct port_info *p)
2534{
2535 int i;
2536
Divy Le Ray8c263762008-10-08 17:37:33 -07002537 for (i = p->first_qset; i < p->first_qset + p->nqsets; i++) {
2538 struct sge_rspq *q = &adap->sge.qs[i].rspq;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002539
2540 spin_lock_irq(&q->lock);
2541 spin_unlock_irq(&q->lock);
2542 }
2543}
2544
2545static void vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
2546{
Divy Le Ray4d22de32007-01-18 22:04:14 -05002547 struct port_info *pi = netdev_priv(dev);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07002548 struct adapter *adapter = pi->adapter;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002549
2550 pi->vlan_grp = grp;
2551 if (adapter->params.rev > 0)
2552 t3_set_vlan_accel(adapter, 1 << pi->port_id, grp != NULL);
2553 else {
2554 /* single control for all ports */
2555 unsigned int i, have_vlans = 0;
2556 for_each_port(adapter, i)
2557 have_vlans |= adap2pinfo(adapter, i)->vlan_grp != NULL;
2558
2559 t3_set_vlan_accel(adapter, 1, have_vlans);
2560 }
2561 t3_synchronize_rx(adapter, pi);
2562}
2563
Divy Le Ray4d22de32007-01-18 22:04:14 -05002564#ifdef CONFIG_NET_POLL_CONTROLLER
2565static void cxgb_netpoll(struct net_device *dev)
2566{
Divy Le Ray890de332007-05-30 10:01:34 -07002567 struct port_info *pi = netdev_priv(dev);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07002568 struct adapter *adapter = pi->adapter;
Divy Le Ray890de332007-05-30 10:01:34 -07002569 int qidx;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002570
Divy Le Ray890de332007-05-30 10:01:34 -07002571 for (qidx = pi->first_qset; qidx < pi->first_qset + pi->nqsets; qidx++) {
2572 struct sge_qset *qs = &adapter->sge.qs[qidx];
2573 void *source;
Jeff Garzik2eab17a2007-11-23 21:59:45 -05002574
Divy Le Ray890de332007-05-30 10:01:34 -07002575 if (adapter->flags & USING_MSIX)
2576 source = qs;
2577 else
2578 source = adapter;
2579
2580 t3_intr_handler(adapter, qs->rspq.polling) (0, source);
2581 }
Divy Le Ray4d22de32007-01-18 22:04:14 -05002582}
2583#endif
2584
2585/*
2586 * Periodic accumulation of MAC statistics.
2587 */
2588static void mac_stats_update(struct adapter *adapter)
2589{
2590 int i;
2591
2592 for_each_port(adapter, i) {
2593 struct net_device *dev = adapter->port[i];
2594 struct port_info *p = netdev_priv(dev);
2595
2596 if (netif_running(dev)) {
2597 spin_lock(&adapter->stats_lock);
2598 t3_mac_update_stats(&p->mac);
2599 spin_unlock(&adapter->stats_lock);
2600 }
2601 }
2602}
2603
2604static void check_link_status(struct adapter *adapter)
2605{
2606 int i;
2607
2608 for_each_port(adapter, i) {
2609 struct net_device *dev = adapter->port[i];
2610 struct port_info *p = netdev_priv(dev);
Divy Le Rayc22c8142009-05-28 11:23:08 +00002611 int link_fault;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002612
Divy Le Raybf792092009-03-12 21:14:19 +00002613 spin_lock_irq(&adapter->work_lock);
Divy Le Rayc22c8142009-05-28 11:23:08 +00002614 link_fault = p->link_fault;
2615 spin_unlock_irq(&adapter->work_lock);
2616
2617 if (link_fault) {
Divy Le Ray3851c662009-04-17 12:21:11 +00002618 t3_link_fault(adapter, i);
Divy Le Raybf792092009-03-12 21:14:19 +00002619 continue;
2620 }
Divy Le Raybf792092009-03-12 21:14:19 +00002621
2622 if (!(p->phy.caps & SUPPORTED_IRQ) && netif_running(dev)) {
2623 t3_xgm_intr_disable(adapter, i);
2624 t3_read_reg(adapter, A_XGM_INT_STATUS + p->mac.offset);
2625
Divy Le Ray4d22de32007-01-18 22:04:14 -05002626 t3_link_changed(adapter, i);
Divy Le Raybf792092009-03-12 21:14:19 +00002627 t3_xgm_intr_enable(adapter, i);
2628 }
Divy Le Ray4d22de32007-01-18 22:04:14 -05002629 }
2630}
2631
Divy Le Rayfc906642007-03-18 13:10:12 -07002632static void check_t3b2_mac(struct adapter *adapter)
2633{
2634 int i;
2635
Divy Le Rayf2d961c2007-04-09 20:10:22 -07002636 if (!rtnl_trylock()) /* synchronize with ifdown */
2637 return;
2638
Divy Le Rayfc906642007-03-18 13:10:12 -07002639 for_each_port(adapter, i) {
2640 struct net_device *dev = adapter->port[i];
2641 struct port_info *p = netdev_priv(dev);
2642 int status;
2643
2644 if (!netif_running(dev))
2645 continue;
2646
2647 status = 0;
Divy Le Ray6d6daba2007-03-31 00:23:24 -07002648 if (netif_running(dev) && netif_carrier_ok(dev))
Divy Le Rayfc906642007-03-18 13:10:12 -07002649 status = t3b2_mac_watchdog_task(&p->mac);
2650 if (status == 1)
2651 p->mac.stats.num_toggled++;
2652 else if (status == 2) {
2653 struct cmac *mac = &p->mac;
2654
2655 t3_mac_set_mtu(mac, dev->mtu);
2656 t3_mac_set_address(mac, 0, dev->dev_addr);
2657 cxgb_set_rxmode(dev);
2658 t3_link_start(&p->phy, mac, &p->link_config);
2659 t3_mac_enable(mac, MAC_DIRECTION_RX | MAC_DIRECTION_TX);
2660 t3_port_intr_enable(adapter, p->port_id);
2661 p->mac.stats.num_resets++;
2662 }
2663 }
2664 rtnl_unlock();
2665}
2666
2667
Divy Le Ray4d22de32007-01-18 22:04:14 -05002668static void t3_adap_check_task(struct work_struct *work)
2669{
2670 struct adapter *adapter = container_of(work, struct adapter,
2671 adap_check_task.work);
2672 const struct adapter_params *p = &adapter->params;
Divy Le Rayfc8821962009-03-12 21:14:09 +00002673 int port;
2674 unsigned int v, status, reset;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002675
2676 adapter->check_task_cnt++;
2677
Divy Le Ray3851c662009-04-17 12:21:11 +00002678 check_link_status(adapter);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002679
2680 /* Accumulate MAC stats if needed */
2681 if (!p->linkpoll_period ||
2682 (adapter->check_task_cnt * p->linkpoll_period) / 10 >=
2683 p->stats_update_period) {
2684 mac_stats_update(adapter);
2685 adapter->check_task_cnt = 0;
2686 }
2687
Divy Le Rayfc906642007-03-18 13:10:12 -07002688 if (p->rev == T3_REV_B2)
2689 check_t3b2_mac(adapter);
2690
Divy Le Rayfc8821962009-03-12 21:14:09 +00002691 /*
2692 * Scan the XGMAC's to check for various conditions which we want to
2693 * monitor in a periodic polling manner rather than via an interrupt
2694 * condition. This is used for conditions which would otherwise flood
2695 * the system with interrupts and we only really need to know that the
2696 * conditions are "happening" ... For each condition we count the
2697 * detection of the condition and reset it for the next polling loop.
2698 */
2699 for_each_port(adapter, port) {
2700 struct cmac *mac = &adap2pinfo(adapter, port)->mac;
2701 u32 cause;
2702
2703 cause = t3_read_reg(adapter, A_XGM_INT_CAUSE + mac->offset);
2704 reset = 0;
2705 if (cause & F_RXFIFO_OVERFLOW) {
2706 mac->stats.rx_fifo_ovfl++;
2707 reset |= F_RXFIFO_OVERFLOW;
2708 }
2709
2710 t3_write_reg(adapter, A_XGM_INT_CAUSE + mac->offset, reset);
2711 }
2712
2713 /*
2714 * We do the same as above for FL_EMPTY interrupts.
2715 */
2716 status = t3_read_reg(adapter, A_SG_INT_CAUSE);
2717 reset = 0;
2718
2719 if (status & F_FLEMPTY) {
2720 struct sge_qset *qs = &adapter->sge.qs[0];
2721 int i = 0;
2722
2723 reset |= F_FLEMPTY;
2724
2725 v = (t3_read_reg(adapter, A_SG_RSPQ_FL_STATUS) >> S_FL0EMPTY) &
2726 0xffff;
2727
2728 while (v) {
2729 qs->fl[i].empty += (v & 1);
2730 if (i)
2731 qs++;
2732 i ^= 1;
2733 v >>= 1;
2734 }
2735 }
2736
2737 t3_write_reg(adapter, A_SG_INT_CAUSE, reset);
2738
Divy Le Ray4d22de32007-01-18 22:04:14 -05002739 /* Schedule the next check update if any port is active. */
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002740 spin_lock_irq(&adapter->work_lock);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002741 if (adapter->open_device_map & PORT_MASK)
2742 schedule_chk_task(adapter);
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002743 spin_unlock_irq(&adapter->work_lock);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002744}
2745
2746/*
2747 * Processes external (PHY) interrupts in process context.
2748 */
2749static void ext_intr_task(struct work_struct *work)
2750{
2751 struct adapter *adapter = container_of(work, struct adapter,
2752 ext_intr_handler_task);
Divy Le Raybf792092009-03-12 21:14:19 +00002753 int i;
Divy Le Ray4d22de32007-01-18 22:04:14 -05002754
Divy Le Raybf792092009-03-12 21:14:19 +00002755 /* Disable link fault interrupts */
2756 for_each_port(adapter, i) {
2757 struct net_device *dev = adapter->port[i];
2758 struct port_info *p = netdev_priv(dev);
2759
2760 t3_xgm_intr_disable(adapter, i);
2761 t3_read_reg(adapter, A_XGM_INT_STATUS + p->mac.offset);
2762 }
2763
2764 /* Re-enable link fault interrupts */
Divy Le Ray4d22de32007-01-18 22:04:14 -05002765 t3_phy_intr_handler(adapter);
2766
Divy Le Raybf792092009-03-12 21:14:19 +00002767 for_each_port(adapter, i)
2768 t3_xgm_intr_enable(adapter, i);
2769
Divy Le Ray4d22de32007-01-18 22:04:14 -05002770 /* Now reenable external interrupts */
2771 spin_lock_irq(&adapter->work_lock);
2772 if (adapter->slow_intr_mask) {
2773 adapter->slow_intr_mask |= F_T3DBG;
2774 t3_write_reg(adapter, A_PL_INT_CAUSE0, F_T3DBG);
2775 t3_write_reg(adapter, A_PL_INT_ENABLE0,
2776 adapter->slow_intr_mask);
2777 }
2778 spin_unlock_irq(&adapter->work_lock);
2779}
2780
2781/*
2782 * Interrupt-context handler for external (PHY) interrupts.
2783 */
2784void t3_os_ext_intr_handler(struct adapter *adapter)
2785{
2786 /*
2787 * Schedule a task to handle external interrupts as they may be slow
2788 * and we use a mutex to protect MDIO registers. We disable PHY
2789 * interrupts in the meantime and let the task reenable them when
2790 * it's done.
2791 */
2792 spin_lock(&adapter->work_lock);
2793 if (adapter->slow_intr_mask) {
2794 adapter->slow_intr_mask &= ~F_T3DBG;
2795 t3_write_reg(adapter, A_PL_INT_ENABLE0,
2796 adapter->slow_intr_mask);
2797 queue_work(cxgb3_wq, &adapter->ext_intr_handler_task);
2798 }
2799 spin_unlock(&adapter->work_lock);
2800}
2801
Divy Le Raybf792092009-03-12 21:14:19 +00002802void t3_os_link_fault_handler(struct adapter *adapter, int port_id)
2803{
2804 struct net_device *netdev = adapter->port[port_id];
2805 struct port_info *pi = netdev_priv(netdev);
2806
2807 spin_lock(&adapter->work_lock);
2808 pi->link_fault = 1;
Divy Le Raybf792092009-03-12 21:14:19 +00002809 spin_unlock(&adapter->work_lock);
2810}
2811
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002812static int t3_adapter_error(struct adapter *adapter, int reset)
2813{
2814 int i, ret = 0;
2815
Divy Le Raycb0bc202009-01-26 22:21:59 -08002816 if (is_offload(adapter) &&
2817 test_bit(OFFLOAD_DEVMAP_BIT, &adapter->open_device_map)) {
2818 cxgb3_err_notify(&adapter->tdev, OFFLOAD_STATUS_DOWN, 0);
2819 offload_close(&adapter->tdev);
2820 }
2821
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002822 /* Stop all ports */
2823 for_each_port(adapter, i) {
2824 struct net_device *netdev = adapter->port[i];
2825
2826 if (netif_running(netdev))
2827 cxgb_close(netdev);
2828 }
2829
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002830 /* Stop SGE timers */
2831 t3_stop_sge_timers(adapter);
2832
2833 adapter->flags &= ~FULL_INIT_DONE;
2834
2835 if (reset)
2836 ret = t3_reset_adapter(adapter);
2837
2838 pci_disable_device(adapter->pdev);
2839
2840 return ret;
2841}
2842
2843static int t3_reenable_adapter(struct adapter *adapter)
2844{
2845 if (pci_enable_device(adapter->pdev)) {
2846 dev_err(&adapter->pdev->dev,
2847 "Cannot re-enable PCI device after reset.\n");
2848 goto err;
2849 }
2850 pci_set_master(adapter->pdev);
2851 pci_restore_state(adapter->pdev);
2852
2853 /* Free sge resources */
2854 t3_free_sge_resources(adapter);
2855
2856 if (t3_replay_prep_adapter(adapter))
2857 goto err;
2858
2859 return 0;
2860err:
2861 return -1;
2862}
2863
2864static void t3_resume_ports(struct adapter *adapter)
2865{
2866 int i;
2867
2868 /* Restart the ports */
2869 for_each_port(adapter, i) {
2870 struct net_device *netdev = adapter->port[i];
2871
2872 if (netif_running(netdev)) {
2873 if (cxgb_open(netdev)) {
2874 dev_err(&adapter->pdev->dev,
2875 "can't bring device back up"
2876 " after reset\n");
2877 continue;
2878 }
2879 }
2880 }
Divy Le Raycb0bc202009-01-26 22:21:59 -08002881
2882 if (is_offload(adapter) && !ofld_disable)
2883 cxgb3_err_notify(&adapter->tdev, OFFLOAD_STATUS_UP, 0);
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002884}
2885
2886/*
2887 * processes a fatal error.
2888 * Bring the ports down, reset the chip, bring the ports back up.
2889 */
2890static void fatal_error_task(struct work_struct *work)
2891{
2892 struct adapter *adapter = container_of(work, struct adapter,
2893 fatal_error_handler_task);
2894 int err = 0;
2895
2896 rtnl_lock();
2897 err = t3_adapter_error(adapter, 1);
2898 if (!err)
2899 err = t3_reenable_adapter(adapter);
2900 if (!err)
2901 t3_resume_ports(adapter);
2902
2903 CH_ALERT(adapter, "adapter reset %s\n", err ? "failed" : "succeeded");
2904 rtnl_unlock();
2905}
2906
Divy Le Ray4d22de32007-01-18 22:04:14 -05002907void t3_fatal_err(struct adapter *adapter)
2908{
2909 unsigned int fw_status[4];
2910
2911 if (adapter->flags & FULL_INIT_DONE) {
2912 t3_sge_stop(adapter);
Divy Le Rayc64c2ea2007-08-21 20:49:31 -07002913 t3_write_reg(adapter, A_XGM_TX_CTRL, 0);
2914 t3_write_reg(adapter, A_XGM_RX_CTRL, 0);
2915 t3_write_reg(adapter, XGM_REG(A_XGM_TX_CTRL, 1), 0);
2916 t3_write_reg(adapter, XGM_REG(A_XGM_RX_CTRL, 1), 0);
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002917
2918 spin_lock(&adapter->work_lock);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002919 t3_intr_disable(adapter);
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002920 queue_work(cxgb3_wq, &adapter->fatal_error_handler_task);
2921 spin_unlock(&adapter->work_lock);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002922 }
2923 CH_ALERT(adapter, "encountered fatal error, operation suspended\n");
2924 if (!t3_cim_ctl_blk_read(adapter, 0xa0, 4, fw_status))
2925 CH_ALERT(adapter, "FW status: 0x%x, 0x%x, 0x%x, 0x%x\n",
2926 fw_status[0], fw_status[1],
2927 fw_status[2], fw_status[3]);
Divy Le Ray4d22de32007-01-18 22:04:14 -05002928}
2929
Divy Le Ray91a6b502007-11-16 11:21:55 -08002930/**
2931 * t3_io_error_detected - called when PCI error is detected
2932 * @pdev: Pointer to PCI device
2933 * @state: The current pci connection state
2934 *
2935 * This function is called after a PCI bus error affecting
2936 * this device has been detected.
2937 */
2938static pci_ers_result_t t3_io_error_detected(struct pci_dev *pdev,
2939 pci_channel_state_t state)
2940{
Divy Le Raybc4b6b52007-12-17 18:47:41 -08002941 struct adapter *adapter = pci_get_drvdata(pdev);
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002942 int ret;
Divy Le Ray91a6b502007-11-16 11:21:55 -08002943
Divy Le Raye8d19372009-04-17 12:21:27 +00002944 if (state == pci_channel_io_perm_failure)
2945 return PCI_ERS_RESULT_DISCONNECT;
2946
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002947 ret = t3_adapter_error(adapter, 0);
Divy Le Ray91a6b502007-11-16 11:21:55 -08002948
Divy Le Ray48c4b6d2008-05-06 19:25:56 -07002949 /* Request a slot reset. */
Divy Le Ray91a6b502007-11-16 11:21:55 -08002950 return PCI_ERS_RESULT_NEED_RESET;
2951}
2952
2953/**
2954 * t3_io_slot_reset - called after the pci bus has been reset.
2955 * @pdev: Pointer to PCI device
2956 *
2957 * Restart the card from scratch, as if from a cold-boot.
2958 */
2959static pci_ers_result_t t3_io_slot_reset(struct pci_dev *pdev)
2960{
Divy Le Raybc4b6b52007-12-17 18:47:41 -08002961 struct adapter *adapter = pci_get_drvdata(pdev);
Divy Le Ray91a6b502007-11-16 11:21:55 -08002962
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002963 if (!t3_reenable_adapter(adapter))
2964 return PCI_ERS_RESULT_RECOVERED;
Divy Le Ray91a6b502007-11-16 11:21:55 -08002965
Divy Le Ray48c4b6d2008-05-06 19:25:56 -07002966 return PCI_ERS_RESULT_DISCONNECT;
Divy Le Ray91a6b502007-11-16 11:21:55 -08002967}
2968
2969/**
2970 * t3_io_resume - called when traffic can start flowing again.
2971 * @pdev: Pointer to PCI device
2972 *
2973 * This callback is called when the error recovery driver tells us that
2974 * its OK to resume normal operation.
2975 */
2976static void t3_io_resume(struct pci_dev *pdev)
2977{
Divy Le Raybc4b6b52007-12-17 18:47:41 -08002978 struct adapter *adapter = pci_get_drvdata(pdev);
Divy Le Ray91a6b502007-11-16 11:21:55 -08002979
Divy Le Ray68f40c12009-03-26 16:39:19 +00002980 CH_ALERT(adapter, "adapter recovering, PEX ERR 0x%x\n",
2981 t3_read_reg(adapter, A_PCIE_PEX_ERR));
2982
Divy Le Ray20d3fc12008-10-08 17:36:03 -07002983 t3_resume_ports(adapter);
Divy Le Ray91a6b502007-11-16 11:21:55 -08002984}
2985
2986static struct pci_error_handlers t3_err_handler = {
2987 .error_detected = t3_io_error_detected,
2988 .slot_reset = t3_io_slot_reset,
2989 .resume = t3_io_resume,
2990};
2991
Divy Le Ray8c263762008-10-08 17:37:33 -07002992/*
2993 * Set the number of qsets based on the number of CPUs and the number of ports,
2994 * not to exceed the number of available qsets, assuming there are enough qsets
2995 * per port in HW.
2996 */
2997static void set_nqsets(struct adapter *adap)
2998{
2999 int i, j = 0;
3000 int num_cpus = num_online_cpus();
3001 int hwports = adap->params.nports;
Divy Le Ray5cda9362009-01-18 21:29:40 -08003002 int nqsets = adap->msix_nvectors - 1;
Divy Le Ray8c263762008-10-08 17:37:33 -07003003
Divy Le Rayf9ee3882008-11-09 00:55:33 -08003004 if (adap->params.rev > 0 && adap->flags & USING_MSIX) {
Divy Le Ray8c263762008-10-08 17:37:33 -07003005 if (hwports == 2 &&
3006 (hwports * nqsets > SGE_QSETS ||
3007 num_cpus >= nqsets / hwports))
3008 nqsets /= hwports;
3009 if (nqsets > num_cpus)
3010 nqsets = num_cpus;
3011 if (nqsets < 1 || hwports == 4)
3012 nqsets = 1;
3013 } else
3014 nqsets = 1;
3015
3016 for_each_port(adap, i) {
3017 struct port_info *pi = adap2pinfo(adap, i);
3018
3019 pi->first_qset = j;
3020 pi->nqsets = nqsets;
3021 j = pi->first_qset + nqsets;
3022
3023 dev_info(&adap->pdev->dev,
3024 "Port %d using %d queue sets.\n", i, nqsets);
3025 }
3026}
3027
Divy Le Ray4d22de32007-01-18 22:04:14 -05003028static int __devinit cxgb_enable_msix(struct adapter *adap)
3029{
3030 struct msix_entry entries[SGE_QSETS + 1];
Divy Le Ray5cda9362009-01-18 21:29:40 -08003031 int vectors;
Divy Le Ray4d22de32007-01-18 22:04:14 -05003032 int i, err;
3033
Divy Le Ray5cda9362009-01-18 21:29:40 -08003034 vectors = ARRAY_SIZE(entries);
3035 for (i = 0; i < vectors; ++i)
Divy Le Ray4d22de32007-01-18 22:04:14 -05003036 entries[i].entry = i;
3037
Divy Le Ray5cda9362009-01-18 21:29:40 -08003038 while ((err = pci_enable_msix(adap->pdev, entries, vectors)) > 0)
3039 vectors = err;
3040
Divy Le Ray2c2f4092009-04-17 12:21:22 +00003041 if (err < 0)
3042 pci_disable_msix(adap->pdev);
3043
3044 if (!err && vectors < (adap->params.nports + 1)) {
3045 pci_disable_msix(adap->pdev);
Divy Le Ray5cda9362009-01-18 21:29:40 -08003046 err = -1;
Divy Le Ray2c2f4092009-04-17 12:21:22 +00003047 }
Divy Le Ray5cda9362009-01-18 21:29:40 -08003048
Divy Le Ray4d22de32007-01-18 22:04:14 -05003049 if (!err) {
Divy Le Ray5cda9362009-01-18 21:29:40 -08003050 for (i = 0; i < vectors; ++i)
Divy Le Ray4d22de32007-01-18 22:04:14 -05003051 adap->msix_info[i].vec = entries[i].vector;
Divy Le Ray5cda9362009-01-18 21:29:40 -08003052 adap->msix_nvectors = vectors;
3053 }
3054
Divy Le Ray4d22de32007-01-18 22:04:14 -05003055 return err;
3056}
3057
3058static void __devinit print_port_info(struct adapter *adap,
3059 const struct adapter_info *ai)
3060{
3061 static const char *pci_variant[] = {
3062 "PCI", "PCI-X", "PCI-X ECC", "PCI-X 266", "PCI Express"
3063 };
3064
3065 int i;
3066 char buf[80];
3067
3068 if (is_pcie(adap))
3069 snprintf(buf, sizeof(buf), "%s x%d",
3070 pci_variant[adap->params.pci.variant],
3071 adap->params.pci.width);
3072 else
3073 snprintf(buf, sizeof(buf), "%s %dMHz/%d-bit",
3074 pci_variant[adap->params.pci.variant],
3075 adap->params.pci.speed, adap->params.pci.width);
3076
3077 for_each_port(adap, i) {
3078 struct net_device *dev = adap->port[i];
3079 const struct port_info *pi = netdev_priv(dev);
3080
3081 if (!test_bit(i, &adap->registered_device_map))
3082 continue;
Divy Le Ray8ac3ba62007-03-31 00:23:19 -07003083 printk(KERN_INFO "%s: %s %s %sNIC (rev %d) %s%s\n",
Divy Le Ray04497982008-10-08 17:38:29 -07003084 dev->name, ai->desc, pi->phy.desc,
Divy Le Ray8ac3ba62007-03-31 00:23:19 -07003085 is_offload(adap) ? "R" : "", adap->params.rev, buf,
Divy Le Ray4d22de32007-01-18 22:04:14 -05003086 (adap->flags & USING_MSIX) ? " MSI-X" :
3087 (adap->flags & USING_MSI) ? " MSI" : "");
3088 if (adap->name == dev->name && adap->params.vpd.mclk)
Divy Le Ray167cdf52007-08-21 20:49:36 -07003089 printk(KERN_INFO
3090 "%s: %uMB CM, %uMB PMTX, %uMB PMRX, S/N: %s\n",
Divy Le Ray4d22de32007-01-18 22:04:14 -05003091 adap->name, t3_mc7_size(&adap->cm) >> 20,
3092 t3_mc7_size(&adap->pmtx) >> 20,
Divy Le Ray167cdf52007-08-21 20:49:36 -07003093 t3_mc7_size(&adap->pmrx) >> 20,
3094 adap->params.vpd.sn);
Divy Le Ray4d22de32007-01-18 22:04:14 -05003095 }
3096}
3097
Stephen Hemmingerdd752692008-11-19 22:15:39 -08003098static const struct net_device_ops cxgb_netdev_ops = {
3099 .ndo_open = cxgb_open,
3100 .ndo_stop = cxgb_close,
Divy Le Ray43a944f2008-11-26 15:35:26 -08003101 .ndo_start_xmit = t3_eth_xmit,
Stephen Hemmingerdd752692008-11-19 22:15:39 -08003102 .ndo_get_stats = cxgb_get_stats,
3103 .ndo_validate_addr = eth_validate_addr,
3104 .ndo_set_multicast_list = cxgb_set_rxmode,
3105 .ndo_do_ioctl = cxgb_ioctl,
3106 .ndo_change_mtu = cxgb_change_mtu,
3107 .ndo_set_mac_address = cxgb_set_mac_addr,
3108 .ndo_vlan_rx_register = vlan_rx_register,
3109#ifdef CONFIG_NET_POLL_CONTROLLER
3110 .ndo_poll_controller = cxgb_netpoll,
3111#endif
3112};
3113
Divy Le Ray4d22de32007-01-18 22:04:14 -05003114static int __devinit init_one(struct pci_dev *pdev,
3115 const struct pci_device_id *ent)
3116{
3117 static int version_printed;
3118
3119 int i, err, pci_using_dac = 0;
Divy Le Ray68f40c12009-03-26 16:39:19 +00003120 resource_size_t mmio_start, mmio_len;
Divy Le Ray4d22de32007-01-18 22:04:14 -05003121 const struct adapter_info *ai;
3122 struct adapter *adapter = NULL;
3123 struct port_info *pi;
3124
3125 if (!version_printed) {
3126 printk(KERN_INFO "%s - version %s\n", DRV_DESC, DRV_VERSION);
3127 ++version_printed;
3128 }
3129
3130 if (!cxgb3_wq) {
3131 cxgb3_wq = create_singlethread_workqueue(DRV_NAME);
3132 if (!cxgb3_wq) {
3133 printk(KERN_ERR DRV_NAME
3134 ": cannot initialize work queue\n");
3135 return -ENOMEM;
3136 }
3137 }
3138
3139 err = pci_request_regions(pdev, DRV_NAME);
3140 if (err) {
3141 /* Just info, some other driver may have claimed the device. */
3142 dev_info(&pdev->dev, "cannot obtain PCI resources\n");
3143 return err;
3144 }
3145
3146 err = pci_enable_device(pdev);
3147 if (err) {
3148 dev_err(&pdev->dev, "cannot enable PCI device\n");
3149 goto out_release_regions;
3150 }
3151
Yang Hongyang6a355282009-04-06 19:01:13 -07003152 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
Divy Le Ray4d22de32007-01-18 22:04:14 -05003153 pci_using_dac = 1;
Yang Hongyang6a355282009-04-06 19:01:13 -07003154 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Divy Le Ray4d22de32007-01-18 22:04:14 -05003155 if (err) {
3156 dev_err(&pdev->dev, "unable to obtain 64-bit DMA for "
3157 "coherent allocations\n");
3158 goto out_disable_device;
3159 }
Yang Hongyang284901a2009-04-06 19:01:15 -07003160 } else if ((err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) != 0) {
Divy Le Ray4d22de32007-01-18 22:04:14 -05003161 dev_err(&pdev->dev, "no usable DMA configuration\n");
3162 goto out_disable_device;
3163 }
3164
3165 pci_set_master(pdev);
Divy Le Ray204e2f92008-05-06 19:26:01 -07003166 pci_save_state(pdev);
Divy Le Ray4d22de32007-01-18 22:04:14 -05003167
3168 mmio_start = pci_resource_start(pdev, 0);
3169 mmio_len = pci_resource_len(pdev, 0);
3170 ai = t3_get_adapter_info(ent->driver_data);
3171
3172 adapter = kzalloc(sizeof(*adapter), GFP_KERNEL);
3173 if (!adapter) {
3174 err = -ENOMEM;
3175 goto out_disable_device;
3176 }
3177
Divy Le Ray74b793e2009-06-09 23:25:21 +00003178 adapter->nofail_skb =
3179 alloc_skb(sizeof(struct cpl_set_tcb_field), GFP_KERNEL);
3180 if (!adapter->nofail_skb) {
3181 dev_err(&pdev->dev, "cannot allocate nofail buffer\n");
3182 err = -ENOMEM;
3183 goto out_free_adapter;
3184 }
3185
Divy Le Ray4d22de32007-01-18 22:04:14 -05003186 adapter->regs = ioremap_nocache(mmio_start, mmio_len);
3187 if (!adapter->regs) {
3188 dev_err(&pdev->dev, "cannot map device registers\n");
3189 err = -ENOMEM;
3190 goto out_free_adapter;
3191 }
3192
3193 adapter->pdev = pdev;
3194 adapter->name = pci_name(pdev);
3195 adapter->msg_enable = dflt_msg_enable;
3196 adapter->mmio_len = mmio_len;
3197
3198 mutex_init(&adapter->mdio_lock);
3199 spin_lock_init(&adapter->work_lock);
3200 spin_lock_init(&adapter->stats_lock);
3201
3202 INIT_LIST_HEAD(&adapter->adapter_list);
3203 INIT_WORK(&adapter->ext_intr_handler_task, ext_intr_task);
Divy Le Ray20d3fc12008-10-08 17:36:03 -07003204 INIT_WORK(&adapter->fatal_error_handler_task, fatal_error_task);
Divy Le Ray4d22de32007-01-18 22:04:14 -05003205 INIT_DELAYED_WORK(&adapter->adap_check_task, t3_adap_check_task);
3206
Divy Le Ray952cdf32009-03-26 16:39:24 +00003207 for (i = 0; i < ai->nports0 + ai->nports1; ++i) {
Divy Le Ray4d22de32007-01-18 22:04:14 -05003208 struct net_device *netdev;
3209
Divy Le Ray82ad3322008-12-16 01:09:39 -08003210 netdev = alloc_etherdev_mq(sizeof(struct port_info), SGE_QSETS);
Divy Le Ray4d22de32007-01-18 22:04:14 -05003211 if (!netdev) {
3212 err = -ENOMEM;
3213 goto out_free_dev;
3214 }
3215
Divy Le Ray4d22de32007-01-18 22:04:14 -05003216 SET_NETDEV_DEV(netdev, &pdev->dev);
3217
3218 adapter->port[i] = netdev;
3219 pi = netdev_priv(netdev);
Divy Le Ray5fbf8162007-08-29 19:15:47 -07003220 pi->adapter = adapter;
Roland Dreier47fd23f2009-01-11 00:19:36 -08003221 pi->rx_offload = T3_RX_CSUM | T3_LRO;
Divy Le Ray4d22de32007-01-18 22:04:14 -05003222 pi->port_id = i;
3223 netif_carrier_off(netdev);
Divy Le Ray82ad3322008-12-16 01:09:39 -08003224 netif_tx_stop_all_queues(netdev);
Divy Le Ray4d22de32007-01-18 22:04:14 -05003225 netdev->irq = pdev->irq;
3226 netdev->mem_start = mmio_start;
3227 netdev->mem_end = mmio_start + mmio_len - 1;
Divy Le Ray4d22de32007-01-18 22:04:14 -05003228 netdev->features |= NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
Herbert Xu7be2df42009-01-21 14:39:13 -08003229 netdev->features |= NETIF_F_GRO;
Divy Le Ray4d22de32007-01-18 22:04:14 -05003230 if (pci_using_dac)
3231 netdev->features |= NETIF_F_HIGHDMA;
3232
3233 netdev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Stephen Hemmingerdd752692008-11-19 22:15:39 -08003234 netdev->netdev_ops = &cxgb_netdev_ops;
Divy Le Ray4d22de32007-01-18 22:04:14 -05003235 SET_ETHTOOL_OPS(netdev, &cxgb_ethtool_ops);
3236 }
3237
Divy Le Ray5fbf8162007-08-29 19:15:47 -07003238 pci_set_drvdata(pdev, adapter);
Divy Le Ray4d22de32007-01-18 22:04:14 -05003239 if (t3_prep_adapter(adapter, ai, 1) < 0) {
3240 err = -ENODEV;
3241 goto out_free_dev;
3242 }
Jeff Garzik2eab17a2007-11-23 21:59:45 -05003243
Divy Le Ray4d22de32007-01-18 22:04:14 -05003244 /*
3245 * The card is now ready to go. If any errors occur during device
3246 * registration we do not fail the whole card but rather proceed only
3247 * with the ports we manage to register successfully. However we must
3248 * register at least one net device.
3249 */
3250 for_each_port(adapter, i) {
3251 err = register_netdev(adapter->port[i]);
3252 if (err)
3253 dev_warn(&pdev->dev,
3254 "cannot register net device %s, skipping\n",
3255 adapter->port[i]->name);
3256 else {
3257 /*
3258 * Change the name we use for messages to the name of
3259 * the first successfully registered interface.
3260 */
3261 if (!adapter->registered_device_map)
3262 adapter->name = adapter->port[i]->name;
3263
3264 __set_bit(i, &adapter->registered_device_map);
3265 }
3266 }
3267 if (!adapter->registered_device_map) {
3268 dev_err(&pdev->dev, "could not register any net devices\n");
3269 goto out_free_dev;
3270 }
3271
3272 /* Driver's ready. Reflect it on LEDs */
3273 t3_led_ready(adapter);
3274
3275 if (is_offload(adapter)) {
3276 __set_bit(OFFLOAD_DEVMAP_BIT, &adapter->registered_device_map);
3277 cxgb3_adapter_ofld(adapter);
3278 }
3279
3280 /* See what interrupts we'll be using */
3281 if (msi > 1 && cxgb_enable_msix(adapter) == 0)
3282 adapter->flags |= USING_MSIX;
3283 else if (msi > 0 && pci_enable_msi(pdev) == 0)
3284 adapter->flags |= USING_MSI;
3285
Divy Le Ray8c263762008-10-08 17:37:33 -07003286 set_nqsets(adapter);
3287
Divy Le Ray0ee8d332007-02-08 16:55:59 -08003288 err = sysfs_create_group(&adapter->port[0]->dev.kobj,
Divy Le Ray4d22de32007-01-18 22:04:14 -05003289 &cxgb3_attr_group);
3290
3291 print_port_info(adapter, ai);
3292 return 0;
3293
3294out_free_dev:
3295 iounmap(adapter->regs);
Divy Le Ray952cdf32009-03-26 16:39:24 +00003296 for (i = ai->nports0 + ai->nports1 - 1; i >= 0; --i)
Divy Le Ray4d22de32007-01-18 22:04:14 -05003297 if (adapter->port[i])
3298 free_netdev(adapter->port[i]);
3299
3300out_free_adapter:
3301 kfree(adapter);
3302
3303out_disable_device:
3304 pci_disable_device(pdev);
3305out_release_regions:
3306 pci_release_regions(pdev);
3307 pci_set_drvdata(pdev, NULL);
3308 return err;
3309}
3310
3311static void __devexit remove_one(struct pci_dev *pdev)
3312{
Divy Le Ray5fbf8162007-08-29 19:15:47 -07003313 struct adapter *adapter = pci_get_drvdata(pdev);
Divy Le Ray4d22de32007-01-18 22:04:14 -05003314
Divy Le Ray5fbf8162007-08-29 19:15:47 -07003315 if (adapter) {
Divy Le Ray4d22de32007-01-18 22:04:14 -05003316 int i;
Divy Le Ray4d22de32007-01-18 22:04:14 -05003317
3318 t3_sge_stop(adapter);
Divy Le Ray0ee8d332007-02-08 16:55:59 -08003319 sysfs_remove_group(&adapter->port[0]->dev.kobj,
Divy Le Ray4d22de32007-01-18 22:04:14 -05003320 &cxgb3_attr_group);
3321
Divy Le Ray4d22de32007-01-18 22:04:14 -05003322 if (is_offload(adapter)) {
3323 cxgb3_adapter_unofld(adapter);
3324 if (test_bit(OFFLOAD_DEVMAP_BIT,
3325 &adapter->open_device_map))
3326 offload_close(&adapter->tdev);
3327 }
3328
Divy Le Ray67d92ab2007-11-16 11:21:50 -08003329 for_each_port(adapter, i)
3330 if (test_bit(i, &adapter->registered_device_map))
3331 unregister_netdev(adapter->port[i]);
3332
Divy Le Ray0ca41c02008-09-25 14:05:28 +00003333 t3_stop_sge_timers(adapter);
Divy Le Ray4d22de32007-01-18 22:04:14 -05003334 t3_free_sge_resources(adapter);
3335 cxgb_disable_msi(adapter);
3336
Divy Le Ray4d22de32007-01-18 22:04:14 -05003337 for_each_port(adapter, i)
3338 if (adapter->port[i])
3339 free_netdev(adapter->port[i]);
3340
3341 iounmap(adapter->regs);
Divy Le Ray74b793e2009-06-09 23:25:21 +00003342 if (adapter->nofail_skb)
3343 kfree_skb(adapter->nofail_skb);
Divy Le Ray4d22de32007-01-18 22:04:14 -05003344 kfree(adapter);
3345 pci_release_regions(pdev);
3346 pci_disable_device(pdev);
3347 pci_set_drvdata(pdev, NULL);
3348 }
3349}
3350
3351static struct pci_driver driver = {
3352 .name = DRV_NAME,
3353 .id_table = cxgb3_pci_tbl,
3354 .probe = init_one,
3355 .remove = __devexit_p(remove_one),
Divy Le Ray91a6b502007-11-16 11:21:55 -08003356 .err_handler = &t3_err_handler,
Divy Le Ray4d22de32007-01-18 22:04:14 -05003357};
3358
3359static int __init cxgb3_init_module(void)
3360{
3361 int ret;
3362
3363 cxgb3_offload_init();
3364
3365 ret = pci_register_driver(&driver);
3366 return ret;
3367}
3368
3369static void __exit cxgb3_cleanup_module(void)
3370{
3371 pci_unregister_driver(&driver);
3372 if (cxgb3_wq)
3373 destroy_workqueue(cxgb3_wq);
3374}
3375
3376module_init(cxgb3_init_module);
3377module_exit(cxgb3_cleanup_module);