netxen_nic_init.c 31.4 KB
Newer Older
A
Amit S. Kale 已提交
1 2 3
/*
 * Copyright (C) 2003 - 2006 NetXen, Inc.
 * 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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
 * Contact Information:
 *    info@netxen.com
 * NetXen,
 * 3965 Freedom Circle, Fourth floor,
 * Santa Clara, CA 95054
 *
 *
 * Source file for NIC routines to initialize the Phantom Hardware
 *
 */

#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 {
41 42
	u32 addr;
	u32 data;
A
Amit S. Kale 已提交
43 44 45 46
};

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

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

53 54
#define NETXEN_NIC_XDMA_RESET 0x8000ff

A
Adrian Bunk 已提交
55 56 57
static void netxen_post_rx_buffers_nodb(struct netxen_adapter *adapter,
					uint32_t ctx, uint32_t ringid);

A
Amit S. Kale 已提交
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 106 107
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);
108
	crb_addr_transform(SMB);
109 110
	crb_addr_transform(OCM0);
	crb_addr_transform(I2C0);
A
Amit S. Kale 已提交
111 112 113 114 115 116 117
}

int netxen_init_firmware(struct netxen_adapter *adapter)
{
	u32 state = 0, loops = 0, err = 0;

	/* Window 1 call */
118
	state = adapter->pci_read_normalize(adapter, CRB_CMDPEG_STATE);
A
Amit S. Kale 已提交
119 120 121 122 123

	if (state == PHAN_INITIALIZE_ACK)
		return 0;

	while (state != PHAN_INITIALIZE_COMPLETE && loops < 2000) {
124
		msleep(1);
A
Amit S. Kale 已提交
125
		/* Window 1 call */
126
		state = adapter->pci_read_normalize(adapter, CRB_CMDPEG_STATE);
A
Amit S. Kale 已提交
127 128 129 130 131 132 133 134 135 136

		loops++;
	}
	if (loops >= 2000) {
		printk(KERN_ERR "Cmd Peg initialization not complete:%x.\n",
		       state);
		err = -EIO;
		return err;
	}
	/* Window 1 call */
137 138 139 140 141 142 143 144
	adapter->pci_write_normalize(adapter,
			CRB_NIC_CAPABILITIES_HOST, INTR_SCHEME_PERPORT);
	adapter->pci_write_normalize(adapter,
			CRB_NIC_MSI_MODE_HOST, MSI_MODE_MULTIFUNC);
	adapter->pci_write_normalize(adapter,
			CRB_MPORT_MODE, MPORT_MULTI_FUNCTION_MODE);
	adapter->pci_write_normalize(adapter,
			CRB_CMDPEG_STATE, PHAN_INITIALIZE_ACK);
A
Amit S. Kale 已提交
145 146 147 148

	return err;
}

149
void netxen_release_rx_buffers(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
150
{
151
	struct netxen_recv_context *recv_ctx;
D
Dhananjay Phadke 已提交
152
	struct nx_host_rds_ring *rds_ring;
153 154
	struct netxen_rx_buffer *rx_buf;
	int i, ctxid, ring;
A
Amit S. Kale 已提交
155 156

	for (ctxid = 0; ctxid < MAX_RCV_CTX; ++ctxid) {
157
		recv_ctx = &adapter->recv_ctx[ctxid];
D
Dhananjay Phadke 已提交
158 159 160 161
		for (ring = 0; ring < adapter->max_rds_rings; ring++) {
			rds_ring = &recv_ctx->rds_rings[ring];
			for (i = 0; i < rds_ring->max_rx_desc_count; ++i) {
				rx_buf = &(rds_ring->rx_buf_arr[i]);
162 163 164 165
				if (rx_buf->state == NETXEN_BUFFER_FREE)
					continue;
				pci_unmap_single(adapter->pdev,
						rx_buf->dma,
D
Dhananjay Phadke 已提交
166
						rds_ring->dma_size,
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
						PCI_DMA_FROMDEVICE);
				if (rx_buf->skb != NULL)
					dev_kfree_skb_any(rx_buf->skb);
			}
		}
	}
}

void netxen_release_tx_buffers(struct netxen_adapter *adapter)
{
	struct netxen_cmd_buffer *cmd_buf;
	struct netxen_skb_frag *buffrag;
	int i, j;

	cmd_buf = adapter->cmd_buf_arr;
	for (i = 0; i < adapter->max_tx_desc_count; i++) {
		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;
			}
		}
		/* Free the skb we received in netxen_nic_xmit_frame */
		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 已提交
210
	struct nx_host_rds_ring *rds_ring;
211 212 213 214
	int ctx, ring;

	for (ctx = 0; ctx < MAX_RCV_CTX; ctx++) {
		recv_ctx = &adapter->recv_ctx[ctx];
D
Dhananjay Phadke 已提交
215 216 217 218 219
		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;
220 221 222 223 224 225 226 227 228 229 230
			}
		}
	}
	if (adapter->cmd_buf_arr)
		vfree(adapter->cmd_buf_arr);
	return;
}

