netxen_nic_init.c 30.5 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 32 33 34 35 36 37
 *
 */

#include <linux/netdevice.h>
#include <linux/delay.h>
#include "netxen_nic.h"
#include "netxen_nic_hw.h"
#include "netxen_nic_phan_reg.h"

struct crb_addr_pair {
38 39
	u32 addr;
	u32 data;
A
Amit S. Kale 已提交
40 41 42 43
};

#define NETXEN_MAX_CRB_XFORM 60
static unsigned int crb_addr_xform[NETXEN_MAX_CRB_XFORM];
44
#define NETXEN_ADDR_ERROR (0xffffffff)
A
Amit S. Kale 已提交
45 46 47 48 49

#define crb_addr_transform(name) \
	crb_addr_xform[NETXEN_HW_PX_MAP_CRB_##name] = \
	NETXEN_HW_CRB_HUB_AGT_ADR_##name << 20

50 51
#define NETXEN_NIC_XDMA_RESET 0x8000ff

52
static void
53 54
netxen_post_rx_buffers_nodb(struct netxen_adapter *adapter,
		struct nx_host_rds_ring *rds_ring);
A
Adrian Bunk 已提交
55

A
Amit S. Kale 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
static void crb_addr_transform_setup(void)
{
	crb_addr_transform(XDMA);
	crb_addr_transform(TIMR);
	crb_addr_transform(SRE);
	crb_addr_transform(SQN3);
	crb_addr_transform(SQN2);
	crb_addr_transform(SQN1);
	crb_addr_transform(SQN0);
	crb_addr_transform(SQS3);
	crb_addr_transform(SQS2);
	crb_addr_transform(SQS1);
	crb_addr_transform(SQS0);
	crb_addr_transform(RPMX7);
	crb_addr_transform(RPMX6);
	crb_addr_transform(RPMX5);
	crb_addr_transform(RPMX4);
	crb_addr_transform(RPMX3);
	crb_addr_transform(RPMX2);
	crb_addr_transform(RPMX1);
	crb_addr_transform(RPMX0);
	crb_addr_transform(ROMUSB);
	crb_addr_transform(SN);
	crb_addr_transform(QMN);
	crb_addr_transform(QMS);
	crb_addr_transform(PGNI);
	crb_addr_transform(PGND);
	crb_addr_transform(PGN3);
	crb_addr_transform(PGN2);
	crb_addr_transform(PGN1);
	crb_addr_transform(PGN0);
	crb_addr_transform(PGSI);
	crb_addr_transform(PGSD);
	crb_addr_transform(PGS3);
	crb_addr_transform(PGS2);
	crb_addr_transform(PGS1);
	crb_addr_transform(PGS0);
	crb_addr_transform(PS);
	crb_addr_transform(PH);
	crb_addr_transform(NIU);
	crb_addr_transform(I2Q);
	crb_addr_transform(EG);
	crb_addr_transform(MN);
	crb_addr_transform(MS);
	crb_addr_transform(CAS2);
	crb_addr_transform(CAS1);
	crb_addr_transform(CAS0);
	crb_addr_transform(CAM);
	crb_addr_transform(C2C1);
	crb_addr_transform(C2C0);
106
	crb_addr_transform(SMB);
107 108
	crb_addr_transform(OCM0);
	crb_addr_transform(I2C0);
A
Amit S. Kale 已提交
109 110
}

111
void netxen_release_rx_buffers(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
112
{
113
	struct netxen_recv_context *recv_ctx;
D
Dhananjay Phadke 已提交
114
	struct nx_host_rds_ring *rds_ring;
115
	struct netxen_rx_buffer *rx_buf;
116 117 118 119 120
	int i, ring;

	recv_ctx = &adapter->recv_ctx;
	for (ring = 0; ring < adapter->max_rds_rings; ring++) {
		rds_ring = &recv_ctx->rds_rings[ring];
121
		for (i = 0; i < rds_ring->num_desc; ++i) {
122 123 124 125 126 127 128 129 130
			rx_buf = &(rds_ring->rx_buf_arr[i]);
			if (rx_buf->state == NETXEN_BUFFER_FREE)
				continue;
			pci_unmap_single(adapter->pdev,
					rx_buf->dma,
					rds_ring->dma_size,
					PCI_DMA_FROMDEVICE);
			if (rx_buf->skb != NULL)
				dev_kfree_skb_any(rx_buf->skb);
131 132 133 134 135 136 137 138 139
		}
	}
}

void netxen_release_tx_buffers(struct netxen_adapter *adapter)
{
	struct netxen_cmd_buffer *cmd_buf;
	struct netxen_skb_frag *buffrag;
	int i, j;
140
	struct nx_host_tx_ring *tx_ring = &adapter->tx_ring;
141

142 143
	cmd_buf = tx_ring->cmd_buf_arr;
	for (i = 0; i < tx_ring->num_desc; i++) {
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
		buffrag = cmd_buf->frag_array;
		if (buffrag->dma) {
			pci_unmap_single(adapter->pdev, buffrag->dma,
					 buffrag->length, PCI_DMA_TODEVICE);
			buffrag->dma = 0ULL;
		}
		for (j = 0; j < cmd_buf->frag_count; j++) {
			buffrag++;
			if (buffrag->dma) {
				pci_unmap_page(adapter->pdev, buffrag->dma,
					       buffrag->length,
					       PCI_DMA_TODEVICE);
				buffrag->dma = 0ULL;
			}
		}
		if (cmd_buf->skb) {
			dev_kfree_skb_any(cmd_buf->skb);
			cmd_buf->skb = NULL;
		}
		cmd_buf++;
	}
}

void netxen_free_sw_resources(struct netxen_adapter *adapter)
{
	struct netxen_recv_context *recv_ctx;
D
Dhananjay Phadke 已提交
170
	struct nx_host_rds_ring *rds_ring;
171
	struct nx_host_tx_ring *tx_ring;
172 173 174 175 176 177 178 179
	int ring;

	recv_ctx = &adapter->recv_ctx;
	for (ring = 0; ring < adapter->max_rds_rings; ring++) {
		rds_ring = &recv_ctx->rds_rings[ring];
		if (rds_ring->rx_buf_arr) {
			vfree(rds_ring->rx_buf_arr);
			rds_ring->rx_buf_arr = NULL;
180 181
		}
	}
182

183 184 185
	tx_ring = &adapter->tx_ring;
	if (tx_ring->cmd_buf_arr)
		vfree(tx_ring->cmd_buf_arr);
186 187 188 189 190 191
	return;
}

int netxen_alloc_sw_resources(struct netxen_adapter *adapter)
{
	struct netxen_recv_context *recv_ctx;
D
Dhananjay Phadke 已提交
192
	struct nx_host_rds_ring *rds_ring;
193
	struct nx_host_sds_ring *sds_ring;
194
	struct nx_host_tx_ring *tx_ring = &adapter->tx_ring;
195
	struct netxen_rx_buffer *rx_buf;
196
	int ring, i, num_rx_bufs;
197 198 199

	struct netxen_cmd_buffer *cmd_buf_arr;
	struct net_device *netdev = adapter->netdev;
200
	struct pci_dev *pdev = adapter->pdev;
201

202
	tx_ring->num_desc = adapter->num_txd;
203
	cmd_buf_arr =
204
		(struct netxen_cmd_buffer *)vmalloc(TX_BUFF_RINGSIZE(tx_ring));
205
	if (cmd_buf_arr == NULL) {
206
		dev_err(&pdev->dev, "%s: failed to allocate cmd buffer ring\n",
207 208 209
		       netdev->name);
		return -ENOMEM;
	}
210 211
	memset(cmd_buf_arr, 0, TX_BUFF_RINGSIZE(tx_ring));
	tx_ring->cmd_buf_arr = cmd_buf_arr;
212

213 214 215
	recv_ctx = &adapter->recv_ctx;
	for (ring = 0; ring < adapter->max_rds_rings; ring++) {
		rds_ring = &recv_ctx->rds_rings[ring];
216 217 218
		switch (ring) {
		case RCV_RING_NORMAL:
			rds_ring->num_desc = adapter->num_rxd;
219 220 221
			if (adapter->ahw.cut_through) {
				rds_ring->dma_size =
					NX_CT_DEFAULT_RX_BUF_LEN;
D
Dhananjay Phadke 已提交
222
				rds_ring->skb_size =
223 224 225 226 227 228 229
					NX_CT_DEFAULT_RX_BUF_LEN;
			} else {
				rds_ring->dma_size = RX_DMA_MAP_LEN;
				rds_ring->skb_size =
					MAX_RX_BUFFER_LENGTH;
			}
			break;
230

231 232
		case RCV_RING_JUMBO:
			rds_ring->num_desc = adapter->num_jumbo_rxd;
233 234 235 236 237 238 239 240 241
			if (NX_IS_REVISION_P3(adapter->ahw.revision_id))
				rds_ring->dma_size =
					NX_P3_RX_JUMBO_BUF_MAX_LEN;
			else
				rds_ring->dma_size =
					NX_P2_RX_JUMBO_BUF_MAX_LEN;
			rds_ring->skb_size =
				rds_ring->dma_size + NET_IP_ALIGN;
			break;
242

243
		case RCV_RING_LRO:
244
			rds_ring->num_desc = adapter->num_lro_rxd;
245 246 247 248 249 250
			rds_ring->dma_size = RX_LRO_DMA_MAP_LEN;
			rds_ring->skb_size = MAX_RX_LRO_BUFFER_LENGTH;
			break;

		}
		rds_ring->rx_buf_arr = (struct netxen_rx_buffer *)
251
			vmalloc(RCV_BUFF_RINGSIZE(rds_ring));
252 253 254 255 256 257 258
		if (rds_ring->rx_buf_arr == NULL) {
			printk(KERN_ERR "%s: Failed to allocate "
				"rx buffer ring %d\n",
				netdev->name, ring);
			/* free whatever was already allocated */
			goto err_out;
		}
259
		memset(rds_ring->rx_buf_arr, 0, RCV_BUFF_RINGSIZE(rds_ring));
260 261 262 263 264
		INIT_LIST_HEAD(&rds_ring->free_list);
		/*
		 * Now go through all of them, set reference handles
		 * and put them in the queues.
		 */
265
		num_rx_bufs = rds_ring->num_desc;
266 267 268 269 270 271 272
		rx_buf = rds_ring->rx_buf_arr;
		for (i = 0; i < num_rx_bufs; i++) {
			list_add_tail(&rx_buf->list,
					&rds_ring->free_list);
			rx_buf->ref_handle = i;
			rx_buf->state = NETXEN_BUFFER_FREE;
			rx_buf++;
A
Amit S. Kale 已提交
273
		}
274 275 276 277 278 279 280 281 282 283 284
		spin_lock_init(&rds_ring->lock);
	}

	for (ring = 0; ring < adapter->max_sds_rings; ring++) {
		sds_ring = &recv_ctx->sds_rings[ring];
		sds_ring->irq = adapter->msix_entries[ring].vector;
		sds_ring->adapter = adapter;
		sds_ring->num_desc = adapter->num_rxd;

		for (i = 0; i < NUM_RCV_DESC_RINGS; i++)
			INIT_LIST_HEAD(&sds_ring->free_list[i]);
A
Amit S. Kale 已提交
285
	}
286 287 288 289 290 291

	return 0;

err_out:
	netxen_free_sw_resources(adapter);
	return -ENOMEM;
A
Amit S. Kale 已提交
292 293 294 295
}

void netxen_initialize_adapter_ops(struct netxen_adapter *adapter)
{
296
	switch (adapter->ahw.port_type) {
A
Amit S. Kale 已提交
297
	case NETXEN_NIC_GBE:
298
		adapter->enable_phy_interrupts =
A
Amit S. Kale 已提交
299
		    netxen_niu_gbe_enable_phy_interrupts;
300
		adapter->disable_phy_interrupts =
A
Amit S. Kale 已提交
301
		    netxen_niu_gbe_disable_phy_interrupts;
302 303 304 305 306
		adapter->macaddr_set = netxen_niu_macaddr_set;
		adapter->set_mtu = netxen_nic_set_mtu_gb;
		adapter->set_promisc = netxen_niu_set_promiscuous_mode;
		adapter->phy_read = netxen_niu_gbe_phy_read;
		adapter->phy_write = netxen_niu_gbe_phy_write;
307
		adapter->init_port = netxen_niu_gbe_init_port;
308
		adapter->stop_port = netxen_niu_disable_gbe_port;
A
Amit S. Kale 已提交
309 310 311
		break;

	case NETXEN_NIC_XGBE:
312
		adapter->enable_phy_interrupts =
A
Amit S. Kale 已提交
313
		    netxen_niu_xgbe_enable_phy_interrupts;
314
		adapter->disable_phy_interrupts =
A
Amit S. Kale 已提交
315
		    netxen_niu_xgbe_disable_phy_interrupts;
316 317 318 319 320
		adapter->macaddr_set = netxen_niu_xg_macaddr_set;
		adapter->set_mtu = netxen_nic_set_mtu_xgb;
		adapter->init_port = netxen_niu_xg_init_port;
		adapter->set_promisc = netxen_niu_xg_set_promiscuous_mode;
		adapter->stop_port = netxen_niu_disable_xg_port;
A
Amit S. Kale 已提交
321 322 323 324 325
		break;

	default:
		break;
	}
326 327 328 329 330

	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
		adapter->set_mtu = nx_fw_cmd_set_mtu;
		adapter->set_promisc = netxen_p3_nic_set_promisc;
	}
A
Amit S. Kale 已提交
331 332 333 334 335 336
}

/*
 * netxen_decode_crb_addr(0 - utility to translate from internal Phantom CRB
 * address to external PCI CRB address.
 */
A
Adrian Bunk 已提交
337
static u32 netxen_decode_crb_addr(u32 addr)
A
Amit S. Kale 已提交
338 339
{
	int i;
340
	u32 base_addr, offset, pci_base;
A
Amit S. Kale 已提交
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359

	crb_addr_transform_setup();

	pci_base = NETXEN_ADDR_ERROR;
	base_addr = addr & 0xfff00000;
	offset = addr & 0x000fffff;

	for (i = 0; i < NETXEN_MAX_CRB_XFORM; i++) {
		if (crb_addr_xform[i] == base_addr) {
			pci_base = i << 20;
			break;
		}
	}
	if (pci_base == NETXEN_ADDR_ERROR)
		return pci_base;
	else
		return (pci_base + offset);
}

360 361
static long rom_max_timeout = 100;
static long rom_lock_timeout = 10000;
A
Amit S. Kale 已提交
362

A
Adrian Bunk 已提交
363
static int rom_lock(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
364 365 366 367 368 369 370
{
	int iter;
	u32 done = 0;
	int timeout = 0;

	while (!done) {
		/* acquire semaphore2 from PCI HW block */
371
		done = NXRD32(adapter, NETXEN_PCIE_REG(PCIE_SEM2_LOCK));
A
Amit S. Kale 已提交
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
		if (done == 1)
			break;
		if (timeout >= rom_lock_timeout)
			return -EIO;

		timeout++;
		/*
		 * Yield CPU
		 */
		if (!in_atomic())
			schedule();
		else {
			for (iter = 0; iter < 20; iter++)
				cpu_relax();	/*This a nop instr on i386 */
		}
	}
388
	NXWR32(adapter, NETXEN_ROM_LOCK_ID, ROM_LOCK_DRIVER);
A
Amit S. Kale 已提交
389 390 391
	return 0;
}

A
Adrian Bunk 已提交
392
static int netxen_wait_rom_done(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
393 394 395 396
{
	long timeout = 0;
	long done = 0;

D
Dhananjay Phadke 已提交
397 398
	cond_resched();

A
Amit S. Kale 已提交
399
	while (done == 0) {
400
		done = NXRD32(adapter, NETXEN_ROMUSB_GLB_STATUS);
A
Amit S. Kale 已提交
401 402 403 404 405 406 407 408 409 410
		done &= 2;
		timeout++;
		if (timeout >= rom_max_timeout) {
			printk("Timeout reached  waiting for rom done");
			return -EIO;
		}
	}
	return 0;
}

A
Adrian Bunk 已提交
411
static void netxen_rom_unlock(struct netxen_adapter *adapter)
412 413
{
	/* release semaphore2 */
414
	NXRD32(adapter, NETXEN_PCIE_REG(PCIE_SEM2_UNLOCK));
415 416 417

}

A
Adrian Bunk 已提交
418 419
static int do_rom_fast_read(struct netxen_adapter *adapter,
			    int addr, int *valp)
A
Amit S. Kale 已提交
420
{
421 422 423 424
	NXWR32(adapter, NETXEN_ROMUSB_ROM_ADDRESS, addr);
	NXWR32(adapter, NETXEN_ROMUSB_ROM_DUMMY_BYTE_CNT, 0);
	NXWR32(adapter, NETXEN_ROMUSB_ROM_ABYTE_CNT, 3);
	NXWR32(adapter, NETXEN_ROMUSB_ROM_INSTR_OPCODE, 0xb);
A
Amit S. Kale 已提交
425 426 427 428 429
	if (netxen_wait_rom_done(adapter)) {
		printk("Error waiting for rom done\n");
		return -EIO;
	}
	/* reset abyte_cnt and dummy_byte_cnt */
430
	NXWR32(adapter, NETXEN_ROMUSB_ROM_ABYTE_CNT, 0);
D
Dhananjay Phadke 已提交
431
	udelay(10);
432
	NXWR32(adapter, NETXEN_ROMUSB_ROM_DUMMY_BYTE_CNT, 0);
A
Amit S. Kale 已提交
433

434
	*valp = NXRD32(adapter, NETXEN_ROMUSB_ROM_RDATA);
A
Amit S. Kale 已提交
435 436 437
	return 0;
}

A
Adrian Bunk 已提交
438 439
static int do_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
				  u8 *bytes, size_t size)
440 441 442 443 444
{
	int addridx;
	int ret = 0;

	for (addridx = addr; addridx < (addr + size); addridx += 4) {
A
Al Viro 已提交
445 446
		int v;
		ret = do_rom_fast_read(adapter, addridx, &v);
447 448
		if (ret != 0)
			break;
A
Al Viro 已提交
449
		*(__le32 *)bytes = cpu_to_le32(v);
450 451 452 453 454 455 456
		bytes += 4;
	}

	return ret;
}

int
457
netxen_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
458 459 460 461 462 463 464 465 466 467 468 469 470 471
				u8 *bytes, size_t size)
{
	int ret;

	ret = rom_lock(adapter);
	if (ret < 0)
		return ret;

	ret = do_rom_fast_read_words(adapter, addr, bytes, size);

	netxen_rom_unlock(adapter);
	return ret;
}

A
Amit S. Kale 已提交
472 473 474 475 476 477 478 479
int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr, int *valp)
{
	int ret;

	if (rom_lock(adapter) != 0)
		return -EIO;

	ret = do_rom_fast_read(adapter, addr, valp);
480 481 482 483
	netxen_rom_unlock(adapter);
	return ret;
}

