blob: e41f62352b15e58719b9746aadd712f587d32753 [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>
48#include <linux/version.h>
49
50#include <linux/ethtool.h>
51#include <linux/mii.h>
52#include <linux/interrupt.h>
53#include <linux/timer.h>
54
55#include <linux/mm.h>
56#include <linux/mman.h>
57
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
Amit S. Kaleed25ffa2006-12-04 09:23:25 -080066#define _NETXEN_NIC_LINUX_MAJOR 3
Mithlesh Thukral6d1495f2007-04-20 07:56:42 -070067#define _NETXEN_NIC_LINUX_MINOR 4
dhananjay@netxen.com001a7312007-12-26 10:23:54 -080068#define _NETXEN_NIC_LINUX_SUBVERSION 18
69#define NETXEN_NIC_LINUX_VERSIONID "3.4.18"
Amit S. Kale27d2ab52007-02-05 07:40:49 -080070
Mithlesh Thukral0d047612007-06-07 04:36:36 -070071#define NETXEN_NUM_FLASH_SECTORS (64)
72#define NETXEN_FLASH_SECTOR_SIZE (64 * 1024)
73#define NETXEN_FLASH_TOTAL_SIZE (NETXEN_NUM_FLASH_SECTORS \
74 * NETXEN_FLASH_SECTOR_SIZE)
Amit S. Kale3d396eb2006-10-21 15:33:03 -040075
Linsys Contractor Mithlesh Thukral0c25cfe2007-02-28 05:14:07 -080076#define PHAN_VENDOR_ID 0x4040
77
Amit S. Kale3d396eb2006-10-21 15:33:03 -040078#define RCV_DESC_RINGSIZE \
79 (sizeof(struct rcv_desc) * adapter->max_rx_desc_count)
80#define STATUS_DESC_RINGSIZE \
81 (sizeof(struct status_desc)* adapter->max_rx_desc_count)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -080082#define LRO_DESC_RINGSIZE \
83 (sizeof(rcvDesc_t) * adapter->max_lro_rx_desc_count)
Amit S. Kale3d396eb2006-10-21 15:33:03 -040084#define TX_RINGSIZE \
85 (sizeof(struct netxen_cmd_buffer) * adapter->max_tx_desc_count)
86#define RCV_BUFFSIZE \
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -070087 (sizeof(struct netxen_rx_buffer) * rds_ring->max_rx_desc_count)
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -070088#define find_diff_among(a,b,range) ((a)<(b)?((b)-(a)):((b)+(range)-(a)))
Amit S. Kale3d396eb2006-10-21 15:33:03 -040089
Amit S. Kaleed25ffa2006-12-04 09:23:25 -080090#define NETXEN_NETDEV_STATUS 0x1
91#define NETXEN_RCV_PRODUCER_OFFSET 0
92#define NETXEN_RCV_PEG_DB_ID 2
93#define NETXEN_HOST_DUMMY_DMA_SIZE 1024
Amit S. Kale27d2ab52007-02-05 07:40:49 -080094#define FLASH_SUCCESS 0
Amit S. Kale3d396eb2006-10-21 15:33:03 -040095
96#define ADDR_IN_WINDOW1(off) \
97 ((off > NETXEN_CRB_PCIX_HOST2) && (off < NETXEN_CRB_MAX)) ? 1 : 0
98
Jeff Garzik47906542007-11-23 21:23:36 -050099/*
100 * normalize a 64MB crb address to 32MB PCI window
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400101 * To use NETXEN_CRB_NORMALIZE, window _must_ be set to 1
102 */
Amit S. Kale80922fb2006-12-04 09:18:00 -0800103#define NETXEN_CRB_NORMAL(reg) \
104 ((reg) - NETXEN_CRB_PCIX_HOST2 + NETXEN_CRB_PCIX_HOST)
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800105
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400106#define NETXEN_CRB_NORMALIZE(adapter, reg) \
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800107 pci_base_offset(adapter, NETXEN_CRB_NORMAL(reg))
108
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800109#define DB_NORMALIZE(adapter, off) \
110 (adapter->ahw.db_base + (off))
111
112#define NX_P2_C0 0x24
113#define NX_P2_C1 0x25
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700114#define NX_P3_A0 0x30
115#define NX_P3_A2 0x30
116#define NX_P3_B0 0x40
117#define NX_P3_B1 0x41
118
119#define NX_IS_REVISION_P2(REVISION) (REVISION <= NX_P2_C1)
120#define NX_IS_REVISION_P3(REVISION) (REVISION >= NX_P3_A0)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800121
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800122#define FIRST_PAGE_GROUP_START 0
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800123#define FIRST_PAGE_GROUP_END 0x100000
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800124
Mithlesh Thukral78403a92007-04-20 07:57:26 -0700125#define SECOND_PAGE_GROUP_START 0x6000000
126#define SECOND_PAGE_GROUP_END 0x68BC000
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800127
128#define THIRD_PAGE_GROUP_START 0x70E4000
129#define THIRD_PAGE_GROUP_END 0x8000000
130
131#define FIRST_PAGE_GROUP_SIZE FIRST_PAGE_GROUP_END - FIRST_PAGE_GROUP_START
132#define SECOND_PAGE_GROUP_SIZE SECOND_PAGE_GROUP_END - SECOND_PAGE_GROUP_START
133#define THIRD_PAGE_GROUP_SIZE THIRD_PAGE_GROUP_END - THIRD_PAGE_GROUP_START
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400134
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700135#define P2_MAX_MTU (8000)
136#define P3_MAX_MTU (9600)
137#define NX_ETHERMTU 1500
138#define NX_MAX_ETHERHDR 32 /* This contains some padding */
139
140#define NX_RX_NORMAL_BUF_MAX_LEN (NX_MAX_ETHERHDR + NX_ETHERMTU)
141#define NX_P2_RX_JUMBO_BUF_MAX_LEN (NX_MAX_ETHERHDR + P2_MAX_MTU)
142#define NX_P3_RX_JUMBO_BUF_MAX_LEN (NX_MAX_ETHERHDR + P3_MAX_MTU)
143
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800144#define MAX_RX_BUFFER_LENGTH 1760
Amit S. Kalebd56c6b2006-12-18 05:54:36 -0800145#define MAX_RX_JUMBO_BUFFER_LENGTH 8062
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800146#define MAX_RX_LRO_BUFFER_LENGTH ((48*1024)-512)
147#define RX_DMA_MAP_LEN (MAX_RX_BUFFER_LENGTH - 2)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400148#define RX_JUMBO_DMA_MAP_LEN \
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800149 (MAX_RX_JUMBO_BUFFER_LENGTH - 2)
150#define RX_LRO_DMA_MAP_LEN (MAX_RX_LRO_BUFFER_LENGTH - 2)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400151
152/*
153 * Maximum number of ring contexts
154 */
155#define MAX_RING_CTX 1
156
157/* Opcodes to be used with the commands */
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700158#define TX_ETHER_PKT 0x01
159#define TX_TCP_PKT 0x02
160#define TX_UDP_PKT 0x03
161#define TX_IP_PKT 0x04
162#define TX_TCP_LSO 0x05
163#define TX_TCP_LSO6 0x06
164#define TX_IPSEC 0x07
165#define TX_IPSEC_CMD 0x0a
166#define TX_TCPV6_PKT 0x0b
167#define TX_UDPV6_PKT 0x0c
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400168
169/* The following opcodes are for internal consumption. */
170#define NETXEN_CONTROL_OP 0x10
171#define PEGNET_REQUEST 0x11
172
173#define MAX_NUM_CARDS 4
174
175#define MAX_BUFFERS_PER_CMD 32
176
177/*
178 * Following are the states of the Phantom. Phantom will set them and
179 * Host will read to check if the fields are correct.
180 */
181#define PHAN_INITIALIZE_START 0xff00
182#define PHAN_INITIALIZE_FAILED 0xffff
183#define PHAN_INITIALIZE_COMPLETE 0xff01
184
185/* Host writes the following to notify that it has done the init-handshake */
186#define PHAN_INITIALIZE_ACK 0xf00f
187
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800188#define NUM_RCV_DESC_RINGS 3 /* No of Rcv Descriptor contexts */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400189
190/* descriptor types */
191#define RCV_DESC_NORMAL 0x01
192#define RCV_DESC_JUMBO 0x02
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800193#define RCV_DESC_LRO 0x04
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400194#define RCV_DESC_NORMAL_CTXID 0
195#define RCV_DESC_JUMBO_CTXID 1
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800196#define RCV_DESC_LRO_CTXID 2
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400197
198#define RCV_DESC_TYPE(ID) \
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800199 ((ID == RCV_DESC_JUMBO_CTXID) \
200 ? RCV_DESC_JUMBO \
201 : ((ID == RCV_DESC_LRO_CTXID) \
202 ? RCV_DESC_LRO : \
203 (RCV_DESC_NORMAL)))
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400204
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -0700205#define MAX_CMD_DESCRIPTORS 4096
Amit S. Kalebd56c6b2006-12-18 05:54:36 -0800206#define MAX_RCV_DESCRIPTORS 16384
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700207#define MAX_CMD_DESCRIPTORS_HOST (MAX_CMD_DESCRIPTORS / 4)
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -0700208#define MAX_RCV_DESCRIPTORS_1G (MAX_RCV_DESCRIPTORS / 4)
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700209#define MAX_RCV_DESCRIPTORS_10G 8192
Amit S. Kalebd56c6b2006-12-18 05:54:36 -0800210#define MAX_JUMBO_RCV_DESCRIPTORS 1024
211#define MAX_LRO_RCV_DESCRIPTORS 64
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400212#define MAX_RCVSTATUS_DESCRIPTORS MAX_RCV_DESCRIPTORS
213#define MAX_JUMBO_RCV_DESC MAX_JUMBO_RCV_DESCRIPTORS
214#define MAX_RCV_DESC MAX_RCV_DESCRIPTORS
215#define MAX_RCVSTATUS_DESC MAX_RCV_DESCRIPTORS
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400216#define MAX_EPG_DESCRIPTORS (MAX_CMD_DESCRIPTORS * 8)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800217#define NUM_RCV_DESC (MAX_RCV_DESC + MAX_JUMBO_RCV_DESCRIPTORS + \
218 MAX_LRO_RCV_DESCRIPTORS)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400219#define MIN_TX_COUNT 4096
220#define MIN_RX_COUNT 4096
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800221#define NETXEN_CTX_SIGNATURE 0xdee0
222#define NETXEN_RCV_PRODUCER(ringid) (ringid)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400223#define MAX_FRAME_SIZE 0x10000 /* 64K MAX size for LSO */
224
225#define PHAN_PEG_RCV_INITIALIZED 0xff01
226#define PHAN_PEG_RCV_START_INITIALIZE 0xff00
227
228#define get_next_index(index, length) \
229 (((index) + 1) & ((length) - 1))
230
231#define get_index_range(index,length,count) \
232 (((index) + (count)) & ((length) - 1))
233
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800234#define MPORT_SINGLE_FUNCTION_MODE 0x1111
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700235#define MPORT_MULTI_FUNCTION_MODE 0x2222
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800236
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700237#include "netxen_nic_phan_reg.h"
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800238
239/*
240 * NetXen host-peg signal message structure
241 *
242 * Bit 0-1 : peg_id => 0x2 for tx and 01 for rx
243 * Bit 2 : priv_id => must be 1
244 * Bit 3-17 : count => for doorbell
245 * Bit 18-27 : ctx_id => Context id
246 * Bit 28-31 : opcode
247 */
248
249typedef u32 netxen_ctx_msg;
250
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800251#define netxen_set_msg_peg_id(config_word, val) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000252 ((config_word) &= ~3, (config_word) |= val & 3)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800253#define netxen_set_msg_privid(config_word) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000254 ((config_word) |= 1 << 2)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800255#define netxen_set_msg_count(config_word, val) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000256 ((config_word) &= ~(0x7fff<<3), (config_word) |= (val & 0x7fff) << 3)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800257#define netxen_set_msg_ctxid(config_word, val) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000258 ((config_word) &= ~(0x3ff<<18), (config_word) |= (val & 0x3ff) << 18)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800259#define netxen_set_msg_opcode(config_word, val) \
Amit S. Kale82581172007-02-12 04:33:38 -0800260 ((config_word) &= ~(0xf<<28), (config_word) |= (val & 0xf) << 28)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800261
262struct netxen_rcv_context {
Al Viroa608ab9c2007-01-02 10:39:10 +0000263 __le64 rcv_ring_addr;
264 __le32 rcv_ring_size;
265 __le32 rsrvd;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800266};
267
268struct netxen_ring_ctx {
269
270 /* one command ring */
Al Viroa608ab9c2007-01-02 10:39:10 +0000271 __le64 cmd_consumer_offset;
272 __le64 cmd_ring_addr;
273 __le32 cmd_ring_size;
274 __le32 rsrvd;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800275
276 /* three receive rings */
277 struct netxen_rcv_context rcv_ctx[3];
278
279 /* one status ring */
Al Viroa608ab9c2007-01-02 10:39:10 +0000280 __le64 sts_ring_addr;
281 __le32 sts_ring_size;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800282
Al Viroa608ab9c2007-01-02 10:39:10 +0000283 __le32 ctx_id;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800284} __attribute__ ((aligned(64)));
285
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400286/*
287 * Following data structures describe the descriptors that will be used.
288 * Added fileds of tcpHdrSize and ipHdrSize, The driver needs to do it only when
289 * we are doing LSO (above the 1500 size packet) only.
290 */
291
292/*
293 * The size of reference handle been changed to 16 bits to pass the MSS fields
294 * for the LSO packet
295 */
296
297#define FLAGS_CHECKSUM_ENABLED 0x01
298#define FLAGS_LSO_ENABLED 0x02
299#define FLAGS_IPSEC_SA_ADD 0x04
300#define FLAGS_IPSEC_SA_DELETE 0x08
301#define FLAGS_VLAN_TAGGED 0x10
302
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800303#define netxen_set_cmd_desc_port(cmd_desc, var) \
304 ((cmd_desc)->port_ctxid |= ((var) & 0x0F))
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700305#define netxen_set_cmd_desc_ctxid(cmd_desc, var) \
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700306 ((cmd_desc)->port_ctxid |= ((var) << 4 & 0xF0))
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400307
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800308#define netxen_set_cmd_desc_flags(cmd_desc, val) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800309 (cmd_desc)->flags_opcode = ((cmd_desc)->flags_opcode & \
310 ~cpu_to_le16(0x7f)) | cpu_to_le16((val) & 0x7f)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800311#define netxen_set_cmd_desc_opcode(cmd_desc, val) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800312 (cmd_desc)->flags_opcode = ((cmd_desc)->flags_opcode & \
313 ~cpu_to_le16((u16)0x3f << 7)) | cpu_to_le16(((val) & 0x3f) << 7)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800314
315#define netxen_set_cmd_desc_num_of_buff(cmd_desc, val) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800316 (cmd_desc)->num_of_buffers_total_length = \
317 ((cmd_desc)->num_of_buffers_total_length & \
318 ~cpu_to_le32(0xff)) | cpu_to_le32((val) & 0xff)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800319#define netxen_set_cmd_desc_totallength(cmd_desc, val) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800320 (cmd_desc)->num_of_buffers_total_length = \
321 ((cmd_desc)->num_of_buffers_total_length & \
322 ~cpu_to_le32((u32)0xffffff << 8)) | \
323 cpu_to_le32(((val) & 0xffffff) << 8)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800324
325#define netxen_get_cmd_desc_opcode(cmd_desc) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800326 ((le16_to_cpu((cmd_desc)->flags_opcode) >> 7) & 0x003f)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800327#define netxen_get_cmd_desc_totallength(cmd_desc) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800328 ((le32_to_cpu((cmd_desc)->num_of_buffers_total_length) >> 8) & 0xffffff)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400329
330struct cmd_desc_type0 {
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800331 u8 tcp_hdr_offset; /* For LSO only */
332 u8 ip_hdr_offset; /* For LSO only */
333 /* Bit pattern: 0-6 flags, 7-12 opcode, 13-15 unused */
Al Viroa608ab9c2007-01-02 10:39:10 +0000334 __le16 flags_opcode;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800335 /* Bit pattern: 0-7 total number of segments,
336 8-31 Total size of the packet */
Al Viroa608ab9c2007-01-02 10:39:10 +0000337 __le32 num_of_buffers_total_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400338 union {
339 struct {
Al Viroa608ab9c2007-01-02 10:39:10 +0000340 __le32 addr_low_part2;
341 __le32 addr_high_part2;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400342 };
Al Viroa608ab9c2007-01-02 10:39:10 +0000343 __le64 addr_buffer2;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400344 };
345
Al Viroa608ab9c2007-01-02 10:39:10 +0000346 __le16 reference_handle; /* changed to u16 to add mss */
347 __le16 mss; /* passed by NDIS_PACKET for LSO */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400348 /* Bit pattern 0-3 port, 0-3 ctx id */
349 u8 port_ctxid;
350 u8 total_hdr_length; /* LSO only : MAC+IP+TCP Hdr size */
Al Viroa608ab9c2007-01-02 10:39:10 +0000351 __le16 conn_id; /* IPSec offoad only */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400352
353 union {
354 struct {
Al Viroa608ab9c2007-01-02 10:39:10 +0000355 __le32 addr_low_part3;
356 __le32 addr_high_part3;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400357 };
Al Viroa608ab9c2007-01-02 10:39:10 +0000358 __le64 addr_buffer3;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400359 };
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400360 union {
361 struct {
Al Viroa608ab9c2007-01-02 10:39:10 +0000362 __le32 addr_low_part1;
363 __le32 addr_high_part1;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400364 };
Al Viroa608ab9c2007-01-02 10:39:10 +0000365 __le64 addr_buffer1;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400366 };
367
Al Viroa608ab9c2007-01-02 10:39:10 +0000368 __le16 buffer1_length;
369 __le16 buffer2_length;
370 __le16 buffer3_length;
371 __le16 buffer4_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400372
373 union {
374 struct {
Al Viroa608ab9c2007-01-02 10:39:10 +0000375 __le32 addr_low_part4;
376 __le32 addr_high_part4;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400377 };
Al Viroa608ab9c2007-01-02 10:39:10 +0000378 __le64 addr_buffer4;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400379 };
380
Al Viroa608ab9c2007-01-02 10:39:10 +0000381 __le64 unused;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800382
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400383} __attribute__ ((aligned(64)));
384
385/* Note: sizeof(rcv_desc) should always be a mutliple of 2 */
386struct rcv_desc {
Al Viroa608ab9c2007-01-02 10:39:10 +0000387 __le16 reference_handle;
388 __le16 reserved;
389 __le32 buffer_length; /* allocated buffer length (usually 2K) */
390 __le64 addr_buffer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400391};
392
393/* opcode field in status_desc */
394#define RCV_NIC_PKT (0xA)
395#define STATUS_NIC_PKT ((RCV_NIC_PKT) << 12)
396
397/* for status field in status_desc */
398#define STATUS_NEED_CKSUM (1)
399#define STATUS_CKSUM_OK (2)
400
401/* owner bits of status_desc */
402#define STATUS_OWNER_HOST (0x1)
403#define STATUS_OWNER_PHANTOM (0x2)
404
405#define NETXEN_PROT_IP (1)
406#define NETXEN_PROT_UNKNOWN (0)
407
408/* Note: sizeof(status_desc) should always be a mutliple of 2 */
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800409
410#define netxen_get_sts_desc_lro_cnt(status_desc) \
411 ((status_desc)->lro & 0x7F)
412#define netxen_get_sts_desc_lro_last_frag(status_desc) \
413 (((status_desc)->lro & 0x80) >> 7)
414
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800415#define netxen_get_sts_port(sts_data) \
416 ((sts_data) & 0x0F)
417#define netxen_get_sts_status(sts_data) \
418 (((sts_data) >> 4) & 0x0F)
419#define netxen_get_sts_type(sts_data) \
420 (((sts_data) >> 8) & 0x0F)
421#define netxen_get_sts_totallength(sts_data) \
422 (((sts_data) >> 12) & 0xFFFF)
423#define netxen_get_sts_refhandle(sts_data) \
424 (((sts_data) >> 28) & 0xFFFF)
425#define netxen_get_sts_prot(sts_data) \
426 (((sts_data) >> 44) & 0x0F)
427#define netxen_get_sts_opcode(sts_data) \
428 (((sts_data) >> 58) & 0x03F)
429
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800430#define netxen_get_sts_owner(status_desc) \
Al Viroa608ab9c2007-01-02 10:39:10 +0000431 ((le64_to_cpu((status_desc)->status_desc_data) >> 56) & 0x03)
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800432#define netxen_set_sts_owner(status_desc, val) { \
433 (status_desc)->status_desc_data = \
434 ((status_desc)->status_desc_data & \
435 ~cpu_to_le64(0x3ULL << 56)) | \
436 cpu_to_le64((u64)((val) & 0x3) << 56); \
437}
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400438
439struct status_desc {
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800440 /* Bit pattern: 0-3 port, 4-7 status, 8-11 type, 12-27 total_length
441 28-43 reference_handle, 44-47 protocol, 48-52 unused
442 53-55 desc_cnt, 56-57 owner, 58-63 opcode
443 */
Al Viroa608ab9c2007-01-02 10:39:10 +0000444 __le64 status_desc_data;
445 __le32 hash_value;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800446 u8 hash_type;
447 u8 msg_type;
448 u8 unused;
449 /* Bit pattern: 0-6 lro_count indicates frag sequence,
450 7 last_frag indicates last frag */
451 u8 lro;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700452} __attribute__ ((aligned(16)));
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400453
454enum {
455 NETXEN_RCV_PEG_0 = 0,
456 NETXEN_RCV_PEG_1
457};
458/* The version of the main data structure */
459#define NETXEN_BDINFO_VERSION 1
460
461/* Magic number to let user know flash is programmed */
462#define NETXEN_BDINFO_MAGIC 0x12345678
463
464/* Max number of Gig ports on a Phantom board */
465#define NETXEN_MAX_PORTS 4
466
467typedef enum {
468 NETXEN_BRDTYPE_P1_BD = 0x0000,
469 NETXEN_BRDTYPE_P1_SB = 0x0001,
470 NETXEN_BRDTYPE_P1_SMAX = 0x0002,
471 NETXEN_BRDTYPE_P1_SOCK = 0x0003,
472
473 NETXEN_BRDTYPE_P2_SOCK_31 = 0x0008,
474 NETXEN_BRDTYPE_P2_SOCK_35 = 0x0009,
475 NETXEN_BRDTYPE_P2_SB35_4G = 0x000a,
476 NETXEN_BRDTYPE_P2_SB31_10G = 0x000b,
477 NETXEN_BRDTYPE_P2_SB31_2G = 0x000c,
478
479 NETXEN_BRDTYPE_P2_SB31_10G_IMEZ = 0x000d,
480 NETXEN_BRDTYPE_P2_SB31_10G_HMEZ = 0x000e,
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700481 NETXEN_BRDTYPE_P2_SB31_10G_CX4 = 0x000f,
482
483 NETXEN_BRDTYPE_P3_REF_QG = 0x0021,
484 NETXEN_BRDTYPE_P3_HMEZ = 0x0022,
485 NETXEN_BRDTYPE_P3_10G_CX4_LP = 0x0023,
486 NETXEN_BRDTYPE_P3_4_GB = 0x0024,
487 NETXEN_BRDTYPE_P3_IMEZ = 0x0025,
488 NETXEN_BRDTYPE_P3_10G_SFP_PLUS = 0x0026,
489 NETXEN_BRDTYPE_P3_10000_BASE_T = 0x0027,
490 NETXEN_BRDTYPE_P3_XG_LOM = 0x0028,
491 NETXEN_BRDTYPE_P3_4_GB_MM = 0x0029,
492 NETXEN_BRDTYPE_P3_10G_CX4 = 0x0031,
493 NETXEN_BRDTYPE_P3_10G_XFP = 0x0032
494
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400495} netxen_brdtype_t;
496
497typedef enum {
498 NETXEN_BRDMFG_INVENTEC = 1
499} netxen_brdmfg;
500
501typedef enum {
502 MEM_ORG_128Mbx4 = 0x0, /* DDR1 only */
503 MEM_ORG_128Mbx8 = 0x1, /* DDR1 only */
504 MEM_ORG_128Mbx16 = 0x2, /* DDR1 only */
505 MEM_ORG_256Mbx4 = 0x3,
506 MEM_ORG_256Mbx8 = 0x4,
507 MEM_ORG_256Mbx16 = 0x5,
508 MEM_ORG_512Mbx4 = 0x6,
509 MEM_ORG_512Mbx8 = 0x7,
510 MEM_ORG_512Mbx16 = 0x8,
511 MEM_ORG_1Gbx4 = 0x9,
512 MEM_ORG_1Gbx8 = 0xa,
513 MEM_ORG_1Gbx16 = 0xb,
514 MEM_ORG_2Gbx4 = 0xc,
515 MEM_ORG_2Gbx8 = 0xd,
516 MEM_ORG_2Gbx16 = 0xe,
517 MEM_ORG_128Mbx32 = 0x10002, /* GDDR only */
518 MEM_ORG_256Mbx32 = 0x10005 /* GDDR only */
519} netxen_mn_mem_org_t;
520
521typedef enum {
522 MEM_ORG_512Kx36 = 0x0,
523 MEM_ORG_1Mx36 = 0x1,
524 MEM_ORG_2Mx36 = 0x2
525} netxen_sn_mem_org_t;
526
527typedef enum {
528 MEM_DEPTH_4MB = 0x1,
529 MEM_DEPTH_8MB = 0x2,
530 MEM_DEPTH_16MB = 0x3,
531 MEM_DEPTH_32MB = 0x4,
532 MEM_DEPTH_64MB = 0x5,
533 MEM_DEPTH_128MB = 0x6,
534 MEM_DEPTH_256MB = 0x7,
535 MEM_DEPTH_512MB = 0x8,
536 MEM_DEPTH_1GB = 0x9,
537 MEM_DEPTH_2GB = 0xa,
538 MEM_DEPTH_4GB = 0xb,
539 MEM_DEPTH_8GB = 0xc,
540 MEM_DEPTH_16GB = 0xd,
541 MEM_DEPTH_32GB = 0xe
542} netxen_mem_depth_t;
543
544struct netxen_board_info {
545 u32 header_version;
546
547 u32 board_mfg;
548 u32 board_type;
549 u32 board_num;
550 u32 chip_id;
551 u32 chip_minor;
552 u32 chip_major;
553 u32 chip_pkg;
554 u32 chip_lot;
555
556 u32 port_mask; /* available niu ports */
557 u32 peg_mask; /* available pegs */
558 u32 icache_ok; /* can we run with icache? */
559 u32 dcache_ok; /* can we run with dcache? */
560 u32 casper_ok;
561
562 u32 mac_addr_lo_0;
563 u32 mac_addr_lo_1;
564 u32 mac_addr_lo_2;
565 u32 mac_addr_lo_3;
566
567 /* MN-related config */
568 u32 mn_sync_mode; /* enable/ sync shift cclk/ sync shift mclk */
569 u32 mn_sync_shift_cclk;
570 u32 mn_sync_shift_mclk;
571 u32 mn_wb_en;
572 u32 mn_crystal_freq; /* in MHz */
573 u32 mn_speed; /* in MHz */
574 u32 mn_org;
575 u32 mn_depth;
576 u32 mn_ranks_0; /* ranks per slot */
577 u32 mn_ranks_1; /* ranks per slot */
578 u32 mn_rd_latency_0;
579 u32 mn_rd_latency_1;
580 u32 mn_rd_latency_2;
581 u32 mn_rd_latency_3;
582 u32 mn_rd_latency_4;
583 u32 mn_rd_latency_5;
584 u32 mn_rd_latency_6;
585 u32 mn_rd_latency_7;
586 u32 mn_rd_latency_8;
587 u32 mn_dll_val[18];
588 u32 mn_mode_reg; /* MIU DDR Mode Register */
589 u32 mn_ext_mode_reg; /* MIU DDR Extended Mode Register */
590 u32 mn_timing_0; /* MIU Memory Control Timing Rgister */
591 u32 mn_timing_1; /* MIU Extended Memory Ctrl Timing Register */
592 u32 mn_timing_2; /* MIU Extended Memory Ctrl Timing2 Register */
593
594 /* SN-related config */
595 u32 sn_sync_mode; /* enable/ sync shift cclk / sync shift mclk */
596 u32 sn_pt_mode; /* pass through mode */
597 u32 sn_ecc_en;
598 u32 sn_wb_en;
599 u32 sn_crystal_freq;
600 u32 sn_speed;
601 u32 sn_org;
602 u32 sn_depth;
603 u32 sn_dll_tap;
604 u32 sn_rd_latency;
605
606 u32 mac_addr_hi_0;
607 u32 mac_addr_hi_1;
608 u32 mac_addr_hi_2;
609 u32 mac_addr_hi_3;
610
611 u32 magic; /* indicates flash has been initialized */
612
613 u32 mn_rdimm;
614 u32 mn_dll_override;
615
616};
617
618#define FLASH_NUM_PORTS (4)
619
620struct netxen_flash_mac_addr {
621 u32 flash_addr[32];
622};
623
624struct netxen_user_old_info {
625 u8 flash_md5[16];
626 u8 crbinit_md5[16];
627 u8 brdcfg_md5[16];
628 /* bootloader */
629 u32 bootld_version;
630 u32 bootld_size;
631 u8 bootld_md5[16];
632 /* image */
633 u32 image_version;
634 u32 image_size;
635 u8 image_md5[16];
636 /* primary image status */
637 u32 primary_status;
638 u32 secondary_present;
639
640 /* MAC address , 4 ports */
641 struct netxen_flash_mac_addr mac_addr[FLASH_NUM_PORTS];
642};
643#define FLASH_NUM_MAC_PER_PORT 32
644struct netxen_user_info {
645 u8 flash_md5[16 * 64];
646 /* bootloader */
647 u32 bootld_version;
648 u32 bootld_size;
649 /* image */
650 u32 image_version;
651 u32 image_size;
652 /* primary image status */
653 u32 primary_status;
654 u32 secondary_present;
655
656 /* MAC address , 4 ports, 32 address per port */
657 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
658 u32 sub_sys_id;
659 u8 serial_num[32];
660
661 /* Any user defined data */
662};
663
664/*
665 * Flash Layout - new format.
666 */
667struct netxen_new_user_info {
668 u8 flash_md5[16 * 64];
669 /* bootloader */
670 u32 bootld_version;
671 u32 bootld_size;
672 /* image */
673 u32 image_version;
674 u32 image_size;
675 /* primary image status */
676 u32 primary_status;
677 u32 secondary_present;
678
679 /* MAC address , 4 ports, 32 address per port */
680 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
681 u32 sub_sys_id;
682 u8 serial_num[32];
683
684 /* Any user defined data */
685};
686
687#define SECONDARY_IMAGE_PRESENT 0xb3b4b5b6
688#define SECONDARY_IMAGE_ABSENT 0xffffffff
689#define PRIMARY_IMAGE_GOOD 0x5a5a5a5a
690#define PRIMARY_IMAGE_BAD 0xffffffff
691
692/* Flash memory map */
693typedef enum {
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700694 NETXEN_CRBINIT_START = 0, /* Crbinit section */
695 NETXEN_BRDCFG_START = 0x4000, /* board config */
696 NETXEN_INITCODE_START = 0x6000, /* pegtune code */
697 NETXEN_BOOTLD_START = 0x10000, /* bootld */
698 NETXEN_IMAGE_START = 0x43000, /* compressed image */
699 NETXEN_SECONDARY_START = 0x200000, /* backup images */
700 NETXEN_PXE_START = 0x3E0000, /* user defined region */
701 NETXEN_USER_START = 0x3E8000, /* User defined region for new boards */
702 NETXEN_FIXED_START = 0x3F0000 /* backup of crbinit */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400703} netxen_flash_map_t;
704
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700705#define NETXEN_USER_START_OLD NETXEN_PXE_START /* for backward compatibility */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400706
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700707#define NETXEN_FLASH_START (NETXEN_CRBINIT_START)
708#define NETXEN_INIT_SECTOR (0)
709#define NETXEN_PRIMARY_START (NETXEN_BOOTLD_START)
710#define NETXEN_FLASH_CRBINIT_SIZE (0x4000)
711#define NETXEN_FLASH_BRDCFG_SIZE (sizeof(struct netxen_board_info))
712#define NETXEN_FLASH_USER_SIZE (sizeof(struct netxen_user_info)/sizeof(u32))
713#define NETXEN_FLASH_SECONDARY_SIZE (NETXEN_USER_START-NETXEN_SECONDARY_START)
714#define NETXEN_NUM_PRIMARY_SECTORS (0x20)
715#define NETXEN_NUM_CONFIG_SECTORS (1)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800716#define PFX "NetXen: "
717extern char netxen_nic_driver_name[];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400718
719/* Note: Make sure to not call this before adapter->port is valid */
720#if !defined(NETXEN_DEBUG)
721#define DPRINTK(klevel, fmt, args...) do { \
722 } while (0)
723#else
724#define DPRINTK(klevel, fmt, args...) do { \
725 printk(KERN_##klevel PFX "%s: %s: " fmt, __FUNCTION__,\
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700726 (adapter != NULL && adapter->netdev != NULL) ? \
727 adapter->netdev->name : NULL, \
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400728 ## args); } while(0)
729#endif
730
731/* Number of status descriptors to handle per interrupt */
732#define MAX_STATUS_HANDLE (128)
733
734/*
735 * netxen_skb_frag{} is to contain mapping info for each SG list. This
736 * has to be freed when DMA is complete. This is part of netxen_tx_buffer{}.
737 */
738struct netxen_skb_frag {
739 u64 dma;
740 u32 length;
741};
742
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700743#define _netxen_set_bits(config_word, start, bits, val) {\
744 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start));\
745 unsigned long long __tvalue = (val); \
746 (config_word) &= ~__tmask; \
747 (config_word) |= (((__tvalue) << (start)) & __tmask); \
748}
Jeff Garzik47906542007-11-23 21:23:36 -0500749
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700750#define _netxen_clear_bits(config_word, start, bits) {\
751 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start)); \
752 (config_word) &= ~__tmask; \
Jeff Garzik47906542007-11-23 21:23:36 -0500753}
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700754
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400755/* Following defines are for the state of the buffers */
756#define NETXEN_BUFFER_FREE 0
757#define NETXEN_BUFFER_BUSY 1
758
759/*
760 * There will be one netxen_buffer per skb packet. These will be
761 * used to save the dma info for pci_unmap_page()
762 */
763struct netxen_cmd_buffer {
764 struct sk_buff *skb;
765 struct netxen_skb_frag frag_array[MAX_BUFFERS_PER_CMD + 1];
766 u32 total_length;
767 u32 mss;
768 u16 port;
769 u8 cmd;
770 u8 frag_count;
771 unsigned long time_stamp;
772 u32 state;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400773};
774
775/* In rx_buffer, we do not need multiple fragments as is a single buffer */
776struct netxen_rx_buffer {
777 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 */
857 int begin_alloc;
858};
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 {
976 u64 host_phys_addr; /* Ring base addr */
977 u32 ring_size; /* Ring entries */
978 u16 msi_index;
979 u16 rsvd; /* Padding */
980} nx_hostrq_sds_ring_t;
981
982typedef struct {
983 u64 host_phys_addr; /* Ring base addr */
984 u64 buff_size; /* Packet buffer size */
985 u32 ring_size; /* Ring entries */
986 u32 ring_kind; /* Class of ring */
987} nx_hostrq_rds_ring_t;
988
989typedef struct {
990 u64 host_rsp_dma_addr; /* Response dma'd here */
991 u32 capabilities[4]; /* Flag bit vector */
992 u32 host_int_crb_mode; /* Interrupt crb usage */
993 u32 host_rds_crb_mode; /* RDS crb usage */
994 /* These ring offsets are relative to data[0] below */
995 u32 rds_ring_offset; /* Offset to RDS config */
996 u32 sds_ring_offset; /* Offset to SDS config */
997 u16 num_rds_rings; /* Count of RDS rings */
998 u16 num_sds_rings; /* Count of SDS rings */
999 u16 rsvd1; /* Padding */
1000 u16 rsvd2; /* Padding */
1001 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 {
1010 u32 host_producer_crb; /* Crb to use */
1011 u32 rsvd1; /* Padding */
1012} nx_cardrsp_rds_ring_t;
1013
1014typedef struct {
1015 u32 host_consumer_crb; /* Crb to use */
1016 u32 interrupt_crb; /* Crb to use */
1017} nx_cardrsp_sds_ring_t;
1018
1019typedef struct {
1020 /* These ring offsets are relative to data[0] below */
1021 u32 rds_ring_offset; /* Offset to RDS config */
1022 u32 sds_ring_offset; /* Offset to SDS config */
1023 u32 host_ctx_state; /* Starting State */
1024 u32 num_fn_per_port; /* How many PCI fn share the port */
1025 u16 num_rds_rings; /* Count of RDS rings */
1026 u16 num_sds_rings; /* Count of SDS rings */
1027 u16 context_id; /* Handle for context */
1028 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 {
1053 u64 host_phys_addr; /* Ring base addr */
1054 u32 ring_size; /* Ring entries */
1055 u32 rsvd; /* Padding */
1056} nx_hostrq_cds_ring_t;
1057
1058typedef struct {
1059 u64 host_rsp_dma_addr; /* Response dma'd here */
1060 u64 cmd_cons_dma_addr; /* */
1061 u64 dummy_dma_addr; /* */
1062 u32 capabilities[4]; /* Flag bit vector */
1063 u32 host_int_crb_mode; /* Interrupt crb usage */
1064 u32 rsvd1; /* Padding */
1065 u16 rsvd2; /* Padding */
1066 u16 interrupt_ctl;
1067 u16 msi_index;
1068 u16 rsvd3; /* Padding */
1069 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 {
1074 u32 host_producer_crb; /* Crb to use */
1075 u32 interrupt_crb; /* Crb to use */
1076} nx_cardrsp_cds_ring_t;
1077
1078typedef struct {
1079 u32 host_ctx_state; /* Starting state */
1080 u16 context_id; /* Handle for context */
1081 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
1118typedef struct {
1119 u64 qhdr;
1120 u64 req_hdr;
1121 u64 words[6];
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001122} nx_nic_req_t;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001123
1124typedef struct {
1125 u8 op;
1126 u8 tag;
1127 u8 mac_addr[6];
1128} nx_mac_req_t;
1129
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001130#define MAX_PENDING_DESC_BLOCK_SIZE 64
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001131
Dhananjay Phadke29566402008-07-21 19:44:04 -07001132#define NETXEN_NIC_MSI_ENABLED 0x02
1133#define NETXEN_NIC_MSIX_ENABLED 0x04
1134#define NETXEN_IS_MSI_FAMILY(adapter) \
1135 ((adapter)->flags & (NETXEN_NIC_MSI_ENABLED | NETXEN_NIC_MSIX_ENABLED))
1136
1137#define MSIX_ENTRIES_PER_ADAPTER 8
1138#define NETXEN_MSIX_TBL_SPACE 8192
1139#define NETXEN_PCI_REG_MSIX_TBL 0x44
1140
1141#define NETXEN_DB_MAPSIZE_BYTES 0x1000
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001142
1143struct netxen_dummy_dma {
1144 void *addr;
1145 dma_addr_t phys_addr;
1146};
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001147
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001148struct netxen_adapter {
1149 struct netxen_hardware_context ahw;
Jeff Garzik47906542007-11-23 21:23:36 -05001150
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001151 struct net_device *netdev;
1152 struct pci_dev *pdev;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001153 int pci_using_dac;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001154 struct napi_struct napi;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -07001155 struct net_device_stats net_stats;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001156 int mtu;
1157 int portnum;
Dhananjay Phadke3276fba2008-06-15 22:59:44 -07001158 u8 physical_port;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001159 u16 tx_context_id;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001160
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001161 uint8_t mc_enabled;
1162 uint8_t max_mc_count;
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001163 nx_mac_list_t *mac_list;
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001164
Dhananjay Phadke29566402008-07-21 19:44:04 -07001165 struct netxen_legacy_intr_set legacy_intr;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001166 u32 crb_intr_mask;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001167
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001168 struct work_struct watchdog_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001169 struct timer_list watchdog_timer;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001170 struct work_struct tx_timeout_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001171
1172 u32 curr_window;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001173 u32 crb_win;
1174 rwlock_t adapter_lock;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001175
Dhananjay Phadke29566402008-07-21 19:44:04 -07001176 uint64_t dma_mask;
1177
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001178 u32 cmd_producer;
Al Virof305f782007-12-22 19:44:00 +00001179 __le32 *cmd_consumer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001180 u32 last_cmd_consumer;
Dhananjay Phadke7830b222008-07-21 19:44:00 -07001181 u32 crb_addr_cmd_producer;
1182 u32 crb_addr_cmd_consumer;
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -07001183
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001184 u32 max_tx_desc_count;
1185 u32 max_rx_desc_count;
1186 u32 max_jumbo_rx_desc_count;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001187 u32 max_lro_rx_desc_count;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001188
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001189 int max_rds_rings;
1190
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001191 u32 flags;
1192 u32 irq;
1193 int driver_mismatch;
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001194 u32 temp;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001195
Dhananjay Phadke29566402008-07-21 19:44:04 -07001196 u32 fw_major;
1197
1198 u8 msix_supported;
1199 u8 max_possible_rss_rings;
1200 struct msix_entry msix_entries[MSIX_ENTRIES_PER_ADAPTER];
1201
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001202 struct netxen_adapter_stats stats;
Jeff Garzik47906542007-11-23 21:23:36 -05001203
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001204 u16 link_speed;
1205 u16 link_duplex;
1206 u16 state;
1207 u16 link_autoneg;
Dhananjay Phadke200eef22007-09-03 10:33:35 +05301208 int rx_csum;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001209 int status;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001210
1211 struct netxen_cmd_buffer *cmd_buf_arr; /* Command buffers for xmit */
1212
1213 /*
1214 * Receive instances. These can be either one per port,
1215 * or one per peg, etc.
1216 */
1217 struct netxen_recv_context recv_ctx[MAX_RCV_CTX];
1218
1219 int is_up;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001220 struct netxen_dummy_dma dummy_dma;
1221
1222 /* Context interface shared between card and host */
1223 struct netxen_ring_ctx *ctx_desc;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001224 dma_addr_t ctx_desc_phys_addr;
dhananjay.phadke@gmail.com2d1a3bb2007-07-02 00:26:00 +05301225 int intr_scheme;
Dhananjay Phadke443be792008-03-17 19:59:48 -07001226 int msi_mode;
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001227 int (*enable_phy_interrupts) (struct netxen_adapter *);
1228 int (*disable_phy_interrupts) (struct netxen_adapter *);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001229 int (*macaddr_set) (struct netxen_adapter *, netxen_ethernet_macaddr_t);
1230 int (*set_mtu) (struct netxen_adapter *, int);
1231 int (*set_promisc) (struct netxen_adapter *, netxen_niu_prom_mode_t);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001232 int (*phy_read) (struct netxen_adapter *, long reg, u32 *);
1233 int (*phy_write) (struct netxen_adapter *, long reg, u32 val);
Amit S. Kale80922fb2006-12-04 09:18:00 -08001234 int (*init_port) (struct netxen_adapter *, int);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001235 int (*stop_port) (struct netxen_adapter *);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001236
1237 int (*hw_read_wx)(struct netxen_adapter *, ulong, void *, int);
1238 int (*hw_write_wx)(struct netxen_adapter *, ulong, void *, int);
1239 int (*pci_mem_read)(struct netxen_adapter *, u64, void *, int);
1240 int (*pci_mem_write)(struct netxen_adapter *, u64, void *, int);
1241 int (*pci_write_immediate)(struct netxen_adapter *, u64, u32);
1242 u32 (*pci_read_immediate)(struct netxen_adapter *, u64);
1243 void (*pci_write_normalize)(struct netxen_adapter *, u64, u32);
1244 u32 (*pci_read_normalize)(struct netxen_adapter *, u64);
1245 unsigned long (*pci_set_window)(struct netxen_adapter *,
1246 unsigned long long);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001247}; /* netxen_adapter structure */
1248
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301249/*
1250 * NetXen dma watchdog control structure
1251 *
1252 * Bit 0 : enabled => R/O: 1 watchdog active, 0 inactive
1253 * Bit 1 : disable_request => 1 req disable dma watchdog
1254 * Bit 2 : enable_request => 1 req enable dma watchdog
1255 * Bit 3-31 : unused
1256 */
1257
1258#define netxen_set_dma_watchdog_disable_req(config_word) \
1259 _netxen_set_bits(config_word, 1, 1, 1)
1260#define netxen_set_dma_watchdog_enable_req(config_word) \
1261 _netxen_set_bits(config_word, 2, 1, 1)
1262#define netxen_get_dma_watchdog_enabled(config_word) \
1263 ((config_word) & 0x1)
1264#define netxen_get_dma_watchdog_disabled(config_word) \
1265 (((config_word) >> 1) & 0x1)
1266
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001267/* Max number of xmit producer threads that can run simultaneously */
1268#define MAX_XMIT_PRODUCERS 16
1269
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001270#define PCI_OFFSET_FIRST_RANGE(adapter, off) \
1271 ((adapter)->ahw.pci_base0 + (off))
1272#define PCI_OFFSET_SECOND_RANGE(adapter, off) \
1273 ((adapter)->ahw.pci_base1 + (off) - SECOND_PAGE_GROUP_START)
1274#define PCI_OFFSET_THIRD_RANGE(adapter, off) \
1275 ((adapter)->ahw.pci_base2 + (off) - THIRD_PAGE_GROUP_START)
1276
1277static inline void __iomem *pci_base_offset(struct netxen_adapter *adapter,
1278 unsigned long off)
1279{
1280 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1281 return (adapter->ahw.pci_base0 + off);
1282 } else if ((off < SECOND_PAGE_GROUP_END) &&
1283 (off >= SECOND_PAGE_GROUP_START)) {
1284 return (adapter->ahw.pci_base1 + off - SECOND_PAGE_GROUP_START);
1285 } else if ((off < THIRD_PAGE_GROUP_END) &&
1286 (off >= THIRD_PAGE_GROUP_START)) {
1287 return (adapter->ahw.pci_base2 + off - THIRD_PAGE_GROUP_START);
1288 }
1289 return NULL;
1290}
1291
1292static inline void __iomem *pci_base(struct netxen_adapter *adapter,
1293 unsigned long off)
1294{
1295 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1296 return adapter->ahw.pci_base0;
1297 } else if ((off < SECOND_PAGE_GROUP_END) &&
1298 (off >= SECOND_PAGE_GROUP_START)) {
1299 return adapter->ahw.pci_base1;
1300 } else if ((off < THIRD_PAGE_GROUP_END) &&
1301 (off >= THIRD_PAGE_GROUP_START)) {
1302 return adapter->ahw.pci_base2;
1303 }
1304 return NULL;
1305}
1306
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001307int netxen_niu_xgbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1308int netxen_niu_gbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1309int netxen_niu_xgbe_disable_phy_interrupts(struct netxen_adapter *adapter);
1310int netxen_niu_gbe_disable_phy_interrupts(struct netxen_adapter *adapter);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001311int netxen_niu_gbe_phy_read(struct netxen_adapter *adapter, long reg,
Al Viroa608ab9c2007-01-02 10:39:10 +00001312 __u32 * readval);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001313int netxen_niu_gbe_phy_write(struct netxen_adapter *adapter,
Al Viroa608ab9c2007-01-02 10:39:10 +00001314 long reg, __u32 val);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001315
1316/* Functions available from netxen_nic_hw.c */
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001317int netxen_nic_set_mtu_xgb(struct netxen_adapter *adapter, int new_mtu);
1318int netxen_nic_set_mtu_gb(struct netxen_adapter *adapter, int new_mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001319void netxen_nic_reg_write(struct netxen_adapter *adapter, u64 off, u32 val);
1320int netxen_nic_reg_read(struct netxen_adapter *adapter, u64 off);
1321void netxen_nic_write_w0(struct netxen_adapter *adapter, u32 index, u32 value);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001322void netxen_nic_read_w0(struct netxen_adapter *adapter, u32 index, u32 *value);
1323void netxen_nic_write_w1(struct netxen_adapter *adapter, u32 index, u32 value);
1324void netxen_nic_read_w1(struct netxen_adapter *adapter, u32 index, u32 *value);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001325
1326int netxen_nic_get_board_info(struct netxen_adapter *adapter);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001327
1328int netxen_nic_hw_read_wx_128M(struct netxen_adapter *adapter,
1329 ulong off, void *data, int len);
1330int netxen_nic_hw_write_wx_128M(struct netxen_adapter *adapter,
1331 ulong off, void *data, int len);
1332int netxen_nic_pci_mem_read_128M(struct netxen_adapter *adapter,
1333 u64 off, void *data, int size);
1334int netxen_nic_pci_mem_write_128M(struct netxen_adapter *adapter,
1335 u64 off, void *data, int size);
1336int netxen_nic_pci_write_immediate_128M(struct netxen_adapter *adapter,
1337 u64 off, u32 data);
1338u32 netxen_nic_pci_read_immediate_128M(struct netxen_adapter *adapter, u64 off);
1339void netxen_nic_pci_write_normalize_128M(struct netxen_adapter *adapter,
1340 u64 off, u32 data);
1341u32 netxen_nic_pci_read_normalize_128M(struct netxen_adapter *adapter, u64 off);
1342unsigned long netxen_nic_pci_set_window_128M(struct netxen_adapter *adapter,
1343 unsigned long long addr);
1344void netxen_nic_pci_change_crbwindow_128M(struct netxen_adapter *adapter,
1345 u32 wndw);
1346
1347int netxen_nic_hw_read_wx_2M(struct netxen_adapter *adapter,
1348 ulong off, void *data, int len);
1349int netxen_nic_hw_write_wx_2M(struct netxen_adapter *adapter,
1350 ulong off, void *data, int len);
1351int netxen_nic_pci_mem_read_2M(struct netxen_adapter *adapter,
1352 u64 off, void *data, int size);
1353int netxen_nic_pci_mem_write_2M(struct netxen_adapter *adapter,
1354 u64 off, void *data, int size);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001355void netxen_crb_writelit_adapter(struct netxen_adapter *adapter,
1356 unsigned long off, int data);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001357int netxen_nic_pci_write_immediate_2M(struct netxen_adapter *adapter,
1358 u64 off, u32 data);
1359u32 netxen_nic_pci_read_immediate_2M(struct netxen_adapter *adapter, u64 off);
1360void netxen_nic_pci_write_normalize_2M(struct netxen_adapter *adapter,
1361 u64 off, u32 data);
1362u32 netxen_nic_pci_read_normalize_2M(struct netxen_adapter *adapter, u64 off);
1363unsigned long netxen_nic_pci_set_window_2M(struct netxen_adapter *adapter,
1364 unsigned long long addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001365
1366/* Functions from netxen_nic_init.c */
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001367void netxen_free_adapter_offload(struct netxen_adapter *adapter);
1368int netxen_initialize_adapter_offload(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301369int netxen_phantom_init(struct netxen_adapter *adapter, int pegtune_val);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001370int netxen_receive_peg_ready(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301371int netxen_load_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001372int netxen_pinit_from_rom(struct netxen_adapter *adapter, int verbose);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001373
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001374int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr, int *valp);
Jeff Garzik47906542007-11-23 21:23:36 -05001375int netxen_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001376 u8 *bytes, size_t size);
Jeff Garzik47906542007-11-23 21:23:36 -05001377int netxen_rom_fast_write_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001378 u8 *bytes, size_t size);
1379int netxen_flash_unlock(struct netxen_adapter *adapter);
1380int netxen_backup_crbinit(struct netxen_adapter *adapter);
1381int netxen_flash_erase_secondary(struct netxen_adapter *adapter);
1382int netxen_flash_erase_primary(struct netxen_adapter *adapter);
Amit S. Kalee45d9ab2007-02-09 05:49:08 -08001383void netxen_halt_pegs(struct netxen_adapter *adapter);
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001384
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001385int netxen_rom_se(struct netxen_adapter *adapter, int addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001386
Dhananjay Phadke29566402008-07-21 19:44:04 -07001387int netxen_alloc_sw_resources(struct netxen_adapter *adapter);
1388void netxen_free_sw_resources(struct netxen_adapter *adapter);
1389
1390int netxen_alloc_hw_resources(struct netxen_adapter *adapter);
1391void netxen_free_hw_resources(struct netxen_adapter *adapter);
1392
1393void netxen_release_rx_buffers(struct netxen_adapter *adapter);
1394void netxen_release_tx_buffers(struct netxen_adapter *adapter);
1395
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001396void netxen_initialize_adapter_ops(struct netxen_adapter *adapter);
1397int netxen_init_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001398void netxen_tso_check(struct netxen_adapter *adapter,
1399 struct cmd_desc_type0 *desc, struct sk_buff *skb);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001400void netxen_nic_clear_stats(struct netxen_adapter *adapter);
David Howells6d5aefb2006-12-05 19:36:26 +00001401void netxen_watchdog_task(struct work_struct *work);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001402void netxen_post_rx_buffers(struct netxen_adapter *adapter, u32 ctx,
1403 u32 ringid);
Dhananjay Phadke05aaa022008-03-17 19:59:49 -07001404int netxen_process_cmd_ring(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001405u32 netxen_process_rcv_ring(struct netxen_adapter *adapter, int ctx, int max);
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001406void netxen_p2_nic_set_multi(struct net_device *netdev);
1407void netxen_p3_nic_set_multi(struct net_device *netdev);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001408
1409u32 nx_fw_cmd_set_mtu(struct netxen_adapter *adapter, u32 mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001410int netxen_nic_change_mtu(struct net_device *netdev, int new_mtu);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001411
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001412int netxen_nic_set_mac(struct net_device *netdev, void *p);
1413struct net_device_stats *netxen_nic_get_stats(struct net_device *netdev);
1414
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001415void netxen_nic_update_cmd_producer(struct netxen_adapter *adapter,
1416 uint32_t crb_producer);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001417
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001418/*
1419 * NetXen Board information
1420 */
1421
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001422#define NETXEN_MAX_SHORT_NAME 32
Amit S. Kale71bd7872006-12-01 05:36:22 -08001423struct netxen_brdinfo {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001424 netxen_brdtype_t brdtype; /* type of board */
1425 long ports; /* max no of physical ports */
1426 char short_name[NETXEN_MAX_SHORT_NAME];
Amit S. Kale71bd7872006-12-01 05:36:22 -08001427};
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001428
Amit S. Kale71bd7872006-12-01 05:36:22 -08001429static const struct netxen_brdinfo netxen_boards[] = {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001430 {NETXEN_BRDTYPE_P2_SB31_10G_CX4, 1, "XGb CX4"},
1431 {NETXEN_BRDTYPE_P2_SB31_10G_HMEZ, 1, "XGb HMEZ"},
1432 {NETXEN_BRDTYPE_P2_SB31_10G_IMEZ, 2, "XGb IMEZ"},
1433 {NETXEN_BRDTYPE_P2_SB31_10G, 1, "XGb XFP"},
1434 {NETXEN_BRDTYPE_P2_SB35_4G, 4, "Quad Gb"},
1435 {NETXEN_BRDTYPE_P2_SB31_2G, 2, "Dual Gb"},
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001436 {NETXEN_BRDTYPE_P3_REF_QG, 4, "Reference Quad Gig "},
1437 {NETXEN_BRDTYPE_P3_HMEZ, 2, "Dual XGb HMEZ"},
1438 {NETXEN_BRDTYPE_P3_10G_CX4_LP, 2, "Dual XGb CX4 LP"},
1439 {NETXEN_BRDTYPE_P3_4_GB, 4, "Quad Gig LP"},
1440 {NETXEN_BRDTYPE_P3_IMEZ, 2, "Dual XGb IMEZ"},
1441 {NETXEN_BRDTYPE_P3_10G_SFP_PLUS, 2, "Dual XGb SFP+ LP"},
1442 {NETXEN_BRDTYPE_P3_10000_BASE_T, 1, "XGB 10G BaseT LP"},
1443 {NETXEN_BRDTYPE_P3_XG_LOM, 2, "Dual XGb LOM"},
1444 {NETXEN_BRDTYPE_P3_4_GB_MM, 4, "Quad GB - March Madness"},
1445 {NETXEN_BRDTYPE_P3_10G_CX4, 2, "Reference Dual CX4 Option"},
1446 {NETXEN_BRDTYPE_P3_10G_XFP, 1, "Reference Single XFP Option"}
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001447};
1448
Denis Chengff8ac602007-09-02 18:30:18 +08001449#define NUM_SUPPORTED_BOARDS ARRAY_SIZE(netxen_boards)
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001450
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001451static inline void get_brd_name_by_type(u32 type, char *name)
1452{
1453 int i, found = 0;
1454 for (i = 0; i < NUM_SUPPORTED_BOARDS; ++i) {
1455 if (netxen_boards[i].brdtype == type) {
1456 strcpy(name, netxen_boards[i].short_name);
1457 found = 1;
1458 break;
1459 }
1460
1461 }
1462 if (!found)
1463 name = "Unknown";
1464}
1465
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301466static inline int
1467dma_watchdog_shutdown_request(struct netxen_adapter *adapter)
1468{
1469 u32 ctrl;
1470
1471 /* check if already inactive */
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001472 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301473 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1474 printk(KERN_ERR "failed to read dma watchdog status\n");
1475
1476 if (netxen_get_dma_watchdog_enabled(ctrl) == 0)
1477 return 1;
1478
1479 /* Send the disable request */
1480 netxen_set_dma_watchdog_disable_req(ctrl);
1481 netxen_crb_writelit_adapter(adapter,
1482 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1483
1484 return 0;
1485}
1486
1487static inline int
1488dma_watchdog_shutdown_poll_result(struct netxen_adapter *adapter)
1489{
1490 u32 ctrl;
1491
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001492 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301493 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1494 printk(KERN_ERR "failed to read dma watchdog status\n");
1495
dhananjay@netxen.comceded322007-07-19 14:41:09 +05301496 return (netxen_get_dma_watchdog_enabled(ctrl) == 0);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301497}
1498
1499static inline int
1500dma_watchdog_wakeup(struct netxen_adapter *adapter)
1501{
1502 u32 ctrl;
1503
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001504 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301505 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1506 printk(KERN_ERR "failed to read dma watchdog status\n");
1507
1508 if (netxen_get_dma_watchdog_enabled(ctrl))
1509 return 1;
1510
1511 /* send the wakeup request */
1512 netxen_set_dma_watchdog_enable_req(ctrl);
1513
1514 netxen_crb_writelit_adapter(adapter,
1515 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1516
1517 return 0;
1518}
1519
1520
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001521int netxen_is_flash_supported(struct netxen_adapter *adapter);
Al Virof305f782007-12-22 19:44:00 +00001522int netxen_get_flash_mac_addr(struct netxen_adapter *adapter, __le64 mac[]);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001523extern void netxen_change_ringparam(struct netxen_adapter *adapter);
1524extern int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr,
1525 int *valp);
1526
1527extern struct ethtool_ops netxen_nic_ethtool_ops;
1528
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001529#endif /* __NETXEN_NIC_H_ */