int netxen_alloc_sw_resources(struct netxen_adapter *adapter)
{
	struct netxen_recv_context *recv_ctx;
D
Dhananjay Phadke 已提交
231
	struct nx_host_rds_ring *rds_ring;
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
	struct netxen_rx_buffer *rx_buf;
	int ctx, ring, i, num_rx_bufs;

	struct netxen_cmd_buffer *cmd_buf_arr;
	struct net_device *netdev = adapter->netdev;

	cmd_buf_arr = (struct netxen_cmd_buffer *)vmalloc(TX_RINGSIZE);
	if (cmd_buf_arr == NULL) {
		printk(KERN_ERR "%s: Failed to allocate cmd buffer ring\n",
		       netdev->name);
		return -ENOMEM;
	}
	memset(cmd_buf_arr, 0, TX_RINGSIZE);
	adapter->cmd_buf_arr = cmd_buf_arr;

	for (ctx = 0; ctx < MAX_RCV_CTX; ctx++) {
		recv_ctx = &adapter->recv_ctx[ctx];
D
Dhananjay Phadke 已提交
249 250
		for (ring = 0; ring < adapter->max_rds_rings; ring++) {
			rds_ring = &recv_ctx->rds_rings[ring];
251 252
			switch (RCV_DESC_TYPE(ring)) {
			case RCV_DESC_NORMAL:
D
Dhananjay Phadke 已提交
253
				rds_ring->max_rx_desc_count =
254
					adapter->max_rx_desc_count;
D
Dhananjay Phadke 已提交
255
				rds_ring->flags = RCV_DESC_NORMAL;
256 257 258 259 260 261 262 263 264 265
				if (adapter->ahw.cut_through) {
					rds_ring->dma_size =
						NX_CT_DEFAULT_RX_BUF_LEN;
					rds_ring->skb_size =
						NX_CT_DEFAULT_RX_BUF_LEN;
				} else {
					rds_ring->dma_size = RX_DMA_MAP_LEN;
					rds_ring->skb_size =
						MAX_RX_BUFFER_LENGTH;
				}
266 267 268
				break;

			case RCV_DESC_JUMBO:
D
Dhananjay Phadke 已提交
269
				rds_ring->max_rx_desc_count =
270
					adapter->max_jumbo_rx_desc_count;
D
Dhananjay Phadke 已提交
271
				rds_ring->flags = RCV_DESC_JUMBO;
272 273 274 275 276 277
				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;
D
Dhananjay Phadke 已提交
278
				rds_ring->skb_size =
279
					rds_ring->dma_size + NET_IP_ALIGN;
280 281 282
				break;

			case RCV_RING_LRO:
D
Dhananjay Phadke 已提交
283
				rds_ring->max_rx_desc_count =
284
					adapter->max_lro_rx_desc_count;
D
Dhananjay Phadke 已提交
285 286 287
				rds_ring->flags = RCV_DESC_LRO;
				rds_ring->dma_size = RX_LRO_DMA_MAP_LEN;
				rds_ring->skb_size = MAX_RX_LRO_BUFFER_LENGTH;
288 289 290
				break;

			}
D
Dhananjay Phadke 已提交
291
			rds_ring->rx_buf_arr = (struct netxen_rx_buffer *)
292
				vmalloc(RCV_BUFFSIZE);
D
Dhananjay Phadke 已提交
293
			if (rds_ring->rx_buf_arr == NULL) {
294 295 296 297 298 299
				printk(KERN_ERR "%s: Failed to allocate "
					"rx buffer ring %d\n",
					netdev->name, ring);
				/* free whatever was already allocated */
				goto err_out;
			}
D
Dhananjay Phadke 已提交
300
			memset(rds_ring->rx_buf_arr, 0, RCV_BUFFSIZE);
301
			INIT_LIST_HEAD(&rds_ring->free_list);
A
Amit S. Kale 已提交
302 303 304 305
			/*
			 * Now go through all of them, set reference handles
			 * and put them in the queues.
			 */
D
Dhananjay Phadke 已提交
306 307
			num_rx_bufs = rds_ring->max_rx_desc_count;
			rx_buf = rds_ring->rx_buf_arr;
A
Amit S. Kale 已提交
308
			for (i = 0; i < num_rx_bufs; i++) {
309 310
				list_add_tail(&rx_buf->list,
						&rds_ring->free_list);
A
Amit S. Kale 已提交
311 312 313 314 315 316
				rx_buf->ref_handle = i;
				rx_buf->state = NETXEN_BUFFER_FREE;
				rx_buf++;
			}
		}
	}
317 318 319 320 321 322

	return 0;

err_out:
	netxen_free_sw_resources(adapter);
	return -ENOMEM;
A
Amit S. Kale 已提交
323 324 325 326 327 328
}