A
Amit S. Kale 已提交
484 485 486 487 488 489
#define NETXEN_BOARDTYPE		0x4008
#define NETXEN_BOARDNUM 		0x400c
#define NETXEN_CHIPNUM			0x4010

int netxen_pinit_from_rom(struct netxen_adapter *adapter, int verbose)
{
490
	int addr, val;
D
Dhananjay Phadke 已提交
491
	int i, n, init_delay = 0;
A
Amit S. Kale 已提交
492
	struct crb_addr_pair *buf;
D
Dhananjay Phadke 已提交
493
	unsigned offset;
494
	u32 off;
A
Amit S. Kale 已提交
495 496

	/* resetall */
D
Dhananjay Phadke 已提交
497
	rom_lock(adapter);
498
	NXWR32(adapter, NETXEN_ROMUSB_GLB_SW_RESET, 0xffffffff);
D
Dhananjay Phadke 已提交
499
	netxen_rom_unlock(adapter);
A
Amit S. Kale 已提交
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515

	if (verbose) {
		if (netxen_rom_fast_read(adapter, NETXEN_BOARDTYPE, &val) == 0)
			printk("P2 ROM board type: 0x%08x\n", val);
		else
			printk("Could not read board type\n");
		if (netxen_rom_fast_read(adapter, NETXEN_BOARDNUM, &val) == 0)
			printk("P2 ROM board  num: 0x%08x\n", val);
		else
			printk("Could not read board number\n");
		if (netxen_rom_fast_read(adapter, NETXEN_CHIPNUM, &val) == 0)
			printk("P2 ROM chip   num: 0x%08x\n", val);
		else
			printk("Could not read chip number\n");
	}

516 517
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
		if (netxen_rom_fast_read(adapter, 0, &n) != 0 ||
D
Dhananjay Phadke 已提交
518
			(n != 0xcafecafe) ||
519 520 521
			netxen_rom_fast_read(adapter, 4, &n) != 0) {
			printk(KERN_ERR "%s: ERROR Reading crb_init area: "
					"n: %08x\n", netxen_nic_driver_name, n);
A
Amit S. Kale 已提交
522 523
			return -EIO;
		}
524 525 526 527 528 529 530 531
		offset = n & 0xffffU;
		n = (n >> 16) & 0xffffU;
	} else {
		if (netxen_rom_fast_read(adapter, 0, &n) != 0 ||
			!(n & 0x80000000)) {
			printk(KERN_ERR "%s: ERROR Reading crb_init area: "
					"n: %08x\n", netxen_nic_driver_name, n);
			return -EIO;
A
Amit S. Kale 已提交
532
		}
533 534 535 536 537 538 539 540 541 542 543 544 545
		offset = 1;
		n &= ~0x80000000;
	}

	if (n < 1024) {
		if (verbose)
			printk(KERN_DEBUG "%s: %d CRB init values found"
			       " in ROM.\n", netxen_nic_driver_name, n);
	} else {
		printk(KERN_ERR "%s:n=0x%x Error! NetXen card flash not"
		       " initialized.\n", __func__, n);
		return -EIO;
	}
