blob: b5c0d66daf7e75d0a479ef39d5313739dfd9eab8 [file] [log] [blame]
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001/*
Dhananjay Phadke5d242f12009-02-25 15:57:56 +00002 * Copyright (C) 2003 - 2009 NetXen, Inc.
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003 * 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
Dhananjay Phadke5d242f12009-02-25 15:57:56 +000025 * NetXen Inc,
26 * 18922 Forge Drive
27 * Cupertino, CA 95014-0701
28 *
Amit S. Kale3d396eb2006-10-21 15:33:03 -040029 */
30
31#ifndef _NETXEN_NIC_H_
32#define _NETXEN_NIC_H_
33
Amit S. Kale3d396eb2006-10-21 15:33:03 -040034#include <linux/module.h>
35#include <linux/kernel.h>
36#include <linux/types.h>
37#include <linux/compiler.h>
38#include <linux/slab.h>
39#include <linux/delay.h>
40#include <linux/init.h>
41#include <linux/ioport.h>
42#include <linux/pci.h>
43#include <linux/netdevice.h>
44#include <linux/etherdevice.h>
45#include <linux/ip.h>
46#include <linux/in.h>
47#include <linux/tcp.h>
48#include <linux/skbuff.h>
Amit S. Kale3d396eb2006-10-21 15:33:03 -040049
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>
David S. Miller42555892008-07-22 18:29:10 -070057#include <linux/vmalloc.h>
Amit S. Kale3d396eb2006-10-21 15:33:03 -040058
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
Dhananjay Phadke58735562008-07-21 19:44:10 -070067#define _NETXEN_NIC_LINUX_MAJOR 4
68#define _NETXEN_NIC_LINUX_MINOR 0
Dhananjay Phadke11d89d62008-08-08 00:08:45 -070069#define _NETXEN_NIC_LINUX_SUBVERSION 11
70#define NETXEN_NIC_LINUX_VERSIONID "4.0.11"
Dhananjay Phadke58735562008-07-21 19:44:10 -070071
72#define NETXEN_VERSION_CODE(a, b, c) (((a) << 16) + ((b) << 8) + (c))
Amit S. Kale27d2ab52007-02-05 07:40:49 -080073
Mithlesh Thukral0d047612007-06-07 04:36:36 -070074#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)
Amit S. Kale3d396eb2006-10-21 15:33:03 -040078
Linsys Contractor Mithlesh Thukral0c25cfe2007-02-28 05:14:07 -080079#define PHAN_VENDOR_ID 0x4040
80
Amit S. Kale3d396eb2006-10-21 15:33:03 -040081#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)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -080085#define LRO_DESC_RINGSIZE \
86 (sizeof(rcvDesc_t) * adapter->max_lro_rx_desc_count)
Amit S. Kale3d396eb2006-10-21 15:33:03 -040087#define TX_RINGSIZE \
88 (sizeof(struct netxen_cmd_buffer) * adapter->max_tx_desc_count)
89#define RCV_BUFFSIZE \
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -070090 (sizeof(struct netxen_rx_buffer) * rds_ring->max_rx_desc_count)
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -070091#define find_diff_among(a,b,range) ((a)<(b)?((b)-(a)):((b)+(range)-(a)))
Amit S. Kale3d396eb2006-10-21 15:33:03 -040092
Amit S. Kaleed25ffa2006-12-04 09:23:25 -080093#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
Amit S. Kale27d2ab52007-02-05 07:40:49 -080097#define FLASH_SUCCESS 0
Amit S. Kale3d396eb2006-10-21 15:33:03 -040098
99#define ADDR_IN_WINDOW1(off) \
100 ((off > NETXEN_CRB_PCIX_HOST2) && (off < NETXEN_CRB_MAX)) ? 1 : 0
101
Jeff Garzik47906542007-11-23 21:23:36 -0500102/*
103 * normalize a 64MB crb address to 32MB PCI window
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400104 * To use NETXEN_CRB_NORMALIZE, window _must_ be set to 1
105 */
Amit S. Kale80922fb2006-12-04 09:18:00 -0800106#define NETXEN_CRB_NORMAL(reg) \
107 ((reg) - NETXEN_CRB_PCIX_HOST2 + NETXEN_CRB_PCIX_HOST)
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800108
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400109#define NETXEN_CRB_NORMALIZE(adapter, reg) \
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800110 pci_base_offset(adapter, NETXEN_CRB_NORMAL(reg))
111
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800112#define DB_NORMALIZE(adapter, off) \
113 (adapter->ahw.db_base + (off))
114
115#define NX_P2_C0 0x24
116#define NX_P2_C1 0x25
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700117#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)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800124
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800125#define FIRST_PAGE_GROUP_START 0
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800126#define FIRST_PAGE_GROUP_END 0x100000
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800127
Mithlesh Thukral78403a92007-04-20 07:57:26 -0700128#define SECOND_PAGE_GROUP_START 0x6000000
129#define SECOND_PAGE_GROUP_END 0x68BC000
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800130
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
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400137
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700138#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)
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700146#define NX_CT_DEFAULT_RX_BUF_LEN 2048
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700147
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800148#define MAX_RX_BUFFER_LENGTH 1760
Amit S. Kalebd56c6b2006-12-18 05:54:36 -0800149#define MAX_RX_JUMBO_BUFFER_LENGTH 8062
Dhananjay Phadke32ec8032009-01-26 12:35:19 -0800150#define MAX_RX_LRO_BUFFER_LENGTH (8062)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800151#define RX_DMA_MAP_LEN (MAX_RX_BUFFER_LENGTH - 2)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400152#define RX_JUMBO_DMA_MAP_LEN \
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800153 (MAX_RX_JUMBO_BUFFER_LENGTH - 2)
154#define RX_LRO_DMA_MAP_LEN (MAX_RX_LRO_BUFFER_LENGTH - 2)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400155
156/*
157 * Maximum number of ring contexts
158 */
159#define MAX_RING_CTX 1
160
161/* Opcodes to be used with the commands */
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700162#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
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400172
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
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800192#define NUM_RCV_DESC_RINGS 3 /* No of Rcv Descriptor contexts */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400193
194/* descriptor types */
195#define RCV_DESC_NORMAL 0x01
196#define RCV_DESC_JUMBO 0x02
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800197#define RCV_DESC_LRO 0x04
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400198#define RCV_DESC_NORMAL_CTXID 0
199#define RCV_DESC_JUMBO_CTXID 1
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800200#define RCV_DESC_LRO_CTXID 2
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400201
202#define RCV_DESC_TYPE(ID) \
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800203 ((ID == RCV_DESC_JUMBO_CTXID) \
204 ? RCV_DESC_JUMBO \
205 : ((ID == RCV_DESC_LRO_CTXID) \
206 ? RCV_DESC_LRO : \
207 (RCV_DESC_NORMAL)))
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400208
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -0700209#define MAX_CMD_DESCRIPTORS 4096
Amit S. Kalebd56c6b2006-12-18 05:54:36 -0800210#define MAX_RCV_DESCRIPTORS 16384
Dhananjay Phadke32ec8032009-01-26 12:35:19 -0800211#define MAX_CMD_DESCRIPTORS_HOST 1024
212#define MAX_RCV_DESCRIPTORS_1G 2048
213#define MAX_RCV_DESCRIPTORS_10G 4096
Dhananjay Phadkee1256462009-01-29 16:05:19 -0800214#define MAX_JUMBO_RCV_DESCRIPTORS 1024
Dhananjay Phadke32ec8032009-01-26 12:35:19 -0800215#define MAX_LRO_RCV_DESCRIPTORS 8
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400216#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
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400220#define MAX_EPG_DESCRIPTORS (MAX_CMD_DESCRIPTORS * 8)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800221#define NUM_RCV_DESC (MAX_RCV_DESC + MAX_JUMBO_RCV_DESCRIPTORS + \
222 MAX_LRO_RCV_DESCRIPTORS)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400223#define MIN_TX_COUNT 4096
224#define MIN_RX_COUNT 4096
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800225#define NETXEN_CTX_SIGNATURE 0xdee0
226#define NETXEN_RCV_PRODUCER(ringid) (ringid)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400227#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
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800238#define MPORT_SINGLE_FUNCTION_MODE 0x1111
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700239#define MPORT_MULTI_FUNCTION_MODE 0x2222
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800240
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700241#include "netxen_nic_phan_reg.h"
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800242
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
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800255#define netxen_set_msg_peg_id(config_word, val) \
Al Viroa608ab92007-01-02 10:39:10 +0000256 ((config_word) &= ~3, (config_word) |= val & 3)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800257#define netxen_set_msg_privid(config_word) \
Al Viroa608ab92007-01-02 10:39:10 +0000258 ((config_word) |= 1 << 2)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800259#define netxen_set_msg_count(config_word, val) \
Al Viroa608ab92007-01-02 10:39:10 +0000260 ((config_word) &= ~(0x7fff<<3), (config_word) |= (val & 0x7fff) << 3)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800261#define netxen_set_msg_ctxid(config_word, val) \
Al Viroa608ab92007-01-02 10:39:10 +0000262 ((config_word) &= ~(0x3ff<<18), (config_word) |= (val & 0x3ff) << 18)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800263#define netxen_set_msg_opcode(config_word, val) \
Amit S. Kale82581172007-02-12 04:33:38 -0800264 ((config_word) &= ~(0xf<<28), (config_word) |= (val & 0xf) << 28)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800265
266struct netxen_rcv_context {
Al Viroa608ab92007-01-02 10:39:10 +0000267 __le64 rcv_ring_addr;
268 __le32 rcv_ring_size;
269 __le32 rsrvd;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800270};
271
272struct netxen_ring_ctx {
273
274 /* one command ring */
Al Viroa608ab92007-01-02 10:39:10 +0000275 __le64 cmd_consumer_offset;
276 __le64 cmd_ring_addr;
277 __le32 cmd_ring_size;
278 __le32 rsrvd;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800279
280 /* three receive rings */
281 struct netxen_rcv_context rcv_ctx[3];
282
283 /* one status ring */
Al Viroa608ab92007-01-02 10:39:10 +0000284 __le64 sts_ring_addr;
285 __le32 sts_ring_size;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800286
Al Viroa608ab92007-01-02 10:39:10 +0000287 __le32 ctx_id;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800288} __attribute__ ((aligned(64)));
289
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400290/*
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
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800307#define netxen_set_cmd_desc_port(cmd_desc, var) \
308 ((cmd_desc)->port_ctxid |= ((var) & 0x0F))
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700309#define netxen_set_cmd_desc_ctxid(cmd_desc, var) \
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700310 ((cmd_desc)->port_ctxid |= ((var) << 4 & 0xF0))
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400311
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800312#define netxen_set_tx_port(_desc, _port) \
313 (_desc)->port_ctxid = ((_port) & 0xf) | (((_port) << 4) & 0xf0)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800314
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800315#define netxen_set_tx_flags_opcode(_desc, _flags, _opcode) \
316 (_desc)->flags_opcode = \
317 cpu_to_le16(((_flags) & 0x7f) | (((_opcode) & 0x3f) << 7))
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800318
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800319#define netxen_set_tx_frags_len(_desc, _frags, _len) \
320 (_desc)->num_of_buffers_total_length = \
321 cpu_to_le32(((_frags) & 0xff) | (((_len) & 0xffffff) << 8))
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400322
323struct cmd_desc_type0 {
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800324 u8 tcp_hdr_offset; /* For LSO only */
325 u8 ip_hdr_offset; /* For LSO only */
326 /* Bit pattern: 0-6 flags, 7-12 opcode, 13-15 unused */
Al Viroa608ab92007-01-02 10:39:10 +0000327 __le16 flags_opcode;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800328 /* Bit pattern: 0-7 total number of segments,
329 8-31 Total size of the packet */
Al Viroa608ab92007-01-02 10:39:10 +0000330 __le32 num_of_buffers_total_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400331 union {
332 struct {
Al Viroa608ab92007-01-02 10:39:10 +0000333 __le32 addr_low_part2;
334 __le32 addr_high_part2;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400335 };
Al Viroa608ab92007-01-02 10:39:10 +0000336 __le64 addr_buffer2;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400337 };
338
Al Viroa608ab92007-01-02 10:39:10 +0000339 __le16 reference_handle; /* changed to u16 to add mss */
340 __le16 mss; /* passed by NDIS_PACKET for LSO */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400341 /* Bit pattern 0-3 port, 0-3 ctx id */
342 u8 port_ctxid;
343 u8 total_hdr_length; /* LSO only : MAC+IP+TCP Hdr size */
Al Viroa608ab92007-01-02 10:39:10 +0000344 __le16 conn_id; /* IPSec offoad only */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400345
346 union {
347 struct {
Al Viroa608ab92007-01-02 10:39:10 +0000348 __le32 addr_low_part3;
349 __le32 addr_high_part3;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400350 };
Al Viroa608ab92007-01-02 10:39:10 +0000351 __le64 addr_buffer3;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400352 };
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400353 union {
354 struct {
Al Viroa608ab92007-01-02 10:39:10 +0000355 __le32 addr_low_part1;
356 __le32 addr_high_part1;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400357 };
Al Viroa608ab92007-01-02 10:39:10 +0000358 __le64 addr_buffer1;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400359 };
360
Dhananjay Phadked32cc3d2009-03-09 08:50:53 +0000361 __le16 buffer_length[4];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400362
363 union {
364 struct {
Al Viroa608ab92007-01-02 10:39:10 +0000365 __le32 addr_low_part4;
366 __le32 addr_high_part4;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400367 };
Al Viroa608ab92007-01-02 10:39:10 +0000368 __le64 addr_buffer4;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400369 };
370
Al Viroa608ab92007-01-02 10:39:10 +0000371 __le64 unused;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800372
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400373} __attribute__ ((aligned(64)));
374
375/* Note: sizeof(rcv_desc) should always be a mutliple of 2 */
376struct rcv_desc {
Al Viroa608ab92007-01-02 10:39:10 +0000377 __le16 reference_handle;
378 __le16 reserved;
379 __le32 buffer_length; /* allocated buffer length (usually 2K) */
380 __le64 addr_buffer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400381};
382
383/* opcode field in status_desc */
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700384#define NETXEN_NIC_RXPKT_DESC 0x04
385#define NETXEN_OLD_RXPKT_DESC 0x3f
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400386
387/* for status field in status_desc */
388#define STATUS_NEED_CKSUM (1)
389#define STATUS_CKSUM_OK (2)
390
391/* owner bits of status_desc */
Dhananjay Phadke0ddc1102009-03-09 08:50:52 +0000392#define STATUS_OWNER_HOST (0x1ULL << 56)
393#define STATUS_OWNER_PHANTOM (0x2ULL << 56)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400394
395/* Note: sizeof(status_desc) should always be a mutliple of 2 */
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800396
397#define netxen_get_sts_desc_lro_cnt(status_desc) \
398 ((status_desc)->lro & 0x7F)
399#define netxen_get_sts_desc_lro_last_frag(status_desc) \
400 (((status_desc)->lro & 0x80) >> 7)
401
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800402#define netxen_get_sts_port(sts_data) \
403 ((sts_data) & 0x0F)
404#define netxen_get_sts_status(sts_data) \
405 (((sts_data) >> 4) & 0x0F)
406#define netxen_get_sts_type(sts_data) \
407 (((sts_data) >> 8) & 0x0F)
408#define netxen_get_sts_totallength(sts_data) \
409 (((sts_data) >> 12) & 0xFFFF)
410#define netxen_get_sts_refhandle(sts_data) \
411 (((sts_data) >> 28) & 0xFFFF)
412#define netxen_get_sts_prot(sts_data) \
413 (((sts_data) >> 44) & 0x0F)
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700414#define netxen_get_sts_pkt_offset(sts_data) \
415 (((sts_data) >> 48) & 0x1F)
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800416#define netxen_get_sts_opcode(sts_data) \
417 (((sts_data) >> 58) & 0x03F)
418
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400419struct status_desc {
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800420 /* Bit pattern: 0-3 port, 4-7 status, 8-11 type, 12-27 total_length
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700421 28-43 reference_handle, 44-47 protocol, 48-52 pkt_offset
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800422 53-55 desc_cnt, 56-57 owner, 58-63 opcode
423 */
Al Viroa608ab92007-01-02 10:39:10 +0000424 __le64 status_desc_data;
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700425 union {
426 struct {
427 __le32 hash_value;
428 u8 hash_type;
429 u8 msg_type;
430 u8 unused;
431 union {
432 /* Bit pattern: 0-6 lro_count indicates frag
433 * sequence, 7 last_frag indicates last frag
434 */
435 u8 lro;
436
437 /* chained buffers */
438 u8 nr_frags;
439 };
440 };
441 struct {
442 __le16 frag_handles[4];
443 };
444 };
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700445} __attribute__ ((aligned(16)));
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400446
447enum {
448 NETXEN_RCV_PEG_0 = 0,
449 NETXEN_RCV_PEG_1
450};
451/* The version of the main data structure */
452#define NETXEN_BDINFO_VERSION 1
453
454/* Magic number to let user know flash is programmed */
455#define NETXEN_BDINFO_MAGIC 0x12345678
456
457/* Max number of Gig ports on a Phantom board */
458#define NETXEN_MAX_PORTS 4
459
460typedef enum {
461 NETXEN_BRDTYPE_P1_BD = 0x0000,
462 NETXEN_BRDTYPE_P1_SB = 0x0001,
463 NETXEN_BRDTYPE_P1_SMAX = 0x0002,
464 NETXEN_BRDTYPE_P1_SOCK = 0x0003,
465
466 NETXEN_BRDTYPE_P2_SOCK_31 = 0x0008,
467 NETXEN_BRDTYPE_P2_SOCK_35 = 0x0009,
468 NETXEN_BRDTYPE_P2_SB35_4G = 0x000a,
469 NETXEN_BRDTYPE_P2_SB31_10G = 0x000b,
470 NETXEN_BRDTYPE_P2_SB31_2G = 0x000c,
471
472 NETXEN_BRDTYPE_P2_SB31_10G_IMEZ = 0x000d,
473 NETXEN_BRDTYPE_P2_SB31_10G_HMEZ = 0x000e,
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700474 NETXEN_BRDTYPE_P2_SB31_10G_CX4 = 0x000f,
475
476 NETXEN_BRDTYPE_P3_REF_QG = 0x0021,
477 NETXEN_BRDTYPE_P3_HMEZ = 0x0022,
478 NETXEN_BRDTYPE_P3_10G_CX4_LP = 0x0023,
479 NETXEN_BRDTYPE_P3_4_GB = 0x0024,
480 NETXEN_BRDTYPE_P3_IMEZ = 0x0025,
481 NETXEN_BRDTYPE_P3_10G_SFP_PLUS = 0x0026,
482 NETXEN_BRDTYPE_P3_10000_BASE_T = 0x0027,
483 NETXEN_BRDTYPE_P3_XG_LOM = 0x0028,
484 NETXEN_BRDTYPE_P3_4_GB_MM = 0x0029,
Dhananjay Phadkea70f9392008-08-01 03:14:56 -0700485 NETXEN_BRDTYPE_P3_10G_SFP_CT = 0x002a,
486 NETXEN_BRDTYPE_P3_10G_SFP_QT = 0x002b,
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700487 NETXEN_BRDTYPE_P3_10G_CX4 = 0x0031,
Dhananjay Phadkec7860a22009-01-14 20:48:32 -0800488 NETXEN_BRDTYPE_P3_10G_XFP = 0x0032,
489 NETXEN_BRDTYPE_P3_10G_TP = 0x0080
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700490
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400491} netxen_brdtype_t;
492
493typedef enum {
494 NETXEN_BRDMFG_INVENTEC = 1
495} netxen_brdmfg;
496
497typedef enum {
498 MEM_ORG_128Mbx4 = 0x0, /* DDR1 only */
499 MEM_ORG_128Mbx8 = 0x1, /* DDR1 only */
500 MEM_ORG_128Mbx16 = 0x2, /* DDR1 only */
501 MEM_ORG_256Mbx4 = 0x3,
502 MEM_ORG_256Mbx8 = 0x4,
503 MEM_ORG_256Mbx16 = 0x5,
504 MEM_ORG_512Mbx4 = 0x6,
505 MEM_ORG_512Mbx8 = 0x7,
506 MEM_ORG_512Mbx16 = 0x8,
507 MEM_ORG_1Gbx4 = 0x9,
508 MEM_ORG_1Gbx8 = 0xa,
509 MEM_ORG_1Gbx16 = 0xb,
510 MEM_ORG_2Gbx4 = 0xc,
511 MEM_ORG_2Gbx8 = 0xd,
512 MEM_ORG_2Gbx16 = 0xe,
513 MEM_ORG_128Mbx32 = 0x10002, /* GDDR only */
514 MEM_ORG_256Mbx32 = 0x10005 /* GDDR only */
515} netxen_mn_mem_org_t;
516
517typedef enum {
518 MEM_ORG_512Kx36 = 0x0,
519 MEM_ORG_1Mx36 = 0x1,
520 MEM_ORG_2Mx36 = 0x2
521} netxen_sn_mem_org_t;
522
523typedef enum {
524 MEM_DEPTH_4MB = 0x1,
525 MEM_DEPTH_8MB = 0x2,
526 MEM_DEPTH_16MB = 0x3,
527 MEM_DEPTH_32MB = 0x4,
528 MEM_DEPTH_64MB = 0x5,
529 MEM_DEPTH_128MB = 0x6,
530 MEM_DEPTH_256MB = 0x7,
531 MEM_DEPTH_512MB = 0x8,
532 MEM_DEPTH_1GB = 0x9,
533 MEM_DEPTH_2GB = 0xa,
534 MEM_DEPTH_4GB = 0xb,
535 MEM_DEPTH_8GB = 0xc,
536 MEM_DEPTH_16GB = 0xd,
537 MEM_DEPTH_32GB = 0xe
538} netxen_mem_depth_t;
539
540struct netxen_board_info {
541 u32 header_version;
542
543 u32 board_mfg;
544 u32 board_type;
545 u32 board_num;
546 u32 chip_id;
547 u32 chip_minor;
548 u32 chip_major;
549 u32 chip_pkg;
550 u32 chip_lot;
551
552 u32 port_mask; /* available niu ports */
553 u32 peg_mask; /* available pegs */
554 u32 icache_ok; /* can we run with icache? */
555 u32 dcache_ok; /* can we run with dcache? */
556 u32 casper_ok;
557
558 u32 mac_addr_lo_0;
559 u32 mac_addr_lo_1;
560 u32 mac_addr_lo_2;
561 u32 mac_addr_lo_3;
562
563 /* MN-related config */
564 u32 mn_sync_mode; /* enable/ sync shift cclk/ sync shift mclk */
565 u32 mn_sync_shift_cclk;
566 u32 mn_sync_shift_mclk;
567 u32 mn_wb_en;
568 u32 mn_crystal_freq; /* in MHz */
569 u32 mn_speed; /* in MHz */
570 u32 mn_org;
571 u32 mn_depth;
572 u32 mn_ranks_0; /* ranks per slot */
573 u32 mn_ranks_1; /* ranks per slot */
574 u32 mn_rd_latency_0;
575 u32 mn_rd_latency_1;
576 u32 mn_rd_latency_2;
577 u32 mn_rd_latency_3;
578 u32 mn_rd_latency_4;
579 u32 mn_rd_latency_5;
580 u32 mn_rd_latency_6;
581 u32 mn_rd_latency_7;
582 u32 mn_rd_latency_8;
583 u32 mn_dll_val[18];
584 u32 mn_mode_reg; /* MIU DDR Mode Register */
585 u32 mn_ext_mode_reg; /* MIU DDR Extended Mode Register */
586 u32 mn_timing_0; /* MIU Memory Control Timing Rgister */
587 u32 mn_timing_1; /* MIU Extended Memory Ctrl Timing Register */
588 u32 mn_timing_2; /* MIU Extended Memory Ctrl Timing2 Register */
589
590 /* SN-related config */
591 u32 sn_sync_mode; /* enable/ sync shift cclk / sync shift mclk */
592 u32 sn_pt_mode; /* pass through mode */
593 u32 sn_ecc_en;
594 u32 sn_wb_en;
595 u32 sn_crystal_freq;
596 u32 sn_speed;
597 u32 sn_org;
598 u32 sn_depth;
599 u32 sn_dll_tap;
600 u32 sn_rd_latency;
601
602 u32 mac_addr_hi_0;
603 u32 mac_addr_hi_1;
604 u32 mac_addr_hi_2;
605 u32 mac_addr_hi_3;
606
607 u32 magic; /* indicates flash has been initialized */
608
609 u32 mn_rdimm;
610 u32 mn_dll_override;
611
612};
613
614#define FLASH_NUM_PORTS (4)
615
616struct netxen_flash_mac_addr {
617 u32 flash_addr[32];
618};
619
620struct netxen_user_old_info {
621 u8 flash_md5[16];
622 u8 crbinit_md5[16];
623 u8 brdcfg_md5[16];
624 /* bootloader */
625 u32 bootld_version;
626 u32 bootld_size;
627 u8 bootld_md5[16];
628 /* image */
629 u32 image_version;
630 u32 image_size;
631 u8 image_md5[16];
632 /* primary image status */
633 u32 primary_status;
634 u32 secondary_present;
635
636 /* MAC address , 4 ports */
637 struct netxen_flash_mac_addr mac_addr[FLASH_NUM_PORTS];
638};
639#define FLASH_NUM_MAC_PER_PORT 32
640struct netxen_user_info {
641 u8 flash_md5[16 * 64];
642 /* bootloader */
643 u32 bootld_version;
644 u32 bootld_size;
645 /* image */
646 u32 image_version;
647 u32 image_size;
648 /* primary image status */
649 u32 primary_status;
650 u32 secondary_present;
651
652 /* MAC address , 4 ports, 32 address per port */
653 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
654 u32 sub_sys_id;
655 u8 serial_num[32];
656
657 /* Any user defined data */
658};
659
660/*
661 * Flash Layout - new format.
662 */
663struct netxen_new_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#define SECONDARY_IMAGE_PRESENT 0xb3b4b5b6
684#define SECONDARY_IMAGE_ABSENT 0xffffffff
685#define PRIMARY_IMAGE_GOOD 0x5a5a5a5a
686#define PRIMARY_IMAGE_BAD 0xffffffff
687
688/* Flash memory map */
689typedef enum {
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700690 NETXEN_CRBINIT_START = 0, /* Crbinit section */
691 NETXEN_BRDCFG_START = 0x4000, /* board config */
692 NETXEN_INITCODE_START = 0x6000, /* pegtune code */
693 NETXEN_BOOTLD_START = 0x10000, /* bootld */
694 NETXEN_IMAGE_START = 0x43000, /* compressed image */
695 NETXEN_SECONDARY_START = 0x200000, /* backup images */
696 NETXEN_PXE_START = 0x3E0000, /* user defined region */
697 NETXEN_USER_START = 0x3E8000, /* User defined region for new boards */
698 NETXEN_FIXED_START = 0x3F0000 /* backup of crbinit */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400699} netxen_flash_map_t;
700
Dhananjay Phadkeba599d42009-02-24 16:38:22 -0800701#define NX_FW_VERSION_OFFSET (NETXEN_USER_START+0x408)
702#define NX_FW_SIZE_OFFSET (NETXEN_USER_START+0x40c)
703#define NX_BIOS_VERSION_OFFSET (NETXEN_USER_START+0x83c)
704#define NX_FW_MAGIC_OFFSET (NETXEN_BRDCFG_START+0x128)
705#define NX_FW_MIN_SIZE (0x3fffff)
706#define NX_P2_MN_ROMIMAGE "nxromimg.bin"
707#define NX_P3_CT_ROMIMAGE "nx3fwct.bin"
708#define NX_P3_MN_ROMIMAGE "nx3fwmn.bin"
709
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700710#define NETXEN_USER_START_OLD NETXEN_PXE_START /* for backward compatibility */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400711
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700712#define NETXEN_FLASH_START (NETXEN_CRBINIT_START)
713#define NETXEN_INIT_SECTOR (0)
714#define NETXEN_PRIMARY_START (NETXEN_BOOTLD_START)
715#define NETXEN_FLASH_CRBINIT_SIZE (0x4000)
716#define NETXEN_FLASH_BRDCFG_SIZE (sizeof(struct netxen_board_info))
717#define NETXEN_FLASH_USER_SIZE (sizeof(struct netxen_user_info)/sizeof(u32))
718#define NETXEN_FLASH_SECONDARY_SIZE (NETXEN_USER_START-NETXEN_SECONDARY_START)
719#define NETXEN_NUM_PRIMARY_SECTORS (0x20)
720#define NETXEN_NUM_CONFIG_SECTORS (1)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800721#define PFX "NetXen: "
722extern char netxen_nic_driver_name[];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400723
724/* Note: Make sure to not call this before adapter->port is valid */
725#if !defined(NETXEN_DEBUG)
726#define DPRINTK(klevel, fmt, args...) do { \
727 } while (0)
728#else
729#define DPRINTK(klevel, fmt, args...) do { \
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700730 printk(KERN_##klevel PFX "%s: %s: " fmt, __func__,\
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700731 (adapter != NULL && adapter->netdev != NULL) ? \
732 adapter->netdev->name : NULL, \
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400733 ## args); } while(0)
734#endif
735
736/* Number of status descriptors to handle per interrupt */
737#define MAX_STATUS_HANDLE (128)
738
739/*
740 * netxen_skb_frag{} is to contain mapping info for each SG list. This
741 * has to be freed when DMA is complete. This is part of netxen_tx_buffer{}.
742 */
743struct netxen_skb_frag {
744 u64 dma;
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800745 ulong length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400746};
747
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700748#define _netxen_set_bits(config_word, start, bits, val) {\
749 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start));\
750 unsigned long long __tvalue = (val); \
751 (config_word) &= ~__tmask; \
752 (config_word) |= (((__tvalue) << (start)) & __tmask); \
753}
Jeff Garzik47906542007-11-23 21:23:36 -0500754
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700755#define _netxen_clear_bits(config_word, start, bits) {\
756 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start)); \
757 (config_word) &= ~__tmask; \
Jeff Garzik47906542007-11-23 21:23:36 -0500758}
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700759
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400760/* Following defines are for the state of the buffers */
761#define NETXEN_BUFFER_FREE 0
762#define NETXEN_BUFFER_BUSY 1
763
764/*
765 * There will be one netxen_buffer per skb packet. These will be
766 * used to save the dma info for pci_unmap_page()
767 */
768struct netxen_cmd_buffer {
769 struct sk_buff *skb;
770 struct netxen_skb_frag frag_array[MAX_BUFFERS_PER_CMD + 1];
Dhananjay Phadke391587c2009-01-14 20:48:11 -0800771 u32 frag_count;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400772};
773
774/* In rx_buffer, we do not need multiple fragments as is a single buffer */
775struct netxen_rx_buffer {
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700776 struct list_head list;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400777 struct sk_buff *skb;
778 u64 dma;
779 u16 ref_handle;
780 u16 state;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800781 u32 lro_expected_frags;
782 u32 lro_current_frags;
783 u32 lro_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400784};
785
786/* Board types */
787#define NETXEN_NIC_GBE 0x01
788#define NETXEN_NIC_XGBE 0x02
789
790/*
791 * One hardware_context{} per adapter
792 * contains interrupt info as well shared hardware info.
793 */
794struct netxen_hardware_context {
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800795 void __iomem *pci_base0;
796 void __iomem *pci_base1;
797 void __iomem *pci_base2;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700798 unsigned long first_page_group_end;
799 unsigned long first_page_group_start;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800800 void __iomem *db_base;
801 unsigned long db_len;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -0700802 unsigned long pci_len0;
803
Dhananjay Phadke29566402008-07-21 19:44:04 -0700804 u8 cut_through;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -0700805 int qdr_sn_window;
806 int ddr_mn_window;
807 unsigned long mn_win_crb;
808 unsigned long ms_win_crb;
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800809
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400810 u8 revision_id;
811 u16 board_type;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400812 struct netxen_board_info boardcfg;
Dhananjay Phadkea97342f2008-07-21 19:44:05 -0700813 u32 linkup;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400814 /* Address of cmd ring in Phantom */
815 struct cmd_desc_type0 *cmd_desc_head;
816 dma_addr_t cmd_desc_phys_addr;
817 struct netxen_adapter *adapter;
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -0700818 int pci_func;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400819};
820
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800821#define RCV_RING_LRO RCV_DESC_LRO
822
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400823#define MINIMUM_ETHERNET_FRAME_SIZE 64 /* With FCS */
824#define ETHERNET_FCS_SIZE 4
825
826struct netxen_adapter_stats {
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700827 u64 rcvdbadskb;
828 u64 xmitcalled;
829 u64 xmitedframes;
830 u64 xmitfinished;
831 u64 badskblen;
832 u64 nocmddescriptor;
833 u64 polled;
Dhananjay Phadked1847a72008-03-17 19:59:51 -0700834 u64 rxdropped;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700835 u64 txdropped;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700836 u64 csummed;
837 u64 no_rcv;
838 u64 rxbytes;
839 u64 txbytes;
840 u64 ints;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400841};
842
843/*
844 * Rcv Descriptor Context. One such per Rcv Descriptor. There may
845 * be one Rcv Descriptor for normal packets, one for jumbo and may be others.
846 */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700847struct nx_host_rds_ring {
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400848 u32 flags;
849 u32 producer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400850 dma_addr_t phys_addr;
Dhananjay Phadke7830b222008-07-21 19:44:00 -0700851 u32 crb_rcv_producer; /* reg offset */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400852 struct rcv_desc *desc_head; /* address of rx ring in Phantom */
853 u32 max_rx_desc_count;
854 u32 dma_size;
855 u32 skb_size;
856 struct netxen_rx_buffer *rx_buf_arr; /* rx buffers for receive */
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700857 struct list_head free_list;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400858};
859
860/*
861 * Receive context. There is one such structure per instance of the
862 * receive processing. Any state information that is relevant to
863 * the receive, and is must be in this structure. The global data may be
864 * present elsewhere.
865 */
866struct netxen_recv_context {
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700867 u32 state;
868 u16 context_id;
869 u16 virt_port;
870
871 struct nx_host_rds_ring rds_rings[NUM_RCV_DESC_RINGS];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400872 u32 status_rx_consumer;
Dhananjay Phadke7830b222008-07-21 19:44:00 -0700873 u32 crb_sts_consumer; /* reg offset */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400874 dma_addr_t rcv_status_desc_phys_addr;
875 struct status_desc *rcv_status_desc_head;
876};
877
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700878/* New HW context creation */
879
880#define NX_OS_CRB_RETRY_COUNT 4000
881#define NX_CDRP_SIGNATURE_MAKE(pcifn, version) \
882 (((pcifn) & 0xff) | (((version) & 0xff) << 8) | (0xcafe << 16))
883
884#define NX_CDRP_CLEAR 0x00000000
885#define NX_CDRP_CMD_BIT 0x80000000
886
887/*
888 * All responses must have the NX_CDRP_CMD_BIT cleared
889 * in the crb NX_CDRP_CRB_OFFSET.
890 */
891#define NX_CDRP_FORM_RSP(rsp) (rsp)
892#define NX_CDRP_IS_RSP(rsp) (((rsp) & NX_CDRP_CMD_BIT) == 0)
893
894#define NX_CDRP_RSP_OK 0x00000001
895#define NX_CDRP_RSP_FAIL 0x00000002
896#define NX_CDRP_RSP_TIMEOUT 0x00000003
897
898/*
899 * All commands must have the NX_CDRP_CMD_BIT set in
900 * the crb NX_CDRP_CRB_OFFSET.
901 */
902#define NX_CDRP_FORM_CMD(cmd) (NX_CDRP_CMD_BIT | (cmd))
903#define NX_CDRP_IS_CMD(cmd) (((cmd) & NX_CDRP_CMD_BIT) != 0)
904
905#define NX_CDRP_CMD_SUBMIT_CAPABILITIES 0x00000001
906#define NX_CDRP_CMD_READ_MAX_RDS_PER_CTX 0x00000002
907#define NX_CDRP_CMD_READ_MAX_SDS_PER_CTX 0x00000003
908#define NX_CDRP_CMD_READ_MAX_RULES_PER_CTX 0x00000004
909#define NX_CDRP_CMD_READ_MAX_RX_CTX 0x00000005
910#define NX_CDRP_CMD_READ_MAX_TX_CTX 0x00000006
911#define NX_CDRP_CMD_CREATE_RX_CTX 0x00000007
912#define NX_CDRP_CMD_DESTROY_RX_CTX 0x00000008
913#define NX_CDRP_CMD_CREATE_TX_CTX 0x00000009
914#define NX_CDRP_CMD_DESTROY_TX_CTX 0x0000000a
915#define NX_CDRP_CMD_SETUP_STATISTICS 0x0000000e
916#define NX_CDRP_CMD_GET_STATISTICS 0x0000000f
917#define NX_CDRP_CMD_DELETE_STATISTICS 0x00000010
918#define NX_CDRP_CMD_SET_MTU 0x00000012
919#define NX_CDRP_CMD_MAX 0x00000013
920
921#define NX_RCODE_SUCCESS 0
922#define NX_RCODE_NO_HOST_MEM 1
923#define NX_RCODE_NO_HOST_RESOURCE 2
924#define NX_RCODE_NO_CARD_CRB 3
925#define NX_RCODE_NO_CARD_MEM 4
926#define NX_RCODE_NO_CARD_RESOURCE 5
927#define NX_RCODE_INVALID_ARGS 6
928#define NX_RCODE_INVALID_ACTION 7
929#define NX_RCODE_INVALID_STATE 8
930#define NX_RCODE_NOT_SUPPORTED 9
931#define NX_RCODE_NOT_PERMITTED 10
932#define NX_RCODE_NOT_READY 11
933#define NX_RCODE_DOES_NOT_EXIST 12
934#define NX_RCODE_ALREADY_EXISTS 13
935#define NX_RCODE_BAD_SIGNATURE 14
936#define NX_RCODE_CMD_NOT_IMPL 15
937#define NX_RCODE_CMD_INVALID 16
938#define NX_RCODE_TIMEOUT 17
939#define NX_RCODE_CMD_FAILED 18
940#define NX_RCODE_MAX_EXCEEDED 19
941#define NX_RCODE_MAX 20
942
943#define NX_DESTROY_CTX_RESET 0
944#define NX_DESTROY_CTX_D3_RESET 1
945#define NX_DESTROY_CTX_MAX 2
946
947/*
948 * Capabilities
949 */
950#define NX_CAP_BIT(class, bit) (1 << bit)
951#define NX_CAP0_LEGACY_CONTEXT NX_CAP_BIT(0, 0)
952#define NX_CAP0_MULTI_CONTEXT NX_CAP_BIT(0, 1)
953#define NX_CAP0_LEGACY_MN NX_CAP_BIT(0, 2)
954#define NX_CAP0_LEGACY_MS NX_CAP_BIT(0, 3)
955#define NX_CAP0_CUT_THROUGH NX_CAP_BIT(0, 4)
956#define NX_CAP0_LRO NX_CAP_BIT(0, 5)
957#define NX_CAP0_LSO NX_CAP_BIT(0, 6)
958#define NX_CAP0_JUMBO_CONTIGUOUS NX_CAP_BIT(0, 7)
959#define NX_CAP0_LRO_CONTIGUOUS NX_CAP_BIT(0, 8)
960
961/*
962 * Context state
963 */
964#define NX_HOST_CTX_STATE_FREED 0
965#define NX_HOST_CTX_STATE_ALLOCATED 1
966#define NX_HOST_CTX_STATE_ACTIVE 2
967#define NX_HOST_CTX_STATE_DISABLED 3
968#define NX_HOST_CTX_STATE_QUIESCED 4
969#define NX_HOST_CTX_STATE_MAX 5
970
971/*
972 * Rx context
973 */
974
975typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -0800976 __le64 host_phys_addr; /* Ring base addr */
977 __le32 ring_size; /* Ring entries */
978 __le16 msi_index;
979 __le16 rsvd; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700980} nx_hostrq_sds_ring_t;
981
982typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -0800983 __le64 host_phys_addr; /* Ring base addr */
984 __le64 buff_size; /* Packet buffer size */
985 __le32 ring_size; /* Ring entries */
986 __le32 ring_kind; /* Class of ring */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700987} nx_hostrq_rds_ring_t;
988
989typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -0800990 __le64 host_rsp_dma_addr; /* Response dma'd here */
991 __le32 capabilities[4]; /* Flag bit vector */
992 __le32 host_int_crb_mode; /* Interrupt crb usage */
993 __le32 host_rds_crb_mode; /* RDS crb usage */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700994 /* These ring offsets are relative to data[0] below */
Dhananjay Phadke2edbb452009-01-14 20:47:30 -0800995 __le32 rds_ring_offset; /* Offset to RDS config */
996 __le32 sds_ring_offset; /* Offset to SDS config */
997 __le16 num_rds_rings; /* Count of RDS rings */
998 __le16 num_sds_rings; /* Count of SDS rings */
999 __le16 rsvd1; /* Padding */
1000 __le16 rsvd2; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001001 u8 reserved[128]; /* reserve space for future expansion*/
1002 /* MUST BE 64-bit aligned.
1003 The following is packed:
1004 - N hostrq_rds_rings
1005 - N hostrq_sds_rings */
1006 char data[0];
1007} nx_hostrq_rx_ctx_t;
1008
1009typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001010 __le32 host_producer_crb; /* Crb to use */
1011 __le32 rsvd1; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001012} nx_cardrsp_rds_ring_t;
1013
1014typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001015 __le32 host_consumer_crb; /* Crb to use */
1016 __le32 interrupt_crb; /* Crb to use */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001017} nx_cardrsp_sds_ring_t;
1018
1019typedef struct {
1020 /* These ring offsets are relative to data[0] below */
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001021 __le32 rds_ring_offset; /* Offset to RDS config */
1022 __le32 sds_ring_offset; /* Offset to SDS config */
1023 __le32 host_ctx_state; /* Starting State */
1024 __le32 num_fn_per_port; /* How many PCI fn share the port */
1025 __le16 num_rds_rings; /* Count of RDS rings */
1026 __le16 num_sds_rings; /* Count of SDS rings */
1027 __le16 context_id; /* Handle for context */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001028 u8 phys_port; /* Physical id of port */
1029 u8 virt_port; /* Virtual/Logical id of port */
1030 u8 reserved[128]; /* save space for future expansion */
1031 /* MUST BE 64-bit aligned.
1032 The following is packed:
1033 - N cardrsp_rds_rings
1034 - N cardrs_sds_rings */
1035 char data[0];
1036} nx_cardrsp_rx_ctx_t;
1037
1038#define SIZEOF_HOSTRQ_RX(HOSTRQ_RX, rds_rings, sds_rings) \
1039 (sizeof(HOSTRQ_RX) + \
1040 (rds_rings)*(sizeof(nx_hostrq_rds_ring_t)) + \
1041 (sds_rings)*(sizeof(nx_hostrq_sds_ring_t)))
1042
1043#define SIZEOF_CARDRSP_RX(CARDRSP_RX, rds_rings, sds_rings) \
1044 (sizeof(CARDRSP_RX) + \
1045 (rds_rings)*(sizeof(nx_cardrsp_rds_ring_t)) + \
1046 (sds_rings)*(sizeof(nx_cardrsp_sds_ring_t)))
1047
1048/*
1049 * Tx context
1050 */
1051
1052typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001053 __le64 host_phys_addr; /* Ring base addr */
1054 __le32 ring_size; /* Ring entries */
1055 __le32 rsvd; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001056} nx_hostrq_cds_ring_t;
1057
1058typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001059 __le64 host_rsp_dma_addr; /* Response dma'd here */
1060 __le64 cmd_cons_dma_addr; /* */
1061 __le64 dummy_dma_addr; /* */
1062 __le32 capabilities[4]; /* Flag bit vector */
1063 __le32 host_int_crb_mode; /* Interrupt crb usage */
1064 __le32 rsvd1; /* Padding */
1065 __le16 rsvd2; /* Padding */
1066 __le16 interrupt_ctl;
1067 __le16 msi_index;
1068 __le16 rsvd3; /* Padding */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001069 nx_hostrq_cds_ring_t cds_ring; /* Desc of cds ring */
1070 u8 reserved[128]; /* future expansion */
1071} nx_hostrq_tx_ctx_t;
1072
1073typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001074 __le32 host_producer_crb; /* Crb to use */
1075 __le32 interrupt_crb; /* Crb to use */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001076} nx_cardrsp_cds_ring_t;
1077
1078typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001079 __le32 host_ctx_state; /* Starting state */
1080 __le16 context_id; /* Handle for context */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001081 u8 phys_port; /* Physical id of port */
1082 u8 virt_port; /* Virtual/Logical id of port */
1083 nx_cardrsp_cds_ring_t cds_ring; /* Card cds settings */
1084 u8 reserved[128]; /* future expansion */
1085} nx_cardrsp_tx_ctx_t;
1086
1087#define SIZEOF_HOSTRQ_TX(HOSTRQ_TX) (sizeof(HOSTRQ_TX))
1088#define SIZEOF_CARDRSP_TX(CARDRSP_TX) (sizeof(CARDRSP_TX))
1089
1090/* CRB */
1091
1092#define NX_HOST_RDS_CRB_MODE_UNIQUE 0
1093#define NX_HOST_RDS_CRB_MODE_SHARED 1
1094#define NX_HOST_RDS_CRB_MODE_CUSTOM 2
1095#define NX_HOST_RDS_CRB_MODE_MAX 3
1096
1097#define NX_HOST_INT_CRB_MODE_UNIQUE 0
1098#define NX_HOST_INT_CRB_MODE_SHARED 1
1099#define NX_HOST_INT_CRB_MODE_NORX 2
1100#define NX_HOST_INT_CRB_MODE_NOTX 3
1101#define NX_HOST_INT_CRB_MODE_NORXTX 4
1102
1103
1104/* MAC */
1105
1106#define MC_COUNT_P2 16
1107#define MC_COUNT_P3 38
1108
1109#define NETXEN_MAC_NOOP 0
1110#define NETXEN_MAC_ADD 1
1111#define NETXEN_MAC_DEL 2
1112
1113typedef struct nx_mac_list_s {
1114 struct nx_mac_list_s *next;
1115 uint8_t mac_addr[MAX_ADDR_LEN];
1116} nx_mac_list_t;
1117
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001118/*
1119 * Interrupt coalescing defaults. The defaults are for 1500 MTU. It is
1120 * adjusted based on configured MTU.
1121 */
1122#define NETXEN_DEFAULT_INTR_COALESCE_RX_TIME_US 3
1123#define NETXEN_DEFAULT_INTR_COALESCE_RX_PACKETS 256
1124#define NETXEN_DEFAULT_INTR_COALESCE_TX_PACKETS 64
1125#define NETXEN_DEFAULT_INTR_COALESCE_TX_TIME_US 4
1126
1127#define NETXEN_NIC_INTR_DEFAULT 0x04
1128
1129typedef union {
1130 struct {
1131 uint16_t rx_packets;
1132 uint16_t rx_time_us;
1133 uint16_t tx_packets;
1134 uint16_t tx_time_us;
1135 } data;
1136 uint64_t word;
1137} nx_nic_intr_coalesce_data_t;
1138
1139typedef struct {
1140 uint16_t stats_time_us;
1141 uint16_t rate_sample_time;
1142 uint16_t flags;
1143 uint16_t rsvd_1;
1144 uint32_t low_threshold;
1145 uint32_t high_threshold;
1146 nx_nic_intr_coalesce_data_t normal;
1147 nx_nic_intr_coalesce_data_t low;
1148 nx_nic_intr_coalesce_data_t high;
1149 nx_nic_intr_coalesce_data_t irq;
1150} nx_nic_intr_coalesce_t;
1151
Dhananjay Phadke9ad27642008-08-01 03:14:59 -07001152#define NX_HOST_REQUEST 0x13
1153#define NX_NIC_REQUEST 0x14
1154
1155#define NX_MAC_EVENT 0x1
1156
1157enum {
1158 NX_NIC_H2C_OPCODE_START = 0,
1159 NX_NIC_H2C_OPCODE_CONFIG_RSS,
1160 NX_NIC_H2C_OPCODE_CONFIG_RSS_TBL,
1161 NX_NIC_H2C_OPCODE_CONFIG_INTR_COALESCE,
1162 NX_NIC_H2C_OPCODE_CONFIG_LED,
1163 NX_NIC_H2C_OPCODE_CONFIG_PROMISCUOUS,
1164 NX_NIC_H2C_OPCODE_CONFIG_L2_MAC,
1165 NX_NIC_H2C_OPCODE_LRO_REQUEST,
1166 NX_NIC_H2C_OPCODE_GET_SNMP_STATS,
1167 NX_NIC_H2C_OPCODE_PROXY_START_REQUEST,
1168 NX_NIC_H2C_OPCODE_PROXY_STOP_REQUEST,
1169 NX_NIC_H2C_OPCODE_PROXY_SET_MTU,
1170 NX_NIC_H2C_OPCODE_PROXY_SET_VPORT_MISS_MODE,
1171 NX_H2P_OPCODE_GET_FINGER_PRINT_REQUEST,
1172 NX_H2P_OPCODE_INSTALL_LICENSE_REQUEST,
1173 NX_H2P_OPCODE_GET_LICENSE_CAPABILITY_REQUEST,
1174 NX_NIC_H2C_OPCODE_GET_NET_STATS,
1175 NX_NIC_H2C_OPCODE_LAST
1176};
1177
1178#define VPORT_MISS_MODE_DROP 0 /* drop all unmatched */
1179#define VPORT_MISS_MODE_ACCEPT_ALL 1 /* accept all packets */
1180#define VPORT_MISS_MODE_ACCEPT_MULTI 2 /* accept unmatched multicast */
1181
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001182typedef struct {
Dhananjay Phadke2edbb452009-01-14 20:47:30 -08001183 __le64 qhdr;
1184 __le64 req_hdr;
1185 __le64 words[6];
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001186} nx_nic_req_t;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001187
1188typedef struct {
1189 u8 op;
1190 u8 tag;
1191 u8 mac_addr[6];
1192} nx_mac_req_t;
1193
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001194#define MAX_PENDING_DESC_BLOCK_SIZE 64
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001195
Dhananjay Phadke29566402008-07-21 19:44:04 -07001196#define NETXEN_NIC_MSI_ENABLED 0x02
1197#define NETXEN_NIC_MSIX_ENABLED 0x04
1198#define NETXEN_IS_MSI_FAMILY(adapter) \
1199 ((adapter)->flags & (NETXEN_NIC_MSI_ENABLED | NETXEN_NIC_MSIX_ENABLED))
1200
Dhananjay Phadkeb3df68f2009-02-08 19:20:19 -08001201#define MSIX_ENTRIES_PER_ADAPTER 1
Dhananjay Phadke29566402008-07-21 19:44:04 -07001202#define NETXEN_MSIX_TBL_SPACE 8192
1203#define NETXEN_PCI_REG_MSIX_TBL 0x44
1204
1205#define NETXEN_DB_MAPSIZE_BYTES 0x1000
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001206
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001207#define NETXEN_NETDEV_WEIGHT 120
1208#define NETXEN_ADAPTER_UP_MAGIC 777
1209#define NETXEN_NIC_PEG_TUNE 0
1210
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001211struct netxen_dummy_dma {
1212 void *addr;
1213 dma_addr_t phys_addr;
1214};
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001215
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001216struct netxen_adapter {
1217 struct netxen_hardware_context ahw;
Jeff Garzik47906542007-11-23 21:23:36 -05001218
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001219 struct net_device *netdev;
1220 struct pci_dev *pdev;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001221 int pci_using_dac;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001222 struct napi_struct napi;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -07001223 struct net_device_stats net_stats;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001224 int mtu;
1225 int portnum;
Dhananjay Phadke3276fba2008-06-15 22:59:44 -07001226 u8 physical_port;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001227 u16 tx_context_id;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001228
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001229 uint8_t mc_enabled;
1230 uint8_t max_mc_count;
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001231 nx_mac_list_t *mac_list;
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001232
Dhananjay Phadke29566402008-07-21 19:44:04 -07001233 struct netxen_legacy_intr_set legacy_intr;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001234 u32 crb_intr_mask;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001235
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001236 struct work_struct watchdog_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001237 struct timer_list watchdog_timer;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001238 struct work_struct tx_timeout_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001239
1240 u32 curr_window;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001241 u32 crb_win;
1242 rwlock_t adapter_lock;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001243
1244 u32 cmd_producer;
Al Virof305f782007-12-22 19:44:00 +00001245 __le32 *cmd_consumer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001246 u32 last_cmd_consumer;
Dhananjay Phadke7830b222008-07-21 19:44:00 -07001247 u32 crb_addr_cmd_producer;
1248 u32 crb_addr_cmd_consumer;
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -07001249
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001250 u32 max_tx_desc_count;
1251 u32 max_rx_desc_count;
1252 u32 max_jumbo_rx_desc_count;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001253 u32 max_lro_rx_desc_count;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001254
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001255 int max_rds_rings;
1256
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001257 u32 flags;
1258 u32 irq;
1259 int driver_mismatch;
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001260 u32 temp;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001261
Dhananjay Phadke29566402008-07-21 19:44:04 -07001262 u32 fw_major;
1263
1264 u8 msix_supported;
1265 u8 max_possible_rss_rings;
1266 struct msix_entry msix_entries[MSIX_ENTRIES_PER_ADAPTER];
1267
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001268 struct netxen_adapter_stats stats;
Jeff Garzik47906542007-11-23 21:23:36 -05001269
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001270 u16 link_speed;
1271 u16 link_duplex;
1272 u16 state;
1273 u16 link_autoneg;
Dhananjay Phadke200eef22007-09-03 10:33:35 +05301274 int rx_csum;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001275 int status;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001276
1277 struct netxen_cmd_buffer *cmd_buf_arr; /* Command buffers for xmit */
1278
1279 /*
1280 * Receive instances. These can be either one per port,
1281 * or one per peg, etc.
1282 */
1283 struct netxen_recv_context recv_ctx[MAX_RCV_CTX];
1284
1285 int is_up;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001286 struct netxen_dummy_dma dummy_dma;
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001287 nx_nic_intr_coalesce_t coal;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001288
1289 /* Context interface shared between card and host */
1290 struct netxen_ring_ctx *ctx_desc;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001291 dma_addr_t ctx_desc_phys_addr;
dhananjay.phadke@gmail.com2d1a3bb2007-07-02 00:26:00 +05301292 int intr_scheme;
Dhananjay Phadke443be792008-03-17 19:59:48 -07001293 int msi_mode;
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001294 int (*enable_phy_interrupts) (struct netxen_adapter *);
1295 int (*disable_phy_interrupts) (struct netxen_adapter *);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001296 int (*macaddr_set) (struct netxen_adapter *, netxen_ethernet_macaddr_t);
1297 int (*set_mtu) (struct netxen_adapter *, int);
Dhananjay Phadke9ad27642008-08-01 03:14:59 -07001298 int (*set_promisc) (struct netxen_adapter *, u32);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001299 int (*phy_read) (struct netxen_adapter *, long reg, u32 *);
1300 int (*phy_write) (struct netxen_adapter *, long reg, u32 val);
Amit S. Kale80922fb2006-12-04 09:18:00 -08001301 int (*init_port) (struct netxen_adapter *, int);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001302 int (*stop_port) (struct netxen_adapter *);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001303
1304 int (*hw_read_wx)(struct netxen_adapter *, ulong, void *, int);
1305 int (*hw_write_wx)(struct netxen_adapter *, ulong, void *, int);
1306 int (*pci_mem_read)(struct netxen_adapter *, u64, void *, int);
1307 int (*pci_mem_write)(struct netxen_adapter *, u64, void *, int);
1308 int (*pci_write_immediate)(struct netxen_adapter *, u64, u32);
1309 u32 (*pci_read_immediate)(struct netxen_adapter *, u64);
1310 void (*pci_write_normalize)(struct netxen_adapter *, u64, u32);
1311 u32 (*pci_read_normalize)(struct netxen_adapter *, u64);
1312 unsigned long (*pci_set_window)(struct netxen_adapter *,
1313 unsigned long long);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001314}; /* netxen_adapter structure */
1315
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301316/*
1317 * NetXen dma watchdog control structure
1318 *
1319 * Bit 0 : enabled => R/O: 1 watchdog active, 0 inactive
1320 * Bit 1 : disable_request => 1 req disable dma watchdog
1321 * Bit 2 : enable_request => 1 req enable dma watchdog
1322 * Bit 3-31 : unused
1323 */
1324
1325#define netxen_set_dma_watchdog_disable_req(config_word) \
1326 _netxen_set_bits(config_word, 1, 1, 1)
1327#define netxen_set_dma_watchdog_enable_req(config_word) \
1328 _netxen_set_bits(config_word, 2, 1, 1)
1329#define netxen_get_dma_watchdog_enabled(config_word) \
1330 ((config_word) & 0x1)
1331#define netxen_get_dma_watchdog_disabled(config_word) \
1332 (((config_word) >> 1) & 0x1)
1333
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001334/* Max number of xmit producer threads that can run simultaneously */
1335#define MAX_XMIT_PRODUCERS 16
1336
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001337#define PCI_OFFSET_FIRST_RANGE(adapter, off) \
1338 ((adapter)->ahw.pci_base0 + (off))
1339#define PCI_OFFSET_SECOND_RANGE(adapter, off) \
1340 ((adapter)->ahw.pci_base1 + (off) - SECOND_PAGE_GROUP_START)
1341#define PCI_OFFSET_THIRD_RANGE(adapter, off) \
1342 ((adapter)->ahw.pci_base2 + (off) - THIRD_PAGE_GROUP_START)
1343
1344static inline void __iomem *pci_base_offset(struct netxen_adapter *adapter,
1345 unsigned long off)
1346{
1347 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1348 return (adapter->ahw.pci_base0 + off);
1349 } else if ((off < SECOND_PAGE_GROUP_END) &&
1350 (off >= SECOND_PAGE_GROUP_START)) {
1351 return (adapter->ahw.pci_base1 + off - SECOND_PAGE_GROUP_START);
1352 } else if ((off < THIRD_PAGE_GROUP_END) &&
1353 (off >= THIRD_PAGE_GROUP_START)) {
1354 return (adapter->ahw.pci_base2 + off - THIRD_PAGE_GROUP_START);
1355 }
1356 return NULL;
1357}
1358
1359static inline void __iomem *pci_base(struct netxen_adapter *adapter,
1360 unsigned long off)
1361{
1362 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1363 return adapter->ahw.pci_base0;
1364 } else if ((off < SECOND_PAGE_GROUP_END) &&
1365 (off >= SECOND_PAGE_GROUP_START)) {
1366 return adapter->ahw.pci_base1;
1367 } else if ((off < THIRD_PAGE_GROUP_END) &&
1368 (off >= THIRD_PAGE_GROUP_START)) {
1369 return adapter->ahw.pci_base2;
1370 }
1371 return NULL;
1372}
1373
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001374int netxen_niu_xgbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1375int netxen_niu_gbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1376int netxen_niu_xgbe_disable_phy_interrupts(struct netxen_adapter *adapter);
1377int netxen_niu_gbe_disable_phy_interrupts(struct netxen_adapter *adapter);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001378int netxen_niu_gbe_phy_read(struct netxen_adapter *adapter, long reg,
Al Viroa608ab92007-01-02 10:39:10 +00001379 __u32 * readval);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001380int netxen_niu_gbe_phy_write(struct netxen_adapter *adapter,
Al Viroa608ab92007-01-02 10:39:10 +00001381 long reg, __u32 val);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001382
1383/* Functions available from netxen_nic_hw.c */
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001384int netxen_nic_set_mtu_xgb(struct netxen_adapter *adapter, int new_mtu);
1385int netxen_nic_set_mtu_gb(struct netxen_adapter *adapter, int new_mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001386void netxen_nic_reg_write(struct netxen_adapter *adapter, u64 off, u32 val);
1387int netxen_nic_reg_read(struct netxen_adapter *adapter, u64 off);
1388void netxen_nic_write_w0(struct netxen_adapter *adapter, u32 index, u32 value);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001389void netxen_nic_read_w0(struct netxen_adapter *adapter, u32 index, u32 *value);
1390void netxen_nic_write_w1(struct netxen_adapter *adapter, u32 index, u32 value);
1391void netxen_nic_read_w1(struct netxen_adapter *adapter, u32 index, u32 *value);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001392
1393int netxen_nic_get_board_info(struct netxen_adapter *adapter);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001394
1395int netxen_nic_hw_read_wx_128M(struct netxen_adapter *adapter,
1396 ulong off, void *data, int len);
1397int netxen_nic_hw_write_wx_128M(struct netxen_adapter *adapter,
1398 ulong off, void *data, int len);
1399int netxen_nic_pci_mem_read_128M(struct netxen_adapter *adapter,
1400 u64 off, void *data, int size);
1401int netxen_nic_pci_mem_write_128M(struct netxen_adapter *adapter,
1402 u64 off, void *data, int size);
1403int netxen_nic_pci_write_immediate_128M(struct netxen_adapter *adapter,
1404 u64 off, u32 data);
1405u32 netxen_nic_pci_read_immediate_128M(struct netxen_adapter *adapter, u64 off);
1406void netxen_nic_pci_write_normalize_128M(struct netxen_adapter *adapter,
1407 u64 off, u32 data);
1408u32 netxen_nic_pci_read_normalize_128M(struct netxen_adapter *adapter, u64 off);
1409unsigned long netxen_nic_pci_set_window_128M(struct netxen_adapter *adapter,
1410 unsigned long long addr);
1411void netxen_nic_pci_change_crbwindow_128M(struct netxen_adapter *adapter,
1412 u32 wndw);
1413
1414int netxen_nic_hw_read_wx_2M(struct netxen_adapter *adapter,
1415 ulong off, void *data, int len);
1416int netxen_nic_hw_write_wx_2M(struct netxen_adapter *adapter,
1417 ulong off, void *data, int len);
1418int netxen_nic_pci_mem_read_2M(struct netxen_adapter *adapter,
1419 u64 off, void *data, int size);
1420int netxen_nic_pci_mem_write_2M(struct netxen_adapter *adapter,
1421 u64 off, void *data, int size);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001422void netxen_crb_writelit_adapter(struct netxen_adapter *adapter,
1423 unsigned long off, int data);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001424int netxen_nic_pci_write_immediate_2M(struct netxen_adapter *adapter,
1425 u64 off, u32 data);
1426u32 netxen_nic_pci_read_immediate_2M(struct netxen_adapter *adapter, u64 off);
1427void netxen_nic_pci_write_normalize_2M(struct netxen_adapter *adapter,
1428 u64 off, u32 data);
1429u32 netxen_nic_pci_read_normalize_2M(struct netxen_adapter *adapter, u64 off);
1430unsigned long netxen_nic_pci_set_window_2M(struct netxen_adapter *adapter,
1431 unsigned long long addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001432
1433/* Functions from netxen_nic_init.c */
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001434void netxen_free_adapter_offload(struct netxen_adapter *adapter);
1435int netxen_initialize_adapter_offload(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301436int netxen_phantom_init(struct netxen_adapter *adapter, int pegtune_val);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001437int netxen_receive_peg_ready(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301438int netxen_load_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001439int netxen_pinit_from_rom(struct netxen_adapter *adapter, int verbose);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001440
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001441int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr, int *valp);
Jeff Garzik47906542007-11-23 21:23:36 -05001442int netxen_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001443 u8 *bytes, size_t size);
Jeff Garzik47906542007-11-23 21:23:36 -05001444int netxen_rom_fast_write_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001445 u8 *bytes, size_t size);
1446int netxen_flash_unlock(struct netxen_adapter *adapter);
1447int netxen_backup_crbinit(struct netxen_adapter *adapter);
1448int netxen_flash_erase_secondary(struct netxen_adapter *adapter);
1449int netxen_flash_erase_primary(struct netxen_adapter *adapter);
Amit S. Kalee45d9ab2007-02-09 05:49:08 -08001450void netxen_halt_pegs(struct netxen_adapter *adapter);
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001451
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001452int netxen_rom_se(struct netxen_adapter *adapter, int addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001453
Dhananjay Phadke29566402008-07-21 19:44:04 -07001454int netxen_alloc_sw_resources(struct netxen_adapter *adapter);
1455void netxen_free_sw_resources(struct netxen_adapter *adapter);
1456
1457int netxen_alloc_hw_resources(struct netxen_adapter *adapter);
1458void netxen_free_hw_resources(struct netxen_adapter *adapter);
1459
1460void netxen_release_rx_buffers(struct netxen_adapter *adapter);
1461void netxen_release_tx_buffers(struct netxen_adapter *adapter);
1462
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001463void netxen_initialize_adapter_ops(struct netxen_adapter *adapter);
1464int netxen_init_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001465void netxen_nic_clear_stats(struct netxen_adapter *adapter);
David Howells6d5aefb2006-12-05 19:36:26 +00001466void netxen_watchdog_task(struct work_struct *work);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001467void netxen_post_rx_buffers(struct netxen_adapter *adapter, u32 ctx,
1468 u32 ringid);
Dhananjay Phadke05aaa022008-03-17 19:59:49 -07001469int netxen_process_cmd_ring(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001470u32 netxen_process_rcv_ring(struct netxen_adapter *adapter, int ctx, int max);
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001471void netxen_p2_nic_set_multi(struct net_device *netdev);
1472void netxen_p3_nic_set_multi(struct net_device *netdev);
Dhananjay Phadke06e9d9f2009-01-14 20:49:22 -08001473void netxen_p3_free_mac_list(struct netxen_adapter *adapter);
Dhananjay Phadke9ad27642008-08-01 03:14:59 -07001474int netxen_p3_nic_set_promisc(struct netxen_adapter *adapter, u32);
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001475int netxen_config_intr_coalesce(struct netxen_adapter *adapter);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001476
Dhananjay Phadke9ad27642008-08-01 03:14:59 -07001477int nx_fw_cmd_set_mtu(struct netxen_adapter *adapter, int mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001478int netxen_nic_change_mtu(struct net_device *netdev, int new_mtu);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001479
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001480int netxen_nic_set_mac(struct net_device *netdev, void *p);
1481struct net_device_stats *netxen_nic_get_stats(struct net_device *netdev);
1482
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001483void netxen_nic_update_cmd_producer(struct netxen_adapter *adapter,
1484 uint32_t crb_producer);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001485
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001486/*
1487 * NetXen Board information
1488 */
1489
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001490#define NETXEN_MAX_SHORT_NAME 32
Amit S. Kale71bd7872006-12-01 05:36:22 -08001491struct netxen_brdinfo {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001492 netxen_brdtype_t brdtype; /* type of board */
1493 long ports; /* max no of physical ports */
1494 char short_name[NETXEN_MAX_SHORT_NAME];
Amit S. Kale71bd7872006-12-01 05:36:22 -08001495};
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001496
Amit S. Kale71bd7872006-12-01 05:36:22 -08001497static const struct netxen_brdinfo netxen_boards[] = {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001498 {NETXEN_BRDTYPE_P2_SB31_10G_CX4, 1, "XGb CX4"},
1499 {NETXEN_BRDTYPE_P2_SB31_10G_HMEZ, 1, "XGb HMEZ"},
1500 {NETXEN_BRDTYPE_P2_SB31_10G_IMEZ, 2, "XGb IMEZ"},
1501 {NETXEN_BRDTYPE_P2_SB31_10G, 1, "XGb XFP"},
1502 {NETXEN_BRDTYPE_P2_SB35_4G, 4, "Quad Gb"},
1503 {NETXEN_BRDTYPE_P2_SB31_2G, 2, "Dual Gb"},
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001504 {NETXEN_BRDTYPE_P3_REF_QG, 4, "Reference Quad Gig "},
1505 {NETXEN_BRDTYPE_P3_HMEZ, 2, "Dual XGb HMEZ"},
1506 {NETXEN_BRDTYPE_P3_10G_CX4_LP, 2, "Dual XGb CX4 LP"},
1507 {NETXEN_BRDTYPE_P3_4_GB, 4, "Quad Gig LP"},
1508 {NETXEN_BRDTYPE_P3_IMEZ, 2, "Dual XGb IMEZ"},
1509 {NETXEN_BRDTYPE_P3_10G_SFP_PLUS, 2, "Dual XGb SFP+ LP"},
1510 {NETXEN_BRDTYPE_P3_10000_BASE_T, 1, "XGB 10G BaseT LP"},
1511 {NETXEN_BRDTYPE_P3_XG_LOM, 2, "Dual XGb LOM"},
Dhananjay Phadkea70f9392008-08-01 03:14:56 -07001512 {NETXEN_BRDTYPE_P3_4_GB_MM, 4, "NX3031 Gigabit Ethernet"},
1513 {NETXEN_BRDTYPE_P3_10G_SFP_CT, 2, "NX3031 10 Gigabit Ethernet"},
1514 {NETXEN_BRDTYPE_P3_10G_SFP_QT, 2, "Quanta Dual XGb SFP+"},
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001515 {NETXEN_BRDTYPE_P3_10G_CX4, 2, "Reference Dual CX4 Option"},
1516 {NETXEN_BRDTYPE_P3_10G_XFP, 1, "Reference Single XFP Option"}
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001517};
1518
Denis Chengff8ac602007-09-02 18:30:18 +08001519#define NUM_SUPPORTED_BOARDS ARRAY_SIZE(netxen_boards)
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001520
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001521static inline void get_brd_name_by_type(u32 type, char *name)
1522{
1523 int i, found = 0;
1524 for (i = 0; i < NUM_SUPPORTED_BOARDS; ++i) {
1525 if (netxen_boards[i].brdtype == type) {
1526 strcpy(name, netxen_boards[i].short_name);
1527 found = 1;
1528 break;
1529 }
1530
1531 }
1532 if (!found)
1533 name = "Unknown";
1534}
1535
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301536static inline int
1537dma_watchdog_shutdown_request(struct netxen_adapter *adapter)
1538{
1539 u32 ctrl;
1540
1541 /* check if already inactive */
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001542 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301543 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1544 printk(KERN_ERR "failed to read dma watchdog status\n");
1545
1546 if (netxen_get_dma_watchdog_enabled(ctrl) == 0)
1547 return 1;
1548
1549 /* Send the disable request */
1550 netxen_set_dma_watchdog_disable_req(ctrl);
1551 netxen_crb_writelit_adapter(adapter,
1552 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1553
1554 return 0;
1555}
1556
1557static inline int
1558dma_watchdog_shutdown_poll_result(struct netxen_adapter *adapter)
1559{
1560 u32 ctrl;
1561
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001562 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301563 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1564 printk(KERN_ERR "failed to read dma watchdog status\n");
1565
dhananjay@netxen.comceded322007-07-19 14:41:09 +05301566 return (netxen_get_dma_watchdog_enabled(ctrl) == 0);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301567}
1568
1569static inline int
1570dma_watchdog_wakeup(struct netxen_adapter *adapter)
1571{
1572 u32 ctrl;
1573
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001574 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301575 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1576 printk(KERN_ERR "failed to read dma watchdog status\n");
1577
1578 if (netxen_get_dma_watchdog_enabled(ctrl))
1579 return 1;
1580
1581 /* send the wakeup request */
1582 netxen_set_dma_watchdog_enable_req(ctrl);
1583
1584 netxen_crb_writelit_adapter(adapter,
1585 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1586
1587 return 0;
1588}
1589
1590
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001591int netxen_is_flash_supported(struct netxen_adapter *adapter);
Dhananjay Phadke9dc28ef2008-08-08 00:08:39 -07001592int netxen_get_flash_mac_addr(struct netxen_adapter *adapter, __le64 *mac);
1593int netxen_p3_get_mac_addr(struct netxen_adapter *adapter, __le64 *mac);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001594extern void netxen_change_ringparam(struct netxen_adapter *adapter);
1595extern int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr,
1596 int *valp);
1597
1598extern struct ethtool_ops netxen_nic_ethtool_ops;
1599
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001600#endif /* __NETXEN_NIC_H_ */