void netxen_initialize_adapter_ops(struct netxen_adapter *adapter)
{
	switch (adapter->ahw.board_type) {
	case NETXEN_NIC_GBE:
329
		adapter->enable_phy_interrupts =
A
Amit S. Kale 已提交
330
		    netxen_niu_gbe_enable_phy_interrupts;
331
		adapter->disable_phy_interrupts =
A
Amit S. Kale 已提交
332
		    netxen_niu_gbe_disable_phy_interrupts;
333 334 335 336 337
		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;
338
		adapter->init_port = netxen_niu_gbe_init_port;
339
		adapter->stop_port = netxen_niu_disable_gbe_port;
A
Amit S. Kale 已提交
340 341 342
		break;

	case NETXEN_NIC_XGBE:
343
		adapter->enable_phy_interrupts =
A
Amit S. Kale 已提交
344
		    netxen_niu_xgbe_enable_phy_interrupts;
345
		adapter->disable_phy_interrupts =
A
Amit S. Kale 已提交
346
		    netxen_niu_xgbe_disable_phy_interrupts;
347 348 349 350 351
		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 已提交
352 353 354 355 356
		break;

	default:
		break;
	}
357 358 359 360 361

	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 已提交
362 363 364 365 366 367
}

/*
 * netxen_decode_crb_addr(0 - utility to translate from internal Phantom CRB
 * address to external PCI CRB address.
 */
A
Adrian Bunk 已提交
368
static u32 netxen_decode_crb_addr(u32 addr)
A
Amit S. Kale 已提交
369 370
{
	int i;
371
	u32 base_addr, offset, pci_base;
A
Amit S. Kale 已提交
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390

	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);
}

391 392
static long rom_max_timeout = 100;
static long rom_lock_timeout = 10000;
A
Amit S. Kale 已提交
393

A
Adrian Bunk 已提交
394
static int rom_lock(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
{
	int iter;
	u32 done = 0;
	int timeout = 0;

	while (!done) {
		/* acquire semaphore2 from PCI HW block */
		netxen_nic_read_w0(adapter, NETXEN_PCIE_REG(PCIE_SEM2_LOCK),
				   &done);
		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 */
		}
	}
	netxen_nic_reg_write(adapter, NETXEN_ROM_LOCK_ID, ROM_LOCK_DRIVER);
	return 0;
}

A
Adrian Bunk 已提交
424
static int netxen_wait_rom_done(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
425 426 427 428
{
	long timeout = 0;
	long done = 0;

D
Dhananjay Phadke 已提交
429 430
	cond_resched();

A
Amit S. Kale 已提交
431 432 433 434 435 436 437 438 439 440 441 442
	while (done == 0) {
		done = netxen_nic_reg_read(adapter, NETXEN_ROMUSB_GLB_STATUS);
		done &= 2;
		timeout++;
		if (timeout >= rom_max_timeout) {
			printk("Timeout reached  waiting for rom done");
			return -EIO;
		}
	}
	return 0;
}

A
Adrian Bunk 已提交
443
static void netxen_rom_unlock(struct netxen_adapter *adapter)
444 445 446 447 448 449 450 451
{
	u32 val;

	/* release semaphore2 */
	netxen_nic_read_w0(adapter, NETXEN_PCIE_REG(PCIE_SEM2_UNLOCK), &val);

}

A
Adrian Bunk 已提交
452 453
static int do_rom_fast_read(struct netxen_adapter *adapter,
			    int addr, int *valp)
A
Amit S. Kale 已提交
454 455 456
{
	netxen_nic_reg_write(adapter, NETXEN_ROMUSB_ROM_ADDRESS, addr);
	netxen_nic_reg_write(adapter, NETXEN_ROMUSB_ROM_DUMMY_BYTE_CNT, 0);
D
Dhananjay Phadke 已提交
457
	netxen_nic_reg_write(adapter, NETXEN_ROMUSB_ROM_ABYTE_CNT, 3);
A
Amit S. Kale 已提交
458 459 460 461 462 463 464
	netxen_nic_reg_write(adapter, NETXEN_ROMUSB_ROM_INSTR_OPCODE, 0xb);
	if (netxen_wait_rom_done(adapter)) {
		printk("Error waiting for rom done\n");
		return -EIO;
	}
	/* reset abyte_cnt and dummy_byte_cnt */
	netxen_nic_reg_write(adapter, NETXEN_ROMUSB_ROM_ABYTE_CNT, 0);
D
Dhananjay Phadke 已提交
465
	udelay(10);
A
Amit S. Kale 已提交
466 467 468 469 470 471
	netxen_nic_reg_write(adapter, NETXEN_ROMUSB_ROM_DUMMY_BYTE_CNT, 0);

	*valp = netxen_nic_reg_read(adapter, NETXEN_ROMUSB_ROM_RDATA);
	return 0;
}

A
Adrian Bunk 已提交
472 473
static int do_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
				  u8 *bytes, size_t size)