A
Amit S. Kale 已提交
546

547 548 549 550 551 552 553 554
	buf = kcalloc(n, sizeof(struct crb_addr_pair), GFP_KERNEL);
	if (buf == NULL) {
		printk("%s: netxen_pinit_from_rom: Unable to calloc memory.\n",
				netxen_nic_driver_name);
		return -ENOMEM;
	}
	for (i = 0; i < n; i++) {
		if (netxen_rom_fast_read(adapter, 8*i + 4*offset, &val) != 0 ||
555 556
		netxen_rom_fast_read(adapter, 8*i + 4*offset + 4, &addr) != 0) {
			kfree(buf);
557
			return -EIO;
558
		}
559 560 561 562 563 564 565 566 567 568 569 570 571 572

		buf[i].addr = addr;
		buf[i].data = val;

		if (verbose)
			printk(KERN_DEBUG "%s: PCI:     0x%08x == 0x%08x\n",
				netxen_nic_driver_name,
				(u32)netxen_decode_crb_addr(addr), val);
	}
	for (i = 0; i < n; i++) {

		off = netxen_decode_crb_addr(buf[i].addr);
		if (off == NETXEN_ADDR_ERROR) {
			printk(KERN_ERR"CRB init value out of range %x\n",
573
					buf[i].addr);
574 575 576 577 578 579 580 581 582 583
			continue;
		}
		off += NETXEN_PCI_CRBSPACE;
		/* skipping cold reboot MAGIC */
		if (off == NETXEN_CAM_RAM(0x1fc))
			continue;

		if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
			/* do not reset PCI */
			if (off == (ROMUSB_GLB + 0xbc))
584
				continue;
D
Dhananjay Phadke 已提交
585 586 587 588 589 590 591 592
			if (off == (ROMUSB_GLB + 0xa8))
				continue;
			if (off == (ROMUSB_GLB + 0xc8)) /* core clock */
				continue;
			if (off == (ROMUSB_GLB + 0x24)) /* MN clock */
				continue;
			if (off == (ROMUSB_GLB + 0x1c)) /* MS clock */
				continue;
593 594 595 596
			if (off == (NETXEN_CRB_PEG_NET_1 + 0x18))
				buf[i].data = 0x1020;
			/* skip the function enable register */
			if (off == NETXEN_PCIE_REG(PCIE_SETUP_FUNCTION))
A
Amit S. Kale 已提交
597
				continue;
598 599 600 601 602
			if (off == NETXEN_PCIE_REG(PCIE_SETUP_FUNCTION2))
				continue;
			if ((off & 0x0ff00000) == NETXEN_CRB_SMB)
				continue;
		}
