blob: 07a59dc83dba7a78370afd3e835e09518dd3f244 [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>
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
69#define _NETXEN_NIC_LINUX_SUBVERSION 0
70#define NETXEN_NIC_LINUX_VERSIONID "4.0.0"
71
72#define NETXEN_VERSION_CODE(a, b, c) (((a) << 16) + ((b) << 8) + (c))
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
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800150#define MAX_RX_LRO_BUFFER_LENGTH ((48*1024)-512)
151#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
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700211#define MAX_CMD_DESCRIPTORS_HOST (MAX_CMD_DESCRIPTORS / 4)
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -0700212#define MAX_RCV_DESCRIPTORS_1G (MAX_RCV_DESCRIPTORS / 4)
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700213#define MAX_RCV_DESCRIPTORS_10G 8192
Amit S. Kalebd56c6b2006-12-18 05:54:36 -0800214#define MAX_JUMBO_RCV_DESCRIPTORS 1024
215#define MAX_LRO_RCV_DESCRIPTORS 64
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
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800312#define netxen_set_cmd_desc_flags(cmd_desc, val) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800313 (cmd_desc)->flags_opcode = ((cmd_desc)->flags_opcode & \
314 ~cpu_to_le16(0x7f)) | cpu_to_le16((val) & 0x7f)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800315#define netxen_set_cmd_desc_opcode(cmd_desc, val) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800316 (cmd_desc)->flags_opcode = ((cmd_desc)->flags_opcode & \
317 ~cpu_to_le16((u16)0x3f << 7)) | cpu_to_le16(((val) & 0x3f) << 7)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800318
319#define netxen_set_cmd_desc_num_of_buff(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(0xff)) | cpu_to_le32((val) & 0xff)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800323#define netxen_set_cmd_desc_totallength(cmd_desc, val) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800324 (cmd_desc)->num_of_buffers_total_length = \
325 ((cmd_desc)->num_of_buffers_total_length & \
326 ~cpu_to_le32((u32)0xffffff << 8)) | \
327 cpu_to_le32(((val) & 0xffffff) << 8)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800328
329#define netxen_get_cmd_desc_opcode(cmd_desc) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800330 ((le16_to_cpu((cmd_desc)->flags_opcode) >> 7) & 0x003f)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800331#define netxen_get_cmd_desc_totallength(cmd_desc) \
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800332 ((le32_to_cpu((cmd_desc)->num_of_buffers_total_length) >> 8) & 0xffffff)
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400333
334struct cmd_desc_type0 {
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800335 u8 tcp_hdr_offset; /* For LSO only */
336 u8 ip_hdr_offset; /* For LSO only */
337 /* Bit pattern: 0-6 flags, 7-12 opcode, 13-15 unused */
Al Viroa608ab92007-01-02 10:39:10 +0000338 __le16 flags_opcode;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800339 /* Bit pattern: 0-7 total number of segments,
340 8-31 Total size of the packet */
Al Viroa608ab92007-01-02 10:39:10 +0000341 __le32 num_of_buffers_total_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400342 union {
343 struct {
Al Viroa608ab92007-01-02 10:39:10 +0000344 __le32 addr_low_part2;
345 __le32 addr_high_part2;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400346 };
Al Viroa608ab92007-01-02 10:39:10 +0000347 __le64 addr_buffer2;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400348 };
349
Al Viroa608ab92007-01-02 10:39:10 +0000350 __le16 reference_handle; /* changed to u16 to add mss */
351 __le16 mss; /* passed by NDIS_PACKET for LSO */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400352 /* Bit pattern 0-3 port, 0-3 ctx id */
353 u8 port_ctxid;
354 u8 total_hdr_length; /* LSO only : MAC+IP+TCP Hdr size */
Al Viroa608ab92007-01-02 10:39:10 +0000355 __le16 conn_id; /* IPSec offoad only */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400356
357 union {
358 struct {
Al Viroa608ab92007-01-02 10:39:10 +0000359 __le32 addr_low_part3;
360 __le32 addr_high_part3;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400361 };
Al Viroa608ab92007-01-02 10:39:10 +0000362 __le64 addr_buffer3;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400363 };
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400364 union {
365 struct {
Al Viroa608ab92007-01-02 10:39:10 +0000366 __le32 addr_low_part1;
367 __le32 addr_high_part1;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400368 };
Al Viroa608ab92007-01-02 10:39:10 +0000369 __le64 addr_buffer1;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400370 };
371
Al Viroa608ab92007-01-02 10:39:10 +0000372 __le16 buffer1_length;
373 __le16 buffer2_length;
374 __le16 buffer3_length;
375 __le16 buffer4_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400376
377 union {
378 struct {
Al Viroa608ab92007-01-02 10:39:10 +0000379 __le32 addr_low_part4;
380 __le32 addr_high_part4;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400381 };
Al Viroa608ab92007-01-02 10:39:10 +0000382 __le64 addr_buffer4;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400383 };
384
Al Viroa608ab92007-01-02 10:39:10 +0000385 __le64 unused;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800386
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400387} __attribute__ ((aligned(64)));
388
389/* Note: sizeof(rcv_desc) should always be a mutliple of 2 */
390struct rcv_desc {
Al Viroa608ab92007-01-02 10:39:10 +0000391 __le16 reference_handle;
392 __le16 reserved;
393 __le32 buffer_length; /* allocated buffer length (usually 2K) */
394 __le64 addr_buffer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400395};
396
397/* opcode field in status_desc */
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700398#define NETXEN_NIC_RXPKT_DESC 0x04
399#define NETXEN_OLD_RXPKT_DESC 0x3f
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400400
401/* for status field in status_desc */
402#define STATUS_NEED_CKSUM (1)
403#define STATUS_CKSUM_OK (2)
404
405/* owner bits of status_desc */
406#define STATUS_OWNER_HOST (0x1)
407#define STATUS_OWNER_PHANTOM (0x2)
408
409#define NETXEN_PROT_IP (1)
410#define NETXEN_PROT_UNKNOWN (0)
411
412/* Note: sizeof(status_desc) should always be a mutliple of 2 */
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800413
414#define netxen_get_sts_desc_lro_cnt(status_desc) \
415 ((status_desc)->lro & 0x7F)
416#define netxen_get_sts_desc_lro_last_frag(status_desc) \
417 (((status_desc)->lro & 0x80) >> 7)
418
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800419#define netxen_get_sts_port(sts_data) \
420 ((sts_data) & 0x0F)
421#define netxen_get_sts_status(sts_data) \
422 (((sts_data) >> 4) & 0x0F)
423#define netxen_get_sts_type(sts_data) \
424 (((sts_data) >> 8) & 0x0F)
425#define netxen_get_sts_totallength(sts_data) \
426 (((sts_data) >> 12) & 0xFFFF)
427#define netxen_get_sts_refhandle(sts_data) \
428 (((sts_data) >> 28) & 0xFFFF)
429#define netxen_get_sts_prot(sts_data) \
430 (((sts_data) >> 44) & 0x0F)
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700431#define netxen_get_sts_pkt_offset(sts_data) \
432 (((sts_data) >> 48) & 0x1F)
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800433#define netxen_get_sts_opcode(sts_data) \
434 (((sts_data) >> 58) & 0x03F)
435
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800436#define netxen_get_sts_owner(status_desc) \
Al Viroa608ab92007-01-02 10:39:10 +0000437 ((le64_to_cpu((status_desc)->status_desc_data) >> 56) & 0x03)
Dhananjay Phadke5dc16262007-12-31 10:08:57 -0800438#define netxen_set_sts_owner(status_desc, val) { \
439 (status_desc)->status_desc_data = \
440 ((status_desc)->status_desc_data & \
441 ~cpu_to_le64(0x3ULL << 56)) | \
442 cpu_to_le64((u64)((val) & 0x3) << 56); \
443}
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400444
445struct status_desc {
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800446 /* Bit pattern: 0-3 port, 4-7 status, 8-11 type, 12-27 total_length
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700447 28-43 reference_handle, 44-47 protocol, 48-52 pkt_offset
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800448 53-55 desc_cnt, 56-57 owner, 58-63 opcode
449 */
Al Viroa608ab92007-01-02 10:39:10 +0000450 __le64 status_desc_data;
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700451 union {
452 struct {
453 __le32 hash_value;
454 u8 hash_type;
455 u8 msg_type;
456 u8 unused;
457 union {
458 /* Bit pattern: 0-6 lro_count indicates frag
459 * sequence, 7 last_frag indicates last frag
460 */
461 u8 lro;
462
463 /* chained buffers */
464 u8 nr_frags;
465 };
466 };
467 struct {
468 __le16 frag_handles[4];
469 };
470 };
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700471} __attribute__ ((aligned(16)));
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400472
473enum {
474 NETXEN_RCV_PEG_0 = 0,
475 NETXEN_RCV_PEG_1
476};
477/* The version of the main data structure */
478#define NETXEN_BDINFO_VERSION 1
479
480/* Magic number to let user know flash is programmed */
481#define NETXEN_BDINFO_MAGIC 0x12345678
482
483/* Max number of Gig ports on a Phantom board */
484#define NETXEN_MAX_PORTS 4
485
486typedef enum {
487 NETXEN_BRDTYPE_P1_BD = 0x0000,
488 NETXEN_BRDTYPE_P1_SB = 0x0001,
489 NETXEN_BRDTYPE_P1_SMAX = 0x0002,
490 NETXEN_BRDTYPE_P1_SOCK = 0x0003,
491
492 NETXEN_BRDTYPE_P2_SOCK_31 = 0x0008,
493 NETXEN_BRDTYPE_P2_SOCK_35 = 0x0009,
494 NETXEN_BRDTYPE_P2_SB35_4G = 0x000a,
495 NETXEN_BRDTYPE_P2_SB31_10G = 0x000b,
496 NETXEN_BRDTYPE_P2_SB31_2G = 0x000c,
497
498 NETXEN_BRDTYPE_P2_SB31_10G_IMEZ = 0x000d,
499 NETXEN_BRDTYPE_P2_SB31_10G_HMEZ = 0x000e,
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700500 NETXEN_BRDTYPE_P2_SB31_10G_CX4 = 0x000f,
501
502 NETXEN_BRDTYPE_P3_REF_QG = 0x0021,
503 NETXEN_BRDTYPE_P3_HMEZ = 0x0022,
504 NETXEN_BRDTYPE_P3_10G_CX4_LP = 0x0023,
505 NETXEN_BRDTYPE_P3_4_GB = 0x0024,
506 NETXEN_BRDTYPE_P3_IMEZ = 0x0025,
507 NETXEN_BRDTYPE_P3_10G_SFP_PLUS = 0x0026,
508 NETXEN_BRDTYPE_P3_10000_BASE_T = 0x0027,
509 NETXEN_BRDTYPE_P3_XG_LOM = 0x0028,
510 NETXEN_BRDTYPE_P3_4_GB_MM = 0x0029,
Dhananjay Phadkea70f9392008-08-01 03:14:56 -0700511 NETXEN_BRDTYPE_P3_10G_SFP_CT = 0x002a,
512 NETXEN_BRDTYPE_P3_10G_SFP_QT = 0x002b,
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -0700513 NETXEN_BRDTYPE_P3_10G_CX4 = 0x0031,
514 NETXEN_BRDTYPE_P3_10G_XFP = 0x0032
515
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400516} netxen_brdtype_t;
517
518typedef enum {
519 NETXEN_BRDMFG_INVENTEC = 1
520} netxen_brdmfg;
521
522typedef enum {
523 MEM_ORG_128Mbx4 = 0x0, /* DDR1 only */
524 MEM_ORG_128Mbx8 = 0x1, /* DDR1 only */
525 MEM_ORG_128Mbx16 = 0x2, /* DDR1 only */
526 MEM_ORG_256Mbx4 = 0x3,
527 MEM_ORG_256Mbx8 = 0x4,
528 MEM_ORG_256Mbx16 = 0x5,
529 MEM_ORG_512Mbx4 = 0x6,
530 MEM_ORG_512Mbx8 = 0x7,
531 MEM_ORG_512Mbx16 = 0x8,
532 MEM_ORG_1Gbx4 = 0x9,
533 MEM_ORG_1Gbx8 = 0xa,
534 MEM_ORG_1Gbx16 = 0xb,
535 MEM_ORG_2Gbx4 = 0xc,
536 MEM_ORG_2Gbx8 = 0xd,
537 MEM_ORG_2Gbx16 = 0xe,
538 MEM_ORG_128Mbx32 = 0x10002, /* GDDR only */
539 MEM_ORG_256Mbx32 = 0x10005 /* GDDR only */
540} netxen_mn_mem_org_t;
541
542typedef enum {
543 MEM_ORG_512Kx36 = 0x0,
544 MEM_ORG_1Mx36 = 0x1,
545 MEM_ORG_2Mx36 = 0x2
546} netxen_sn_mem_org_t;
547
548typedef enum {
549 MEM_DEPTH_4MB = 0x1,
550 MEM_DEPTH_8MB = 0x2,
551 MEM_DEPTH_16MB = 0x3,
552 MEM_DEPTH_32MB = 0x4,
553 MEM_DEPTH_64MB = 0x5,
554 MEM_DEPTH_128MB = 0x6,
555 MEM_DEPTH_256MB = 0x7,
556 MEM_DEPTH_512MB = 0x8,
557 MEM_DEPTH_1GB = 0x9,
558 MEM_DEPTH_2GB = 0xa,
559 MEM_DEPTH_4GB = 0xb,
560 MEM_DEPTH_8GB = 0xc,
561 MEM_DEPTH_16GB = 0xd,
562 MEM_DEPTH_32GB = 0xe
563} netxen_mem_depth_t;
564
565struct netxen_board_info {
566 u32 header_version;
567
568 u32 board_mfg;
569 u32 board_type;
570 u32 board_num;
571 u32 chip_id;
572 u32 chip_minor;
573 u32 chip_major;
574 u32 chip_pkg;
575 u32 chip_lot;
576
577 u32 port_mask; /* available niu ports */
578 u32 peg_mask; /* available pegs */
579 u32 icache_ok; /* can we run with icache? */
580 u32 dcache_ok; /* can we run with dcache? */
581 u32 casper_ok;
582
583 u32 mac_addr_lo_0;
584 u32 mac_addr_lo_1;
585 u32 mac_addr_lo_2;
586 u32 mac_addr_lo_3;
587
588 /* MN-related config */
589 u32 mn_sync_mode; /* enable/ sync shift cclk/ sync shift mclk */
590 u32 mn_sync_shift_cclk;
591 u32 mn_sync_shift_mclk;
592 u32 mn_wb_en;
593 u32 mn_crystal_freq; /* in MHz */
594 u32 mn_speed; /* in MHz */
595 u32 mn_org;
596 u32 mn_depth;
597 u32 mn_ranks_0; /* ranks per slot */
598 u32 mn_ranks_1; /* ranks per slot */
599 u32 mn_rd_latency_0;
600 u32 mn_rd_latency_1;
601 u32 mn_rd_latency_2;
602 u32 mn_rd_latency_3;
603 u32 mn_rd_latency_4;
604 u32 mn_rd_latency_5;
605 u32 mn_rd_latency_6;
606 u32 mn_rd_latency_7;
607 u32 mn_rd_latency_8;
608 u32 mn_dll_val[18];
609 u32 mn_mode_reg; /* MIU DDR Mode Register */
610 u32 mn_ext_mode_reg; /* MIU DDR Extended Mode Register */
611 u32 mn_timing_0; /* MIU Memory Control Timing Rgister */
612 u32 mn_timing_1; /* MIU Extended Memory Ctrl Timing Register */
613 u32 mn_timing_2; /* MIU Extended Memory Ctrl Timing2 Register */
614
615 /* SN-related config */
616 u32 sn_sync_mode; /* enable/ sync shift cclk / sync shift mclk */
617 u32 sn_pt_mode; /* pass through mode */
618 u32 sn_ecc_en;
619 u32 sn_wb_en;
620 u32 sn_crystal_freq;
621 u32 sn_speed;
622 u32 sn_org;
623 u32 sn_depth;
624 u32 sn_dll_tap;
625 u32 sn_rd_latency;
626
627 u32 mac_addr_hi_0;
628 u32 mac_addr_hi_1;
629 u32 mac_addr_hi_2;
630 u32 mac_addr_hi_3;
631
632 u32 magic; /* indicates flash has been initialized */
633
634 u32 mn_rdimm;
635 u32 mn_dll_override;
636
637};
638
639#define FLASH_NUM_PORTS (4)
640
641struct netxen_flash_mac_addr {
642 u32 flash_addr[32];
643};
644
645struct netxen_user_old_info {
646 u8 flash_md5[16];
647 u8 crbinit_md5[16];
648 u8 brdcfg_md5[16];
649 /* bootloader */
650 u32 bootld_version;
651 u32 bootld_size;
652 u8 bootld_md5[16];
653 /* image */
654 u32 image_version;
655 u32 image_size;
656 u8 image_md5[16];
657 /* primary image status */
658 u32 primary_status;
659 u32 secondary_present;
660
661 /* MAC address , 4 ports */
662 struct netxen_flash_mac_addr mac_addr[FLASH_NUM_PORTS];
663};
664#define FLASH_NUM_MAC_PER_PORT 32
665struct netxen_user_info {
666 u8 flash_md5[16 * 64];
667 /* bootloader */
668 u32 bootld_version;
669 u32 bootld_size;
670 /* image */
671 u32 image_version;
672 u32 image_size;
673 /* primary image status */
674 u32 primary_status;
675 u32 secondary_present;
676
677 /* MAC address , 4 ports, 32 address per port */
678 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
679 u32 sub_sys_id;
680 u8 serial_num[32];
681
682 /* Any user defined data */
683};
684
685/*
686 * Flash Layout - new format.
687 */
688struct netxen_new_user_info {
689 u8 flash_md5[16 * 64];
690 /* bootloader */
691 u32 bootld_version;
692 u32 bootld_size;
693 /* image */
694 u32 image_version;
695 u32 image_size;
696 /* primary image status */
697 u32 primary_status;
698 u32 secondary_present;
699
700 /* MAC address , 4 ports, 32 address per port */
701 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
702 u32 sub_sys_id;
703 u8 serial_num[32];
704
705 /* Any user defined data */
706};
707
708#define SECONDARY_IMAGE_PRESENT 0xb3b4b5b6
709#define SECONDARY_IMAGE_ABSENT 0xffffffff
710#define PRIMARY_IMAGE_GOOD 0x5a5a5a5a
711#define PRIMARY_IMAGE_BAD 0xffffffff
712
713/* Flash memory map */
714typedef enum {
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700715 NETXEN_CRBINIT_START = 0, /* Crbinit section */
716 NETXEN_BRDCFG_START = 0x4000, /* board config */
717 NETXEN_INITCODE_START = 0x6000, /* pegtune code */
718 NETXEN_BOOTLD_START = 0x10000, /* bootld */
719 NETXEN_IMAGE_START = 0x43000, /* compressed image */
720 NETXEN_SECONDARY_START = 0x200000, /* backup images */
721 NETXEN_PXE_START = 0x3E0000, /* user defined region */
722 NETXEN_USER_START = 0x3E8000, /* User defined region for new boards */
723 NETXEN_FIXED_START = 0x3F0000 /* backup of crbinit */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400724} netxen_flash_map_t;
725
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700726#define NETXEN_USER_START_OLD NETXEN_PXE_START /* for backward compatibility */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400727
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700728#define NETXEN_FLASH_START (NETXEN_CRBINIT_START)
729#define NETXEN_INIT_SECTOR (0)
730#define NETXEN_PRIMARY_START (NETXEN_BOOTLD_START)
731#define NETXEN_FLASH_CRBINIT_SIZE (0x4000)
732#define NETXEN_FLASH_BRDCFG_SIZE (sizeof(struct netxen_board_info))
733#define NETXEN_FLASH_USER_SIZE (sizeof(struct netxen_user_info)/sizeof(u32))
734#define NETXEN_FLASH_SECONDARY_SIZE (NETXEN_USER_START-NETXEN_SECONDARY_START)
735#define NETXEN_NUM_PRIMARY_SECTORS (0x20)
736#define NETXEN_NUM_CONFIG_SECTORS (1)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800737#define PFX "NetXen: "
738extern char netxen_nic_driver_name[];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400739
740/* Note: Make sure to not call this before adapter->port is valid */
741#if !defined(NETXEN_DEBUG)
742#define DPRINTK(klevel, fmt, args...) do { \
743 } while (0)
744#else
745#define DPRINTK(klevel, fmt, args...) do { \
746 printk(KERN_##klevel PFX "%s: %s: " fmt, __FUNCTION__,\
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700747 (adapter != NULL && adapter->netdev != NULL) ? \
748 adapter->netdev->name : NULL, \
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400749 ## args); } while(0)
750#endif
751
752/* Number of status descriptors to handle per interrupt */
753#define MAX_STATUS_HANDLE (128)
754
755/*
756 * netxen_skb_frag{} is to contain mapping info for each SG list. This
757 * has to be freed when DMA is complete. This is part of netxen_tx_buffer{}.
758 */
759struct netxen_skb_frag {
760 u64 dma;
761 u32 length;
762};
763
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700764#define _netxen_set_bits(config_word, start, bits, val) {\
765 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start));\
766 unsigned long long __tvalue = (val); \
767 (config_word) &= ~__tmask; \
768 (config_word) |= (((__tvalue) << (start)) & __tmask); \
769}
Jeff Garzik47906542007-11-23 21:23:36 -0500770
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700771#define _netxen_clear_bits(config_word, start, bits) {\
772 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start)); \
773 (config_word) &= ~__tmask; \
Jeff Garzik47906542007-11-23 21:23:36 -0500774}
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700775
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400776/* Following defines are for the state of the buffers */
777#define NETXEN_BUFFER_FREE 0
778#define NETXEN_BUFFER_BUSY 1
779
780/*
781 * There will be one netxen_buffer per skb packet. These will be
782 * used to save the dma info for pci_unmap_page()
783 */
784struct netxen_cmd_buffer {
785 struct sk_buff *skb;
786 struct netxen_skb_frag frag_array[MAX_BUFFERS_PER_CMD + 1];
787 u32 total_length;
788 u32 mss;
789 u16 port;
790 u8 cmd;
791 u8 frag_count;
792 unsigned long time_stamp;
793 u32 state;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400794};
795
796/* In rx_buffer, we do not need multiple fragments as is a single buffer */
797struct netxen_rx_buffer {
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700798 struct list_head list;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400799 struct sk_buff *skb;
800 u64 dma;
801 u16 ref_handle;
802 u16 state;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800803 u32 lro_expected_frags;
804 u32 lro_current_frags;
805 u32 lro_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400806};
807
808/* Board types */
809#define NETXEN_NIC_GBE 0x01
810#define NETXEN_NIC_XGBE 0x02
811
812/*
813 * One hardware_context{} per adapter
814 * contains interrupt info as well shared hardware info.
815 */
816struct netxen_hardware_context {
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800817 void __iomem *pci_base0;
818 void __iomem *pci_base1;
819 void __iomem *pci_base2;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700820 unsigned long first_page_group_end;
821 unsigned long first_page_group_start;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800822 void __iomem *db_base;
823 unsigned long db_len;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -0700824 unsigned long pci_len0;
825
Dhananjay Phadke29566402008-07-21 19:44:04 -0700826 u8 cut_through;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -0700827 int qdr_sn_window;
828 int ddr_mn_window;
829 unsigned long mn_win_crb;
830 unsigned long ms_win_crb;
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800831
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400832 u8 revision_id;
833 u16 board_type;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400834 struct netxen_board_info boardcfg;
Dhananjay Phadkea97342f2008-07-21 19:44:05 -0700835 u32 linkup;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400836 /* Address of cmd ring in Phantom */
837 struct cmd_desc_type0 *cmd_desc_head;
838 dma_addr_t cmd_desc_phys_addr;
839 struct netxen_adapter *adapter;
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -0700840 int pci_func;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400841};
842
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800843#define RCV_RING_LRO RCV_DESC_LRO
844
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400845#define MINIMUM_ETHERNET_FRAME_SIZE 64 /* With FCS */
846#define ETHERNET_FCS_SIZE 4
847
848struct netxen_adapter_stats {
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700849 u64 rcvdbadskb;
850 u64 xmitcalled;
851 u64 xmitedframes;
852 u64 xmitfinished;
853 u64 badskblen;
854 u64 nocmddescriptor;
855 u64 polled;
Dhananjay Phadked1847a72008-03-17 19:59:51 -0700856 u64 rxdropped;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700857 u64 txdropped;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700858 u64 csummed;
859 u64 no_rcv;
860 u64 rxbytes;
861 u64 txbytes;
862 u64 ints;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400863};
864
865/*
866 * Rcv Descriptor Context. One such per Rcv Descriptor. There may
867 * be one Rcv Descriptor for normal packets, one for jumbo and may be others.
868 */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700869struct nx_host_rds_ring {
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400870 u32 flags;
871 u32 producer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400872 dma_addr_t phys_addr;
Dhananjay Phadke7830b222008-07-21 19:44:00 -0700873 u32 crb_rcv_producer; /* reg offset */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400874 struct rcv_desc *desc_head; /* address of rx ring in Phantom */
875 u32 max_rx_desc_count;
876 u32 dma_size;
877 u32 skb_size;
878 struct netxen_rx_buffer *rx_buf_arr; /* rx buffers for receive */
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700879 struct list_head free_list;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400880 int begin_alloc;
881};
882
883/*
884 * Receive context. There is one such structure per instance of the
885 * receive processing. Any state information that is relevant to
886 * the receive, and is must be in this structure. The global data may be
887 * present elsewhere.
888 */
889struct netxen_recv_context {
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700890 u32 state;
891 u16 context_id;
892 u16 virt_port;
893
894 struct nx_host_rds_ring rds_rings[NUM_RCV_DESC_RINGS];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400895 u32 status_rx_consumer;
Dhananjay Phadke7830b222008-07-21 19:44:00 -0700896 u32 crb_sts_consumer; /* reg offset */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400897 dma_addr_t rcv_status_desc_phys_addr;
898 struct status_desc *rcv_status_desc_head;
899};
900
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700901/* New HW context creation */
902
903#define NX_OS_CRB_RETRY_COUNT 4000
904#define NX_CDRP_SIGNATURE_MAKE(pcifn, version) \
905 (((pcifn) & 0xff) | (((version) & 0xff) << 8) | (0xcafe << 16))
906
907#define NX_CDRP_CLEAR 0x00000000
908#define NX_CDRP_CMD_BIT 0x80000000
909
910/*
911 * All responses must have the NX_CDRP_CMD_BIT cleared
912 * in the crb NX_CDRP_CRB_OFFSET.
913 */
914#define NX_CDRP_FORM_RSP(rsp) (rsp)
915#define NX_CDRP_IS_RSP(rsp) (((rsp) & NX_CDRP_CMD_BIT) == 0)
916
917#define NX_CDRP_RSP_OK 0x00000001
918#define NX_CDRP_RSP_FAIL 0x00000002
919#define NX_CDRP_RSP_TIMEOUT 0x00000003
920
921/*
922 * All commands must have the NX_CDRP_CMD_BIT set in
923 * the crb NX_CDRP_CRB_OFFSET.
924 */
925#define NX_CDRP_FORM_CMD(cmd) (NX_CDRP_CMD_BIT | (cmd))
926#define NX_CDRP_IS_CMD(cmd) (((cmd) & NX_CDRP_CMD_BIT) != 0)
927
928#define NX_CDRP_CMD_SUBMIT_CAPABILITIES 0x00000001
929#define NX_CDRP_CMD_READ_MAX_RDS_PER_CTX 0x00000002
930#define NX_CDRP_CMD_READ_MAX_SDS_PER_CTX 0x00000003
931#define NX_CDRP_CMD_READ_MAX_RULES_PER_CTX 0x00000004
932#define NX_CDRP_CMD_READ_MAX_RX_CTX 0x00000005
933#define NX_CDRP_CMD_READ_MAX_TX_CTX 0x00000006
934#define NX_CDRP_CMD_CREATE_RX_CTX 0x00000007
935#define NX_CDRP_CMD_DESTROY_RX_CTX 0x00000008
936#define NX_CDRP_CMD_CREATE_TX_CTX 0x00000009
937#define NX_CDRP_CMD_DESTROY_TX_CTX 0x0000000a
938#define NX_CDRP_CMD_SETUP_STATISTICS 0x0000000e
939#define NX_CDRP_CMD_GET_STATISTICS 0x0000000f
940#define NX_CDRP_CMD_DELETE_STATISTICS 0x00000010
941#define NX_CDRP_CMD_SET_MTU 0x00000012
942#define NX_CDRP_CMD_MAX 0x00000013
943
944#define NX_RCODE_SUCCESS 0
945#define NX_RCODE_NO_HOST_MEM 1
946#define NX_RCODE_NO_HOST_RESOURCE 2
947#define NX_RCODE_NO_CARD_CRB 3
948#define NX_RCODE_NO_CARD_MEM 4
949#define NX_RCODE_NO_CARD_RESOURCE 5
950#define NX_RCODE_INVALID_ARGS 6
951#define NX_RCODE_INVALID_ACTION 7
952#define NX_RCODE_INVALID_STATE 8
953#define NX_RCODE_NOT_SUPPORTED 9
954#define NX_RCODE_NOT_PERMITTED 10
955#define NX_RCODE_NOT_READY 11
956#define NX_RCODE_DOES_NOT_EXIST 12
957#define NX_RCODE_ALREADY_EXISTS 13
958#define NX_RCODE_BAD_SIGNATURE 14
959#define NX_RCODE_CMD_NOT_IMPL 15
960#define NX_RCODE_CMD_INVALID 16
961#define NX_RCODE_TIMEOUT 17
962#define NX_RCODE_CMD_FAILED 18
963#define NX_RCODE_MAX_EXCEEDED 19
964#define NX_RCODE_MAX 20
965
966#define NX_DESTROY_CTX_RESET 0
967#define NX_DESTROY_CTX_D3_RESET 1
968#define NX_DESTROY_CTX_MAX 2
969
970/*
971 * Capabilities
972 */
973#define NX_CAP_BIT(class, bit) (1 << bit)
974#define NX_CAP0_LEGACY_CONTEXT NX_CAP_BIT(0, 0)
975#define NX_CAP0_MULTI_CONTEXT NX_CAP_BIT(0, 1)
976#define NX_CAP0_LEGACY_MN NX_CAP_BIT(0, 2)
977#define NX_CAP0_LEGACY_MS NX_CAP_BIT(0, 3)
978#define NX_CAP0_CUT_THROUGH NX_CAP_BIT(0, 4)
979#define NX_CAP0_LRO NX_CAP_BIT(0, 5)
980#define NX_CAP0_LSO NX_CAP_BIT(0, 6)
981#define NX_CAP0_JUMBO_CONTIGUOUS NX_CAP_BIT(0, 7)
982#define NX_CAP0_LRO_CONTIGUOUS NX_CAP_BIT(0, 8)
983
984/*
985 * Context state
986 */
987#define NX_HOST_CTX_STATE_FREED 0
988#define NX_HOST_CTX_STATE_ALLOCATED 1
989#define NX_HOST_CTX_STATE_ACTIVE 2
990#define NX_HOST_CTX_STATE_DISABLED 3
991#define NX_HOST_CTX_STATE_QUIESCED 4
992#define NX_HOST_CTX_STATE_MAX 5
993
994/*
995 * Rx context
996 */
997
998typedef struct {
999 u64 host_phys_addr; /* Ring base addr */
1000 u32 ring_size; /* Ring entries */
1001 u16 msi_index;
1002 u16 rsvd; /* Padding */
1003} nx_hostrq_sds_ring_t;
1004
1005typedef struct {
1006 u64 host_phys_addr; /* Ring base addr */
1007 u64 buff_size; /* Packet buffer size */
1008 u32 ring_size; /* Ring entries */
1009 u32 ring_kind; /* Class of ring */
1010} nx_hostrq_rds_ring_t;
1011
1012typedef struct {
1013 u64 host_rsp_dma_addr; /* Response dma'd here */
1014 u32 capabilities[4]; /* Flag bit vector */
1015 u32 host_int_crb_mode; /* Interrupt crb usage */
1016 u32 host_rds_crb_mode; /* RDS crb usage */
1017 /* These ring offsets are relative to data[0] below */
1018 u32 rds_ring_offset; /* Offset to RDS config */
1019 u32 sds_ring_offset; /* Offset to SDS config */
1020 u16 num_rds_rings; /* Count of RDS rings */
1021 u16 num_sds_rings; /* Count of SDS rings */
1022 u16 rsvd1; /* Padding */
1023 u16 rsvd2; /* Padding */
1024 u8 reserved[128]; /* reserve space for future expansion*/
1025 /* MUST BE 64-bit aligned.
1026 The following is packed:
1027 - N hostrq_rds_rings
1028 - N hostrq_sds_rings */
1029 char data[0];
1030} nx_hostrq_rx_ctx_t;
1031
1032typedef struct {
1033 u32 host_producer_crb; /* Crb to use */
1034 u32 rsvd1; /* Padding */
1035} nx_cardrsp_rds_ring_t;
1036
1037typedef struct {
1038 u32 host_consumer_crb; /* Crb to use */
1039 u32 interrupt_crb; /* Crb to use */
1040} nx_cardrsp_sds_ring_t;
1041
1042typedef struct {
1043 /* These ring offsets are relative to data[0] below */
1044 u32 rds_ring_offset; /* Offset to RDS config */
1045 u32 sds_ring_offset; /* Offset to SDS config */
1046 u32 host_ctx_state; /* Starting State */
1047 u32 num_fn_per_port; /* How many PCI fn share the port */
1048 u16 num_rds_rings; /* Count of RDS rings */
1049 u16 num_sds_rings; /* Count of SDS rings */
1050 u16 context_id; /* Handle for context */
1051 u8 phys_port; /* Physical id of port */
1052 u8 virt_port; /* Virtual/Logical id of port */
1053 u8 reserved[128]; /* save space for future expansion */
1054 /* MUST BE 64-bit aligned.
1055 The following is packed:
1056 - N cardrsp_rds_rings
1057 - N cardrs_sds_rings */
1058 char data[0];
1059} nx_cardrsp_rx_ctx_t;
1060
1061#define SIZEOF_HOSTRQ_RX(HOSTRQ_RX, rds_rings, sds_rings) \
1062 (sizeof(HOSTRQ_RX) + \
1063 (rds_rings)*(sizeof(nx_hostrq_rds_ring_t)) + \
1064 (sds_rings)*(sizeof(nx_hostrq_sds_ring_t)))
1065
1066#define SIZEOF_CARDRSP_RX(CARDRSP_RX, rds_rings, sds_rings) \
1067 (sizeof(CARDRSP_RX) + \
1068 (rds_rings)*(sizeof(nx_cardrsp_rds_ring_t)) + \
1069 (sds_rings)*(sizeof(nx_cardrsp_sds_ring_t)))
1070
1071/*
1072 * Tx context
1073 */
1074
1075typedef struct {
1076 u64 host_phys_addr; /* Ring base addr */
1077 u32 ring_size; /* Ring entries */
1078 u32 rsvd; /* Padding */
1079} nx_hostrq_cds_ring_t;
1080
1081typedef struct {
1082 u64 host_rsp_dma_addr; /* Response dma'd here */
1083 u64 cmd_cons_dma_addr; /* */
1084 u64 dummy_dma_addr; /* */
1085 u32 capabilities[4]; /* Flag bit vector */
1086 u32 host_int_crb_mode; /* Interrupt crb usage */
1087 u32 rsvd1; /* Padding */
1088 u16 rsvd2; /* Padding */
1089 u16 interrupt_ctl;
1090 u16 msi_index;
1091 u16 rsvd3; /* Padding */
1092 nx_hostrq_cds_ring_t cds_ring; /* Desc of cds ring */
1093 u8 reserved[128]; /* future expansion */
1094} nx_hostrq_tx_ctx_t;
1095
1096typedef struct {
1097 u32 host_producer_crb; /* Crb to use */
1098 u32 interrupt_crb; /* Crb to use */
1099} nx_cardrsp_cds_ring_t;
1100
1101typedef struct {
1102 u32 host_ctx_state; /* Starting state */
1103 u16 context_id; /* Handle for context */
1104 u8 phys_port; /* Physical id of port */
1105 u8 virt_port; /* Virtual/Logical id of port */
1106 nx_cardrsp_cds_ring_t cds_ring; /* Card cds settings */
1107 u8 reserved[128]; /* future expansion */
1108} nx_cardrsp_tx_ctx_t;
1109
1110#define SIZEOF_HOSTRQ_TX(HOSTRQ_TX) (sizeof(HOSTRQ_TX))
1111#define SIZEOF_CARDRSP_TX(CARDRSP_TX) (sizeof(CARDRSP_TX))
1112
1113/* CRB */
1114
1115#define NX_HOST_RDS_CRB_MODE_UNIQUE 0
1116#define NX_HOST_RDS_CRB_MODE_SHARED 1
1117#define NX_HOST_RDS_CRB_MODE_CUSTOM 2
1118#define NX_HOST_RDS_CRB_MODE_MAX 3
1119
1120#define NX_HOST_INT_CRB_MODE_UNIQUE 0
1121#define NX_HOST_INT_CRB_MODE_SHARED 1
1122#define NX_HOST_INT_CRB_MODE_NORX 2
1123#define NX_HOST_INT_CRB_MODE_NOTX 3
1124#define NX_HOST_INT_CRB_MODE_NORXTX 4
1125
1126
1127/* MAC */
1128
1129#define MC_COUNT_P2 16
1130#define MC_COUNT_P3 38
1131
1132#define NETXEN_MAC_NOOP 0
1133#define NETXEN_MAC_ADD 1
1134#define NETXEN_MAC_DEL 2
1135
1136typedef struct nx_mac_list_s {
1137 struct nx_mac_list_s *next;
1138 uint8_t mac_addr[MAX_ADDR_LEN];
1139} nx_mac_list_t;
1140
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001141/*
1142 * Interrupt coalescing defaults. The defaults are for 1500 MTU. It is
1143 * adjusted based on configured MTU.
1144 */
1145#define NETXEN_DEFAULT_INTR_COALESCE_RX_TIME_US 3
1146#define NETXEN_DEFAULT_INTR_COALESCE_RX_PACKETS 256
1147#define NETXEN_DEFAULT_INTR_COALESCE_TX_PACKETS 64
1148#define NETXEN_DEFAULT_INTR_COALESCE_TX_TIME_US 4
1149
1150#define NETXEN_NIC_INTR_DEFAULT 0x04
1151
1152typedef union {
1153 struct {
1154 uint16_t rx_packets;
1155 uint16_t rx_time_us;
1156 uint16_t tx_packets;
1157 uint16_t tx_time_us;
1158 } data;
1159 uint64_t word;
1160} nx_nic_intr_coalesce_data_t;
1161
1162typedef struct {
1163 uint16_t stats_time_us;
1164 uint16_t rate_sample_time;
1165 uint16_t flags;
1166 uint16_t rsvd_1;
1167 uint32_t low_threshold;
1168 uint32_t high_threshold;
1169 nx_nic_intr_coalesce_data_t normal;
1170 nx_nic_intr_coalesce_data_t low;
1171 nx_nic_intr_coalesce_data_t high;
1172 nx_nic_intr_coalesce_data_t irq;
1173} nx_nic_intr_coalesce_t;
1174
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001175typedef struct {
1176 u64 qhdr;
1177 u64 req_hdr;
1178 u64 words[6];
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001179} nx_nic_req_t;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001180
1181typedef struct {
1182 u8 op;
1183 u8 tag;
1184 u8 mac_addr[6];
1185} nx_mac_req_t;
1186
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001187#define MAX_PENDING_DESC_BLOCK_SIZE 64
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001188
Dhananjay Phadke29566402008-07-21 19:44:04 -07001189#define NETXEN_NIC_MSI_ENABLED 0x02
1190#define NETXEN_NIC_MSIX_ENABLED 0x04
1191#define NETXEN_IS_MSI_FAMILY(adapter) \
1192 ((adapter)->flags & (NETXEN_NIC_MSI_ENABLED | NETXEN_NIC_MSIX_ENABLED))
1193
1194#define MSIX_ENTRIES_PER_ADAPTER 8
1195#define NETXEN_MSIX_TBL_SPACE 8192
1196#define NETXEN_PCI_REG_MSIX_TBL 0x44
1197
1198#define NETXEN_DB_MAPSIZE_BYTES 0x1000
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001199
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001200#define NETXEN_NETDEV_WEIGHT 120
1201#define NETXEN_ADAPTER_UP_MAGIC 777
1202#define NETXEN_NIC_PEG_TUNE 0
1203
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001204struct netxen_dummy_dma {
1205 void *addr;
1206 dma_addr_t phys_addr;
1207};
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001208
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001209struct netxen_adapter {
1210 struct netxen_hardware_context ahw;
Jeff Garzik47906542007-11-23 21:23:36 -05001211
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001212 struct net_device *netdev;
1213 struct pci_dev *pdev;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001214 int pci_using_dac;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001215 struct napi_struct napi;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -07001216 struct net_device_stats net_stats;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001217 int mtu;
1218 int portnum;
Dhananjay Phadke3276fba2008-06-15 22:59:44 -07001219 u8 physical_port;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001220 u16 tx_context_id;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001221
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001222 uint8_t mc_enabled;
1223 uint8_t max_mc_count;
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001224 nx_mac_list_t *mac_list;
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001225
Dhananjay Phadke29566402008-07-21 19:44:04 -07001226 struct netxen_legacy_intr_set legacy_intr;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001227 u32 crb_intr_mask;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001228
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001229 struct work_struct watchdog_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001230 struct timer_list watchdog_timer;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001231 struct work_struct tx_timeout_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001232
1233 u32 curr_window;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001234 u32 crb_win;
1235 rwlock_t adapter_lock;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001236
Dhananjay Phadke29566402008-07-21 19:44:04 -07001237 uint64_t dma_mask;
1238
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001239 u32 cmd_producer;
Al Virof305f782007-12-22 19:44:00 +00001240 __le32 *cmd_consumer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001241 u32 last_cmd_consumer;
Dhananjay Phadke7830b222008-07-21 19:44:00 -07001242 u32 crb_addr_cmd_producer;
1243 u32 crb_addr_cmd_consumer;
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -07001244
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001245 u32 max_tx_desc_count;
1246 u32 max_rx_desc_count;
1247 u32 max_jumbo_rx_desc_count;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001248 u32 max_lro_rx_desc_count;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001249
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001250 int max_rds_rings;
1251
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001252 u32 flags;
1253 u32 irq;
1254 int driver_mismatch;
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001255 u32 temp;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001256
Dhananjay Phadke29566402008-07-21 19:44:04 -07001257 u32 fw_major;
1258
1259 u8 msix_supported;
1260 u8 max_possible_rss_rings;
1261 struct msix_entry msix_entries[MSIX_ENTRIES_PER_ADAPTER];
1262
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001263 struct netxen_adapter_stats stats;
Jeff Garzik47906542007-11-23 21:23:36 -05001264
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001265 u16 link_speed;
1266 u16 link_duplex;
1267 u16 state;
1268 u16 link_autoneg;
Dhananjay Phadke200eef22007-09-03 10:33:35 +05301269 int rx_csum;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001270 int status;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001271
1272 struct netxen_cmd_buffer *cmd_buf_arr; /* Command buffers for xmit */
1273
1274 /*
1275 * Receive instances. These can be either one per port,
1276 * or one per peg, etc.
1277 */
1278 struct netxen_recv_context recv_ctx[MAX_RCV_CTX];
1279
1280 int is_up;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001281 struct netxen_dummy_dma dummy_dma;
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001282 nx_nic_intr_coalesce_t coal;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001283
1284 /* Context interface shared between card and host */
1285 struct netxen_ring_ctx *ctx_desc;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001286 dma_addr_t ctx_desc_phys_addr;
dhananjay.phadke@gmail.com2d1a3bb2007-07-02 00:26:00 +05301287 int intr_scheme;
Dhananjay Phadke443be792008-03-17 19:59:48 -07001288 int msi_mode;
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001289 int (*enable_phy_interrupts) (struct netxen_adapter *);
1290 int (*disable_phy_interrupts) (struct netxen_adapter *);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001291 int (*macaddr_set) (struct netxen_adapter *, netxen_ethernet_macaddr_t);
1292 int (*set_mtu) (struct netxen_adapter *, int);
1293 int (*set_promisc) (struct netxen_adapter *, netxen_niu_prom_mode_t);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001294 int (*phy_read) (struct netxen_adapter *, long reg, u32 *);
1295 int (*phy_write) (struct netxen_adapter *, long reg, u32 val);
Amit S. Kale80922fb2006-12-04 09:18:00 -08001296 int (*init_port) (struct netxen_adapter *, int);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001297 int (*stop_port) (struct netxen_adapter *);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001298
1299 int (*hw_read_wx)(struct netxen_adapter *, ulong, void *, int);
1300 int (*hw_write_wx)(struct netxen_adapter *, ulong, void *, int);
1301 int (*pci_mem_read)(struct netxen_adapter *, u64, void *, int);
1302 int (*pci_mem_write)(struct netxen_adapter *, u64, void *, int);
1303 int (*pci_write_immediate)(struct netxen_adapter *, u64, u32);
1304 u32 (*pci_read_immediate)(struct netxen_adapter *, u64);
1305 void (*pci_write_normalize)(struct netxen_adapter *, u64, u32);
1306 u32 (*pci_read_normalize)(struct netxen_adapter *, u64);
1307 unsigned long (*pci_set_window)(struct netxen_adapter *,
1308 unsigned long long);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001309}; /* netxen_adapter structure */
1310
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301311/*
1312 * NetXen dma watchdog control structure
1313 *
1314 * Bit 0 : enabled => R/O: 1 watchdog active, 0 inactive
1315 * Bit 1 : disable_request => 1 req disable dma watchdog
1316 * Bit 2 : enable_request => 1 req enable dma watchdog
1317 * Bit 3-31 : unused
1318 */
1319
1320#define netxen_set_dma_watchdog_disable_req(config_word) \
1321 _netxen_set_bits(config_word, 1, 1, 1)
1322#define netxen_set_dma_watchdog_enable_req(config_word) \
1323 _netxen_set_bits(config_word, 2, 1, 1)
1324#define netxen_get_dma_watchdog_enabled(config_word) \
1325 ((config_word) & 0x1)
1326#define netxen_get_dma_watchdog_disabled(config_word) \
1327 (((config_word) >> 1) & 0x1)
1328
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001329/* Max number of xmit producer threads that can run simultaneously */
1330#define MAX_XMIT_PRODUCERS 16
1331
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001332#define PCI_OFFSET_FIRST_RANGE(adapter, off) \
1333 ((adapter)->ahw.pci_base0 + (off))
1334#define PCI_OFFSET_SECOND_RANGE(adapter, off) \
1335 ((adapter)->ahw.pci_base1 + (off) - SECOND_PAGE_GROUP_START)
1336#define PCI_OFFSET_THIRD_RANGE(adapter, off) \
1337 ((adapter)->ahw.pci_base2 + (off) - THIRD_PAGE_GROUP_START)
1338
1339static inline void __iomem *pci_base_offset(struct netxen_adapter *adapter,
1340 unsigned long off)
1341{
1342 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1343 return (adapter->ahw.pci_base0 + off);
1344 } else if ((off < SECOND_PAGE_GROUP_END) &&
1345 (off >= SECOND_PAGE_GROUP_START)) {
1346 return (adapter->ahw.pci_base1 + off - SECOND_PAGE_GROUP_START);
1347 } else if ((off < THIRD_PAGE_GROUP_END) &&
1348 (off >= THIRD_PAGE_GROUP_START)) {
1349 return (adapter->ahw.pci_base2 + off - THIRD_PAGE_GROUP_START);
1350 }
1351 return NULL;
1352}
1353
1354static inline void __iomem *pci_base(struct netxen_adapter *adapter,
1355 unsigned long off)
1356{
1357 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1358 return adapter->ahw.pci_base0;
1359 } else if ((off < SECOND_PAGE_GROUP_END) &&
1360 (off >= SECOND_PAGE_GROUP_START)) {
1361 return adapter->ahw.pci_base1;
1362 } else if ((off < THIRD_PAGE_GROUP_END) &&
1363 (off >= THIRD_PAGE_GROUP_START)) {
1364 return adapter->ahw.pci_base2;
1365 }
1366 return NULL;
1367}
1368
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001369int netxen_niu_xgbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1370int netxen_niu_gbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1371int netxen_niu_xgbe_disable_phy_interrupts(struct netxen_adapter *adapter);
1372int netxen_niu_gbe_disable_phy_interrupts(struct netxen_adapter *adapter);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001373int netxen_niu_gbe_phy_read(struct netxen_adapter *adapter, long reg,
Al Viroa608ab92007-01-02 10:39:10 +00001374 __u32 * readval);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001375int netxen_niu_gbe_phy_write(struct netxen_adapter *adapter,
Al Viroa608ab92007-01-02 10:39:10 +00001376 long reg, __u32 val);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001377
1378/* Functions available from netxen_nic_hw.c */
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001379int netxen_nic_set_mtu_xgb(struct netxen_adapter *adapter, int new_mtu);
1380int netxen_nic_set_mtu_gb(struct netxen_adapter *adapter, int new_mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001381void netxen_nic_reg_write(struct netxen_adapter *adapter, u64 off, u32 val);
1382int netxen_nic_reg_read(struct netxen_adapter *adapter, u64 off);
1383void netxen_nic_write_w0(struct netxen_adapter *adapter, u32 index, u32 value);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001384void netxen_nic_read_w0(struct netxen_adapter *adapter, u32 index, u32 *value);
1385void netxen_nic_write_w1(struct netxen_adapter *adapter, u32 index, u32 value);
1386void netxen_nic_read_w1(struct netxen_adapter *adapter, u32 index, u32 *value);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001387
1388int netxen_nic_get_board_info(struct netxen_adapter *adapter);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001389
1390int netxen_nic_hw_read_wx_128M(struct netxen_adapter *adapter,
1391 ulong off, void *data, int len);
1392int netxen_nic_hw_write_wx_128M(struct netxen_adapter *adapter,
1393 ulong off, void *data, int len);
1394int netxen_nic_pci_mem_read_128M(struct netxen_adapter *adapter,
1395 u64 off, void *data, int size);
1396int netxen_nic_pci_mem_write_128M(struct netxen_adapter *adapter,
1397 u64 off, void *data, int size);
1398int netxen_nic_pci_write_immediate_128M(struct netxen_adapter *adapter,
1399 u64 off, u32 data);
1400u32 netxen_nic_pci_read_immediate_128M(struct netxen_adapter *adapter, u64 off);
1401void netxen_nic_pci_write_normalize_128M(struct netxen_adapter *adapter,
1402 u64 off, u32 data);
1403u32 netxen_nic_pci_read_normalize_128M(struct netxen_adapter *adapter, u64 off);
1404unsigned long netxen_nic_pci_set_window_128M(struct netxen_adapter *adapter,
1405 unsigned long long addr);
1406void netxen_nic_pci_change_crbwindow_128M(struct netxen_adapter *adapter,
1407 u32 wndw);
1408
1409int netxen_nic_hw_read_wx_2M(struct netxen_adapter *adapter,
1410 ulong off, void *data, int len);
1411int netxen_nic_hw_write_wx_2M(struct netxen_adapter *adapter,
1412 ulong off, void *data, int len);
1413int netxen_nic_pci_mem_read_2M(struct netxen_adapter *adapter,
1414 u64 off, void *data, int size);
1415int netxen_nic_pci_mem_write_2M(struct netxen_adapter *adapter,
1416 u64 off, void *data, int size);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001417void netxen_crb_writelit_adapter(struct netxen_adapter *adapter,
1418 unsigned long off, int data);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001419int netxen_nic_pci_write_immediate_2M(struct netxen_adapter *adapter,
1420 u64 off, u32 data);
1421u32 netxen_nic_pci_read_immediate_2M(struct netxen_adapter *adapter, u64 off);
1422void netxen_nic_pci_write_normalize_2M(struct netxen_adapter *adapter,
1423 u64 off, u32 data);
1424u32 netxen_nic_pci_read_normalize_2M(struct netxen_adapter *adapter, u64 off);
1425unsigned long netxen_nic_pci_set_window_2M(struct netxen_adapter *adapter,
1426 unsigned long long addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001427
1428/* Functions from netxen_nic_init.c */
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001429void netxen_free_adapter_offload(struct netxen_adapter *adapter);
1430int netxen_initialize_adapter_offload(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301431int netxen_phantom_init(struct netxen_adapter *adapter, int pegtune_val);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001432int netxen_receive_peg_ready(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301433int netxen_load_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001434int netxen_pinit_from_rom(struct netxen_adapter *adapter, int verbose);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001435
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001436int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr, int *valp);
Jeff Garzik47906542007-11-23 21:23:36 -05001437int netxen_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001438 u8 *bytes, size_t size);
Jeff Garzik47906542007-11-23 21:23:36 -05001439int netxen_rom_fast_write_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001440 u8 *bytes, size_t size);
1441int netxen_flash_unlock(struct netxen_adapter *adapter);
1442int netxen_backup_crbinit(struct netxen_adapter *adapter);
1443int netxen_flash_erase_secondary(struct netxen_adapter *adapter);
1444int netxen_flash_erase_primary(struct netxen_adapter *adapter);
Amit S. Kalee45d9ab2007-02-09 05:49:08 -08001445void netxen_halt_pegs(struct netxen_adapter *adapter);
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001446
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001447int netxen_rom_se(struct netxen_adapter *adapter, int addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001448
Dhananjay Phadke29566402008-07-21 19:44:04 -07001449int netxen_alloc_sw_resources(struct netxen_adapter *adapter);
1450void netxen_free_sw_resources(struct netxen_adapter *adapter);
1451
1452int netxen_alloc_hw_resources(struct netxen_adapter *adapter);
1453void netxen_free_hw_resources(struct netxen_adapter *adapter);
1454
1455void netxen_release_rx_buffers(struct netxen_adapter *adapter);
1456void netxen_release_tx_buffers(struct netxen_adapter *adapter);
1457
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001458void netxen_initialize_adapter_ops(struct netxen_adapter *adapter);
1459int netxen_init_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001460void netxen_tso_check(struct netxen_adapter *adapter,
1461 struct cmd_desc_type0 *desc, struct sk_buff *skb);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001462void netxen_nic_clear_stats(struct netxen_adapter *adapter);
David Howells6d5aefb2006-12-05 19:36:26 +00001463void netxen_watchdog_task(struct work_struct *work);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001464void netxen_post_rx_buffers(struct netxen_adapter *adapter, u32 ctx,
1465 u32 ringid);
Dhananjay Phadke05aaa022008-03-17 19:59:49 -07001466int netxen_process_cmd_ring(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001467u32 netxen_process_rcv_ring(struct netxen_adapter *adapter, int ctx, int max);
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001468void netxen_p2_nic_set_multi(struct net_device *netdev);
1469void netxen_p3_nic_set_multi(struct net_device *netdev);
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001470int netxen_config_intr_coalesce(struct netxen_adapter *adapter);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001471
1472u32 nx_fw_cmd_set_mtu(struct netxen_adapter *adapter, u32 mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001473int netxen_nic_change_mtu(struct net_device *netdev, int new_mtu);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001474
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001475int netxen_nic_set_mac(struct net_device *netdev, void *p);
1476struct net_device_stats *netxen_nic_get_stats(struct net_device *netdev);
1477
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001478void netxen_nic_update_cmd_producer(struct netxen_adapter *adapter,
1479 uint32_t crb_producer);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001480
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001481/*
1482 * NetXen Board information
1483 */
1484
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001485#define NETXEN_MAX_SHORT_NAME 32
Amit S. Kale71bd7872006-12-01 05:36:22 -08001486struct netxen_brdinfo {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001487 netxen_brdtype_t brdtype; /* type of board */
1488 long ports; /* max no of physical ports */
1489 char short_name[NETXEN_MAX_SHORT_NAME];
Amit S. Kale71bd7872006-12-01 05:36:22 -08001490};
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001491
Amit S. Kale71bd7872006-12-01 05:36:22 -08001492static const struct netxen_brdinfo netxen_boards[] = {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001493 {NETXEN_BRDTYPE_P2_SB31_10G_CX4, 1, "XGb CX4"},
1494 {NETXEN_BRDTYPE_P2_SB31_10G_HMEZ, 1, "XGb HMEZ"},
1495 {NETXEN_BRDTYPE_P2_SB31_10G_IMEZ, 2, "XGb IMEZ"},
1496 {NETXEN_BRDTYPE_P2_SB31_10G, 1, "XGb XFP"},
1497 {NETXEN_BRDTYPE_P2_SB35_4G, 4, "Quad Gb"},
1498 {NETXEN_BRDTYPE_P2_SB31_2G, 2, "Dual Gb"},
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001499 {NETXEN_BRDTYPE_P3_REF_QG, 4, "Reference Quad Gig "},
1500 {NETXEN_BRDTYPE_P3_HMEZ, 2, "Dual XGb HMEZ"},
1501 {NETXEN_BRDTYPE_P3_10G_CX4_LP, 2, "Dual XGb CX4 LP"},
1502 {NETXEN_BRDTYPE_P3_4_GB, 4, "Quad Gig LP"},
1503 {NETXEN_BRDTYPE_P3_IMEZ, 2, "Dual XGb IMEZ"},
1504 {NETXEN_BRDTYPE_P3_10G_SFP_PLUS, 2, "Dual XGb SFP+ LP"},
1505 {NETXEN_BRDTYPE_P3_10000_BASE_T, 1, "XGB 10G BaseT LP"},
1506 {NETXEN_BRDTYPE_P3_XG_LOM, 2, "Dual XGb LOM"},
Dhananjay Phadkea70f9392008-08-01 03:14:56 -07001507 {NETXEN_BRDTYPE_P3_4_GB_MM, 4, "NX3031 Gigabit Ethernet"},
1508 {NETXEN_BRDTYPE_P3_10G_SFP_CT, 2, "NX3031 10 Gigabit Ethernet"},
1509 {NETXEN_BRDTYPE_P3_10G_SFP_QT, 2, "Quanta Dual XGb SFP+"},
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001510 {NETXEN_BRDTYPE_P3_10G_CX4, 2, "Reference Dual CX4 Option"},
1511 {NETXEN_BRDTYPE_P3_10G_XFP, 1, "Reference Single XFP Option"}
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001512};
1513
Denis Chengff8ac602007-09-02 18:30:18 +08001514#define NUM_SUPPORTED_BOARDS ARRAY_SIZE(netxen_boards)
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001515
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001516static inline void get_brd_name_by_type(u32 type, char *name)
1517{
1518 int i, found = 0;
1519 for (i = 0; i < NUM_SUPPORTED_BOARDS; ++i) {
1520 if (netxen_boards[i].brdtype == type) {
1521 strcpy(name, netxen_boards[i].short_name);
1522 found = 1;
1523 break;
1524 }
1525
1526 }
1527 if (!found)
1528 name = "Unknown";
1529}
1530
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301531static inline int
1532dma_watchdog_shutdown_request(struct netxen_adapter *adapter)
1533{
1534 u32 ctrl;
1535
1536 /* check if already inactive */
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001537 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301538 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1539 printk(KERN_ERR "failed to read dma watchdog status\n");
1540
1541 if (netxen_get_dma_watchdog_enabled(ctrl) == 0)
1542 return 1;
1543
1544 /* Send the disable request */
1545 netxen_set_dma_watchdog_disable_req(ctrl);
1546 netxen_crb_writelit_adapter(adapter,
1547 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1548
1549 return 0;
1550}
1551
1552static inline int
1553dma_watchdog_shutdown_poll_result(struct netxen_adapter *adapter)
1554{
1555 u32 ctrl;
1556
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001557 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301558 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1559 printk(KERN_ERR "failed to read dma watchdog status\n");
1560
dhananjay@netxen.comceded322007-07-19 14:41:09 +05301561 return (netxen_get_dma_watchdog_enabled(ctrl) == 0);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301562}
1563
1564static inline int
1565dma_watchdog_wakeup(struct netxen_adapter *adapter)
1566{
1567 u32 ctrl;
1568
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001569 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301570 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1571 printk(KERN_ERR "failed to read dma watchdog status\n");
1572
1573 if (netxen_get_dma_watchdog_enabled(ctrl))
1574 return 1;
1575
1576 /* send the wakeup request */
1577 netxen_set_dma_watchdog_enable_req(ctrl);
1578
1579 netxen_crb_writelit_adapter(adapter,
1580 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1581
1582 return 0;
1583}
1584
1585
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001586int netxen_is_flash_supported(struct netxen_adapter *adapter);
Al Virof305f782007-12-22 19:44:00 +00001587int netxen_get_flash_mac_addr(struct netxen_adapter *adapter, __le64 mac[]);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001588extern void netxen_change_ringparam(struct netxen_adapter *adapter);
1589extern int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr,
1590 int *valp);
1591
1592extern struct ethtool_ops netxen_nic_ethtool_ops;
1593
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001594#endif /* __NETXEN_NIC_H_ */