]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/netxen/netxen_nic.h
netxen: fix link status, link speed
[mirror_ubuntu-bionic-kernel.git] / drivers / net / netxen / netxen_nic.h
CommitLineData
3d396eb1
AK
1/*
2 * Copyright (C) 2003 - 2006 NetXen, Inc.
3 * All rights reserved.
80922fbc 4 *
3d396eb1
AK
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
80922fbc 9 *
3d396eb1
AK
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
80922fbc 14 *
3d396eb1
AK
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 * MA 02111-1307, USA.
80922fbc 19 *
3d396eb1
AK
20 * The full GNU General Public License is included in this distribution
21 * in the file called LICENSE.
80922fbc 22 *
3d396eb1
AK
23 * Contact Information:
24 * info@netxen.com
25 * NetXen,
26 * 3965 Freedom Circle, Fourth floor,
27 * Santa Clara, CA 95054
28 */
29
30#ifndef _NETXEN_NIC_H_
31#define _NETXEN_NIC_H_
32
3d396eb1
AK
33#include <linux/module.h>
34#include <linux/kernel.h>
35#include <linux/types.h>
36#include <linux/compiler.h>
37#include <linux/slab.h>
38#include <linux/delay.h>
39#include <linux/init.h>
40#include <linux/ioport.h>
41#include <linux/pci.h>
42#include <linux/netdevice.h>
43#include <linux/etherdevice.h>
44#include <linux/ip.h>
45#include <linux/in.h>
46#include <linux/tcp.h>
47#include <linux/skbuff.h>
48#include <linux/version.h>
49
50#include <linux/ethtool.h>
51#include <linux/mii.h>
52#include <linux/interrupt.h>
53#include <linux/timer.h>
54
55#include <linux/mm.h>
56#include <linux/mman.h>
42555892 57#include <linux/vmalloc.h>
3d396eb1
AK
58
59#include <asm/system.h>
60#include <asm/io.h>
61#include <asm/byteorder.h>
62#include <asm/uaccess.h>
63#include <asm/pgtable.h>
64
65#include "netxen_nic_hw.h"
66
58735567
DP
67#define _NETXEN_NIC_LINUX_MAJOR 4
68#define _NETXEN_NIC_LINUX_MINOR 0
69#define _NETXEN_NIC_LINUX_SUBVERSION 0
70#define NETXEN_NIC_LINUX_VERSIONID "4.0.0"
71
72#define NETXEN_VERSION_CODE(a, b, c) (((a) << 16) + ((b) << 8) + (c))
27d2ab54 73
0d04761d
MT
74#define NETXEN_NUM_FLASH_SECTORS (64)
75#define NETXEN_FLASH_SECTOR_SIZE (64 * 1024)
76#define NETXEN_FLASH_TOTAL_SIZE (NETXEN_NUM_FLASH_SECTORS \
77 * NETXEN_FLASH_SECTOR_SIZE)
3d396eb1 78
0c25cfe1
LCMT
79#define PHAN_VENDOR_ID 0x4040
80
3d396eb1
AK
81#define RCV_DESC_RINGSIZE \
82 (sizeof(struct rcv_desc) * adapter->max_rx_desc_count)
83#define STATUS_DESC_RINGSIZE \
84 (sizeof(struct status_desc)* adapter->max_rx_desc_count)
ed25ffa1
AK
85#define LRO_DESC_RINGSIZE \
86 (sizeof(rcvDesc_t) * adapter->max_lro_rx_desc_count)
3d396eb1
AK
87#define TX_RINGSIZE \
88 (sizeof(struct netxen_cmd_buffer) * adapter->max_tx_desc_count)
89#define RCV_BUFFSIZE \
48bfd1e0 90 (sizeof(struct netxen_rx_buffer) * rds_ring->max_rx_desc_count)
ba53e6b4 91#define find_diff_among(a,b,range) ((a)<(b)?((b)-(a)):((b)+(range)-(a)))
3d396eb1 92
ed25ffa1
AK
93#define NETXEN_NETDEV_STATUS 0x1
94#define NETXEN_RCV_PRODUCER_OFFSET 0
95#define NETXEN_RCV_PEG_DB_ID 2
96#define NETXEN_HOST_DUMMY_DMA_SIZE 1024
27d2ab54 97#define FLASH_SUCCESS 0
3d396eb1
AK
98
99#define ADDR_IN_WINDOW1(off) \
100 ((off > NETXEN_CRB_PCIX_HOST2) && (off < NETXEN_CRB_MAX)) ? 1 : 0
101
4790654c
JG
102/*
103 * normalize a 64MB crb address to 32MB PCI window
3d396eb1
AK
104 * To use NETXEN_CRB_NORMALIZE, window _must_ be set to 1
105 */
80922fbc
AK
106#define NETXEN_CRB_NORMAL(reg) \
107 ((reg) - NETXEN_CRB_PCIX_HOST2 + NETXEN_CRB_PCIX_HOST)
cb8011ad 108
3d396eb1 109#define NETXEN_CRB_NORMALIZE(adapter, reg) \
cb8011ad
AK
110 pci_base_offset(adapter, NETXEN_CRB_NORMAL(reg))
111
ed25ffa1
AK
112#define DB_NORMALIZE(adapter, off) \
113 (adapter->ahw.db_base + (off))
114
115#define NX_P2_C0 0x24
116#define NX_P2_C1 0x25
e4c93c81
DP
117#define NX_P3_A0 0x30
118#define NX_P3_A2 0x30
119#define NX_P3_B0 0x40
120#define NX_P3_B1 0x41
121
122#define NX_IS_REVISION_P2(REVISION) (REVISION <= NX_P2_C1)
123#define NX_IS_REVISION_P3(REVISION) (REVISION >= NX_P3_A0)
ed25ffa1 124
cb8011ad 125#define FIRST_PAGE_GROUP_START 0
ed25ffa1 126#define FIRST_PAGE_GROUP_END 0x100000
cb8011ad 127
78403a92
MT
128#define SECOND_PAGE_GROUP_START 0x6000000
129#define SECOND_PAGE_GROUP_END 0x68BC000
cb8011ad
AK
130
131#define THIRD_PAGE_GROUP_START 0x70E4000
132#define THIRD_PAGE_GROUP_END 0x8000000
133
134#define FIRST_PAGE_GROUP_SIZE FIRST_PAGE_GROUP_END - FIRST_PAGE_GROUP_START
135#define SECOND_PAGE_GROUP_SIZE SECOND_PAGE_GROUP_END - SECOND_PAGE_GROUP_START
136#define THIRD_PAGE_GROUP_SIZE THIRD_PAGE_GROUP_END - THIRD_PAGE_GROUP_START
3d396eb1 137
e4c93c81
DP
138#define P2_MAX_MTU (8000)
139#define P3_MAX_MTU (9600)
140#define NX_ETHERMTU 1500
141#define NX_MAX_ETHERHDR 32 /* This contains some padding */
142
143#define NX_RX_NORMAL_BUF_MAX_LEN (NX_MAX_ETHERHDR + NX_ETHERMTU)
144#define NX_P2_RX_JUMBO_BUF_MAX_LEN (NX_MAX_ETHERHDR + P2_MAX_MTU)
145#define NX_P3_RX_JUMBO_BUF_MAX_LEN (NX_MAX_ETHERHDR + P3_MAX_MTU)
d9e651bc 146#define NX_CT_DEFAULT_RX_BUF_LEN 2048
e4c93c81 147
ed25ffa1 148#define MAX_RX_BUFFER_LENGTH 1760
bd56c6b1 149#define MAX_RX_JUMBO_BUFFER_LENGTH 8062
ed25ffa1
AK
150#define MAX_RX_LRO_BUFFER_LENGTH ((48*1024)-512)
151#define RX_DMA_MAP_LEN (MAX_RX_BUFFER_LENGTH - 2)
3d396eb1 152#define RX_JUMBO_DMA_MAP_LEN \
ed25ffa1
AK
153 (MAX_RX_JUMBO_BUFFER_LENGTH - 2)
154#define RX_LRO_DMA_MAP_LEN (MAX_RX_LRO_BUFFER_LENGTH - 2)
3d396eb1
AK
155
156/*
157 * Maximum number of ring contexts
158 */
159#define MAX_RING_CTX 1
160
161/* Opcodes to be used with the commands */
e4c93c81
DP
162#define TX_ETHER_PKT 0x01
163#define TX_TCP_PKT 0x02
164#define TX_UDP_PKT 0x03
165#define TX_IP_PKT 0x04
166#define TX_TCP_LSO 0x05
167#define TX_TCP_LSO6 0x06
168#define TX_IPSEC 0x07
169#define TX_IPSEC_CMD 0x0a
170#define TX_TCPV6_PKT 0x0b
171#define TX_UDPV6_PKT 0x0c
3d396eb1
AK
172
173/* The following opcodes are for internal consumption. */
174#define NETXEN_CONTROL_OP 0x10
175#define PEGNET_REQUEST 0x11
176
177#define MAX_NUM_CARDS 4
178
179#define MAX_BUFFERS_PER_CMD 32
180
181/*
182 * Following are the states of the Phantom. Phantom will set them and
183 * Host will read to check if the fields are correct.
184 */
185#define PHAN_INITIALIZE_START 0xff00
186#define PHAN_INITIALIZE_FAILED 0xffff
187#define PHAN_INITIALIZE_COMPLETE 0xff01
188
189/* Host writes the following to notify that it has done the init-handshake */
190#define PHAN_INITIALIZE_ACK 0xf00f
191
ed25ffa1 192#define NUM_RCV_DESC_RINGS 3 /* No of Rcv Descriptor contexts */
3d396eb1
AK
193
194/* descriptor types */
195#define RCV_DESC_NORMAL 0x01
196#define RCV_DESC_JUMBO 0x02
ed25ffa1 197#define RCV_DESC_LRO 0x04
3d396eb1
AK
198#define RCV_DESC_NORMAL_CTXID 0
199#define RCV_DESC_JUMBO_CTXID 1
ed25ffa1 200#define RCV_DESC_LRO_CTXID 2
3d396eb1
AK
201
202#define RCV_DESC_TYPE(ID) \
ed25ffa1
AK
203 ((ID == RCV_DESC_JUMBO_CTXID) \
204 ? RCV_DESC_JUMBO \
205 : ((ID == RCV_DESC_LRO_CTXID) \
206 ? RCV_DESC_LRO : \
207 (RCV_DESC_NORMAL)))
3d396eb1 208
ba53e6b4 209#define MAX_CMD_DESCRIPTORS 4096
bd56c6b1 210#define MAX_RCV_DESCRIPTORS 16384
6c80b18d 211#define MAX_CMD_DESCRIPTORS_HOST (MAX_CMD_DESCRIPTORS / 4)
13ba9c77 212#define MAX_RCV_DESCRIPTORS_1G (MAX_RCV_DESCRIPTORS / 4)
e4c93c81 213#define MAX_RCV_DESCRIPTORS_10G 8192
bd56c6b1
AK
214#define MAX_JUMBO_RCV_DESCRIPTORS 1024
215#define MAX_LRO_RCV_DESCRIPTORS 64
3d396eb1
AK
216#define MAX_RCVSTATUS_DESCRIPTORS MAX_RCV_DESCRIPTORS
217#define MAX_JUMBO_RCV_DESC MAX_JUMBO_RCV_DESCRIPTORS
218#define MAX_RCV_DESC MAX_RCV_DESCRIPTORS
219#define MAX_RCVSTATUS_DESC MAX_RCV_DESCRIPTORS
3d396eb1 220#define MAX_EPG_DESCRIPTORS (MAX_CMD_DESCRIPTORS * 8)
ed25ffa1
AK
221#define NUM_RCV_DESC (MAX_RCV_DESC + MAX_JUMBO_RCV_DESCRIPTORS + \
222 MAX_LRO_RCV_DESCRIPTORS)
3d396eb1
AK
223#define MIN_TX_COUNT 4096
224#define MIN_RX_COUNT 4096
ed25ffa1
AK
225#define NETXEN_CTX_SIGNATURE 0xdee0
226#define NETXEN_RCV_PRODUCER(ringid) (ringid)
3d396eb1
AK
227#define MAX_FRAME_SIZE 0x10000 /* 64K MAX size for LSO */
228
229#define PHAN_PEG_RCV_INITIALIZED 0xff01
230#define PHAN_PEG_RCV_START_INITIALIZE 0xff00
231
232#define get_next_index(index, length) \
233 (((index) + 1) & ((length) - 1))
234
235#define get_index_range(index,length,count) \
236 (((index) + (count)) & ((length) - 1))
237
ed25ffa1 238#define MPORT_SINGLE_FUNCTION_MODE 0x1111
3176ff3e 239#define MPORT_MULTI_FUNCTION_MODE 0x2222
ed25ffa1 240
3176ff3e 241#include "netxen_nic_phan_reg.h"
ed25ffa1
AK
242
243/*
244 * NetXen host-peg signal message structure
245 *
246 * Bit 0-1 : peg_id => 0x2 for tx and 01 for rx
247 * Bit 2 : priv_id => must be 1
248 * Bit 3-17 : count => for doorbell
249 * Bit 18-27 : ctx_id => Context id
250 * Bit 28-31 : opcode
251 */
252
253typedef u32 netxen_ctx_msg;
254
ed25ffa1 255#define netxen_set_msg_peg_id(config_word, val) \
a608ab9c 256 ((config_word) &= ~3, (config_word) |= val & 3)
ed25ffa1 257#define netxen_set_msg_privid(config_word) \
a608ab9c 258 ((config_word) |= 1 << 2)
ed25ffa1 259#define netxen_set_msg_count(config_word, val) \
a608ab9c 260 ((config_word) &= ~(0x7fff<<3), (config_word) |= (val & 0x7fff) << 3)
ed25ffa1 261#define netxen_set_msg_ctxid(config_word, val) \
a608ab9c 262 ((config_word) &= ~(0x3ff<<18), (config_word) |= (val & 0x3ff) << 18)
ed25ffa1 263#define netxen_set_msg_opcode(config_word, val) \
82581174 264 ((config_word) &= ~(0xf<<28), (config_word) |= (val & 0xf) << 28)
ed25ffa1
AK
265
266struct netxen_rcv_context {
a608ab9c
AV
267 __le64 rcv_ring_addr;
268 __le32 rcv_ring_size;
269 __le32 rsrvd;
ed25ffa1
AK
270};
271
272struct netxen_ring_ctx {
273
274 /* one command ring */
a608ab9c
AV
275 __le64 cmd_consumer_offset;
276 __le64 cmd_ring_addr;
277 __le32 cmd_ring_size;
278 __le32 rsrvd;
ed25ffa1
AK
279
280 /* three receive rings */
281 struct netxen_rcv_context rcv_ctx[3];
282
283 /* one status ring */
a608ab9c
AV
284 __le64 sts_ring_addr;
285 __le32 sts_ring_size;
ed25ffa1 286
a608ab9c 287 __le32 ctx_id;
ed25ffa1
AK
288} __attribute__ ((aligned(64)));
289
3d396eb1
AK
290/*
291 * Following data structures describe the descriptors that will be used.
292 * Added fileds of tcpHdrSize and ipHdrSize, The driver needs to do it only when
293 * we are doing LSO (above the 1500 size packet) only.
294 */
295
296/*
297 * The size of reference handle been changed to 16 bits to pass the MSS fields
298 * for the LSO packet
299 */
300
301#define FLAGS_CHECKSUM_ENABLED 0x01
302#define FLAGS_LSO_ENABLED 0x02
303#define FLAGS_IPSEC_SA_ADD 0x04
304#define FLAGS_IPSEC_SA_DELETE 0x08
305#define FLAGS_VLAN_TAGGED 0x10
306
ed25ffa1
AK
307#define netxen_set_cmd_desc_port(cmd_desc, var) \
308 ((cmd_desc)->port_ctxid |= ((var) & 0x0F))
6c80b18d 309#define netxen_set_cmd_desc_ctxid(cmd_desc, var) \
48bfd1e0 310 ((cmd_desc)->port_ctxid |= ((var) << 4 & 0xF0))
3d396eb1 311
ed25ffa1 312#define netxen_set_cmd_desc_flags(cmd_desc, val) \
5dc16268
DP
313 (cmd_desc)->flags_opcode = ((cmd_desc)->flags_opcode & \
314 ~cpu_to_le16(0x7f)) | cpu_to_le16((val) & 0x7f)
ed25ffa1 315#define netxen_set_cmd_desc_opcode(cmd_desc, val) \
5dc16268
DP
316 (cmd_desc)->flags_opcode = ((cmd_desc)->flags_opcode & \
317 ~cpu_to_le16((u16)0x3f << 7)) | cpu_to_le16(((val) & 0x3f) << 7)
ed25ffa1
AK
318
319#define netxen_set_cmd_desc_num_of_buff(cmd_desc, val) \
5dc16268
DP
320 (cmd_desc)->num_of_buffers_total_length = \
321 ((cmd_desc)->num_of_buffers_total_length & \
322 ~cpu_to_le32(0xff)) | cpu_to_le32((val) & 0xff)
ed25ffa1 323#define netxen_set_cmd_desc_totallength(cmd_desc, val) \
5dc16268
DP
324 (cmd_desc)->num_of_buffers_total_length = \
325 ((cmd_desc)->num_of_buffers_total_length & \
326 ~cpu_to_le32((u32)0xffffff << 8)) | \
327 cpu_to_le32(((val) & 0xffffff) << 8)
ed25ffa1
AK
328
329#define netxen_get_cmd_desc_opcode(cmd_desc) \
5dc16268 330 ((le16_to_cpu((cmd_desc)->flags_opcode) >> 7) & 0x003f)
ed25ffa1 331#define netxen_get_cmd_desc_totallength(cmd_desc) \
5dc16268 332 ((le32_to_cpu((cmd_desc)->num_of_buffers_total_length) >> 8) & 0xffffff)
3d396eb1
AK
333
334struct cmd_desc_type0 {
ed25ffa1
AK
335 u8 tcp_hdr_offset; /* For LSO only */
336 u8 ip_hdr_offset; /* For LSO only */
337 /* Bit pattern: 0-6 flags, 7-12 opcode, 13-15 unused */
a608ab9c 338 __le16 flags_opcode;
ed25ffa1
AK
339 /* Bit pattern: 0-7 total number of segments,
340 8-31 Total size of the packet */
a608ab9c 341 __le32 num_of_buffers_total_length;
3d396eb1
AK
342 union {
343 struct {
a608ab9c
AV
344 __le32 addr_low_part2;
345 __le32 addr_high_part2;
3d396eb1 346 };
a608ab9c 347 __le64 addr_buffer2;
3d396eb1
AK
348 };
349
a608ab9c
AV
350 __le16 reference_handle; /* changed to u16 to add mss */
351 __le16 mss; /* passed by NDIS_PACKET for LSO */
3d396eb1
AK
352 /* Bit pattern 0-3 port, 0-3 ctx id */
353 u8 port_ctxid;
354 u8 total_hdr_length; /* LSO only : MAC+IP+TCP Hdr size */
a608ab9c 355 __le16 conn_id; /* IPSec offoad only */
3d396eb1
AK
356
357 union {
358 struct {
a608ab9c
AV
359 __le32 addr_low_part3;
360 __le32 addr_high_part3;
3d396eb1 361 };
a608ab9c 362 __le64 addr_buffer3;
3d396eb1 363 };
3d396eb1
AK
364 union {
365 struct {
a608ab9c
AV
366 __le32 addr_low_part1;
367 __le32 addr_high_part1;
3d396eb1 368 };
a608ab9c 369 __le64 addr_buffer1;
3d396eb1
AK
370 };
371
a608ab9c
AV
372 __le16 buffer1_length;
373 __le16 buffer2_length;
374 __le16 buffer3_length;
375 __le16 buffer4_length;
3d396eb1
AK
376
377 union {
378 struct {
a608ab9c
AV
379 __le32 addr_low_part4;
380 __le32 addr_high_part4;
3d396eb1 381 };
a608ab9c 382 __le64 addr_buffer4;
3d396eb1
AK
383 };
384
a608ab9c 385 __le64 unused;
ed25ffa1 386
3d396eb1
AK
387} __attribute__ ((aligned(64)));
388
389/* Note: sizeof(rcv_desc) should always be a mutliple of 2 */
390struct rcv_desc {
a608ab9c
AV
391 __le16 reference_handle;
392 __le16 reserved;
393 __le32 buffer_length; /* allocated buffer length (usually 2K) */
394 __le64 addr_buffer;
3d396eb1
AK
395};
396
397/* opcode field in status_desc */
d9e651bc
DP
398#define NETXEN_NIC_RXPKT_DESC 0x04
399#define NETXEN_OLD_RXPKT_DESC 0x3f
3d396eb1
AK
400
401/* for status field in status_desc */
402#define STATUS_NEED_CKSUM (1)
403#define STATUS_CKSUM_OK (2)
404
405/* owner bits of status_desc */
406#define STATUS_OWNER_HOST (0x1)
407#define STATUS_OWNER_PHANTOM (0x2)
408
409#define NETXEN_PROT_IP (1)
410#define NETXEN_PROT_UNKNOWN (0)
411
412/* Note: sizeof(status_desc) should always be a mutliple of 2 */
ed25ffa1
AK
413
414#define netxen_get_sts_desc_lro_cnt(status_desc) \
415 ((status_desc)->lro & 0x7F)
416#define netxen_get_sts_desc_lro_last_frag(status_desc) \
417 (((status_desc)->lro & 0x80) >> 7)
418
5dc16268
DP
419#define netxen_get_sts_port(sts_data) \
420 ((sts_data) & 0x0F)
421#define netxen_get_sts_status(sts_data) \
422 (((sts_data) >> 4) & 0x0F)
423#define netxen_get_sts_type(sts_data) \
424 (((sts_data) >> 8) & 0x0F)
425#define netxen_get_sts_totallength(sts_data) \
426 (((sts_data) >> 12) & 0xFFFF)
427#define netxen_get_sts_refhandle(sts_data) \
428 (((sts_data) >> 28) & 0xFFFF)
429#define netxen_get_sts_prot(sts_data) \
430 (((sts_data) >> 44) & 0x0F)
d9e651bc
DP
431#define netxen_get_sts_pkt_offset(sts_data) \
432 (((sts_data) >> 48) & 0x1F)
5dc16268
DP
433#define netxen_get_sts_opcode(sts_data) \
434 (((sts_data) >> 58) & 0x03F)
435
ed25ffa1 436#define netxen_get_sts_owner(status_desc) \
a608ab9c 437 ((le64_to_cpu((status_desc)->status_desc_data) >> 56) & 0x03)
5dc16268
DP
438#define netxen_set_sts_owner(status_desc, val) { \
439 (status_desc)->status_desc_data = \
440 ((status_desc)->status_desc_data & \
441 ~cpu_to_le64(0x3ULL << 56)) | \
442 cpu_to_le64((u64)((val) & 0x3) << 56); \
443}
3d396eb1
AK
444
445struct status_desc {
ed25ffa1 446 /* Bit pattern: 0-3 port, 4-7 status, 8-11 type, 12-27 total_length
d9e651bc 447 28-43 reference_handle, 44-47 protocol, 48-52 pkt_offset
ed25ffa1
AK
448 53-55 desc_cnt, 56-57 owner, 58-63 opcode
449 */
a608ab9c 450 __le64 status_desc_data;
d9e651bc
DP
451 union {
452 struct {
453 __le32 hash_value;
454 u8 hash_type;
455 u8 msg_type;
456 u8 unused;
457 union {
458 /* Bit pattern: 0-6 lro_count indicates frag
459 * sequence, 7 last_frag indicates last frag
460 */
461 u8 lro;
462
463 /* chained buffers */
464 u8 nr_frags;
465 };
466 };
467 struct {
468 __le16 frag_handles[4];
469 };
470 };
6c80b18d 471} __attribute__ ((aligned(16)));
3d396eb1
AK
472
473enum {
474 NETXEN_RCV_PEG_0 = 0,
475 NETXEN_RCV_PEG_1
476};
477/* The version of the main data structure */
478#define NETXEN_BDINFO_VERSION 1
479
480/* Magic number to let user know flash is programmed */
481#define NETXEN_BDINFO_MAGIC 0x12345678
482
483/* Max number of Gig ports on a Phantom board */
484#define NETXEN_MAX_PORTS 4
485
486typedef enum {
487 NETXEN_BRDTYPE_P1_BD = 0x0000,
488 NETXEN_BRDTYPE_P1_SB = 0x0001,
489 NETXEN_BRDTYPE_P1_SMAX = 0x0002,
490 NETXEN_BRDTYPE_P1_SOCK = 0x0003,
491
492 NETXEN_BRDTYPE_P2_SOCK_31 = 0x0008,
493 NETXEN_BRDTYPE_P2_SOCK_35 = 0x0009,
494 NETXEN_BRDTYPE_P2_SB35_4G = 0x000a,
495 NETXEN_BRDTYPE_P2_SB31_10G = 0x000b,
496 NETXEN_BRDTYPE_P2_SB31_2G = 0x000c,
497
498 NETXEN_BRDTYPE_P2_SB31_10G_IMEZ = 0x000d,
499 NETXEN_BRDTYPE_P2_SB31_10G_HMEZ = 0x000e,
e4c93c81
DP
500 NETXEN_BRDTYPE_P2_SB31_10G_CX4 = 0x000f,
501
502 NETXEN_BRDTYPE_P3_REF_QG = 0x0021,
503 NETXEN_BRDTYPE_P3_HMEZ = 0x0022,
504 NETXEN_BRDTYPE_P3_10G_CX4_LP = 0x0023,
505 NETXEN_BRDTYPE_P3_4_GB = 0x0024,
506 NETXEN_BRDTYPE_P3_IMEZ = 0x0025,
507 NETXEN_BRDTYPE_P3_10G_SFP_PLUS = 0x0026,
508 NETXEN_BRDTYPE_P3_10000_BASE_T = 0x0027,
509 NETXEN_BRDTYPE_P3_XG_LOM = 0x0028,
510 NETXEN_BRDTYPE_P3_4_GB_MM = 0x0029,
511 NETXEN_BRDTYPE_P3_10G_CX4 = 0x0031,
512 NETXEN_BRDTYPE_P3_10G_XFP = 0x0032
513
3d396eb1
AK
514} netxen_brdtype_t;
515
516typedef enum {
517 NETXEN_BRDMFG_INVENTEC = 1
518} netxen_brdmfg;
519
520typedef enum {
521 MEM_ORG_128Mbx4 = 0x0, /* DDR1 only */
522 MEM_ORG_128Mbx8 = 0x1, /* DDR1 only */
523 MEM_ORG_128Mbx16 = 0x2, /* DDR1 only */
524 MEM_ORG_256Mbx4 = 0x3,
525 MEM_ORG_256Mbx8 = 0x4,
526 MEM_ORG_256Mbx16 = 0x5,
527 MEM_ORG_512Mbx4 = 0x6,
528 MEM_ORG_512Mbx8 = 0x7,
529 MEM_ORG_512Mbx16 = 0x8,
530 MEM_ORG_1Gbx4 = 0x9,
531 MEM_ORG_1Gbx8 = 0xa,
532 MEM_ORG_1Gbx16 = 0xb,
533 MEM_ORG_2Gbx4 = 0xc,
534 MEM_ORG_2Gbx8 = 0xd,
535 MEM_ORG_2Gbx16 = 0xe,
536 MEM_ORG_128Mbx32 = 0x10002, /* GDDR only */
537 MEM_ORG_256Mbx32 = 0x10005 /* GDDR only */
538} netxen_mn_mem_org_t;
539
540typedef enum {
541 MEM_ORG_512Kx36 = 0x0,
542 MEM_ORG_1Mx36 = 0x1,
543 MEM_ORG_2Mx36 = 0x2
544} netxen_sn_mem_org_t;
545
546typedef enum {
547 MEM_DEPTH_4MB = 0x1,
548 MEM_DEPTH_8MB = 0x2,
549 MEM_DEPTH_16MB = 0x3,
550 MEM_DEPTH_32MB = 0x4,
551 MEM_DEPTH_64MB = 0x5,
552 MEM_DEPTH_128MB = 0x6,
553 MEM_DEPTH_256MB = 0x7,
554 MEM_DEPTH_512MB = 0x8,
555 MEM_DEPTH_1GB = 0x9,
556 MEM_DEPTH_2GB = 0xa,
557 MEM_DEPTH_4GB = 0xb,
558 MEM_DEPTH_8GB = 0xc,
559 MEM_DEPTH_16GB = 0xd,
560 MEM_DEPTH_32GB = 0xe
561} netxen_mem_depth_t;
562
563struct netxen_board_info {
564 u32 header_version;
565
566 u32 board_mfg;
567 u32 board_type;
568 u32 board_num;
569 u32 chip_id;
570 u32 chip_minor;
571 u32 chip_major;
572 u32 chip_pkg;
573 u32 chip_lot;
574
575 u32 port_mask; /* available niu ports */
576 u32 peg_mask; /* available pegs */
577 u32 icache_ok; /* can we run with icache? */
578 u32 dcache_ok; /* can we run with dcache? */
579 u32 casper_ok;
580
581 u32 mac_addr_lo_0;
582 u32 mac_addr_lo_1;
583 u32 mac_addr_lo_2;
584 u32 mac_addr_lo_3;
585
586 /* MN-related config */
587 u32 mn_sync_mode; /* enable/ sync shift cclk/ sync shift mclk */
588 u32 mn_sync_shift_cclk;
589 u32 mn_sync_shift_mclk;
590 u32 mn_wb_en;
591 u32 mn_crystal_freq; /* in MHz */
592 u32 mn_speed; /* in MHz */
593 u32 mn_org;
594 u32 mn_depth;
595 u32 mn_ranks_0; /* ranks per slot */
596 u32 mn_ranks_1; /* ranks per slot */
597 u32 mn_rd_latency_0;
598 u32 mn_rd_latency_1;
599 u32 mn_rd_latency_2;
600 u32 mn_rd_latency_3;
601 u32 mn_rd_latency_4;
602 u32 mn_rd_latency_5;
603 u32 mn_rd_latency_6;
604 u32 mn_rd_latency_7;
605 u32 mn_rd_latency_8;
606 u32 mn_dll_val[18];
607 u32 mn_mode_reg; /* MIU DDR Mode Register */
608 u32 mn_ext_mode_reg; /* MIU DDR Extended Mode Register */
609 u32 mn_timing_0; /* MIU Memory Control Timing Rgister */
610 u32 mn_timing_1; /* MIU Extended Memory Ctrl Timing Register */
611 u32 mn_timing_2; /* MIU Extended Memory Ctrl Timing2 Register */
612
613 /* SN-related config */
614 u32 sn_sync_mode; /* enable/ sync shift cclk / sync shift mclk */
615 u32 sn_pt_mode; /* pass through mode */
616 u32 sn_ecc_en;
617 u32 sn_wb_en;
618 u32 sn_crystal_freq;
619 u32 sn_speed;
620 u32 sn_org;
621 u32 sn_depth;
622 u32 sn_dll_tap;
623 u32 sn_rd_latency;
624
625 u32 mac_addr_hi_0;
626 u32 mac_addr_hi_1;
627 u32 mac_addr_hi_2;
628 u32 mac_addr_hi_3;
629
630 u32 magic; /* indicates flash has been initialized */
631
632 u32 mn_rdimm;
633 u32 mn_dll_override;
634
635};
636
637#define FLASH_NUM_PORTS (4)
638
639struct netxen_flash_mac_addr {
640 u32 flash_addr[32];
641};
642
643struct netxen_user_old_info {
644 u8 flash_md5[16];
645 u8 crbinit_md5[16];
646 u8 brdcfg_md5[16];
647 /* bootloader */
648 u32 bootld_version;
649 u32 bootld_size;
650 u8 bootld_md5[16];
651 /* image */
652 u32 image_version;
653 u32 image_size;
654 u8 image_md5[16];
655 /* primary image status */
656 u32 primary_status;
657 u32 secondary_present;
658
659 /* MAC address , 4 ports */
660 struct netxen_flash_mac_addr mac_addr[FLASH_NUM_PORTS];
661};
662#define FLASH_NUM_MAC_PER_PORT 32
663struct netxen_user_info {
664 u8 flash_md5[16 * 64];
665 /* bootloader */
666 u32 bootld_version;
667 u32 bootld_size;
668 /* image */
669 u32 image_version;
670 u32 image_size;
671 /* primary image status */
672 u32 primary_status;
673 u32 secondary_present;
674
675 /* MAC address , 4 ports, 32 address per port */
676 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
677 u32 sub_sys_id;
678 u8 serial_num[32];
679
680 /* Any user defined data */
681};
682
683/*
684 * Flash Layout - new format.
685 */
686struct netxen_new_user_info {
687 u8 flash_md5[16 * 64];
688 /* bootloader */
689 u32 bootld_version;
690 u32 bootld_size;
691 /* image */
692 u32 image_version;
693 u32 image_size;
694 /* primary image status */
695 u32 primary_status;
696 u32 secondary_present;
697
698 /* MAC address , 4 ports, 32 address per port */
699 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
700 u32 sub_sys_id;
701 u8 serial_num[32];
702
703 /* Any user defined data */
704};
705
706#define SECONDARY_IMAGE_PRESENT 0xb3b4b5b6
707#define SECONDARY_IMAGE_ABSENT 0xffffffff
708#define PRIMARY_IMAGE_GOOD 0x5a5a5a5a
709#define PRIMARY_IMAGE_BAD 0xffffffff
710
711/* Flash memory map */
712typedef enum {
0d04761d
MT
713 NETXEN_CRBINIT_START = 0, /* Crbinit section */
714 NETXEN_BRDCFG_START = 0x4000, /* board config */
715 NETXEN_INITCODE_START = 0x6000, /* pegtune code */
716 NETXEN_BOOTLD_START = 0x10000, /* bootld */
717 NETXEN_IMAGE_START = 0x43000, /* compressed image */
718 NETXEN_SECONDARY_START = 0x200000, /* backup images */
719 NETXEN_PXE_START = 0x3E0000, /* user defined region */
720 NETXEN_USER_START = 0x3E8000, /* User defined region for new boards */
721 NETXEN_FIXED_START = 0x3F0000 /* backup of crbinit */
3d396eb1
AK
722} netxen_flash_map_t;
723
0d04761d
MT
724#define NETXEN_USER_START_OLD NETXEN_PXE_START /* for backward compatibility */
725
726#define NETXEN_FLASH_START (NETXEN_CRBINIT_START)
727#define NETXEN_INIT_SECTOR (0)
728#define NETXEN_PRIMARY_START (NETXEN_BOOTLD_START)
729#define NETXEN_FLASH_CRBINIT_SIZE (0x4000)
730#define NETXEN_FLASH_BRDCFG_SIZE (sizeof(struct netxen_board_info))
731#define NETXEN_FLASH_USER_SIZE (sizeof(struct netxen_user_info)/sizeof(u32))
732#define NETXEN_FLASH_SECONDARY_SIZE (NETXEN_USER_START-NETXEN_SECONDARY_START)
733#define NETXEN_NUM_PRIMARY_SECTORS (0x20)
734#define NETXEN_NUM_CONFIG_SECTORS (1)
ed25ffa1
AK
735#define PFX "NetXen: "
736extern char netxen_nic_driver_name[];
3d396eb1
AK
737
738/* Note: Make sure to not call this before adapter->port is valid */
739#if !defined(NETXEN_DEBUG)
740#define DPRINTK(klevel, fmt, args...) do { \
741 } while (0)
742#else
743#define DPRINTK(klevel, fmt, args...) do { \
744 printk(KERN_##klevel PFX "%s: %s: " fmt, __FUNCTION__,\
3176ff3e
MT
745 (adapter != NULL && adapter->netdev != NULL) ? \
746 adapter->netdev->name : NULL, \
3d396eb1
AK
747 ## args); } while(0)
748#endif
749
750/* Number of status descriptors to handle per interrupt */
751#define MAX_STATUS_HANDLE (128)
752
753/*
754 * netxen_skb_frag{} is to contain mapping info for each SG list. This
755 * has to be freed when DMA is complete. This is part of netxen_tx_buffer{}.
756 */
757struct netxen_skb_frag {
758 u64 dma;
759 u32 length;
760};
761
6c80b18d
MT
762#define _netxen_set_bits(config_word, start, bits, val) {\
763 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start));\
764 unsigned long long __tvalue = (val); \
765 (config_word) &= ~__tmask; \
766 (config_word) |= (((__tvalue) << (start)) & __tmask); \
767}
4790654c 768
6c80b18d
MT
769#define _netxen_clear_bits(config_word, start, bits) {\
770 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start)); \
771 (config_word) &= ~__tmask; \
4790654c 772}
6c80b18d 773
3d396eb1
AK
774/* Following defines are for the state of the buffers */
775#define NETXEN_BUFFER_FREE 0
776#define NETXEN_BUFFER_BUSY 1
777
778/*
779 * There will be one netxen_buffer per skb packet. These will be
780 * used to save the dma info for pci_unmap_page()
781 */
782struct netxen_cmd_buffer {
783 struct sk_buff *skb;
784 struct netxen_skb_frag frag_array[MAX_BUFFERS_PER_CMD + 1];
785 u32 total_length;
786 u32 mss;
787 u16 port;
788 u8 cmd;
789 u8 frag_count;
790 unsigned long time_stamp;
791 u32 state;
3d396eb1
AK
792};
793
794/* In rx_buffer, we do not need multiple fragments as is a single buffer */
795struct netxen_rx_buffer {
d9e651bc 796 struct list_head list;
3d396eb1
AK
797 struct sk_buff *skb;
798 u64 dma;
799 u16 ref_handle;
800 u16 state;
ed25ffa1
AK
801 u32 lro_expected_frags;
802 u32 lro_current_frags;
803 u32 lro_length;
3d396eb1
AK
804};
805
806/* Board types */
807#define NETXEN_NIC_GBE 0x01
808#define NETXEN_NIC_XGBE 0x02
809
810/*
811 * One hardware_context{} per adapter
812 * contains interrupt info as well shared hardware info.
813 */
814struct netxen_hardware_context {
cb8011ad
AK
815 void __iomem *pci_base0;
816 void __iomem *pci_base1;
817 void __iomem *pci_base2;
6c80b18d
MT
818 unsigned long first_page_group_end;
819 unsigned long first_page_group_start;
ed25ffa1
AK
820 void __iomem *db_base;
821 unsigned long db_len;
3ce06a32
DP
822 unsigned long pci_len0;
823
2956640d 824 u8 cut_through;
3ce06a32
DP
825 int qdr_sn_window;
826 int ddr_mn_window;
827 unsigned long mn_win_crb;
828 unsigned long ms_win_crb;
cb8011ad 829
3d396eb1
AK
830 u8 revision_id;
831 u16 board_type;
3d396eb1 832 struct netxen_board_info boardcfg;
a97342f9 833 u32 linkup;
3d396eb1
AK
834 /* Address of cmd ring in Phantom */
835 struct cmd_desc_type0 *cmd_desc_head;
836 dma_addr_t cmd_desc_phys_addr;
837 struct netxen_adapter *adapter;
13ba9c77 838 int pci_func;
3d396eb1
AK
839};
840
ed25ffa1
AK
841#define RCV_RING_LRO RCV_DESC_LRO
842
3d396eb1
AK
843#define MINIMUM_ETHERNET_FRAME_SIZE 64 /* With FCS */
844#define ETHERNET_FCS_SIZE 4
845
846struct netxen_adapter_stats {
3176ff3e
MT
847 u64 rcvdbadskb;
848 u64 xmitcalled;
849 u64 xmitedframes;
850 u64 xmitfinished;
851 u64 badskblen;
852 u64 nocmddescriptor;
853 u64 polled;
d1847a72 854 u64 rxdropped;
3176ff3e 855 u64 txdropped;
3176ff3e
MT
856 u64 csummed;
857 u64 no_rcv;
858 u64 rxbytes;
859 u64 txbytes;
860 u64 ints;
3d396eb1
AK
861};
862
863/*
864 * Rcv Descriptor Context. One such per Rcv Descriptor. There may
865 * be one Rcv Descriptor for normal packets, one for jumbo and may be others.
866 */
48bfd1e0 867struct nx_host_rds_ring {
3d396eb1
AK
868 u32 flags;
869 u32 producer;
3d396eb1 870 dma_addr_t phys_addr;
7830b22c 871 u32 crb_rcv_producer; /* reg offset */
3d396eb1
AK
872 struct rcv_desc *desc_head; /* address of rx ring in Phantom */
873 u32 max_rx_desc_count;
874 u32 dma_size;
875 u32 skb_size;
876 struct netxen_rx_buffer *rx_buf_arr; /* rx buffers for receive */
d9e651bc 877 struct list_head free_list;
3d396eb1
AK
878 int begin_alloc;
879};
880
881/*
882 * Receive context. There is one such structure per instance of the
883 * receive processing. Any state information that is relevant to
884 * the receive, and is must be in this structure. The global data may be
885 * present elsewhere.
886 */
887struct netxen_recv_context {
48bfd1e0
DP
888 u32 state;
889 u16 context_id;
890 u16 virt_port;
891
892 struct nx_host_rds_ring rds_rings[NUM_RCV_DESC_RINGS];
3d396eb1 893 u32 status_rx_consumer;
7830b22c 894 u32 crb_sts_consumer; /* reg offset */
3d396eb1
AK
895 dma_addr_t rcv_status_desc_phys_addr;
896 struct status_desc *rcv_status_desc_head;
897};
898
48bfd1e0
DP
899/* New HW context creation */
900
901#define NX_OS_CRB_RETRY_COUNT 4000
902#define NX_CDRP_SIGNATURE_MAKE(pcifn, version) \
903 (((pcifn) & 0xff) | (((version) & 0xff) << 8) | (0xcafe << 16))
904
905#define NX_CDRP_CLEAR 0x00000000
906#define NX_CDRP_CMD_BIT 0x80000000
907
908/*
909 * All responses must have the NX_CDRP_CMD_BIT cleared
910 * in the crb NX_CDRP_CRB_OFFSET.
911 */
912#define NX_CDRP_FORM_RSP(rsp) (rsp)
913#define NX_CDRP_IS_RSP(rsp) (((rsp) & NX_CDRP_CMD_BIT) == 0)
914
915#define NX_CDRP_RSP_OK 0x00000001
916#define NX_CDRP_RSP_FAIL 0x00000002
917#define NX_CDRP_RSP_TIMEOUT 0x00000003
918
919/*
920 * All commands must have the NX_CDRP_CMD_BIT set in
921 * the crb NX_CDRP_CRB_OFFSET.
922 */
923#define NX_CDRP_FORM_CMD(cmd) (NX_CDRP_CMD_BIT | (cmd))
924#define NX_CDRP_IS_CMD(cmd) (((cmd) & NX_CDRP_CMD_BIT) != 0)
925
926#define NX_CDRP_CMD_SUBMIT_CAPABILITIES 0x00000001
927#define NX_CDRP_CMD_READ_MAX_RDS_PER_CTX 0x00000002
928#define NX_CDRP_CMD_READ_MAX_SDS_PER_CTX 0x00000003
929#define NX_CDRP_CMD_READ_MAX_RULES_PER_CTX 0x00000004
930#define NX_CDRP_CMD_READ_MAX_RX_CTX 0x00000005
931#define NX_CDRP_CMD_READ_MAX_TX_CTX 0x00000006
932#define NX_CDRP_CMD_CREATE_RX_CTX 0x00000007
933#define NX_CDRP_CMD_DESTROY_RX_CTX 0x00000008
934#define NX_CDRP_CMD_CREATE_TX_CTX 0x00000009
935#define NX_CDRP_CMD_DESTROY_TX_CTX 0x0000000a
936#define NX_CDRP_CMD_SETUP_STATISTICS 0x0000000e
937#define NX_CDRP_CMD_GET_STATISTICS 0x0000000f
938#define NX_CDRP_CMD_DELETE_STATISTICS 0x00000010
939#define NX_CDRP_CMD_SET_MTU 0x00000012
940#define NX_CDRP_CMD_MAX 0x00000013
941
942#define NX_RCODE_SUCCESS 0
943#define NX_RCODE_NO_HOST_MEM 1
944#define NX_RCODE_NO_HOST_RESOURCE 2
945#define NX_RCODE_NO_CARD_CRB 3
946#define NX_RCODE_NO_CARD_MEM 4
947#define NX_RCODE_NO_CARD_RESOURCE 5
948#define NX_RCODE_INVALID_ARGS 6
949#define NX_RCODE_INVALID_ACTION 7
950#define NX_RCODE_INVALID_STATE 8
951#define NX_RCODE_NOT_SUPPORTED 9
952#define NX_RCODE_NOT_PERMITTED 10
953#define NX_RCODE_NOT_READY 11
954#define NX_RCODE_DOES_NOT_EXIST 12
955#define NX_RCODE_ALREADY_EXISTS 13
956#define NX_RCODE_BAD_SIGNATURE 14
957#define NX_RCODE_CMD_NOT_IMPL 15
958#define NX_RCODE_CMD_INVALID 16
959#define NX_RCODE_TIMEOUT 17
960#define NX_RCODE_CMD_FAILED 18
961#define NX_RCODE_MAX_EXCEEDED 19
962#define NX_RCODE_MAX 20
963
964#define NX_DESTROY_CTX_RESET 0
965#define NX_DESTROY_CTX_D3_RESET 1
966#define NX_DESTROY_CTX_MAX 2
967
968/*
969 * Capabilities
970 */
971#define NX_CAP_BIT(class, bit) (1 << bit)
972#define NX_CAP0_LEGACY_CONTEXT NX_CAP_BIT(0, 0)
973#define NX_CAP0_MULTI_CONTEXT NX_CAP_BIT(0, 1)
974#define NX_CAP0_LEGACY_MN NX_CAP_BIT(0, 2)
975#define NX_CAP0_LEGACY_MS NX_CAP_BIT(0, 3)
976#define NX_CAP0_CUT_THROUGH NX_CAP_BIT(0, 4)
977#define NX_CAP0_LRO NX_CAP_BIT(0, 5)
978#define NX_CAP0_LSO NX_CAP_BIT(0, 6)
979#define NX_CAP0_JUMBO_CONTIGUOUS NX_CAP_BIT(0, 7)
980#define NX_CAP0_LRO_CONTIGUOUS NX_CAP_BIT(0, 8)
981
982/*
983 * Context state
984 */
985#define NX_HOST_CTX_STATE_FREED 0
986#define NX_HOST_CTX_STATE_ALLOCATED 1
987#define NX_HOST_CTX_STATE_ACTIVE 2
988#define NX_HOST_CTX_STATE_DISABLED 3
989#define NX_HOST_CTX_STATE_QUIESCED 4
990#define NX_HOST_CTX_STATE_MAX 5
991
992/*
993 * Rx context
994 */
995
996typedef struct {
997 u64 host_phys_addr; /* Ring base addr */
998 u32 ring_size; /* Ring entries */
999 u16 msi_index;
1000 u16 rsvd; /* Padding */
1001} nx_hostrq_sds_ring_t;
1002
1003typedef struct {
1004 u64 host_phys_addr; /* Ring base addr */
1005 u64 buff_size; /* Packet buffer size */
1006 u32 ring_size; /* Ring entries */
1007 u32 ring_kind; /* Class of ring */
1008} nx_hostrq_rds_ring_t;
1009
1010typedef struct {
1011 u64 host_rsp_dma_addr; /* Response dma'd here */
1012 u32 capabilities[4]; /* Flag bit vector */
1013 u32 host_int_crb_mode; /* Interrupt crb usage */
1014 u32 host_rds_crb_mode; /* RDS crb usage */
1015 /* These ring offsets are relative to data[0] below */
1016 u32 rds_ring_offset; /* Offset to RDS config */
1017 u32 sds_ring_offset; /* Offset to SDS config */
1018 u16 num_rds_rings; /* Count of RDS rings */
1019 u16 num_sds_rings; /* Count of SDS rings */
1020 u16 rsvd1; /* Padding */
1021 u16 rsvd2; /* Padding */
1022 u8 reserved[128]; /* reserve space for future expansion*/
1023 /* MUST BE 64-bit aligned.
1024 The following is packed:
1025 - N hostrq_rds_rings
1026 - N hostrq_sds_rings */
1027 char data[0];
1028} nx_hostrq_rx_ctx_t;
1029
1030typedef struct {
1031 u32 host_producer_crb; /* Crb to use */
1032 u32 rsvd1; /* Padding */
1033} nx_cardrsp_rds_ring_t;
1034
1035typedef struct {
1036 u32 host_consumer_crb; /* Crb to use */
1037 u32 interrupt_crb; /* Crb to use */
1038} nx_cardrsp_sds_ring_t;
1039
1040typedef struct {
1041 /* These ring offsets are relative to data[0] below */
1042 u32 rds_ring_offset; /* Offset to RDS config */
1043 u32 sds_ring_offset; /* Offset to SDS config */
1044 u32 host_ctx_state; /* Starting State */
1045 u32 num_fn_per_port; /* How many PCI fn share the port */
1046 u16 num_rds_rings; /* Count of RDS rings */
1047 u16 num_sds_rings; /* Count of SDS rings */
1048 u16 context_id; /* Handle for context */
1049 u8 phys_port; /* Physical id of port */
1050 u8 virt_port; /* Virtual/Logical id of port */
1051 u8 reserved[128]; /* save space for future expansion */
1052 /* MUST BE 64-bit aligned.
1053 The following is packed:
1054 - N cardrsp_rds_rings
1055 - N cardrs_sds_rings */
1056 char data[0];
1057} nx_cardrsp_rx_ctx_t;
1058
1059#define SIZEOF_HOSTRQ_RX(HOSTRQ_RX, rds_rings, sds_rings) \
1060 (sizeof(HOSTRQ_RX) + \
1061 (rds_rings)*(sizeof(nx_hostrq_rds_ring_t)) + \
1062 (sds_rings)*(sizeof(nx_hostrq_sds_ring_t)))
1063
1064#define SIZEOF_CARDRSP_RX(CARDRSP_RX, rds_rings, sds_rings) \
1065 (sizeof(CARDRSP_RX) + \
1066 (rds_rings)*(sizeof(nx_cardrsp_rds_ring_t)) + \
1067 (sds_rings)*(sizeof(nx_cardrsp_sds_ring_t)))
1068
1069/*
1070 * Tx context
1071 */
1072
1073typedef struct {
1074 u64 host_phys_addr; /* Ring base addr */
1075 u32 ring_size; /* Ring entries */
1076 u32 rsvd; /* Padding */
1077} nx_hostrq_cds_ring_t;
1078
1079typedef struct {
1080 u64 host_rsp_dma_addr; /* Response dma'd here */
1081 u64 cmd_cons_dma_addr; /* */
1082 u64 dummy_dma_addr; /* */
1083 u32 capabilities[4]; /* Flag bit vector */
1084 u32 host_int_crb_mode; /* Interrupt crb usage */
1085 u32 rsvd1; /* Padding */
1086 u16 rsvd2; /* Padding */
1087 u16 interrupt_ctl;
1088 u16 msi_index;
1089 u16 rsvd3; /* Padding */
1090 nx_hostrq_cds_ring_t cds_ring; /* Desc of cds ring */
1091 u8 reserved[128]; /* future expansion */
1092} nx_hostrq_tx_ctx_t;
1093
1094typedef struct {
1095 u32 host_producer_crb; /* Crb to use */
1096 u32 interrupt_crb; /* Crb to use */
1097} nx_cardrsp_cds_ring_t;
1098
1099typedef struct {
1100 u32 host_ctx_state; /* Starting state */
1101 u16 context_id; /* Handle for context */
1102 u8 phys_port; /* Physical id of port */
1103 u8 virt_port; /* Virtual/Logical id of port */
1104 nx_cardrsp_cds_ring_t cds_ring; /* Card cds settings */
1105 u8 reserved[128]; /* future expansion */
1106} nx_cardrsp_tx_ctx_t;
1107
1108#define SIZEOF_HOSTRQ_TX(HOSTRQ_TX) (sizeof(HOSTRQ_TX))
1109#define SIZEOF_CARDRSP_TX(CARDRSP_TX) (sizeof(CARDRSP_TX))
1110
1111/* CRB */
1112
1113#define NX_HOST_RDS_CRB_MODE_UNIQUE 0
1114#define NX_HOST_RDS_CRB_MODE_SHARED 1
1115#define NX_HOST_RDS_CRB_MODE_CUSTOM 2
1116#define NX_HOST_RDS_CRB_MODE_MAX 3
1117
1118#define NX_HOST_INT_CRB_MODE_UNIQUE 0
1119#define NX_HOST_INT_CRB_MODE_SHARED 1
1120#define NX_HOST_INT_CRB_MODE_NORX 2
1121#define NX_HOST_INT_CRB_MODE_NOTX 3
1122#define NX_HOST_INT_CRB_MODE_NORXTX 4
1123
1124
1125/* MAC */
1126
1127#define MC_COUNT_P2 16
1128#define MC_COUNT_P3 38
1129
1130#define NETXEN_MAC_NOOP 0
1131#define NETXEN_MAC_ADD 1
1132#define NETXEN_MAC_DEL 2
1133
1134typedef struct nx_mac_list_s {
1135 struct nx_mac_list_s *next;
1136 uint8_t mac_addr[MAX_ADDR_LEN];
1137} nx_mac_list_t;
1138
cd1f8160
DP
1139/*
1140 * Interrupt coalescing defaults. The defaults are for 1500 MTU. It is
1141 * adjusted based on configured MTU.
1142 */
1143#define NETXEN_DEFAULT_INTR_COALESCE_RX_TIME_US 3
1144#define NETXEN_DEFAULT_INTR_COALESCE_RX_PACKETS 256
1145#define NETXEN_DEFAULT_INTR_COALESCE_TX_PACKETS 64
1146#define NETXEN_DEFAULT_INTR_COALESCE_TX_TIME_US 4
1147
1148#define NETXEN_NIC_INTR_DEFAULT 0x04
1149
1150typedef union {
1151 struct {
1152 uint16_t rx_packets;
1153 uint16_t rx_time_us;
1154 uint16_t tx_packets;
1155 uint16_t tx_time_us;
1156 } data;
1157 uint64_t word;
1158} nx_nic_intr_coalesce_data_t;
1159
1160typedef struct {
1161 uint16_t stats_time_us;
1162 uint16_t rate_sample_time;
1163 uint16_t flags;
1164 uint16_t rsvd_1;
1165 uint32_t low_threshold;
1166 uint32_t high_threshold;
1167 nx_nic_intr_coalesce_data_t normal;
1168 nx_nic_intr_coalesce_data_t low;
1169 nx_nic_intr_coalesce_data_t high;
1170 nx_nic_intr_coalesce_data_t irq;
1171} nx_nic_intr_coalesce_t;
1172
48bfd1e0
DP
1173typedef struct {
1174 u64 qhdr;
1175 u64 req_hdr;
1176 u64 words[6];
c9fc891f 1177} nx_nic_req_t;
48bfd1e0
DP
1178
1179typedef struct {
1180 u8 op;
1181 u8 tag;
1182 u8 mac_addr[6];
1183} nx_mac_req_t;
1184
c9fc891f 1185#define MAX_PENDING_DESC_BLOCK_SIZE 64
48bfd1e0 1186
2956640d
DP
1187#define NETXEN_NIC_MSI_ENABLED 0x02
1188#define NETXEN_NIC_MSIX_ENABLED 0x04
1189#define NETXEN_IS_MSI_FAMILY(adapter) \
1190 ((adapter)->flags & (NETXEN_NIC_MSI_ENABLED | NETXEN_NIC_MSIX_ENABLED))
1191
1192#define MSIX_ENTRIES_PER_ADAPTER 8
1193#define NETXEN_MSIX_TBL_SPACE 8192
1194#define NETXEN_PCI_REG_MSIX_TBL 0x44
1195
1196#define NETXEN_DB_MAPSIZE_BYTES 0x1000
ed25ffa1 1197
cd1f8160
DP
1198#define NETXEN_NETDEV_WEIGHT 120
1199#define NETXEN_ADAPTER_UP_MAGIC 777
1200#define NETXEN_NIC_PEG_TUNE 0
1201
ed25ffa1
AK
1202struct netxen_dummy_dma {
1203 void *addr;
1204 dma_addr_t phys_addr;
1205};
3d396eb1 1206
3d396eb1
AK
1207struct netxen_adapter {
1208 struct netxen_hardware_context ahw;
4790654c 1209
3176ff3e
MT
1210 struct net_device *netdev;
1211 struct pci_dev *pdev;
2956640d 1212 int pci_using_dac;
bea3348e 1213 struct napi_struct napi;
6c80b18d 1214 struct net_device_stats net_stats;
3176ff3e
MT
1215 int mtu;
1216 int portnum;
3276fbad 1217 u8 physical_port;
48bfd1e0 1218 u16 tx_context_id;
3176ff3e 1219
623621b0
DP
1220 uint8_t mc_enabled;
1221 uint8_t max_mc_count;
c9fc891f 1222 nx_mac_list_t *mac_list;
623621b0 1223
2956640d 1224 struct netxen_legacy_intr_set legacy_intr;
48bfd1e0 1225 u32 crb_intr_mask;
2956640d 1226
3d396eb1 1227 struct work_struct watchdog_task;
3d396eb1 1228 struct timer_list watchdog_timer;
3176ff3e 1229 struct work_struct tx_timeout_task;
3d396eb1
AK
1230
1231 u32 curr_window;
3ce06a32
DP
1232 u32 crb_win;
1233 rwlock_t adapter_lock;
3d396eb1 1234
2956640d
DP
1235 uint64_t dma_mask;
1236
3d396eb1 1237 u32 cmd_producer;
f305f789 1238 __le32 *cmd_consumer;
3d396eb1 1239 u32 last_cmd_consumer;
7830b22c
DP
1240 u32 crb_addr_cmd_producer;
1241 u32 crb_addr_cmd_consumer;
ba53e6b4 1242
3d396eb1
AK
1243 u32 max_tx_desc_count;
1244 u32 max_rx_desc_count;
1245 u32 max_jumbo_rx_desc_count;
ed25ffa1 1246 u32 max_lro_rx_desc_count;
3d396eb1 1247
48bfd1e0
DP
1248 int max_rds_rings;
1249
3d396eb1
AK
1250 u32 flags;
1251 u32 irq;
1252 int driver_mismatch;
cb8011ad 1253 u32 temp;
3d396eb1 1254
2956640d
DP
1255 u32 fw_major;
1256
1257 u8 msix_supported;
1258 u8 max_possible_rss_rings;
1259 struct msix_entry msix_entries[MSIX_ENTRIES_PER_ADAPTER];
1260
3d396eb1 1261 struct netxen_adapter_stats stats;
4790654c 1262
3176ff3e
MT
1263 u16 link_speed;
1264 u16 link_duplex;
1265 u16 state;
1266 u16 link_autoneg;
200eef20 1267 int rx_csum;
3176ff3e 1268 int status;
3d396eb1
AK
1269
1270 struct netxen_cmd_buffer *cmd_buf_arr; /* Command buffers for xmit */
1271
1272 /*
1273 * Receive instances. These can be either one per port,
1274 * or one per peg, etc.
1275 */
1276 struct netxen_recv_context recv_ctx[MAX_RCV_CTX];
1277
1278 int is_up;
ed25ffa1 1279 struct netxen_dummy_dma dummy_dma;
cd1f8160 1280 nx_nic_intr_coalesce_t coal;
ed25ffa1
AK
1281
1282 /* Context interface shared between card and host */
1283 struct netxen_ring_ctx *ctx_desc;
ed25ffa1 1284 dma_addr_t ctx_desc_phys_addr;
2d1a3bbd 1285 int intr_scheme;
443be796 1286 int msi_mode;
13ba9c77
MT
1287 int (*enable_phy_interrupts) (struct netxen_adapter *);
1288 int (*disable_phy_interrupts) (struct netxen_adapter *);
3176ff3e
MT
1289 int (*macaddr_set) (struct netxen_adapter *, netxen_ethernet_macaddr_t);
1290 int (*set_mtu) (struct netxen_adapter *, int);
1291 int (*set_promisc) (struct netxen_adapter *, netxen_niu_prom_mode_t);
13ba9c77
MT
1292 int (*phy_read) (struct netxen_adapter *, long reg, u32 *);
1293 int (*phy_write) (struct netxen_adapter *, long reg, u32 val);
80922fbc 1294 int (*init_port) (struct netxen_adapter *, int);
3176ff3e 1295 int (*stop_port) (struct netxen_adapter *);
3ce06a32
DP
1296
1297 int (*hw_read_wx)(struct netxen_adapter *, ulong, void *, int);
1298 int (*hw_write_wx)(struct netxen_adapter *, ulong, void *, int);
1299 int (*pci_mem_read)(struct netxen_adapter *, u64, void *, int);
1300 int (*pci_mem_write)(struct netxen_adapter *, u64, void *, int);
1301 int (*pci_write_immediate)(struct netxen_adapter *, u64, u32);
1302 u32 (*pci_read_immediate)(struct netxen_adapter *, u64);
1303 void (*pci_write_normalize)(struct netxen_adapter *, u64, u32);
1304 u32 (*pci_read_normalize)(struct netxen_adapter *, u64);
1305 unsigned long (*pci_set_window)(struct netxen_adapter *,
1306 unsigned long long);
3d396eb1
AK
1307}; /* netxen_adapter structure */
1308
96acb6eb
DP
1309/*
1310 * NetXen dma watchdog control structure
1311 *
1312 * Bit 0 : enabled => R/O: 1 watchdog active, 0 inactive
1313 * Bit 1 : disable_request => 1 req disable dma watchdog
1314 * Bit 2 : enable_request => 1 req enable dma watchdog
1315 * Bit 3-31 : unused
1316 */
1317
1318#define netxen_set_dma_watchdog_disable_req(config_word) \
1319 _netxen_set_bits(config_word, 1, 1, 1)
1320#define netxen_set_dma_watchdog_enable_req(config_word) \
1321 _netxen_set_bits(config_word, 2, 1, 1)
1322#define netxen_get_dma_watchdog_enabled(config_word) \
1323 ((config_word) & 0x1)
1324#define netxen_get_dma_watchdog_disabled(config_word) \
1325 (((config_word) >> 1) & 0x1)
1326
3d396eb1
AK
1327/* Max number of xmit producer threads that can run simultaneously */
1328#define MAX_XMIT_PRODUCERS 16
1329
cb8011ad
AK
1330#define PCI_OFFSET_FIRST_RANGE(adapter, off) \
1331 ((adapter)->ahw.pci_base0 + (off))
1332#define PCI_OFFSET_SECOND_RANGE(adapter, off) \
1333 ((adapter)->ahw.pci_base1 + (off) - SECOND_PAGE_GROUP_START)
1334#define PCI_OFFSET_THIRD_RANGE(adapter, off) \
1335 ((adapter)->ahw.pci_base2 + (off) - THIRD_PAGE_GROUP_START)
1336
1337static inline void __iomem *pci_base_offset(struct netxen_adapter *adapter,
1338 unsigned long off)
1339{
1340 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1341 return (adapter->ahw.pci_base0 + off);
1342 } else if ((off < SECOND_PAGE_GROUP_END) &&
1343 (off >= SECOND_PAGE_GROUP_START)) {
1344 return (adapter->ahw.pci_base1 + off - SECOND_PAGE_GROUP_START);
1345 } else if ((off < THIRD_PAGE_GROUP_END) &&
1346 (off >= THIRD_PAGE_GROUP_START)) {
1347 return (adapter->ahw.pci_base2 + off - THIRD_PAGE_GROUP_START);
1348 }
1349 return NULL;
1350}
1351
1352static inline void __iomem *pci_base(struct netxen_adapter *adapter,
1353 unsigned long off)
1354{
1355 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1356 return adapter->ahw.pci_base0;
1357 } else if ((off < SECOND_PAGE_GROUP_END) &&
1358 (off >= SECOND_PAGE_GROUP_START)) {
1359 return adapter->ahw.pci_base1;
1360 } else if ((off < THIRD_PAGE_GROUP_END) &&
1361 (off >= THIRD_PAGE_GROUP_START)) {
1362 return adapter->ahw.pci_base2;
1363 }
1364 return NULL;
1365}
1366
13ba9c77
MT
1367int netxen_niu_xgbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1368int netxen_niu_gbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1369int netxen_niu_xgbe_disable_phy_interrupts(struct netxen_adapter *adapter);
1370int netxen_niu_gbe_disable_phy_interrupts(struct netxen_adapter *adapter);
13ba9c77 1371int netxen_niu_gbe_phy_read(struct netxen_adapter *adapter, long reg,
a608ab9c 1372 __u32 * readval);
13ba9c77 1373int netxen_niu_gbe_phy_write(struct netxen_adapter *adapter,
a608ab9c 1374 long reg, __u32 val);
3d396eb1
AK
1375
1376/* Functions available from netxen_nic_hw.c */
3176ff3e
MT
1377int netxen_nic_set_mtu_xgb(struct netxen_adapter *adapter, int new_mtu);
1378int netxen_nic_set_mtu_gb(struct netxen_adapter *adapter, int new_mtu);
3d396eb1
AK
1379void netxen_nic_reg_write(struct netxen_adapter *adapter, u64 off, u32 val);
1380int netxen_nic_reg_read(struct netxen_adapter *adapter, u64 off);
1381void netxen_nic_write_w0(struct netxen_adapter *adapter, u32 index, u32 value);
3ce06a32
DP
1382void netxen_nic_read_w0(struct netxen_adapter *adapter, u32 index, u32 *value);
1383void netxen_nic_write_w1(struct netxen_adapter *adapter, u32 index, u32 value);
1384void netxen_nic_read_w1(struct netxen_adapter *adapter, u32 index, u32 *value);
3d396eb1
AK
1385
1386int netxen_nic_get_board_info(struct netxen_adapter *adapter);
3ce06a32
DP
1387
1388int netxen_nic_hw_read_wx_128M(struct netxen_adapter *adapter,
1389 ulong off, void *data, int len);
1390int netxen_nic_hw_write_wx_128M(struct netxen_adapter *adapter,
1391 ulong off, void *data, int len);
1392int netxen_nic_pci_mem_read_128M(struct netxen_adapter *adapter,
1393 u64 off, void *data, int size);
1394int netxen_nic_pci_mem_write_128M(struct netxen_adapter *adapter,
1395 u64 off, void *data, int size);
1396int netxen_nic_pci_write_immediate_128M(struct netxen_adapter *adapter,
1397 u64 off, u32 data);
1398u32 netxen_nic_pci_read_immediate_128M(struct netxen_adapter *adapter, u64 off);
1399void netxen_nic_pci_write_normalize_128M(struct netxen_adapter *adapter,
1400 u64 off, u32 data);
1401u32 netxen_nic_pci_read_normalize_128M(struct netxen_adapter *adapter, u64 off);
1402unsigned long netxen_nic_pci_set_window_128M(struct netxen_adapter *adapter,
1403 unsigned long long addr);
1404void netxen_nic_pci_change_crbwindow_128M(struct netxen_adapter *adapter,
1405 u32 wndw);
1406
1407int netxen_nic_hw_read_wx_2M(struct netxen_adapter *adapter,
1408 ulong off, void *data, int len);
1409int netxen_nic_hw_write_wx_2M(struct netxen_adapter *adapter,
1410 ulong off, void *data, int len);
1411int netxen_nic_pci_mem_read_2M(struct netxen_adapter *adapter,
1412 u64 off, void *data, int size);
1413int netxen_nic_pci_mem_write_2M(struct netxen_adapter *adapter,
1414 u64 off, void *data, int size);
3d396eb1
AK
1415void netxen_crb_writelit_adapter(struct netxen_adapter *adapter,
1416 unsigned long off, int data);
3ce06a32
DP
1417int netxen_nic_pci_write_immediate_2M(struct netxen_adapter *adapter,
1418 u64 off, u32 data);
1419u32 netxen_nic_pci_read_immediate_2M(struct netxen_adapter *adapter, u64 off);
1420void netxen_nic_pci_write_normalize_2M(struct netxen_adapter *adapter,
1421 u64 off, u32 data);
1422u32 netxen_nic_pci_read_normalize_2M(struct netxen_adapter *adapter, u64 off);
1423unsigned long netxen_nic_pci_set_window_2M(struct netxen_adapter *adapter,
1424 unsigned long long addr);
3d396eb1
AK
1425
1426/* Functions from netxen_nic_init.c */
ed25ffa1
AK
1427void netxen_free_adapter_offload(struct netxen_adapter *adapter);
1428int netxen_initialize_adapter_offload(struct netxen_adapter *adapter);
96acb6eb 1429int netxen_phantom_init(struct netxen_adapter *adapter, int pegtune_val);
2956640d 1430int netxen_receive_peg_ready(struct netxen_adapter *adapter);
96acb6eb 1431int netxen_load_firmware(struct netxen_adapter *adapter);
3d396eb1 1432int netxen_pinit_from_rom(struct netxen_adapter *adapter, int verbose);
2956640d 1433
3d396eb1 1434int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr, int *valp);
4790654c 1435int netxen_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
27d2ab54 1436 u8 *bytes, size_t size);
4790654c 1437int netxen_rom_fast_write_words(struct netxen_adapter *adapter, int addr,
27d2ab54
AK
1438 u8 *bytes, size_t size);
1439int netxen_flash_unlock(struct netxen_adapter *adapter);
1440int netxen_backup_crbinit(struct netxen_adapter *adapter);
1441int netxen_flash_erase_secondary(struct netxen_adapter *adapter);
1442int netxen_flash_erase_primary(struct netxen_adapter *adapter);
e45d9ab4 1443void netxen_halt_pegs(struct netxen_adapter *adapter);
27d2ab54 1444
cb8011ad 1445int netxen_rom_se(struct netxen_adapter *adapter, int addr);
3d396eb1 1446
2956640d
DP
1447int netxen_alloc_sw_resources(struct netxen_adapter *adapter);
1448void netxen_free_sw_resources(struct netxen_adapter *adapter);
1449
1450int netxen_alloc_hw_resources(struct netxen_adapter *adapter);
1451void netxen_free_hw_resources(struct netxen_adapter *adapter);
1452
1453void netxen_release_rx_buffers(struct netxen_adapter *adapter);
1454void netxen_release_tx_buffers(struct netxen_adapter *adapter);
1455
3d396eb1
AK
1456void netxen_initialize_adapter_ops(struct netxen_adapter *adapter);
1457int netxen_init_firmware(struct netxen_adapter *adapter);
3d396eb1
AK
1458void netxen_tso_check(struct netxen_adapter *adapter,
1459 struct cmd_desc_type0 *desc, struct sk_buff *skb);
3d396eb1 1460void netxen_nic_clear_stats(struct netxen_adapter *adapter);
6d5aefb8 1461void netxen_watchdog_task(struct work_struct *work);
3d396eb1
AK
1462void netxen_post_rx_buffers(struct netxen_adapter *adapter, u32 ctx,
1463 u32 ringid);
05aaa02d 1464int netxen_process_cmd_ring(struct netxen_adapter *adapter);
3d396eb1 1465u32 netxen_process_rcv_ring(struct netxen_adapter *adapter, int ctx, int max);
c9fc891f
DP
1466void netxen_p2_nic_set_multi(struct net_device *netdev);
1467void netxen_p3_nic_set_multi(struct net_device *netdev);
cd1f8160 1468int netxen_config_intr_coalesce(struct netxen_adapter *adapter);
48bfd1e0
DP
1469
1470u32 nx_fw_cmd_set_mtu(struct netxen_adapter *adapter, u32 mtu);
3d396eb1 1471int netxen_nic_change_mtu(struct net_device *netdev, int new_mtu);
48bfd1e0 1472
3d396eb1
AK
1473int netxen_nic_set_mac(struct net_device *netdev, void *p);
1474struct net_device_stats *netxen_nic_get_stats(struct net_device *netdev);
1475
c9fc891f
DP
1476void netxen_nic_update_cmd_producer(struct netxen_adapter *adapter,
1477 uint32_t crb_producer);
cb8011ad
AK
1478
1479/*
1480 * NetXen Board information
1481 */
1482
e4c93c81 1483#define NETXEN_MAX_SHORT_NAME 32
71bd7877 1484struct netxen_brdinfo {
cb8011ad
AK
1485 netxen_brdtype_t brdtype; /* type of board */
1486 long ports; /* max no of physical ports */
1487 char short_name[NETXEN_MAX_SHORT_NAME];
71bd7877 1488};
cb8011ad 1489
71bd7877 1490static const struct netxen_brdinfo netxen_boards[] = {
cb8011ad
AK
1491 {NETXEN_BRDTYPE_P2_SB31_10G_CX4, 1, "XGb CX4"},
1492 {NETXEN_BRDTYPE_P2_SB31_10G_HMEZ, 1, "XGb HMEZ"},
1493 {NETXEN_BRDTYPE_P2_SB31_10G_IMEZ, 2, "XGb IMEZ"},
1494 {NETXEN_BRDTYPE_P2_SB31_10G, 1, "XGb XFP"},
1495 {NETXEN_BRDTYPE_P2_SB35_4G, 4, "Quad Gb"},
1496 {NETXEN_BRDTYPE_P2_SB31_2G, 2, "Dual Gb"},
e4c93c81
DP
1497 {NETXEN_BRDTYPE_P3_REF_QG, 4, "Reference Quad Gig "},
1498 {NETXEN_BRDTYPE_P3_HMEZ, 2, "Dual XGb HMEZ"},
1499 {NETXEN_BRDTYPE_P3_10G_CX4_LP, 2, "Dual XGb CX4 LP"},
1500 {NETXEN_BRDTYPE_P3_4_GB, 4, "Quad Gig LP"},
1501 {NETXEN_BRDTYPE_P3_IMEZ, 2, "Dual XGb IMEZ"},
1502 {NETXEN_BRDTYPE_P3_10G_SFP_PLUS, 2, "Dual XGb SFP+ LP"},
1503 {NETXEN_BRDTYPE_P3_10000_BASE_T, 1, "XGB 10G BaseT LP"},
1504 {NETXEN_BRDTYPE_P3_XG_LOM, 2, "Dual XGb LOM"},
1505 {NETXEN_BRDTYPE_P3_4_GB_MM, 4, "Quad GB - March Madness"},
1506 {NETXEN_BRDTYPE_P3_10G_CX4, 2, "Reference Dual CX4 Option"},
1507 {NETXEN_BRDTYPE_P3_10G_XFP, 1, "Reference Single XFP Option"}
cb8011ad
AK
1508};
1509
ff8ac609 1510#define NUM_SUPPORTED_BOARDS ARRAY_SIZE(netxen_boards)
cb8011ad 1511
cb8011ad
AK
1512static inline void get_brd_name_by_type(u32 type, char *name)
1513{
1514 int i, found = 0;
1515 for (i = 0; i < NUM_SUPPORTED_BOARDS; ++i) {
1516 if (netxen_boards[i].brdtype == type) {
1517 strcpy(name, netxen_boards[i].short_name);
1518 found = 1;
1519 break;
1520 }
1521
3d396eb1 1522 }
cb8011ad
AK
1523 if (!found)
1524 name = "Unknown";
3d396eb1
AK
1525}
1526
96acb6eb
DP
1527static inline int
1528dma_watchdog_shutdown_request(struct netxen_adapter *adapter)
1529{
1530 u32 ctrl;
1531
1532 /* check if already inactive */
3ce06a32 1533 if (adapter->hw_read_wx(adapter,
96acb6eb
DP
1534 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1535 printk(KERN_ERR "failed to read dma watchdog status\n");
1536
1537 if (netxen_get_dma_watchdog_enabled(ctrl) == 0)
1538 return 1;
1539
1540 /* Send the disable request */
1541 netxen_set_dma_watchdog_disable_req(ctrl);
1542 netxen_crb_writelit_adapter(adapter,
1543 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1544
1545 return 0;
1546}
1547
1548static inline int
1549dma_watchdog_shutdown_poll_result(struct netxen_adapter *adapter)
1550{
1551 u32 ctrl;
1552
3ce06a32 1553 if (adapter->hw_read_wx(adapter,
96acb6eb
DP
1554 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1555 printk(KERN_ERR "failed to read dma watchdog status\n");
1556
ceded32f 1557 return (netxen_get_dma_watchdog_enabled(ctrl) == 0);
96acb6eb
DP
1558}
1559
1560static inline int
1561dma_watchdog_wakeup(struct netxen_adapter *adapter)
1562{
1563 u32 ctrl;
1564
3ce06a32 1565 if (adapter->hw_read_wx(adapter,
96acb6eb
DP
1566 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1567 printk(KERN_ERR "failed to read dma watchdog status\n");
1568
1569 if (netxen_get_dma_watchdog_enabled(ctrl))
1570 return 1;
1571
1572 /* send the wakeup request */
1573 netxen_set_dma_watchdog_enable_req(ctrl);
1574
1575 netxen_crb_writelit_adapter(adapter,
1576 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1577
1578 return 0;
1579}
1580
1581
3d396eb1 1582int netxen_is_flash_supported(struct netxen_adapter *adapter);
f305f789 1583int netxen_get_flash_mac_addr(struct netxen_adapter *adapter, __le64 mac[]);
3d396eb1
AK
1584extern void netxen_change_ringparam(struct netxen_adapter *adapter);
1585extern int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr,
1586 int *valp);
1587
1588extern struct ethtool_ops netxen_nic_ethtool_ops;
1589
1590#endif /* __NETXEN_NIC_H_ */