A
Amit S. Kale 已提交
603

604 605 606 607 608 609
		if (off == NETXEN_ADDR_ERROR) {
			printk(KERN_ERR "%s: Err: Unknown addr: 0x%08x\n",
					netxen_nic_driver_name, buf[i].addr);
			continue;
		}

D
Dhananjay Phadke 已提交
610
		init_delay = 1;
611 612 613
		/* After writing this register, HW needs time for CRB */
		/* to quiet down (else crb_window returns 0xffffffff) */
		if (off == NETXEN_ROMUSB_GLB_SW_RESET) {
D
Dhananjay Phadke 已提交
614
			init_delay = 1000;
615
			if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
A
Amit S. Kale 已提交
616
				/* hold xdma in reset also */
617
				buf[i].data = NETXEN_NIC_XDMA_RESET;
D
Dhananjay Phadke 已提交
618
				buf[i].data = 0x8000ff;
A
Amit S. Kale 已提交
619
			}
620
		}
A
Amit S. Kale 已提交
621

622
		NXWR32(adapter, off, buf[i].data);
A
Amit S. Kale 已提交
623

D
Dhananjay Phadke 已提交
624
		msleep(init_delay);
625 626
	}
	kfree(buf);
A
Amit S. Kale 已提交
627

628
	/* disable_peg_cache_all */