474 475 476 477 478
{
	int addridx;
	int ret = 0;

	for (addridx = addr; addridx < (addr + size); addridx += 4) {
A
Al Viro 已提交
479 480
		int v;
		ret = do_rom_fast_read(adapter, addridx, &v);
481 482
		if (ret != 0)
			break;
A
Al Viro 已提交
483
		*(__le32 *)bytes = cpu_to_le32(v);
484 485 486 487 488 489 490
		bytes += 4;
	}

	return ret;
}

int
491
netxen_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
492 493 494 495 496 497 498 499 500 501 502 503 504 505
				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 已提交
506 507 508 509 510 511 512 513
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);
514 515 516 517
	netxen_rom_unlock(adapter);
	return ret;
}

A
Amit S. Kale 已提交
518 519 520 521 522 523
#define NETXEN_BOARDTYPE		0x4008
#define NETXEN_BOARDNUM 		0x400c
#define NETXEN_CHIPNUM			0x4010

int netxen_pinit_from_rom(struct netxen_adapter *adapter, int verbose)
{
524
	int addr, val;
D
Dhananjay Phadke 已提交
525
	int i, n, init_delay = 0;
A
Amit S. Kale 已提交
526
	struct crb_addr_pair *buf;
D
Dhananjay Phadke 已提交
527
	unsigned offset;
528
	u32 off;
A
Amit S. Kale 已提交
529 530

	/* resetall */
D
Dhananjay Phadke 已提交
531
	rom_lock(adapter);
A
Amit S. Kale 已提交
532
	netxen_crb_writelit_adapter(adapter, NETXEN_ROMUSB_GLB_SW_RESET,
533
				    0xffffffff);
D
Dhananjay Phadke 已提交
534
	netxen_rom_unlock(adapter);
A
Amit S. Kale 已提交
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550

	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");
	}

551 552
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
		if (netxen_rom_fast_read(adapter, 0, &n) != 0 ||
D
Dhananjay Phadke 已提交
553
			(n != 0xcafecafe) ||
554 555 556
			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 已提交
557 558
			return -EIO;
		}
559 560 561 562 563 564 565 566
		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 已提交
567
		}
568 569 570 571 572 573 574 575 576 577 578 579 580
		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 已提交
581

582 583 584 585 586 587 588 589
	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 ||
590 591
		netxen_rom_fast_read(adapter, 8*i + 4*offset + 4, &addr) != 0) {
			kfree(buf);
592
			return -EIO;
593
		}
594 595 596 597 598 599 600 601 602 603 604 605 606 607

		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",
608
					buf[i].addr);
609 610 611 612 613 614 615 616 617 618
			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))
619
				continue;
D
Dhananjay Phadke 已提交
620 621 622 623 624 625 626 627
			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;
628 629 630 631
			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 已提交
632
				continue;
633 634 635 636 637
			if (off == NETXEN_PCIE_REG(PCIE_SETUP_FUNCTION2))
				continue;
			if ((off & 0x0ff00000) == NETXEN_CRB_SMB)
				continue;
		}
A
Amit S. Kale 已提交
638

639 640 641 642 643 644
		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 已提交
645
		init_delay = 1;
646 647 648
		/* 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 已提交
649
			init_delay = 1000;
650
			if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
A
Amit S. Kale 已提交
651
				/* hold xdma in reset also */
652
				buf[i].data = NETXEN_NIC_XDMA_RESET;
D
Dhananjay Phadke 已提交
653
				buf[i].data = 0x8000ff;
A
Amit S. Kale 已提交
654
			}
655
		}
A
Amit S. Kale 已提交
656

657
		adapter->hw_write_wx(adapter, off, &buf[i].data, 4);
A
Amit S. Kale 已提交
658

D
Dhananjay Phadke 已提交
659
		msleep(init_delay);
660 661
	}
	kfree(buf);
A
Amit S. Kale 已提交
662

663
	/* disable_peg_cache_all */
A
Amit S. Kale 已提交
664

665 666 667 668
	/* unreset_net_cache */
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
		adapter->hw_read_wx(adapter,
				NETXEN_ROMUSB_GLB_SW_RESET, &val, 4);
A
Amit S. Kale 已提交
669
		netxen_crb_writelit_adapter(adapter,
670
				NETXEN_ROMUSB_GLB_SW_RESET, (val & 0xffffff0f));
A
Amit S. Kale 已提交
671
	}
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693

	/* p2dn replyCount */
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_D + 0xec, 0x1e);
	/* disable_peg_cache 0 */
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_D + 0x4c, 8);
	/* disable_peg_cache 1 */
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_I + 0x4c, 8);

	/* peg_clr_all */

	/* peg_clr 0 */
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_0 + 0x8, 0);
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_0 + 0xc, 0);
	/* peg_clr 1 */
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_1 + 0x8, 0);
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_1 + 0xc, 0);
	/* peg_clr 2 */
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_2 + 0x8, 0);
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_2 + 0xc, 0);
	/* peg_clr 3 */
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_3 + 0x8, 0);
	netxen_crb_writelit_adapter(adapter, NETXEN_CRB_PEG_NET_3 + 0xc, 0);
