netxen_nic_main.c 59.6 KB
Newer Older
A
Amit S. Kale 已提交
1
/*
D
Dhananjay Phadke 已提交
2
 * Copyright (C) 2003 - 2009 NetXen, Inc.
A
Amit S. Kale 已提交
3
 * All rights reserved.
4
 *
A
Amit S. Kale 已提交
5 6 7 8
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
9
 *
A
Amit S. Kale 已提交
10 11 12 13
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
14
 *
A
Amit S. Kale 已提交
15 16 17 18
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 * MA  02111-1307, USA.
19
 *
A
Amit S. Kale 已提交
20 21
 * The full GNU General Public License is included in this distribution
 * in the file called LICENSE.
22
 *
A
Amit S. Kale 已提交
23 24
 * Contact Information:
 *    info@netxen.com
D
Dhananjay Phadke 已提交
25 26 27
 * NetXen Inc,
 * 18922 Forge Drive
 * Cupertino, CA 95014-0701
A
Amit S. Kale 已提交
28 29 30
 *
 */

31
#include <linux/vmalloc.h>
D
Dhananjay Phadke 已提交
32
#include <linux/interrupt.h>
A
Amit S. Kale 已提交
33 34 35 36
#include "netxen_nic_hw.h"

#include "netxen_nic.h"

J
Jeff Garzik 已提交
37
#include <linux/dma-mapping.h>
38
#include <linux/if_vlan.h>
39
#include <net/ip.h>
40
#include <linux/ipv6.h>
41
#include <linux/inetdevice.h>
J
Jeff Garzik 已提交
42

A
Amit S. Kale 已提交
43 44 45 46
MODULE_DESCRIPTION("NetXen Multi port (1/10) Gigabit Network Driver");
MODULE_LICENSE("GPL");
MODULE_VERSION(NETXEN_NIC_LINUX_VERSIONID);

47
char netxen_nic_driver_name[] = "netxen_nic";
A
Amit S. Kale 已提交
48
static char netxen_nic_driver_string[] = "NetXen Network Driver version "
49
    NETXEN_NIC_LINUX_VERSIONID;
A
Amit S. Kale 已提交
50

51 52 53 54 55 56 57 58 59
static int port_mode = NETXEN_PORT_MODE_AUTO_NEG;

/* Default to restricted 1G auto-neg mode */
static int wol_port_mode = 5;

static int use_msi = 1;

static int use_msi_x = 1;

A
Amit S. Kale 已提交
60 61
/* Local functions to NetXen NIC driver */
static int __devinit netxen_nic_probe(struct pci_dev *pdev,
62
		const struct pci_device_id *ent);
A
Amit S. Kale 已提交
63 64 65
static void __devexit netxen_nic_remove(struct pci_dev *pdev);
static int netxen_nic_open(struct net_device *netdev);
static int netxen_nic_close(struct net_device *netdev);
66 67
static netdev_tx_t netxen_nic_xmit_frame(struct sk_buff *,
					       struct net_device *);
A
Amit S. Kale 已提交
68
static void netxen_tx_timeout(struct net_device *netdev);
69
static void netxen_tx_timeout_task(struct work_struct *work);
70 71 72 73
static void netxen_fw_poll_work(struct work_struct *work);
static void netxen_schedule_work(struct netxen_adapter *adapter,
		work_func_t func, int delay);
static void netxen_cancel_fw_work(struct netxen_adapter *adapter);
74
static int netxen_nic_poll(struct napi_struct *napi, int budget);
A
Amit S. Kale 已提交
75 76 77
#ifdef CONFIG_NET_POLL_CONTROLLER
static void netxen_nic_poll_controller(struct net_device *netdev);
#endif
78 79 80 81

static void netxen_create_sysfs_entries(struct netxen_adapter *adapter);
static void netxen_remove_sysfs_entries(struct netxen_adapter *adapter);

82 83 84
static int nx_decr_dev_ref_cnt(struct netxen_adapter *adapter);
static int netxen_can_start_firmware(struct netxen_adapter *adapter);

J
Jeff Garzik 已提交
85
static irqreturn_t netxen_intr(int irq, void *data);
D
Dhananjay Phadke 已提交
86
static irqreturn_t netxen_msi_intr(int irq, void *data);
87
static irqreturn_t netxen_msix_intr(int irq, void *data);
A
Amit S. Kale 已提交
88

89 90
static void netxen_config_indev_addr(struct net_device *dev, unsigned long);

A
Amit S. Kale 已提交
91
/*  PCI Device ID Table  */
92
#define ENTRY(device) \
D
Dhananjay Phadke 已提交
93
	{PCI_DEVICE(PCI_VENDOR_ID_NETXEN, (device)), \
94 95
	.class = PCI_CLASS_NETWORK_ETHERNET << 8, .class_mask = ~0}

A
Amit S. Kale 已提交
96
static struct pci_device_id netxen_pci_tbl[] __devinitdata = {
D
Dhananjay Phadke 已提交
97 98 99 100 101 102 103 104
	ENTRY(PCI_DEVICE_ID_NX2031_10GXSR),
	ENTRY(PCI_DEVICE_ID_NX2031_10GCX4),
	ENTRY(PCI_DEVICE_ID_NX2031_4GCU),
	ENTRY(PCI_DEVICE_ID_NX2031_IMEZ),
	ENTRY(PCI_DEVICE_ID_NX2031_HMEZ),
	ENTRY(PCI_DEVICE_ID_NX2031_XG_MGMT),
	ENTRY(PCI_DEVICE_ID_NX2031_XG_MGMT2),
	ENTRY(PCI_DEVICE_ID_NX3031),
A
Amit S. Kale 已提交
105 106 107 108 109
	{0,}
};

MODULE_DEVICE_TABLE(pci, netxen_pci_tbl);

110 111 112 113 114
static uint32_t crb_cmd_producer[4] = {
	CRB_CMD_PRODUCER_OFFSET, CRB_CMD_PRODUCER_OFFSET_1,
	CRB_CMD_PRODUCER_OFFSET_2, CRB_CMD_PRODUCER_OFFSET_3
};

115
void
116
netxen_nic_update_cmd_producer(struct netxen_adapter *adapter,
117
		struct nx_host_tx_ring *tx_ring)
118
{
119
	NXWRIO(adapter, tx_ring->crb_cmd_producer, tx_ring->producer);
120 121 122 123 124

	if (netxen_tx_avail(tx_ring) <= TX_STOP_THRESH) {
		netif_stop_queue(adapter->netdev);
		smp_mb();
	}
125 126
}

127 128 129 130 131
static uint32_t crb_cmd_consumer[4] = {
	CRB_CMD_CONSUMER_OFFSET, CRB_CMD_CONSUMER_OFFSET_1,
	CRB_CMD_CONSUMER_OFFSET_2, CRB_CMD_CONSUMER_OFFSET_3
};

132 133
static inline void
netxen_nic_update_cmd_consumer(struct netxen_adapter *adapter,
134
		struct nx_host_tx_ring *tx_ring)
135
{
136
	NXWRIO(adapter, tx_ring->crb_cmd_consumer, tx_ring->sw_consumer);
137 138
}

139
static uint32_t msi_tgt_status[8] = {
D
Dhananjay Phadke 已提交
140
	ISR_INT_TARGET_STATUS, ISR_INT_TARGET_STATUS_F1,
141 142 143
	ISR_INT_TARGET_STATUS_F2, ISR_INT_TARGET_STATUS_F3,
	ISR_INT_TARGET_STATUS_F4, ISR_INT_TARGET_STATUS_F5,
	ISR_INT_TARGET_STATUS_F6, ISR_INT_TARGET_STATUS_F7
D
Dhananjay Phadke 已提交
144 145
};

146 147
static struct netxen_legacy_intr_set legacy_intr[] = NX_LEGACY_INTR_CONFIG;

148
static inline void netxen_nic_disable_int(struct nx_host_sds_ring *sds_ring)
149
{
150 151
	struct netxen_adapter *adapter = sds_ring->adapter;

152
	NXWRIO(adapter, sds_ring->crb_intr_mask, 0);
153 154
}

155
static inline void netxen_nic_enable_int(struct nx_host_sds_ring *sds_ring)
156
{
157 158
	struct netxen_adapter *adapter = sds_ring->adapter;

159
	NXWRIO(adapter, sds_ring->crb_intr_mask, 0x1);
160

161
	if (!NETXEN_IS_MSI_FAMILY(adapter))
162
		NXWRIO(adapter, adapter->tgt_mask_reg, 0xfbff);
163 164
}

165 166 167 168 169 170 171 172 173 174
static int
netxen_alloc_sds_rings(struct netxen_recv_context *recv_ctx, int count)
{
	int size = sizeof(struct nx_host_sds_ring) * count;

	recv_ctx->sds_rings = kzalloc(size, GFP_KERNEL);

	return (recv_ctx->sds_rings == NULL);
}

175
static void
176 177 178 179
netxen_free_sds_rings(struct netxen_recv_context *recv_ctx)
{
	if (recv_ctx->sds_rings != NULL)
		kfree(recv_ctx->sds_rings);
180 181

	recv_ctx->sds_rings = NULL;
182 183 184
}

static int
185 186 187 188 189 190
netxen_napi_add(struct netxen_adapter *adapter, struct net_device *netdev)
{
	int ring;
	struct nx_host_sds_ring *sds_ring;
	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx;

191
	if (netxen_alloc_sds_rings(recv_ctx, adapter->max_sds_rings))
192
		return -ENOMEM;
193

194 195 196 197 198
	for (ring = 0; ring < adapter->max_sds_rings; ring++) {
		sds_ring = &recv_ctx->sds_rings[ring];
		netif_napi_add(netdev, &sds_ring->napi,
				netxen_nic_poll, NETXEN_NETDEV_WEIGHT);
	}
199 200

	return 0;
201 202
}

203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
static void
netxen_napi_del(struct netxen_adapter *adapter)
{
	int ring;
	struct nx_host_sds_ring *sds_ring;
	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx;

	for (ring = 0; ring < adapter->max_sds_rings; ring++) {
		sds_ring = &recv_ctx->sds_rings[ring];
		netif_napi_del(&sds_ring->napi);
	}

	netxen_free_sds_rings(&adapter->recv_ctx);
}

218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
static void
netxen_napi_enable(struct netxen_adapter *adapter)
{
	int ring;
	struct nx_host_sds_ring *sds_ring;
	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx;

	for (ring = 0; ring < adapter->max_sds_rings; ring++) {
		sds_ring = &recv_ctx->sds_rings[ring];
		napi_enable(&sds_ring->napi);
		netxen_nic_enable_int(sds_ring);
	}
}

static void
netxen_napi_disable(struct netxen_adapter *adapter)
{
	int ring;
	struct nx_host_sds_ring *sds_ring;
	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx;

	for (ring = 0; ring < adapter->max_sds_rings; ring++) {
		sds_ring = &recv_ctx->sds_rings[ring];
241
		netxen_nic_disable_int(sds_ring);
242 243
		napi_synchronize(&sds_ring->napi);
		napi_disable(&sds_ring->napi);
244 245 246
	}
}

247
static int nx_set_dma_mask(struct netxen_adapter *adapter)
248 249
{
	struct pci_dev *pdev = adapter->pdev;
250 251 252
	uint64_t mask, cmask;

	adapter->pci_using_dac = 0;
253

254 255
	mask = DMA_BIT_MASK(32);
	cmask = DMA_BIT_MASK(32);
256

257
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
258
#ifndef CONFIG_IA64
259
		mask = DMA_BIT_MASK(35);
260
#endif
261 262 263 264 265
	} else {
		mask = DMA_BIT_MASK(39);
		cmask = mask;
	}

266
	if (pci_set_dma_mask(pdev, mask) == 0 &&
267
		pci_set_consistent_dma_mask(pdev, cmask) == 0) {
268 269 270 271
		adapter->pci_using_dac = 1;
		return 0;
	}