A
Amit S. Kale 已提交
629

630 631
	/* unreset_net_cache */
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
632 633
		val = NXRD32(adapter, NETXEN_ROMUSB_GLB_SW_RESET);
		NXWR32(adapter, NETXEN_ROMUSB_GLB_SW_RESET, (val & 0xffffff0f));
A
Amit S. Kale 已提交
634
	}
635 636

	/* p2dn replyCount */
637
	NXWR32(adapter, NETXEN_CRB_PEG_NET_D + 0xec, 0x1e);
638
	/* disable_peg_cache 0 */
639
	NXWR32(adapter, NETXEN_CRB_PEG_NET_D + 0x4c, 8);
640
	/* disable_peg_cache 1 */
641
	NXWR32(adapter, NETXEN_CRB_PEG_NET_I + 0x4c, 8);
642 643 644 645

	/* peg_clr_all */

	/* peg_clr 0 */
646 647
	NXWR32(adapter, NETXEN_CRB_PEG_NET_0 + 0x8, 0);
	NXWR32(adapter, NETXEN_CRB_PEG_NET_0 + 0xc, 0);
648
	/* peg_clr 1 */
649 650
	NXWR32(adapter, NETXEN_CRB_PEG_NET_1 + 0x8, 0);
	NXWR32(adapter, NETXEN_CRB_PEG_NET_1 + 0xc, 0);
651
	/* peg_clr 2 */
652 653
	NXWR32(adapter, NETXEN_CRB_PEG_NET_2 + 0x8, 0);
	NXWR32(adapter, NETXEN_CRB_PEG_NET_2 + 0xc, 0);
654
	/* peg_clr 3 */
655 656
	NXWR32(adapter, NETXEN_CRB_PEG_NET_3 + 0x8, 0);
	NXWR32(adapter, NETXEN_CRB_PEG_NET_3 + 0xc, 0);
A
Amit S. Kale 已提交
657 658 659
	return 0;
}

660 661 662 663 664 665 666
int netxen_initialize_adapter_offload(struct netxen_adapter *adapter)
{
	uint64_t addr;
	uint32_t hi;
	uint32_t lo;

	adapter->dummy_dma.addr =
667
	    pci_alloc_consistent(adapter->pdev,
668 669 670 671
				 NETXEN_HOST_DUMMY_DMA_SIZE,
				 &adapter->dummy_dma.phys_addr);
	if (adapter->dummy_dma.addr == NULL) {
		printk("%s: ERROR: Could not allocate dummy DMA memory\n",
672
		       __func__);
673 674 675 676 677 678 679
		return -ENOMEM;
	}

	addr = (uint64_t) adapter->dummy_dma.phys_addr;
	hi = (addr >> 32) & 0xffffffff;
	lo = addr & 0xffffffff;

680 681
	NXWR32(adapter, CRB_HOST_DUMMY_BUF_ADDR_HI, hi);
	NXWR32(adapter, CRB_HOST_DUMMY_BUF_ADDR_LO, lo);
682

683 684
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
		uint32_t temp = 0;
685
		NXWR32(adapter, CRB_HOST_DUMMY_BUF, temp);
686 687
	}

688 689 690 691 692
	return 0;
}

void netxen_free_adapter_offload(struct netxen_adapter *adapter)
{
D
Dhananjay Phadke 已提交
693 694 695 696
	int i = 100;

	if (!adapter->dummy_dma.addr)
		return;
697

D
Dhananjay Phadke 已提交
698
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
699 700 701 702 703 704 705
		do {
			if (dma_watchdog_shutdown_request(adapter) == 1)
				break;
			msleep(50);
			if (dma_watchdog_shutdown_poll_result(adapter) == 1)
				break;
		} while (--i);
D
Dhananjay Phadke 已提交
706
	}
707

D
Dhananjay Phadke 已提交
708 709 710 711 712 713 714 715 716
	if (i) {
		pci_free_consistent(adapter->pdev,
			    NETXEN_HOST_DUMMY_DMA_SIZE,
			    adapter->dummy_dma.addr,
			    adapter->dummy_dma.phys_addr);
		adapter->dummy_dma.addr = NULL;
	} else {
		printk(KERN_ERR "%s: dma_watchdog_shutdown failed\n",
				adapter->netdev->name);
717 718 719
	}
}

720
int netxen_phantom_init(struct netxen_adapter *adapter, int pegtune_val)
A
Amit S. Kale 已提交
721 722
{
	u32 val = 0;
723
	int retries = 60;
A
Amit S. Kale 已提交
724

725
	if (!pegtune_val) {
726
		do {
727
			val = NXRD32(adapter, CRB_CMDPEG_STATE);
728 729 730 731 732

			if (val == PHAN_INITIALIZE_COMPLETE ||
				val == PHAN_INITIALIZE_ACK)
				return 0;

733 734
			msleep(500);

735
		} while (--retries);
736

737
		if (!retries) {
738
			pegtune_val = NXRD32(adapter,
739
					NETXEN_ROMUSB_GLB_PEGTUNE_DONE);
740 741 742
			printk(KERN_WARNING "netxen_phantom_init: init failed, "
					"pegtune_val=%x\n", pegtune_val);
			return -1;
A
Amit S. Kale 已提交
743 744
		}
	}
745 746

	return 0;
A
Amit S. Kale 已提交
747 748
}

749 750
static int
netxen_receive_peg_ready(struct netxen_adapter *adapter)
751 752 753 754 755
{
	u32 val = 0;
	int retries = 2000;

	do {
756
		val = NXRD32(adapter, CRB_RCVPEG_STATE);
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773

		if (val == PHAN_PEG_RCV_INITIALIZED)
			return 0;

		msleep(10);

	} while (--retries);

	if (!retries) {
		printk(KERN_ERR "Receive Peg initialization not "
			      "complete, state: 0x%x.\n", val);
		return -EIO;
	}

	return 0;
}