A
Amit S. Kale 已提交
694 695 696
	return 0;
}

697 698 699 700 701 702 703
int netxen_initialize_adapter_offload(struct netxen_adapter *adapter)
{
	uint64_t addr;
	uint32_t hi;
	uint32_t lo;

	adapter->dummy_dma.addr =
704
	    pci_alloc_consistent(adapter->pdev,
705 706 707 708
				 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",
709
		       __func__);
710 711 712 713 714 715 716
		return -ENOMEM;
	}

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

717 718
	adapter->pci_write_normalize(adapter, CRB_HOST_DUMMY_BUF_ADDR_HI, hi);
	adapter->pci_write_normalize(adapter, CRB_HOST_DUMMY_BUF_ADDR_LO, lo);
719

720 721 722 723 724
	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) {
		uint32_t temp = 0;
		adapter->hw_write_wx(adapter, CRB_HOST_DUMMY_BUF, &temp, 4);
	}

725 726 727 728 729
	return 0;
}

void netxen_free_adapter_offload(struct netxen_adapter *adapter)
{
D
Dhananjay Phadke 已提交
730 731 732 733
	int i = 100;

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

D
Dhananjay Phadke 已提交
735
	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) {
736 737 738 739 740 741 742
		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 已提交
743
	}
744

D
Dhananjay Phadke 已提交
745 746 747 748 749 750 751 752 753
	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);
754 755 756
	}
}

757
int netxen_phantom_init(struct netxen_adapter *adapter, int pegtune_val)
A
Amit S. Kale 已提交
758 759
{
	u32 val = 0;
760
	int retries = 60;
A
Amit S. Kale 已提交
761

762
	if (!pegtune_val) {
763
		do {
764 765
			val = adapter->pci_read_normalize(adapter,
					CRB_CMDPEG_STATE);
766 767 768 769 770

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

771 772
			msleep(500);

773
		} while (--retries);
774

775
		if (!retries) {
776 777
			pegtune_val = adapter->pci_read_normalize(adapter,
					NETXEN_ROMUSB_GLB_PEGTUNE_DONE);
778 779 780
			printk(KERN_WARNING "netxen_phantom_init: init failed, "
					"pegtune_val=%x\n", pegtune_val);
			return -1;
A
Amit S. Kale 已提交
781 782
		}
	}
783 784

	return 0;
A
Amit S. Kale 已提交
785 786
}

787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
int netxen_receive_peg_ready(struct netxen_adapter *adapter)
{
	u32 val = 0;
	int retries = 2000;

	do {
		val = adapter->pci_read_normalize(adapter, CRB_RCVPEG_STATE);

		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;
}

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
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;
	buffer->lro_current_frags = 0;
	buffer->lro_expected_frags = 0;
	list_add_tail(&buffer->list, &rds_ring->free_list);
	return skb;
}

A
Amit S. Kale 已提交
844 845 846 847 848
/*
 * netxen_process_rcv() send the received packet to the protocol stack.
 * and if the number of receives exceeds RX_BUFFERS_REFILL, then we
 * invoke the routine to send more rx buffers to the Phantom...
 */
A
Adrian Bunk 已提交
849
static void netxen_process_rcv(struct netxen_adapter *adapter, int ctxid,
850
		struct status_desc *desc, struct status_desc *frag_desc)
