blob: b7261823189d6ebd547aa93cf702f8aee883826b [file] [log] [blame]
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001/*
2 * Copyright (C) 2003 - 2006 NetXen, Inc.
3 * All rights reserved.
Amit S. Kale80922fb2006-12-04 09:18:00 -08004 *
Amit S. Kale3d396eb2006-10-21 15:33:03 -04005 * 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.
Amit S. Kale80922fb2006-12-04 09:18:00 -08009 *
Amit S. Kale3d396eb2006-10-21 15:33:03 -040010 * 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.
Amit S. Kale80922fb2006-12-04 09:18:00 -080014 *
Amit S. Kale3d396eb2006-10-21 15:33:03 -040015 * 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.
Amit S. Kale80922fb2006-12-04 09:18:00 -080019 *
Amit S. Kale3d396eb2006-10-21 15:33:03 -040020 * The full GNU General Public License is included in this distribution
21 * in the file called LICENSE.
Amit S. Kale80922fb2006-12-04 09:18:00 -080022 *
Amit S. Kale3d396eb2006-10-21 15:33:03 -040023 * 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
Amit S. Kale3d396eb2006-10-21 15:33:03 -040033#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>
Amit S. Kale3d396eb2006-10-21 15:33:03 -040048
49#include <linux/ethtool.h>
50#include <linux/mii.h>
51#include <linux/interrupt.h>
52#include <linux/timer.h>
53
54#include <linux/mm.h>
55#include <linux/mman.h>
David S. Miller42555892008-07-22 18:29:10 -070056#include <linux/vmalloc.h>
Amit S. Kale3d396eb2006-10-21 15:33:03 -040057
58#include <asm/system.h>
59#include <asm/io.h>
60#include <asm/byteorder.h>
61#include <asm/uaccess.h>
62#include <asm/pgtable.h>
63
64#include "netxen_nic_hw.h"
65
Dhananjay Phadke58735562008-07-21 19:44:10 -070066#define _NETXEN_NIC_LINUX_MAJOR 4
67#define _NETXEN_NIC_LINUX_MINOR 0
Dhananjay Phadke11d89d62008-08-08 00:08:45 -070068#define _NETXEN_NIC_LINUX_SUBVERSION 11
69#define NETXEN_NIC_LINUX_VERSIONID "4.0.11"
Dhananjay Phadke58735562008-07-21 19:44:10 -070070
71#define NETXEN_VERSION_CODE(a, b, c) (((a) << 16) + ((b) << 8) + (c))
Amit S. Kale27d2ab52007-02-05 07:40:49 -080072
Mithlesh Thukral0d047612007-06-07 04:36:36 -070073#define NETXEN_NUM_FLASH_SECTORS (64)
74#define NETXEN_FLASH_SECTOR_SIZE (64 * 1024)
75#define NETXEN_FLASH_TOTAL_SIZE (NETXEN_NUM_FLASH_SECTORS \
76 * NETXEN_FLASH_SECTOR_SIZE)
Amit S. Kale3d396eb2006-10-21 15:33:03 -040077
Linsys Contractor Mithlesh Thukral0c25cfe2007-02-28 05:14:07 -080078#define PHAN_VENDOR_ID 0x4040
79
Amit S. Kale3d396eb2006-10-21 15:33:03 -040080#define RCV_DESC_RINGSIZE \
81 (sizeof(struct rcv_desc) * adapter->max_rx_desc_count)
82#define STATUS_DESC_RINGSIZE \
83 (sizeof(struct status_desc)* adapter->max_rx_desc_count)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -080084#define LRO_DESC_RINGSIZE \
85 (sizeof(rcvDesc_t) * adapter->max_lro_rx_desc_count)
Amit S. Kale3d396eb2006-10-21 15:33:03 -040086#define TX_RINGSIZE \
87 (sizeof(struct netxen_cmd_buffer) * adapter->max_tx_desc_count)
88#define RCV_BUFFSIZE \
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -070089 (sizeof(struct netxen_rx_buffer) * rds_ring->max_rx_desc_count)
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -070090#define find_diff_among(a,b,range) ((a)<(b)?((b)-(a)):((b)+(range)-(a)))
Amit S. Kale3d396eb2006-10-21 15:33:03 -040091
Amit S. Kaleed25ffa2006-12-04 09:23:25 -080092#define NETXEN_NETDEV_STATUS 0x1
93#define NETXEN_RCV_PRODUCER_OFFSET 0
94#define NETXEN_RCV_PEG_DB_ID 2
95#define NETXEN_HOST_DUMMY_DMA_SIZE 1024
Amit S. Kale27d2ab52007-02-05 07:40:49 -080096#define FLASH_SUCCESS 0
Amit S. Kale3d396eb2006-10-21 15:33:03 -040097
98#define ADDR_IN_WINDOW1(off) \
99 ((off > NETXEN_CRB_PCIX_HOST2) && (off < NETXEN_CRB_MAX)) ? 1 : 0
100
Jeff Garzik47906542007-11-23 21:23:36 -0500101/*
102 * normalize a 64MB crb address to 32MB PCI window
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400103 * To use NETXEN_CRB_NORMALIZE, window _must_ be set to 1
104 */
Amit S. Kale80922fb2006-12-04 09:18:00 -0800105#define NETXEN_CRB_NORMAL(reg) \
106 ((reg) - NETXEN_CRB_PCIX_HOST2 + NETXEN_CRB_PCIX_HOST)
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800107
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400108#define NETXEN_CRB_NORMALIZE(adapter, reg) \
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800109 pci_base_offset(adapter, NETXEN_CRB_NORMAL(reg))
110
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800111#define DB_NORMALIZE(adapter, off) \
112 (adapter->ahw.db_base + (off))
113
114#define NX_P2_C0 0x24
115#define NX_P2_C1 0x25
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700116#define NX_P3_A0 0x30
117#define NX_P3_A2 0x30
118#define NX_P3_B0 0x40
119#define NX_P3_B1 0x41
120
121#define NX_IS_REVISION_P2(REVISION) (REVISION <= NX_P2_C1)
122#define NX_IS_REVISION_P3(REVISION) (REVISION >= NX_P3_A0)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800123
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800124#define FIRST_PAGE_GROUP_START 0
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800125#define FIRST_PAGE_GROUP_END 0x100000
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800126
Mithlesh Thukral78403a92007-04-20 07:57:26 -0700127#define SECOND_PAGE_GROUP_START 0x6000000
128#define SECOND_PAGE_GROUP_END 0x68BC000
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800129
130#define THIRD_PAGE_GROUP_START 0x70E4000
131#define THIRD_PAGE_GROUP_END 0x8000000
132
133#define FIRST_PAGE_GROUP_SIZE FIRST_PAGE_GROUP_END - FIRST_PAGE_GROUP_START
134#define SECOND_PAGE_GROUP_SIZE SECOND_PAGE_GROUP_END - SECOND_PAGE_GROUP_START
135#define THIRD_PAGE_GROUP_SIZE THIRD_PAGE_GROUP_END - THIRD_PAGE_GROUP_START
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400136
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700137#define P2_MAX_MTU (8000)
138#define P3_MAX_MTU (9600)
139#define NX_ETHERMTU 1500
140#define NX_MAX_ETHERHDR 32 /* This contains some padding */
141
142#define NX_RX_NORMAL_BUF_MAX_LEN (NX_MAX_ETHERHDR + NX_ETHERMTU)
143#define NX_P2_RX_JUMBO_BUF_MAX_LEN (NX_MAX_ETHERHDR + P2_MAX_MTU)
144#define NX_P3_RX_JUMBO_BUF_MAX_LEN (NX_MAX_ETHERHDR + P3_MAX_MTU)
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700145#define NX_CT_DEFAULT_RX_BUF_LEN 2048
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700146
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800147#define MAX_RX_BUFFER_LENGTH 1760
Amit S. Kalebd56c6b2006-12-18 05:54:36 -0800148#define MAX_RX_JUMBO_BUFFER_LENGTH 8062
Dhananjay Phadke32ec8032009-01-26 12:35:19 -0800149#define MAX_RX_LRO_BUFFER_LENGTH (8062)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800150#define RX_DMA_MAP_LEN (MAX_RX_BUFFER_LENGTH - 2)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400151#define RX_JUMBO_DMA_MAP_LEN \
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800152 (MAX_RX_JUMBO_BUFFER_LENGTH - 2)
153#define RX_LRO_DMA_MAP_LEN (MAX_RX_LRO_BUFFER_LENGTH - 2)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400154
155/*
156 * Maximum number of ring contexts
157 */
158#define MAX_RING_CTX 1
159
160/* Opcodes to be used with the commands */
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700161#define TX_ETHER_PKT 0x01
162#define TX_TCP_PKT 0x02
163#define TX_UDP_PKT 0x03
164#define TX_IP_PKT 0x04
165#define TX_TCP_LSO 0x05
166#define TX_TCP_LSO6 0x06
167#define TX_IPSEC 0x07
168#define TX_IPSEC_CMD 0x0a
169#define TX_TCPV6_PKT 0x0b
170#define TX_UDPV6_PKT 0x0c
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400171
172/* The following opcodes are for internal consumption. */
173#define NETXEN_CONTROL_OP 0x10
174#define PEGNET_REQUEST 0x11
175
176#define MAX_NUM_CARDS 4
177
178#define MAX_BUFFERS_PER_CMD 32
179
180/*
181 * Following are the states of the Phantom. Phantom will set them and
182 * Host will read to check if the fields are correct.
183 */
184#define PHAN_INITIALIZE_START 0xff00
185#define PHAN_INITIALIZE_FAILED 0xffff
186#define PHAN_INITIALIZE_COMPLETE 0xff01
187
188/* Host writes the following to notify that it has done the init-handshake */
189#define PHAN_INITIALIZE_ACK 0xf00f
190
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800191#define NUM_RCV_DESC_RINGS 3 /* No of Rcv Descriptor contexts */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400192
193/* descriptor types */
194#define RCV_DESC_NORMAL 0x01
195#define RCV_DESC_JUMBO 0x02
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800196#define RCV_DESC_LRO 0x04
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400197#define RCV_DESC_NORMAL_CTXID 0
198#define RCV_DESC_JUMBO_CTXID 1
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800199#define RCV_DESC_LRO_CTXID 2
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400200
201#define RCV_DESC_TYPE(ID) \
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800202 ((ID == RCV_DESC_JUMBO_CTXID) \
203 ? RCV_DESC_JUMBO \
204 : ((ID == RCV_DESC_LRO_CTXID) \
205 ? RCV_DESC_LRO : \
206 (RCV_DESC_NORMAL)))
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400207
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -0700208#define MAX_CMD_DESCRIPTORS 4096
Amit S. Kalebd56c6b2006-12-18 05:54:36 -0800209#define MAX_RCV_DESCRIPTORS 16384
Dhananjay Phadke32ec8032009-01-26 12:35:19 -0800210#define MAX_CMD_DESCRIPTORS_HOST 1024
211#define MAX_RCV_DESCRIPTORS_1G 2048
212#define MAX_RCV_DESCRIPTORS_10G 4096
Dhananjay Phadkee1256462009-01-29 16:05:19 -0800213#define MAX_JUMBO_RCV_DESCRIPTORS 1024
Dhananjay Phadke32ec8032009-01-26 12:35:19 -0800214#define MAX_LRO_RCV_DESCRIPTORS 8
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400215#define MAX_RCVSTATUS_DESCRIPTORS MAX_RCV_DESCRIPTORS
216#define MAX_JUMBO_RCV_DESC MAX_JUMBO_RCV_DESCRIPTORS
217#define MAX_RCV_DESC MAX_RCV_DESCRIPTORS
218#define MAX_RCVSTATUS_DESC MAX_RCV_DESCRIPTORS
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400219#define MAX_EPG_DESCRIPTORS (MAX_CMD_DESCRIPTORS * 8)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800220#define NUM_RCV_DESC (MAX_RCV_DESC + MAX_JUMBO_RCV_DESCRIPTORS + \
221 MAX_LRO_RCV_DESCRIPTORS)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400222#define MIN_TX_COUNT 4096
223#define MIN_RX_COUNT 4096
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800224#define NETXEN_CTX_SIGNATURE 0xdee0
225#define NETXEN_RCV_PRODUCER(ringid) (ringid)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400226#define MAX_FRAME_SIZE 0x10000 /* 64K MAX size for LSO */
227
228#define PHAN_PEG_RCV_INITIALIZED 0xff01
229#define PHAN_PEG_RCV_START_INITIALIZE 0xff00
230
231#define get_next_index(index, length) \
232 (((index) + 1) & ((length) - 1))
233
234#define get_index_range(index,length,count) \
235 (((index) + (count)) & ((length) - 1))
236
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800237#define MPORT_SINGLE_FUNCTION_MODE 0x1111
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700238#define MPORT_MULTI_FUNCTION_MODE 0x2222
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800239
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700240#include "netxen_nic_phan_reg.h"
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800241
242/*
243 * NetXen host-peg signal message structure
244 *
245 * Bit 0-1 : peg_id => 0x2 for tx and 01 for rx
246 * Bit 2 : priv_id => must be 1
247 * Bit 3-17 : count => for doorbell
248 * Bit 18-27 : ctx_id => Context id
249 * Bit 28-31 : opcode
250 */
251
252typedef u32 netxen_ctx_msg;
253
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800254#define netxen_set_msg_peg_id(config_word, val) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000255 ((config_word) &= ~3, (config_word) |= val & 3)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800256#define netxen_set_msg_privid(config_word) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000257 ((config_word) |= 1 << 2)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800258#define netxen_set_msg_count(config_word, val) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000259 ((config_word) &= ~(0x7fff<<3), (config_word) |= (val & 0x7fff) << 3)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800260#define netxen_set_msg_ctxid(config_word, val) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000261 ((config_word) &= ~(0x3ff<<18), (config_word) |= (val & 0x3ff) << 18)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800262#define netxen_set_msg_opcode(config_word, val) \
Amit S. Kale82581172007-02-12 04:33:38 -0800263 ((config_word) &= ~(0xf<<28), (config_word) |= (val & 0xf) << 28)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800264
265struct netxen_rcv_context {
Al Viroa608ab9c2007-01-02 10:39:10 +0000266 __le64 rcv_ring_addr;
267 __le32 rcv_ring_size;
268 __le32 rsrvd;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800269};
270
271struct netxen_ring_ctx {
272
273 /* one command ring */
Al Viroa608ab9c2007-01-02 10:39:10 +0000274 __le64 cmd_consumer_offset;
275 __le64 cmd_ring_addr;
276 __le32 cmd_ring_size;
277 __le32 rsrvd;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800278
279 /* three receive rings */
280 struct netxen_rcv_context rcv_ctx[3];
281
282 /* one status ring */
Al Viroa608ab9c2007-01-02 10:39:10 +0000283 __le64 sts_ring_addr;
284 __le32 sts_ring_size;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800285
Al Viroa608ab9c2007-01-02 10:39:10 +0000286 __le32 ctx_id;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800287} __attribute__ ((aligned(64)));
288
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400289/*
290 * Following data structures describe the descriptors that will be used.
291 * Added fileds of tcpHdrSize and ipHdrSize, The driver needs to do it only when
292 * we are doing LSO (above the 1500 size packet) only.
293 */
294
295/*
296 * The size of reference handle been changed to 16 bits to pass the MSS fields
297 * for the LSO packet
298 */
299
300#define FLAGS_CHECKSUM_ENABLED 0x01
301#define FLAGS_LSO_ENABLED 0x02
302#define FLAGS_IPSEC_SA_ADD 0x04
303#define FLAGS_IPSEC_SA_DELETE 0x08
304#define FLAGS_VLAN_TAGGED 0x10
305
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800306#define netxen_set_cmd_desc_port(cmd_desc, var) \
307 ((cmd_desc)->port_ctxid |= ((var) & 0x0F))
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700308#define netxen_set_cmd_desc_ctxid(cmd_desc, var) \
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700309 ((cmd_desc)->port_ctxid |= ((var) << 4 & 0xF0))
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400310
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800311#define netxen_set_tx_port(_desc, _port) \
312 (_desc)->port_ctxid = ((_port) & 0xf) | (((_port) << 4) & 0xf0)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800313
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800314#define netxen_set_tx_flags_opcode(_desc, _flags, _opcode) \
315 (_desc)->flags_opcode = \
316 cpu_to_le16(((_flags) & 0x7f) | (((_opcode) & 0x3f) << 7))
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800317
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800318#define netxen_set_tx_frags_len(_desc, _frags, _len) \
319 (_desc)->num_of_buffers_total_length = \
320 cpu_to_le32(((_frags) & 0xff) | (((_len) & 0xffffff) << 8))
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400321
322struct cmd_desc_type0 {
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800323 u8 tcp_hdr_offset; /* For LSO only */
324 u8 ip_hdr_offset; /* For LSO only */
325 /* Bit pattern: 0-6 flags, 7-12 opcode, 13-15 unused */
Al Viroa608ab9c2007-01-02 10:39:10 +0000326 __le16 flags_opcode;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800327 /* Bit pattern: 0-7 total number of segments,
328 8-31 Total size of the packet */
Al Viroa608ab9c2007-01-02 10:39:10 +0000329 __le32 num_of_buffers_total_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400330 union {
331 struct {
Al Viroa608ab9c2007-01-02 10:39:10 +0000332 __le32 addr_low_part2;
333 __le32 addr_high_part2;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400334 };
Al Viroa608ab9c2007-01-02 10:39:10 +0000335 __le64 addr_buffer2;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400336 };
337
Al Viroa608ab9c2007-01-02 10:39:10 +0000338 __le16 reference_handle; /* changed to u16 to add mss */
339 __le16 mss; /* passed by NDIS_PACKET for LSO */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400340 /* Bit pattern 0-3 port, 0-3 ctx id */
341 u8 port_ctxid;
342 u8 total_hdr_length; /* LSO only : MAC+IP+TCP Hdr size */
Al Viroa608ab9c2007-01-02 10:39:10 +0000343 __le16 conn_id; /* IPSec offoad only */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400344
345 union {
346 struct {
Al Viroa608ab9c2007-01-02 10:39:10 +0000347 __le32 addr_low_part3;
348 __le32 addr_high_part3;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400349 };
Al Viroa608ab9c2007-01-02 10:39:10 +0000350 __le64 addr_buffer3;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400351 };
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400352 union {
353 struct {
Al Viroa608ab9c2007-01-02 10:39:10 +0000354 __le32 addr_low_part1;
355 __le32 addr_high_part1;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400356 };
Al Viroa608ab9c2007-01-02 10:39:10 +0000357 __le64 addr_buffer1;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400358 };
359
Al Viroa608ab9c2007-01-02 10:39:10 +0000360 __le16 buffer1_length;
361 __le16 buffer2_length;
362 __le16 buffer3_length;
363 __le16 buffer4_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400364
365 union {
366 struct {
Al Viroa608ab9c2007-01-02 10:39:10 +0000367 __le32 addr_low_part4;
368 __le32 addr_high_part4;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400369 };
Al Viroa608ab9c2007-01-02 10:39:10 +0000370 __le64 addr_buffer4;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400371 };
372
Al Viroa608ab9c2007-01-02 10:39:10 +0000373 __le64 unused;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800374
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400375} __attribute__ ((aligned(64)));
376
377/* Note: sizeof(rcv_desc) should always be a mutliple of 2 */
378struct rcv_desc {
Al Viroa608ab9c2007-01-02 10:39:10 +0000379 __le16 reference_handle;
380 __le16 reserved;
381 __le32 buffer_length; /* allocated buffer length (usually 2K) */
382 __le64 addr_buffer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400383};
384
385/* opcode field in status_desc */
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700386#define NETXEN_NIC_RXPKT_DESC 0x04
387#define NETXEN_OLD_RXPKT_DESC 0x3f
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400388
389/* for status field in status_desc */
390#define STATUS_NEED_CKSUM (1)
391#define STATUS_CKSUM_OK (2)
392
393/* owner bits of status_desc */
394#define STATUS_OWNER_HOST (0x1)
395#define STATUS_OWNER_PHANTOM (0x2)
396
397#define NETXEN_PROT_IP (1)
398#define NETXEN_PROT_UNKNOWN (0)
399
400/* Note: sizeof(status_desc) should always be a mutliple of 2 */
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800401
402#define netxen_get_sts_desc_lro_cnt(status_desc) \
403 ((status_desc)->lro & 0x7F)
404#define netxen_get_sts_desc_lro_last_frag(status_desc) \
405 (((status_desc)->lro & 0x80) >> 7)
406
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800407#define netxen_get_sts_port(sts_data) \
408 ((sts_data) & 0x0F)
409#define netxen_get_sts_status(sts_data) \
410 (((sts_data) >> 4) & 0x0F)
411#define netxen_get_sts_type(sts_data) \
412 (((sts_data) >> 8) & 0x0F)
413#define netxen_get_sts_totallength(sts_data) \
414 (((sts_data) >> 12) & 0xFFFF)
415#define netxen_get_sts_refhandle(sts_data) \
416 (((sts_data) >> 28) & 0xFFFF)
417#define netxen_get_sts_prot(sts_data) \
418 (((sts_data) >> 44) & 0x0F)
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700419#define netxen_get_sts_pkt_offset(sts_data) \
420 (((sts_data) >> 48) & 0x1F)
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800421#define netxen_get_sts_opcode(sts_data) \
422 (((sts_data) >> 58) & 0x03F)
423
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800424#define netxen_get_sts_owner(status_desc) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000425 ((le64_to_cpu((status_desc)->status_desc_data) >> 56) & 0x03)
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800426#define netxen_set_sts_owner(status_desc, val) { \
427 (status_desc)->status_desc_data = \
428 ((status_desc)->status_desc_data & \
429 ~cpu_to_le64(0x3ULL << 56)) | \
430 cpu_to_le64((u64)((val) & 0x3) << 56); \
431}
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400432
433struct status_desc {
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800434 /* Bit pattern: 0-3 port, 4-7 status, 8-11 type, 12-27 total_length
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700435 28-43 reference_handle, 44-47 protocol, 48-52 pkt_offset
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800436 53-55 desc_cnt, 56-57 owner, 58-63 opcode
437 */
Al Viroa608ab9c2007-01-02 10:39:10 +0000438 __le64 status_desc_data;
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700439 union {
440 struct {
441 __le32 hash_value;
442 u8 hash_type;
443 u8 msg_type;
444 u8 unused;
445 union {
446 /* Bit pattern: 0-6 lro_count indicates frag
447 * sequence, 7 last_frag indicates last frag
448 */
449 u8 lro;
450
451 /* chained buffers */
452 u8 nr_frags;
453 };
454 };
455 struct {
456 __le16 frag_handles[4];
457 };
458 };
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700459} __attribute__ ((aligned(16)));
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400460
461enum {
462 NETXEN_RCV_PEG_0 = 0,
463 NETXEN_RCV_PEG_1
464};
465/* The version of the main data structure */
466#define NETXEN_BDINFO_VERSION 1
467
468/* Magic number to let user know flash is programmed */
469#define NETXEN_BDINFO_MAGIC 0x12345678
470
471/* Max number of Gig ports on a Phantom board */
472#define NETXEN_MAX_PORTS 4
473
474typedef enum {
475 NETXEN_BRDTYPE_P1_BD = 0x0000,
476 NETXEN_BRDTYPE_P1_SB = 0x0001,
477 NETXEN_BRDTYPE_P1_SMAX = 0x0002,
478 NETXEN_BRDTYPE_P1_SOCK = 0x0003,
479
480 NETXEN_BRDTYPE_P2_SOCK_31 = 0x0008,
481 NETXEN_BRDTYPE_P2_SOCK_35 = 0x0009,
482 NETXEN_BRDTYPE_P2_SB35_4G = 0x000a,
483 NETXEN_BRDTYPE_P2_SB31_10G = 0x000b,
484 NETXEN_BRDTYPE_P2_SB31_2G = 0x000c,
485
486 NETXEN_BRDTYPE_P2_SB31_10G_IMEZ = 0x000d,
487 NETXEN_BRDTYPE_P2_SB31_10G_HMEZ = 0x000e,
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700488 NETXEN_BRDTYPE_P2_SB31_10G_CX4 = 0x000f,
489
490 NETXEN_BRDTYPE_P3_REF_QG = 0x0021,
491 NETXEN_BRDTYPE_P3_HMEZ = 0x0022,
492 NETXEN_BRDTYPE_P3_10G_CX4_LP = 0x0023,
493 NETXEN_BRDTYPE_P3_4_GB = 0x0024,
494 NETXEN_BRDTYPE_P3_IMEZ = 0x0025,
495 NETXEN_BRDTYPE_P3_10G_SFP_PLUS = 0x0026,
496 NETXEN_BRDTYPE_P3_10000_BASE_T = 0x0027,
497 NETXEN_BRDTYPE_P3_XG_LOM = 0x0028,
498 NETXEN_BRDTYPE_P3_4_GB_MM = 0x0029,
Dhananjay Phadkea70f9392008-08-01 03:14:56 -0700499 NETXEN_BRDTYPE_P3_10G_SFP_CT = 0x002a,
500 NETXEN_BRDTYPE_P3_10G_SFP_QT = 0x002b,
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700501 NETXEN_BRDTYPE_P3_10G_CX4 = 0x0031,
Dhananjay Phadkec7860a22009-01-14 20:48:32 -0800502 NETXEN_BRDTYPE_P3_10G_XFP = 0x0032,
503 NETXEN_BRDTYPE_P3_10G_TP = 0x0080
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700504
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400505} netxen_brdtype_t;
506
507typedef enum {
508 NETXEN_BRDMFG_INVENTEC = 1
509} netxen_brdmfg;
510
511typedef enum {
512 MEM_ORG_128Mbx4 = 0x0, /* DDR1 only */
513 MEM_ORG_128Mbx8 = 0x1, /* DDR1 only */
514 MEM_ORG_128Mbx16 = 0x2, /* DDR1 only */
515 MEM_ORG_256Mbx4 = 0x3,
516 MEM_ORG_256Mbx8 = 0x4,
517 MEM_ORG_256Mbx16 = 0x5,
518 MEM_ORG_512Mbx4 = 0x6,
519 MEM_ORG_512Mbx8 = 0x7,
520 MEM_ORG_512Mbx16 = 0x8,
521 MEM_ORG_1Gbx4 = 0x9,
522 MEM_ORG_1Gbx8 = 0xa,
523 MEM_ORG_1Gbx16 = 0xb,
524 MEM_ORG_2Gbx4 = 0xc,
525 MEM_ORG_2Gbx8 = 0xd,
526 MEM_ORG_2Gbx16 = 0xe,
527 MEM_ORG_128Mbx32 = 0x10002, /* GDDR only */
528 MEM_ORG_256Mbx32 = 0x10005 /* GDDR only */
529} netxen_mn_mem_org_t;
530
531typedef enum {
532 MEM_ORG_512Kx36 = 0x0,
533 MEM_ORG_1Mx36 = 0x1,
534 MEM_ORG_2Mx36 = 0x2
535} netxen_sn_mem_org_t;
536
537typedef enum {
538 MEM_DEPTH_4MB = 0x1,
539 MEM_DEPTH_8MB = 0x2,
540 MEM_DEPTH_16MB = 0x3,
541 MEM_DEPTH_32MB = 0x4,
542 MEM_DEPTH_64MB = 0x5,
543 MEM_DEPTH_128MB = 0x6,
544 MEM_DEPTH_256MB = 0x7,
545 MEM_DEPTH_512MB = 0x8,
546 MEM_DEPTH_1GB = 0x9,
547 MEM_DEPTH_2GB = 0xa,
548 MEM_DEPTH_4GB = 0xb,
549 MEM_DEPTH_8GB = 0xc,
550 MEM_DEPTH_16GB = 0xd,
551 MEM_DEPTH_32GB = 0xe
552} netxen_mem_depth_t;
553
554struct netxen_board_info {
555 u32 header_version;
556
557 u32 board_mfg;
558 u32 board_type;
559 u32 board_num;
560 u32 chip_id;
561 u32 chip_minor;
562 u32 chip_major;
563 u32 chip_pkg;
564 u32 chip_lot;
565
566 u32 port_mask; /* available niu ports */
567 u32 peg_mask; /* available pegs */
568 u32 icache_ok; /* can we run with icache? */
569 u32 dcache_ok; /* can we run with dcache? */
570 u32 casper_ok;
571
572 u32 mac_addr_lo_0;
573 u32 mac_addr_lo_1;
574 u32 mac_addr_lo_2;
575 u32 mac_addr_lo_3;
576
577 /* MN-related config */
578 u32 mn_sync_mode; /* enable/ sync shift cclk/ sync shift mclk */
579 u32 mn_sync_shift_cclk;
580 u32 mn_sync_shift_mclk;
581 u32 mn_wb_en;
582 u32 mn_crystal_freq; /* in MHz */
583 u32 mn_speed; /* in MHz */
584 u32 mn_org;
585 u32 mn_depth;
586 u32 mn_ranks_0; /* ranks per slot */
587 u32 mn_ranks_1; /* ranks per slot */
588 u32 mn_rd_latency_0;
589 u32 mn_rd_latency_1;
590 u32 mn_rd_latency_2;
591 u32 mn_rd_latency_3;
592 u32 mn_rd_latency_4;
593 u32 mn_rd_latency_5;
594 u32 mn_rd_latency_6;
595 u32 mn_rd_latency_7;
596 u32 mn_rd_latency_8;
597 u32 mn_dll_val[18];
598 u32 mn_mode_reg; /* MIU DDR Mode Register */
599 u32 mn_ext_mode_reg; /* MIU DDR Extended Mode Register */
600 u32 mn_timing_0; /* MIU Memory Control Timing Rgister */
601 u32 mn_timing_1; /* MIU Extended Memory Ctrl Timing Register */
602 u32 mn_timing_2; /* MIU Extended Memory Ctrl Timing2 Register */
603
604 /* SN-related config */
605 u32 sn_sync_mode; /* enable/ sync shift cclk / sync shift mclk */
606 u32 sn_pt_mode; /* pass through mode */
607 u32 sn_ecc_en;
608 u32 sn_wb_en;
609 u32 sn_crystal_freq;
610 u32 sn_speed;
611 u32 sn_org;
612 u32 sn_depth;
613 u32 sn_dll_tap;
614 u32 sn_rd_latency;
615
616 u32 mac_addr_hi_0;
617 u32 mac_addr_hi_1;
618 u32 mac_addr_hi_2;
619 u32 mac_addr_hi_3;
620
621 u32 magic; /* indicates flash has been initialized */
622
623 u32 mn_rdimm;
624 u32 mn_dll_override;
625
626};
627
628#define FLASH_NUM_PORTS (4)
629
630struct netxen_flash_mac_addr {
631 u32 flash_addr[32];
632};
633
634struct netxen_user_old_info {
635 u8 flash_md5[16];
636 u8 crbinit_md5[16];
637 u8 brdcfg_md5[16];
638 /* bootloader */
639 u32 bootld_version;
640 u32 bootld_size;
641 u8 bootld_md5[16];
642 /* image */
643 u32 image_version;
644 u32 image_size;
645 u8 image_md5[16];
646 /* primary image status */
647 u32 primary_status;
648 u32 secondary_present;
649
650 /* MAC address , 4 ports */
651 struct netxen_flash_mac_addr mac_addr[FLASH_NUM_PORTS];
652};
653#define FLASH_NUM_MAC_PER_PORT 32
654struct netxen_user_info {
655 u8 flash_md5[16 * 64];
656 /* bootloader */
657 u32 bootld_version;
658 u32 bootld_size;
659 /* image */
660 u32 image_version;
661 u32 image_size;
662 /* primary image status */
663 u32 primary_status;
664 u32 secondary_present;
665
666 /* MAC address , 4 ports, 32 address per port */
667 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
668 u32 sub_sys_id;
669 u8 serial_num[32];
670
671 /* Any user defined data */
672};
673
674/*
675 * Flash Layout - new format.
676 */
677struct netxen_new_user_info {
678 u8 flash_md5[16 * 64];
679 /* bootloader */
680 u32 bootld_version;
681 u32 bootld_size;
682 /* image */
683 u32 image_version;
684 u32 image_size;
685 /* primary image status */
686 u32 primary_status;
687 u32 secondary_present;
688
689 /* MAC address , 4 ports, 32 address per port */
690 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
691 u32 sub_sys_id;
692 u8 serial_num[32];
693
694 /* Any user defined data */
695};
696
697#define SECONDARY_IMAGE_PRESENT 0xb3b4b5b6
698#define SECONDARY_IMAGE_ABSENT 0xffffffff
699#define PRIMARY_IMAGE_GOOD 0x5a5a5a5a
700#define PRIMARY_IMAGE_BAD 0xffffffff
701
702/* Flash memory map */
703typedef enum {
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700704 NETXEN_CRBINIT_START = 0, /* Crbinit section */
705 NETXEN_BRDCFG_START = 0x4000, /* board config */
706 NETXEN_INITCODE_START = 0x6000, /* pegtune code */
707 NETXEN_BOOTLD_START = 0x10000, /* bootld */
708 NETXEN_IMAGE_START = 0x43000, /* compressed image */
709 NETXEN_SECONDARY_START = 0x200000, /* backup images */
710 NETXEN_PXE_START = 0x3E0000, /* user defined region */
711 NETXEN_USER_START = 0x3E8000, /* User defined region for new boards */
712 NETXEN_FIXED_START = 0x3F0000 /* backup of crbinit */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400713} netxen_flash_map_t;
714
Dhananjay Phadkeba599d42009-02-24 16:38:22 -0800715#define NX_FW_VERSION_OFFSET (NETXEN_USER_START+0x408)
716#define NX_FW_SIZE_OFFSET (NETXEN_USER_START+0x40c)
717#define NX_BIOS_VERSION_OFFSET (NETXEN_USER_START+0x83c)
718#define NX_FW_MAGIC_OFFSET (NETXEN_BRDCFG_START+0x128)
719#define NX_FW_MIN_SIZE (0x3fffff)
720#define NX_P2_MN_ROMIMAGE "nxromimg.bin"
721#define NX_P3_CT_ROMIMAGE "nx3fwct.bin"
722#define NX_P3_MN_ROMIMAGE "nx3fwmn.bin"
723
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700724#define NETXEN_USER_START_OLD NETXEN_PXE_START /* for backward compatibility */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400725
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700726#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)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800735#define PFX "NetXen: "
736extern char netxen_nic_driver_name[];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400737
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 { \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700744 printk(KERN_##klevel PFX "%s: %s: " fmt, __func__,\
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700745 (adapter != NULL && adapter->netdev != NULL) ? \
746 adapter->netdev->name : NULL, \
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400747 ## 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;
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800759 ulong length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400760};
761
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700762#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}
Jeff Garzik47906542007-11-23 21:23:36 -0500768
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700769#define _netxen_clear_bits(config_word, start, bits) {\
770 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start)); \
771 (config_word) &= ~__tmask; \
Jeff Garzik47906542007-11-23 21:23:36 -0500772}
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700773
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400774/* 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];
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800785 u32 frag_count;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400786};
787
788/* In rx_buffer, we do not need multiple fragments as is a single buffer */
789struct netxen_rx_buffer {
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700790 struct list_head list;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400791 struct sk_buff *skb;
792 u64 dma;
793 u16 ref_handle;
794 u16 state;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800795 u32 lro_expected_frags;
796 u32 lro_current_frags;
797 u32 lro_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400798};
799
800/* Board types */
801#define NETXEN_NIC_GBE 0x01
802#define NETXEN_NIC_XGBE 0x02
803
804/*
805 * One hardware_context{} per adapter
806 * contains interrupt info as well shared hardware info.
807 */
808struct netxen_hardware_context {
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800809 void __iomem *pci_base0;
810 void __iomem *pci_base1;
811 void __iomem *pci_base2;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700812 unsigned long first_page_group_end;
813 unsigned long first_page_group_start;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800814 void __iomem *db_base;
815 unsigned long db_len;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -0700816 unsigned long pci_len0;
817
Dhananjay Phadke29566402008-07-21 19:44:04 -0700818 u8 cut_through;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -0700819 int qdr_sn_window;
820 int ddr_mn_window;
821 unsigned long mn_win_crb;
822 unsigned long ms_win_crb;
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800823
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400824 u8 revision_id;
825 u16 board_type;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400826 struct netxen_board_info boardcfg;
Dhananjay Phadkea97342f2008-07-21 19:44:05 -0700827 u32 linkup;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400828 /* Address of cmd ring in Phantom */
829 struct cmd_desc_type0 *cmd_desc_head;
830 dma_addr_t cmd_desc_phys_addr;
831 struct netxen_adapter *adapter;
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -0700832 int pci_func;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400833};
834
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800835#define RCV_RING_LRO RCV_DESC_LRO
836
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400837#define MINIMUM_ETHERNET_FRAME_SIZE 64 /* With FCS */
838#define ETHERNET_FCS_SIZE 4
839
840struct netxen_adapter_stats {
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700841 u64 rcvdbadskb;
842 u64 xmitcalled;
843 u64 xmitedframes;
844 u64 xmitfinished;
845 u64 badskblen;
846 u64 nocmddescriptor;
847 u64 polled;
Dhananjay Phadked1847a72008-03-17 19:59:51 -0700848 u64 rxdropped;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700849 u64 txdropped;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700850 u64 csummed;
851 u64 no_rcv;
852 u64 rxbytes;
853 u64 txbytes;
854 u64 ints;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400855};
856
857/*
858 * Rcv Descriptor Context. One such per Rcv Descriptor. There may
859 * be one Rcv Descriptor for normal packets, one for jumbo and may be others.
860 */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700861struct nx_host_rds_ring {
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400862 u32 flags;
863 u32 producer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400864 dma_addr_t phys_addr;
Dhananjay Phadke7830b222008-07-21 19:44:00 -0700865 u32 crb_rcv_producer; /* reg offset */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400866 struct rcv_desc *desc_head; /* address of rx ring in Phantom */
867 u32 max_rx_desc_count;
868 u32 dma_size;
869 u32 skb_size;
870 struct netxen_rx_buffer *rx_buf_arr; /* rx buffers for receive */
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700871 struct list_head free_list;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400872};
873
874/*
875 * Receive context. There is one such structure per instance of the
876 * receive processing. Any state information that is relevant to
877 * the receive, and is must be in this structure. The global data may be
878 * present elsewhere.
879 */
880struct netxen_recv_context {
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700881 u32 state;
882 u16 context_id;
883 u16 virt_port;
884
885 struct nx_host_rds_ring rds_rings[NUM_RCV_DESC_RINGS];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400886 u32 status_rx_consumer;
Dhananjay Phadke7830b222008-07-21 19:44:00 -0700887 u32 crb_sts_consumer; /* reg offset */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400888 dma_addr_t rcv_status_desc_phys_addr;
889 struct status_desc *rcv_status_desc_head;
890};
891
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700892/* New HW context creation */
893
894#define NX_OS_CRB_RETRY_COUNT 4000
895#define NX_CDRP_SIGNATURE_MAKE(pcifn, version) \
896 (((pcifn) & 0xff) | (((version) & 0xff) << 8) | (0xcafe << 16))
897
898#define NX_CDRP_CLEAR 0x00000000
899#define NX_CDRP_CMD_BIT 0x80000000
900
901/*
902 * All responses must have the NX_CDRP_CMD_BIT cleared
903 * in the crb NX_CDRP_CRB_OFFSET.
904 */
905#define NX_CDRP_FORM_RSP(rsp) (rsp)
906#define NX_CDRP_IS_RSP(rsp) (((rsp) & NX_CDRP_CMD_BIT) == 0)
907
908#define NX_CDRP_RSP_OK 0x00000001
909#define NX_CDRP_RSP_FAIL 0x00000002
910#define NX_CDRP_RSP_TIMEOUT 0x00000003
911
912/*
913 * All commands must have the NX_CDRP_CMD_BIT set in
914 * the crb NX_CDRP_CRB_OFFSET.
915 */
916#define NX_CDRP_FORM_CMD(cmd) (NX_CDRP_CMD_BIT | (cmd))
917#define NX_CDRP_IS_CMD(cmd) (((cmd) & NX_CDRP_CMD_BIT) != 0)
918
919#define NX_CDRP_CMD_SUBMIT_CAPABILITIES 0x00000001
920#define NX_CDRP_CMD_READ_MAX_RDS_PER_CTX 0x00000002
921#define NX_CDRP_CMD_READ_MAX_SDS_PER_CTX 0x00000003
922#define NX_CDRP_CMD_READ_MAX_RULES_PER_CTX 0x00000004
923#define NX_CDRP_CMD_READ_MAX_RX_CTX 0x00000005
924#define NX_CDRP_CMD_READ_MAX_TX_CTX 0x00000006
925#define NX_CDRP_CMD_CREATE_RX_CTX 0x00000007
926#define NX_CDRP_CMD_DESTROY_RX_CTX 0x00000008
927#define NX_CDRP_CMD_CREATE_TX_CTX 0x00000009
928#define NX_CDRP_CMD_DESTROY_TX_CTX 0x0000000a
929#define NX_CDRP_CMD_SETUP_STATISTICS 0x0000000e
930#define NX_CDRP_CMD_GET_STATISTICS 0x0000000f
931#define NX_CDRP_CMD_DELETE_STATISTICS 0x00000010
932#define NX_CDRP_CMD_SET_MTU 0x00000012
933#define NX_CDRP_CMD_MAX 0x00000013
934
935#define NX_RCODE_SUCCESS 0
936#define NX_RCODE_NO_HOST_MEM 1
937#define NX_RCODE_NO_HOST_RESOURCE 2
938#define NX_RCODE_NO_CARD_CRB 3
939#define NX_RCODE_NO_CARD_MEM 4
940#define NX_RCODE_NO_CARD_RESOURCE 5
941#define NX_RCODE_INVALID_ARGS 6
942#define NX_RCODE_INVALID_ACTION 7
943#define NX_RCODE_INVALID_STATE 8
944#define NX_RCODE_NOT_SUPPORTED 9
945#define NX_RCODE_NOT_PERMITTED 10
946#define NX_RCODE_NOT_READY 11
947#define NX_RCODE_DOES_NOT_EXIST 12
948#define NX_RCODE_ALREADY_EXISTS 13
949#define NX_RCODE_BAD_SIGNATURE 14
950#define NX_RCODE_CMD_NOT_IMPL 15
951#define NX_RCODE_CMD_INVALID 16
952#define NX_RCODE_TIMEOUT 17
953#define NX_RCODE_CMD_FAILED 18
954#define NX_RCODE_MAX_EXCEEDED 19
955#define NX_RCODE_MAX 20
956
957#define NX_DESTROY_CTX_RESET 0
958#define NX_DESTROY_CTX_D3_RESET 1
959#define NX_DESTROY_CTX_MAX 2
960
961/*
962 * Capabilities
963 */
964#define NX_CAP_BIT(class, bit) (1 << bit)
965#define NX_CAP0_LEGACY_CONTEXT NX_CAP_BIT(0, 0)
966#define NX_CAP0_MULTI_CONTEXT NX_CAP_BIT(0, 1)
967#define NX_CAP0_LEGACY_MN NX_CAP_BIT(0, 2)
968#define NX_CAP0_LEGACY_MS NX_CAP_BIT(0, 3)
969#define NX_CAP0_CUT_THROUGH NX_CAP_BIT(0, 4)
970#define NX_CAP0_LRO NX_CAP_BIT(0, 5)
971#define NX_CAP0_LSO NX_CAP_BIT(0, 6)
972#define NX_CAP0_JUMBO_CONTIGUOUS NX_CAP_BIT(0, 7)
973#define NX_CAP0_LRO_CONTIGUOUS NX_CAP_BIT(0, 8)
974
975/*
976 * Context state
977 */
978#define NX_HOST_CTX_STATE_FREED 0
979#define NX_HOST_CTX_STATE_ALLOCATED 1
980#define NX_HOST_CTX_STATE_ACTIVE 2
981#define NX_HOST_CTX_STATE_DISABLED 3
982#define NX_HOST_CTX_STATE_QUIESCED 4
983#define NX_HOST_CTX_STATE_MAX 5
984
985/*
986 * Rx context
987 */
988
989typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -0800990 __le64 host_phys_addr; /* Ring base addr */
991 __le32 ring_size; /* Ring entries */
992 __le16 msi_index;
993 __le16 rsvd; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700994} nx_hostrq_sds_ring_t;
995
996typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -0800997 __le64 host_phys_addr; /* Ring base addr */
998 __le64 buff_size; /* Packet buffer size */
999 __le32 ring_size; /* Ring entries */
1000 __le32 ring_kind; /* Class of ring */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001001} nx_hostrq_rds_ring_t;
1002
1003typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001004 __le64 host_rsp_dma_addr; /* Response dma'd here */
1005 __le32 capabilities[4]; /* Flag bit vector */
1006 __le32 host_int_crb_mode; /* Interrupt crb usage */
1007 __le32 host_rds_crb_mode; /* RDS crb usage */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001008 /* These ring offsets are relative to data[0] below */
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001009 __le32 rds_ring_offset; /* Offset to RDS config */
1010 __le32 sds_ring_offset; /* Offset to SDS config */
1011 __le16 num_rds_rings; /* Count of RDS rings */
1012 __le16 num_sds_rings; /* Count of SDS rings */
1013 __le16 rsvd1; /* Padding */
1014 __le16 rsvd2; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001015 u8 reserved[128]; /* reserve space for future expansion*/
1016 /* MUST BE 64-bit aligned.
1017 The following is packed:
1018 - N hostrq_rds_rings
1019 - N hostrq_sds_rings */
1020 char data[0];
1021} nx_hostrq_rx_ctx_t;
1022
1023typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001024 __le32 host_producer_crb; /* Crb to use */
1025 __le32 rsvd1; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001026} nx_cardrsp_rds_ring_t;
1027
1028typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001029 __le32 host_consumer_crb; /* Crb to use */
1030 __le32 interrupt_crb; /* Crb to use */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001031} nx_cardrsp_sds_ring_t;
1032
1033typedef struct {
1034 /* These ring offsets are relative to data[0] below */
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001035 __le32 rds_ring_offset; /* Offset to RDS config */
1036 __le32 sds_ring_offset; /* Offset to SDS config */
1037 __le32 host_ctx_state; /* Starting State */
1038 __le32 num_fn_per_port; /* How many PCI fn share the port */
1039 __le16 num_rds_rings; /* Count of RDS rings */
1040 __le16 num_sds_rings; /* Count of SDS rings */
1041 __le16 context_id; /* Handle for context */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001042 u8 phys_port; /* Physical id of port */
1043 u8 virt_port; /* Virtual/Logical id of port */
1044 u8 reserved[128]; /* save space for future expansion */
1045 /* MUST BE 64-bit aligned.
1046 The following is packed:
1047 - N cardrsp_rds_rings
1048 - N cardrs_sds_rings */
1049 char data[0];
1050} nx_cardrsp_rx_ctx_t;
1051
1052#define SIZEOF_HOSTRQ_RX(HOSTRQ_RX, rds_rings, sds_rings) \
1053 (sizeof(HOSTRQ_RX) + \
1054 (rds_rings)*(sizeof(nx_hostrq_rds_ring_t)) + \
1055 (sds_rings)*(sizeof(nx_hostrq_sds_ring_t)))
1056
1057#define SIZEOF_CARDRSP_RX(CARDRSP_RX, rds_rings, sds_rings) \
1058 (sizeof(CARDRSP_RX) + \
1059 (rds_rings)*(sizeof(nx_cardrsp_rds_ring_t)) + \
1060 (sds_rings)*(sizeof(nx_cardrsp_sds_ring_t)))
1061
1062/*
1063 * Tx context
1064 */
1065
1066typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001067 __le64 host_phys_addr; /* Ring base addr */
1068 __le32 ring_size; /* Ring entries */
1069 __le32 rsvd; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001070} nx_hostrq_cds_ring_t;
1071
1072typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001073 __le64 host_rsp_dma_addr; /* Response dma'd here */
1074 __le64 cmd_cons_dma_addr; /* */
1075 __le64 dummy_dma_addr; /* */
1076 __le32 capabilities[4]; /* Flag bit vector */
1077 __le32 host_int_crb_mode; /* Interrupt crb usage */
1078 __le32 rsvd1; /* Padding */
1079 __le16 rsvd2; /* Padding */
1080 __le16 interrupt_ctl;
1081 __le16 msi_index;
1082 __le16 rsvd3; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001083 nx_hostrq_cds_ring_t cds_ring; /* Desc of cds ring */
1084 u8 reserved[128]; /* future expansion */
1085} nx_hostrq_tx_ctx_t;
1086
1087typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001088 __le32 host_producer_crb; /* Crb to use */
1089 __le32 interrupt_crb; /* Crb to use */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001090} nx_cardrsp_cds_ring_t;
1091
1092typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001093 __le32 host_ctx_state; /* Starting state */
1094 __le16 context_id; /* Handle for context */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001095 u8 phys_port; /* Physical id of port */
1096 u8 virt_port; /* Virtual/Logical id of port */
1097 nx_cardrsp_cds_ring_t cds_ring; /* Card cds settings */
1098 u8 reserved[128]; /* future expansion */
1099} nx_cardrsp_tx_ctx_t;
1100
1101#define SIZEOF_HOSTRQ_TX(HOSTRQ_TX) (sizeof(HOSTRQ_TX))
1102#define SIZEOF_CARDRSP_TX(CARDRSP_TX) (sizeof(CARDRSP_TX))
1103
1104/* CRB */
1105
1106#define NX_HOST_RDS_CRB_MODE_UNIQUE 0
1107#define NX_HOST_RDS_CRB_MODE_SHARED 1
1108#define NX_HOST_RDS_CRB_MODE_CUSTOM 2
1109#define NX_HOST_RDS_CRB_MODE_MAX 3
1110
1111#define NX_HOST_INT_CRB_MODE_UNIQUE 0
1112#define NX_HOST_INT_CRB_MODE_SHARED 1
1113#define NX_HOST_INT_CRB_MODE_NORX 2
1114#define NX_HOST_INT_CRB_MODE_NOTX 3
1115#define NX_HOST_INT_CRB_MODE_NORXTX 4
1116
1117
1118/* MAC */
1119
1120#define MC_COUNT_P2 16
1121#define MC_COUNT_P3 38
1122
1123#define NETXEN_MAC_NOOP 0
1124#define NETXEN_MAC_ADD 1
1125#define NETXEN_MAC_DEL 2
1126
1127typedef struct nx_mac_list_s {
1128 struct nx_mac_list_s *next;
1129 uint8_t mac_addr[MAX_ADDR_LEN];
1130} nx_mac_list_t;
1131
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001132/*
1133 * Interrupt coalescing defaults. The defaults are for 1500 MTU. It is
1134 * adjusted based on configured MTU.
1135 */
1136#define NETXEN_DEFAULT_INTR_COALESCE_RX_TIME_US 3
1137#define NETXEN_DEFAULT_INTR_COALESCE_RX_PACKETS 256
1138#define NETXEN_DEFAULT_INTR_COALESCE_TX_PACKETS 64
1139#define NETXEN_DEFAULT_INTR_COALESCE_TX_TIME_US 4
1140
1141#define NETXEN_NIC_INTR_DEFAULT 0x04
1142
1143typedef union {
1144 struct {
1145 uint16_t rx_packets;
1146 uint16_t rx_time_us;
1147 uint16_t tx_packets;
1148 uint16_t tx_time_us;
1149 } data;
1150 uint64_t word;
1151} nx_nic_intr_coalesce_data_t;
1152
1153typedef struct {
1154 uint16_t stats_time_us;
1155 uint16_t rate_sample_time;
1156 uint16_t flags;
1157 uint16_t rsvd_1;
1158 uint32_t low_threshold;
1159 uint32_t high_threshold;
1160 nx_nic_intr_coalesce_data_t normal;
1161 nx_nic_intr_coalesce_data_t low;
1162 nx_nic_intr_coalesce_data_t high;
1163 nx_nic_intr_coalesce_data_t irq;
1164} nx_nic_intr_coalesce_t;
1165
Dhananjay Phadke9ad27642008-08-01 03:14:59 -07001166#define NX_HOST_REQUEST 0x13
1167#define NX_NIC_REQUEST 0x14
1168
1169#define NX_MAC_EVENT 0x1
1170
1171enum {
1172 NX_NIC_H2C_OPCODE_START = 0,
1173 NX_NIC_H2C_OPCODE_CONFIG_RSS,
1174 NX_NIC_H2C_OPCODE_CONFIG_RSS_TBL,
1175 NX_NIC_H2C_OPCODE_CONFIG_INTR_COALESCE,
1176 NX_NIC_H2C_OPCODE_CONFIG_LED,
1177 NX_NIC_H2C_OPCODE_CONFIG_PROMISCUOUS,
1178 NX_NIC_H2C_OPCODE_CONFIG_L2_MAC,
1179 NX_NIC_H2C_OPCODE_LRO_REQUEST,
1180 NX_NIC_H2C_OPCODE_GET_SNMP_STATS,
1181 NX_NIC_H2C_OPCODE_PROXY_START_REQUEST,
1182 NX_NIC_H2C_OPCODE_PROXY_STOP_REQUEST,
1183 NX_NIC_H2C_OPCODE_PROXY_SET_MTU,
1184 NX_NIC_H2C_OPCODE_PROXY_SET_VPORT_MISS_MODE,
1185 NX_H2P_OPCODE_GET_FINGER_PRINT_REQUEST,
1186 NX_H2P_OPCODE_INSTALL_LICENSE_REQUEST,
1187 NX_H2P_OPCODE_GET_LICENSE_CAPABILITY_REQUEST,
1188 NX_NIC_H2C_OPCODE_GET_NET_STATS,
1189 NX_NIC_H2C_OPCODE_LAST
1190};
1191
1192#define VPORT_MISS_MODE_DROP 0 /* drop all unmatched */
1193#define VPORT_MISS_MODE_ACCEPT_ALL 1 /* accept all packets */
1194#define VPORT_MISS_MODE_ACCEPT_MULTI 2 /* accept unmatched multicast */
1195
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001196typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001197 __le64 qhdr;
1198 __le64 req_hdr;
1199 __le64 words[6];
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001200} nx_nic_req_t;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001201
1202typedef struct {
1203 u8 op;
1204 u8 tag;
1205 u8 mac_addr[6];
1206} nx_mac_req_t;
1207
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001208#define MAX_PENDING_DESC_BLOCK_SIZE 64
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001209
Dhananjay Phadke29566402008-07-21 19:44:04 -07001210#define NETXEN_NIC_MSI_ENABLED 0x02
1211#define NETXEN_NIC_MSIX_ENABLED 0x04
1212#define NETXEN_IS_MSI_FAMILY(adapter) \
1213 ((adapter)->flags & (NETXEN_NIC_MSI_ENABLED | NETXEN_NIC_MSIX_ENABLED))
1214
Dhananjay Phadkeb3df68f2009-02-08 19:20:19 -08001215#define MSIX_ENTRIES_PER_ADAPTER 1
Dhananjay Phadke29566402008-07-21 19:44:04 -07001216#define NETXEN_MSIX_TBL_SPACE 8192
1217#define NETXEN_PCI_REG_MSIX_TBL 0x44
1218
1219#define NETXEN_DB_MAPSIZE_BYTES 0x1000
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001220
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001221#define NETXEN_NETDEV_WEIGHT 120
1222#define NETXEN_ADAPTER_UP_MAGIC 777
1223#define NETXEN_NIC_PEG_TUNE 0
1224
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001225struct netxen_dummy_dma {
1226 void *addr;
1227 dma_addr_t phys_addr;
1228};
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001229
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001230struct netxen_adapter {
1231 struct netxen_hardware_context ahw;
Jeff Garzik47906542007-11-23 21:23:36 -05001232
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001233 struct net_device *netdev;
1234 struct pci_dev *pdev;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001235 int pci_using_dac;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001236 struct napi_struct napi;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -07001237 struct net_device_stats net_stats;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001238 int mtu;
1239 int portnum;
Dhananjay Phadke3276fba2008-06-15 22:59:44 -07001240 u8 physical_port;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001241 u16 tx_context_id;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001242
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001243 uint8_t mc_enabled;
1244 uint8_t max_mc_count;
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001245 nx_mac_list_t *mac_list;
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001246
Dhananjay Phadke29566402008-07-21 19:44:04 -07001247 struct netxen_legacy_intr_set legacy_intr;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001248 u32 crb_intr_mask;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001249
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001250 struct work_struct watchdog_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001251 struct timer_list watchdog_timer;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001252 struct work_struct tx_timeout_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001253
1254 u32 curr_window;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001255 u32 crb_win;
1256 rwlock_t adapter_lock;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001257
Dhananjay Phadke29566402008-07-21 19:44:04 -07001258 uint64_t dma_mask;
1259
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001260 u32 cmd_producer;
Al Virof305f782007-12-22 19:44:00 +00001261 __le32 *cmd_consumer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001262 u32 last_cmd_consumer;
Dhananjay Phadke7830b222008-07-21 19:44:00 -07001263 u32 crb_addr_cmd_producer;
1264 u32 crb_addr_cmd_consumer;
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -07001265
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001266 u32 max_tx_desc_count;
1267 u32 max_rx_desc_count;
1268 u32 max_jumbo_rx_desc_count;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001269 u32 max_lro_rx_desc_count;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001270
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001271 int max_rds_rings;
1272
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001273 u32 flags;
1274 u32 irq;
1275 int driver_mismatch;
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001276 u32 temp;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001277
Dhananjay Phadke29566402008-07-21 19:44:04 -07001278 u32 fw_major;
1279
1280 u8 msix_supported;
1281 u8 max_possible_rss_rings;
1282 struct msix_entry msix_entries[MSIX_ENTRIES_PER_ADAPTER];
1283
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001284 struct netxen_adapter_stats stats;
Jeff Garzik47906542007-11-23 21:23:36 -05001285
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001286 u16 link_speed;
1287 u16 link_duplex;
1288 u16 state;
1289 u16 link_autoneg;
Dhananjay Phadke200eef22007-09-03 10:33:35 +05301290 int rx_csum;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001291 int status;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001292
1293 struct netxen_cmd_buffer *cmd_buf_arr; /* Command buffers for xmit */
1294
1295 /*
1296 * Receive instances. These can be either one per port,
1297 * or one per peg, etc.
1298 */
1299 struct netxen_recv_context recv_ctx[MAX_RCV_CTX];
1300
1301 int is_up;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001302 struct netxen_dummy_dma dummy_dma;
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001303 nx_nic_intr_coalesce_t coal;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001304
1305 /* Context interface shared between card and host */
1306 struct netxen_ring_ctx *ctx_desc;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001307 dma_addr_t ctx_desc_phys_addr;
dhananjay.phadke@gmail.com2d1a3bb2007-07-02 00:26:00 +05301308 int intr_scheme;
Dhananjay Phadke443be792008-03-17 19:59:48 -07001309 int msi_mode;
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001310 int (*enable_phy_interrupts) (struct netxen_adapter *);
1311 int (*disable_phy_interrupts) (struct netxen_adapter *);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001312 int (*macaddr_set) (struct netxen_adapter *, netxen_ethernet_macaddr_t);
1313 int (*set_mtu) (struct netxen_adapter *, int);
Dhananjay Phadke9ad27642008-08-01 03:14:59 -07001314 int (*set_promisc) (struct netxen_adapter *, u32);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001315 int (*phy_read) (struct netxen_adapter *, long reg, u32 *);
1316 int (*phy_write) (struct netxen_adapter *, long reg, u32 val);
Amit S. Kale80922fb2006-12-04 09:18:00 -08001317 int (*init_port) (struct netxen_adapter *, int);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001318 int (*stop_port) (struct netxen_adapter *);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001319
1320 int (*hw_read_wx)(struct netxen_adapter *, ulong, void *, int);
1321 int (*hw_write_wx)(struct netxen_adapter *, ulong, void *, int);
1322 int (*pci_mem_read)(struct netxen_adapter *, u64, void *, int);
1323 int (*pci_mem_write)(struct netxen_adapter *, u64, void *, int);
1324 int (*pci_write_immediate)(struct netxen_adapter *, u64, u32);
1325 u32 (*pci_read_immediate)(struct netxen_adapter *, u64);
1326 void (*pci_write_normalize)(struct netxen_adapter *, u64, u32);
1327 u32 (*pci_read_normalize)(struct netxen_adapter *, u64);
1328 unsigned long (*pci_set_window)(struct netxen_adapter *,
1329 unsigned long long);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001330}; /* netxen_adapter structure */
1331
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301332/*
1333 * NetXen dma watchdog control structure
1334 *
1335 * Bit 0 : enabled => R/O: 1 watchdog active, 0 inactive
1336 * Bit 1 : disable_request => 1 req disable dma watchdog
1337 * Bit 2 : enable_request => 1 req enable dma watchdog
1338 * Bit 3-31 : unused
1339 */
1340
1341#define netxen_set_dma_watchdog_disable_req(config_word) \
1342 _netxen_set_bits(config_word, 1, 1, 1)
1343#define netxen_set_dma_watchdog_enable_req(config_word) \
1344 _netxen_set_bits(config_word, 2, 1, 1)
1345#define netxen_get_dma_watchdog_enabled(config_word) \
1346 ((config_word) & 0x1)
1347#define netxen_get_dma_watchdog_disabled(config_word) \
1348 (((config_word) >> 1) & 0x1)
1349
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001350/* Max number of xmit producer threads that can run simultaneously */
1351#define MAX_XMIT_PRODUCERS 16
1352
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001353#define PCI_OFFSET_FIRST_RANGE(adapter, off) \
1354 ((adapter)->ahw.pci_base0 + (off))
1355#define PCI_OFFSET_SECOND_RANGE(adapter, off) \
1356 ((adapter)->ahw.pci_base1 + (off) - SECOND_PAGE_GROUP_START)
1357#define PCI_OFFSET_THIRD_RANGE(adapter, off) \
1358 ((adapter)->ahw.pci_base2 + (off) - THIRD_PAGE_GROUP_START)
1359
1360static inline void __iomem *pci_base_offset(struct netxen_adapter *adapter,
1361 unsigned long off)
1362{
1363 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1364 return (adapter->ahw.pci_base0 + off);
1365 } else if ((off < SECOND_PAGE_GROUP_END) &&
1366 (off >= SECOND_PAGE_GROUP_START)) {
1367 return (adapter->ahw.pci_base1 + off - SECOND_PAGE_GROUP_START);
1368 } else if ((off < THIRD_PAGE_GROUP_END) &&
1369 (off >= THIRD_PAGE_GROUP_START)) {
1370 return (adapter->ahw.pci_base2 + off - THIRD_PAGE_GROUP_START);
1371 }
1372 return NULL;
1373}
1374
1375static inline void __iomem *pci_base(struct netxen_adapter *adapter,
1376 unsigned long off)
1377{
1378 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1379 return adapter->ahw.pci_base0;
1380 } else if ((off < SECOND_PAGE_GROUP_END) &&
1381 (off >= SECOND_PAGE_GROUP_START)) {
1382 return adapter->ahw.pci_base1;
1383 } else if ((off < THIRD_PAGE_GROUP_END) &&
1384 (off >= THIRD_PAGE_GROUP_START)) {
1385 return adapter->ahw.pci_base2;
1386 }
1387 return NULL;
1388}
1389
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001390int netxen_niu_xgbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1391int netxen_niu_gbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1392int netxen_niu_xgbe_disable_phy_interrupts(struct netxen_adapter *adapter);
1393int netxen_niu_gbe_disable_phy_interrupts(struct netxen_adapter *adapter);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001394int netxen_niu_gbe_phy_read(struct netxen_adapter *adapter, long reg,
Al Viroa608ab9c2007-01-02 10:39:10 +00001395 __u32 * readval);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001396int netxen_niu_gbe_phy_write(struct netxen_adapter *adapter,
Al Viroa608ab9c2007-01-02 10:39:10 +00001397 long reg, __u32 val);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001398
1399/* Functions available from netxen_nic_hw.c */
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001400int netxen_nic_set_mtu_xgb(struct netxen_adapter *adapter, int new_mtu);
1401int netxen_nic_set_mtu_gb(struct netxen_adapter *adapter, int new_mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001402void netxen_nic_reg_write(struct netxen_adapter *adapter, u64 off, u32 val);
1403int netxen_nic_reg_read(struct netxen_adapter *adapter, u64 off);
1404void netxen_nic_write_w0(struct netxen_adapter *adapter, u32 index, u32 value);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001405void netxen_nic_read_w0(struct netxen_adapter *adapter, u32 index, u32 *value);
1406void netxen_nic_write_w1(struct netxen_adapter *adapter, u32 index, u32 value);
1407void netxen_nic_read_w1(struct netxen_adapter *adapter, u32 index, u32 *value);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001408
1409int netxen_nic_get_board_info(struct netxen_adapter *adapter);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001410
1411int netxen_nic_hw_read_wx_128M(struct netxen_adapter *adapter,
1412 ulong off, void *data, int len);
1413int netxen_nic_hw_write_wx_128M(struct netxen_adapter *adapter,
1414 ulong off, void *data, int len);
1415int netxen_nic_pci_mem_read_128M(struct netxen_adapter *adapter,
1416 u64 off, void *data, int size);
1417int netxen_nic_pci_mem_write_128M(struct netxen_adapter *adapter,
1418 u64 off, void *data, int size);
1419int netxen_nic_pci_write_immediate_128M(struct netxen_adapter *adapter,
1420 u64 off, u32 data);
1421u32 netxen_nic_pci_read_immediate_128M(struct netxen_adapter *adapter, u64 off);
1422void netxen_nic_pci_write_normalize_128M(struct netxen_adapter *adapter,
1423 u64 off, u32 data);
1424u32 netxen_nic_pci_read_normalize_128M(struct netxen_adapter *adapter, u64 off);
1425unsigned long netxen_nic_pci_set_window_128M(struct netxen_adapter *adapter,
1426 unsigned long long addr);
1427void netxen_nic_pci_change_crbwindow_128M(struct netxen_adapter *adapter,
1428 u32 wndw);
1429
1430int netxen_nic_hw_read_wx_2M(struct netxen_adapter *adapter,
1431 ulong off, void *data, int len);
1432int netxen_nic_hw_write_wx_2M(struct netxen_adapter *adapter,
1433 ulong off, void *data, int len);
1434int netxen_nic_pci_mem_read_2M(struct netxen_adapter *adapter,
1435 u64 off, void *data, int size);
1436int netxen_nic_pci_mem_write_2M(struct netxen_adapter *adapter,
1437 u64 off, void *data, int size);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001438void netxen_crb_writelit_adapter(struct netxen_adapter *adapter,
1439 unsigned long off, int data);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001440int netxen_nic_pci_write_immediate_2M(struct netxen_adapter *adapter,
1441 u64 off, u32 data);
1442u32 netxen_nic_pci_read_immediate_2M(struct netxen_adapter *adapter, u64 off);
1443void netxen_nic_pci_write_normalize_2M(struct netxen_adapter *adapter,
1444 u64 off, u32 data);
1445u32 netxen_nic_pci_read_normalize_2M(struct netxen_adapter *adapter, u64 off);
1446unsigned long netxen_nic_pci_set_window_2M(struct netxen_adapter *adapter,
1447 unsigned long long addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001448
1449/* Functions from netxen_nic_init.c */
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001450void netxen_free_adapter_offload(struct netxen_adapter *adapter);
1451int netxen_initialize_adapter_offload(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301452int netxen_phantom_init(struct netxen_adapter *adapter, int pegtune_val);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001453int netxen_receive_peg_ready(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301454int netxen_load_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001455int netxen_pinit_from_rom(struct netxen_adapter *adapter, int verbose);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001456
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001457int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr, int *valp);
Jeff Garzik47906542007-11-23 21:23:36 -05001458int netxen_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001459 u8 *bytes, size_t size);
Jeff Garzik47906542007-11-23 21:23:36 -05001460int netxen_rom_fast_write_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001461 u8 *bytes, size_t size);
1462int netxen_flash_unlock(struct netxen_adapter *adapter);
1463int netxen_backup_crbinit(struct netxen_adapter *adapter);
1464int netxen_flash_erase_secondary(struct netxen_adapter *adapter);
1465int netxen_flash_erase_primary(struct netxen_adapter *adapter);
Amit S. Kalee45d9ab2007-02-09 05:49:08 -08001466void netxen_halt_pegs(struct netxen_adapter *adapter);
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001467
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001468int netxen_rom_se(struct netxen_adapter *adapter, int addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001469
Dhananjay Phadke29566402008-07-21 19:44:04 -07001470int netxen_alloc_sw_resources(struct netxen_adapter *adapter);
1471void netxen_free_sw_resources(struct netxen_adapter *adapter);
1472
1473int netxen_alloc_hw_resources(struct netxen_adapter *adapter);
1474void netxen_free_hw_resources(struct netxen_adapter *adapter);
1475
1476void netxen_release_rx_buffers(struct netxen_adapter *adapter);
1477void netxen_release_tx_buffers(struct netxen_adapter *adapter);
1478
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001479void netxen_initialize_adapter_ops(struct netxen_adapter *adapter);
1480int netxen_init_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001481void netxen_nic_clear_stats(struct netxen_adapter *adapter);
David Howells6d5aefb2006-12-05 19:36:26 +00001482void netxen_watchdog_task(struct work_struct *work);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001483void netxen_post_rx_buffers(struct netxen_adapter *adapter, u32 ctx,
1484 u32 ringid);
Dhananjay Phadke05aaa022008-03-17 19:59:49 -07001485int netxen_process_cmd_ring(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001486u32 netxen_process_rcv_ring(struct netxen_adapter *adapter, int ctx, int max);
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001487void netxen_p2_nic_set_multi(struct net_device *netdev);
1488void netxen_p3_nic_set_multi(struct net_device *netdev);
Dhananjay Phadke06e9d9f2009-01-14 20:49:22 -08001489void netxen_p3_free_mac_list(struct netxen_adapter *adapter);
Dhananjay Phadke9ad27642008-08-01 03:14:59 -07001490int netxen_p3_nic_set_promisc(struct netxen_adapter *adapter, u32);
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001491int netxen_config_intr_coalesce(struct netxen_adapter *adapter);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001492
Dhananjay Phadke9ad27642008-08-01 03:14:59 -07001493int nx_fw_cmd_set_mtu(struct netxen_adapter *adapter, int mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001494int netxen_nic_change_mtu(struct net_device *netdev, int new_mtu);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001495
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001496int netxen_nic_set_mac(struct net_device *netdev, void *p);
1497struct net_device_stats *netxen_nic_get_stats(struct net_device *netdev);
1498
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001499void netxen_nic_update_cmd_producer(struct netxen_adapter *adapter,
1500 uint32_t crb_producer);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001501
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001502/*
1503 * NetXen Board information
1504 */
1505
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001506#define NETXEN_MAX_SHORT_NAME 32
Amit S. Kale71bd7872006-12-01 05:36:22 -08001507struct netxen_brdinfo {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001508 netxen_brdtype_t brdtype; /* type of board */
1509 long ports; /* max no of physical ports */
1510 char short_name[NETXEN_MAX_SHORT_NAME];
Amit S. Kale71bd7872006-12-01 05:36:22 -08001511};
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001512
Amit S. Kale71bd7872006-12-01 05:36:22 -08001513static const struct netxen_brdinfo netxen_boards[] = {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001514 {NETXEN_BRDTYPE_P2_SB31_10G_CX4, 1, "XGb CX4"},
1515 {NETXEN_BRDTYPE_P2_SB31_10G_HMEZ, 1, "XGb HMEZ"},
1516 {NETXEN_BRDTYPE_P2_SB31_10G_IMEZ, 2, "XGb IMEZ"},
1517 {NETXEN_BRDTYPE_P2_SB31_10G, 1, "XGb XFP"},
1518 {NETXEN_BRDTYPE_P2_SB35_4G, 4, "Quad Gb"},
1519 {NETXEN_BRDTYPE_P2_SB31_2G, 2, "Dual Gb"},
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001520 {NETXEN_BRDTYPE_P3_REF_QG, 4, "Reference Quad Gig "},
1521 {NETXEN_BRDTYPE_P3_HMEZ, 2, "Dual XGb HMEZ"},
1522 {NETXEN_BRDTYPE_P3_10G_CX4_LP, 2, "Dual XGb CX4 LP"},
1523 {NETXEN_BRDTYPE_P3_4_GB, 4, "Quad Gig LP"},
1524 {NETXEN_BRDTYPE_P3_IMEZ, 2, "Dual XGb IMEZ"},
1525 {NETXEN_BRDTYPE_P3_10G_SFP_PLUS, 2, "Dual XGb SFP+ LP"},
1526 {NETXEN_BRDTYPE_P3_10000_BASE_T, 1, "XGB 10G BaseT LP"},
1527 {NETXEN_BRDTYPE_P3_XG_LOM, 2, "Dual XGb LOM"},
Dhananjay Phadkea70f9392008-08-01 03:14:56 -07001528 {NETXEN_BRDTYPE_P3_4_GB_MM, 4, "NX3031 Gigabit Ethernet"},
1529 {NETXEN_BRDTYPE_P3_10G_SFP_CT, 2, "NX3031 10 Gigabit Ethernet"},
1530 {NETXEN_BRDTYPE_P3_10G_SFP_QT, 2, "Quanta Dual XGb SFP+"},
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001531 {NETXEN_BRDTYPE_P3_10G_CX4, 2, "Reference Dual CX4 Option"},
1532 {NETXEN_BRDTYPE_P3_10G_XFP, 1, "Reference Single XFP Option"}
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001533};
1534
Denis Chengff8ac602007-09-02 18:30:18 +08001535#define NUM_SUPPORTED_BOARDS ARRAY_SIZE(netxen_boards)
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001536
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001537static inline void get_brd_name_by_type(u32 type, char *name)
1538{
1539 int i, found = 0;
1540 for (i = 0; i < NUM_SUPPORTED_BOARDS; ++i) {
1541 if (netxen_boards[i].brdtype == type) {
1542 strcpy(name, netxen_boards[i].short_name);
1543 found = 1;
1544 break;
1545 }
1546
1547 }
1548 if (!found)
1549 name = "Unknown";
1550}
1551
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301552static inline int
1553dma_watchdog_shutdown_request(struct netxen_adapter *adapter)
1554{
1555 u32 ctrl;
1556
1557 /* check if already inactive */
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001558 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301559 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1560 printk(KERN_ERR "failed to read dma watchdog status\n");
1561
1562 if (netxen_get_dma_watchdog_enabled(ctrl) == 0)
1563 return 1;
1564
1565 /* Send the disable request */
1566 netxen_set_dma_watchdog_disable_req(ctrl);
1567 netxen_crb_writelit_adapter(adapter,
1568 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1569
1570 return 0;
1571}
1572
1573static inline int
1574dma_watchdog_shutdown_poll_result(struct netxen_adapter *adapter)
1575{
1576 u32 ctrl;
1577
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001578 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301579 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1580 printk(KERN_ERR "failed to read dma watchdog status\n");
1581
dhananjay@netxen.comceded322007-07-19 14:41:09 +05301582 return (netxen_get_dma_watchdog_enabled(ctrl) == 0);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301583}
1584
1585static inline int
1586dma_watchdog_wakeup(struct netxen_adapter *adapter)
1587{
1588 u32 ctrl;
1589
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001590 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301591 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1592 printk(KERN_ERR "failed to read dma watchdog status\n");
1593
1594 if (netxen_get_dma_watchdog_enabled(ctrl))
1595 return 1;
1596
1597 /* send the wakeup request */
1598 netxen_set_dma_watchdog_enable_req(ctrl);
1599
1600 netxen_crb_writelit_adapter(adapter,
1601 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1602
1603 return 0;
1604}
1605
1606
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001607int netxen_is_flash_supported(struct netxen_adapter *adapter);
Dhananjay Phadke9dc28ef2008-08-08 00:08:39 -07001608int netxen_get_flash_mac_addr(struct netxen_adapter *adapter, __le64 *mac);
1609int netxen_p3_get_mac_addr(struct netxen_adapter *adapter, __le64 *mac);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001610extern void netxen_change_ringparam(struct netxen_adapter *adapter);
1611extern int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr,
1612 int *valp);
1613
1614extern struct ethtool_ops netxen_nic_ethtool_ops;
1615
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001616#endif /* __NETXEN_NIC_H_ */