774 775 776 777 778 779 780 781
int netxen_init_firmware(struct netxen_adapter *adapter)
{
	int err;

	err = netxen_receive_peg_ready(adapter);
	if (err)
		return err;

782 783 784 785
	NXWR32(adapter, CRB_NIC_CAPABILITIES_HOST, INTR_SCHEME_PERPORT);
	NXWR32(adapter, CRB_NIC_MSI_MODE_HOST, MSI_MODE_MULTIFUNC);
	NXWR32(adapter, CRB_MPORT_MODE, MPORT_MULTI_FUNCTION_MODE);
	NXWR32(adapter, CRB_CMDPEG_STATE, PHAN_INITIALIZE_ACK);
786

787
	if (adapter->fw_version >= NETXEN_VERSION_CODE(4, 0, 222)) {
788
		adapter->capabilities = NXRD32(adapter, CRB_FW_CAPABILITIES_1);
789 790
	}

791 792 793
	return err;
}

794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
static void
netxen_handle_linkevent(struct netxen_adapter *adapter, nx_fw_msg_t *msg)
{
	u32 cable_OUI;
	u16 cable_len;
	u16 link_speed;
	u8  link_status, module, duplex, autoneg;
	struct net_device *netdev = adapter->netdev;

	adapter->has_link_events = 1;

	cable_OUI = msg->body[1] & 0xffffffff;
	cable_len = (msg->body[1] >> 32) & 0xffff;
	link_speed = (msg->body[1] >> 48) & 0xffff;

	link_status = msg->body[2] & 0xff;
	duplex = (msg->body[2] >> 16) & 0xff;
	autoneg = (msg->body[2] >> 24) & 0xff;

	module = (msg->body[2] >> 8) & 0xff;
	if (module == LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLE) {
		printk(KERN_INFO "%s: unsupported cable: OUI 0x%x, length %d\n",
				netdev->name, cable_OUI, cable_len);
	} else if (module == LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLELEN) {
		printk(KERN_INFO "%s: unsupported cable length %d\n",
				netdev->name, cable_len);
	}

	netxen_advert_link_change(adapter, link_status);

	/* update link parameters */
	if (duplex == LINKEVENT_FULL_DUPLEX)
		adapter->link_duplex = DUPLEX_FULL;
	else
		adapter->link_duplex = DUPLEX_HALF;
	adapter->module_type = module;
	adapter->link_autoneg = autoneg;
	adapter->link_speed = link_speed;
}

static void
netxen_handle_fw_message(int desc_cnt, int index,
		struct nx_host_sds_ring *sds_ring)
{
	nx_fw_msg_t msg;
	struct status_desc *desc;
	int i = 0, opcode;

	while (desc_cnt > 0 && i < 8) {
		desc = &sds_ring->desc_head[index];
		msg.words[i++] = le64_to_cpu(desc->status_desc_data[0]);
		msg.words[i++] = le64_to_cpu(desc->status_desc_data[1]);

		index = get_next_index(index, sds_ring->num_desc);
		desc_cnt--;
	}

	opcode = netxen_get_nic_msg_opcode(msg.body[0]);
	switch (opcode) {
	case NX_NIC_C2H_OPCODE_GET_LINKEVENT_RESPONSE:
		netxen_handle_linkevent(sds_ring->adapter, &msg);
		break;
	default:
		break;
	}
}

861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
static int
netxen_alloc_rx_skb(struct netxen_adapter *adapter,
		struct nx_host_rds_ring *rds_ring,
		struct netxen_rx_buffer *buffer)
{
	struct sk_buff *skb;
	dma_addr_t dma;
	struct pci_dev *pdev = adapter->pdev;

	buffer->skb = dev_alloc_skb(rds_ring->skb_size);
	if (!buffer->skb)
		return 1;

	skb = buffer->skb;

	if (!adapter->ahw.cut_through)
		skb_reserve(skb, 2);

	dma = pci_map_single(pdev, skb->data,
			rds_ring->dma_size, PCI_DMA_FROMDEVICE);

	if (pci_dma_mapping_error(pdev, dma)) {
		dev_kfree_skb_any(skb);
		buffer->skb = NULL;
		return 1;
	}

	buffer->skb = skb;
	buffer->dma = dma;
	buffer->state = NETXEN_BUFFER_BUSY;

	return 0;
}

895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
static struct sk_buff *netxen_process_rxbuf(struct netxen_adapter *adapter,
		struct nx_host_rds_ring *rds_ring, u16 index, u16 cksum)
{
	struct netxen_rx_buffer *buffer;
	struct sk_buff *skb;

	buffer = &rds_ring->rx_buf_arr[index];

	pci_unmap_single(adapter->pdev, buffer->dma, rds_ring->dma_size,
			PCI_DMA_FROMDEVICE);

	skb = buffer->skb;
	if (!skb)
		goto no_skb;

	if (likely(adapter->rx_csum && cksum == STATUS_CKSUM_OK)) {
		adapter->stats.csummed++;
		skb->ip_summed = CHECKSUM_UNNECESSARY;
	} else
		skb->ip_summed = CHECKSUM_NONE;

	skb->dev = adapter->netdev;

	buffer->skb = NULL;
no_skb:
	buffer->state = NETXEN_BUFFER_FREE;
	return skb;
}

924
static struct netxen_rx_buffer *
D
Dhananjay Phadke 已提交
925 926
netxen_process_rcv(struct netxen_adapter *adapter,
		int ring, int index, int length, int cksum, int pkt_offset)
A
Amit S. Kale 已提交
927
{
928
	struct net_device *netdev = adapter->netdev;
929
	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx;
A
Amit S. Kale 已提交
930 931
	struct netxen_rx_buffer *buffer;
	struct sk_buff *skb;
D
Dhananjay Phadke 已提交
932
	struct nx_host_rds_ring *rds_ring = &recv_ctx->rds_rings[ring];
A
Amit S. Kale 已提交
933

934
	if (unlikely(index > rds_ring->num_desc))
935
		return NULL;
936

D
Dhananjay Phadke 已提交
937
	buffer = &rds_ring->rx_buf_arr[index];
A
Amit S. Kale 已提交
938

939 940
	skb = netxen_process_rxbuf(adapter, rds_ring, index, cksum);
	if (!skb)
941
		return buffer;
D
Dhananjay Phadke 已提交
942

D
Dhananjay Phadke 已提交
943 944 945 946
	if (length > rds_ring->skb_size)
		skb_put(skb, rds_ring->skb_size);
	else
		skb_put(skb, length);
947

D
Dhananjay Phadke 已提交
948 949 950

	if (pkt_offset)
		skb_pull(skb, pkt_offset);
951

A
Amit S. Kale 已提交
952 953
	skb->protocol = eth_type_trans(skb, netdev);

D
Dhananjay Phadke 已提交
954
	netif_receive_skb(skb);
955

D
Dhananjay Phadke 已提交
956 957
	adapter->stats.no_rcv++;
	adapter->stats.rxbytes += length;
958 959

	return buffer;
A
Amit S. Kale 已提交
960 961
}