A
Amit S. Kale 已提交
851
{
852
	struct net_device *netdev = adapter->netdev;
853 854
	u64 sts_data = le64_to_cpu(desc->status_desc_data);
	int index = netxen_get_sts_refhandle(sts_data);
A
Amit S. Kale 已提交
855 856 857
	struct netxen_recv_context *recv_ctx = &(adapter->recv_ctx[ctxid]);
	struct netxen_rx_buffer *buffer;
	struct sk_buff *skb;
858
	u32 length = netxen_get_sts_totallength(sts_data);
A
Amit S. Kale 已提交
859
	u32 desc_ctx;
860
	u16 pkt_offset = 0, cksum;
D
Dhananjay Phadke 已提交
861
	struct nx_host_rds_ring *rds_ring;
A
Amit S. Kale 已提交
862

863
	desc_ctx = netxen_get_sts_type(sts_data);
A
Amit S. Kale 已提交
864 865 866 867 868 869
	if (unlikely(desc_ctx >= NUM_RCV_DESC_RINGS)) {
		printk("%s: %s Bad Rcv descriptor ring\n",
		       netxen_nic_driver_name, netdev->name);
		return;
	}

D
Dhananjay Phadke 已提交
870 871
	rds_ring = &recv_ctx->rds_rings[desc_ctx];
	if (unlikely(index > rds_ring->max_rx_desc_count)) {
872
		DPRINTK(ERR, "Got a buffer index:%x Max is %x\n",
D
Dhananjay Phadke 已提交
873
			index, rds_ring->max_rx_desc_count);
874 875
		return;
	}
D
Dhananjay Phadke 已提交
876
	buffer = &rds_ring->rx_buf_arr[index];
877 878 879 880 881 882 883 884 885
	if (desc_ctx == RCV_DESC_LRO_CTXID) {
		buffer->lro_current_frags++;
		if (netxen_get_sts_desc_lro_last_frag(desc)) {
			buffer->lro_expected_frags =
			    netxen_get_sts_desc_lro_cnt(desc);
			buffer->lro_length = length;
		}
		if (buffer->lro_current_frags != buffer->lro_expected_frags) {
			if (buffer->lro_expected_frags != 0) {
886 887
				printk("LRO: (refhandle:%x) recv frag. "
				       "wait for last. flags: %x expected:%d "
888 889 890 891 892 893 894 895
				       "have:%d\n", index,
				       netxen_get_sts_desc_lro_last_frag(desc),
				       buffer->lro_expected_frags,
				       buffer->lro_current_frags);
			}
			return;
		}
	}
A
Amit S. Kale 已提交
896

897
	cksum = netxen_get_sts_status(sts_data);
A
Amit S. Kale 已提交
898

899 900 901
	skb = netxen_process_rxbuf(adapter, rds_ring, index, cksum);
	if (!skb)
		return;
D
Dhananjay Phadke 已提交
902

903 904 905 906
	if (desc_ctx == RCV_DESC_LRO_CTXID) {
		/* True length was only available on the last pkt */
		skb_put(skb, buffer->lro_length);
	} else {
907 908 909 910 911 912 913 914
		if (length > rds_ring->skb_size)
			skb_put(skb, rds_ring->skb_size);
		else
			skb_put(skb, length);

		pkt_offset = netxen_get_sts_pkt_offset(sts_data);
		if (pkt_offset)
			skb_pull(skb, pkt_offset);
915 916
	}

A
Amit S. Kale 已提交
917 918 919
	skb->protocol = eth_type_trans(skb, netdev);

	/*
920 921
	 * rx buffer chaining is disabled, walk and free
	 * any spurious rx buffer chain.
A
Amit S. Kale 已提交
922
	 */
923 924 925 926 927
	if (frag_desc) {
		u16 i, nr_frags = desc->nr_frags;

		dev_kfree_skb_any(skb);
		for (i = 0; i < nr_frags; i++) {
928
			index = le16_to_cpu(frag_desc->frag_handles[i]);
929 930 931 932 933 934 935 936 937 938 939 940
			skb = netxen_process_rxbuf(adapter,
					rds_ring, index, cksum);
			if (skb)
				dev_kfree_skb_any(skb);
		}
		adapter->stats.rxdropped++;
	} else {
		netif_receive_skb(skb);

		adapter->stats.no_rcv++;
		adapter->stats.rxbytes += length;
	}
A
Amit S. Kale 已提交
941 942 943 944 945 946 947
}

/* Process Receive status ring */
u32 netxen_process_rcv_ring(struct netxen_adapter *adapter, int ctxid, int max)
{
	struct netxen_recv_context *recv_ctx = &(adapter->recv_ctx[ctxid]);
	struct status_desc *desc_head = recv_ctx->rcv_status_desc_head;
948
	struct status_desc *desc, *frag_desc;
A
Amit S. Kale 已提交
949 950
	u32 consumer = recv_ctx->status_rx_consumer;
	int count = 0, ring;
951 952
	u64 sts_data;
	u16 opcode;
A
Amit S. Kale 已提交
953 954 955

	while (count < max) {
		desc = &desc_head[consumer];
A
Al Viro 已提交
956
		if (!(netxen_get_sts_owner(desc) & STATUS_OWNER_HOST)) {
957 958
			DPRINTK(ERR, "desc %p ownedby %x\n", desc,
				netxen_get_sts_owner(desc));
A
Amit S. Kale 已提交
959 960
			break;
		}
961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976

		sts_data = le64_to_cpu(desc->status_desc_data);
		opcode = netxen_get_sts_opcode(sts_data);
		frag_desc = NULL;
		if (opcode == NETXEN_NIC_RXPKT_DESC) {
			if (desc->nr_frags) {
				consumer = get_next_index(consumer,
						adapter->max_rx_desc_count);
				frag_desc = &desc_head[consumer];
				netxen_set_sts_owner(frag_desc,
						STATUS_OWNER_PHANTOM);
			}
		}

		netxen_process_rcv(adapter, ctxid, desc, frag_desc);

A
Al Viro 已提交
977
		netxen_set_sts_owner(desc, STATUS_OWNER_PHANTOM);
978 979 980

		consumer = get_next_index(consumer,
				adapter->max_rx_desc_count);
A
Amit S. Kale 已提交
981 982
		count++;
	}
D
Dhananjay Phadke 已提交
983
	for (ring = 0; ring < adapter->max_rds_rings; ring++)
D
Dhananjay Phadke 已提交
984
		netxen_post_rx_buffers_nodb(adapter, ctxid, ring);
A
Amit S. Kale 已提交
985 986 987 988 989 990

	/* update the consumer index in phantom */
	if (count) {
		recv_ctx->status_rx_consumer = consumer;

		/* Window = 1 */
991 992
		adapter->pci_write_normalize(adapter,
				recv_ctx->crb_sts_consumer, consumer);
A
Amit S. Kale 已提交
993 994 995 996 997 998
	}

	return count;
}