272 273 274 275 276 277 278 279
	return -EIO;
}

/* Update addressable range if firmware supports it */
static int
nx_update_dma_mask(struct netxen_adapter *adapter)
{
	int change, shift, err;
280
	uint64_t mask, old_mask, old_cmask;
281 282 283 284
	struct pci_dev *pdev = adapter->pdev;

	change = 0;

285
	shift = NXRD32(adapter, CRB_DMA_SHIFT);
286
	if (shift > 32)
287 288 289 290 291 292 293 294 295
		return 0;

	if (NX_IS_REVISION_P3(adapter->ahw.revision_id) && (shift > 9))
		change = 1;
	else if ((adapter->ahw.revision_id == NX_P2_C1) && (shift <= 4))
		change = 1;

	if (change) {
		old_mask = pdev->dma_mask;
296 297
		old_cmask = pdev->dev.coherent_dma_mask;

298
		mask = DMA_BIT_MASK(32+shift);
299 300 301

		err = pci_set_dma_mask(pdev, mask);
		if (err)
302 303 304 305 306 307 308 309 310
			goto err_out;

		if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {

			err = pci_set_consistent_dma_mask(pdev, mask);
			if (err)
				goto err_out;
		}
		dev_info(&pdev->dev, "using %d-bit dma mask\n", 32+shift);
311 312 313
	}

	return 0;
314 315 316 317 318

err_out:
	pci_set_dma_mask(pdev, old_mask);
	pci_set_consistent_dma_mask(pdev, old_cmask);
	return err;
319 320 321 322 323
}

static int
netxen_check_hw_init(struct netxen_adapter *adapter, int first_boot)
{
D
Dhananjay Phadke 已提交
324
	u32 val, timeout;
325 326 327

	if (first_boot == 0x55555555) {
		/* This is the first boot after power up */
328
		NXWR32(adapter, NETXEN_CAM_RAM(0x1fc), NETXEN_BDINFO_MAGIC);
D
Dhananjay Phadke 已提交
329 330 331

		if (!NX_IS_REVISION_P2(adapter->ahw.revision_id))
			return 0;
332 333

		/* PCI bus master workaround */
334
		first_boot = NXRD32(adapter, NETXEN_PCIE_REG(0x4));
335 336
		if (!(first_boot & 0x4)) {
			first_boot |= 0x4;
337 338
			NXWR32(adapter, NETXEN_PCIE_REG(0x4), first_boot);
			first_boot = NXRD32(adapter, NETXEN_PCIE_REG(0x4));
339 340 341
		}

		/* This is the first boot after power up */
342
		first_boot = NXRD32(adapter, NETXEN_ROMUSB_GLB_SW_RESET);
343 344
		if (first_boot != 0x80000f) {
			/* clear the register for future unloads/loads */
345
			NXWR32(adapter, NETXEN_CAM_RAM(0x1fc), 0);
D
Dhananjay Phadke 已提交
346
			return -EIO;
347 348
		}

D
Dhananjay Phadke 已提交
349
		/* Start P2 boot loader */
350 351
		val = NXRD32(adapter, NETXEN_ROMUSB_GLB_PEGTUNE_DONE);
		NXWR32(adapter, NETXEN_ROMUSB_GLB_PEGTUNE_DONE, val | 0x1);
D
Dhananjay Phadke 已提交
352 353 354
		timeout = 0;
		do {
			msleep(1);
355
			val = NXRD32(adapter, NETXEN_CAM_RAM(0x1fc));
D
Dhananjay Phadke 已提交
356 357 358 359 360

			if (++timeout > 5000)
				return -EIO;

		} while (val == NETXEN_BDINFO_MAGIC);
361
	}
D
Dhananjay Phadke 已提交
362
	return 0;
363 364 365 366 367 368
}

static void netxen_set_port_mode(struct netxen_adapter *adapter)
{
	u32 val, data;

369
	val = adapter->ahw.board_type;
370 371 372 373
	if ((val == NETXEN_BRDTYPE_P3_HMEZ) ||
		(val == NETXEN_BRDTYPE_P3_XG_LOM)) {
		if (port_mode == NETXEN_PORT_MODE_802_3_AP) {
			data = NETXEN_PORT_MODE_802_3_AP;
374
			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data);
375 376
		} else if (port_mode == NETXEN_PORT_MODE_XG) {
			data = NETXEN_PORT_MODE_XG;
377
			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data);
378 379
		} else if (port_mode == NETXEN_PORT_MODE_AUTO_NEG_1G) {
			data = NETXEN_PORT_MODE_AUTO_NEG_1G;
380
			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data);
381 382
		} else if (port_mode == NETXEN_PORT_MODE_AUTO_NEG_XG) {
			data = NETXEN_PORT_MODE_AUTO_NEG_XG;
383
			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data);
384 385
		} else {
			data = NETXEN_PORT_MODE_AUTO_NEG;
386
			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data);
387 388 389 390 391 392 393 394
		}

		if ((wol_port_mode != NETXEN_PORT_MODE_802_3_AP) &&
			(wol_port_mode != NETXEN_PORT_MODE_XG) &&
			(wol_port_mode != NETXEN_PORT_MODE_AUTO_NEG_1G) &&
			(wol_port_mode != NETXEN_PORT_MODE_AUTO_NEG_XG)) {
			wol_port_mode = NETXEN_PORT_MODE_AUTO_NEG;
		}
395
		NXWR32(adapter, NETXEN_WOL_PORT_MODE, wol_port_mode);
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
	}
}

static void netxen_set_msix_bit(struct pci_dev *pdev, int enable)
{
	u32 control;
	int pos;

	pos = pci_find_capability(pdev, PCI_CAP_ID_MSIX);
	if (pos) {
		pci_read_config_dword(pdev, pos, &control);
		if (enable)
			control |= PCI_MSIX_FLAGS_ENABLE;
		else
			control = 0;
		pci_write_config_dword(pdev, pos, control);
	}
}

415
static void netxen_init_msix_entries(struct netxen_adapter *adapter, int count)
416 417 418
{
	int i;

419
	for (i = 0; i < count; i++)
420 421 422
		adapter->msix_entries[i].entry = i;
}

D
Dhananjay Phadke 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
static int
netxen_read_mac_addr(struct netxen_adapter *adapter)
{
	int i;
	unsigned char *p;
	__le64 mac_addr;
	struct net_device *netdev = adapter->netdev;
	struct pci_dev *pdev = adapter->pdev;

	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
		if (netxen_p3_get_mac_addr(adapter, &mac_addr) != 0)
			return -EIO;
	} else {
		if (netxen_get_flash_mac_addr(adapter, &mac_addr) != 0)
			return -EIO;
	}

	p = (unsigned char *)&mac_addr;
	for (i = 0; i < 6; i++)
		netdev->dev_addr[i] = *(p + 5 - i);

	memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len);

	/* set station address */

J
Johannes Berg 已提交
448 449
	if (!is_valid_ether_addr(netdev->perm_addr))
		dev_warn(&pdev->dev, "Bad MAC address %pM.\n", netdev->dev_addr);
D
Dhananjay Phadke 已提交
450 451 452 453

	return 0;
}

D
Dhananjay Phadke 已提交
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
int netxen_nic_set_mac(struct net_device *netdev, void *p)
{
	struct netxen_adapter *adapter = netdev_priv(netdev);
	struct sockaddr *addr = p;

	if (!is_valid_ether_addr(addr->sa_data))
		return -EINVAL;

	if (netif_running(netdev)) {
		netif_device_detach(netdev);
		netxen_napi_disable(adapter);
	}

	memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
	adapter->macaddr_set(adapter, addr->sa_data);

	if (netif_running(netdev)) {
		netif_device_attach(netdev);
		netxen_napi_enable(adapter);
	}
	return 0;
}

477 478 479 480
static void netxen_set_multicast_list(struct net_device *dev)
{
	struct netxen_adapter *adapter = netdev_priv(dev);

D
Dhananjay Phadke 已提交
481
	adapter->set_multi(dev);
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
}

static const struct net_device_ops netxen_netdev_ops = {
	.ndo_open	   = netxen_nic_open,
	.ndo_stop	   = netxen_nic_close,
	.ndo_start_xmit    = netxen_nic_xmit_frame,
	.ndo_get_stats	   = netxen_nic_get_stats,
	.ndo_validate_addr = eth_validate_addr,
	.ndo_set_multicast_list = netxen_set_multicast_list,
	.ndo_set_mac_address    = netxen_nic_set_mac,
	.ndo_change_mtu	   = netxen_nic_change_mtu,
	.ndo_tx_timeout	   = netxen_tx_timeout,
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller = netxen_nic_poll_controller,
#endif
};

D
Dhananjay Phadke 已提交
499 500 501 502 503
static void
netxen_setup_intr(struct netxen_adapter *adapter)
{
	struct netxen_legacy_intr_set *legacy_intrp;
	struct pci_dev *pdev = adapter->pdev;
504 505 506 507 508 509 510 511 512
	int err, num_msix;

	if (adapter->rss_supported) {
		num_msix = (num_online_cpus() >= MSIX_ENTRIES_PER_ADAPTER) ?
			MSIX_ENTRIES_PER_ADAPTER : 2;
	} else
		num_msix = 1;

	adapter->max_sds_rings = 1;
D
Dhananjay Phadke 已提交
513 514 515 516 517 518 519

	adapter->flags &= ~(NETXEN_NIC_MSI_ENABLED | NETXEN_NIC_MSIX_ENABLED);

	if (adapter->ahw.revision_id >= NX_P3_B0)
		legacy_intrp = &legacy_intr[adapter->ahw.pci_func];
	else
		legacy_intrp = &legacy_intr[0];
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535

	adapter->int_vec_bit = legacy_intrp->int_vec_bit;
	adapter->tgt_status_reg = netxen_get_ioaddr(adapter,
			legacy_intrp->tgt_status_reg);
	adapter->tgt_mask_reg = netxen_get_ioaddr(adapter,
			legacy_intrp->tgt_mask_reg);
	adapter->pci_int_reg = netxen_get_ioaddr(adapter,
			legacy_intrp->pci_int_reg);
	adapter->isr_int_vec = netxen_get_ioaddr(adapter, ISR_INT_VECTOR);

	if (adapter->ahw.revision_id >= NX_P3_B1)
		adapter->crb_int_state_reg = netxen_get_ioaddr(adapter,
			ISR_INT_STATE_REG);
	else
		adapter->crb_int_state_reg = netxen_get_ioaddr(adapter,
			CRB_INT_VECTOR);
D
Dhananjay Phadke 已提交
536 537 538 539 540

	netxen_set_msix_bit(pdev, 0);

	if (adapter->msix_supported) {

541 542 543 544 545
		netxen_init_msix_entries(adapter, num_msix);
		err = pci_enable_msix(pdev, adapter->msix_entries, num_msix);
		if (err == 0) {
			adapter->flags |= NETXEN_NIC_MSIX_ENABLED;
			netxen_set_msix_bit(pdev, 1);
D
Dhananjay Phadke 已提交
546

547 548
			if (adapter->rss_supported)
				adapter->max_sds_rings = num_msix;
D
Dhananjay Phadke 已提交
549

550 551 552 553 554 555 556 557
			dev_info(&pdev->dev, "using msi-x interrupts\n");
			return;
		}

		if (err > 0)
			pci_disable_msix(pdev);

		/* fall through for msi */
D
Dhananjay Phadke 已提交
558
	}
559 560 561

	if (use_msi && !pci_enable_msi(pdev)) {
		adapter->flags |= NETXEN_NIC_MSI_ENABLED;
562 563
		adapter->tgt_status_reg = netxen_get_ioaddr(adapter,
				msi_tgt_status[adapter->ahw.pci_func]);
564
		dev_info(&pdev->dev, "using msi interrupts\n");
D
Dhananjay Phadke 已提交
565
		adapter->msix_entries[0].vector = pdev->irq;
566 567 568 569 570
		return;
	}

	dev_info(&pdev->dev, "using legacy interrupts\n");
	adapter->msix_entries[0].vector = pdev->irq;
D
Dhananjay Phadke 已提交
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
}