962 963 964
#define netxen_merge_rx_buffers(list, head) \
	do { list_splice_tail_init(list, head); } while (0);

965
int
966
netxen_process_rcv_ring(struct nx_host_sds_ring *sds_ring, int max)
A
Amit S. Kale 已提交
967
{
968 969 970 971
	struct netxen_adapter *adapter = sds_ring->adapter;

	struct list_head *cur;

D
Dhananjay Phadke 已提交
972
	struct status_desc *desc;
973 974 975 976
	struct netxen_rx_buffer *rxbuf;

	u32 consumer = sds_ring->consumer;

D
Dhananjay Phadke 已提交
977
	int count = 0;
978
	u64 sts_data;
979
	int opcode, ring, index, length, cksum, pkt_offset, desc_cnt;
A
Amit S. Kale 已提交
980 981

	while (count < max) {
982
		desc = &sds_ring->desc_head[consumer];
983
		sts_data = le64_to_cpu(desc->status_desc_data[0]);
D
Dhananjay Phadke 已提交
984 985

		if (!(sts_data & STATUS_OWNER_HOST))
A
Amit S. Kale 已提交
986
			break;
987

988
		desc_cnt = netxen_get_sts_desc_cnt(sts_data);
D
Dhananjay Phadke 已提交
989
		ring   = netxen_get_sts_type(sts_data);
990

D
Dhananjay Phadke 已提交
991
		if (ring > RCV_RING_JUMBO)
992
			goto skip;
D
Dhananjay Phadke 已提交
993

994 995
		opcode = netxen_get_sts_opcode(sts_data);

996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
		switch (opcode) {
		case NETXEN_NIC_RXPKT_DESC:
		case NETXEN_OLD_RXPKT_DESC:
			break;
		case NETXEN_NIC_RESPONSE_DESC:
			netxen_handle_fw_message(desc_cnt, consumer, sds_ring);
		default:
			goto skip;
		}

		WARN_ON(desc_cnt > 1);

D
Dhananjay Phadke 已提交
1008 1009 1010 1011 1012
		index  = netxen_get_sts_refhandle(sts_data);
		length = netxen_get_sts_totallength(sts_data);
		cksum  = netxen_get_sts_status(sts_data);
		pkt_offset = netxen_get_sts_pkt_offset(sts_data);

1013
		rxbuf = netxen_process_rcv(adapter, ring, index,
D
Dhananjay Phadke 已提交
1014
				length, cksum, pkt_offset);
1015

1016 1017 1018
		if (rxbuf)
			list_add_tail(&rxbuf->list, &sds_ring->free_list[ring]);

1019 1020 1021 1022 1023 1024 1025
skip:
		for (; desc_cnt > 0; desc_cnt--) {
			desc = &sds_ring->desc_head[consumer];
			desc->status_desc_data[0] =
				cpu_to_le64(STATUS_OWNER_PHANTOM);
			consumer = get_next_index(consumer, sds_ring->num_desc);
		}
A
Amit S. Kale 已提交
1026 1027
		count++;
	}
D
Dhananjay Phadke 已提交
1028

1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
	for (ring = 0; ring < adapter->max_rds_rings; ring++) {
		struct nx_host_rds_ring *rds_ring =
			&adapter->recv_ctx.rds_rings[ring];

		if (!list_empty(&sds_ring->free_list[ring])) {
			list_for_each(cur, &sds_ring->free_list[ring]) {
				rxbuf = list_entry(cur,
						struct netxen_rx_buffer, list);
				netxen_alloc_rx_skb(adapter, rds_ring, rxbuf);
			}
			spin_lock(&rds_ring->lock);
			netxen_merge_rx_buffers(&sds_ring->free_list[ring],
						&rds_ring->free_list);
			spin_unlock(&rds_ring->lock);
		}

		netxen_post_rx_buffers_nodb(adapter, rds_ring);
	}
A
Amit S. Kale 已提交
1047 1048

	if (count) {
1049
		sds_ring->consumer = consumer;
1050
		NXWR32(adapter, sds_ring->crb_sts_consumer, consumer);
A
Amit S. Kale 已提交
1051 1052 1053 1054 1055 1056
	}

	return count;
}