/* Process Command status ring */
D
Dhananjay Phadke 已提交
999
int netxen_process_cmd_ring(struct netxen_adapter *adapter)
A
Amit S. Kale 已提交
1000
{
1001 1002
	u32 last_consumer, consumer;
	int count = 0, i;
A
Amit S. Kale 已提交
1003
	struct netxen_cmd_buffer *buffer;
1004 1005
	struct pci_dev *pdev = adapter->pdev;
	struct net_device *netdev = adapter->netdev;
A
Amit S. Kale 已提交
1006
	struct netxen_skb_frag *frag;
1007
	int done = 0;
A
Amit S. Kale 已提交
1008 1009

	last_consumer = adapter->last_cmd_consumer;
1010
	consumer = le32_to_cpu(*(adapter->cmd_consumer));
A
Amit S. Kale 已提交
1011

1012
	while (last_consumer != consumer) {
A
Amit S. Kale 已提交
1013
		buffer = &adapter->cmd_buf_arr[last_consumer];
1014 1015
		if (buffer->skb) {
			frag = &buffer->frag_array[0];
A
Amit S. Kale 已提交
1016 1017
			pci_unmap_single(pdev, frag->dma, frag->length,
					 PCI_DMA_TODEVICE);
1018
			frag->dma = 0ULL;
A
Amit S. Kale 已提交
1019 1020 1021 1022
			for (i = 1; i < buffer->frag_count; i++) {
				frag++;	/* Get the next frag */
				pci_unmap_page(pdev, frag->dma, frag->length,
					       PCI_DMA_TODEVICE);
1023
				frag->dma = 0ULL;
A
Amit S. Kale 已提交
1024 1025
			}

1026
			adapter->stats.xmitfinished++;
1027 1028
			dev_kfree_skb_any(buffer->skb);
			buffer->skb = NULL;
A
Amit S. Kale 已提交
1029 1030 1031 1032
		}

		last_consumer = get_next_index(last_consumer,
					       adapter->max_tx_desc_count);
1033 1034
		if (++count >= MAX_STATUS_HANDLE)
			break;
A
Amit S. Kale 已提交
1035 1036
	}

1037
	if (count) {
A
Amit S. Kale 已提交
1038
		adapter->last_cmd_consumer = last_consumer;
1039 1040 1041 1042 1043 1044
		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 已提交
1045 1046
		}
	}
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
	/*
	 * 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.
	 */
1060 1061
	consumer = le32_to_cpu(*(adapter->cmd_consumer));
	done = (last_consumer == consumer);
A
Amit S. Kale 已提交
1062

1063
	return (done);
A
Amit S. Kale 已提交
1064 1065 1066 1067 1068 1069 1070
}

/*
 * netxen_post_rx_buffers puts buffer in the Phantom memory
 */
void netxen_post_rx_buffers(struct netxen_adapter *adapter, u32 ctx, u32 ringid)
{
1071
	struct pci_dev *pdev = adapter->pdev;
A
Amit S. Kale 已提交
1072 1073
	struct sk_buff *skb;
	struct netxen_recv_context *recv_ctx = &(adapter->recv_ctx[ctx]);
D
Dhananjay Phadke 已提交
1074
	struct nx_host_rds_ring *rds_ring = NULL;
1075
	uint producer;
A
Amit S. Kale 已提交
1076 1077 1078
	struct rcv_desc *pdesc;
	struct netxen_rx_buffer *buffer;
	int count = 0;
1079 1080
	netxen_ctx_msg msg = 0;
	dma_addr_t dma;
1081
	struct list_head *head;
A
Amit S. Kale 已提交
1082

D
Dhananjay Phadke 已提交
1083
	rds_ring = &recv_ctx->rds_rings[ringid];
A
Amit S. Kale 已提交
1084

D
Dhananjay Phadke 已提交
1085
	producer = rds_ring->producer;
1086 1087
	head = &rds_ring->free_list;

A
Amit S. Kale 已提交
1088
	/* We can start writing rx descriptors into the phantom memory. */
1089 1090
	while (!list_empty(head)) {

D
Dhananjay Phadke 已提交
1091
		skb = dev_alloc_skb(rds_ring->skb_size);
A
Amit S. Kale 已提交
1092 1093 1094
		if (unlikely(!skb)) {
			break;
		}
1095

1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
		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);
			break;
		}

		count++;
1107 1108 1109
		buffer = list_entry(head->next, struct netxen_rx_buffer, list);
		list_del(&buffer->list);

1110 1111 1112
		buffer->skb = skb;
		buffer->state = NETXEN_BUFFER_BUSY;
		buffer->dma = dma;
1113

1114
		/* make a rcv descriptor  */