static void
netxen_teardown_intr(struct netxen_adapter *adapter)
{
	if (adapter->flags & NETXEN_NIC_MSIX_ENABLED)
		pci_disable_msix(adapter->pdev);
	if (adapter->flags & NETXEN_NIC_MSI_ENABLED)
		pci_disable_msi(adapter->pdev);
}

static void
netxen_cleanup_pci_map(struct netxen_adapter *adapter)
{
	if (adapter->ahw.db_base != NULL)
		iounmap(adapter->ahw.db_base);
	if (adapter->ahw.pci_base0 != NULL)
		iounmap(adapter->ahw.pci_base0);
	if (adapter->ahw.pci_base1 != NULL)
		iounmap(adapter->ahw.pci_base1);
	if (adapter->ahw.pci_base2 != NULL)
		iounmap(adapter->ahw.pci_base2);
}

static int
netxen_setup_pci_map(struct netxen_adapter *adapter)
{
	void __iomem *mem_ptr0 = NULL;
	void __iomem *mem_ptr1 = NULL;
	void __iomem *mem_ptr2 = NULL;
	void __iomem *db_ptr = NULL;

	unsigned long mem_base, mem_len, db_base, db_len = 0, pci_len0 = 0;

	struct pci_dev *pdev = adapter->pdev;
	int pci_func = adapter->ahw.pci_func;

	int err = 0;

	/*
	 * Set the CRB window to invalid. If any register in window 0 is
	 * accessed it should set the window to 0 and then reset it to 1.
	 */
	adapter->curr_window = 255;
	adapter->ahw.qdr_sn_window = -1;
	adapter->ahw.ddr_mn_window = -1;

	/* remap phys address */
	mem_base = pci_resource_start(pdev, 0);	/* 0 is for BAR 0 */
	mem_len = pci_resource_len(pdev, 0);
	pci_len0 = 0;

	/* 128 Meg of memory */
	if (mem_len == NETXEN_PCI_128MB_SIZE) {
		mem_ptr0 = ioremap(mem_base, FIRST_PAGE_GROUP_SIZE);
		mem_ptr1 = ioremap(mem_base + SECOND_PAGE_GROUP_START,
				SECOND_PAGE_GROUP_SIZE);
		mem_ptr2 = ioremap(mem_base + THIRD_PAGE_GROUP_START,
				THIRD_PAGE_GROUP_SIZE);
	} else if (mem_len == NETXEN_PCI_32MB_SIZE) {
		mem_ptr1 = ioremap(mem_base, SECOND_PAGE_GROUP_SIZE);
		mem_ptr2 = ioremap(mem_base + THIRD_PAGE_GROUP_START -
			SECOND_PAGE_GROUP_START, THIRD_PAGE_GROUP_SIZE);
	} else if (mem_len == NETXEN_PCI_2MB_SIZE) {

		mem_ptr0 = pci_ioremap_bar(pdev, 0);
		if (mem_ptr0 == NULL) {
			dev_err(&pdev->dev, "failed to map PCI bar 0\n");
			return -EIO;
		}
		pci_len0 = mem_len;

		adapter->ahw.ddr_mn_window = 0;
		adapter->ahw.qdr_sn_window = 0;

646 647 648 649
		adapter->ahw.mn_win_crb = NETXEN_PCI_CRBSPACE +
			0x100000 + PCIX_MN_WINDOW + (pci_func * 0x20);
		adapter->ahw.ms_win_crb = NETXEN_PCI_CRBSPACE +
			0x100000 + PCIX_SN_WINDOW;
D
Dhananjay Phadke 已提交
650 651 652 653 654 655 656 657 658
		if (pci_func < 4)
			adapter->ahw.ms_win_crb += (pci_func * 0x20);
		else
			adapter->ahw.ms_win_crb +=
					0xA0 + ((pci_func - 4) * 0x10);
	} else {
		return -EIO;
	}

659 660
	netxen_setup_hwops(adapter);

D
Dhananjay Phadke 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
	dev_info(&pdev->dev, "%dMB memory map\n", (int)(mem_len>>20));

	adapter->ahw.pci_base0 = mem_ptr0;
	adapter->ahw.pci_len0 = pci_len0;
	adapter->ahw.pci_base1 = mem_ptr1;
	adapter->ahw.pci_base2 = mem_ptr2;

	if (NX_IS_REVISION_P3(adapter->ahw.revision_id))
		goto skip_doorbell;

	db_base = pci_resource_start(pdev, 4);	/* doorbell is on bar 4 */
	db_len = pci_resource_len(pdev, 4);

	if (db_len == 0) {
		printk(KERN_ERR "%s: doorbell is disabled\n",
				netxen_nic_driver_name);
		err = -EIO;
		goto err_out;
	}

	db_ptr = ioremap(db_base, NETXEN_DB_MAPSIZE_BYTES);
	if (!db_ptr) {
		printk(KERN_ERR "%s: Failed to allocate doorbell map.",
				netxen_nic_driver_name);
		err = -EIO;
		goto err_out;
	}

skip_doorbell:
	adapter->ahw.db_base = db_ptr;
	adapter->ahw.db_len = db_len;
	return 0;

err_out:
	netxen_cleanup_pci_map(adapter);
	return err;
}

699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
static void
netxen_check_options(struct netxen_adapter *adapter)
{
	u32 fw_major, fw_minor, fw_build;
	char brd_name[NETXEN_MAX_SHORT_NAME];
	char serial_num[32];
	int i, offset, val;
	int *ptr32;
	struct pci_dev *pdev = adapter->pdev;

	adapter->driver_mismatch = 0;

	ptr32 = (int *)&serial_num;
	offset = NX_FW_SERIAL_NUM_OFFSET;
	for (i = 0; i < 8; i++) {
		if (netxen_rom_fast_read(adapter, offset, &val) == -1) {
			dev_err(&pdev->dev, "error reading board info\n");
			adapter->driver_mismatch = 1;
			return;
		}
		ptr32[i] = cpu_to_le32(val);
		offset += sizeof(u32);
	}

	fw_major = NXRD32(adapter, NETXEN_FW_VERSION_MAJOR);
	fw_minor = NXRD32(adapter, NETXEN_FW_VERSION_MINOR);
	fw_build = NXRD32(adapter, NETXEN_FW_VERSION_SUB);

	adapter->fw_version = NETXEN_VERSION_CODE(fw_major, fw_minor, fw_build);

	if (adapter->portnum == 0) {
		get_brd_name_by_type(adapter->ahw.board_type, brd_name);

		printk(KERN_INFO "NetXen %s Board S/N %s  Chip rev 0x%x\n",
				brd_name, serial_num, adapter->ahw.revision_id);
	}

	if (adapter->fw_version < NETXEN_VERSION_CODE(3, 4, 216)) {
		adapter->driver_mismatch = 1;
		dev_warn(&pdev->dev, "firmware version %d.%d.%d unsupported\n",
				fw_major, fw_minor, fw_build);
		return;
	}

	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
		i = NXRD32(adapter, NETXEN_SRE_MISC);
		adapter->ahw.cut_through = (i & 0x8000) ? 1 : 0;
	}

	dev_info(&pdev->dev, "firmware v%d.%d.%d [%s]\n",
			fw_major, fw_minor, fw_build,
			adapter->ahw.cut_through ? "cut-through" : "legacy");

	if (adapter->fw_version >= NETXEN_VERSION_CODE(4, 0, 222))
		adapter->capabilities = NXRD32(adapter, CRB_FW_CAPABILITIES_1);

	adapter->flags &= ~NETXEN_NIC_LRO_ENABLED;

	if (adapter->ahw.port_type == NETXEN_NIC_XGBE) {
		adapter->num_rxd = DEFAULT_RCV_DESCRIPTORS_10G;
		adapter->num_jumbo_rxd = MAX_JUMBO_RCV_DESCRIPTORS_10G;
	} else if (adapter->ahw.port_type == NETXEN_NIC_GBE) {
		adapter->num_rxd = DEFAULT_RCV_DESCRIPTORS_1G;
		adapter->num_jumbo_rxd = MAX_JUMBO_RCV_DESCRIPTORS_1G;
	}

	adapter->msix_supported = 0;
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
		adapter->msix_supported = !!use_msi_x;
		adapter->rss_supported = !!use_msi_x;
	} else if (adapter->fw_version >= NETXEN_VERSION_CODE(3, 4, 336)) {
		switch (adapter->ahw.board_type) {
		case NETXEN_BRDTYPE_P2_SB31_10G:
		case NETXEN_BRDTYPE_P2_SB31_10G_CX4:
			adapter->msix_supported = !!use_msi_x;
			adapter->rss_supported = !!use_msi_x;
			break;
		default:
			break;
		}
	}

	adapter->num_txd = MAX_CMD_DESCRIPTORS;

	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
		adapter->num_lro_rxd = MAX_LRO_RCV_DESCRIPTORS;
		adapter->max_rds_rings = 3;
	} else {
		adapter->num_lro_rxd = 0;
		adapter->max_rds_rings = 2;
	}
}

792
static int
793
netxen_start_firmware(struct netxen_adapter *adapter)
794 795 796 797
{
	int val, err, first_boot;
	struct pci_dev *pdev = adapter->pdev;

798 799 800 801 802
	/* required for NX2031 dummy dma */
	err = nx_set_dma_mask(adapter);
	if (err)
		return err;

803
	if (!netxen_can_start_firmware(adapter))
804
		goto wait_init;
805

806
	first_boot = NXRD32(adapter, NETXEN_CAM_RAM(0x1fc));
807 808 809 810 811 812 813

	err = netxen_check_hw_init(adapter, first_boot);
	if (err) {
		dev_err(&pdev->dev, "error in init HW init sequence\n");
		return err;
	}

814
	netxen_request_firmware(adapter);
D
Dhananjay Phadke 已提交
815

816
	err = netxen_need_fw_reset(adapter);
817
	if (err < 0)
818
		goto err_out;
819
	if (err == 0)
820
		goto ready;
821

822
	if (first_boot != 0x55555555) {
823
		NXWR32(adapter, CRB_CMDPEG_STATE, 0);
824 825 826
		netxen_pinit_from_rom(adapter, 0);
		msleep(1);
	}
827

828
	NXWR32(adapter, CRB_DMA_SHIFT, 0x55555555);
829 830 831
	NXWR32(adapter, NETXEN_PEG_HALT_STATUS1, 0);
	NXWR32(adapter, NETXEN_PEG_HALT_STATUS2, 0);

832 833 834
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id))
		netxen_set_port_mode(adapter);

835 836 837
	err = netxen_load_firmware(adapter);
	if (err)
		goto err_out;
838

839 840
	netxen_release_firmware(adapter);

841 842 843 844
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {

		/* Initialize multicast addr pool owners */
		val = 0x7654;
845
		if (adapter->ahw.port_type == NETXEN_NIC_XGBE)
846
			val |= 0x0f000000;
847
		NXWR32(adapter, NETXEN_MAC_ADDR_CNTL_REG, val);
848 849 850

	}

851
	err = netxen_init_dummy_dma(adapter);
852
	if (err)
853
		goto err_out;
854 855 856 857 858 859 860

	/*
	 * Tell the hardware our version number.
	 */
	val = (_NETXEN_NIC_LINUX_MAJOR << 16)
		| ((_NETXEN_NIC_LINUX_MINOR << 8))
		| (_NETXEN_NIC_LINUX_SUBVERSION);
861
	NXWR32(adapter, CRB_DRIVER_VERSION, val);
862

