blob: 8e736614407d3c7ae7c6b9bf59a6f8f97fa40a2b [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,
511 NETXEN_BRDTYPE_P3_10G_CX4 = 0x0031,
512 NETXEN_BRDTYPE_P3_10G_XFP = 0x0032
513
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400514} netxen_brdtype_t;
515
516typedef enum {
517 NETXEN_BRDMFG_INVENTEC = 1
518} netxen_brdmfg;
519
520typedef enum {
521 MEM_ORG_128Mbx4 = 0x0, /* DDR1 only */
522 MEM_ORG_128Mbx8 = 0x1, /* DDR1 only */
523 MEM_ORG_128Mbx16 = 0x2, /* DDR1 only */
524 MEM_ORG_256Mbx4 = 0x3,
525 MEM_ORG_256Mbx8 = 0x4,
526 MEM_ORG_256Mbx16 = 0x5,
527 MEM_ORG_512Mbx4 = 0x6,
528 MEM_ORG_512Mbx8 = 0x7,
529 MEM_ORG_512Mbx16 = 0x8,
530 MEM_ORG_1Gbx4 = 0x9,
531 MEM_ORG_1Gbx8 = 0xa,
532 MEM_ORG_1Gbx16 = 0xb,
533 MEM_ORG_2Gbx4 = 0xc,
534 MEM_ORG_2Gbx8 = 0xd,
535 MEM_ORG_2Gbx16 = 0xe,
536 MEM_ORG_128Mbx32 = 0x10002, /* GDDR only */
537 MEM_ORG_256Mbx32 = 0x10005 /* GDDR only */
538} netxen_mn_mem_org_t;
539
540typedef enum {
541 MEM_ORG_512Kx36 = 0x0,
542 MEM_ORG_1Mx36 = 0x1,
543 MEM_ORG_2Mx36 = 0x2
544} netxen_sn_mem_org_t;
545
546typedef enum {
547 MEM_DEPTH_4MB = 0x1,
548 MEM_DEPTH_8MB = 0x2,
549 MEM_DEPTH_16MB = 0x3,
550 MEM_DEPTH_32MB = 0x4,
551 MEM_DEPTH_64MB = 0x5,
552 MEM_DEPTH_128MB = 0x6,
553 MEM_DEPTH_256MB = 0x7,
554 MEM_DEPTH_512MB = 0x8,
555 MEM_DEPTH_1GB = 0x9,
556 MEM_DEPTH_2GB = 0xa,
557 MEM_DEPTH_4GB = 0xb,
558 MEM_DEPTH_8GB = 0xc,
559 MEM_DEPTH_16GB = 0xd,
560 MEM_DEPTH_32GB = 0xe
561} netxen_mem_depth_t;
562
563struct netxen_board_info {
564 u32 header_version;
565
566 u32 board_mfg;
567 u32 board_type;
568 u32 board_num;
569 u32 chip_id;
570 u32 chip_minor;
571 u32 chip_major;
572 u32 chip_pkg;
573 u32 chip_lot;
574
575 u32 port_mask; /* available niu ports */
576 u32 peg_mask; /* available pegs */
577 u32 icache_ok; /* can we run with icache? */
578 u32 dcache_ok; /* can we run with dcache? */
579 u32 casper_ok;
580
581 u32 mac_addr_lo_0;
582 u32 mac_addr_lo_1;
583 u32 mac_addr_lo_2;
584 u32 mac_addr_lo_3;
585
586 /* MN-related config */
587 u32 mn_sync_mode; /* enable/ sync shift cclk/ sync shift mclk */
588 u32 mn_sync_shift_cclk;
589 u32 mn_sync_shift_mclk;
590 u32 mn_wb_en;
591 u32 mn_crystal_freq; /* in MHz */
592 u32 mn_speed; /* in MHz */
593 u32 mn_org;
594 u32 mn_depth;
595 u32 mn_ranks_0; /* ranks per slot */
596 u32 mn_ranks_1; /* ranks per slot */
597 u32 mn_rd_latency_0;
598 u32 mn_rd_latency_1;
599 u32 mn_rd_latency_2;
600 u32 mn_rd_latency_3;
601 u32 mn_rd_latency_4;
602 u32 mn_rd_latency_5;
603 u32 mn_rd_latency_6;
604 u32 mn_rd_latency_7;
605 u32 mn_rd_latency_8;
606 u32 mn_dll_val[18];
607 u32 mn_mode_reg; /* MIU DDR Mode Register */
608 u32 mn_ext_mode_reg; /* MIU DDR Extended Mode Register */
609 u32 mn_timing_0; /* MIU Memory Control Timing Rgister */
610 u32 mn_timing_1; /* MIU Extended Memory Ctrl Timing Register */
611 u32 mn_timing_2; /* MIU Extended Memory Ctrl Timing2 Register */
612
613 /* SN-related config */
614 u32 sn_sync_mode; /* enable/ sync shift cclk / sync shift mclk */
615 u32 sn_pt_mode; /* pass through mode */
616 u32 sn_ecc_en;
617 u32 sn_wb_en;
618 u32 sn_crystal_freq;
619 u32 sn_speed;
620 u32 sn_org;
621 u32 sn_depth;
622 u32 sn_dll_tap;
623 u32 sn_rd_latency;
624
625 u32 mac_addr_hi_0;
626 u32 mac_addr_hi_1;
627 u32 mac_addr_hi_2;
628 u32 mac_addr_hi_3;
629
630 u32 magic; /* indicates flash has been initialized */
631
632 u32 mn_rdimm;
633 u32 mn_dll_override;
634
635};
636
637#define FLASH_NUM_PORTS (4)
638
639struct netxen_flash_mac_addr {
640 u32 flash_addr[32];
641};
642
643struct netxen_user_old_info {
644 u8 flash_md5[16];
645 u8 crbinit_md5[16];
646 u8 brdcfg_md5[16];
647 /* bootloader */
648 u32 bootld_version;
649 u32 bootld_size;
650 u8 bootld_md5[16];
651 /* image */
652 u32 image_version;
653 u32 image_size;
654 u8 image_md5[16];
655 /* primary image status */
656 u32 primary_status;
657 u32 secondary_present;
658
659 /* MAC address , 4 ports */
660 struct netxen_flash_mac_addr mac_addr[FLASH_NUM_PORTS];
661};
662#define FLASH_NUM_MAC_PER_PORT 32
663struct netxen_user_info {
664 u8 flash_md5[16 * 64];
665 /* bootloader */
666 u32 bootld_version;
667 u32 bootld_size;
668 /* image */
669 u32 image_version;
670 u32 image_size;
671 /* primary image status */
672 u32 primary_status;
673 u32 secondary_present;
674
675 /* MAC address , 4 ports, 32 address per port */
676 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
677 u32 sub_sys_id;
678 u8 serial_num[32];
679
680 /* Any user defined data */
681};
682
683/*
684 * Flash Layout - new format.
685 */
686struct netxen_new_user_info {
687 u8 flash_md5[16 * 64];
688 /* bootloader */
689 u32 bootld_version;
690 u32 bootld_size;
691 /* image */
692 u32 image_version;
693 u32 image_size;
694 /* primary image status */
695 u32 primary_status;
696 u32 secondary_present;
697
698 /* MAC address , 4 ports, 32 address per port */
699 u64 mac_addr[FLASH_NUM_PORTS * FLASH_NUM_MAC_PER_PORT];
700 u32 sub_sys_id;
701 u8 serial_num[32];
702
703 /* Any user defined data */
704};
705
706#define SECONDARY_IMAGE_PRESENT 0xb3b4b5b6
707#define SECONDARY_IMAGE_ABSENT 0xffffffff
708#define PRIMARY_IMAGE_GOOD 0x5a5a5a5a
709#define PRIMARY_IMAGE_BAD 0xffffffff
710
711/* Flash memory map */
712typedef enum {
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700713 NETXEN_CRBINIT_START = 0, /* Crbinit section */
714 NETXEN_BRDCFG_START = 0x4000, /* board config */
715 NETXEN_INITCODE_START = 0x6000, /* pegtune code */
716 NETXEN_BOOTLD_START = 0x10000, /* bootld */
717 NETXEN_IMAGE_START = 0x43000, /* compressed image */
718 NETXEN_SECONDARY_START = 0x200000, /* backup images */
719 NETXEN_PXE_START = 0x3E0000, /* user defined region */
720 NETXEN_USER_START = 0x3E8000, /* User defined region for new boards */
721 NETXEN_FIXED_START = 0x3F0000 /* backup of crbinit */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400722} netxen_flash_map_t;
723
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700724#define NETXEN_USER_START_OLD NETXEN_PXE_START /* for backward compatibility */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400725
Mithlesh Thukral0d047612007-06-07 04:36:36 -0700726#define NETXEN_FLASH_START (NETXEN_CRBINIT_START)
727#define NETXEN_INIT_SECTOR (0)
728#define NETXEN_PRIMARY_START (NETXEN_BOOTLD_START)
729#define NETXEN_FLASH_CRBINIT_SIZE (0x4000)
730#define NETXEN_FLASH_BRDCFG_SIZE (sizeof(struct netxen_board_info))
731#define NETXEN_FLASH_USER_SIZE (sizeof(struct netxen_user_info)/sizeof(u32))
732#define NETXEN_FLASH_SECONDARY_SIZE (NETXEN_USER_START-NETXEN_SECONDARY_START)
733#define NETXEN_NUM_PRIMARY_SECTORS (0x20)
734#define NETXEN_NUM_CONFIG_SECTORS (1)
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800735#define PFX "NetXen: "
736extern char netxen_nic_driver_name[];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400737
738/* Note: Make sure to not call this before adapter->port is valid */
739#if !defined(NETXEN_DEBUG)
740#define DPRINTK(klevel, fmt, args...) do { \
741 } while (0)
742#else
743#define DPRINTK(klevel, fmt, args...) do { \
744 printk(KERN_##klevel PFX "%s: %s: " fmt, __FUNCTION__,\
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700745 (adapter != NULL && adapter->netdev != NULL) ? \
746 adapter->netdev->name : NULL, \
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400747 ## args); } while(0)
748#endif
749
750/* Number of status descriptors to handle per interrupt */
751#define MAX_STATUS_HANDLE (128)
752
753/*
754 * netxen_skb_frag{} is to contain mapping info for each SG list. This
755 * has to be freed when DMA is complete. This is part of netxen_tx_buffer{}.
756 */
757struct netxen_skb_frag {
758 u64 dma;
759 u32 length;
760};
761
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700762#define _netxen_set_bits(config_word, start, bits, val) {\
763 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start));\
764 unsigned long long __tvalue = (val); \
765 (config_word) &= ~__tmask; \
766 (config_word) |= (((__tvalue) << (start)) & __tmask); \
767}
Jeff Garzik47906542007-11-23 21:23:36 -0500768
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700769#define _netxen_clear_bits(config_word, start, bits) {\
770 unsigned long long __tmask = (((1ULL << (bits)) - 1) << (start)); \
771 (config_word) &= ~__tmask; \
Jeff Garzik47906542007-11-23 21:23:36 -0500772}
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700773
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400774/* Following defines are for the state of the buffers */
775#define NETXEN_BUFFER_FREE 0
776#define NETXEN_BUFFER_BUSY 1
777
778/*
779 * There will be one netxen_buffer per skb packet. These will be
780 * used to save the dma info for pci_unmap_page()
781 */
782struct netxen_cmd_buffer {
783 struct sk_buff *skb;
784 struct netxen_skb_frag frag_array[MAX_BUFFERS_PER_CMD + 1];
785 u32 total_length;
786 u32 mss;
787 u16 port;
788 u8 cmd;
789 u8 frag_count;
790 unsigned long time_stamp;
791 u32 state;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400792};
793
794/* In rx_buffer, we do not need multiple fragments as is a single buffer */
795struct netxen_rx_buffer {
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700796 struct list_head list;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400797 struct sk_buff *skb;
798 u64 dma;
799 u16 ref_handle;
800 u16 state;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800801 u32 lro_expected_frags;
802 u32 lro_current_frags;
803 u32 lro_length;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400804};
805
806/* Board types */
807#define NETXEN_NIC_GBE 0x01
808#define NETXEN_NIC_XGBE 0x02
809
810/*
811 * One hardware_context{} per adapter
812 * contains interrupt info as well shared hardware info.
813 */
814struct netxen_hardware_context {
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800815 void __iomem *pci_base0;
816 void __iomem *pci_base1;
817 void __iomem *pci_base2;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -0700818 unsigned long first_page_group_end;
819 unsigned long first_page_group_start;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800820 void __iomem *db_base;
821 unsigned long db_len;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -0700822 unsigned long pci_len0;
823
Dhananjay Phadke29566402008-07-21 19:44:04 -0700824 u8 cut_through;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -0700825 int qdr_sn_window;
826 int ddr_mn_window;
827 unsigned long mn_win_crb;
828 unsigned long ms_win_crb;
Amit S. Kalecb8011a2006-11-29 09:00:10 -0800829
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400830 u8 revision_id;
831 u16 board_type;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400832 struct netxen_board_info boardcfg;
Dhananjay Phadkea97342f2008-07-21 19:44:05 -0700833 u32 linkup;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400834 /* Address of cmd ring in Phantom */
835 struct cmd_desc_type0 *cmd_desc_head;
836 dma_addr_t cmd_desc_phys_addr;
837 struct netxen_adapter *adapter;
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -0700838 int pci_func;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400839};
840
Amit S. Kaleed25ffa2006-12-04 09:23:25 -0800841#define RCV_RING_LRO RCV_DESC_LRO
842
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400843#define MINIMUM_ETHERNET_FRAME_SIZE 64 /* With FCS */
844#define ETHERNET_FCS_SIZE 4
845
846struct netxen_adapter_stats {
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700847 u64 rcvdbadskb;
848 u64 xmitcalled;
849 u64 xmitedframes;
850 u64 xmitfinished;
851 u64 badskblen;
852 u64 nocmddescriptor;
853 u64 polled;
Dhananjay Phadked1847a72008-03-17 19:59:51 -0700854 u64 rxdropped;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700855 u64 txdropped;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -0700856 u64 csummed;
857 u64 no_rcv;
858 u64 rxbytes;
859 u64 txbytes;
860 u64 ints;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400861};
862
863/*
864 * Rcv Descriptor Context. One such per Rcv Descriptor. There may
865 * be one Rcv Descriptor for normal packets, one for jumbo and may be others.
866 */
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700867struct nx_host_rds_ring {
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400868 u32 flags;
869 u32 producer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400870 dma_addr_t phys_addr;
Dhananjay Phadke7830b222008-07-21 19:44:00 -0700871 u32 crb_rcv_producer; /* reg offset */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400872 struct rcv_desc *desc_head; /* address of rx ring in Phantom */
873 u32 max_rx_desc_count;
874 u32 dma_size;
875 u32 skb_size;
876 struct netxen_rx_buffer *rx_buf_arr; /* rx buffers for receive */
Dhananjay Phadked9e651b2008-07-21 19:44:08 -0700877 struct list_head free_list;
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400878 int begin_alloc;
879};
880
881/*
882 * Receive context. There is one such structure per instance of the
883 * receive processing. Any state information that is relevant to
884 * the receive, and is must be in this structure. The global data may be
885 * present elsewhere.
886 */
887struct netxen_recv_context {
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700888 u32 state;
889 u16 context_id;
890 u16 virt_port;
891
892 struct nx_host_rds_ring rds_rings[NUM_RCV_DESC_RINGS];
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400893 u32 status_rx_consumer;
Dhananjay Phadke7830b222008-07-21 19:44:00 -0700894 u32 crb_sts_consumer; /* reg offset */
Amit S. Kale3d396eb2006-10-21 15:33:03 -0400895 dma_addr_t rcv_status_desc_phys_addr;
896 struct status_desc *rcv_status_desc_head;
897};
898
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -0700899/* New HW context creation */
900
901#define NX_OS_CRB_RETRY_COUNT 4000
902#define NX_CDRP_SIGNATURE_MAKE(pcifn, version) \
903 (((pcifn) & 0xff) | (((version) & 0xff) << 8) | (0xcafe << 16))
904
905#define NX_CDRP_CLEAR 0x00000000
906#define NX_CDRP_CMD_BIT 0x80000000
907
908/*
909 * All responses must have the NX_CDRP_CMD_BIT cleared
910 * in the crb NX_CDRP_CRB_OFFSET.
911 */
912#define NX_CDRP_FORM_RSP(rsp) (rsp)
913#define NX_CDRP_IS_RSP(rsp) (((rsp) & NX_CDRP_CMD_BIT) == 0)
914
915#define NX_CDRP_RSP_OK 0x00000001
916#define NX_CDRP_RSP_FAIL 0x00000002
917#define NX_CDRP_RSP_TIMEOUT 0x00000003
918
919/*
920 * All commands must have the NX_CDRP_CMD_BIT set in
921 * the crb NX_CDRP_CRB_OFFSET.
922 */
923#define NX_CDRP_FORM_CMD(cmd) (NX_CDRP_CMD_BIT | (cmd))
924#define NX_CDRP_IS_CMD(cmd) (((cmd) & NX_CDRP_CMD_BIT) != 0)
925
926#define NX_CDRP_CMD_SUBMIT_CAPABILITIES 0x00000001
927#define NX_CDRP_CMD_READ_MAX_RDS_PER_CTX 0x00000002
928#define NX_CDRP_CMD_READ_MAX_SDS_PER_CTX 0x00000003
929#define NX_CDRP_CMD_READ_MAX_RULES_PER_CTX 0x00000004
930#define NX_CDRP_CMD_READ_MAX_RX_CTX 0x00000005
931#define NX_CDRP_CMD_READ_MAX_TX_CTX 0x00000006
932#define NX_CDRP_CMD_CREATE_RX_CTX 0x00000007
933#define NX_CDRP_CMD_DESTROY_RX_CTX 0x00000008
934#define NX_CDRP_CMD_CREATE_TX_CTX 0x00000009
935#define NX_CDRP_CMD_DESTROY_TX_CTX 0x0000000a
936#define NX_CDRP_CMD_SETUP_STATISTICS 0x0000000e
937#define NX_CDRP_CMD_GET_STATISTICS 0x0000000f
938#define NX_CDRP_CMD_DELETE_STATISTICS 0x00000010
939#define NX_CDRP_CMD_SET_MTU 0x00000012
940#define NX_CDRP_CMD_MAX 0x00000013
941
942#define NX_RCODE_SUCCESS 0
943#define NX_RCODE_NO_HOST_MEM 1
944#define NX_RCODE_NO_HOST_RESOURCE 2
945#define NX_RCODE_NO_CARD_CRB 3
946#define NX_RCODE_NO_CARD_MEM 4
947#define NX_RCODE_NO_CARD_RESOURCE 5
948#define NX_RCODE_INVALID_ARGS 6
949#define NX_RCODE_INVALID_ACTION 7
950#define NX_RCODE_INVALID_STATE 8
951#define NX_RCODE_NOT_SUPPORTED 9
952#define NX_RCODE_NOT_PERMITTED 10
953#define NX_RCODE_NOT_READY 11
954#define NX_RCODE_DOES_NOT_EXIST 12
955#define NX_RCODE_ALREADY_EXISTS 13
956#define NX_RCODE_BAD_SIGNATURE 14
957#define NX_RCODE_CMD_NOT_IMPL 15
958#define NX_RCODE_CMD_INVALID 16
959#define NX_RCODE_TIMEOUT 17
960#define NX_RCODE_CMD_FAILED 18
961#define NX_RCODE_MAX_EXCEEDED 19
962#define NX_RCODE_MAX 20
963
964#define NX_DESTROY_CTX_RESET 0
965#define NX_DESTROY_CTX_D3_RESET 1
966#define NX_DESTROY_CTX_MAX 2
967
968/*
969 * Capabilities
970 */
971#define NX_CAP_BIT(class, bit) (1 << bit)
972#define NX_CAP0_LEGACY_CONTEXT NX_CAP_BIT(0, 0)
973#define NX_CAP0_MULTI_CONTEXT NX_CAP_BIT(0, 1)
974#define NX_CAP0_LEGACY_MN NX_CAP_BIT(0, 2)
975#define NX_CAP0_LEGACY_MS NX_CAP_BIT(0, 3)
976#define NX_CAP0_CUT_THROUGH NX_CAP_BIT(0, 4)
977#define NX_CAP0_LRO NX_CAP_BIT(0, 5)
978#define NX_CAP0_LSO NX_CAP_BIT(0, 6)
979#define NX_CAP0_JUMBO_CONTIGUOUS NX_CAP_BIT(0, 7)
980#define NX_CAP0_LRO_CONTIGUOUS NX_CAP_BIT(0, 8)
981
982/*
983 * Context state
984 */
985#define NX_HOST_CTX_STATE_FREED 0
986#define NX_HOST_CTX_STATE_ALLOCATED 1
987#define NX_HOST_CTX_STATE_ACTIVE 2
988#define NX_HOST_CTX_STATE_DISABLED 3
989#define NX_HOST_CTX_STATE_QUIESCED 4
990#define NX_HOST_CTX_STATE_MAX 5
991
992/*
993 * Rx context
994 */
995
996typedef struct {
997 u64 host_phys_addr; /* Ring base addr */
998 u32 ring_size; /* Ring entries */
999 u16 msi_index;
1000 u16 rsvd; /* Padding */
1001} nx_hostrq_sds_ring_t;
1002
1003typedef struct {
1004 u64 host_phys_addr; /* Ring base addr */
1005 u64 buff_size; /* Packet buffer size */
1006 u32 ring_size; /* Ring entries */
1007 u32 ring_kind; /* Class of ring */
1008} nx_hostrq_rds_ring_t;
1009
1010typedef struct {
1011 u64 host_rsp_dma_addr; /* Response dma'd here */
1012 u32 capabilities[4]; /* Flag bit vector */
1013 u32 host_int_crb_mode; /* Interrupt crb usage */
1014 u32 host_rds_crb_mode; /* RDS crb usage */
1015 /* These ring offsets are relative to data[0] below */
1016 u32 rds_ring_offset; /* Offset to RDS config */
1017 u32 sds_ring_offset; /* Offset to SDS config */
1018 u16 num_rds_rings; /* Count of RDS rings */
1019 u16 num_sds_rings; /* Count of SDS rings */
1020 u16 rsvd1; /* Padding */
1021 u16 rsvd2; /* Padding */
1022 u8 reserved[128]; /* reserve space for future expansion*/
1023 /* MUST BE 64-bit aligned.
1024 The following is packed:
1025 - N hostrq_rds_rings
1026 - N hostrq_sds_rings */
1027 char data[0];
1028} nx_hostrq_rx_ctx_t;
1029
1030typedef struct {
1031 u32 host_producer_crb; /* Crb to use */
1032 u32 rsvd1; /* Padding */
1033} nx_cardrsp_rds_ring_t;
1034
1035typedef struct {
1036 u32 host_consumer_crb; /* Crb to use */
1037 u32 interrupt_crb; /* Crb to use */
1038} nx_cardrsp_sds_ring_t;
1039
1040typedef struct {
1041 /* These ring offsets are relative to data[0] below */
1042 u32 rds_ring_offset; /* Offset to RDS config */
1043 u32 sds_ring_offset; /* Offset to SDS config */
1044 u32 host_ctx_state; /* Starting State */
1045 u32 num_fn_per_port; /* How many PCI fn share the port */
1046 u16 num_rds_rings; /* Count of RDS rings */
1047 u16 num_sds_rings; /* Count of SDS rings */
1048 u16 context_id; /* Handle for context */
1049 u8 phys_port; /* Physical id of port */
1050 u8 virt_port; /* Virtual/Logical id of port */
1051 u8 reserved[128]; /* save space for future expansion */
1052 /* MUST BE 64-bit aligned.
1053 The following is packed:
1054 - N cardrsp_rds_rings
1055 - N cardrs_sds_rings */
1056 char data[0];
1057} nx_cardrsp_rx_ctx_t;
1058
1059#define SIZEOF_HOSTRQ_RX(HOSTRQ_RX, rds_rings, sds_rings) \
1060 (sizeof(HOSTRQ_RX) + \
1061 (rds_rings)*(sizeof(nx_hostrq_rds_ring_t)) + \
1062 (sds_rings)*(sizeof(nx_hostrq_sds_ring_t)))
1063
1064#define SIZEOF_CARDRSP_RX(CARDRSP_RX, rds_rings, sds_rings) \
1065 (sizeof(CARDRSP_RX) + \
1066 (rds_rings)*(sizeof(nx_cardrsp_rds_ring_t)) + \
1067 (sds_rings)*(sizeof(nx_cardrsp_sds_ring_t)))
1068
1069/*
1070 * Tx context
1071 */
1072
1073typedef struct {
1074 u64 host_phys_addr; /* Ring base addr */
1075 u32 ring_size; /* Ring entries */
1076 u32 rsvd; /* Padding */
1077} nx_hostrq_cds_ring_t;
1078
1079typedef struct {
1080 u64 host_rsp_dma_addr; /* Response dma'd here */
1081 u64 cmd_cons_dma_addr; /* */
1082 u64 dummy_dma_addr; /* */
1083 u32 capabilities[4]; /* Flag bit vector */
1084 u32 host_int_crb_mode; /* Interrupt crb usage */
1085 u32 rsvd1; /* Padding */
1086 u16 rsvd2; /* Padding */
1087 u16 interrupt_ctl;
1088 u16 msi_index;
1089 u16 rsvd3; /* Padding */
1090 nx_hostrq_cds_ring_t cds_ring; /* Desc of cds ring */
1091 u8 reserved[128]; /* future expansion */
1092} nx_hostrq_tx_ctx_t;
1093
1094typedef struct {
1095 u32 host_producer_crb; /* Crb to use */
1096 u32 interrupt_crb; /* Crb to use */
1097} nx_cardrsp_cds_ring_t;
1098
1099typedef struct {
1100 u32 host_ctx_state; /* Starting state */
1101 u16 context_id; /* Handle for context */
1102 u8 phys_port; /* Physical id of port */
1103 u8 virt_port; /* Virtual/Logical id of port */
1104 nx_cardrsp_cds_ring_t cds_ring; /* Card cds settings */
1105 u8 reserved[128]; /* future expansion */
1106} nx_cardrsp_tx_ctx_t;
1107
1108#define SIZEOF_HOSTRQ_TX(HOSTRQ_TX) (sizeof(HOSTRQ_TX))
1109#define SIZEOF_CARDRSP_TX(CARDRSP_TX) (sizeof(CARDRSP_TX))
1110
1111/* CRB */
1112
1113#define NX_HOST_RDS_CRB_MODE_UNIQUE 0
1114#define NX_HOST_RDS_CRB_MODE_SHARED 1
1115#define NX_HOST_RDS_CRB_MODE_CUSTOM 2
1116#define NX_HOST_RDS_CRB_MODE_MAX 3
1117
1118#define NX_HOST_INT_CRB_MODE_UNIQUE 0
1119#define NX_HOST_INT_CRB_MODE_SHARED 1
1120#define NX_HOST_INT_CRB_MODE_NORX 2
1121#define NX_HOST_INT_CRB_MODE_NOTX 3
1122#define NX_HOST_INT_CRB_MODE_NORXTX 4
1123
1124
1125/* MAC */
1126
1127#define MC_COUNT_P2 16
1128#define MC_COUNT_P3 38
1129
1130#define NETXEN_MAC_NOOP 0
1131#define NETXEN_MAC_ADD 1
1132#define NETXEN_MAC_DEL 2
1133
1134typedef struct nx_mac_list_s {
1135 struct nx_mac_list_s *next;
1136 uint8_t mac_addr[MAX_ADDR_LEN];
1137} nx_mac_list_t;
1138
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001139/*
1140 * Interrupt coalescing defaults. The defaults are for 1500 MTU. It is
1141 * adjusted based on configured MTU.
1142 */
1143#define NETXEN_DEFAULT_INTR_COALESCE_RX_TIME_US 3
1144#define NETXEN_DEFAULT_INTR_COALESCE_RX_PACKETS 256
1145#define NETXEN_DEFAULT_INTR_COALESCE_TX_PACKETS 64
1146#define NETXEN_DEFAULT_INTR_COALESCE_TX_TIME_US 4
1147
1148#define NETXEN_NIC_INTR_DEFAULT 0x04
1149
1150typedef union {
1151 struct {
1152 uint16_t rx_packets;
1153 uint16_t rx_time_us;
1154 uint16_t tx_packets;
1155 uint16_t tx_time_us;
1156 } data;
1157 uint64_t word;
1158} nx_nic_intr_coalesce_data_t;
1159
1160typedef struct {
1161 uint16_t stats_time_us;
1162 uint16_t rate_sample_time;
1163 uint16_t flags;
1164 uint16_t rsvd_1;
1165 uint32_t low_threshold;
1166 uint32_t high_threshold;
1167 nx_nic_intr_coalesce_data_t normal;
1168 nx_nic_intr_coalesce_data_t low;
1169 nx_nic_intr_coalesce_data_t high;
1170 nx_nic_intr_coalesce_data_t irq;
1171} nx_nic_intr_coalesce_t;
1172
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001173typedef struct {
1174 u64 qhdr;
1175 u64 req_hdr;
1176 u64 words[6];
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001177} nx_nic_req_t;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001178
1179typedef struct {
1180 u8 op;
1181 u8 tag;
1182 u8 mac_addr[6];
1183} nx_mac_req_t;
1184
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001185#define MAX_PENDING_DESC_BLOCK_SIZE 64
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001186
Dhananjay Phadke29566402008-07-21 19:44:04 -07001187#define NETXEN_NIC_MSI_ENABLED 0x02
1188#define NETXEN_NIC_MSIX_ENABLED 0x04
1189#define NETXEN_IS_MSI_FAMILY(adapter) \
1190 ((adapter)->flags & (NETXEN_NIC_MSI_ENABLED | NETXEN_NIC_MSIX_ENABLED))
1191
1192#define MSIX_ENTRIES_PER_ADAPTER 8
1193#define NETXEN_MSIX_TBL_SPACE 8192
1194#define NETXEN_PCI_REG_MSIX_TBL 0x44
1195
1196#define NETXEN_DB_MAPSIZE_BYTES 0x1000
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001197
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001198#define NETXEN_NETDEV_WEIGHT 120
1199#define NETXEN_ADAPTER_UP_MAGIC 777
1200#define NETXEN_NIC_PEG_TUNE 0
1201
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001202struct netxen_dummy_dma {
1203 void *addr;
1204 dma_addr_t phys_addr;
1205};
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001206
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001207struct netxen_adapter {
1208 struct netxen_hardware_context ahw;
Jeff Garzik47906542007-11-23 21:23:36 -05001209
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001210 struct net_device *netdev;
1211 struct pci_dev *pdev;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001212 int pci_using_dac;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001213 struct napi_struct napi;
Mithlesh Thukral6c80b182007-04-20 07:55:26 -07001214 struct net_device_stats net_stats;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001215 int mtu;
1216 int portnum;
Dhananjay Phadke3276fba2008-06-15 22:59:44 -07001217 u8 physical_port;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001218 u16 tx_context_id;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001219
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001220 uint8_t mc_enabled;
1221 uint8_t max_mc_count;
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001222 nx_mac_list_t *mac_list;
Dhananjay Phadke623621b2008-07-21 19:44:01 -07001223
Dhananjay Phadke29566402008-07-21 19:44:04 -07001224 struct netxen_legacy_intr_set legacy_intr;
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001225 u32 crb_intr_mask;
Dhananjay Phadke29566402008-07-21 19:44:04 -07001226
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001227 struct work_struct watchdog_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001228 struct timer_list watchdog_timer;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001229 struct work_struct tx_timeout_task;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001230
1231 u32 curr_window;
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001232 u32 crb_win;
1233 rwlock_t adapter_lock;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001234
Dhananjay Phadke29566402008-07-21 19:44:04 -07001235 uint64_t dma_mask;
1236
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001237 u32 cmd_producer;
Al Virof305f782007-12-22 19:44:00 +00001238 __le32 *cmd_consumer;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001239 u32 last_cmd_consumer;
Dhananjay Phadke7830b222008-07-21 19:44:00 -07001240 u32 crb_addr_cmd_producer;
1241 u32 crb_addr_cmd_consumer;
Dhananjay Phadkeba53e6b2008-03-17 19:59:50 -07001242
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001243 u32 max_tx_desc_count;
1244 u32 max_rx_desc_count;
1245 u32 max_jumbo_rx_desc_count;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001246 u32 max_lro_rx_desc_count;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001247
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001248 int max_rds_rings;
1249
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001250 u32 flags;
1251 u32 irq;
1252 int driver_mismatch;
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001253 u32 temp;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001254
Dhananjay Phadke29566402008-07-21 19:44:04 -07001255 u32 fw_major;
1256
1257 u8 msix_supported;
1258 u8 max_possible_rss_rings;
1259 struct msix_entry msix_entries[MSIX_ENTRIES_PER_ADAPTER];
1260
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001261 struct netxen_adapter_stats stats;
Jeff Garzik47906542007-11-23 21:23:36 -05001262
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001263 u16 link_speed;
1264 u16 link_duplex;
1265 u16 state;
1266 u16 link_autoneg;
Dhananjay Phadke200eef22007-09-03 10:33:35 +05301267 int rx_csum;
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001268 int status;
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001269
1270 struct netxen_cmd_buffer *cmd_buf_arr; /* Command buffers for xmit */
1271
1272 /*
1273 * Receive instances. These can be either one per port,
1274 * or one per peg, etc.
1275 */
1276 struct netxen_recv_context recv_ctx[MAX_RCV_CTX];
1277
1278 int is_up;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001279 struct netxen_dummy_dma dummy_dma;
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001280 nx_nic_intr_coalesce_t coal;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001281
1282 /* Context interface shared between card and host */
1283 struct netxen_ring_ctx *ctx_desc;
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001284 dma_addr_t ctx_desc_phys_addr;
dhananjay.phadke@gmail.com2d1a3bb2007-07-02 00:26:00 +05301285 int intr_scheme;
Dhananjay Phadke443be792008-03-17 19:59:48 -07001286 int msi_mode;
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001287 int (*enable_phy_interrupts) (struct netxen_adapter *);
1288 int (*disable_phy_interrupts) (struct netxen_adapter *);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001289 int (*macaddr_set) (struct netxen_adapter *, netxen_ethernet_macaddr_t);
1290 int (*set_mtu) (struct netxen_adapter *, int);
1291 int (*set_promisc) (struct netxen_adapter *, netxen_niu_prom_mode_t);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001292 int (*phy_read) (struct netxen_adapter *, long reg, u32 *);
1293 int (*phy_write) (struct netxen_adapter *, long reg, u32 val);
Amit S. Kale80922fb2006-12-04 09:18:00 -08001294 int (*init_port) (struct netxen_adapter *, int);
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001295 int (*stop_port) (struct netxen_adapter *);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001296
1297 int (*hw_read_wx)(struct netxen_adapter *, ulong, void *, int);
1298 int (*hw_write_wx)(struct netxen_adapter *, ulong, void *, int);
1299 int (*pci_mem_read)(struct netxen_adapter *, u64, void *, int);
1300 int (*pci_mem_write)(struct netxen_adapter *, u64, void *, int);
1301 int (*pci_write_immediate)(struct netxen_adapter *, u64, u32);
1302 u32 (*pci_read_immediate)(struct netxen_adapter *, u64);
1303 void (*pci_write_normalize)(struct netxen_adapter *, u64, u32);
1304 u32 (*pci_read_normalize)(struct netxen_adapter *, u64);
1305 unsigned long (*pci_set_window)(struct netxen_adapter *,
1306 unsigned long long);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001307}; /* netxen_adapter structure */
1308
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301309/*
1310 * NetXen dma watchdog control structure
1311 *
1312 * Bit 0 : enabled => R/O: 1 watchdog active, 0 inactive
1313 * Bit 1 : disable_request => 1 req disable dma watchdog
1314 * Bit 2 : enable_request => 1 req enable dma watchdog
1315 * Bit 3-31 : unused
1316 */
1317
1318#define netxen_set_dma_watchdog_disable_req(config_word) \
1319 _netxen_set_bits(config_word, 1, 1, 1)
1320#define netxen_set_dma_watchdog_enable_req(config_word) \
1321 _netxen_set_bits(config_word, 2, 1, 1)
1322#define netxen_get_dma_watchdog_enabled(config_word) \
1323 ((config_word) & 0x1)
1324#define netxen_get_dma_watchdog_disabled(config_word) \
1325 (((config_word) >> 1) & 0x1)
1326
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001327/* Max number of xmit producer threads that can run simultaneously */
1328#define MAX_XMIT_PRODUCERS 16
1329
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001330#define PCI_OFFSET_FIRST_RANGE(adapter, off) \
1331 ((adapter)->ahw.pci_base0 + (off))
1332#define PCI_OFFSET_SECOND_RANGE(adapter, off) \
1333 ((adapter)->ahw.pci_base1 + (off) - SECOND_PAGE_GROUP_START)
1334#define PCI_OFFSET_THIRD_RANGE(adapter, off) \
1335 ((adapter)->ahw.pci_base2 + (off) - THIRD_PAGE_GROUP_START)
1336
1337static inline void __iomem *pci_base_offset(struct netxen_adapter *adapter,
1338 unsigned long off)
1339{
1340 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1341 return (adapter->ahw.pci_base0 + off);
1342 } else if ((off < SECOND_PAGE_GROUP_END) &&
1343 (off >= SECOND_PAGE_GROUP_START)) {
1344 return (adapter->ahw.pci_base1 + off - SECOND_PAGE_GROUP_START);
1345 } else if ((off < THIRD_PAGE_GROUP_END) &&
1346 (off >= THIRD_PAGE_GROUP_START)) {
1347 return (adapter->ahw.pci_base2 + off - THIRD_PAGE_GROUP_START);
1348 }
1349 return NULL;
1350}
1351
1352static inline void __iomem *pci_base(struct netxen_adapter *adapter,
1353 unsigned long off)
1354{
1355 if ((off < FIRST_PAGE_GROUP_END) && (off >= FIRST_PAGE_GROUP_START)) {
1356 return adapter->ahw.pci_base0;
1357 } else if ((off < SECOND_PAGE_GROUP_END) &&
1358 (off >= SECOND_PAGE_GROUP_START)) {
1359 return adapter->ahw.pci_base1;
1360 } else if ((off < THIRD_PAGE_GROUP_END) &&
1361 (off >= THIRD_PAGE_GROUP_START)) {
1362 return adapter->ahw.pci_base2;
1363 }
1364 return NULL;
1365}
1366
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001367int netxen_niu_xgbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1368int netxen_niu_gbe_enable_phy_interrupts(struct netxen_adapter *adapter);
1369int netxen_niu_xgbe_disable_phy_interrupts(struct netxen_adapter *adapter);
1370int netxen_niu_gbe_disable_phy_interrupts(struct netxen_adapter *adapter);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001371int netxen_niu_gbe_phy_read(struct netxen_adapter *adapter, long reg,
Al Viroa608ab92007-01-02 10:39:10 +00001372 __u32 * readval);
Mithlesh Thukral13ba9c72007-04-20 07:53:05 -07001373int netxen_niu_gbe_phy_write(struct netxen_adapter *adapter,
Al Viroa608ab92007-01-02 10:39:10 +00001374 long reg, __u32 val);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001375
1376/* Functions available from netxen_nic_hw.c */
Mithlesh Thukral3176ff32007-04-20 07:52:37 -07001377int netxen_nic_set_mtu_xgb(struct netxen_adapter *adapter, int new_mtu);
1378int netxen_nic_set_mtu_gb(struct netxen_adapter *adapter, int new_mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001379void netxen_nic_reg_write(struct netxen_adapter *adapter, u64 off, u32 val);
1380int netxen_nic_reg_read(struct netxen_adapter *adapter, u64 off);
1381void netxen_nic_write_w0(struct netxen_adapter *adapter, u32 index, u32 value);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001382void netxen_nic_read_w0(struct netxen_adapter *adapter, u32 index, u32 *value);
1383void netxen_nic_write_w1(struct netxen_adapter *adapter, u32 index, u32 value);
1384void netxen_nic_read_w1(struct netxen_adapter *adapter, u32 index, u32 *value);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001385
1386int netxen_nic_get_board_info(struct netxen_adapter *adapter);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001387
1388int netxen_nic_hw_read_wx_128M(struct netxen_adapter *adapter,
1389 ulong off, void *data, int len);
1390int netxen_nic_hw_write_wx_128M(struct netxen_adapter *adapter,
1391 ulong off, void *data, int len);
1392int netxen_nic_pci_mem_read_128M(struct netxen_adapter *adapter,
1393 u64 off, void *data, int size);
1394int netxen_nic_pci_mem_write_128M(struct netxen_adapter *adapter,
1395 u64 off, void *data, int size);
1396int netxen_nic_pci_write_immediate_128M(struct netxen_adapter *adapter,
1397 u64 off, u32 data);
1398u32 netxen_nic_pci_read_immediate_128M(struct netxen_adapter *adapter, u64 off);
1399void netxen_nic_pci_write_normalize_128M(struct netxen_adapter *adapter,
1400 u64 off, u32 data);
1401u32 netxen_nic_pci_read_normalize_128M(struct netxen_adapter *adapter, u64 off);
1402unsigned long netxen_nic_pci_set_window_128M(struct netxen_adapter *adapter,
1403 unsigned long long addr);
1404void netxen_nic_pci_change_crbwindow_128M(struct netxen_adapter *adapter,
1405 u32 wndw);
1406
1407int netxen_nic_hw_read_wx_2M(struct netxen_adapter *adapter,
1408 ulong off, void *data, int len);
1409int netxen_nic_hw_write_wx_2M(struct netxen_adapter *adapter,
1410 ulong off, void *data, int len);
1411int netxen_nic_pci_mem_read_2M(struct netxen_adapter *adapter,
1412 u64 off, void *data, int size);
1413int netxen_nic_pci_mem_write_2M(struct netxen_adapter *adapter,
1414 u64 off, void *data, int size);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001415void netxen_crb_writelit_adapter(struct netxen_adapter *adapter,
1416 unsigned long off, int data);
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001417int netxen_nic_pci_write_immediate_2M(struct netxen_adapter *adapter,
1418 u64 off, u32 data);
1419u32 netxen_nic_pci_read_immediate_2M(struct netxen_adapter *adapter, u64 off);
1420void netxen_nic_pci_write_normalize_2M(struct netxen_adapter *adapter,
1421 u64 off, u32 data);
1422u32 netxen_nic_pci_read_normalize_2M(struct netxen_adapter *adapter, u64 off);
1423unsigned long netxen_nic_pci_set_window_2M(struct netxen_adapter *adapter,
1424 unsigned long long addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001425
1426/* Functions from netxen_nic_init.c */
Amit S. Kaleed25ffa2006-12-04 09:23:25 -08001427void netxen_free_adapter_offload(struct netxen_adapter *adapter);
1428int netxen_initialize_adapter_offload(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301429int netxen_phantom_init(struct netxen_adapter *adapter, int pegtune_val);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001430int netxen_receive_peg_ready(struct netxen_adapter *adapter);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301431int netxen_load_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001432int netxen_pinit_from_rom(struct netxen_adapter *adapter, int verbose);
Dhananjay Phadke29566402008-07-21 19:44:04 -07001433
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001434int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr, int *valp);
Jeff Garzik47906542007-11-23 21:23:36 -05001435int netxen_rom_fast_read_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001436 u8 *bytes, size_t size);
Jeff Garzik47906542007-11-23 21:23:36 -05001437int netxen_rom_fast_write_words(struct netxen_adapter *adapter, int addr,
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001438 u8 *bytes, size_t size);
1439int netxen_flash_unlock(struct netxen_adapter *adapter);
1440int netxen_backup_crbinit(struct netxen_adapter *adapter);
1441int netxen_flash_erase_secondary(struct netxen_adapter *adapter);
1442int netxen_flash_erase_primary(struct netxen_adapter *adapter);
Amit S. Kalee45d9ab2007-02-09 05:49:08 -08001443void netxen_halt_pegs(struct netxen_adapter *adapter);
Amit S. Kale27d2ab52007-02-05 07:40:49 -08001444
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001445int netxen_rom_se(struct netxen_adapter *adapter, int addr);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001446
Dhananjay Phadke29566402008-07-21 19:44:04 -07001447int netxen_alloc_sw_resources(struct netxen_adapter *adapter);
1448void netxen_free_sw_resources(struct netxen_adapter *adapter);
1449
1450int netxen_alloc_hw_resources(struct netxen_adapter *adapter);
1451void netxen_free_hw_resources(struct netxen_adapter *adapter);
1452
1453void netxen_release_rx_buffers(struct netxen_adapter *adapter);
1454void netxen_release_tx_buffers(struct netxen_adapter *adapter);
1455
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001456void netxen_initialize_adapter_ops(struct netxen_adapter *adapter);
1457int netxen_init_firmware(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001458void netxen_tso_check(struct netxen_adapter *adapter,
1459 struct cmd_desc_type0 *desc, struct sk_buff *skb);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001460void netxen_nic_clear_stats(struct netxen_adapter *adapter);
David Howells6d5aefb2006-12-05 19:36:26 +00001461void netxen_watchdog_task(struct work_struct *work);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001462void netxen_post_rx_buffers(struct netxen_adapter *adapter, u32 ctx,
1463 u32 ringid);
Dhananjay Phadke05aaa022008-03-17 19:59:49 -07001464int netxen_process_cmd_ring(struct netxen_adapter *adapter);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001465u32 netxen_process_rcv_ring(struct netxen_adapter *adapter, int ctx, int max);
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001466void netxen_p2_nic_set_multi(struct net_device *netdev);
1467void netxen_p3_nic_set_multi(struct net_device *netdev);
Dhananjay Phadkecd1f8162008-07-21 19:44:09 -07001468int netxen_config_intr_coalesce(struct netxen_adapter *adapter);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001469
1470u32 nx_fw_cmd_set_mtu(struct netxen_adapter *adapter, u32 mtu);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001471int netxen_nic_change_mtu(struct net_device *netdev, int new_mtu);
Dhananjay Phadke48bfd1e2008-07-21 19:44:06 -07001472
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001473int netxen_nic_set_mac(struct net_device *netdev, void *p);
1474struct net_device_stats *netxen_nic_get_stats(struct net_device *netdev);
1475
Dhananjay Phadkec9fc8912008-07-21 19:44:07 -07001476void netxen_nic_update_cmd_producer(struct netxen_adapter *adapter,
1477 uint32_t crb_producer);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001478
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001479/*
1480 * NetXen Board information
1481 */
1482
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001483#define NETXEN_MAX_SHORT_NAME 32
Amit S. Kale71bd7872006-12-01 05:36:22 -08001484struct netxen_brdinfo {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001485 netxen_brdtype_t brdtype; /* type of board */
1486 long ports; /* max no of physical ports */
1487 char short_name[NETXEN_MAX_SHORT_NAME];
Amit S. Kale71bd7872006-12-01 05:36:22 -08001488};
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001489
Amit S. Kale71bd7872006-12-01 05:36:22 -08001490static const struct netxen_brdinfo netxen_boards[] = {
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001491 {NETXEN_BRDTYPE_P2_SB31_10G_CX4, 1, "XGb CX4"},
1492 {NETXEN_BRDTYPE_P2_SB31_10G_HMEZ, 1, "XGb HMEZ"},
1493 {NETXEN_BRDTYPE_P2_SB31_10G_IMEZ, 2, "XGb IMEZ"},
1494 {NETXEN_BRDTYPE_P2_SB31_10G, 1, "XGb XFP"},
1495 {NETXEN_BRDTYPE_P2_SB35_4G, 4, "Quad Gb"},
1496 {NETXEN_BRDTYPE_P2_SB31_2G, 2, "Dual Gb"},
Dhananjay Phadkee4c93c82008-07-21 19:44:02 -07001497 {NETXEN_BRDTYPE_P3_REF_QG, 4, "Reference Quad Gig "},
1498 {NETXEN_BRDTYPE_P3_HMEZ, 2, "Dual XGb HMEZ"},
1499 {NETXEN_BRDTYPE_P3_10G_CX4_LP, 2, "Dual XGb CX4 LP"},
1500 {NETXEN_BRDTYPE_P3_4_GB, 4, "Quad Gig LP"},
1501 {NETXEN_BRDTYPE_P3_IMEZ, 2, "Dual XGb IMEZ"},
1502 {NETXEN_BRDTYPE_P3_10G_SFP_PLUS, 2, "Dual XGb SFP+ LP"},
1503 {NETXEN_BRDTYPE_P3_10000_BASE_T, 1, "XGB 10G BaseT LP"},
1504 {NETXEN_BRDTYPE_P3_XG_LOM, 2, "Dual XGb LOM"},
1505 {NETXEN_BRDTYPE_P3_4_GB_MM, 4, "Quad GB - March Madness"},
1506 {NETXEN_BRDTYPE_P3_10G_CX4, 2, "Reference Dual CX4 Option"},
1507 {NETXEN_BRDTYPE_P3_10G_XFP, 1, "Reference Single XFP Option"}
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001508};
1509
Denis Chengff8ac602007-09-02 18:30:18 +08001510#define NUM_SUPPORTED_BOARDS ARRAY_SIZE(netxen_boards)
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001511
Amit S. Kalecb8011a2006-11-29 09:00:10 -08001512static inline void get_brd_name_by_type(u32 type, char *name)
1513{
1514 int i, found = 0;
1515 for (i = 0; i < NUM_SUPPORTED_BOARDS; ++i) {
1516 if (netxen_boards[i].brdtype == type) {
1517 strcpy(name, netxen_boards[i].short_name);
1518 found = 1;
1519 break;
1520 }
1521
1522 }
1523 if (!found)
1524 name = "Unknown";
1525}
1526
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301527static inline int
1528dma_watchdog_shutdown_request(struct netxen_adapter *adapter)
1529{
1530 u32 ctrl;
1531
1532 /* check if already inactive */
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001533 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301534 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1535 printk(KERN_ERR "failed to read dma watchdog status\n");
1536
1537 if (netxen_get_dma_watchdog_enabled(ctrl) == 0)
1538 return 1;
1539
1540 /* Send the disable request */
1541 netxen_set_dma_watchdog_disable_req(ctrl);
1542 netxen_crb_writelit_adapter(adapter,
1543 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1544
1545 return 0;
1546}
1547
1548static inline int
1549dma_watchdog_shutdown_poll_result(struct netxen_adapter *adapter)
1550{
1551 u32 ctrl;
1552
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001553 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301554 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1555 printk(KERN_ERR "failed to read dma watchdog status\n");
1556
dhananjay@netxen.comceded322007-07-19 14:41:09 +05301557 return (netxen_get_dma_watchdog_enabled(ctrl) == 0);
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301558}
1559
1560static inline int
1561dma_watchdog_wakeup(struct netxen_adapter *adapter)
1562{
1563 u32 ctrl;
1564
Dhananjay Phadke3ce06a32008-07-21 19:44:03 -07001565 if (adapter->hw_read_wx(adapter,
Dhananjay Phadke96acb6e2007-07-02 09:37:57 +05301566 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), &ctrl, 4))
1567 printk(KERN_ERR "failed to read dma watchdog status\n");
1568
1569 if (netxen_get_dma_watchdog_enabled(ctrl))
1570 return 1;
1571
1572 /* send the wakeup request */
1573 netxen_set_dma_watchdog_enable_req(ctrl);
1574
1575 netxen_crb_writelit_adapter(adapter,
1576 NETXEN_CAM_RAM(NETXEN_CAM_RAM_DMA_WATCHDOG_CTRL), ctrl);
1577
1578 return 0;
1579}
1580
1581
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001582int netxen_is_flash_supported(struct netxen_adapter *adapter);
Al Virof305f782007-12-22 19:44:00 +00001583int netxen_get_flash_mac_addr(struct netxen_adapter *adapter, __le64 mac[]);
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001584extern void netxen_change_ringparam(struct netxen_adapter *adapter);
1585extern int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr,
1586 int *valp);
1587
1588extern struct ethtool_ops netxen_nic_ethtool_ops;
1589
Amit S. Kale3d396eb2006-10-21 15:33:03 -04001590#endif /* __NETXEN_NIC_H_ */