1 /************************************************************************
2 * s2io.h: A Linux PCI-X Ethernet driver for S2IO 10GbE Server NIC
3 * Copyright(c) 2002-2005 Neterion Inc.
5 * This software may be used and distributed according to the terms of
6 * the GNU General Public License (GPL), incorporated herein by reference.
7 * Drivers based on or derived from this code fall under the GPL and must
8 * retain the authorship, copyright and license notice. This file is not
9 * a complete program and may only be used when the entire operating
10 * system is licensed under the GPL.
11 * See the file COPYING in this distribution for more information.
12 ************************************************************************/
17 #define BIT(loc) (0x8000000000000000ULL >> (loc))
18 #define vBIT(val, loc, sz) (((u64)val) << (64-loc-sz))
19 #define INV(d) ((d&0xff)<<24) | (((d>>8)&0xff)<<16) | (((d>>16)&0xff)<<8)| ((d>>24)&0xff)
34 /* Maximum outstanding splits to be configured into xena. */
35 typedef enum xena_max_outstanding_splits
{
36 XENA_ONE_SPLIT_TRANSACTION
= 0,
37 XENA_TWO_SPLIT_TRANSACTION
= 1,
38 XENA_THREE_SPLIT_TRANSACTION
= 2,
39 XENA_FOUR_SPLIT_TRANSACTION
= 3,
40 XENA_EIGHT_SPLIT_TRANSACTION
= 4,
41 XENA_TWELVE_SPLIT_TRANSACTION
= 5,
42 XENA_SIXTEEN_SPLIT_TRANSACTION
= 6,
43 XENA_THIRTYTWO_SPLIT_TRANSACTION
= 7
44 } xena_max_outstanding_splits
;
45 #define XENA_MAX_OUTSTANDING_SPLITS(n) (n << 4)
47 /* OS concerned variables and constants */
48 #define WATCH_DOG_TIMEOUT 5*HZ
50 #define ALIGN_SIZE 127
51 #define PCIX_COMMAND_REGISTER 0x62
54 * Debug related variables.
56 /* different debug levels. */
63 /* Global variable that defines the present debug level of the driver. */
64 static int debug_level
= ERR_DBG
; /* Default level. */
66 /* DEBUG message print. */
67 #define DBG_PRINT(dbg_level, args...) if(!(debug_level<dbg_level)) printk(args)
69 /* Protocol assist features of the NIC */
70 #define L3_CKSUM_OK 0xFFFF
71 #define L4_CKSUM_OK 0xFFFF
72 #define S2IO_JUMBO_SIZE 9600
74 /* The statistics block of Xena */
75 typedef struct stat_block
{
76 /* Tx MAC statistics counters. */
82 u64 tmac_pause_ctrl_frms
;
85 u32 tmac_any_err_frms
;
87 u64 tmac_ttl_less_fb_octets
;
88 u64 tmac_vld_ip_octets
;
97 /* Rx MAC Statistics counters. */
100 u64 rmac_fcs_err_frms
;
102 u32 rmac_vld_bcst_frms
;
103 u32 rmac_vld_mcst_frms
;
104 u32 rmac_out_rng_len_err_frms
;
105 u32 rmac_in_rng_len_err_frms
;
107 u64 rmac_pause_ctrl_frms
;
108 u64 rmac_unsup_ctrl_frms
;
109 u32 rmac_accepted_ucst_frms
;
111 u32 rmac_discarded_frms
;
112 u32 rmac_accepted_nucst_frms
;
114 u32 rmac_drop_events
;
115 u64 rmac_ttl_less_fb_octets
;
118 u32 rmac_usized_frms
;
121 u32 rmac_osized_frms
;
123 u32 rmac_jabber_frms
;
124 u64 rmac_ttl_64_frms
;
125 u64 rmac_ttl_65_127_frms
;
127 u64 rmac_ttl_128_255_frms
;
128 u64 rmac_ttl_256_511_frms
;
130 u64 rmac_ttl_512_1023_frms
;
131 u64 rmac_ttl_1024_1518_frms
;
140 u32 rmac_err_drp_udp
;
142 u64 rmac_xgmii_err_sym
;
161 u64 rmac_xgmii_data_err_cnt
;
162 u64 rmac_xgmii_ctrl_err_cnt
;
164 u32 rmac_accepted_ip
;
166 /* PCI/PCI-X Read transaction statistics. */
170 u32 new_rd_req_rtry_cnt
;
172 /* PCI/PCI-X Write/Read transaction statistics. */
174 u32 wr_rtry_rd_ack_cnt
;
175 u32 new_wr_req_rtry_cnt
;
180 /* PCI/PCI-X Write / DMA Transaction statistics. */
182 u32 rd_rtry_wr_ack_cnt
;
191 /* Structures representing different init time configuration
192 * parameters of the NIC.
195 /* Maintains Per FIFO related information. */
196 typedef struct tx_fifo_config
{
197 #define MAX_AVAILABLE_TXDS 8192
198 u32 fifo_len
; /* specifies len of FIFO upto 8192, ie no of TxDLs */
199 /* Priority definition */
200 #define TX_FIFO_PRI_0 0 /*Highest */
201 #define TX_FIFO_PRI_1 1
202 #define TX_FIFO_PRI_2 2
203 #define TX_FIFO_PRI_3 3
204 #define TX_FIFO_PRI_4 4
205 #define TX_FIFO_PRI_5 5
206 #define TX_FIFO_PRI_6 6
207 #define TX_FIFO_PRI_7 7 /*lowest */
208 u8 fifo_priority
; /* specifies pointer level for FIFO */
209 /* user should not set twos fifos with same pri */
211 #define NO_SNOOP_TXD 0x01
212 #define NO_SNOOP_TXD_BUFFER 0x02
216 /* Maintains per Ring related information */
217 typedef struct rx_ring_config
{
218 u32 num_rxd
; /*No of RxDs per Rx Ring */
219 #define RX_RING_PRI_0 0 /* highest */
220 #define RX_RING_PRI_1 1
221 #define RX_RING_PRI_2 2
222 #define RX_RING_PRI_3 3
223 #define RX_RING_PRI_4 4
224 #define RX_RING_PRI_5 5
225 #define RX_RING_PRI_6 6
226 #define RX_RING_PRI_7 7 /* lowest */
228 u8 ring_priority
; /*Specifies service priority of ring */
229 /* OSM should not set any two rings with same priority */
230 u8 ring_org
; /*Organization of ring */
231 #define RING_ORG_BUFF1 0x01
232 #define RX_RING_ORG_BUFF3 0x03
233 #define RX_RING_ORG_BUFF5 0x05
236 #define NO_SNOOP_RXD 0x01
237 #define NO_SNOOP_RXD_BUFFER 0x02
240 /* This structure provides contains values of the tunable parameters
243 struct config_param
{
245 u32 tx_fifo_num
; /*Number of Tx FIFOs */
246 #define MAX_TX_FIFOS 8
248 tx_fifo_config_t tx_cfg
[MAX_TX_FIFOS
]; /*Per-Tx FIFO config */
249 u32 max_txds
; /*Max no. of Tx buffer descriptor per TxDL */
251 /* Specifies if Tx Intr is UTILZ or PER_LIST type. */
254 u32 rx_ring_num
; /*Number of receive rings */
255 #define MAX_RX_RINGS 8
256 #define MAX_RX_BLOCKS_PER_RING 150
258 rx_ring_config_t rx_cfg
[MAX_RX_RINGS
]; /*Per-Rx Ring config */
260 #define HEADER_ETHERNET_II_802_3_SIZE 14
261 #define HEADER_802_2_SIZE 3
262 #define HEADER_SNAP_SIZE 5
263 #define HEADER_VLAN_SIZE 4
266 #define MAX_PYLD 1500
267 #define MAX_MTU (MAX_PYLD+18)
268 #define MAX_MTU_VLAN (MAX_PYLD+22)
269 #define MAX_PYLD_JUMBO 9600
270 #define MAX_MTU_JUMBO (MAX_PYLD_JUMBO+18)
271 #define MAX_MTU_JUMBO_VLAN (MAX_PYLD_JUMBO+22)
274 /* Structure representing MAC Addrs */
275 typedef struct mac_addr
{
276 u8 mac_addr
[ETH_ALEN
];
279 /* Structure that represent every FIFO element in the BAR1
282 typedef struct _TxFIFO_element
{
286 #define TX_FIFO_LAST_TXD_NUM( val) vBIT(val,0,8)
287 #define TX_FIFO_FIRST_LIST BIT(14)
288 #define TX_FIFO_LAST_LIST BIT(15)
289 #define TX_FIFO_FIRSTNLAST_LIST vBIT(3,14,2)
290 #define TX_FIFO_SPECIAL_FUNC BIT(23)
291 #define TX_FIFO_DS_NO_SNOOP BIT(31)
292 #define TX_FIFO_BUFF_NO_SNOOP BIT(30)
295 /* Tx descriptor structure */
296 typedef struct _TxD
{
299 #define TXD_LIST_OWN_XENA BIT(7)
300 #define TXD_T_CODE (BIT(12)|BIT(13)|BIT(14)|BIT(15))
301 #define TXD_T_CODE_OK(val) (|(val & TXD_T_CODE))
302 #define GET_TXD_T_CODE(val) ((val & TXD_T_CODE)<<12)
303 #define TXD_GATHER_CODE (BIT(22) | BIT(23))
304 #define TXD_GATHER_CODE_FIRST BIT(22)
305 #define TXD_GATHER_CODE_LAST BIT(23)
306 #define TXD_TCP_LSO_EN BIT(30)
307 #define TXD_UDP_COF_EN BIT(31)
308 #define TXD_TCP_LSO_MSS(val) vBIT(val,34,14)
309 #define TXD_BUFFER0_SIZE(val) vBIT(val,48,16)
312 #define TXD_TX_CKO_CONTROL (BIT(5)|BIT(6)|BIT(7))
313 #define TXD_TX_CKO_IPV4_EN BIT(5)
314 #define TXD_TX_CKO_TCP_EN BIT(6)
315 #define TXD_TX_CKO_UDP_EN BIT(7)
316 #define TXD_VLAN_ENABLE BIT(15)
317 #define TXD_VLAN_TAG(val) vBIT(val,16,16)
318 #define TXD_INT_NUMBER(val) vBIT(val,34,6)
319 #define TXD_INT_TYPE_PER_LIST BIT(47)
320 #define TXD_INT_TYPE_UTILZ BIT(46)
321 #define TXD_SET_MARKER vBIT(0x6,0,4)
324 u64 Host_Control
; /* reserved for host */
327 /* Structure to hold the phy and virt addr of every TxDL. */
328 typedef struct list_info_hold
{
329 dma_addr_t list_phy_addr
;
330 void *list_virt_addr
;
333 /* Rx descriptor structure */
334 typedef struct _RxD_t
{
335 u64 Host_Control
; /* reserved for host */
337 #define RXD_OWN_XENA BIT(7)
338 #define RXD_T_CODE (BIT(12)|BIT(13)|BIT(14)|BIT(15))
339 #define RXD_FRAME_PROTO vBIT(0xFFFF,24,8)
340 #define RXD_FRAME_PROTO_IPV4 BIT(27)
341 #define RXD_FRAME_PROTO_IPV6 BIT(28)
342 #define RXD_FRAME_PROTO_TCP BIT(30)
343 #define RXD_FRAME_PROTO_UDP BIT(31)
344 #define TCP_OR_UDP_FRAME (RXD_FRAME_PROTO_TCP | RXD_FRAME_PROTO_UDP)
345 #define RXD_GET_L3_CKSUM(val) ((u16)(val>> 16) & 0xFFFF)
346 #define RXD_GET_L4_CKSUM(val) ((u16)(val) & 0xFFFF)
349 #ifndef CONFIG_2BUFF_MODE
350 #define MASK_BUFFER0_SIZE vBIT(0xFFFF,0,16)
351 #define SET_BUFFER0_SIZE(val) vBIT(val,0,16)
353 #define MASK_BUFFER0_SIZE vBIT(0xFF,0,16)
354 #define MASK_BUFFER1_SIZE vBIT(0xFFFF,16,16)
355 #define MASK_BUFFER2_SIZE vBIT(0xFFFF,32,16)
356 #define SET_BUFFER0_SIZE(val) vBIT(val,8,8)
357 #define SET_BUFFER1_SIZE(val) vBIT(val,16,16)
358 #define SET_BUFFER2_SIZE(val) vBIT(val,32,16)
361 #define MASK_VLAN_TAG vBIT(0xFFFF,48,16)
362 #define SET_VLAN_TAG(val) vBIT(val,48,16)
363 #define SET_NUM_TAG(val) vBIT(val,16,32)
365 #ifndef CONFIG_2BUFF_MODE
366 #define RXD_GET_BUFFER0_SIZE(Control_2) (u64)((Control_2 & vBIT(0xFFFF,0,16)))
368 #define RXD_GET_BUFFER0_SIZE(Control_2) (u8)((Control_2 & MASK_BUFFER0_SIZE) \
370 #define RXD_GET_BUFFER1_SIZE(Control_2) (u16)((Control_2 & MASK_BUFFER1_SIZE) \
372 #define RXD_GET_BUFFER2_SIZE(Control_2) (u16)((Control_2 & MASK_BUFFER2_SIZE) \
379 #ifdef CONFIG_2BUFF_MODE
385 /* Structure that represents the Rx descriptor block which contains
386 * 128 Rx descriptors.
388 #ifndef CONFIG_2BUFF_MODE
389 typedef struct _RxD_block
{
390 #define MAX_RXDS_PER_BLOCK 127
391 RxD_t rxd
[MAX_RXDS_PER_BLOCK
];
394 #define END_OF_BLOCK 0xFEFFFFFFFFFFFFFFULL
395 u64 reserved_1
; /* 0xFEFFFFFFFFFFFFFF to mark last
397 u64 reserved_2_pNext_RxD_block
; /* Logical ptr to next */
398 u64 pNext_RxD_Blk_physical
; /* Buff0_ptr.In a 32 bit arch
399 * the upper 32 bits should
403 typedef struct _RxD_block
{
404 #define MAX_RXDS_PER_BLOCK 85
405 RxD_t rxd
[MAX_RXDS_PER_BLOCK
];
407 #define END_OF_BLOCK 0xFEFFFFFFFFFFFFFFULL
408 u64 reserved_1
; /* 0xFEFFFFFFFFFFFFFF to mark last Rxd
410 u64 pNext_RxD_Blk_physical
; /* Phy ponter to next blk. */
412 #define SIZE_OF_BLOCK 4096
414 /* Structure to hold virtual addresses of Buf0 and Buf1 in
416 typedef struct bufAdd
{
424 /* Structure which stores all the MAC control parameters */
426 /* This structure stores the offset of the RxD in the ring
427 * from which the Rx Interrupt processor can start picking
428 * up the RxDs for processing.
430 typedef struct _rx_curr_get_info_t
{
434 } rx_curr_get_info_t
;
436 typedef rx_curr_get_info_t rx_curr_put_info_t
;
438 /* This structure stores the offset of the TxDl in the FIFO
439 * from which the Tx Interrupt processor can start picking
440 * up the TxDLs for send complete interrupt processing.
445 } tx_curr_get_info_t
;
447 typedef tx_curr_get_info_t tx_curr_put_info_t
;
449 /* Infomation related to the Tx and Rx FIFOs and Rings of Xena
450 * is maintained in this structure.
452 typedef struct mac_info
{
454 /* Put pointer info which indictes which RxD has to be replenished
457 rx_curr_put_info_t rx_curr_put_info
[MAX_RX_RINGS
];
459 /* Get pointer info which indictes which is the last RxD that was
460 * processed by the driver.
462 rx_curr_get_info_t rx_curr_get_info
[MAX_RX_RINGS
];
465 u16 mc_pause_threshold_q0q3
;
466 u16 mc_pause_threshold_q4q7
;
469 /* logical pointer of start of each Tx FIFO */
470 TxFIFO_element_t __iomem
*tx_FIFO_start
[MAX_TX_FIFOS
];
472 /* Current offset within tx_FIFO_start, where driver would write new Tx frame*/
473 tx_curr_put_info_t tx_curr_put_info
[MAX_TX_FIFOS
];
474 tx_curr_get_info_t tx_curr_get_info
[MAX_TX_FIFOS
];
476 void *stats_mem
; /* orignal pointer to allocated mem */
477 dma_addr_t stats_mem_phy
; /* Physical address of the stat block */
479 StatInfo_t
*stats_info
; /* Logical address of the stat block */
482 /* structure representing the user defined MAC addresses */
488 /* Structure that holds the Phy and virt addresses of the Blocks */
489 typedef struct rx_block_info
{
490 RxD_t
*block_virt_addr
;
491 dma_addr_t block_dma_addr
;
494 /* Default Tunable parameters of the NIC. */
495 #define DEFAULT_FIFO_LEN 4096
496 #define SMALL_RXD_CNT 30 * (MAX_RXDS_PER_BLOCK+1)
497 #define LARGE_RXD_CNT 100 * (MAX_RXDS_PER_BLOCK+1)
498 #define SMALL_BLK_CNT 30
499 #define LARGE_BLK_CNT 100
501 /* Structure representing one instance of the NIC */
502 typedef struct s2io_nic
{
503 #define MAX_MAC_SUPPORTED 16
504 #define MAX_SUPPORTED_MULTICASTS MAX_MAC_SUPPORTED
506 macaddr_t def_mac_addr
[MAX_MAC_SUPPORTED
];
507 macaddr_t pre_mac_addr
[MAX_MAC_SUPPORTED
];
509 struct net_device_stats stats
;
512 struct config_param config
;
513 mac_info_t mac_control
;
515 int device_close_flag
;
516 int device_enabled_once
;
519 struct tasklet_struct task
;
520 volatile unsigned long tasklet_status
;
521 struct timer_list timer
;
522 struct net_device
*dev
;
523 struct pci_dev
*pdev
;
537 atomic_t rx_bufs_left
[MAX_RX_RINGS
];
540 #ifndef CONFIG_S2IO_NAPI
547 #define MAX_ADDRS_SUPPORTED 64
550 usr_addr_t usr_addrs
[MAX_ADDRS_SUPPORTED
];
561 #ifndef CONFIG_S2IO_NAPI
562 /* Index to the absolute position of the put pointer of Rx ring. */
563 int put_pos
[MAX_RX_RINGS
];
567 * Place holders for the virtual and physical addresses of
570 rx_block_info_t rx_blocks
[MAX_RX_RINGS
][MAX_RX_BLOCKS_PER_RING
];
571 int block_count
[MAX_RX_RINGS
];
572 int pkt_cnt
[MAX_RX_RINGS
];
574 /* Place holder of all the TX List's Phy and Virt addresses. */
575 list_info_hold_t
*list_info
[MAX_TX_FIFOS
];
577 /* Id timer, used to blink NIC to physically identify NIC. */
578 struct timer_list id_timer
;
580 /* Restart timer, used to restart NIC if the device is stuck and
581 * a schedule task that will set the correct Link state once the
582 * NIC's PHY has stabilized after a state change.
585 struct tq_struct rst_timer_task
;
586 struct tq_struct set_link_task
;
588 struct work_struct rst_timer_task
;
589 struct work_struct set_link_task
;
592 /* Flag that can be used to turn on or turn off the Rx checksum
597 /* after blink, the adapter must be restored with original
602 /* Last known link state. */
607 #ifdef CONFIG_2BUFF_MODE
608 /* Buffer Address store. */
609 buffAdd_t
**ba
[MAX_RX_RINGS
];
615 volatile unsigned long link_state
;
618 #define RESET_ERROR 1;
621 /* OS related system calls */
623 static inline u64
readq(void __iomem
*addr
)
625 u64 ret
= readl(addr
+ 4);
634 static inline void writeq(u64 val
, void __iomem
*addr
)
636 writel((u32
) (val
), addr
);
637 writel((u32
) (val
>> 32), (addr
+ 4));
640 /* In 32 bit modes, some registers have to be written in a
641 * particular order to expect correct hardware operation. The
642 * macro SPECIAL_REG_WRITE is used to perform such ordered
643 * writes. Defines UF (Upper First) and LF (Lower First) will
644 * be used to specify the required write order.
648 static inline void SPECIAL_REG_WRITE(u64 val
, void __iomem
*addr
, int order
)
651 writel((u32
) (val
), addr
);
652 writel((u32
) (val
>> 32), (addr
+ 4));
654 writel((u32
) (val
>> 32), (addr
+ 4));
655 writel((u32
) (val
), addr
);
659 #define SPECIAL_REG_WRITE(val, addr, dummy) writeq(val, addr)
662 /* Interrupt related values of Xena */
664 #define ENABLE_INTRS 1
665 #define DISABLE_INTRS 2
667 /* Highest level interrupt blocks */
668 #define TX_PIC_INTR (0x0001<<0)
669 #define TX_DMA_INTR (0x0001<<1)
670 #define TX_MAC_INTR (0x0001<<2)
671 #define TX_XGXS_INTR (0x0001<<3)
672 #define TX_TRAFFIC_INTR (0x0001<<4)
673 #define RX_PIC_INTR (0x0001<<5)
674 #define RX_DMA_INTR (0x0001<<6)
675 #define RX_MAC_INTR (0x0001<<7)
676 #define RX_XGXS_INTR (0x0001<<8)
677 #define RX_TRAFFIC_INTR (0x0001<<9)
678 #define MC_INTR (0x0001<<10)
679 #define ENA_ALL_INTRS ( TX_PIC_INTR | \
691 /* Interrupt masks for the general interrupt mask register */
692 #define DISABLE_ALL_INTRS 0xFFFFFFFFFFFFFFFFULL
694 #define TXPIC_INT_M BIT(0)
695 #define TXDMA_INT_M BIT(1)
696 #define TXMAC_INT_M BIT(2)
697 #define TXXGXS_INT_M BIT(3)
698 #define TXTRAFFIC_INT_M BIT(8)
699 #define PIC_RX_INT_M BIT(32)
700 #define RXDMA_INT_M BIT(33)
701 #define RXMAC_INT_M BIT(34)
702 #define MC_INT_M BIT(35)
703 #define RXXGXS_INT_M BIT(36)
704 #define RXTRAFFIC_INT_M BIT(40)
706 /* PIC level Interrupts TODO*/
708 /* DMA level Inressupts */
709 #define TXDMA_PFC_INT_M BIT(0)
710 #define TXDMA_PCC_INT_M BIT(2)
712 /* PFC block interrupts */
713 #define PFC_MISC_ERR_1 BIT(0) /* Interrupt to indicate FIFO full */
715 /* PCC block interrupts. */
716 #define PCC_FB_ECC_ERR vBIT(0xff, 16, 8) /* Interrupt to indicate
720 * Prototype declaration.
722 static int __devinit
s2io_init_nic(struct pci_dev
*pdev
,
723 const struct pci_device_id
*pre
);
724 static void __devexit
s2io_rem_nic(struct pci_dev
*pdev
);
725 static int init_shared_mem(struct s2io_nic
*sp
);
726 static void free_shared_mem(struct s2io_nic
*sp
);
727 static int init_nic(struct s2io_nic
*nic
);
728 #ifndef CONFIG_S2IO_NAPI
729 static void rx_intr_handler(struct s2io_nic
*sp
);
731 static void tx_intr_handler(struct s2io_nic
*sp
);
732 static void alarm_intr_handler(struct s2io_nic
*sp
);
734 static int s2io_starter(void);
735 static void s2io_closer(void);
736 static void s2io_tx_watchdog(struct net_device
*dev
);
737 static void s2io_tasklet(unsigned long dev_addr
);
738 static void s2io_set_multicast(struct net_device
*dev
);
739 #ifndef CONFIG_2BUFF_MODE
740 static int rx_osm_handler(nic_t
* sp
, u16 len
, RxD_t
* rxdp
, int ring_no
);
742 static int rx_osm_handler(nic_t
* sp
, RxD_t
* rxdp
, int ring_no
,
745 static void s2io_link(nic_t
* sp
, int link
);
746 static void s2io_reset(nic_t
* sp
);
747 #ifdef CONFIG_S2IO_NAPI
748 static int s2io_poll(struct net_device
*dev
, int *budget
);
750 static void s2io_init_pci(nic_t
* sp
);
751 static int s2io_set_mac_addr(struct net_device
*dev
, u8
* addr
);
752 static irqreturn_t
s2io_isr(int irq
, void *dev_id
, struct pt_regs
*regs
);
753 static int verify_xena_quiescence(u64 val64
, int flag
);
754 static struct ethtool_ops netdev_ethtool_ops
;
755 static void s2io_set_link(unsigned long data
);
756 static int s2io_set_swapper(nic_t
* sp
);
757 static void s2io_card_down(nic_t
* nic
);
758 static int s2io_card_up(nic_t
* nic
);