863
ready:
864 865
	NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_READY);

866
wait_init:
867 868 869
	/* Handshake with the card before we register the devices. */
	err = netxen_phantom_init(adapter, NETXEN_NIC_PEG_TUNE);
	if (err) {
870
		netxen_free_dummy_dma(adapter);
871
		goto err_out;
872 873
	}

874 875
	nx_update_dma_mask(adapter);

876
	netxen_check_options(adapter);
877

878 879
	adapter->need_fw_reset = 0;

880
	/* fall through and release firmware */
881 882 883 884

err_out:
	netxen_release_firmware(adapter);
	return err;
885 886
}

887 888 889 890
static int
netxen_nic_request_irq(struct netxen_adapter *adapter)
{
	irq_handler_t handler;
891 892 893
	struct nx_host_sds_ring *sds_ring;
	int err, ring;

894 895
	unsigned long flags = IRQF_SAMPLE_RANDOM;
	struct net_device *netdev = adapter->netdev;
896
	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx;
897 898 899 900 901 902 903 904 905 906 907

	if (adapter->flags & NETXEN_NIC_MSIX_ENABLED)
		handler = netxen_msix_intr;
	else if (adapter->flags & NETXEN_NIC_MSI_ENABLED)
		handler = netxen_msi_intr;
	else {
		flags |= IRQF_SHARED;
		handler = netxen_intr;
	}
	adapter->irq = netdev->irq;

908 909
	for (ring = 0; ring < adapter->max_sds_rings; ring++) {
		sds_ring = &recv_ctx->sds_rings[ring];
910
		sprintf(sds_ring->name, "%s[%d]", netdev->name, ring);
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
		err = request_irq(sds_ring->irq, handler,
				  flags, sds_ring->name, sds_ring);
		if (err)
			return err;
	}

	return 0;
}

static void
netxen_nic_free_irq(struct netxen_adapter *adapter)
{
	int ring;
	struct nx_host_sds_ring *sds_ring;

	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx;

	for (ring = 0; ring < adapter->max_sds_rings; ring++) {
		sds_ring = &recv_ctx->sds_rings[ring];
		free_irq(sds_ring->irq, sds_ring);
	}
932 933
}

934 935 936 937 938 939 940 941 942 943 944 945 946 947
static void
netxen_nic_init_coalesce_defaults(struct netxen_adapter *adapter)
{
	adapter->coal.flags = NETXEN_NIC_INTR_DEFAULT;
	adapter->coal.normal.data.rx_time_us =
		NETXEN_DEFAULT_INTR_COALESCE_RX_TIME_US;
	adapter->coal.normal.data.rx_packets =
		NETXEN_DEFAULT_INTR_COALESCE_RX_PACKETS;
	adapter->coal.normal.data.tx_time_us =
		NETXEN_DEFAULT_INTR_COALESCE_TX_TIME_US;
	adapter->coal.normal.data.tx_packets =
		NETXEN_DEFAULT_INTR_COALESCE_TX_PACKETS;
}

948 949 950 951 952
static int
netxen_nic_up(struct netxen_adapter *adapter, struct net_device *netdev)
{
	int err;

953 954 955
	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC)
		return -EIO;

956 957 958 959 960 961
	err = adapter->init_port(adapter, adapter->physical_port);
	if (err) {
		printk(KERN_ERR "%s: Failed to initialize port %d\n",
				netxen_nic_driver_name, adapter->portnum);
		return err;
	}
D
Dhananjay Phadke 已提交
962 963
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id))
		adapter->macaddr_set(adapter, netdev->dev_addr);
964

D
Dhananjay Phadke 已提交
965 966
	adapter->set_multi(netdev);
	adapter->set_mtu(adapter, netdev->mtu);
967 968 969

	adapter->ahw.linkup = 0;

970 971
	if (adapter->max_sds_rings > 1)
		netxen_config_rss(adapter, 1);
972

973 974 975
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id))
		netxen_config_intr_coalesce(adapter);

976 977 978
	if (adapter->capabilities & NX_FW_CAPABILITY_HW_LRO)
		netxen_config_hw_lro(adapter, NETXEN_NIC_LRO_ENABLED);

979 980
	netxen_napi_enable(adapter);

981
	if (adapter->capabilities & NX_FW_CAPABILITY_LINK_NOTIFICATION)
982
		netxen_linkevent_request(adapter, 1);
D
Dhananjay Phadke 已提交
983 984 985
	else
		netxen_nic_set_link_parameters(adapter);

986
	set_bit(__NX_DEV_UP, &adapter->state);
987 988 989 990 991 992
	return 0;
}

static void
netxen_nic_down(struct netxen_adapter *adapter, struct net_device *netdev)
{
993 994 995
	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC)
		return;

996 997
	clear_bit(__NX_DEV_UP, &adapter->state);

998
	spin_lock(&adapter->tx_clean_lock);
999
	netif_carrier_off(netdev);
1000
	netif_tx_disable(netdev);
1001 1002 1003 1004

	if (adapter->stop_port)
		adapter->stop_port(adapter);

1005 1006 1007
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id))
		netxen_p3_free_mac_list(adapter);

1008 1009
	adapter->set_promisc(adapter, NETXEN_NIU_NON_PROMISC_MODE);

1010 1011
	netxen_napi_disable(adapter);

1012
	netxen_release_tx_buffers(adapter);
1013
	spin_unlock(&adapter->tx_clean_lock);
1014 1015 1016 1017 1018 1019 1020 1021
}


static int
netxen_nic_attach(struct netxen_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
	struct pci_dev *pdev = adapter->pdev;
1022
	int err, ring;
1023
	struct nx_host_rds_ring *rds_ring;
1024
	struct nx_host_tx_ring *tx_ring;
1025

1026 1027 1028
	if (adapter->is_up == NETXEN_ADAPTER_UP_MAGIC)
		return 0;

1029
	err = netxen_init_firmware(adapter);
1030 1031 1032 1033 1034 1035
	if (err)
		return err;

	err = netxen_napi_add(adapter, netdev);
	if (err)
		return err;
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050

	err = netxen_alloc_sw_resources(adapter);
	if (err) {
		printk(KERN_ERR "%s: Error in setting sw resources\n",
				netdev->name);
		return err;
	}

	err = netxen_alloc_hw_resources(adapter);
	if (err) {
		printk(KERN_ERR "%s: Error in setting hw resources\n",
				netdev->name);
		goto err_out_free_sw;
	}

1051
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
1052
		tx_ring = adapter->tx_ring;
1053 1054 1055 1056
		tx_ring->crb_cmd_producer = netxen_get_ioaddr(adapter,
				crb_cmd_producer[adapter->portnum]);
		tx_ring->crb_cmd_consumer = netxen_get_ioaddr(adapter,
				crb_cmd_consumer[adapter->portnum]);
1057

1058 1059 1060 1061 1062
		tx_ring->producer = 0;
		tx_ring->sw_consumer = 0;

		netxen_nic_update_cmd_producer(adapter, tx_ring);
		netxen_nic_update_cmd_consumer(adapter, tx_ring);
1063 1064
	}

1065 1066 1067 1068
	for (ring = 0; ring < adapter->max_rds_rings; ring++) {
		rds_ring = &adapter->recv_ctx.rds_rings[ring];
		netxen_post_rx_buffers(adapter, ring, rds_ring);
	}
1069 1070 1071 1072 1073 1074 1075 1076

	err = netxen_nic_request_irq(adapter);
	if (err) {
		dev_err(&pdev->dev, "%s: failed to setup interrupt\n",
				netdev->name);
		goto err_out_free_rxbuf;
	}

1077 1078 1079
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id))
		netxen_nic_init_coalesce_defaults(adapter);

1080 1081
	netxen_create_sysfs_entries(adapter);

1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
	adapter->is_up = NETXEN_ADAPTER_UP_MAGIC;
	return 0;

err_out_free_rxbuf:
	netxen_release_rx_buffers(adapter);
	netxen_free_hw_resources(adapter);
err_out_free_sw:
	netxen_free_sw_resources(adapter);
	return err;
}

static void
netxen_nic_detach(struct netxen_adapter *adapter)
{
1096 1097 1098
	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC)
		return;

1099 1100
	netxen_remove_sysfs_entries(adapter);

1101
	netxen_free_hw_resources(adapter);
1102
	netxen_release_rx_buffers(adapter);
1103
	netxen_nic_free_irq(adapter);
1104
	netxen_napi_del(adapter);
1105 1106 1107 1108 1109
	netxen_free_sw_resources(adapter);

	adapter->is_up = 0;
}

1110 1111 1112 1113 1114 1115
int
netxen_nic_reset_context(struct netxen_adapter *adapter)
{
	int err = 0;
	struct net_device *netdev = adapter->netdev;

1116 1117 1118
	if (test_and_set_bit(__NX_RESETTING, &adapter->state))
		return -EBUSY;

1119 1120
	if (adapter->is_up == NETXEN_ADAPTER_UP_MAGIC) {

1121 1122
		netif_device_detach(netdev);

1123 1124 1125 1126 1127
		if (netif_running(netdev))
			netxen_nic_down(adapter, netdev);

		netxen_nic_detach(adapter);

1128 1129 1130 1131
		if (netif_running(netdev)) {
			err = netxen_nic_attach(adapter);
			if (!err)
				err = netxen_nic_up(adapter, netdev);
1132

1133 1134 1135 1136 1137
			if (err)
				goto done;
		}

		netif_device_attach(netdev);
1138
	}
1139

1140
done:
1141
	clear_bit(__NX_RESETTING, &adapter->state);
1142 1143 1144
	return err;
}

1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
static int
netxen_setup_netdev(struct netxen_adapter *adapter,
		struct net_device *netdev)
{
	int err = 0;
	struct pci_dev *pdev = adapter->pdev;

	adapter->rx_csum = 1;
	adapter->mc_enabled = 0;
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id))
		adapter->max_mc_count = 38;
	else
		adapter->max_mc_count = 16;

	netdev->netdev_ops	   = &netxen_netdev_ops;
	netdev->watchdog_timeo     = 2*HZ;

	netxen_nic_change_mtu(netdev, netdev->mtu);

	SET_ETHTOOL_OPS(netdev, &netxen_nic_ethtool_ops);

	netdev->features |= (NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO);
	netdev->features |= (NETIF_F_GRO);
	netdev->vlan_features |= (NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO);

	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
		netdev->features |= (NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
		netdev->vlan_features |= (NETIF_F_IPV6_CSUM | NETIF_F_TSO6);
	}

	if (adapter->pci_using_dac) {
		netdev->features |= NETIF_F_HIGHDMA;
		netdev->vlan_features |= NETIF_F_HIGHDMA;
	}

1180 1181 1182
	if (adapter->capabilities & NX_FW_CAPABILITY_FVLANTX)
		netdev->features |= (NETIF_F_HW_VLAN_TX);

1183 1184 1185
	if (adapter->capabilities & NX_FW_CAPABILITY_HW_LRO)
		netdev->features |= NETIF_F_LRO;

1186 1187
	netdev->irq = adapter->msix_entries[0].vector;

1188
	INIT_WORK(&adapter->tx_timeout_task, netxen_tx_timeout_task);
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204

	if (netxen_read_mac_addr(adapter))
		dev_warn(&pdev->dev, "failed to read mac addr\n");

	netif_carrier_off(netdev);
	netif_stop_queue(netdev);

	err = register_netdev(netdev);
	if (err) {
		dev_err(&pdev->dev, "failed to register net device\n");
		return err;
	}

	return 0;
}