1115 1116
		pdesc = &rds_ring->desc_head[producer];
		pdesc->addr_buffer = cpu_to_le64(dma);
A
Amit S. Kale 已提交
1117
		pdesc->reference_handle = cpu_to_le16(buffer->ref_handle);
D
Dhananjay Phadke 已提交
1118
		pdesc->buffer_length = cpu_to_le32(rds_ring->dma_size);
1119 1120

		producer = get_next_index(producer, rds_ring->max_rx_desc_count);
1121 1122 1123
	}
	/* if we did allocate buffers, then write the count to Phantom */
	if (count) {
D
Dhananjay Phadke 已提交
1124
		rds_ring->producer = producer;
1125
			/* Window = 1 */
1126
		adapter->pci_write_normalize(adapter,
D
Dhananjay Phadke 已提交
1127 1128 1129 1130
				rds_ring->crb_rcv_producer,
				(producer-1) & (rds_ring->max_rx_desc_count-1));

		if (adapter->fw_major < 4) {
1131 1132 1133
			/*
			 * Write a doorbell msg to tell phanmon of change in
			 * receive ring producer
D
Dhananjay Phadke 已提交
1134
			 * Only for firmware version < 4.0.0
1135 1136 1137 1138 1139
			 */
			netxen_set_msg_peg_id(msg, NETXEN_RCV_PEG_DB_ID);
			netxen_set_msg_privid(msg);
			netxen_set_msg_count(msg,
					     ((producer -
D
Dhananjay Phadke 已提交
1140
					       1) & (rds_ring->
1141
						     max_rx_desc_count - 1)));
1142
			netxen_set_msg_ctxid(msg, adapter->portnum);
1143 1144 1145 1146
			netxen_set_msg_opcode(msg, NETXEN_RCV_PRODUCER(ringid));
			writel(msg,
			       DB_NORMALIZE(adapter,
					    NETXEN_RCV_PRODUCER_OFFSET));
D
Dhananjay Phadke 已提交
1147
		}
1148 1149 1150
	}
}

A
Adrian Bunk 已提交
1151 1152
static void netxen_post_rx_buffers_nodb(struct netxen_adapter *adapter,
					uint32_t ctx, uint32_t ringid)
1153
{
1154
	struct pci_dev *pdev = adapter->pdev;
1155 1156
	struct sk_buff *skb;
	struct netxen_recv_context *recv_ctx = &(adapter->recv_ctx[ctx]);
D
Dhananjay Phadke 已提交
1157
	struct nx_host_rds_ring *rds_ring = NULL;
1158 1159 1160 1161
	u32 producer;
	struct rcv_desc *pdesc;
	struct netxen_rx_buffer *buffer;
	int count = 0;
1162
	struct list_head *head;
1163
	dma_addr_t dma;
1164

D
Dhananjay Phadke 已提交
1165
	rds_ring = &recv_ctx->rds_rings[ringid];
1166

D
Dhananjay Phadke 已提交
1167
	producer = rds_ring->producer;
1168
	head = &rds_ring->free_list;
1169
	/* We can start writing rx descriptors into the phantom memory. */
1170 1171
	while (!list_empty(head)) {

D
Dhananjay Phadke 已提交
1172
		skb = dev_alloc_skb(rds_ring->skb_size);
1173 1174 1175
		if (unlikely(!skb)) {
			break;
		}
1176

1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
		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);
			break;
		}

		count++;
1188 1189 1190
		buffer = list_entry(head->next, struct netxen_rx_buffer, list);
		list_del(&buffer->list);

A
Amit S. Kale 已提交
1191 1192
		buffer->skb = skb;
		buffer->state = NETXEN_BUFFER_BUSY;
1193
		buffer->dma = dma;
1194

A
Amit S. Kale 已提交
1195
		/* make a rcv descriptor  */
1196
		pdesc = &rds_ring->desc_head[producer];
A
Amit S. Kale 已提交
1197
		pdesc->reference_handle = cpu_to_le16(buffer->ref_handle);
D
Dhananjay Phadke 已提交
1198
		pdesc->buffer_length = cpu_to_le32(rds_ring->dma_size);
A
Amit S. Kale 已提交
1199
		pdesc->addr_buffer = cpu_to_le64(buffer->dma);
1200 1201

		producer = get_next_index(producer, rds_ring->max_rx_desc_count);
A
Amit S. Kale 已提交
1202 1203 1204 1205
	}

	/* if we did allocate buffers, then write the count to Phantom */
	if (count) {
D
Dhananjay Phadke 已提交
1206
		rds_ring->producer = producer;
A
Amit S. Kale 已提交
1207
			/* Window = 1 */
1208
		adapter->pci_write_normalize(adapter,
D
Dhananjay Phadke 已提交
1209 1210
			rds_ring->crb_rcv_producer,
				(producer-1) & (rds_ring->max_rx_desc_count-1));
A
Amit S. Kale 已提交
1211 1212 1213 1214 1215 1216 1217
			wmb();
	}
}

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