/* Process Command status ring */
D
Dhananjay Phadke 已提交
1057
int netxen_process_cmd_ring(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
1058
{
1059
	u32 sw_consumer, hw_consumer;
1060
	int count = 0, i;
A
Amit S. Kale 已提交
1061
	struct netxen_cmd_buffer *buffer;
1062 1063
	struct pci_dev *pdev = adapter->pdev;
	struct net_device *netdev = adapter->netdev;
A
Amit S. Kale 已提交
1064
	struct netxen_skb_frag *frag;
1065
	int done = 0;
1066
	struct nx_host_tx_ring *tx_ring = &adapter->tx_ring;
A
Amit S. Kale 已提交
1067

1068 1069 1070
	if (!spin_trylock(&adapter->tx_clean_lock))
		return 1;

1071 1072 1073
	sw_consumer = tx_ring->sw_consumer;
	barrier(); /* hw_consumer can change underneath */
	hw_consumer = le32_to_cpu(*(tx_ring->hw_consumer));
A
Amit S. Kale 已提交
1074

1075 1076
	while (sw_consumer != hw_consumer) {
		buffer = &tx_ring->cmd_buf_arr[sw_consumer];
1077 1078
		if (buffer->skb) {
			frag = &buffer->frag_array[0];
A
Amit S. Kale 已提交
1079 1080
			pci_unmap_single(pdev, frag->dma, frag->length,
					 PCI_DMA_TODEVICE);
1081
			frag->dma = 0ULL;
A
Amit S. Kale 已提交
1082 1083 1084 1085
			for (i = 1; i < buffer->frag_count; i++) {
				frag++;	/* Get the next frag */
				pci_unmap_page(pdev, frag->dma, frag->length,
					       PCI_DMA_TODEVICE);
1086
				frag->dma = 0ULL;
A
Amit S. Kale 已提交
1087 1088
			}

1089
			adapter->stats.xmitfinished++;
1090 1091
			dev_kfree_skb_any(buffer->skb);
			buffer->skb = NULL;
A
Amit S. Kale 已提交
1092 1093
		}

1094
		sw_consumer = get_next_index(sw_consumer, tx_ring->num_desc);
1095 1096
		if (++count >= MAX_STATUS_HANDLE)
			break;
A
Amit S. Kale 已提交
1097 1098
	}

1099
	if (count) {
1100
		tx_ring->sw_consumer = sw_consumer;
1101 1102 1103 1104 1105 1106
		smp_mb();
		if (netif_queue_stopped(netdev) && netif_running(netdev)) {
			netif_tx_lock(netdev);
			netif_wake_queue(netdev);
			smp_mb();
			netif_tx_unlock(netdev);
A
Amit S. Kale 已提交
1107 1108
		}
	}
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
	/*
	 * If everything is freed up to consumer then check if the ring is full
	 * If the ring is full then check if more needs to be freed and
	 * schedule the call back again.
	 *
	 * This happens when there are 2 CPUs. One could be freeing and the
	 * other filling it. If the ring is full when we get out of here and
	 * the card has already interrupted the host then the host can miss the
	 * interrupt.
	 *
	 * There is still a possible race condition and the host could miss an
	 * interrupt. The card has to take care of this.
	 */
1122 1123 1124
	barrier(); /* hw_consumer can change underneath */
	hw_consumer = le32_to_cpu(*(tx_ring->hw_consumer));
	done = (sw_consumer == hw_consumer);
1125
	spin_unlock(&adapter->tx_clean_lock);
A
Amit S. Kale 已提交
1126

1127
	return (done);
A
Amit S. Kale 已提交
1128 1129
}

1130
void
1131 1132
netxen_post_rx_buffers(struct netxen_adapter *adapter, u32 ringid,
	struct nx_host_rds_ring *rds_ring)
A
Amit S. Kale 已提交
1133 1134 1135
{
	struct rcv_desc *pdesc;
	struct netxen_rx_buffer *buffer;
1136
	int producer, count = 0;
1137
	netxen_ctx_msg msg = 0;
1138
	struct list_head *head;
A
Amit S. Kale 已提交
1139

D
Dhananjay Phadke 已提交
1140
	producer = rds_ring->producer;
1141

1142 1143
	spin_lock(&rds_ring->lock);
	head = &rds_ring->free_list;
1144 1145
	while (!list_empty(head)) {

1146
		buffer = list_entry(head->next, struct netxen_rx_buffer, list);
1147

1148 1149 1150
		if (!buffer->skb) {
			if (netxen_alloc_rx_skb(adapter, rds_ring, buffer))
				break;
1151 1152 1153
		}

		count++;
1154 1155
		list_del(&buffer->list);

1156
		/* make a rcv descriptor  */
1157
		pdesc = &rds_ring->desc_head[producer];
1158
		pdesc->addr_buffer = cpu_to_le64(buffer->dma);
A
Amit S. Kale 已提交
1159
		pdesc->reference_handle = cpu_to_le16(buffer->ref_handle);
D
Dhananjay Phadke 已提交
1160
		pdesc->buffer_length = cpu_to_le32(rds_ring->dma_size);
1161

1162
		producer = get_next_index(producer, rds_ring->num_desc);
1163
	}
1164
	spin_unlock(&rds_ring->lock);
D
Dhananjay Phadke 已提交
1165

1166
	if (count) {
D
Dhananjay Phadke 已提交
1167
		rds_ring->producer = producer;
1168
		NXWR32(adapter, rds_ring->crb_rcv_producer,
1169
				(producer-1) & (rds_ring->num_desc-1));
D
Dhananjay Phadke 已提交
1170 1171

		if (adapter->fw_major < 4) {
1172 1173 1174
			/*
			 * Write a doorbell msg to tell phanmon of change in
			 * receive ring producer
D
Dhananjay Phadke 已提交
1175
			 * Only for firmware version < 4.0.0
1176 1177 1178 1179
			 */
			netxen_set_msg_peg_id(msg, NETXEN_RCV_PEG_DB_ID);
			netxen_set_msg_privid(msg);
			netxen_set_msg_count(msg,
1180 1181
					     ((producer - 1) &
					      (rds_ring->num_desc - 1)));
1182
			netxen_set_msg_ctxid(msg, adapter->portnum);
1183 1184 1185 1186
			netxen_set_msg_opcode(msg, NETXEN_RCV_PRODUCER(ringid));
			writel(msg,
			       DB_NORMALIZE(adapter,
					    NETXEN_RCV_PRODUCER_OFFSET));
D
Dhananjay Phadke 已提交
1187
		}
1188 1189 1190
	}
}

1191
static void
1192 1193
netxen_post_rx_buffers_nodb(struct netxen_adapter *adapter,
		struct nx_host_rds_ring *rds_ring)
1194 1195 1196
{
	struct rcv_desc *pdesc;
	struct netxen_rx_buffer *buffer;
1197
	int producer, count = 0;
1198
	struct list_head *head;
1199

D
Dhananjay Phadke 已提交
1200
	producer = rds_ring->producer;
1201 1202 1203
	if (!spin_trylock(&rds_ring->lock))
		return;

1204 1205 1206
	head = &rds_ring->free_list;
	while (!list_empty(head)) {

1207
		buffer = list_entry(head->next, struct netxen_rx_buffer, list);
1208

1209 1210 1211
		if (!buffer->skb) {
			if (netxen_alloc_rx_skb(adapter, rds_ring, buffer))
				break;
1212 1213 1214
		}

		count++;
1215 1216
		list_del(&buffer->list);

A
Amit S. Kale 已提交
1217
		/* make a rcv descriptor  */
1218
		pdesc = &rds_ring->desc_head[producer];
A
Amit S. Kale 已提交
1219
		pdesc->reference_handle = cpu_to_le16(buffer->ref_handle);
D
Dhananjay Phadke 已提交
1220
		pdesc->buffer_length = cpu_to_le32(rds_ring->dma_size);
A
Amit S. Kale 已提交
1221
		pdesc->addr_buffer = cpu_to_le64(buffer->dma);
1222

1223
		producer = get_next_index(producer, rds_ring->num_desc);
A
Amit S. Kale 已提交
1224 1225 1226
	}

	if (count) {
D
Dhananjay Phadke 已提交
1227
		rds_ring->producer = producer;
1228
		NXWR32(adapter, rds_ring->crb_rcv_producer,
1229
				(producer - 1) & (rds_ring->num_desc - 1));
A
Amit S. Kale 已提交
1230 1231
			wmb();
	}
1232
	spin_unlock(&rds_ring->lock);
A
Amit S. Kale 已提交
1233 1234 1235 1236 1237
}

void netxen_nic_clear_stats(struct netxen_adapter *adapter)
{
	memset(&adapter->stats, 0, sizeof(adapter->stats));
1238
	return;
A
Amit S. Kale 已提交
1239 1240
}