A
Amit S. Kale 已提交
1205 1206 1207 1208 1209
static int __devinit
netxen_nic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
{
	struct net_device *netdev = NULL;
	struct netxen_adapter *adapter = NULL;
1210
	int i = 0, err;
1211
	int pci_func_id = PCI_FUNC(pdev->devfn);
1212
	uint8_t revision_id;
A
Amit S. Kale 已提交
1213

1214
	if (pdev->class != 0x020000) {
1215
		printk(KERN_DEBUG "NetXen function %d, class %x will not "
1216
				"be enabled.\n",pci_func_id, pdev->class);
1217 1218
		return -ENODEV;
	}
1219

D
Dhananjay Phadke 已提交
1220 1221 1222 1223 1224 1225 1226
	if (pdev->revision >= NX_P3_A0 && pdev->revision < NX_P3_B1) {
		printk(KERN_WARNING "NetXen chip revisions between 0x%x-0x%x"
				"will not be enabled.\n",
				NX_P3_A0, NX_P3_B1);
		return -ENODEV;
	}

A
Amit S. Kale 已提交
1227 1228
	if ((err = pci_enable_device(pdev)))
		return err;
1229

A
Amit S. Kale 已提交
1230 1231 1232 1233 1234 1235 1236 1237 1238
	if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
		err = -ENODEV;
		goto err_out_disable_pdev;
	}

	if ((err = pci_request_regions(pdev, netxen_nic_driver_name)))
		goto err_out_disable_pdev;

	pci_set_master(pdev);
1239 1240 1241

	netdev = alloc_etherdev(sizeof(struct netxen_adapter));
	if(!netdev) {
1242 1243
		dev_err(&pdev->dev, "failed to allocate net_device\n");
		err = -ENOMEM;
1244 1245 1246 1247 1248
		goto err_out_free_res;
	}

	SET_NETDEV_DEV(netdev, &pdev->dev);

1249
	adapter = netdev_priv(netdev);
1250 1251
	adapter->netdev  = netdev;
	adapter->pdev    = pdev;
1252
	adapter->ahw.pci_func  = pci_func_id;
1253 1254 1255 1256

	revision_id = pdev->revision;
	adapter->ahw.revision_id = revision_id;

1257
	rwlock_init(&adapter->adapter_lock);
1258
	spin_lock_init(&adapter->tx_clean_lock);
1259
	INIT_LIST_HEAD(&adapter->mac_list);
1260

D
Dhananjay Phadke 已提交
1261 1262
	err = netxen_setup_pci_map(adapter);
	if (err)
1263
		goto err_out_free_netdev;
A
Amit S. Kale 已提交
1264

1265
	/* This will be reset for mezz cards  */
1266 1267
	adapter->portnum = pci_func_id;

1268 1269 1270
	err = netxen_nic_get_board_info(adapter);
	if (err) {
		dev_err(&pdev->dev, "Error getting board config info.\n");
1271 1272
		goto err_out_iounmap;
	}
1273

1274
	/* Mezz cards have PCI function 0,2,3 enabled */
1275
	switch (adapter->ahw.board_type) {
1276 1277 1278
	case NETXEN_BRDTYPE_P2_SB31_10G_IMEZ:
	case NETXEN_BRDTYPE_P2_SB31_10G_HMEZ:
		if (pci_func_id >= 2)
1279
			adapter->portnum = pci_func_id - 2;
1280 1281 1282 1283
		break;
	default:
		break;
	}
1284

1285
	err = netxen_start_firmware(adapter);
1286 1287
	if (err)
		goto err_out_iounmap;
1288

A
Amit S. Kale 已提交
1289
	/*
1290
	 * See if the firmware gave us a virtual-physical port mapping.
A
Amit S. Kale 已提交
1291
	 */
1292
	adapter->physical_port = adapter->portnum;
1293
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
1294
		i = NXRD32(adapter, CRB_V2P(adapter->portnum));
1295 1296 1297
		if (i != 0x55555555)
			adapter->physical_port = i;
	}
1298

1299
	netxen_nic_clear_stats(adapter);
1300

D
Dhananjay Phadke 已提交
1301
	netxen_setup_intr(adapter);
1302

1303
	err = netxen_setup_netdev(adapter, netdev);
D
Dhananjay Phadke 已提交
1304
	if (err)
1305
		goto err_out_disable_msi;
1306 1307

	pci_set_drvdata(pdev, adapter);
A
Amit S. Kale 已提交
1308

1309 1310
	netxen_schedule_work(adapter, netxen_fw_poll_work, FW_POLL_DELAY);

1311
	switch (adapter->ahw.port_type) {
1312 1313 1314 1315 1316 1317 1318 1319
	case NETXEN_NIC_GBE:
		dev_info(&adapter->pdev->dev, "%s: GbE port initialized\n",
				adapter->netdev->name);
		break;
	case NETXEN_NIC_XGBE:
		dev_info(&adapter->pdev->dev, "%s: XGbE port initialized\n",
				adapter->netdev->name);
		break;
A
Amit S. Kale 已提交
1320 1321
	}

1322 1323 1324
	return 0;

err_out_disable_msi:
D
Dhananjay Phadke 已提交
1325
	netxen_teardown_intr(adapter);
1326

1327
	netxen_free_dummy_dma(adapter);
A
Amit S. Kale 已提交
1328

1329 1330
	nx_decr_dev_ref_cnt(adapter);

1331
err_out_iounmap:
D
Dhananjay Phadke 已提交
1332
	netxen_cleanup_pci_map(adapter);
1333

1334 1335 1336 1337
err_out_free_netdev:
	free_netdev(netdev);

err_out_free_res:
A
Amit S. Kale 已提交
1338
	pci_release_regions(pdev);
1339 1340

err_out_disable_pdev:
1341
	pci_set_drvdata(pdev, NULL);
A
Amit S. Kale 已提交
1342 1343 1344 1345 1346 1347 1348
	pci_disable_device(pdev);
	return err;
}

static void __devexit netxen_nic_remove(struct pci_dev *pdev)
{
	struct netxen_adapter *adapter;
1349
	struct net_device *netdev;
A
Amit S. Kale 已提交
1350

1351
	adapter = pci_get_drvdata(pdev);
A
Amit S. Kale 已提交
1352 1353 1354
	if (adapter == NULL)
		return;

1355 1356
	netdev = adapter->netdev;

1357 1358
	netxen_cancel_fw_work(adapter);

1359 1360
	unregister_netdev(netdev);

1361 1362
	cancel_work_sync(&adapter->tx_timeout_task);

1363
	netxen_nic_detach(adapter);
A
Amit S. Kale 已提交
1364

1365 1366
	nx_decr_dev_ref_cnt(adapter);

1367
	if (adapter->portnum == 0)
1368
		netxen_free_dummy_dma(adapter);
1369

1370 1371
	clear_bit(__NX_RESETTING, &adapter->state);

D
Dhananjay Phadke 已提交
1372
	netxen_teardown_intr(adapter);
1373

D
Dhananjay Phadke 已提交
1374
	netxen_cleanup_pci_map(adapter);
1375

D
Dhananjay Phadke 已提交
1376 1377
	netxen_release_firmware(adapter);

1378
	pci_release_regions(pdev);
1379
	pci_disable_device(pdev);
1380 1381
	pci_set_drvdata(pdev, NULL);

1382
	free_netdev(netdev);
A
Amit S. Kale 已提交
1383
}
1384
static int __netxen_nic_shutdown(struct pci_dev *pdev)
1385 1386 1387
{
	struct netxen_adapter *adapter = pci_get_drvdata(pdev);
	struct net_device *netdev = adapter->netdev;
1388
	int retval;
1389 1390 1391

	netif_device_detach(netdev);

1392 1393
	netxen_cancel_fw_work(adapter);

1394 1395 1396
	if (netif_running(netdev))
		netxen_nic_down(adapter, netdev);

1397 1398
	cancel_work_sync(&adapter->tx_timeout_task);

1399
	netxen_nic_detach(adapter);
1400

1401 1402 1403
	if (adapter->portnum == 0)
		netxen_free_dummy_dma(adapter);

1404 1405 1406 1407
	nx_decr_dev_ref_cnt(adapter);

	clear_bit(__NX_RESETTING, &adapter->state);

1408 1409 1410
	retval = pci_save_state(pdev);
	if (retval)
		return retval;
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420

	if (netxen_nic_wol_supported(adapter)) {
		pci_enable_wake(pdev, PCI_D3cold, 1);
		pci_enable_wake(pdev, PCI_D3hot, 1);
	}

	pci_disable_device(pdev);

	return 0;
}
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
static void netxen_nic_shutdown(struct pci_dev *pdev)
{
	if (__netxen_nic_shutdown(pdev))
		return;
}
#ifdef CONFIG_PM
static int
netxen_nic_suspend(struct pci_dev *pdev, pm_message_t state)
{
	int retval;

	retval = __netxen_nic_shutdown(pdev);
	if (retval)
		return retval;

	pci_set_power_state(pdev, pci_choose_state(pdev, state));
	return 0;
}
1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455

static int
netxen_nic_resume(struct pci_dev *pdev)
{
	struct netxen_adapter *adapter = pci_get_drvdata(pdev);
	struct net_device *netdev = adapter->netdev;
	int err;

	pci_set_power_state(pdev, PCI_D0);
	pci_restore_state(pdev);

	err = pci_enable_device(pdev);
	if (err)
		return err;

	adapter->curr_window = 255;

1456
	err = netxen_start_firmware(adapter);
1457 1458 1459 1460 1461 1462 1463 1464
	if (err) {
		dev_err(&pdev->dev, "failed to start firmware\n");
		return err;
	}

	if (netif_running(netdev)) {
		err = netxen_nic_attach(adapter);
		if (err)
1465
			goto err_out;
1466 1467 1468

		err = netxen_nic_up(adapter, netdev);
		if (err)
1469
			goto err_out_detach;
1470 1471

		netif_device_attach(netdev);
1472 1473

		netxen_config_indev_addr(netdev, NETDEV_UP);
1474 1475
	}

1476 1477 1478 1479 1480 1481 1482
	netxen_schedule_work(adapter, netxen_fw_poll_work, FW_POLL_DELAY);

err_out_detach:
	netxen_nic_detach(adapter);
err_out:
	nx_decr_dev_ref_cnt(adapter);
	return err;
1483
}
1484
#endif
1485

A
Amit S. Kale 已提交
1486 1487
static int netxen_nic_open(struct net_device *netdev)
{
1488
	struct netxen_adapter *adapter = netdev_priv(netdev);
A
Amit S. Kale 已提交
1489 1490
	int err = 0;

1491 1492 1493
	if (adapter->driver_mismatch)
		return -EIO;

1494 1495 1496
	err = netxen_nic_attach(adapter);
	if (err)
		return err;
1497

1498 1499 1500
	err = netxen_nic_up(adapter, netdev);
	if (err)
		goto err_out;
D
Dhananjay Phadke 已提交
1501

1502
	netif_start_queue(netdev);
A
Amit S. Kale 已提交
1503 1504

	return 0;
1505

1506 1507
err_out:
	netxen_nic_detach(adapter);
1508
	return err;
A
Amit S. Kale 已提交
1509 1510 1511 1512 1513 1514 1515
}

/*
 * netxen_nic_close - Disables a network interface entry point
 */
static int netxen_nic_close(struct net_device *netdev)
{
1516
	struct netxen_adapter *adapter = netdev_priv(netdev);
A
Amit S. Kale 已提交
1517

1518
	netxen_nic_down(adapter, netdev);
A
Amit S. Kale 已提交
1519 1520 1521
	return 0;
}

D
Dhananjay Phadke 已提交
1522 1523 1524 1525 1526
static void
netxen_tso_check(struct net_device *netdev,
		struct nx_host_tx_ring *tx_ring,
		struct cmd_desc_type0 *first_desc,
		struct sk_buff *skb)
1527
{
1528
	u8 opcode = TX_ETHER_PKT;
1529
	__be16 protocol = skb->protocol;
1530
	u16 flags = 0, vid = 0;
D
Dhananjay Phadke 已提交
1531
	u32 producer;
1532
	int copied, offset, copy_len, hdr_len = 0, tso = 0, vlan_oob = 0;
D
Dhananjay Phadke 已提交
1533
	struct cmd_desc_type0 *hwdesc;
1534
	struct vlan_ethhdr *vh;
1535

1536
	if (protocol == cpu_to_be16(ETH_P_8021Q)) {
1537 1538

		vh = (struct vlan_ethhdr *)skb->data;
1539 1540
		protocol = vh->h_vlan_encapsulated_proto;
		flags = FLAGS_VLAN_TAGGED;
1541 1542 1543 1544 1545 1546 1547

	} else if (vlan_tx_tag_present(skb)) {

		flags = FLAGS_VLAN_OOB;
		vid = vlan_tx_tag_get(skb);
		netxen_set_tx_vlan_tci(first_desc, vid);
		vlan_oob = 1;
1548
	}
1549

1550 1551 1552
	if ((netdev->features & (NETIF_F_TSO | NETIF_F_TSO6)) &&
			skb_shinfo(skb)->gso_size > 0) {

D
Dhananjay Phadke 已提交
1553 1554 1555 1556
		hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);

		first_desc->mss = cpu_to_le16(skb_shinfo(skb)->gso_size);
		first_desc->total_hdr_length = hdr_len;
1557 1558 1559 1560 1561 1562 1563
		if (vlan_oob) {
			first_desc->total_hdr_length += VLAN_HLEN;
			first_desc->tcp_hdr_offset = VLAN_HLEN;
			first_desc->ip_hdr_offset = VLAN_HLEN;
			/* Only in case of TSO on vlan device */
			flags |= FLAGS_VLAN_TAGGED;
		}
1564

1565
		opcode = (protocol == cpu_to_be16(ETH_P_IPV6)) ?
1566
				TX_TCP_LSO6 : TX_TCP_LSO;
D
Dhananjay Phadke 已提交
1567
		tso = 1;
1568 1569

	} else if (skb->ip_summed == CHECKSUM_PARTIAL) {
1570 1571
		u8 l4proto;

1572
		if (protocol == cpu_to_be16(ETH_P_IP)) {
1573 1574 1575 1576 1577 1578
			l4proto = ip_hdr(skb)->protocol;

			if (l4proto == IPPROTO_TCP)
				opcode = TX_TCP_PKT;
			else if(l4proto == IPPROTO_UDP)
				opcode = TX_UDP_PKT;
1579
		} else if (protocol == cpu_to_be16(ETH_P_IPV6)) {
1580 1581 1582 1583 1584 1585 1586
			l4proto = ipv6_hdr(skb)->nexthdr;

			if (l4proto == IPPROTO_TCP)
				opcode = TX_TCPV6_PKT;
			else if(l4proto == IPPROTO_UDP)
				opcode = TX_UDPV6_PKT;
		}
1587
	}
1588 1589 1590

	first_desc->tcp_hdr_offset += skb_transport_offset(skb);
	first_desc->ip_hdr_offset += skb_network_offset(skb);
D
Dhananjay Phadke 已提交
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
	netxen_set_tx_flags_opcode(first_desc, flags, opcode);

	if (!tso)
		return;

	/* For LSO, we need to copy the MAC/IP/TCP headers into
	 * the descriptor ring
	 */
	producer = tx_ring->producer;
	copied = 0;
	offset = 2;

1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618
	if (vlan_oob) {
		/* Create a TSO vlan header template for firmware */

		hwdesc = &tx_ring->desc_head[producer];
		tx_ring->cmd_buf_arr[producer].skb = NULL;

		copy_len = min((int)sizeof(struct cmd_desc_type0) - offset,
				hdr_len + VLAN_HLEN);

		vh = (struct vlan_ethhdr *)((char *)hwdesc + 2);
		skb_copy_from_linear_data(skb, vh, 12);
		vh->h_vlan_proto = htons(ETH_P_8021Q);
		vh->h_vlan_TCI = htons(vid);
		skb_copy_from_linear_data_offset(skb, 12,
				(char *)vh + 16, copy_len - 16);

D
Dhananjay Phadke 已提交
1619
		copied = copy_len - VLAN_HLEN;
1620 1621 1622 1623 1624
		offset = 0;

		producer = get_next_index(producer, tx_ring->num_desc);
	}

D
Dhananjay Phadke 已提交
1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
	while (copied < hdr_len) {

		copy_len = min((int)sizeof(struct cmd_desc_type0) - offset,
				(hdr_len - copied));

		hwdesc = &tx_ring->desc_head[producer];
		tx_ring->cmd_buf_arr[producer].skb = NULL;

		skb_copy_from_linear_data_offset(skb, copied,
				 (char *)hwdesc + offset, copy_len);

		copied += copy_len;
		offset = 0;

		producer = get_next_index(producer, tx_ring->num_desc);
	}

	tx_ring->producer = producer;
	barrier();
1644 1645
}

1646 1647 1648
static int
netxen_map_tx_skb(struct pci_dev *pdev,
		struct sk_buff *skb, struct netxen_cmd_buffer *pbuf)
1649
{
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661
	struct netxen_skb_frag *nf;
	struct skb_frag_struct *frag;
	int i, nr_frags;
	dma_addr_t map;

	nr_frags = skb_shinfo(skb)->nr_frags;
	nf = &pbuf->frag_array[0];

	map = pci_map_single(pdev, skb->data,
			skb_headlen(skb), PCI_DMA_TODEVICE);
	if (pci_dma_mapping_error(pdev, map))
		goto out_err;
1662

1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679
	nf->dma = map;
	nf->length = skb_headlen(skb);

	for (i = 0; i < nr_frags; i++) {
		frag = &skb_shinfo(skb)->frags[i];
		nf = &pbuf->frag_array[i+1];

		map = pci_map_page(pdev, frag->page, frag->page_offset,
				frag->size, PCI_DMA_TODEVICE);
		if (pci_dma_mapping_error(pdev, map))
			goto unwind;

		nf->dma = map;
		nf->length = frag->size;
	}

	return 0;
1680

1681
unwind:
1682 1683
	while (--i >= 0) {
		nf = &pbuf->frag_array[i+1];
1684
		pci_unmap_page(pdev, nf->dma, nf->length, PCI_DMA_TODEVICE);
1685
	}
1686 1687 1688 1689 1690 1691

	nf = &pbuf->frag_array[0];
	pci_unmap_single(pdev, nf->dma, skb_headlen(skb), PCI_DMA_TODEVICE);

out_err:
	return -ENOMEM;
1692 1693
}

1694 1695 1696
static inline void
netxen_clear_cmddesc(u64 *desc)
{
D
Dhananjay Phadke 已提交
1697 1698
	desc[0] = 0ULL;
	desc[2] = 0ULL;
1699 1700
}

1701
static netdev_tx_t
1702
netxen_nic_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
A
Amit S. Kale 已提交
1703
{
1704
	struct netxen_adapter *adapter = netdev_priv(netdev);
1705
	struct nx_host_tx_ring *tx_ring = adapter->tx_ring;
1706
	struct netxen_cmd_buffer *pbuf;
A
Amit S. Kale 已提交
1707
	struct netxen_skb_frag *buffrag;
D
Dhananjay Phadke 已提交
1708 1709
	struct cmd_desc_type0 *hwdesc, *first_desc;
	struct pci_dev *pdev;
1710
	int i, k;
A
Amit S. Kale 已提交
1711

1712
	u32 producer;
1713
	int frag_count, no_of_desc;
1714
	u32 num_txd = tx_ring->num_desc;
A
Amit S. Kale 已提交
1715 1716 1717

	frag_count = skb_shinfo(skb)->nr_frags + 1;

1718
	/* 4 fragments per cmd des */
A
Amit S. Kale 已提交
1719
	no_of_desc = (frag_count + 3) >> 2;
1720

1721
	if (unlikely(no_of_desc + 2) > netxen_tx_avail(tx_ring)) {
1722 1723
		netif_stop_queue(netdev);
		return NETDEV_TX_BUSY;
1724
	}
A
Amit S. Kale 已提交
1725

1726
	producer = tx_ring->producer;
1727
	pbuf = &tx_ring->cmd_buf_arr[producer];
1728

D
Dhananjay Phadke 已提交
1729
	pdev = adapter->pdev;
1730

1731
	if (netxen_map_tx_skb(pdev, skb, pbuf))
D
Dhananjay Phadke 已提交
1732
		goto drop_packet;
1733

A
Amit S. Kale 已提交
1734 1735
	pbuf->skb = skb;
	pbuf->frag_count = frag_count;
1736

D
Dhananjay Phadke 已提交
1737 1738
	first_desc = hwdesc = &tx_ring->desc_head[producer];
	netxen_clear_cmddesc((u64 *)hwdesc);
A
Amit S. Kale 已提交
1739

1740 1741
	netxen_set_tx_frags_len(first_desc, frag_count, skb->len);
	netxen_set_tx_port(first_desc, adapter->portnum);
A
Amit S. Kale 已提交
1742

1743
	for (i = 0; i < frag_count; i++) {
A
Amit S. Kale 已提交
1744

1745 1746 1747 1748
		k = i % 4;

		if ((k == 0) && (i > 0)) {
			/* move to next desc.*/
1749
			producer = get_next_index(producer, num_txd);
1750
			hwdesc = &tx_ring->desc_head[producer];
1751
			netxen_clear_cmddesc((u64 *)hwdesc);
1752
			tx_ring->cmd_buf_arr[producer].skb = NULL;
1753
		}
A
Amit S. Kale 已提交
1754

1755
		buffrag = &pbuf->frag_array[i];
A
Amit S. Kale 已提交
1756

1757
		hwdesc->buffer_length[k] = cpu_to_le16(buffrag->length);
A
Amit S. Kale 已提交
1758 1759
		switch (k) {
		case 0:
1760
			hwdesc->addr_buffer1 = cpu_to_le64(buffrag->dma);
A
Amit S. Kale 已提交
1761 1762
			break;
		case 1:
1763
			hwdesc->addr_buffer2 = cpu_to_le64(buffrag->dma);
A
Amit S. Kale 已提交
1764 1765
			break;
		case 2:
1766
			hwdesc->addr_buffer3 = cpu_to_le64(buffrag->dma);
A
Amit S. Kale 已提交
1767 1768
			break;
		case 3:
1769
			hwdesc->addr_buffer4 = cpu_to_le64(buffrag->dma);
A
Amit S. Kale 已提交
1770 1771 1772
			break;
		}
	}
1773

D
Dhananjay Phadke 已提交
1774
	tx_ring->producer = get_next_index(producer, num_txd);
A
Amit S. Kale 已提交
1775

D
Dhananjay Phadke 已提交
1776
	netxen_tso_check(netdev, tx_ring, first_desc, skb);
1777

1778
	netxen_nic_update_cmd_producer(adapter, tx_ring);
A
Amit S. Kale 已提交
1779

D
Dhananjay Phadke 已提交
1780
	adapter->stats.txbytes += skb->len;
1781
	adapter->stats.xmitcalled++;
A
Amit S. Kale 已提交
1782 1783

	return NETDEV_TX_OK;
1784 1785 1786 1787 1788

drop_packet:
	adapter->stats.txdropped++;
	dev_kfree_skb_any(skb);
	return NETDEV_TX_OK;
A
Amit S. Kale 已提交
1789 1790
}

1791 1792 1793 1794 1795 1796
static int netxen_nic_check_temp(struct netxen_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
	uint32_t temp, temp_state, temp_val;
	int rv = 0;

1797
	temp = NXRD32(adapter, CRB_TEMP_STATE);
1798 1799 1800 1801 1802 1803 1804 1805

	temp_state = nx_get_temp_state(temp);
	temp_val = nx_get_temp_val(temp);

	if (temp_state == NX_TEMP_PANIC) {
		printk(KERN_ALERT
		       "%s: Device temperature %d degrees C exceeds"
		       " maximum allowed. Hardware has been shut down.\n",
1806
		       netdev->name, temp_val);
1807 1808 1809 1810 1811 1812 1813
		rv = 1;
	} else if (temp_state == NX_TEMP_WARN) {
		if (adapter->temp == NX_TEMP_NORMAL) {
			printk(KERN_ALERT
			       "%s: Device temperature %d degrees C "
			       "exceeds operating range."
			       " Immediate action needed.\n",
1814
			       netdev->name, temp_val);
1815 1816 1817 1818 1819
		}
	} else {
		if (adapter->temp == NX_TEMP_WARN) {
			printk(KERN_INFO
			       "%s: Device temperature is now %d degrees C"
1820
			       " in normal range.\n", netdev->name,
1821 1822 1823 1824 1825 1826 1827
			       temp_val);
		}
	}
	adapter->temp = temp_state;
	return rv;
}

1828
void netxen_advert_link_change(struct netxen_adapter *adapter, int linkup)
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839
{
	struct net_device *netdev = adapter->netdev;

	if (adapter->ahw.linkup && !linkup) {
		printk(KERN_INFO "%s: %s NIC Link is down\n",
		       netxen_nic_driver_name, netdev->name);
		adapter->ahw.linkup = 0;
		if (netif_running(netdev)) {
			netif_carrier_off(netdev);
			netif_stop_queue(netdev);
		}
1840
		adapter->link_changed = !adapter->has_link_events;
1841 1842 1843 1844 1845 1846 1847 1848
	} else if (!adapter->ahw.linkup && linkup) {
		printk(KERN_INFO "%s: %s NIC Link is up\n",
		       netxen_nic_driver_name, netdev->name);
		adapter->ahw.linkup = 1;
		if (netif_running(netdev)) {
			netif_carrier_on(netdev);
			netif_wake_queue(netdev);
		}
1849
		adapter->link_changed = !adapter->has_link_events;
1850 1851 1852
	}
}

1853 1854 1855 1856 1857 1858 1859
static void netxen_nic_handle_phy_intr(struct netxen_adapter *adapter)
{
	u32 val, port, linkup;

	port = adapter->physical_port;

	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
1860
		val = NXRD32(adapter, CRB_XG_STATE_P3);
1861 1862 1863
		val = XG_LINK_STATE_P3(adapter->ahw.pci_func, val);
		linkup = (val == XG_LINK_UP_P3);
	} else {
1864
		val = NXRD32(adapter, CRB_XG_STATE);
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875
		if (adapter->ahw.port_type == NETXEN_NIC_GBE)
			linkup = (val >> port) & 1;
		else {
			val = (val >> port*8) & 0xff;
			linkup = (val == XG_LINK_UP);
		}
	}

	netxen_advert_link_change(adapter, linkup);
}

A
Amit S. Kale 已提交
1876 1877
static void netxen_tx_timeout(struct net_device *netdev)
{
1878
	struct netxen_adapter *adapter = netdev_priv(netdev);
1879

1880 1881 1882
	if (test_bit(__NX_RESETTING, &adapter->state))
		return;

1883
	dev_err(&netdev->dev, "transmit timeout, resetting.\n");
1884
	schedule_work(&adapter->tx_timeout_task);
A
Amit S. Kale 已提交
1885 1886
}

1887
static void netxen_tx_timeout_task(struct work_struct *work)
A
Amit S. Kale 已提交
1888
{
1889
	struct netxen_adapter *adapter =
1890
		container_of(work, struct netxen_adapter, tx_timeout_task);
A
Amit S. Kale 已提交
1891

1892 1893 1894
	if (!netif_running(adapter->netdev))
		return;

1895
	if (test_and_set_bit(__NX_RESETTING, &adapter->state))
1896 1897
		return;

1898 1899 1900 1901 1902 1903
	if (++adapter->tx_timeo_cnt >= NX_MAX_TX_TIMEOUTS)
		goto request_reset;

	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
		/* try to scrub interrupt */
		netxen_napi_disable(adapter);
1904

1905
		adapter->netdev->trans_start = jiffies;
1906

1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925
		netxen_napi_enable(adapter);

		netif_wake_queue(adapter->netdev);

		goto done;

	} else {
		if (!netxen_nic_reset_context(adapter)) {
			adapter->netdev->trans_start = jiffies;
			goto done;
		}

		/* context reset failed, fall through for fw reset */
	}

request_reset:
	adapter->need_fw_reset = 1;
done:
	clear_bit(__NX_RESETTING, &adapter->state);
A
Amit S. Kale 已提交
1926 1927
}

1928 1929 1930 1931 1932 1933 1934
struct net_device_stats *netxen_nic_get_stats(struct net_device *netdev)
{
	struct netxen_adapter *adapter = netdev_priv(netdev);
	struct net_device_stats *stats = &adapter->net_stats;

	memset(stats, 0, sizeof(*stats));

1935
	stats->rx_packets = adapter->stats.rx_pkts + adapter->stats.lro_pkts;
D
Dhananjay Phadke 已提交
1936
	stats->tx_packets = adapter->stats.xmitfinished;
1937 1938 1939 1940 1941 1942 1943 1944
	stats->rx_bytes = adapter->stats.rxbytes;
	stats->tx_bytes = adapter->stats.txbytes;
	stats->rx_dropped = adapter->stats.rxdropped;
	stats->tx_dropped = adapter->stats.txdropped;

	return stats;
}

1945
static irqreturn_t netxen_intr(int irq, void *data)
A
Amit S. Kale 已提交
1946
{
1947 1948
	struct nx_host_sds_ring *sds_ring = data;
	struct netxen_adapter *adapter = sds_ring->adapter;
D
Dhananjay Phadke 已提交
1949 1950
	u32 status = 0;

1951
	status = readl(adapter->isr_int_vec);
D
Dhananjay Phadke 已提交
1952

1953
	if (!(status & adapter->int_vec_bit))
D
Dhananjay Phadke 已提交
1954
		return IRQ_NONE;
1955

1956
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
D
Dhananjay Phadke 已提交
1957
		/* check interrupt state machine, to be sure */
1958
		status = readl(adapter->crb_int_state_reg);
D
Dhananjay Phadke 已提交
1959 1960 1961
		if (!ISR_LEGACY_INT_TRIGGERED(status))
			return IRQ_NONE;

1962 1963
	} else {
		unsigned long our_int = 0;
D
Dhananjay Phadke 已提交
1964

1965
		our_int = readl(adapter->crb_int_state_reg);
1966

D
Dhananjay Phadke 已提交
1967
		/* not our interrupt */
1968
		if (!test_and_clear_bit((7 + adapter->portnum), &our_int))
D
Dhananjay Phadke 已提交
1969 1970
			return IRQ_NONE;

1971
		/* claim interrupt */
1972
		writel((our_int & 0xffffffff), adapter->crb_int_state_reg);
1973

1974
		/* clear interrupt */
1975
		netxen_nic_disable_int(sds_ring);
1976
	}
1977

1978
	writel(0xffffffff, adapter->tgt_status_reg);
1979
	/* read twice to ensure write is flushed */
1980 1981
	readl(adapter->isr_int_vec);
	readl(adapter->isr_int_vec);
1982

1983
	napi_schedule(&sds_ring->napi);
A
Amit S. Kale 已提交
1984 1985 1986 1987

	return IRQ_HANDLED;
}

1988
static irqreturn_t netxen_msi_intr(int irq, void *data)
D
Dhananjay Phadke 已提交
1989
{
1990 1991
	struct nx_host_sds_ring *sds_ring = data;
	struct netxen_adapter *adapter = sds_ring->adapter;
D
Dhananjay Phadke 已提交
1992

1993
	/* clear interrupt */
1994
	writel(0xffffffff, adapter->tgt_status_reg);
1995

1996
	napi_schedule(&sds_ring->napi);
D
Dhananjay Phadke 已提交
1997 1998 1999
	return IRQ_HANDLED;
}

2000 2001
static irqreturn_t netxen_msix_intr(int irq, void *data)
{
2002
	struct nx_host_sds_ring *sds_ring = data;
2003

2004
	napi_schedule(&sds_ring->napi);
2005 2006 2007
	return IRQ_HANDLED;
}

2008
static int netxen_nic_poll(struct napi_struct *napi, int budget)
A
Amit S. Kale 已提交
2009
{
2010 2011 2012 2013 2014
	struct nx_host_sds_ring *sds_ring =
		container_of(napi, struct nx_host_sds_ring, napi);

	struct netxen_adapter *adapter = sds_ring->adapter;

D
Dhananjay Phadke 已提交
2015
	int tx_complete;
2016
	int work_done;
A
Amit S. Kale 已提交
2017

D
Dhananjay Phadke 已提交
2018
	tx_complete = netxen_process_cmd_ring(adapter);
A
Amit S. Kale 已提交
2019

2020
	work_done = netxen_process_rcv_ring(sds_ring, budget);
A
Amit S. Kale 已提交
2021

D
Dhananjay Phadke 已提交
2022
	if ((work_done < budget) && tx_complete) {
2023
		napi_complete(&sds_ring->napi);
2024 2025
		if (netif_running(adapter->netdev))
			netxen_nic_enable_int(sds_ring);
A
Amit S. Kale 已提交
2026 2027
	}

2028
	return work_done;
A
Amit S. Kale 已提交
2029 2030 2031 2032 2033
}

#ifdef CONFIG_NET_POLL_CONTROLLER
static void netxen_nic_poll_controller(struct net_device *netdev)
{
2034
	struct netxen_adapter *adapter = netdev_priv(netdev);
A
Amit S. Kale 已提交
2035
	disable_irq(adapter->irq);
J
Jeff Garzik 已提交
2036
	netxen_intr(adapter->irq, adapter);
A
Amit S. Kale 已提交
2037 2038 2039 2040
	enable_irq(adapter->irq);
}
#endif

2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074
static int
nx_incr_dev_ref_cnt(struct netxen_adapter *adapter)
{
	int count;
	if (netxen_api_lock(adapter))
		return -EIO;

	count = NXRD32(adapter, NX_CRB_DEV_REF_COUNT);

	NXWR32(adapter, NX_CRB_DEV_REF_COUNT, ++count);

	netxen_api_unlock(adapter);
	return count;
}

static int
nx_decr_dev_ref_cnt(struct netxen_adapter *adapter)
{
	int count;
	if (netxen_api_lock(adapter))
		return -EIO;

	count = NXRD32(adapter, NX_CRB_DEV_REF_COUNT);
	WARN_ON(count == 0);

	NXWR32(adapter, NX_CRB_DEV_REF_COUNT, --count);

	if (count == 0)
		NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_COLD);

	netxen_api_unlock(adapter);
	return count;
}

2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090
static void
nx_dev_request_reset(struct netxen_adapter *adapter)
{
	u32 state;

	if (netxen_api_lock(adapter))
		return;

	state = NXRD32(adapter, NX_CRB_DEV_STATE);

	if (state != NX_DEV_INITALIZING)
		NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_NEED_RESET);

	netxen_api_unlock(adapter);
}

2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152
static int
netxen_can_start_firmware(struct netxen_adapter *adapter)
{
	int count;
	int can_start = 0;

	if (netxen_api_lock(adapter))
		return 0;

	count = NXRD32(adapter, NX_CRB_DEV_REF_COUNT);

	if ((count < 0) || (count >= NX_MAX_PCI_FUNC))
		count = 0;

	if (count == 0) {
		can_start = 1;
		NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_INITALIZING);
	}

	NXWR32(adapter, NX_CRB_DEV_REF_COUNT, ++count);

	netxen_api_unlock(adapter);

	return can_start;
}

static void
netxen_schedule_work(struct netxen_adapter *adapter,
		work_func_t func, int delay)
{
	INIT_DELAYED_WORK(&adapter->fw_work, func);
	schedule_delayed_work(&adapter->fw_work, delay);
}

static void
netxen_cancel_fw_work(struct netxen_adapter *adapter)
{
	while (test_and_set_bit(__NX_RESETTING, &adapter->state))
		msleep(10);

	cancel_delayed_work_sync(&adapter->fw_work);
}

static void
netxen_attach_work(struct work_struct *work)
{
	struct netxen_adapter *adapter = container_of(work,
				struct netxen_adapter, fw_work.work);
	struct net_device *netdev = adapter->netdev;
	int err = 0;

	if (netif_running(netdev)) {
		err = netxen_nic_attach(adapter);
		if (err)
			goto done;

		err = netxen_nic_up(adapter, netdev);
		if (err) {
			netxen_nic_detach(adapter);
			goto done;
		}

2153
		netxen_config_indev_addr(netdev, NETDEV_UP);
2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175
	}

	netif_device_attach(netdev);

done:
	adapter->fw_fail_cnt = 0;
	clear_bit(__NX_RESETTING, &adapter->state);
	netxen_schedule_work(adapter, netxen_fw_poll_work, FW_POLL_DELAY);
}

static void
netxen_fwinit_work(struct work_struct *work)
{
	struct netxen_adapter *adapter = container_of(work,
				struct netxen_adapter, fw_work.work);
	int dev_state;

	dev_state = NXRD32(adapter, NX_CRB_DEV_STATE);

	switch (dev_state) {
	case NX_DEV_COLD:
	case NX_DEV_READY:
2176 2177 2178 2179 2180
		if (!netxen_start_firmware(adapter)) {
			netxen_schedule_work(adapter, netxen_attach_work, 0);
			return;
		}
		break;
2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239

	case NX_DEV_INITALIZING:
		if (++adapter->fw_wait_cnt < FW_POLL_THRESH) {
			netxen_schedule_work(adapter,
					netxen_fwinit_work, 2 * FW_POLL_DELAY);
			return;
		}
		break;

	case NX_DEV_FAILED:
	default:
		break;
	}

	nx_incr_dev_ref_cnt(adapter);
	clear_bit(__NX_RESETTING, &adapter->state);
}

static void
netxen_detach_work(struct work_struct *work)
{
	struct netxen_adapter *adapter = container_of(work,
				struct netxen_adapter, fw_work.work);
	struct net_device *netdev = adapter->netdev;
	int ref_cnt, delay;
	u32 status;

	netif_device_detach(netdev);

	if (netif_running(netdev))
		netxen_nic_down(adapter, netdev);

	netxen_nic_detach(adapter);

	status = NXRD32(adapter, NETXEN_PEG_HALT_STATUS1);

	ref_cnt = nx_decr_dev_ref_cnt(adapter);

	if (status & NX_RCODE_FATAL_ERROR)
		return;

	if (adapter->temp == NX_TEMP_PANIC)
		return;

	delay = (ref_cnt == 0) ? 0 : (2 * FW_POLL_DELAY);

	adapter->fw_wait_cnt = 0;
	netxen_schedule_work(adapter, netxen_fwinit_work, delay);
}

static int
netxen_check_health(struct netxen_adapter *adapter)
{
	u32 state, heartbit;
	struct net_device *netdev = adapter->netdev;

	if (netxen_nic_check_temp(adapter))
		goto detach;

2240 2241 2242 2243 2244
	if (adapter->need_fw_reset) {
		nx_dev_request_reset(adapter);
		goto detach;
	}

2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297
	state = NXRD32(adapter, NX_CRB_DEV_STATE);
	if (state == NX_DEV_NEED_RESET)
		goto detach;

	if (NX_IS_REVISION_P2(adapter->ahw.revision_id))
		return 0;

	heartbit = NXRD32(adapter, NETXEN_PEG_ALIVE_COUNTER);
	if (heartbit != adapter->heartbit) {
		adapter->heartbit = heartbit;
		adapter->fw_fail_cnt = 0;
		return 0;
	}

	if (++adapter->fw_fail_cnt < FW_FAIL_THRESH)
		return 0;

	clear_bit(__NX_FW_ATTACHED, &adapter->state);

	dev_info(&netdev->dev, "firmware hang detected\n");

detach:
	if (!test_and_set_bit(__NX_RESETTING, &adapter->state))
		netxen_schedule_work(adapter, netxen_detach_work, 0);
	return 1;
}

static void
netxen_fw_poll_work(struct work_struct *work)
{
	struct netxen_adapter *adapter = container_of(work,
				struct netxen_adapter, fw_work.work);

	if (test_bit(__NX_RESETTING, &adapter->state))
		goto reschedule;

	if (test_bit(__NX_DEV_UP, &adapter->state)) {
		if (!adapter->has_link_events) {

			netxen_nic_handle_phy_intr(adapter);

			if (adapter->link_changed)
				netxen_nic_set_link_parameters(adapter);
		}
	}

	if (netxen_check_health(adapter))
		return;

reschedule:
	netxen_schedule_work(adapter, netxen_fw_poll_work, FW_POLL_DELAY);
}

2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369
static ssize_t
netxen_store_bridged_mode(struct device *dev,
		struct device_attribute *attr, const char *buf, size_t len)
{
	struct net_device *net = to_net_dev(dev);
	struct netxen_adapter *adapter = netdev_priv(net);
	unsigned long new;
	int ret = -EINVAL;

	if (!(adapter->capabilities & NX_FW_CAPABILITY_BDG))
		goto err_out;

	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC)
		goto err_out;

	if (strict_strtoul(buf, 2, &new))
		goto err_out;

	if (!netxen_config_bridged_mode(adapter, !!new))
		ret = len;

err_out:
	return ret;
}

static ssize_t
netxen_show_bridged_mode(struct device *dev,
		struct device_attribute *attr, char *buf)
{
	struct net_device *net = to_net_dev(dev);
	struct netxen_adapter *adapter;
	int bridged_mode = 0;

	adapter = netdev_priv(net);

	if (adapter->capabilities & NX_FW_CAPABILITY_BDG)
		bridged_mode = !!(adapter->flags & NETXEN_NIC_BRIDGE_ENABLED);

	return sprintf(buf, "%d\n", bridged_mode);
}

static struct device_attribute dev_attr_bridged_mode = {
       .attr = {.name = "bridged_mode", .mode = (S_IRUGO | S_IWUSR)},
       .show = netxen_show_bridged_mode,
       .store = netxen_store_bridged_mode,
};

static void
netxen_create_sysfs_entries(struct netxen_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
	struct device *dev = &netdev->dev;

	if (adapter->capabilities & NX_FW_CAPABILITY_BDG) {
		/* bridged_mode control */
		if (device_create_file(dev, &dev_attr_bridged_mode)) {
			dev_warn(&netdev->dev,
				"failed to create bridged_mode sysfs entry\n");
		}
	}
}

static void
netxen_remove_sysfs_entries(struct netxen_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
	struct device *dev = &netdev->dev;

	if (adapter->capabilities & NX_FW_CAPABILITY_BDG)
		device_remove_file(dev, &dev_attr_bridged_mode);
}

2370 2371
#ifdef CONFIG_INET

2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385
#define is_netxen_netdev(dev) (dev->netdev_ops == &netxen_netdev_ops)

static int
netxen_destip_supported(struct netxen_adapter *adapter)
{
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id))
		return 0;

	if (adapter->ahw.cut_through)
		return 0;

	return 1;
}

2386 2387 2388 2389 2390 2391
static void
netxen_config_indev_addr(struct net_device *dev, unsigned long event)
{
	struct in_device *indev;
	struct netxen_adapter *adapter = netdev_priv(dev);

2392
	if (!netxen_destip_supported(adapter))
2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417
		return;

	indev = in_dev_get(dev);
	if (!indev)
		return;

	for_ifa(indev) {
		switch (event) {
		case NETDEV_UP:
			netxen_config_ipaddr(adapter,
					ifa->ifa_address, NX_IP_UP);
			break;
		case NETDEV_DOWN:
			netxen_config_ipaddr(adapter,
					ifa->ifa_address, NX_IP_DOWN);
			break;
		default:
			break;
		}
	} endfor_ifa(indev);

	in_dev_put(indev);
	return;
}

2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437
static int netxen_netdev_event(struct notifier_block *this,
				 unsigned long event, void *ptr)
{
	struct netxen_adapter *adapter;
	struct net_device *dev = (struct net_device *)ptr;

recheck:
	if (dev == NULL)
		goto done;

	if (dev->priv_flags & IFF_802_1Q_VLAN) {
		dev = vlan_dev_real_dev(dev);
		goto recheck;
	}

	if (!is_netxen_netdev(dev))
		goto done;

	adapter = netdev_priv(dev);

2438
	if (!adapter)
2439 2440 2441 2442 2443
		goto done;

	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC)
		goto done;

2444
	netxen_config_indev_addr(dev, event);
2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501
done:
	return NOTIFY_DONE;
}

static int
netxen_inetaddr_event(struct notifier_block *this,
		unsigned long event, void *ptr)
{
	struct netxen_adapter *adapter;
	struct net_device *dev;

	struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;

	dev = ifa->ifa_dev ? ifa->ifa_dev->dev : NULL;

recheck:
	if (dev == NULL || !netif_running(dev))
		goto done;

	if (dev->priv_flags & IFF_802_1Q_VLAN) {
		dev = vlan_dev_real_dev(dev);
		goto recheck;
	}

	if (!is_netxen_netdev(dev))
		goto done;

	adapter = netdev_priv(dev);

	if (!adapter || !netxen_destip_supported(adapter))
		goto done;

	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC)
		goto done;

	switch (event) {
	case NETDEV_UP:
		netxen_config_ipaddr(adapter, ifa->ifa_address, NX_IP_UP);
		break;
	case NETDEV_DOWN:
		netxen_config_ipaddr(adapter, ifa->ifa_address, NX_IP_DOWN);
		break;
	default:
		break;
	}

done:
	return NOTIFY_DONE;
}

static struct notifier_block	netxen_netdev_cb = {
	.notifier_call = netxen_netdev_event,
};

static struct notifier_block netxen_inetaddr_cb = {
	.notifier_call = netxen_inetaddr_event,
};
R
Randy Dunlap 已提交
2502 2503 2504 2505
#else
static void
netxen_config_indev_addr(struct net_device *dev, unsigned long event)
{ }
2506
#endif
2507

A
Amit S. Kale 已提交
2508 2509 2510 2511
static struct pci_driver netxen_driver = {
	.name = netxen_nic_driver_name,
	.id_table = netxen_pci_tbl,
	.probe = netxen_nic_probe,
2512
	.remove = __devexit_p(netxen_nic_remove),
2513
#ifdef CONFIG_PM
2514
	.suspend = netxen_nic_suspend,
2515
	.resume = netxen_nic_resume,
2516
#endif
2517
	.shutdown = netxen_nic_shutdown
A
Amit S. Kale 已提交
2518 2519 2520 2521
};

static int __init netxen_init_module(void)
{
2522 2523
	printk(KERN_INFO "%s\n", netxen_nic_driver_string);

2524
#ifdef CONFIG_INET
2525 2526
	register_netdevice_notifier(&netxen_netdev_cb);
	register_inetaddr_notifier(&netxen_inetaddr_cb);
2527
#endif
2528

2529
	return pci_register_driver(&netxen_driver);
A
Amit S. Kale 已提交
2530 2531 2532 2533 2534 2535 2536
}

module_init(netxen_init_module);

static void __exit netxen_exit_module(void)
{
	pci_unregister_driver(&netxen_driver);
2537

2538
#ifdef CONFIG_INET
2539 2540
	unregister_inetaddr_notifier(&netxen_inetaddr_cb);
	unregister_netdevice_notifier(&netxen_netdev_cb);
2541
#endif
A
Amit S. Kale 已提交
2542 2543 2544
}

module_exit(netxen_exit_module);