blob: 7f6b0e611e3ba203e1c3f5c36f48125c3d9dafee [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/************************************************************************
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -07002 * s2io.c: A Linux PCI-X Ethernet driver for Neterion 10GbE Server NIC
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08003 * Copyright(c) 2002-2007 Neterion Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
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 *
13 * Credits:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -070014 * Jeff Garzik : For pointing out the improper error condition
15 * check in the s2io_xmit routine and also some
16 * issues in the Tx watch dog function. Also for
17 * patiently answering all those innumerable
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * questions regaring the 2.6 porting issues.
19 * Stephen Hemminger : Providing proper 2.6 porting mechanism for some
20 * macros available only in 2.6 Kernel.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -070021 * Francois Romieu : For pointing out all code part that were
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * deprecated and also styling related comments.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -070023 * Grant Grundler : For helping me get rid of some Architecture
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * dependent code.
25 * Christopher Hellwig : Some more 2.6 specific issues in the driver.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -070026 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * The module loadable parameters that are supported by the driver and a brief
28 * explaination of all the variables.
Ananda Raju9dc737a2006-04-21 19:05:41 -040029 *
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -070030 * rx_ring_num : This can be used to program the number of receive rings used
31 * in the driver.
Ananda Raju9dc737a2006-04-21 19:05:41 -040032 * rx_ring_sz: This defines the number of receive blocks each ring can have.
33 * This is also an array of size 8.
Ananda Rajuda6971d2005-10-31 16:55:31 -050034 * rx_ring_mode: This defines the operation mode of all 8 rings. The valid
Veena Parat6d517a22007-07-23 02:20:51 -040035 * values are 1, 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * tx_fifo_num: This defines the number of Tx FIFOs thats used int the driver.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -070037 * tx_fifo_len: This too is an array of 8. Each element defines the number of
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * Tx descriptors that can be associated with each corresponding FIFO.
Ananda Raju9dc737a2006-04-21 19:05:41 -040039 * intr_type: This defines the type of interrupt. The values can be 0(INTA),
Sivakumar Subramani8abc4d52007-09-15 13:11:34 -070040 * 2(MSI_X). Default value is '2(MSI_X)'
Ananda Raju9dc737a2006-04-21 19:05:41 -040041 * lro: Specifies whether to enable Large Receive Offload (LRO) or not.
42 * Possible values '1' for enable '0' for disable. Default is '0'
43 * lro_max_pkts: This parameter defines maximum number of packets can be
44 * aggregated as a single large packet
Sivakumar Subramani926930b2007-02-24 01:59:39 -050045 * napi: This parameter used to enable/disable NAPI (polling Rx)
46 * Possible values '1' for enable and '0' for disable. Default is '1'
47 * ufo: This parameter used to enable/disable UDP Fragmentation Offload(UFO)
48 * Possible values '1' for enable and '0' for disable. Default is '0'
49 * vlan_tag_strip: This can be used to enable or disable vlan stripping.
50 * Possible values '1' for enable , '0' for disable.
51 * Default is '2' - which means disable in promisc mode
52 * and enable in non-promiscuous mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 ************************************************************************/
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/module.h>
56#include <linux/types.h>
57#include <linux/errno.h>
58#include <linux/ioport.h>
59#include <linux/pci.h>
Domen Puncer1e7f0bd2005-06-26 18:22:14 -040060#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/kernel.h>
62#include <linux/netdevice.h>
63#include <linux/etherdevice.h>
64#include <linux/skbuff.h>
65#include <linux/init.h>
66#include <linux/delay.h>
67#include <linux/stddef.h>
68#include <linux/ioctl.h>
69#include <linux/timex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/workqueue.h>
raghavendra.koushik@neterion.combe3a6b02005-08-03 12:35:55 -070072#include <linux/if_vlan.h>
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -050073#include <linux/ip.h>
74#include <linux/tcp.h>
75#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <asm/system.h>
78#include <asm/uaccess.h>
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -070079#include <asm/io.h>
Andrew Mortonfe931392006-02-03 01:45:12 -080080#include <asm/div64.h>
Andrew Morton330ce0d2006-08-14 23:00:14 -070081#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/* local include */
84#include "s2io.h"
85#include "s2io-regs.h"
86
Sivakumar Subramani596c5c92007-09-15 14:24:03 -070087#define DRV_VERSION "2.0.26.2"
John Linville6c1792f2005-10-04 07:51:45 -040088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* S2io Driver name & version. */
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -070090static char s2io_driver_name[] = "Neterion";
John Linville6c1792f2005-10-04 07:51:45 -040091static char s2io_driver_version[] = DRV_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Veena Parat6d517a22007-07-23 02:20:51 -040093static int rxd_size[2] = {32,48};
94static int rxd_count[2] = {127,85};
Ananda Rajuda6971d2005-10-31 16:55:31 -050095
Ralf Baechle1ee6dd72007-01-31 14:09:29 -050096static inline int RXD_IS_UP2DT(struct RxD_t *rxdp)
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -070097{
98 int ret;
99
100 ret = ((!(rxdp->Control_1 & RXD_OWN_XENA)) &&
101 (GET_RXD_MARKER(rxdp->Control_2) != THE_RXD_MARK));
102
103 return ret;
104}
105
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * Cards with following subsystem_id have a link state indication
108 * problem, 600B, 600C, 600D, 640B, 640C and 640D.
109 * macro below identifies these cards given the subsystem_id.
110 */
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700111#define CARDS_WITH_FAULTY_LINK_INDICATORS(dev_type, subid) \
112 (dev_type == XFRAME_I_DEVICE) ? \
113 ((((subid >= 0x600B) && (subid <= 0x600D)) || \
114 ((subid >= 0x640B) && (subid <= 0x640D))) ? 1 : 0) : 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116#define LINK_IS_UP(val64) (!(val64 & (ADAPTER_STATUS_RMAC_REMOTE_FAULT | \
117 ADAPTER_STATUS_RMAC_LOCAL_FAULT)))
118#define TASKLET_IN_USE test_and_set_bit(0, (&sp->tasklet_status))
119#define PANIC 1
120#define LOW 2
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500121static inline int rx_buffer_level(struct s2io_nic * sp, int rxb_size, int ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500123 struct mac_info *mac_control;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700124
125 mac_control = &sp->mac_control;
Ananda Raju863c11a2006-04-21 19:03:13 -0400126 if (rxb_size <= rxd_count[sp->rxd_mode])
127 return PANIC;
128 else if ((mac_control->rings[ring].pkt_cnt - rxb_size) > 16)
129 return LOW;
130 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Sivakumar Subramani92b84432007-09-06 06:51:14 -0400133static inline int is_s2io_card_up(const struct s2io_nic * sp)
134{
135 return test_bit(__S2IO_STATE_CARD_UP, &sp->state);
136}
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/* Ethtool related variables and Macros. */
139static char s2io_gstrings[][ETH_GSTRING_LEN] = {
140 "Register test\t(offline)",
141 "Eeprom test\t(offline)",
142 "Link test\t(online)",
143 "RLDRAM test\t(offline)",
144 "BIST Test\t(offline)"
145};
146
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -0500147static char ethtool_xena_stats_keys[][ETH_GSTRING_LEN] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 {"tmac_frms"},
149 {"tmac_data_octets"},
150 {"tmac_drop_frms"},
151 {"tmac_mcst_frms"},
152 {"tmac_bcst_frms"},
153 {"tmac_pause_ctrl_frms"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400154 {"tmac_ttl_octets"},
155 {"tmac_ucst_frms"},
156 {"tmac_nucst_frms"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 {"tmac_any_err_frms"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400158 {"tmac_ttl_less_fb_octets"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 {"tmac_vld_ip_octets"},
160 {"tmac_vld_ip"},
161 {"tmac_drop_ip"},
162 {"tmac_icmp"},
163 {"tmac_rst_tcp"},
164 {"tmac_tcp"},
165 {"tmac_udp"},
166 {"rmac_vld_frms"},
167 {"rmac_data_octets"},
168 {"rmac_fcs_err_frms"},
169 {"rmac_drop_frms"},
170 {"rmac_vld_mcst_frms"},
171 {"rmac_vld_bcst_frms"},
172 {"rmac_in_rng_len_err_frms"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400173 {"rmac_out_rng_len_err_frms"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 {"rmac_long_frms"},
175 {"rmac_pause_ctrl_frms"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400176 {"rmac_unsup_ctrl_frms"},
177 {"rmac_ttl_octets"},
178 {"rmac_accepted_ucst_frms"},
179 {"rmac_accepted_nucst_frms"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 {"rmac_discarded_frms"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400181 {"rmac_drop_events"},
182 {"rmac_ttl_less_fb_octets"},
183 {"rmac_ttl_frms"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 {"rmac_usized_frms"},
185 {"rmac_osized_frms"},
186 {"rmac_frag_frms"},
187 {"rmac_jabber_frms"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400188 {"rmac_ttl_64_frms"},
189 {"rmac_ttl_65_127_frms"},
190 {"rmac_ttl_128_255_frms"},
191 {"rmac_ttl_256_511_frms"},
192 {"rmac_ttl_512_1023_frms"},
193 {"rmac_ttl_1024_1518_frms"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 {"rmac_ip"},
195 {"rmac_ip_octets"},
196 {"rmac_hdr_err_ip"},
197 {"rmac_drop_ip"},
198 {"rmac_icmp"},
199 {"rmac_tcp"},
200 {"rmac_udp"},
201 {"rmac_err_drp_udp"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400202 {"rmac_xgmii_err_sym"},
203 {"rmac_frms_q0"},
204 {"rmac_frms_q1"},
205 {"rmac_frms_q2"},
206 {"rmac_frms_q3"},
207 {"rmac_frms_q4"},
208 {"rmac_frms_q5"},
209 {"rmac_frms_q6"},
210 {"rmac_frms_q7"},
211 {"rmac_full_q0"},
212 {"rmac_full_q1"},
213 {"rmac_full_q2"},
214 {"rmac_full_q3"},
215 {"rmac_full_q4"},
216 {"rmac_full_q5"},
217 {"rmac_full_q6"},
218 {"rmac_full_q7"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 {"rmac_pause_cnt"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400220 {"rmac_xgmii_data_err_cnt"},
221 {"rmac_xgmii_ctrl_err_cnt"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 {"rmac_accepted_ip"},
223 {"rmac_err_tcp"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400224 {"rd_req_cnt"},
225 {"new_rd_req_cnt"},
226 {"new_rd_req_rtry_cnt"},
227 {"rd_rtry_cnt"},
228 {"wr_rtry_rd_ack_cnt"},
229 {"wr_req_cnt"},
230 {"new_wr_req_cnt"},
231 {"new_wr_req_rtry_cnt"},
232 {"wr_rtry_cnt"},
233 {"wr_disc_cnt"},
234 {"rd_rtry_wr_ack_cnt"},
235 {"txp_wr_cnt"},
236 {"txd_rd_cnt"},
237 {"txd_wr_cnt"},
238 {"rxd_rd_cnt"},
239 {"rxd_wr_cnt"},
240 {"txf_rd_cnt"},
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -0500241 {"rxf_wr_cnt"}
242};
243
244static char ethtool_enhanced_stats_keys[][ETH_GSTRING_LEN] = {
Ananda Rajubd1034f2006-04-21 19:20:22 -0400245 {"rmac_ttl_1519_4095_frms"},
246 {"rmac_ttl_4096_8191_frms"},
247 {"rmac_ttl_8192_max_frms"},
248 {"rmac_ttl_gt_max_frms"},
249 {"rmac_osized_alt_frms"},
250 {"rmac_jabber_alt_frms"},
251 {"rmac_gt_max_alt_frms"},
252 {"rmac_vlan_frms"},
253 {"rmac_len_discard"},
254 {"rmac_fcs_discard"},
255 {"rmac_pf_discard"},
256 {"rmac_da_discard"},
257 {"rmac_red_discard"},
258 {"rmac_rts_discard"},
259 {"rmac_ingm_full_discard"},
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -0500260 {"link_fault_cnt"}
261};
262
263static char ethtool_driver_stats_keys[][ETH_GSTRING_LEN] = {
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -0700264 {"\n DRIVER STATISTICS"},
265 {"single_bit_ecc_errs"},
266 {"double_bit_ecc_errs"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400267 {"parity_err_cnt"},
268 {"serious_err_cnt"},
269 {"soft_reset_cnt"},
270 {"fifo_full_cnt"},
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -0700271 {"ring_0_full_cnt"},
272 {"ring_1_full_cnt"},
273 {"ring_2_full_cnt"},
274 {"ring_3_full_cnt"},
275 {"ring_4_full_cnt"},
276 {"ring_5_full_cnt"},
277 {"ring_6_full_cnt"},
278 {"ring_7_full_cnt"},
Ananda Rajubd1034f2006-04-21 19:20:22 -0400279 ("alarm_transceiver_temp_high"),
280 ("alarm_transceiver_temp_low"),
281 ("alarm_laser_bias_current_high"),
282 ("alarm_laser_bias_current_low"),
283 ("alarm_laser_output_power_high"),
284 ("alarm_laser_output_power_low"),
285 ("warn_transceiver_temp_high"),
286 ("warn_transceiver_temp_low"),
287 ("warn_laser_bias_current_high"),
288 ("warn_laser_bias_current_low"),
289 ("warn_laser_output_power_high"),
290 ("warn_laser_output_power_low"),
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -0500291 ("lro_aggregated_pkts"),
292 ("lro_flush_both_count"),
293 ("lro_out_of_sequence_pkts"),
294 ("lro_flush_due_to_max_pkts"),
295 ("lro_avg_aggr_pkts"),
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -0400296 ("mem_alloc_fail_cnt"),
Veena Parat491abf22007-07-23 02:37:14 -0400297 ("pci_map_fail_cnt"),
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400298 ("watchdog_timer_cnt"),
299 ("mem_allocated"),
300 ("mem_freed"),
301 ("link_up_cnt"),
302 ("link_down_cnt"),
303 ("link_up_time"),
304 ("link_down_time"),
305 ("tx_tcode_buf_abort_cnt"),
306 ("tx_tcode_desc_abort_cnt"),
307 ("tx_tcode_parity_err_cnt"),
308 ("tx_tcode_link_loss_cnt"),
309 ("tx_tcode_list_proc_err_cnt"),
310 ("rx_tcode_parity_err_cnt"),
311 ("rx_tcode_abort_cnt"),
312 ("rx_tcode_parity_abort_cnt"),
313 ("rx_tcode_rda_fail_cnt"),
314 ("rx_tcode_unkn_prot_cnt"),
315 ("rx_tcode_fcs_err_cnt"),
316 ("rx_tcode_buf_size_err_cnt"),
317 ("rx_tcode_rxd_corrupt_cnt"),
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -0700318 ("rx_tcode_unkn_err_cnt"),
319 {"tda_err_cnt"},
320 {"pfc_err_cnt"},
321 {"pcc_err_cnt"},
322 {"tti_err_cnt"},
323 {"tpa_err_cnt"},
324 {"sm_err_cnt"},
325 {"lso_err_cnt"},
326 {"mac_tmac_err_cnt"},
327 {"mac_rmac_err_cnt"},
328 {"xgxs_txgxs_err_cnt"},
329 {"xgxs_rxgxs_err_cnt"},
330 {"rc_err_cnt"},
331 {"prc_pcix_err_cnt"},
332 {"rpa_err_cnt"},
333 {"rda_err_cnt"},
334 {"rti_err_cnt"},
335 {"mc_err_cnt"}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336};
337
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -0500338#define S2IO_XENA_STAT_LEN sizeof(ethtool_xena_stats_keys)/ ETH_GSTRING_LEN
339#define S2IO_ENHANCED_STAT_LEN sizeof(ethtool_enhanced_stats_keys)/ \
340 ETH_GSTRING_LEN
341#define S2IO_DRIVER_STAT_LEN sizeof(ethtool_driver_stats_keys)/ ETH_GSTRING_LEN
342
343#define XFRAME_I_STAT_LEN (S2IO_XENA_STAT_LEN + S2IO_DRIVER_STAT_LEN )
344#define XFRAME_II_STAT_LEN (XFRAME_I_STAT_LEN + S2IO_ENHANCED_STAT_LEN )
345
346#define XFRAME_I_STAT_STRINGS_LEN ( XFRAME_I_STAT_LEN * ETH_GSTRING_LEN )
347#define XFRAME_II_STAT_STRINGS_LEN ( XFRAME_II_STAT_LEN * ETH_GSTRING_LEN )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349#define S2IO_TEST_LEN sizeof(s2io_gstrings) / ETH_GSTRING_LEN
350#define S2IO_STRINGS_LEN S2IO_TEST_LEN * ETH_GSTRING_LEN
351
raghavendra.koushik@neterion.com25fff882005-08-03 12:34:11 -0700352#define S2IO_TIMER_CONF(timer, handle, arg, exp) \
353 init_timer(&timer); \
354 timer.function = handle; \
355 timer.data = (unsigned long) arg; \
356 mod_timer(&timer, (jiffies + exp)) \
357
raghavendra.koushik@neterion.combe3a6b02005-08-03 12:35:55 -0700358/* Add the vlan */
359static void s2io_vlan_rx_register(struct net_device *dev,
360 struct vlan_group *grp)
361{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500362 struct s2io_nic *nic = dev->priv;
raghavendra.koushik@neterion.combe3a6b02005-08-03 12:35:55 -0700363 unsigned long flags;
364
365 spin_lock_irqsave(&nic->tx_lock, flags);
366 nic->vlgrp = grp;
367 spin_unlock_irqrestore(&nic->tx_lock, flags);
368}
369
Sivakumar Subramani926930b2007-02-24 01:59:39 -0500370/* A flag indicating whether 'RX_PA_CFG_STRIP_VLAN_TAG' bit is set or not */
Adrian Bunk7b490342007-03-05 02:49:25 +0100371static int vlan_strip_flag;
Sivakumar Subramani926930b2007-02-24 01:59:39 -0500372
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700373/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * Constants to be programmed into the Xena's registers, to configure
375 * the XAUI.
376 */
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378#define END_SIGN 0x0
Arjan van de Venf71e1302006-03-03 21:33:57 -0500379static const u64 herc_act_dtx_cfg[] = {
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700380 /* Set address */
ravinandan.arakali@neterion.come960fc52005-08-12 10:15:59 -0700381 0x8000051536750000ULL, 0x80000515367500E0ULL,
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700382 /* Write data */
ravinandan.arakali@neterion.come960fc52005-08-12 10:15:59 -0700383 0x8000051536750004ULL, 0x80000515367500E4ULL,
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700384 /* Set address */
385 0x80010515003F0000ULL, 0x80010515003F00E0ULL,
386 /* Write data */
387 0x80010515003F0004ULL, 0x80010515003F00E4ULL,
388 /* Set address */
ravinandan.arakali@neterion.come960fc52005-08-12 10:15:59 -0700389 0x801205150D440000ULL, 0x801205150D4400E0ULL,
390 /* Write data */
391 0x801205150D440004ULL, 0x801205150D4400E4ULL,
392 /* Set address */
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700393 0x80020515F2100000ULL, 0x80020515F21000E0ULL,
394 /* Write data */
395 0x80020515F2100004ULL, 0x80020515F21000E4ULL,
396 /* Done */
397 END_SIGN
398};
399
Arjan van de Venf71e1302006-03-03 21:33:57 -0500400static const u64 xena_dtx_cfg[] = {
Ananda Rajuc92ca042006-04-21 19:18:03 -0400401 /* Set address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 0x8000051500000000ULL, 0x80000515000000E0ULL,
Ananda Rajuc92ca042006-04-21 19:18:03 -0400403 /* Write data */
404 0x80000515D9350004ULL, 0x80000515D93500E4ULL,
405 /* Set address */
406 0x8001051500000000ULL, 0x80010515000000E0ULL,
407 /* Write data */
408 0x80010515001E0004ULL, 0x80010515001E00E4ULL,
409 /* Set address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 0x8002051500000000ULL, 0x80020515000000E0ULL,
Ananda Rajuc92ca042006-04-21 19:18:03 -0400411 /* Write data */
412 0x80020515F2100004ULL, 0x80020515F21000E4ULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 END_SIGN
414};
415
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700416/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * Constants for Fixing the MacAddress problem seen mostly on
418 * Alpha machines.
419 */
Arjan van de Venf71e1302006-03-03 21:33:57 -0500420static const u64 fix_mac[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 0x0060000000000000ULL, 0x0060600000000000ULL,
422 0x0040600000000000ULL, 0x0000600000000000ULL,
423 0x0020600000000000ULL, 0x0060600000000000ULL,
424 0x0020600000000000ULL, 0x0060600000000000ULL,
425 0x0020600000000000ULL, 0x0060600000000000ULL,
426 0x0020600000000000ULL, 0x0060600000000000ULL,
427 0x0020600000000000ULL, 0x0060600000000000ULL,
428 0x0020600000000000ULL, 0x0060600000000000ULL,
429 0x0020600000000000ULL, 0x0060600000000000ULL,
430 0x0020600000000000ULL, 0x0060600000000000ULL,
431 0x0020600000000000ULL, 0x0060600000000000ULL,
432 0x0020600000000000ULL, 0x0060600000000000ULL,
433 0x0020600000000000ULL, 0x0000600000000000ULL,
434 0x0040600000000000ULL, 0x0060600000000000ULL,
435 END_SIGN
436};
437
Ananda Rajub41477f2006-07-24 19:52:49 -0400438MODULE_LICENSE("GPL");
439MODULE_VERSION(DRV_VERSION);
440
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442/* Module Loadable parameters. */
Ananda Rajub41477f2006-07-24 19:52:49 -0400443S2IO_PARM_INT(tx_fifo_num, 1);
444S2IO_PARM_INT(rx_ring_num, 1);
445
446
447S2IO_PARM_INT(rx_ring_mode, 1);
448S2IO_PARM_INT(use_continuous_tx_intrs, 1);
449S2IO_PARM_INT(rmac_pause_time, 0x100);
450S2IO_PARM_INT(mc_pause_threshold_q0q3, 187);
451S2IO_PARM_INT(mc_pause_threshold_q4q7, 187);
452S2IO_PARM_INT(shared_splits, 0);
453S2IO_PARM_INT(tmac_util_period, 5);
454S2IO_PARM_INT(rmac_util_period, 5);
455S2IO_PARM_INT(bimodal, 0);
456S2IO_PARM_INT(l3l4hdr_size, 128);
457/* Frequency of Rx desc syncs expressed as power of 2 */
458S2IO_PARM_INT(rxsync_frequency, 3);
Veena Parateccb8622007-07-23 02:23:54 -0400459/* Interrupt type. Values can be 0(INTA), 2(MSI_X) */
Sivakumar Subramani8abc4d52007-09-15 13:11:34 -0700460S2IO_PARM_INT(intr_type, 2);
Ananda Rajub41477f2006-07-24 19:52:49 -0400461/* Large receive offload feature */
462S2IO_PARM_INT(lro, 0);
463/* Max pkts to be aggregated by LRO at one time. If not specified,
464 * aggregation happens until we hit max IP pkt size(64K)
465 */
466S2IO_PARM_INT(lro_max_pkts, 0xFFFF);
Ananda Rajub41477f2006-07-24 19:52:49 -0400467S2IO_PARM_INT(indicate_max_pkts, 0);
Sivakumar Subramanidb874e62007-01-31 13:28:08 -0500468
469S2IO_PARM_INT(napi, 1);
470S2IO_PARM_INT(ufo, 0);
Sivakumar Subramani926930b2007-02-24 01:59:39 -0500471S2IO_PARM_INT(vlan_tag_strip, NO_STRIP_IN_PROMISC);
Ananda Rajub41477f2006-07-24 19:52:49 -0400472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473static unsigned int tx_fifo_len[MAX_TX_FIFOS] =
Ananda Raju9dc737a2006-04-21 19:05:41 -0400474 {DEFAULT_FIFO_0_LEN, [1 ...(MAX_TX_FIFOS - 1)] = DEFAULT_FIFO_1_7_LEN};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475static unsigned int rx_ring_sz[MAX_RX_RINGS] =
Ananda Raju9dc737a2006-04-21 19:05:41 -0400476 {[0 ...(MAX_RX_RINGS - 1)] = SMALL_BLK_CNT};
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700477static unsigned int rts_frm_len[MAX_RX_RINGS] =
478 {[0 ...(MAX_RX_RINGS - 1)] = 0 };
Ananda Rajub41477f2006-07-24 19:52:49 -0400479
480module_param_array(tx_fifo_len, uint, NULL, 0);
481module_param_array(rx_ring_sz, uint, NULL, 0);
482module_param_array(rts_frm_len, uint, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700484/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * S2IO device table.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700486 * This table lists all the devices that this driver supports.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 */
488static struct pci_device_id s2io_tbl[] __devinitdata = {
489 {PCI_VENDOR_ID_S2IO, PCI_DEVICE_ID_S2IO_WIN,
490 PCI_ANY_ID, PCI_ANY_ID},
491 {PCI_VENDOR_ID_S2IO, PCI_DEVICE_ID_S2IO_UNI,
492 PCI_ANY_ID, PCI_ANY_ID},
493 {PCI_VENDOR_ID_S2IO, PCI_DEVICE_ID_HERC_WIN,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700494 PCI_ANY_ID, PCI_ANY_ID},
495 {PCI_VENDOR_ID_S2IO, PCI_DEVICE_ID_HERC_UNI,
496 PCI_ANY_ID, PCI_ANY_ID},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 {0,}
498};
499
500MODULE_DEVICE_TABLE(pci, s2io_tbl);
501
Linas Vepstasd796fdb2007-05-14 18:37:30 -0500502static struct pci_error_handlers s2io_err_handler = {
503 .error_detected = s2io_io_error_detected,
504 .slot_reset = s2io_io_slot_reset,
505 .resume = s2io_io_resume,
506};
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508static struct pci_driver s2io_driver = {
509 .name = "S2IO",
510 .id_table = s2io_tbl,
511 .probe = s2io_init_nic,
512 .remove = __devexit_p(s2io_rem_nic),
Linas Vepstasd796fdb2007-05-14 18:37:30 -0500513 .err_handler = &s2io_err_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514};
515
516/* A simplifier macro used both by init and free shared_mem Fns(). */
517#define TXD_MEM_PAGE_CNT(len, per_each) ((len+per_each - 1) / per_each)
518
519/**
520 * init_shared_mem - Allocation and Initialization of Memory
521 * @nic: Device private variable.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700522 * Description: The function allocates all the memory areas shared
523 * between the NIC and the driver. This includes Tx descriptors,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 * Rx descriptors and the statistics block.
525 */
526
527static int init_shared_mem(struct s2io_nic *nic)
528{
529 u32 size;
530 void *tmp_v_addr, *tmp_v_addr_next;
531 dma_addr_t tmp_p_addr, tmp_p_addr_next;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500532 struct RxD_block *pre_rxd_blk = NULL;
Sivakumar Subramani372cc592007-01-31 13:32:57 -0500533 int i, j, blk_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int lst_size, lst_per_page;
535 struct net_device *dev = nic->dev;
viro@zenIV.linux.org.uk8ae418c2005-09-02 20:15:29 +0100536 unsigned long tmp;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500537 struct buffAdd *ba;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500539 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 struct config_param *config;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400541 unsigned long long mem_allocated = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 mac_control = &nic->mac_control;
544 config = &nic->config;
545
546
547 /* Allocation and initialization of TXDLs in FIOFs */
548 size = 0;
549 for (i = 0; i < config->tx_fifo_num; i++) {
550 size += config->tx_cfg[i].fifo_len;
551 }
552 if (size > MAX_AVAILABLE_TXDS) {
Ananda Rajub41477f2006-07-24 19:52:49 -0400553 DBG_PRINT(ERR_DBG, "s2io: Requested TxDs too high, ");
raghavendra.koushik@neterion.com0b1f7eb2005-08-03 12:39:56 -0700554 DBG_PRINT(ERR_DBG, "Requested: %d, max supported: 8192\n", size);
Ananda Rajub41477f2006-07-24 19:52:49 -0400555 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500558 lst_size = (sizeof(struct TxD) * config->max_txds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 lst_per_page = PAGE_SIZE / lst_size;
560
561 for (i = 0; i < config->tx_fifo_num; i++) {
562 int fifo_len = config->tx_cfg[i].fifo_len;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500563 int list_holder_size = fifo_len * sizeof(struct list_info_hold);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700564 mac_control->fifos[i].list_info = kmalloc(list_holder_size,
565 GFP_KERNEL);
566 if (!mac_control->fifos[i].list_info) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -0800567 DBG_PRINT(INFO_DBG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 "Malloc failed for list_info\n");
569 return -ENOMEM;
570 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400571 mem_allocated += list_holder_size;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700572 memset(mac_control->fifos[i].list_info, 0, list_holder_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574 for (i = 0; i < config->tx_fifo_num; i++) {
575 int page_num = TXD_MEM_PAGE_CNT(config->tx_cfg[i].fifo_len,
576 lst_per_page);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700577 mac_control->fifos[i].tx_curr_put_info.offset = 0;
578 mac_control->fifos[i].tx_curr_put_info.fifo_len =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 config->tx_cfg[i].fifo_len - 1;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700580 mac_control->fifos[i].tx_curr_get_info.offset = 0;
581 mac_control->fifos[i].tx_curr_get_info.fifo_len =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 config->tx_cfg[i].fifo_len - 1;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700583 mac_control->fifos[i].fifo_no = i;
584 mac_control->fifos[i].nic = nic;
Ananda Rajufed5ecc2005-11-14 15:25:08 -0500585 mac_control->fifos[i].max_txds = MAX_SKB_FRAGS + 2;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 for (j = 0; j < page_num; j++) {
588 int k = 0;
589 dma_addr_t tmp_p;
590 void *tmp_v;
591 tmp_v = pci_alloc_consistent(nic->pdev,
592 PAGE_SIZE, &tmp_p);
593 if (!tmp_v) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -0800594 DBG_PRINT(INFO_DBG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 "pci_alloc_consistent ");
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -0800596 DBG_PRINT(INFO_DBG, "failed for TxDL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return -ENOMEM;
598 }
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700599 /* If we got a zero DMA address(can happen on
600 * certain platforms like PPC), reallocate.
601 * Store virtual address of page we don't want,
602 * to be freed later.
603 */
604 if (!tmp_p) {
605 mac_control->zerodma_virt_addr = tmp_v;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400606 DBG_PRINT(INIT_DBG,
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700607 "%s: Zero DMA address for TxDL. ", dev->name);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400608 DBG_PRINT(INIT_DBG,
Andrew Morton6b4d6172005-09-12 23:21:55 -0700609 "Virtual address %p\n", tmp_v);
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700610 tmp_v = pci_alloc_consistent(nic->pdev,
611 PAGE_SIZE, &tmp_p);
612 if (!tmp_v) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -0800613 DBG_PRINT(INFO_DBG,
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700614 "pci_alloc_consistent ");
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -0800615 DBG_PRINT(INFO_DBG, "failed for TxDL\n");
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700616 return -ENOMEM;
617 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400618 mem_allocated += PAGE_SIZE;
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 while (k < lst_per_page) {
621 int l = (j * lst_per_page) + k;
622 if (l == config->tx_cfg[i].fifo_len)
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700623 break;
624 mac_control->fifos[i].list_info[l].list_virt_addr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 tmp_v + (k * lst_size);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700626 mac_control->fifos[i].list_info[l].list_phy_addr =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 tmp_p + (k * lst_size);
628 k++;
629 }
630 }
631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Al Viro43842472007-01-23 12:25:08 +0000633 nic->ufo_in_band_v = kcalloc(size, sizeof(u64), GFP_KERNEL);
Ananda Rajufed5ecc2005-11-14 15:25:08 -0500634 if (!nic->ufo_in_band_v)
635 return -ENOMEM;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400636 mem_allocated += (size * sizeof(u64));
Ananda Rajufed5ecc2005-11-14 15:25:08 -0500637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /* Allocation and initialization of RXDs in Rings */
639 size = 0;
640 for (i = 0; i < config->rx_ring_num; i++) {
Ananda Rajuda6971d2005-10-31 16:55:31 -0500641 if (config->rx_cfg[i].num_rxd %
642 (rxd_count[nic->rxd_mode] + 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 DBG_PRINT(ERR_DBG, "%s: RxD count of ", dev->name);
644 DBG_PRINT(ERR_DBG, "Ring%d is not a multiple of ",
645 i);
646 DBG_PRINT(ERR_DBG, "RxDs per Block");
647 return FAILURE;
648 }
649 size += config->rx_cfg[i].num_rxd;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700650 mac_control->rings[i].block_count =
Ananda Rajuda6971d2005-10-31 16:55:31 -0500651 config->rx_cfg[i].num_rxd /
652 (rxd_count[nic->rxd_mode] + 1 );
653 mac_control->rings[i].pkt_cnt = config->rx_cfg[i].num_rxd -
654 mac_control->rings[i].block_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
Ananda Rajuda6971d2005-10-31 16:55:31 -0500656 if (nic->rxd_mode == RXD_MODE_1)
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500657 size = (size * (sizeof(struct RxD1)));
Ananda Rajuda6971d2005-10-31 16:55:31 -0500658 else
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500659 size = (size * (sizeof(struct RxD3)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 for (i = 0; i < config->rx_ring_num; i++) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700662 mac_control->rings[i].rx_curr_get_info.block_index = 0;
663 mac_control->rings[i].rx_curr_get_info.offset = 0;
664 mac_control->rings[i].rx_curr_get_info.ring_len =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 config->rx_cfg[i].num_rxd - 1;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700666 mac_control->rings[i].rx_curr_put_info.block_index = 0;
667 mac_control->rings[i].rx_curr_put_info.offset = 0;
668 mac_control->rings[i].rx_curr_put_info.ring_len =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 config->rx_cfg[i].num_rxd - 1;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700670 mac_control->rings[i].nic = nic;
671 mac_control->rings[i].ring_no = i;
672
Ananda Rajuda6971d2005-10-31 16:55:31 -0500673 blk_cnt = config->rx_cfg[i].num_rxd /
674 (rxd_count[nic->rxd_mode] + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /* Allocating all the Rx blocks */
676 for (j = 0; j < blk_cnt; j++) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500677 struct rx_block_info *rx_blocks;
Ananda Rajuda6971d2005-10-31 16:55:31 -0500678 int l;
679
680 rx_blocks = &mac_control->rings[i].rx_blocks[j];
681 size = SIZE_OF_BLOCK; //size is always page size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 tmp_v_addr = pci_alloc_consistent(nic->pdev, size,
683 &tmp_p_addr);
684 if (tmp_v_addr == NULL) {
685 /*
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700686 * In case of failure, free_shared_mem()
687 * is called, which should free any
688 * memory that was alloced till the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 * failure happened.
690 */
Ananda Rajuda6971d2005-10-31 16:55:31 -0500691 rx_blocks->block_virt_addr = tmp_v_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return -ENOMEM;
693 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400694 mem_allocated += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 memset(tmp_v_addr, 0, size);
Ananda Rajuda6971d2005-10-31 16:55:31 -0500696 rx_blocks->block_virt_addr = tmp_v_addr;
697 rx_blocks->block_dma_addr = tmp_p_addr;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500698 rx_blocks->rxds = kmalloc(sizeof(struct rxd_info)*
Ananda Rajuda6971d2005-10-31 16:55:31 -0500699 rxd_count[nic->rxd_mode],
700 GFP_KERNEL);
Sivakumar Subramani372cc592007-01-31 13:32:57 -0500701 if (!rx_blocks->rxds)
702 return -ENOMEM;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400703 mem_allocated +=
704 (sizeof(struct rxd_info)* rxd_count[nic->rxd_mode]);
Ananda Rajuda6971d2005-10-31 16:55:31 -0500705 for (l=0; l<rxd_count[nic->rxd_mode];l++) {
706 rx_blocks->rxds[l].virt_addr =
707 rx_blocks->block_virt_addr +
708 (rxd_size[nic->rxd_mode] * l);
709 rx_blocks->rxds[l].dma_addr =
710 rx_blocks->block_dma_addr +
711 (rxd_size[nic->rxd_mode] * l);
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714 /* Interlinking all Rx Blocks */
715 for (j = 0; j < blk_cnt; j++) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700716 tmp_v_addr =
717 mac_control->rings[i].rx_blocks[j].block_virt_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 tmp_v_addr_next =
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700719 mac_control->rings[i].rx_blocks[(j + 1) %
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 blk_cnt].block_virt_addr;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700721 tmp_p_addr =
722 mac_control->rings[i].rx_blocks[j].block_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 tmp_p_addr_next =
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700724 mac_control->rings[i].rx_blocks[(j + 1) %
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 blk_cnt].block_dma_addr;
726
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500727 pre_rxd_blk = (struct RxD_block *) tmp_v_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 pre_rxd_blk->reserved_2_pNext_RxD_block =
729 (unsigned long) tmp_v_addr_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 pre_rxd_blk->pNext_RxD_Blk_physical =
731 (u64) tmp_p_addr_next;
732 }
733 }
Veena Parat6d517a22007-07-23 02:20:51 -0400734 if (nic->rxd_mode == RXD_MODE_3B) {
Ananda Rajuda6971d2005-10-31 16:55:31 -0500735 /*
736 * Allocation of Storages for buffer addresses in 2BUFF mode
737 * and the buffers as well.
738 */
739 for (i = 0; i < config->rx_ring_num; i++) {
740 blk_cnt = config->rx_cfg[i].num_rxd /
741 (rxd_count[nic->rxd_mode]+ 1);
742 mac_control->rings[i].ba =
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500743 kmalloc((sizeof(struct buffAdd *) * blk_cnt),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 GFP_KERNEL);
Ananda Rajuda6971d2005-10-31 16:55:31 -0500745 if (!mac_control->rings[i].ba)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -ENOMEM;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400747 mem_allocated +=(sizeof(struct buffAdd *) * blk_cnt);
Ananda Rajuda6971d2005-10-31 16:55:31 -0500748 for (j = 0; j < blk_cnt; j++) {
749 int k = 0;
750 mac_control->rings[i].ba[j] =
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500751 kmalloc((sizeof(struct buffAdd) *
Ananda Rajuda6971d2005-10-31 16:55:31 -0500752 (rxd_count[nic->rxd_mode] + 1)),
753 GFP_KERNEL);
754 if (!mac_control->rings[i].ba[j])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return -ENOMEM;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400756 mem_allocated += (sizeof(struct buffAdd) * \
757 (rxd_count[nic->rxd_mode] + 1));
Ananda Rajuda6971d2005-10-31 16:55:31 -0500758 while (k != rxd_count[nic->rxd_mode]) {
759 ba = &mac_control->rings[i].ba[j][k];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Ananda Rajuda6971d2005-10-31 16:55:31 -0500761 ba->ba_0_org = (void *) kmalloc
762 (BUF0_LEN + ALIGN_SIZE, GFP_KERNEL);
763 if (!ba->ba_0_org)
764 return -ENOMEM;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400765 mem_allocated +=
766 (BUF0_LEN + ALIGN_SIZE);
Ananda Rajuda6971d2005-10-31 16:55:31 -0500767 tmp = (unsigned long)ba->ba_0_org;
768 tmp += ALIGN_SIZE;
769 tmp &= ~((unsigned long) ALIGN_SIZE);
770 ba->ba_0 = (void *) tmp;
771
772 ba->ba_1_org = (void *) kmalloc
773 (BUF1_LEN + ALIGN_SIZE, GFP_KERNEL);
774 if (!ba->ba_1_org)
775 return -ENOMEM;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400776 mem_allocated
777 += (BUF1_LEN + ALIGN_SIZE);
Ananda Rajuda6971d2005-10-31 16:55:31 -0500778 tmp = (unsigned long) ba->ba_1_org;
779 tmp += ALIGN_SIZE;
780 tmp &= ~((unsigned long) ALIGN_SIZE);
781 ba->ba_1 = (void *) tmp;
782 k++;
783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785 }
786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 /* Allocation and initialization of Statistics block */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500789 size = sizeof(struct stat_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 mac_control->stats_mem = pci_alloc_consistent
791 (nic->pdev, size, &mac_control->stats_mem_phy);
792
793 if (!mac_control->stats_mem) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700794 /*
795 * In case of failure, free_shared_mem() is called, which
796 * should free any memory that was alloced till the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 * failure happened.
798 */
799 return -ENOMEM;
800 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400801 mem_allocated += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 mac_control->stats_mem_sz = size;
803
804 tmp_v_addr = mac_control->stats_mem;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500805 mac_control->stats_info = (struct stat_block *) tmp_v_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 memset(tmp_v_addr, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 DBG_PRINT(INIT_DBG, "%s:Ring Mem PHY: 0x%llx\n", dev->name,
808 (unsigned long long) tmp_p_addr);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400809 mac_control->stats_info->sw_stat.mem_allocated += mem_allocated;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return SUCCESS;
811}
812
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700813/**
814 * free_shared_mem - Free the allocated Memory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 * @nic: Device private variable.
816 * Description: This function is to free all memory locations allocated by
817 * the init_shared_mem() function and return it to the kernel.
818 */
819
820static void free_shared_mem(struct s2io_nic *nic)
821{
822 int i, j, blk_cnt, size;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400823 u32 ufo_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 void *tmp_v_addr;
825 dma_addr_t tmp_p_addr;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500826 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 struct config_param *config;
828 int lst_size, lst_per_page;
Micah Gruber8910b492007-07-09 11:29:04 +0800829 struct net_device *dev;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400830 int page_num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 if (!nic)
833 return;
834
Micah Gruber8910b492007-07-09 11:29:04 +0800835 dev = nic->dev;
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 mac_control = &nic->mac_control;
838 config = &nic->config;
839
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500840 lst_size = (sizeof(struct TxD) * config->max_txds);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 lst_per_page = PAGE_SIZE / lst_size;
842
843 for (i = 0; i < config->tx_fifo_num; i++) {
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400844 ufo_size += config->tx_cfg[i].fifo_len;
845 page_num = TXD_MEM_PAGE_CNT(config->tx_cfg[i].fifo_len,
846 lst_per_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 for (j = 0; j < page_num; j++) {
848 int mem_blks = (j * lst_per_page);
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700849 if (!mac_control->fifos[i].list_info)
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400850 return;
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700851 if (!mac_control->fifos[i].list_info[mem_blks].
852 list_virt_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 break;
854 pci_free_consistent(nic->pdev, PAGE_SIZE,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700855 mac_control->fifos[i].
856 list_info[mem_blks].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 list_virt_addr,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700858 mac_control->fifos[i].
859 list_info[mem_blks].
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 list_phy_addr);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400861 nic->mac_control.stats_info->sw_stat.mem_freed
862 += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700864 /* If we got a zero DMA address during allocation,
865 * free the page now
866 */
867 if (mac_control->zerodma_virt_addr) {
868 pci_free_consistent(nic->pdev, PAGE_SIZE,
869 mac_control->zerodma_virt_addr,
870 (dma_addr_t)0);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400871 DBG_PRINT(INIT_DBG,
Andrew Morton6b4d6172005-09-12 23:21:55 -0700872 "%s: Freeing TxDL with zero DMA addr. ",
873 dev->name);
874 DBG_PRINT(INIT_DBG, "Virtual address %p\n",
875 mac_control->zerodma_virt_addr);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400876 nic->mac_control.stats_info->sw_stat.mem_freed
877 += PAGE_SIZE;
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -0700878 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700879 kfree(mac_control->fifos[i].list_info);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400880 nic->mac_control.stats_info->sw_stat.mem_freed +=
881 (nic->config.tx_cfg[i].fifo_len *sizeof(struct list_info_hold));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 size = SIZE_OF_BLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 for (i = 0; i < config->rx_ring_num; i++) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700886 blk_cnt = mac_control->rings[i].block_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 for (j = 0; j < blk_cnt; j++) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700888 tmp_v_addr = mac_control->rings[i].rx_blocks[j].
889 block_virt_addr;
890 tmp_p_addr = mac_control->rings[i].rx_blocks[j].
891 block_dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (tmp_v_addr == NULL)
893 break;
894 pci_free_consistent(nic->pdev, size,
895 tmp_v_addr, tmp_p_addr);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400896 nic->mac_control.stats_info->sw_stat.mem_freed += size;
Ananda Rajuda6971d2005-10-31 16:55:31 -0500897 kfree(mac_control->rings[i].rx_blocks[j].rxds);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400898 nic->mac_control.stats_info->sw_stat.mem_freed +=
899 ( sizeof(struct rxd_info)* rxd_count[nic->rxd_mode]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901 }
902
Veena Parat6d517a22007-07-23 02:20:51 -0400903 if (nic->rxd_mode == RXD_MODE_3B) {
Ananda Rajuda6971d2005-10-31 16:55:31 -0500904 /* Freeing buffer storage addresses in 2BUFF mode. */
905 for (i = 0; i < config->rx_ring_num; i++) {
906 blk_cnt = config->rx_cfg[i].num_rxd /
907 (rxd_count[nic->rxd_mode] + 1);
908 for (j = 0; j < blk_cnt; j++) {
909 int k = 0;
910 if (!mac_control->rings[i].ba[j])
911 continue;
912 while (k != rxd_count[nic->rxd_mode]) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500913 struct buffAdd *ba =
Ananda Rajuda6971d2005-10-31 16:55:31 -0500914 &mac_control->rings[i].ba[j][k];
915 kfree(ba->ba_0_org);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400916 nic->mac_control.stats_info->sw_stat.\
917 mem_freed += (BUF0_LEN + ALIGN_SIZE);
Ananda Rajuda6971d2005-10-31 16:55:31 -0500918 kfree(ba->ba_1_org);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400919 nic->mac_control.stats_info->sw_stat.\
920 mem_freed += (BUF1_LEN + ALIGN_SIZE);
Ananda Rajuda6971d2005-10-31 16:55:31 -0500921 k++;
922 }
923 kfree(mac_control->rings[i].ba[j]);
Sivakumar Subramani9caab452007-09-06 06:21:54 -0400924 nic->mac_control.stats_info->sw_stat.mem_freed +=
925 (sizeof(struct buffAdd) *
926 (rxd_count[nic->rxd_mode] + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
Ananda Rajuda6971d2005-10-31 16:55:31 -0500928 kfree(mac_control->rings[i].ba);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400929 nic->mac_control.stats_info->sw_stat.mem_freed +=
930 (sizeof(struct buffAdd *) * blk_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 if (mac_control->stats_mem) {
935 pci_free_consistent(nic->pdev,
936 mac_control->stats_mem_sz,
937 mac_control->stats_mem,
938 mac_control->stats_mem_phy);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400939 nic->mac_control.stats_info->sw_stat.mem_freed +=
940 mac_control->stats_mem_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400942 if (nic->ufo_in_band_v) {
Ananda Rajufed5ecc2005-11-14 15:25:08 -0500943 kfree(nic->ufo_in_band_v);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -0400944 nic->mac_control.stats_info->sw_stat.mem_freed
945 += (ufo_size * sizeof(u64));
946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -0700949/**
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700950 * s2io_verify_pci_mode -
951 */
952
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500953static int s2io_verify_pci_mode(struct s2io_nic *nic)
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700954{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500955 struct XENA_dev_config __iomem *bar0 = nic->bar0;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700956 register u64 val64 = 0;
957 int mode;
958
959 val64 = readq(&bar0->pci_mode);
960 mode = (u8)GET_PCI_MODE(val64);
961
962 if ( val64 & PCI_MODE_UNKNOWN_MODE)
963 return -1; /* Unknown PCI mode */
964 return mode;
965}
966
Ananda Rajuc92ca042006-04-21 19:18:03 -0400967#define NEC_VENID 0x1033
968#define NEC_DEVID 0x0125
969static int s2io_on_nec_bridge(struct pci_dev *s2io_pdev)
970{
971 struct pci_dev *tdev = NULL;
Alan Cox26d36b62006-09-15 15:22:51 +0100972 while ((tdev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, tdev)) != NULL) {
973 if (tdev->vendor == NEC_VENID && tdev->device == NEC_DEVID) {
Ananda Rajuc92ca042006-04-21 19:18:03 -0400974 if (tdev->bus == s2io_pdev->bus->parent)
Alan Cox26d36b62006-09-15 15:22:51 +0100975 pci_dev_put(tdev);
Ananda Rajuc92ca042006-04-21 19:18:03 -0400976 return 1;
977 }
978 }
979 return 0;
980}
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700981
Adrian Bunk7b32a312006-05-16 17:30:50 +0200982static int bus_speed[8] = {33, 133, 133, 200, 266, 133, 200, 266};
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700983/**
984 * s2io_print_pci_mode -
985 */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500986static int s2io_print_pci_mode(struct s2io_nic *nic)
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700987{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -0500988 struct XENA_dev_config __iomem *bar0 = nic->bar0;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -0700989 register u64 val64 = 0;
990 int mode;
991 struct config_param *config = &nic->config;
992
993 val64 = readq(&bar0->pci_mode);
994 mode = (u8)GET_PCI_MODE(val64);
995
996 if ( val64 & PCI_MODE_UNKNOWN_MODE)
997 return -1; /* Unknown PCI mode */
998
Ananda Rajuc92ca042006-04-21 19:18:03 -0400999 config->bus_speed = bus_speed[mode];
1000
1001 if (s2io_on_nec_bridge(nic->pdev)) {
1002 DBG_PRINT(ERR_DBG, "%s: Device is on PCI-E bus\n",
1003 nic->dev->name);
1004 return mode;
1005 }
1006
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001007 if (val64 & PCI_MODE_32_BITS) {
1008 DBG_PRINT(ERR_DBG, "%s: Device is on 32 bit ", nic->dev->name);
1009 } else {
1010 DBG_PRINT(ERR_DBG, "%s: Device is on 64 bit ", nic->dev->name);
1011 }
1012
1013 switch(mode) {
1014 case PCI_MODE_PCI_33:
1015 DBG_PRINT(ERR_DBG, "33MHz PCI bus\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001016 break;
1017 case PCI_MODE_PCI_66:
1018 DBG_PRINT(ERR_DBG, "66MHz PCI bus\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001019 break;
1020 case PCI_MODE_PCIX_M1_66:
1021 DBG_PRINT(ERR_DBG, "66MHz PCIX(M1) bus\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001022 break;
1023 case PCI_MODE_PCIX_M1_100:
1024 DBG_PRINT(ERR_DBG, "100MHz PCIX(M1) bus\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001025 break;
1026 case PCI_MODE_PCIX_M1_133:
1027 DBG_PRINT(ERR_DBG, "133MHz PCIX(M1) bus\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001028 break;
1029 case PCI_MODE_PCIX_M2_66:
1030 DBG_PRINT(ERR_DBG, "133MHz PCIX(M2) bus\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001031 break;
1032 case PCI_MODE_PCIX_M2_100:
1033 DBG_PRINT(ERR_DBG, "200MHz PCIX(M2) bus\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001034 break;
1035 case PCI_MODE_PCIX_M2_133:
1036 DBG_PRINT(ERR_DBG, "266MHz PCIX(M2) bus\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001037 break;
1038 default:
1039 return -1; /* Unsupported bus speed */
1040 }
1041
1042 return mode;
1043}
1044
1045/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001046 * init_nic - Initialization of hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 * @nic: device peivate variable
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001048 * Description: The function sequentially configures every block
1049 * of the H/W from their reset values.
1050 * Return Value: SUCCESS on success and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 * '-1' on failure (endian settings incorrect).
1052 */
1053
1054static int init_nic(struct s2io_nic *nic)
1055{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05001056 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 struct net_device *dev = nic->dev;
1058 register u64 val64 = 0;
1059 void __iomem *add;
1060 u32 time;
1061 int i, j;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05001062 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 struct config_param *config;
Ananda Rajuc92ca042006-04-21 19:18:03 -04001064 int dtx_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 unsigned long long mem_share;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001066 int mem_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 mac_control = &nic->mac_control;
1069 config = &nic->config;
1070
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07001071 /* to set the swapper controle on the card */
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001072 if(s2io_set_swapper(nic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 DBG_PRINT(ERR_DBG,"ERROR: Setting Swapper failed\n");
1074 return -1;
1075 }
1076
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001077 /*
1078 * Herc requires EOI to be removed from reset before XGXS, so..
1079 */
1080 if (nic->device_type & XFRAME_II_DEVICE) {
1081 val64 = 0xA500000000ULL;
1082 writeq(val64, &bar0->sw_reset);
1083 msleep(500);
1084 val64 = readq(&bar0->sw_reset);
1085 }
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 /* Remove XGXS from reset state */
1088 val64 = 0;
1089 writeq(val64, &bar0->sw_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 msleep(500);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001091 val64 = readq(&bar0->sw_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 /* Enable Receiving broadcasts */
1094 add = &bar0->mac_cfg;
1095 val64 = readq(&bar0->mac_cfg);
1096 val64 |= MAC_RMAC_BCAST_ENABLE;
1097 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
1098 writel((u32) val64, add);
1099 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
1100 writel((u32) (val64 >> 32), (add + 4));
1101
1102 /* Read registers in all blocks */
1103 val64 = readq(&bar0->mac_int_mask);
1104 val64 = readq(&bar0->mc_int_mask);
1105 val64 = readq(&bar0->xgxs_int_mask);
1106
1107 /* Set MTU */
1108 val64 = dev->mtu;
1109 writeq(vBIT(val64, 2, 14), &bar0->rmac_max_pyld_len);
1110
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001111 if (nic->device_type & XFRAME_II_DEVICE) {
1112 while (herc_act_dtx_cfg[dtx_cnt] != END_SIGN) {
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07001113 SPECIAL_REG_WRITE(herc_act_dtx_cfg[dtx_cnt],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 &bar0->dtx_control, UF);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001115 if (dtx_cnt & 0x1)
1116 msleep(1); /* Necessary!! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 dtx_cnt++;
1118 }
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001119 } else {
Ananda Rajuc92ca042006-04-21 19:18:03 -04001120 while (xena_dtx_cfg[dtx_cnt] != END_SIGN) {
1121 SPECIAL_REG_WRITE(xena_dtx_cfg[dtx_cnt],
1122 &bar0->dtx_control, UF);
1123 val64 = readq(&bar0->dtx_control);
1124 dtx_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126 }
1127
1128 /* Tx DMA Initialization */
1129 val64 = 0;
1130 writeq(val64, &bar0->tx_fifo_partition_0);
1131 writeq(val64, &bar0->tx_fifo_partition_1);
1132 writeq(val64, &bar0->tx_fifo_partition_2);
1133 writeq(val64, &bar0->tx_fifo_partition_3);
1134
1135
1136 for (i = 0, j = 0; i < config->tx_fifo_num; i++) {
1137 val64 |=
1138 vBIT(config->tx_cfg[i].fifo_len - 1, ((i * 32) + 19),
1139 13) | vBIT(config->tx_cfg[i].fifo_priority,
1140 ((i * 32) + 5), 3);
1141
1142 if (i == (config->tx_fifo_num - 1)) {
1143 if (i % 2 == 0)
1144 i++;
1145 }
1146
1147 switch (i) {
1148 case 1:
1149 writeq(val64, &bar0->tx_fifo_partition_0);
1150 val64 = 0;
1151 break;
1152 case 3:
1153 writeq(val64, &bar0->tx_fifo_partition_1);
1154 val64 = 0;
1155 break;
1156 case 5:
1157 writeq(val64, &bar0->tx_fifo_partition_2);
1158 val64 = 0;
1159 break;
1160 case 7:
1161 writeq(val64, &bar0->tx_fifo_partition_3);
1162 break;
1163 }
1164 }
1165
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07001166 /*
1167 * Disable 4 PCCs for Xena1, 2 and 3 as per H/W bug
1168 * SXE-008 TRANSMIT DMA ARBITRATION ISSUE.
1169 */
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001170 if ((nic->device_type == XFRAME_I_DEVICE) &&
Auke Kok44c10132007-06-08 15:46:36 -07001171 (nic->pdev->revision < 4))
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07001172 writeq(PCC_ENABLE_FOUR, &bar0->pcc_enable);
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 val64 = readq(&bar0->tx_fifo_partition_0);
1175 DBG_PRINT(INIT_DBG, "Fifo partition at: 0x%p is: 0x%llx\n",
1176 &bar0->tx_fifo_partition_0, (unsigned long long) val64);
1177
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001178 /*
1179 * Initialization of Tx_PA_CONFIG register to ignore packet
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 * integrity checking.
1181 */
1182 val64 = readq(&bar0->tx_pa_cfg);
1183 val64 |= TX_PA_CFG_IGNORE_FRM_ERR | TX_PA_CFG_IGNORE_SNAP_OUI |
1184 TX_PA_CFG_IGNORE_LLC_CTRL | TX_PA_CFG_IGNORE_L2_ERR;
1185 writeq(val64, &bar0->tx_pa_cfg);
1186
1187 /* Rx DMA intialization. */
1188 val64 = 0;
1189 for (i = 0; i < config->rx_ring_num; i++) {
1190 val64 |=
1191 vBIT(config->rx_cfg[i].ring_priority, (5 + (i * 8)),
1192 3);
1193 }
1194 writeq(val64, &bar0->rx_queue_priority);
1195
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001196 /*
1197 * Allocating equal share of memory to all the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 * configured Rings.
1199 */
1200 val64 = 0;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001201 if (nic->device_type & XFRAME_II_DEVICE)
1202 mem_size = 32;
1203 else
1204 mem_size = 64;
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 for (i = 0; i < config->rx_ring_num; i++) {
1207 switch (i) {
1208 case 0:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001209 mem_share = (mem_size / config->rx_ring_num +
1210 mem_size % config->rx_ring_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 val64 |= RX_QUEUE_CFG_Q0_SZ(mem_share);
1212 continue;
1213 case 1:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001214 mem_share = (mem_size / config->rx_ring_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 val64 |= RX_QUEUE_CFG_Q1_SZ(mem_share);
1216 continue;
1217 case 2:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001218 mem_share = (mem_size / config->rx_ring_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 val64 |= RX_QUEUE_CFG_Q2_SZ(mem_share);
1220 continue;
1221 case 3:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001222 mem_share = (mem_size / config->rx_ring_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 val64 |= RX_QUEUE_CFG_Q3_SZ(mem_share);
1224 continue;
1225 case 4:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001226 mem_share = (mem_size / config->rx_ring_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 val64 |= RX_QUEUE_CFG_Q4_SZ(mem_share);
1228 continue;
1229 case 5:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001230 mem_share = (mem_size / config->rx_ring_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 val64 |= RX_QUEUE_CFG_Q5_SZ(mem_share);
1232 continue;
1233 case 6:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001234 mem_share = (mem_size / config->rx_ring_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 val64 |= RX_QUEUE_CFG_Q6_SZ(mem_share);
1236 continue;
1237 case 7:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001238 mem_share = (mem_size / config->rx_ring_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 val64 |= RX_QUEUE_CFG_Q7_SZ(mem_share);
1240 continue;
1241 }
1242 }
1243 writeq(val64, &bar0->rx_queue_cfg);
1244
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001245 /*
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07001246 * Filling Tx round robin registers
1247 * as per the number of FIFOs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 */
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07001249 switch (config->tx_fifo_num) {
1250 case 1:
1251 val64 = 0x0000000000000000ULL;
1252 writeq(val64, &bar0->tx_w_round_robin_0);
1253 writeq(val64, &bar0->tx_w_round_robin_1);
1254 writeq(val64, &bar0->tx_w_round_robin_2);
1255 writeq(val64, &bar0->tx_w_round_robin_3);
1256 writeq(val64, &bar0->tx_w_round_robin_4);
1257 break;
1258 case 2:
1259 val64 = 0x0000010000010000ULL;
1260 writeq(val64, &bar0->tx_w_round_robin_0);
1261 val64 = 0x0100000100000100ULL;
1262 writeq(val64, &bar0->tx_w_round_robin_1);
1263 val64 = 0x0001000001000001ULL;
1264 writeq(val64, &bar0->tx_w_round_robin_2);
1265 val64 = 0x0000010000010000ULL;
1266 writeq(val64, &bar0->tx_w_round_robin_3);
1267 val64 = 0x0100000000000000ULL;
1268 writeq(val64, &bar0->tx_w_round_robin_4);
1269 break;
1270 case 3:
1271 val64 = 0x0001000102000001ULL;
1272 writeq(val64, &bar0->tx_w_round_robin_0);
1273 val64 = 0x0001020000010001ULL;
1274 writeq(val64, &bar0->tx_w_round_robin_1);
1275 val64 = 0x0200000100010200ULL;
1276 writeq(val64, &bar0->tx_w_round_robin_2);
1277 val64 = 0x0001000102000001ULL;
1278 writeq(val64, &bar0->tx_w_round_robin_3);
1279 val64 = 0x0001020000000000ULL;
1280 writeq(val64, &bar0->tx_w_round_robin_4);
1281 break;
1282 case 4:
1283 val64 = 0x0001020300010200ULL;
1284 writeq(val64, &bar0->tx_w_round_robin_0);
1285 val64 = 0x0100000102030001ULL;
1286 writeq(val64, &bar0->tx_w_round_robin_1);
1287 val64 = 0x0200010000010203ULL;
1288 writeq(val64, &bar0->tx_w_round_robin_2);
1289 val64 = 0x0001020001000001ULL;
1290 writeq(val64, &bar0->tx_w_round_robin_3);
1291 val64 = 0x0203000100000000ULL;
1292 writeq(val64, &bar0->tx_w_round_robin_4);
1293 break;
1294 case 5:
1295 val64 = 0x0001000203000102ULL;
1296 writeq(val64, &bar0->tx_w_round_robin_0);
1297 val64 = 0x0001020001030004ULL;
1298 writeq(val64, &bar0->tx_w_round_robin_1);
1299 val64 = 0x0001000203000102ULL;
1300 writeq(val64, &bar0->tx_w_round_robin_2);
1301 val64 = 0x0001020001030004ULL;
1302 writeq(val64, &bar0->tx_w_round_robin_3);
1303 val64 = 0x0001000000000000ULL;
1304 writeq(val64, &bar0->tx_w_round_robin_4);
1305 break;
1306 case 6:
1307 val64 = 0x0001020304000102ULL;
1308 writeq(val64, &bar0->tx_w_round_robin_0);
1309 val64 = 0x0304050001020001ULL;
1310 writeq(val64, &bar0->tx_w_round_robin_1);
1311 val64 = 0x0203000100000102ULL;
1312 writeq(val64, &bar0->tx_w_round_robin_2);
1313 val64 = 0x0304000102030405ULL;
1314 writeq(val64, &bar0->tx_w_round_robin_3);
1315 val64 = 0x0001000200000000ULL;
1316 writeq(val64, &bar0->tx_w_round_robin_4);
1317 break;
1318 case 7:
1319 val64 = 0x0001020001020300ULL;
1320 writeq(val64, &bar0->tx_w_round_robin_0);
1321 val64 = 0x0102030400010203ULL;
1322 writeq(val64, &bar0->tx_w_round_robin_1);
1323 val64 = 0x0405060001020001ULL;
1324 writeq(val64, &bar0->tx_w_round_robin_2);
1325 val64 = 0x0304050000010200ULL;
1326 writeq(val64, &bar0->tx_w_round_robin_3);
1327 val64 = 0x0102030000000000ULL;
1328 writeq(val64, &bar0->tx_w_round_robin_4);
1329 break;
1330 case 8:
1331 val64 = 0x0001020300040105ULL;
1332 writeq(val64, &bar0->tx_w_round_robin_0);
1333 val64 = 0x0200030106000204ULL;
1334 writeq(val64, &bar0->tx_w_round_robin_1);
1335 val64 = 0x0103000502010007ULL;
1336 writeq(val64, &bar0->tx_w_round_robin_2);
1337 val64 = 0x0304010002060500ULL;
1338 writeq(val64, &bar0->tx_w_round_robin_3);
1339 val64 = 0x0103020400000000ULL;
1340 writeq(val64, &bar0->tx_w_round_robin_4);
1341 break;
1342 }
1343
Ananda Rajub41477f2006-07-24 19:52:49 -04001344 /* Enable all configured Tx FIFO partitions */
Ananda Raju5d3213c2006-04-21 19:23:26 -04001345 val64 = readq(&bar0->tx_fifo_partition_0);
1346 val64 |= (TX_FIFO_PARTITION_EN);
1347 writeq(val64, &bar0->tx_fifo_partition_0);
1348
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07001349 /* Filling the Rx round robin registers as per the
1350 * number of Rings and steering based on QoS.
1351 */
1352 switch (config->rx_ring_num) {
1353 case 1:
1354 val64 = 0x8080808080808080ULL;
1355 writeq(val64, &bar0->rts_qos_steering);
1356 break;
1357 case 2:
1358 val64 = 0x0000010000010000ULL;
1359 writeq(val64, &bar0->rx_w_round_robin_0);
1360 val64 = 0x0100000100000100ULL;
1361 writeq(val64, &bar0->rx_w_round_robin_1);
1362 val64 = 0x0001000001000001ULL;
1363 writeq(val64, &bar0->rx_w_round_robin_2);
1364 val64 = 0x0000010000010000ULL;
1365 writeq(val64, &bar0->rx_w_round_robin_3);
1366 val64 = 0x0100000000000000ULL;
1367 writeq(val64, &bar0->rx_w_round_robin_4);
1368
1369 val64 = 0x8080808040404040ULL;
1370 writeq(val64, &bar0->rts_qos_steering);
1371 break;
1372 case 3:
1373 val64 = 0x0001000102000001ULL;
1374 writeq(val64, &bar0->rx_w_round_robin_0);
1375 val64 = 0x0001020000010001ULL;
1376 writeq(val64, &bar0->rx_w_round_robin_1);
1377 val64 = 0x0200000100010200ULL;
1378 writeq(val64, &bar0->rx_w_round_robin_2);
1379 val64 = 0x0001000102000001ULL;
1380 writeq(val64, &bar0->rx_w_round_robin_3);
1381 val64 = 0x0001020000000000ULL;
1382 writeq(val64, &bar0->rx_w_round_robin_4);
1383
1384 val64 = 0x8080804040402020ULL;
1385 writeq(val64, &bar0->rts_qos_steering);
1386 break;
1387 case 4:
1388 val64 = 0x0001020300010200ULL;
1389 writeq(val64, &bar0->rx_w_round_robin_0);
1390 val64 = 0x0100000102030001ULL;
1391 writeq(val64, &bar0->rx_w_round_robin_1);
1392 val64 = 0x0200010000010203ULL;
1393 writeq(val64, &bar0->rx_w_round_robin_2);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001394 val64 = 0x0001020001000001ULL;
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07001395 writeq(val64, &bar0->rx_w_round_robin_3);
1396 val64 = 0x0203000100000000ULL;
1397 writeq(val64, &bar0->rx_w_round_robin_4);
1398
1399 val64 = 0x8080404020201010ULL;
1400 writeq(val64, &bar0->rts_qos_steering);
1401 break;
1402 case 5:
1403 val64 = 0x0001000203000102ULL;
1404 writeq(val64, &bar0->rx_w_round_robin_0);
1405 val64 = 0x0001020001030004ULL;
1406 writeq(val64, &bar0->rx_w_round_robin_1);
1407 val64 = 0x0001000203000102ULL;
1408 writeq(val64, &bar0->rx_w_round_robin_2);
1409 val64 = 0x0001020001030004ULL;
1410 writeq(val64, &bar0->rx_w_round_robin_3);
1411 val64 = 0x0001000000000000ULL;
1412 writeq(val64, &bar0->rx_w_round_robin_4);
1413
1414 val64 = 0x8080404020201008ULL;
1415 writeq(val64, &bar0->rts_qos_steering);
1416 break;
1417 case 6:
1418 val64 = 0x0001020304000102ULL;
1419 writeq(val64, &bar0->rx_w_round_robin_0);
1420 val64 = 0x0304050001020001ULL;
1421 writeq(val64, &bar0->rx_w_round_robin_1);
1422 val64 = 0x0203000100000102ULL;
1423 writeq(val64, &bar0->rx_w_round_robin_2);
1424 val64 = 0x0304000102030405ULL;
1425 writeq(val64, &bar0->rx_w_round_robin_3);
1426 val64 = 0x0001000200000000ULL;
1427 writeq(val64, &bar0->rx_w_round_robin_4);
1428
1429 val64 = 0x8080404020100804ULL;
1430 writeq(val64, &bar0->rts_qos_steering);
1431 break;
1432 case 7:
1433 val64 = 0x0001020001020300ULL;
1434 writeq(val64, &bar0->rx_w_round_robin_0);
1435 val64 = 0x0102030400010203ULL;
1436 writeq(val64, &bar0->rx_w_round_robin_1);
1437 val64 = 0x0405060001020001ULL;
1438 writeq(val64, &bar0->rx_w_round_robin_2);
1439 val64 = 0x0304050000010200ULL;
1440 writeq(val64, &bar0->rx_w_round_robin_3);
1441 val64 = 0x0102030000000000ULL;
1442 writeq(val64, &bar0->rx_w_round_robin_4);
1443
1444 val64 = 0x8080402010080402ULL;
1445 writeq(val64, &bar0->rts_qos_steering);
1446 break;
1447 case 8:
1448 val64 = 0x0001020300040105ULL;
1449 writeq(val64, &bar0->rx_w_round_robin_0);
1450 val64 = 0x0200030106000204ULL;
1451 writeq(val64, &bar0->rx_w_round_robin_1);
1452 val64 = 0x0103000502010007ULL;
1453 writeq(val64, &bar0->rx_w_round_robin_2);
1454 val64 = 0x0304010002060500ULL;
1455 writeq(val64, &bar0->rx_w_round_robin_3);
1456 val64 = 0x0103020400000000ULL;
1457 writeq(val64, &bar0->rx_w_round_robin_4);
1458
1459 val64 = 0x8040201008040201ULL;
1460 writeq(val64, &bar0->rts_qos_steering);
1461 break;
1462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 /* UDP Fix */
1465 val64 = 0;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001466 for (i = 0; i < 8; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 writeq(val64, &bar0->rts_frm_len_n[i]);
1468
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07001469 /* Set the default rts frame length for the rings configured */
1470 val64 = MAC_RTS_FRM_LEN_SET(dev->mtu+22);
1471 for (i = 0 ; i < config->rx_ring_num ; i++)
1472 writeq(val64, &bar0->rts_frm_len_n[i]);
1473
1474 /* Set the frame length for the configured rings
1475 * desired by the user
1476 */
1477 for (i = 0; i < config->rx_ring_num; i++) {
1478 /* If rts_frm_len[i] == 0 then it is assumed that user not
1479 * specified frame length steering.
1480 * If the user provides the frame length then program
1481 * the rts_frm_len register for those values or else
1482 * leave it as it is.
1483 */
1484 if (rts_frm_len[i] != 0) {
1485 writeq(MAC_RTS_FRM_LEN_SET(rts_frm_len[i]),
1486 &bar0->rts_frm_len_n[i]);
1487 }
1488 }
Sivakumar Subramani926930b2007-02-24 01:59:39 -05001489
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05001490 /* Disable differentiated services steering logic */
1491 for (i = 0; i < 64; i++) {
1492 if (rts_ds_steer(nic, i, 0) == FAILURE) {
1493 DBG_PRINT(ERR_DBG, "%s: failed rts ds steering",
1494 dev->name);
1495 DBG_PRINT(ERR_DBG, "set on codepoint %d\n", i);
1496 return FAILURE;
1497 }
1498 }
1499
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001500 /* Program statistics memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 writeq(mac_control->stats_mem_phy, &bar0->stat_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001503 if (nic->device_type == XFRAME_II_DEVICE) {
1504 val64 = STAT_BC(0x320);
1505 writeq(val64, &bar0->stat_byte_cnt);
1506 }
1507
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001508 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 * Initializing the sampling rate for the device to calculate the
1510 * bandwidth utilization.
1511 */
1512 val64 = MAC_TX_LINK_UTIL_VAL(tmac_util_period) |
1513 MAC_RX_LINK_UTIL_VAL(rmac_util_period);
1514 writeq(val64, &bar0->mac_link_util);
1515
1516
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001517 /*
1518 * Initializing the Transmit and Receive Traffic Interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 * Scheme.
1520 */
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001521 /*
1522 * TTI Initialization. Default Tx timer gets us about
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 * 250 interrupts per sec. Continuous interrupts are enabled
1524 * by default.
1525 */
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001526 if (nic->device_type == XFRAME_II_DEVICE) {
1527 int count = (nic->config.bus_speed * 125)/2;
1528 val64 = TTI_DATA1_MEM_TX_TIMER_VAL(count);
1529 } else {
1530
1531 val64 = TTI_DATA1_MEM_TX_TIMER_VAL(0x2078);
1532 }
1533 val64 |= TTI_DATA1_MEM_TX_URNG_A(0xA) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 TTI_DATA1_MEM_TX_URNG_B(0x10) |
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07001535 TTI_DATA1_MEM_TX_URNG_C(0x30) | TTI_DATA1_MEM_TX_TIMER_AC_EN;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001536 if (use_continuous_tx_intrs)
1537 val64 |= TTI_DATA1_MEM_TX_TIMER_CI_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 writeq(val64, &bar0->tti_data1_mem);
1539
1540 val64 = TTI_DATA2_MEM_TX_UFC_A(0x10) |
1541 TTI_DATA2_MEM_TX_UFC_B(0x20) |
Sivakumar Subramani19a60522007-01-31 13:30:49 -05001542 TTI_DATA2_MEM_TX_UFC_C(0x40) | TTI_DATA2_MEM_TX_UFC_D(0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 writeq(val64, &bar0->tti_data2_mem);
1544
1545 val64 = TTI_CMD_MEM_WE | TTI_CMD_MEM_STROBE_NEW_CMD;
1546 writeq(val64, &bar0->tti_command_mem);
1547
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001548 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 * Once the operation completes, the Strobe bit of the command
1550 * register will be reset. We poll for this particular condition
1551 * We wait for a maximum of 500ms for the operation to complete,
1552 * if it's not complete by then we return error.
1553 */
1554 time = 0;
1555 while (TRUE) {
1556 val64 = readq(&bar0->tti_command_mem);
1557 if (!(val64 & TTI_CMD_MEM_STROBE_NEW_CMD)) {
1558 break;
1559 }
1560 if (time > 10) {
1561 DBG_PRINT(ERR_DBG, "%s: TTI init Failed\n",
1562 dev->name);
1563 return -1;
1564 }
1565 msleep(50);
1566 time++;
1567 }
1568
raghavendra.koushik@neterion.comb6e3f982005-08-03 12:38:01 -07001569 if (nic->config.bimodal) {
1570 int k = 0;
1571 for (k = 0; k < config->rx_ring_num; k++) {
1572 val64 = TTI_CMD_MEM_WE | TTI_CMD_MEM_STROBE_NEW_CMD;
1573 val64 |= TTI_CMD_MEM_OFFSET(0x38+k);
1574 writeq(val64, &bar0->tti_command_mem);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001575
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001576 /*
raghavendra.koushik@neterion.comb6e3f982005-08-03 12:38:01 -07001577 * Once the operation completes, the Strobe bit of the command
1578 * register will be reset. We poll for this particular condition
1579 * We wait for a maximum of 500ms for the operation to complete,
1580 * if it's not complete by then we return error.
1581 */
1582 time = 0;
1583 while (TRUE) {
1584 val64 = readq(&bar0->tti_command_mem);
1585 if (!(val64 & TTI_CMD_MEM_STROBE_NEW_CMD)) {
1586 break;
1587 }
1588 if (time > 10) {
1589 DBG_PRINT(ERR_DBG,
1590 "%s: TTI init Failed\n",
1591 dev->name);
1592 return -1;
1593 }
1594 time++;
1595 msleep(50);
1596 }
1597 }
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001598 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
raghavendra.koushik@neterion.comb6e3f982005-08-03 12:38:01 -07001600 /* RTI Initialization */
1601 if (nic->device_type == XFRAME_II_DEVICE) {
1602 /*
1603 * Programmed to generate Apprx 500 Intrs per
1604 * second
1605 */
1606 int count = (nic->config.bus_speed * 125)/4;
1607 val64 = RTI_DATA1_MEM_RX_TIMER_VAL(count);
1608 } else {
1609 val64 = RTI_DATA1_MEM_RX_TIMER_VAL(0xFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 }
raghavendra.koushik@neterion.comb6e3f982005-08-03 12:38:01 -07001611 val64 |= RTI_DATA1_MEM_RX_URNG_A(0xA) |
1612 RTI_DATA1_MEM_RX_URNG_B(0x10) |
1613 RTI_DATA1_MEM_RX_URNG_C(0x30) | RTI_DATA1_MEM_RX_TIMER_AC_EN;
1614
1615 writeq(val64, &bar0->rti_data1_mem);
1616
1617 val64 = RTI_DATA2_MEM_RX_UFC_A(0x1) |
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04001618 RTI_DATA2_MEM_RX_UFC_B(0x2) ;
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07001619 if (nic->config.intr_type == MSI_X)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04001620 val64 |= (RTI_DATA2_MEM_RX_UFC_C(0x20) | \
1621 RTI_DATA2_MEM_RX_UFC_D(0x40));
1622 else
1623 val64 |= (RTI_DATA2_MEM_RX_UFC_C(0x40) | \
1624 RTI_DATA2_MEM_RX_UFC_D(0x80));
raghavendra.koushik@neterion.comb6e3f982005-08-03 12:38:01 -07001625 writeq(val64, &bar0->rti_data2_mem);
1626
1627 for (i = 0; i < config->rx_ring_num; i++) {
1628 val64 = RTI_CMD_MEM_WE | RTI_CMD_MEM_STROBE_NEW_CMD
1629 | RTI_CMD_MEM_OFFSET(i);
1630 writeq(val64, &bar0->rti_command_mem);
1631
1632 /*
1633 * Once the operation completes, the Strobe bit of the
1634 * command register will be reset. We poll for this
1635 * particular condition. We wait for a maximum of 500ms
1636 * for the operation to complete, if it's not complete
1637 * by then we return error.
1638 */
1639 time = 0;
1640 while (TRUE) {
1641 val64 = readq(&bar0->rti_command_mem);
1642 if (!(val64 & RTI_CMD_MEM_STROBE_NEW_CMD)) {
1643 break;
1644 }
1645 if (time > 10) {
1646 DBG_PRINT(ERR_DBG, "%s: RTI init Failed\n",
1647 dev->name);
1648 return -1;
1649 }
1650 time++;
1651 msleep(50);
1652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 }
1655
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001656 /*
1657 * Initializing proper values as Pause threshold into all
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 * the 8 Queues on Rx side.
1659 */
1660 writeq(0xffbbffbbffbbffbbULL, &bar0->mc_pause_thresh_q0q3);
1661 writeq(0xffbbffbbffbbffbbULL, &bar0->mc_pause_thresh_q4q7);
1662
1663 /* Disable RMAC PAD STRIPPING */
viro@ftp.linux.org.uk509a2672005-09-05 03:25:58 +01001664 add = &bar0->mac_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 val64 = readq(&bar0->mac_cfg);
1666 val64 &= ~(MAC_CFG_RMAC_STRIP_PAD);
1667 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
1668 writel((u32) (val64), add);
1669 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
1670 writel((u32) (val64 >> 32), (add + 4));
1671 val64 = readq(&bar0->mac_cfg);
1672
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05001673 /* Enable FCS stripping by adapter */
1674 add = &bar0->mac_cfg;
1675 val64 = readq(&bar0->mac_cfg);
1676 val64 |= MAC_CFG_RMAC_STRIP_FCS;
1677 if (nic->device_type == XFRAME_II_DEVICE)
1678 writeq(val64, &bar0->mac_cfg);
1679 else {
1680 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
1681 writel((u32) (val64), add);
1682 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
1683 writel((u32) (val64 >> 32), (add + 4));
1684 }
1685
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001686 /*
1687 * Set the time value to be inserted in the pause frame
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 * generated by xena.
1689 */
1690 val64 = readq(&bar0->rmac_pause_cfg);
1691 val64 &= ~(RMAC_PAUSE_HG_PTIME(0xffff));
1692 val64 |= RMAC_PAUSE_HG_PTIME(nic->mac_control.rmac_pause_time);
1693 writeq(val64, &bar0->rmac_pause_cfg);
1694
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001695 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 * Set the Threshold Limit for Generating the pause frame
1697 * If the amount of data in any Queue exceeds ratio of
1698 * (mac_control.mc_pause_threshold_q0q3 or q4q7)/256
1699 * pause frame is generated
1700 */
1701 val64 = 0;
1702 for (i = 0; i < 4; i++) {
1703 val64 |=
1704 (((u64) 0xFF00 | nic->mac_control.
1705 mc_pause_threshold_q0q3)
1706 << (i * 2 * 8));
1707 }
1708 writeq(val64, &bar0->mc_pause_thresh_q0q3);
1709
1710 val64 = 0;
1711 for (i = 0; i < 4; i++) {
1712 val64 |=
1713 (((u64) 0xFF00 | nic->mac_control.
1714 mc_pause_threshold_q4q7)
1715 << (i * 2 * 8));
1716 }
1717 writeq(val64, &bar0->mc_pause_thresh_q4q7);
1718
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001719 /*
1720 * TxDMA will stop Read request if the number of read split has
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 * exceeded the limit pointed by shared_splits
1722 */
1723 val64 = readq(&bar0->pic_control);
1724 val64 |= PIC_CNTL_SHARED_SPLITS(shared_splits);
1725 writeq(val64, &bar0->pic_control);
1726
Ananda Raju863c11a2006-04-21 19:03:13 -04001727 if (nic->config.bus_speed == 266) {
1728 writeq(TXREQTO_VAL(0x7f) | TXREQTO_EN, &bar0->txreqtimeout);
1729 writeq(0x0, &bar0->read_retry_delay);
1730 writeq(0x0, &bar0->write_retry_delay);
1731 }
1732
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001733 /*
1734 * Programming the Herc to split every write transaction
1735 * that does not start on an ADB to reduce disconnects.
1736 */
1737 if (nic->device_type == XFRAME_II_DEVICE) {
Sivakumar Subramani19a60522007-01-31 13:30:49 -05001738 val64 = FAULT_BEHAVIOUR | EXT_REQ_EN |
1739 MISC_LINK_STABILITY_PRD(3);
Ananda Raju863c11a2006-04-21 19:03:13 -04001740 writeq(val64, &bar0->misc_control);
1741 val64 = readq(&bar0->pic_control2);
1742 val64 &= ~(BIT(13)|BIT(14)|BIT(15));
1743 writeq(val64, &bar0->pic_control2);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07001744 }
Ananda Rajuc92ca042006-04-21 19:18:03 -04001745 if (strstr(nic->product_name, "CX4")) {
1746 val64 = TMAC_AVG_IPG(0x17);
1747 writeq(val64, &bar0->tmac_avg_ipg);
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07001748 }
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 return SUCCESS;
1751}
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07001752#define LINK_UP_DOWN_INTERRUPT 1
1753#define MAC_RMAC_ERR_TIMER 2
1754
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05001755static int s2io_link_fault_indication(struct s2io_nic *nic)
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07001756{
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07001757 if (nic->config.intr_type != INTA)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04001758 return MAC_RMAC_ERR_TIMER;
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07001759 if (nic->device_type == XFRAME_II_DEVICE)
1760 return LINK_UP_DOWN_INTERRUPT;
1761 else
1762 return MAC_RMAC_ERR_TIMER;
1763}
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07001764
Sivakumar Subramani9caab452007-09-06 06:21:54 -04001765/**
1766 * do_s2io_write_bits - update alarm bits in alarm register
1767 * @value: alarm bits
1768 * @flag: interrupt status
1769 * @addr: address value
1770 * Description: update alarm bits in alarm register
1771 * Return Value:
1772 * NONE.
1773 */
1774static void do_s2io_write_bits(u64 value, int flag, void __iomem *addr)
1775{
1776 u64 temp64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Sivakumar Subramani9caab452007-09-06 06:21:54 -04001778 temp64 = readq(addr);
1779
1780 if(flag == ENABLE_INTRS)
1781 temp64 &= ~((u64) value);
1782 else
1783 temp64 |= ((u64) value);
1784 writeq(temp64, addr);
1785}
1786
1787void en_dis_err_alarms(struct s2io_nic *nic, u16 mask, int flag)
1788{
1789 struct XENA_dev_config __iomem *bar0 = nic->bar0;
1790 register u64 gen_int_mask = 0;
1791
1792 if (mask & TX_DMA_INTR) {
1793
1794 gen_int_mask |= TXDMA_INT_M;
1795
1796 do_s2io_write_bits(TXDMA_TDA_INT | TXDMA_PFC_INT |
1797 TXDMA_PCC_INT | TXDMA_TTI_INT |
1798 TXDMA_LSO_INT | TXDMA_TPA_INT |
1799 TXDMA_SM_INT, flag, &bar0->txdma_int_mask);
1800
1801 do_s2io_write_bits(PFC_ECC_DB_ERR | PFC_SM_ERR_ALARM |
1802 PFC_MISC_0_ERR | PFC_MISC_1_ERR |
1803 PFC_PCIX_ERR | PFC_ECC_SG_ERR, flag,
1804 &bar0->pfc_err_mask);
1805
1806 do_s2io_write_bits(TDA_Fn_ECC_DB_ERR | TDA_SM0_ERR_ALARM |
1807 TDA_SM1_ERR_ALARM | TDA_Fn_ECC_SG_ERR |
1808 TDA_PCIX_ERR, flag, &bar0->tda_err_mask);
1809
1810 do_s2io_write_bits(PCC_FB_ECC_DB_ERR | PCC_TXB_ECC_DB_ERR |
1811 PCC_SM_ERR_ALARM | PCC_WR_ERR_ALARM |
1812 PCC_N_SERR | PCC_6_COF_OV_ERR |
1813 PCC_7_COF_OV_ERR | PCC_6_LSO_OV_ERR |
1814 PCC_7_LSO_OV_ERR | PCC_FB_ECC_SG_ERR |
1815 PCC_TXB_ECC_SG_ERR, flag, &bar0->pcc_err_mask);
1816
1817 do_s2io_write_bits(TTI_SM_ERR_ALARM | TTI_ECC_SG_ERR |
1818 TTI_ECC_DB_ERR, flag, &bar0->tti_err_mask);
1819
1820 do_s2io_write_bits(LSO6_ABORT | LSO7_ABORT |
1821 LSO6_SM_ERR_ALARM | LSO7_SM_ERR_ALARM |
1822 LSO6_SEND_OFLOW | LSO7_SEND_OFLOW,
1823 flag, &bar0->lso_err_mask);
1824
1825 do_s2io_write_bits(TPA_SM_ERR_ALARM | TPA_TX_FRM_DROP,
1826 flag, &bar0->tpa_err_mask);
1827
1828 do_s2io_write_bits(SM_SM_ERR_ALARM, flag, &bar0->sm_err_mask);
1829
1830 }
1831
1832 if (mask & TX_MAC_INTR) {
1833 gen_int_mask |= TXMAC_INT_M;
1834 do_s2io_write_bits(MAC_INT_STATUS_TMAC_INT, flag,
1835 &bar0->mac_int_mask);
1836 do_s2io_write_bits(TMAC_TX_BUF_OVRN | TMAC_TX_SM_ERR |
1837 TMAC_ECC_SG_ERR | TMAC_ECC_DB_ERR |
1838 TMAC_DESC_ECC_SG_ERR | TMAC_DESC_ECC_DB_ERR,
1839 flag, &bar0->mac_tmac_err_mask);
1840 }
1841
1842 if (mask & TX_XGXS_INTR) {
1843 gen_int_mask |= TXXGXS_INT_M;
1844 do_s2io_write_bits(XGXS_INT_STATUS_TXGXS, flag,
1845 &bar0->xgxs_int_mask);
1846 do_s2io_write_bits(TXGXS_ESTORE_UFLOW | TXGXS_TX_SM_ERR |
1847 TXGXS_ECC_SG_ERR | TXGXS_ECC_DB_ERR,
1848 flag, &bar0->xgxs_txgxs_err_mask);
1849 }
1850
1851 if (mask & RX_DMA_INTR) {
1852 gen_int_mask |= RXDMA_INT_M;
1853 do_s2io_write_bits(RXDMA_INT_RC_INT_M | RXDMA_INT_RPA_INT_M |
1854 RXDMA_INT_RDA_INT_M | RXDMA_INT_RTI_INT_M,
1855 flag, &bar0->rxdma_int_mask);
1856 do_s2io_write_bits(RC_PRCn_ECC_DB_ERR | RC_FTC_ECC_DB_ERR |
1857 RC_PRCn_SM_ERR_ALARM | RC_FTC_SM_ERR_ALARM |
1858 RC_PRCn_ECC_SG_ERR | RC_FTC_ECC_SG_ERR |
1859 RC_RDA_FAIL_WR_Rn, flag, &bar0->rc_err_mask);
1860 do_s2io_write_bits(PRC_PCI_AB_RD_Rn | PRC_PCI_AB_WR_Rn |
1861 PRC_PCI_AB_F_WR_Rn | PRC_PCI_DP_RD_Rn |
1862 PRC_PCI_DP_WR_Rn | PRC_PCI_DP_F_WR_Rn, flag,
1863 &bar0->prc_pcix_err_mask);
1864 do_s2io_write_bits(RPA_SM_ERR_ALARM | RPA_CREDIT_ERR |
1865 RPA_ECC_SG_ERR | RPA_ECC_DB_ERR, flag,
1866 &bar0->rpa_err_mask);
1867 do_s2io_write_bits(RDA_RXDn_ECC_DB_ERR | RDA_FRM_ECC_DB_N_AERR |
1868 RDA_SM1_ERR_ALARM | RDA_SM0_ERR_ALARM |
1869 RDA_RXD_ECC_DB_SERR | RDA_RXDn_ECC_SG_ERR |
1870 RDA_FRM_ECC_SG_ERR | RDA_MISC_ERR|RDA_PCIX_ERR,
1871 flag, &bar0->rda_err_mask);
1872 do_s2io_write_bits(RTI_SM_ERR_ALARM |
1873 RTI_ECC_SG_ERR | RTI_ECC_DB_ERR,
1874 flag, &bar0->rti_err_mask);
1875 }
1876
1877 if (mask & RX_MAC_INTR) {
1878 gen_int_mask |= RXMAC_INT_M;
1879 do_s2io_write_bits(MAC_INT_STATUS_RMAC_INT, flag,
1880 &bar0->mac_int_mask);
1881 do_s2io_write_bits(RMAC_RX_BUFF_OVRN | RMAC_RX_SM_ERR |
1882 RMAC_UNUSED_INT | RMAC_SINGLE_ECC_ERR |
1883 RMAC_DOUBLE_ECC_ERR |
1884 RMAC_LINK_STATE_CHANGE_INT,
1885 flag, &bar0->mac_rmac_err_mask);
1886 }
1887
1888 if (mask & RX_XGXS_INTR)
1889 {
1890 gen_int_mask |= RXXGXS_INT_M;
1891 do_s2io_write_bits(XGXS_INT_STATUS_RXGXS, flag,
1892 &bar0->xgxs_int_mask);
1893 do_s2io_write_bits(RXGXS_ESTORE_OFLOW | RXGXS_RX_SM_ERR, flag,
1894 &bar0->xgxs_rxgxs_err_mask);
1895 }
1896
1897 if (mask & MC_INTR) {
1898 gen_int_mask |= MC_INT_M;
1899 do_s2io_write_bits(MC_INT_MASK_MC_INT, flag, &bar0->mc_int_mask);
1900 do_s2io_write_bits(MC_ERR_REG_SM_ERR | MC_ERR_REG_ECC_ALL_SNG |
1901 MC_ERR_REG_ECC_ALL_DBL | PLL_LOCK_N, flag,
1902 &bar0->mc_err_mask);
1903 }
1904 nic->general_int_mask = gen_int_mask;
1905
1906 /* Remove this line when alarm interrupts are enabled */
1907 nic->general_int_mask = 0;
1908}
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001909/**
1910 * en_dis_able_nic_intrs - Enable or Disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 * @nic: device private variable,
1912 * @mask: A mask indicating which Intr block must be modified and,
1913 * @flag: A flag indicating whether to enable or disable the Intrs.
1914 * Description: This function will either disable or enable the interrupts
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001915 * depending on the flag argument. The mask argument can be used to
1916 * enable/disable any Intr block.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 * Return Value: NONE.
1918 */
1919
1920static void en_dis_able_nic_intrs(struct s2io_nic *nic, u16 mask, int flag)
1921{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05001922 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Sivakumar Subramani9caab452007-09-06 06:21:54 -04001923 register u64 temp64 = 0, intr_mask = 0;
1924
1925 intr_mask = nic->general_int_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 /* Top level interrupt classification */
1928 /* PIC Interrupts */
Sivakumar Subramani9caab452007-09-06 06:21:54 -04001929 if (mask & TX_PIC_INTR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 /* Enable PIC Intrs in the general intr mask register */
Sivakumar Subramani9caab452007-09-06 06:21:54 -04001931 intr_mask |= TXPIC_INT_M;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (flag == ENABLE_INTRS) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001933 /*
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07001934 * If Hercules adapter enable GPIO otherwise
Ananda Rajub41477f2006-07-24 19:52:49 -04001935 * disable all PCIX, Flash, MDIO, IIC and GPIO
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001936 * interrupts for now.
1937 * TODO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 */
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07001939 if (s2io_link_fault_indication(nic) ==
1940 LINK_UP_DOWN_INTERRUPT ) {
Sivakumar Subramani9caab452007-09-06 06:21:54 -04001941 do_s2io_write_bits(PIC_INT_GPIO, flag,
1942 &bar0->pic_int_mask);
1943 do_s2io_write_bits(GPIO_INT_MASK_LINK_UP, flag,
1944 &bar0->gpio_int_mask);
1945 } else
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07001946 writeq(DISABLE_ALL_INTRS, &bar0->pic_int_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 } else if (flag == DISABLE_INTRS) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001948 /*
1949 * Disable PIC Intrs in the general
1950 * intr mask register
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 */
1952 writeq(DISABLE_ALL_INTRS, &bar0->pic_int_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
1954 }
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 /* Tx traffic interrupts */
1957 if (mask & TX_TRAFFIC_INTR) {
Sivakumar Subramani9caab452007-09-06 06:21:54 -04001958 intr_mask |= TXTRAFFIC_INT_M;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 if (flag == ENABLE_INTRS) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001960 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 * Enable all the Tx side interrupts
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001962 * writing 0 Enables all 64 TX interrupt levels
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 */
1964 writeq(0x0, &bar0->tx_traffic_mask);
1965 } else if (flag == DISABLE_INTRS) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001966 /*
1967 * Disable Tx Traffic Intrs in the general intr mask
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 * register.
1969 */
1970 writeq(DISABLE_ALL_INTRS, &bar0->tx_traffic_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 }
1972 }
1973
1974 /* Rx traffic interrupts */
1975 if (mask & RX_TRAFFIC_INTR) {
Sivakumar Subramani9caab452007-09-06 06:21:54 -04001976 intr_mask |= RXTRAFFIC_INT_M;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 if (flag == ENABLE_INTRS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 /* writing 0 Enables all 8 RX interrupt levels */
1979 writeq(0x0, &bar0->rx_traffic_mask);
1980 } else if (flag == DISABLE_INTRS) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07001981 /*
1982 * Disable Rx Traffic Intrs in the general intr mask
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 * register.
1984 */
1985 writeq(DISABLE_ALL_INTRS, &bar0->rx_traffic_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987 }
Sivakumar Subramani9caab452007-09-06 06:21:54 -04001988
1989 temp64 = readq(&bar0->general_int_mask);
1990 if (flag == ENABLE_INTRS)
1991 temp64 &= ~((u64) intr_mask);
1992 else
1993 temp64 = DISABLE_ALL_INTRS;
1994 writeq(temp64, &bar0->general_int_mask);
1995
1996 nic->general_int_mask = readq(&bar0->general_int_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997}
1998
Sivakumar Subramani19a60522007-01-31 13:30:49 -05001999/**
2000 * verify_pcc_quiescent- Checks for PCC quiescent state
2001 * Return: 1 If PCC is quiescence
2002 * 0 If PCC is not quiescence
2003 */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002004static int verify_pcc_quiescent(struct s2io_nic *sp, int flag)
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002005{
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002006 int ret = 0, herc;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002007 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002008 u64 val64 = readq(&bar0->adapter_status);
2009
2010 herc = (sp->device_type == XFRAME_II_DEVICE);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002011
2012 if (flag == FALSE) {
Auke Kok44c10132007-06-08 15:46:36 -07002013 if ((!herc && (sp->pdev->revision >= 4)) || herc) {
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002014 if (!(val64 & ADAPTER_STATUS_RMAC_PCC_IDLE))
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07002015 ret = 1;
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002016 } else {
2017 if (!(val64 & ADAPTER_STATUS_RMAC_PCC_FOUR_IDLE))
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07002018 ret = 1;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002019 }
2020 } else {
Auke Kok44c10132007-06-08 15:46:36 -07002021 if ((!herc && (sp->pdev->revision >= 4)) || herc) {
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07002022 if (((val64 & ADAPTER_STATUS_RMAC_PCC_IDLE) ==
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002023 ADAPTER_STATUS_RMAC_PCC_IDLE))
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07002024 ret = 1;
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07002025 } else {
2026 if (((val64 & ADAPTER_STATUS_RMAC_PCC_FOUR_IDLE) ==
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002027 ADAPTER_STATUS_RMAC_PCC_FOUR_IDLE))
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07002028 ret = 1;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002029 }
2030 }
2031
2032 return ret;
2033}
2034/**
2035 * verify_xena_quiescence - Checks whether the H/W is ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 * Description: Returns whether the H/W is ready to go or not. Depending
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002037 * on whether adapter enable bit was written or not the comparison
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 * differs and the calling function passes the input argument flag to
2039 * indicate this.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002040 * Return: 1 If xena is quiescence
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 * 0 If Xena is not quiescence
2042 */
2043
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002044static int verify_xena_quiescence(struct s2io_nic *sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002046 int mode;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002047 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002048 u64 val64 = readq(&bar0->adapter_status);
2049 mode = s2io_verify_pci_mode(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002051 if (!(val64 & ADAPTER_STATUS_TDMA_READY)) {
2052 DBG_PRINT(ERR_DBG, "%s", "TDMA is not ready!");
2053 return 0;
2054 }
2055 if (!(val64 & ADAPTER_STATUS_RDMA_READY)) {
2056 DBG_PRINT(ERR_DBG, "%s", "RDMA is not ready!");
2057 return 0;
2058 }
2059 if (!(val64 & ADAPTER_STATUS_PFC_READY)) {
2060 DBG_PRINT(ERR_DBG, "%s", "PFC is not ready!");
2061 return 0;
2062 }
2063 if (!(val64 & ADAPTER_STATUS_TMAC_BUF_EMPTY)) {
2064 DBG_PRINT(ERR_DBG, "%s", "TMAC BUF is not empty!");
2065 return 0;
2066 }
2067 if (!(val64 & ADAPTER_STATUS_PIC_QUIESCENT)) {
2068 DBG_PRINT(ERR_DBG, "%s", "PIC is not QUIESCENT!");
2069 return 0;
2070 }
2071 if (!(val64 & ADAPTER_STATUS_MC_DRAM_READY)) {
2072 DBG_PRINT(ERR_DBG, "%s", "MC_DRAM is not ready!");
2073 return 0;
2074 }
2075 if (!(val64 & ADAPTER_STATUS_MC_QUEUES_READY)) {
2076 DBG_PRINT(ERR_DBG, "%s", "MC_QUEUES is not ready!");
2077 return 0;
2078 }
2079 if (!(val64 & ADAPTER_STATUS_M_PLL_LOCK)) {
2080 DBG_PRINT(ERR_DBG, "%s", "M_PLL is not locked!");
2081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 }
2083
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002084 /*
2085 * In PCI 33 mode, the P_PLL is not used, and therefore,
2086 * the the P_PLL_LOCK bit in the adapter_status register will
2087 * not be asserted.
2088 */
2089 if (!(val64 & ADAPTER_STATUS_P_PLL_LOCK) &&
2090 sp->device_type == XFRAME_II_DEVICE && mode !=
2091 PCI_MODE_PCI_33) {
2092 DBG_PRINT(ERR_DBG, "%s", "P_PLL is not locked!");
2093 return 0;
2094 }
2095 if (!((val64 & ADAPTER_STATUS_RC_PRC_QUIESCENT) ==
2096 ADAPTER_STATUS_RC_PRC_QUIESCENT)) {
2097 DBG_PRINT(ERR_DBG, "%s", "RC_PRC is not QUIESCENT!");
2098 return 0;
2099 }
2100 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
2103/**
2104 * fix_mac_address - Fix for Mac addr problem on Alpha platforms
2105 * @sp: Pointer to device specifc structure
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002106 * Description :
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 * New procedure to clear mac address reading problems on Alpha platforms
2108 *
2109 */
2110
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002111static void fix_mac_address(struct s2io_nic * sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002113 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 u64 val64;
2115 int i = 0;
2116
2117 while (fix_mac[i] != END_SIGN) {
2118 writeq(fix_mac[i++], &bar0->gpio_control);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002119 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 val64 = readq(&bar0->gpio_control);
2121 }
2122}
2123
2124/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002125 * start_nic - Turns the device on
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 * @nic : device private variable.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002127 * Description:
2128 * This function actually turns the device on. Before this function is
2129 * called,all Registers are configured from their reset states
2130 * and shared memory is allocated but the NIC is still quiescent. On
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 * calling this function, the device interrupts are cleared and the NIC is
2132 * literally switched on by writing into the adapter control register.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002133 * Return Value:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 * SUCCESS on success and -1 on failure.
2135 */
2136
2137static int start_nic(struct s2io_nic *nic)
2138{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002139 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 struct net_device *dev = nic->dev;
2141 register u64 val64 = 0;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002142 u16 subid, i;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002143 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 struct config_param *config;
2145
2146 mac_control = &nic->mac_control;
2147 config = &nic->config;
2148
2149 /* PRC Initialization and configuration */
2150 for (i = 0; i < config->rx_ring_num; i++) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002151 writeq((u64) mac_control->rings[i].rx_blocks[0].block_dma_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 &bar0->prc_rxd0_n[i]);
2153
2154 val64 = readq(&bar0->prc_ctrl_n[i]);
raghavendra.koushik@neterion.comb6e3f982005-08-03 12:38:01 -07002155 if (nic->config.bimodal)
2156 val64 |= PRC_CTRL_BIMODAL_INTERRUPT;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002157 if (nic->rxd_mode == RXD_MODE_1)
2158 val64 |= PRC_CTRL_RC_ENABLED;
2159 else
2160 val64 |= PRC_CTRL_RC_ENABLED | PRC_CTRL_RING_MODE_3;
Ananda Raju863c11a2006-04-21 19:03:13 -04002161 if (nic->device_type == XFRAME_II_DEVICE)
2162 val64 |= PRC_CTRL_GROUP_READS;
2163 val64 &= ~PRC_CTRL_RXD_BACKOFF_INTERVAL(0xFFFFFF);
2164 val64 |= PRC_CTRL_RXD_BACKOFF_INTERVAL(0x1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 writeq(val64, &bar0->prc_ctrl_n[i]);
2166 }
2167
Ananda Rajuda6971d2005-10-31 16:55:31 -05002168 if (nic->rxd_mode == RXD_MODE_3B) {
2169 /* Enabling 2 buffer mode by writing into Rx_pa_cfg reg. */
2170 val64 = readq(&bar0->rx_pa_cfg);
2171 val64 |= RX_PA_CFG_IGNORE_L2_ERR;
2172 writeq(val64, &bar0->rx_pa_cfg);
2173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Sivakumar Subramani926930b2007-02-24 01:59:39 -05002175 if (vlan_tag_strip == 0) {
2176 val64 = readq(&bar0->rx_pa_cfg);
2177 val64 &= ~RX_PA_CFG_STRIP_VLAN_TAG;
2178 writeq(val64, &bar0->rx_pa_cfg);
2179 vlan_strip_flag = 0;
2180 }
2181
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002182 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 * Enabling MC-RLDRAM. After enabling the device, we timeout
2184 * for around 100ms, which is approximately the time required
2185 * for the device to be ready for operation.
2186 */
2187 val64 = readq(&bar0->mc_rldram_mrs);
2188 val64 |= MC_RLDRAM_QUEUE_SIZE_ENABLE | MC_RLDRAM_MRS_ENABLE;
2189 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_mrs, UF);
2190 val64 = readq(&bar0->mc_rldram_mrs);
2191
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002192 msleep(100); /* Delay by around 100 ms. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 /* Enabling ECC Protection. */
2195 val64 = readq(&bar0->adapter_control);
2196 val64 &= ~ADAPTER_ECC_EN;
2197 writeq(val64, &bar0->adapter_control);
2198
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002199 /*
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002200 * Verify if the device is ready to be enabled, if so enable
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 * it.
2202 */
2203 val64 = readq(&bar0->adapter_status);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002204 if (!verify_xena_quiescence(nic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 DBG_PRINT(ERR_DBG, "%s: device is not ready, ", dev->name);
2206 DBG_PRINT(ERR_DBG, "Adapter status reads: 0x%llx\n",
2207 (unsigned long long) val64);
2208 return FAILURE;
2209 }
2210
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002211 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 * With some switches, link might be already up at this point.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002213 * Because of this weird behavior, when we enable laser,
2214 * we may not get link. We need to handle this. We cannot
2215 * figure out which switch is misbehaving. So we are forced to
2216 * make a global change.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 */
2218
2219 /* Enabling Laser. */
2220 val64 = readq(&bar0->adapter_control);
2221 val64 |= ADAPTER_EOI_TX_ON;
2222 writeq(val64, &bar0->adapter_control);
2223
Ananda Rajuc92ca042006-04-21 19:18:03 -04002224 if (s2io_link_fault_indication(nic) == MAC_RMAC_ERR_TIMER) {
2225 /*
2226 * Dont see link state interrupts initally on some switches,
2227 * so directly scheduling the link state task here.
2228 */
2229 schedule_work(&nic->set_link_task);
2230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 /* SXE-002: Initialize link and activity LED */
2232 subid = nic->pdev->subsystem_device;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07002233 if (((subid & 0xFF) >= 0x07) &&
2234 (nic->device_type == XFRAME_I_DEVICE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 val64 = readq(&bar0->gpio_control);
2236 val64 |= 0x0000800000000000ULL;
2237 writeq(val64, &bar0->gpio_control);
2238 val64 = 0x0411040400000000ULL;
viro@ftp.linux.org.uk509a2672005-09-05 03:25:58 +01002239 writeq(val64, (void __iomem *)bar0 + 0x2700);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return SUCCESS;
2243}
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002244/**
2245 * s2io_txdl_getskb - Get the skb from txdl, unmap and return skb
2246 */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002247static struct sk_buff *s2io_txdl_getskb(struct fifo_info *fifo_data, struct \
2248 TxD *txdlp, int get_off)
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002249{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002250 struct s2io_nic *nic = fifo_data->nic;
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002251 struct sk_buff *skb;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002252 struct TxD *txds;
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002253 u16 j, frg_cnt;
2254
2255 txds = txdlp;
Andrew Morton26b76252005-12-14 19:25:23 -08002256 if (txds->Host_Control == (u64)(long)nic->ufo_in_band_v) {
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002257 pci_unmap_single(nic->pdev, (dma_addr_t)
2258 txds->Buffer_Pointer, sizeof(u64),
2259 PCI_DMA_TODEVICE);
2260 txds++;
2261 }
2262
2263 skb = (struct sk_buff *) ((unsigned long)
2264 txds->Host_Control);
2265 if (!skb) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002266 memset(txdlp, 0, (sizeof(struct TxD) * fifo_data->max_txds));
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002267 return NULL;
2268 }
2269 pci_unmap_single(nic->pdev, (dma_addr_t)
2270 txds->Buffer_Pointer,
2271 skb->len - skb->data_len,
2272 PCI_DMA_TODEVICE);
2273 frg_cnt = skb_shinfo(skb)->nr_frags;
2274 if (frg_cnt) {
2275 txds++;
2276 for (j = 0; j < frg_cnt; j++, txds++) {
2277 skb_frag_t *frag = &skb_shinfo(skb)->frags[j];
2278 if (!txds->Buffer_Pointer)
2279 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002280 pci_unmap_page(nic->pdev, (dma_addr_t)
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002281 txds->Buffer_Pointer,
2282 frag->size, PCI_DMA_TODEVICE);
2283 }
2284 }
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002285 memset(txdlp,0, (sizeof(struct TxD) * fifo_data->max_txds));
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002286 return(skb);
2287}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002289/**
2290 * free_tx_buffers - Free all queued Tx buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 * @nic : device private variable.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002292 * Description:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 * Free all queued Tx buffers.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002294 * Return Value: void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295*/
2296
2297static void free_tx_buffers(struct s2io_nic *nic)
2298{
2299 struct net_device *dev = nic->dev;
2300 struct sk_buff *skb;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002301 struct TxD *txdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 int i, j;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002303 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 struct config_param *config;
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002305 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 mac_control = &nic->mac_control;
2308 config = &nic->config;
2309
2310 for (i = 0; i < config->tx_fifo_num; i++) {
2311 for (j = 0; j < config->tx_cfg[i].fifo_len - 1; j++) {
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04002312 txdp = (struct TxD *) \
2313 mac_control->fifos[i].list_info[j].list_virt_addr;
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002314 skb = s2io_txdl_getskb(&mac_control->fifos[i], txdp, j);
2315 if (skb) {
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04002316 nic->mac_control.stats_info->sw_stat.mem_freed
2317 += skb->truesize;
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002318 dev_kfree_skb(skb);
2319 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 }
2322 DBG_PRINT(INTR_DBG,
2323 "%s:forcibly freeing %d skbs on FIFO%d\n",
2324 dev->name, cnt, i);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002325 mac_control->fifos[i].tx_curr_get_info.offset = 0;
2326 mac_control->fifos[i].tx_curr_put_info.offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328}
2329
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002330/**
2331 * stop_nic - To stop the nic
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 * @nic ; device private variable.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002333 * Description:
2334 * This function does exactly the opposite of what the start_nic()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 * function does. This function is called to stop the device.
2336 * Return Value:
2337 * void.
2338 */
2339
2340static void stop_nic(struct s2io_nic *nic)
2341{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002342 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 register u64 val64 = 0;
Ananda Raju5d3213c2006-04-21 19:23:26 -04002344 u16 interruptible;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002345 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 struct config_param *config;
2347
2348 mac_control = &nic->mac_control;
2349 config = &nic->config;
2350
2351 /* Disable all interrupts */
Sivakumar Subramani9caab452007-09-06 06:21:54 -04002352 en_dis_err_alarms(nic, ENA_ALL_INTRS, DISABLE_INTRS);
ravinandan.arakali@neterion.come960fc52005-08-12 10:15:59 -07002353 interruptible = TX_TRAFFIC_INTR | RX_TRAFFIC_INTR;
Sivakumar Subramani9caab452007-09-06 06:21:54 -04002354 interruptible |= TX_PIC_INTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 en_dis_able_nic_intrs(nic, interruptible, DISABLE_INTRS);
2356
Ananda Raju5d3213c2006-04-21 19:23:26 -04002357 /* Clearing Adapter_En bit of ADAPTER_CONTROL Register */
2358 val64 = readq(&bar0->adapter_control);
2359 val64 &= ~(ADAPTER_CNTL_EN);
2360 writeq(val64, &bar0->adapter_control);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002363/**
2364 * fill_rx_buffers - Allocates the Rx side skbs
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 * @nic: device private variable
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002366 * @ring_no: ring number
2367 * Description:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 * The function allocates Rx side skbs and puts the physical
2369 * address of these buffers into the RxD buffer pointers, so that the NIC
2370 * can DMA the received frame into these locations.
2371 * The NIC supports 3 receive modes, viz
2372 * 1. single buffer,
2373 * 2. three buffer and
2374 * 3. Five buffer modes.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002375 * Each mode defines how many fragments the received frame will be split
2376 * up into by the NIC. The frame is split into L3 header, L4 Header,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 * L4 payload in three buffer mode and in 5 buffer mode, L4 payload itself
2378 * is split into 3 fragments. As of now only single buffer mode is
2379 * supported.
2380 * Return Value:
2381 * SUCCESS on success or an appropriate -ve value on failure.
2382 */
2383
Adrian Bunkac1f60d2005-11-06 01:46:47 +01002384static int fill_rx_buffers(struct s2io_nic *nic, int ring_no)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
2386 struct net_device *dev = nic->dev;
2387 struct sk_buff *skb;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002388 struct RxD_t *rxdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 int off, off1, size, block_no, block_no1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 u32 alloc_tab = 0;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002391 u32 alloc_cnt;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002392 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 struct config_param *config;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002394 u64 tmp;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002395 struct buffAdd *ba;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 unsigned long flags;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002397 struct RxD_t *first_rxdp = NULL;
Ramkrishna Vepa363dc362007-03-06 17:01:00 -08002398 u64 Buffer0_ptr = 0, Buffer1_ptr = 0;
Veena Parat6d517a22007-07-23 02:20:51 -04002399 struct RxD1 *rxdp1;
2400 struct RxD3 *rxdp3;
Veena Parat491abf22007-07-23 02:37:14 -04002401 struct swStat *stats = &nic->mac_control.stats_info->sw_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403 mac_control = &nic->mac_control;
2404 config = &nic->config;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002405 alloc_cnt = mac_control->rings[ring_no].pkt_cnt -
2406 atomic_read(&nic->rx_bufs_left[ring_no]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Ananda Raju5d3213c2006-04-21 19:23:26 -04002408 block_no1 = mac_control->rings[ring_no].rx_curr_get_info.block_index;
Ananda Raju863c11a2006-04-21 19:03:13 -04002409 off1 = mac_control->rings[ring_no].rx_curr_get_info.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 while (alloc_tab < alloc_cnt) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002411 block_no = mac_control->rings[ring_no].rx_curr_put_info.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 block_index;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002413 off = mac_control->rings[ring_no].rx_curr_put_info.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
Ananda Rajuda6971d2005-10-31 16:55:31 -05002415 rxdp = mac_control->rings[ring_no].
2416 rx_blocks[block_no].rxds[off].virt_addr;
2417
2418 if ((block_no == block_no1) && (off == off1) &&
2419 (rxdp->Host_Control)) {
2420 DBG_PRINT(INTR_DBG, "%s: Get and Put",
2421 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 DBG_PRINT(INTR_DBG, " info equated\n");
2423 goto end;
2424 }
Ananda Rajuda6971d2005-10-31 16:55:31 -05002425 if (off && (off == rxd_count[nic->rxd_mode])) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002426 mac_control->rings[ring_no].rx_curr_put_info.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 block_index++;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002428 if (mac_control->rings[ring_no].rx_curr_put_info.
2429 block_index == mac_control->rings[ring_no].
2430 block_count)
2431 mac_control->rings[ring_no].rx_curr_put_info.
2432 block_index = 0;
2433 block_no = mac_control->rings[ring_no].
2434 rx_curr_put_info.block_index;
2435 if (off == rxd_count[nic->rxd_mode])
2436 off = 0;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002437 mac_control->rings[ring_no].rx_curr_put_info.
Ananda Rajuda6971d2005-10-31 16:55:31 -05002438 offset = off;
2439 rxdp = mac_control->rings[ring_no].
2440 rx_blocks[block_no].block_virt_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 DBG_PRINT(INTR_DBG, "%s: Next block at: %p\n",
2442 dev->name, rxdp);
2443 }
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05002444 if(!napi) {
2445 spin_lock_irqsave(&nic->put_lock, flags);
2446 mac_control->rings[ring_no].put_pos =
2447 (block_no * (rxd_count[nic->rxd_mode] + 1)) + off;
2448 spin_unlock_irqrestore(&nic->put_lock, flags);
2449 } else {
2450 mac_control->rings[ring_no].put_pos =
2451 (block_no * (rxd_count[nic->rxd_mode] + 1)) + off;
2452 }
Ananda Rajuda6971d2005-10-31 16:55:31 -05002453 if ((rxdp->Control_1 & RXD_OWN_XENA) &&
Veena Parat6d517a22007-07-23 02:20:51 -04002454 ((nic->rxd_mode == RXD_MODE_3B) &&
Ananda Rajuda6971d2005-10-31 16:55:31 -05002455 (rxdp->Control_2 & BIT(0)))) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002456 mac_control->rings[ring_no].rx_curr_put_info.
Ananda Rajuda6971d2005-10-31 16:55:31 -05002457 offset = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 goto end;
2459 }
Ananda Rajuda6971d2005-10-31 16:55:31 -05002460 /* calculate size of skb based on ring mode */
2461 size = dev->mtu + HEADER_ETHERNET_II_802_3_SIZE +
2462 HEADER_802_2_SIZE + HEADER_SNAP_SIZE;
2463 if (nic->rxd_mode == RXD_MODE_1)
2464 size += NET_IP_ALIGN;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002465 else
Veena Parat6d517a22007-07-23 02:20:51 -04002466 size = dev->mtu + ALIGN_SIZE + BUF0_LEN + 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Ananda Rajuda6971d2005-10-31 16:55:31 -05002468 /* allocate skb */
2469 skb = dev_alloc_skb(size);
2470 if(!skb) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08002471 DBG_PRINT(INFO_DBG, "%s: Out of ", dev->name);
2472 DBG_PRINT(INFO_DBG, "memory to allocate SKBs\n");
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07002473 if (first_rxdp) {
2474 wmb();
2475 first_rxdp->Control_1 |= RXD_OWN_XENA;
2476 }
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04002477 nic->mac_control.stats_info->sw_stat. \
2478 mem_alloc_fail_cnt++;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002479 return -ENOMEM ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04002481 nic->mac_control.stats_info->sw_stat.mem_allocated
2482 += skb->truesize;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002483 if (nic->rxd_mode == RXD_MODE_1) {
2484 /* 1 buffer mode - normal operation mode */
Veena Parat6d517a22007-07-23 02:20:51 -04002485 rxdp1 = (struct RxD1*)rxdp;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002486 memset(rxdp, 0, sizeof(struct RxD1));
Ananda Rajuda6971d2005-10-31 16:55:31 -05002487 skb_reserve(skb, NET_IP_ALIGN);
Veena Parat6d517a22007-07-23 02:20:51 -04002488 rxdp1->Buffer0_ptr = pci_map_single
Ananda Raju863c11a2006-04-21 19:03:13 -04002489 (nic->pdev, skb->data, size - NET_IP_ALIGN,
2490 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04002491 if( (rxdp1->Buffer0_ptr == 0) ||
2492 (rxdp1->Buffer0_ptr ==
2493 DMA_ERROR_CODE))
2494 goto pci_map_failed;
2495
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04002496 rxdp->Control_2 =
2497 SET_BUFFER0_SIZE_1(size - NET_IP_ALIGN);
Ananda Rajuda6971d2005-10-31 16:55:31 -05002498
Veena Parat6d517a22007-07-23 02:20:51 -04002499 } else if (nic->rxd_mode == RXD_MODE_3B) {
Ananda Rajuda6971d2005-10-31 16:55:31 -05002500 /*
Veena Parat6d517a22007-07-23 02:20:51 -04002501 * 2 buffer mode -
2502 * 2 buffer mode provides 128
Ananda Rajuda6971d2005-10-31 16:55:31 -05002503 * byte aligned receive buffers.
Ananda Rajuda6971d2005-10-31 16:55:31 -05002504 */
2505
Veena Parat6d517a22007-07-23 02:20:51 -04002506 rxdp3 = (struct RxD3*)rxdp;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04002507 /* save buffer pointers to avoid frequent dma mapping */
Veena Parat6d517a22007-07-23 02:20:51 -04002508 Buffer0_ptr = rxdp3->Buffer0_ptr;
2509 Buffer1_ptr = rxdp3->Buffer1_ptr;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002510 memset(rxdp, 0, sizeof(struct RxD3));
Ramkrishna Vepa363dc362007-03-06 17:01:00 -08002511 /* restore the buffer pointers for dma sync*/
Veena Parat6d517a22007-07-23 02:20:51 -04002512 rxdp3->Buffer0_ptr = Buffer0_ptr;
2513 rxdp3->Buffer1_ptr = Buffer1_ptr;
Ramkrishna Vepa363dc362007-03-06 17:01:00 -08002514
Ananda Rajuda6971d2005-10-31 16:55:31 -05002515 ba = &mac_control->rings[ring_no].ba[block_no][off];
2516 skb_reserve(skb, BUF0_LEN);
2517 tmp = (u64)(unsigned long) skb->data;
2518 tmp += ALIGN_SIZE;
2519 tmp &= ~ALIGN_SIZE;
2520 skb->data = (void *) (unsigned long)tmp;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002521 skb_reset_tail_pointer(skb);
Ananda Rajuda6971d2005-10-31 16:55:31 -05002522
Veena Parat6d517a22007-07-23 02:20:51 -04002523 if (!(rxdp3->Buffer0_ptr))
2524 rxdp3->Buffer0_ptr =
Ananda Raju75c30b12006-07-24 19:55:09 -04002525 pci_map_single(nic->pdev, ba->ba_0, BUF0_LEN,
Ananda Rajuda6971d2005-10-31 16:55:31 -05002526 PCI_DMA_FROMDEVICE);
Ananda Raju75c30b12006-07-24 19:55:09 -04002527 else
2528 pci_dma_sync_single_for_device(nic->pdev,
Veena Parat6d517a22007-07-23 02:20:51 -04002529 (dma_addr_t) rxdp3->Buffer0_ptr,
Ananda Raju75c30b12006-07-24 19:55:09 -04002530 BUF0_LEN, PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04002531 if( (rxdp3->Buffer0_ptr == 0) ||
2532 (rxdp3->Buffer0_ptr == DMA_ERROR_CODE))
2533 goto pci_map_failed;
2534
Ananda Rajuda6971d2005-10-31 16:55:31 -05002535 rxdp->Control_2 = SET_BUFFER0_SIZE_3(BUF0_LEN);
2536 if (nic->rxd_mode == RXD_MODE_3B) {
2537 /* Two buffer mode */
2538
2539 /*
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002540 * Buffer2 will have L3/L4 header plus
Ananda Rajuda6971d2005-10-31 16:55:31 -05002541 * L4 payload
2542 */
Veena Parat6d517a22007-07-23 02:20:51 -04002543 rxdp3->Buffer2_ptr = pci_map_single
Ananda Rajuda6971d2005-10-31 16:55:31 -05002544 (nic->pdev, skb->data, dev->mtu + 4,
2545 PCI_DMA_FROMDEVICE);
2546
Veena Parat491abf22007-07-23 02:37:14 -04002547 if( (rxdp3->Buffer2_ptr == 0) ||
2548 (rxdp3->Buffer2_ptr == DMA_ERROR_CODE))
2549 goto pci_map_failed;
2550
2551 rxdp3->Buffer1_ptr =
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002552 pci_map_single(nic->pdev,
Ananda Raju75c30b12006-07-24 19:55:09 -04002553 ba->ba_1, BUF1_LEN,
2554 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04002555 if( (rxdp3->Buffer1_ptr == 0) ||
2556 (rxdp3->Buffer1_ptr == DMA_ERROR_CODE)) {
2557 pci_unmap_single
2558 (nic->pdev,
Al Viro3e847422007-08-02 19:21:30 +01002559 (dma_addr_t)rxdp3->Buffer2_ptr,
Veena Parat491abf22007-07-23 02:37:14 -04002560 dev->mtu + 4,
2561 PCI_DMA_FROMDEVICE);
2562 goto pci_map_failed;
Ananda Raju75c30b12006-07-24 19:55:09 -04002563 }
Ananda Rajuda6971d2005-10-31 16:55:31 -05002564 rxdp->Control_2 |= SET_BUFFER1_SIZE_3(1);
2565 rxdp->Control_2 |= SET_BUFFER2_SIZE_3
2566 (dev->mtu + 4);
Ananda Rajuda6971d2005-10-31 16:55:31 -05002567 }
2568 rxdp->Control_2 |= BIT(0);
2569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 rxdp->Host_Control = (unsigned long) (skb);
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07002571 if (alloc_tab & ((1 << rxsync_frequency) - 1))
2572 rxdp->Control_1 |= RXD_OWN_XENA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 off++;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002574 if (off == (rxd_count[nic->rxd_mode] + 1))
2575 off = 0;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002576 mac_control->rings[ring_no].rx_curr_put_info.offset = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07002578 rxdp->Control_2 |= SET_RXD_MARKER;
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07002579 if (!(alloc_tab & ((1 << rxsync_frequency) - 1))) {
2580 if (first_rxdp) {
2581 wmb();
2582 first_rxdp->Control_1 |= RXD_OWN_XENA;
2583 }
2584 first_rxdp = rxdp;
2585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 atomic_inc(&nic->rx_bufs_left[ring_no]);
2587 alloc_tab++;
2588 }
2589
2590 end:
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07002591 /* Transfer ownership of first descriptor to adapter just before
2592 * exiting. Before that, use memory barrier so that ownership
2593 * and other fields are seen by adapter correctly.
2594 */
2595 if (first_rxdp) {
2596 wmb();
2597 first_rxdp->Control_1 |= RXD_OWN_XENA;
2598 }
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 return SUCCESS;
Veena Parat491abf22007-07-23 02:37:14 -04002601pci_map_failed:
2602 stats->pci_map_fail_cnt++;
2603 stats->mem_freed += skb->truesize;
2604 dev_kfree_skb_irq(skb);
2605 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606}
2607
Ananda Rajuda6971d2005-10-31 16:55:31 -05002608static void free_rxd_blk(struct s2io_nic *sp, int ring_no, int blk)
2609{
2610 struct net_device *dev = sp->dev;
2611 int j;
2612 struct sk_buff *skb;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002613 struct RxD_t *rxdp;
2614 struct mac_info *mac_control;
2615 struct buffAdd *ba;
Veena Parat6d517a22007-07-23 02:20:51 -04002616 struct RxD1 *rxdp1;
2617 struct RxD3 *rxdp3;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002618
2619 mac_control = &sp->mac_control;
2620 for (j = 0 ; j < rxd_count[sp->rxd_mode]; j++) {
2621 rxdp = mac_control->rings[ring_no].
2622 rx_blocks[blk].rxds[j].virt_addr;
2623 skb = (struct sk_buff *)
2624 ((unsigned long) rxdp->Host_Control);
2625 if (!skb) {
2626 continue;
2627 }
2628 if (sp->rxd_mode == RXD_MODE_1) {
Veena Parat6d517a22007-07-23 02:20:51 -04002629 rxdp1 = (struct RxD1*)rxdp;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002630 pci_unmap_single(sp->pdev, (dma_addr_t)
Veena Parat6d517a22007-07-23 02:20:51 -04002631 rxdp1->Buffer0_ptr,
2632 dev->mtu +
2633 HEADER_ETHERNET_II_802_3_SIZE
2634 + HEADER_802_2_SIZE +
2635 HEADER_SNAP_SIZE,
2636 PCI_DMA_FROMDEVICE);
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002637 memset(rxdp, 0, sizeof(struct RxD1));
Ananda Rajuda6971d2005-10-31 16:55:31 -05002638 } else if(sp->rxd_mode == RXD_MODE_3B) {
Veena Parat6d517a22007-07-23 02:20:51 -04002639 rxdp3 = (struct RxD3*)rxdp;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002640 ba = &mac_control->rings[ring_no].
2641 ba[blk][j];
2642 pci_unmap_single(sp->pdev, (dma_addr_t)
Veena Parat6d517a22007-07-23 02:20:51 -04002643 rxdp3->Buffer0_ptr,
2644 BUF0_LEN,
Ananda Rajuda6971d2005-10-31 16:55:31 -05002645 PCI_DMA_FROMDEVICE);
2646 pci_unmap_single(sp->pdev, (dma_addr_t)
Veena Parat6d517a22007-07-23 02:20:51 -04002647 rxdp3->Buffer1_ptr,
2648 BUF1_LEN,
Ananda Rajuda6971d2005-10-31 16:55:31 -05002649 PCI_DMA_FROMDEVICE);
2650 pci_unmap_single(sp->pdev, (dma_addr_t)
Veena Parat6d517a22007-07-23 02:20:51 -04002651 rxdp3->Buffer2_ptr,
2652 dev->mtu + 4,
Ananda Rajuda6971d2005-10-31 16:55:31 -05002653 PCI_DMA_FROMDEVICE);
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002654 memset(rxdp, 0, sizeof(struct RxD3));
Ananda Rajuda6971d2005-10-31 16:55:31 -05002655 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04002656 sp->mac_control.stats_info->sw_stat.mem_freed += skb->truesize;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002657 dev_kfree_skb(skb);
2658 atomic_dec(&sp->rx_bufs_left[ring_no]);
2659 }
2660}
2661
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002663 * free_rx_buffers - Frees all Rx buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 * @sp: device private variable.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002665 * Description:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 * This function will free all Rx buffers allocated by host.
2667 * Return Value:
2668 * NONE.
2669 */
2670
2671static void free_rx_buffers(struct s2io_nic *sp)
2672{
2673 struct net_device *dev = sp->dev;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002674 int i, blk = 0, buf_cnt = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002675 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 struct config_param *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 mac_control = &sp->mac_control;
2679 config = &sp->config;
2680
2681 for (i = 0; i < config->rx_ring_num; i++) {
Ananda Rajuda6971d2005-10-31 16:55:31 -05002682 for (blk = 0; blk < rx_ring_sz[i]; blk++)
2683 free_rxd_blk(sp,i,blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002685 mac_control->rings[i].rx_curr_put_info.block_index = 0;
2686 mac_control->rings[i].rx_curr_get_info.block_index = 0;
2687 mac_control->rings[i].rx_curr_put_info.offset = 0;
2688 mac_control->rings[i].rx_curr_get_info.offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 atomic_set(&sp->rx_bufs_left[i], 0);
2690 DBG_PRINT(INIT_DBG, "%s:Freed 0x%x Rx Buffers on ring%d\n",
2691 dev->name, buf_cnt, i);
2692 }
2693}
2694
2695/**
2696 * s2io_poll - Rx interrupt handler for NAPI support
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002697 * @napi : pointer to the napi structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002698 * @budget : The number of packets that were budgeted to be processed
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 * during one pass through the 'Poll" function.
2700 * Description:
2701 * Comes into picture only if NAPI support has been incorporated. It does
2702 * the same thing that rx_intr_handler does, but not in a interrupt context
2703 * also It will process only a given number of packets.
2704 * Return value:
2705 * 0 on success and 1 if there are No Rx packets to be processed.
2706 */
2707
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002708static int s2io_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002710 struct s2io_nic *nic = container_of(napi, struct s2io_nic, napi);
2711 struct net_device *dev = nic->dev;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002712 int pkt_cnt = 0, org_pkts_to_process;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002713 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 struct config_param *config;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002715 struct XENA_dev_config __iomem *bar0 = nic->bar0;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002716 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07002718 if (!is_s2io_card_up(nic))
Sivakumar Subramani92b84432007-09-06 06:51:14 -04002719 return 0;
Sivakumar Subramani92b84432007-09-06 06:51:14 -04002720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 mac_control = &nic->mac_control;
2722 config = &nic->config;
2723
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002724 nic->pkts_to_process = budget;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002725 org_pkts_to_process = nic->pkts_to_process;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002727 writeq(S2IO_MINUS_ONE, &bar0->rx_traffic_int);
2728 readl(&bar0->rx_traffic_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730 for (i = 0; i < config->rx_ring_num; i++) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002731 rx_intr_handler(&mac_control->rings[i]);
2732 pkt_cnt = org_pkts_to_process - nic->pkts_to_process;
2733 if (!nic->pkts_to_process) {
2734 /* Quota for the current iteration has been met */
2735 goto no_rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002739 netif_rx_complete(dev, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740
2741 for (i = 0; i < config->rx_ring_num; i++) {
2742 if (fill_rx_buffers(nic, i) == -ENOMEM) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08002743 DBG_PRINT(INFO_DBG, "%s:Out of memory", dev->name);
2744 DBG_PRINT(INFO_DBG, " in Rx Poll!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 break;
2746 }
2747 }
2748 /* Re enable the Rx interrupts. */
Ananda Rajuc92ca042006-04-21 19:18:03 -04002749 writeq(0x0, &bar0->rx_traffic_mask);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05002750 readl(&bar0->rx_traffic_mask);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002751 return pkt_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002753no_rx:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 for (i = 0; i < config->rx_ring_num; i++) {
2755 if (fill_rx_buffers(nic, i) == -ENOMEM) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08002756 DBG_PRINT(INFO_DBG, "%s:Out of memory", dev->name);
2757 DBG_PRINT(INFO_DBG, " in Rx Poll!!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 break;
2759 }
2760 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002761 return pkt_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762}
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002763
Ananda Rajub41477f2006-07-24 19:52:49 -04002764#ifdef CONFIG_NET_POLL_CONTROLLER
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002765/**
Ananda Rajub41477f2006-07-24 19:52:49 -04002766 * s2io_netpoll - netpoll event handler entry point
Brian Haley612eff02006-06-15 14:36:36 -04002767 * @dev : pointer to the device structure.
2768 * Description:
Ananda Rajub41477f2006-07-24 19:52:49 -04002769 * This function will be called by upper layer to check for events on the
2770 * interface in situations where interrupts are disabled. It is used for
2771 * specific in-kernel networking tasks, such as remote consoles and kernel
2772 * debugging over the network (example netdump in RedHat).
Brian Haley612eff02006-06-15 14:36:36 -04002773 */
Brian Haley612eff02006-06-15 14:36:36 -04002774static void s2io_netpoll(struct net_device *dev)
2775{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002776 struct s2io_nic *nic = dev->priv;
2777 struct mac_info *mac_control;
Brian Haley612eff02006-06-15 14:36:36 -04002778 struct config_param *config;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002779 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Ananda Rajub41477f2006-07-24 19:52:49 -04002780 u64 val64 = 0xFFFFFFFFFFFFFFFFULL;
Brian Haley612eff02006-06-15 14:36:36 -04002781 int i;
2782
Linas Vepstasd796fdb2007-05-14 18:37:30 -05002783 if (pci_channel_offline(nic->pdev))
2784 return;
2785
Brian Haley612eff02006-06-15 14:36:36 -04002786 disable_irq(dev->irq);
2787
Brian Haley612eff02006-06-15 14:36:36 -04002788 mac_control = &nic->mac_control;
2789 config = &nic->config;
2790
Brian Haley612eff02006-06-15 14:36:36 -04002791 writeq(val64, &bar0->rx_traffic_int);
Ananda Rajub41477f2006-07-24 19:52:49 -04002792 writeq(val64, &bar0->tx_traffic_int);
Brian Haley612eff02006-06-15 14:36:36 -04002793
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002794 /* we need to free up the transmitted skbufs or else netpoll will
Ananda Rajub41477f2006-07-24 19:52:49 -04002795 * run out of skbs and will fail and eventually netpoll application such
2796 * as netdump will fail.
2797 */
2798 for (i = 0; i < config->tx_fifo_num; i++)
2799 tx_intr_handler(&mac_control->fifos[i]);
2800
2801 /* check for received packet and indicate up to network */
Brian Haley612eff02006-06-15 14:36:36 -04002802 for (i = 0; i < config->rx_ring_num; i++)
2803 rx_intr_handler(&mac_control->rings[i]);
2804
2805 for (i = 0; i < config->rx_ring_num; i++) {
2806 if (fill_rx_buffers(nic, i) == -ENOMEM) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08002807 DBG_PRINT(INFO_DBG, "%s:Out of memory", dev->name);
2808 DBG_PRINT(INFO_DBG, " in Rx Netpoll!!\n");
Brian Haley612eff02006-06-15 14:36:36 -04002809 break;
2810 }
2811 }
Brian Haley612eff02006-06-15 14:36:36 -04002812 enable_irq(dev->irq);
2813 return;
2814}
2815#endif
2816
2817/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 * rx_intr_handler - Rx interrupt handler
2819 * @nic: device private variable.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002820 * Description:
2821 * If the interrupt is because of a received frame or if the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 * receive ring contains fresh as yet un-processed frames,this function is
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002823 * called. It picks out the RxD at which place the last Rx processing had
2824 * stopped and sends the skb to the OSM's Rx handler and then increments
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 * the offset.
2826 * Return Value:
2827 * NONE.
2828 */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002829static void rx_intr_handler(struct ring_info *ring_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002831 struct s2io_nic *nic = ring_data->nic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 struct net_device *dev = (struct net_device *) nic->dev;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002833 int get_block, put_block, put_offset;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002834 struct rx_curr_get_info get_info, put_info;
2835 struct RxD_t *rxdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 struct sk_buff *skb;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002837 int pkt_cnt = 0;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05002838 int i;
Veena Parat6d517a22007-07-23 02:20:51 -04002839 struct RxD1* rxdp1;
2840 struct RxD3* rxdp3;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05002841
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07002842 spin_lock(&nic->rx_lock);
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07002843
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002844 get_info = ring_data->rx_curr_get_info;
2845 get_block = get_info.block_index;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002846 memcpy(&put_info, &ring_data->rx_curr_put_info, sizeof(put_info));
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002847 put_block = put_info.block_index;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002848 rxdp = ring_data->rx_blocks[get_block].rxds[get_info.offset].virt_addr;
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05002849 if (!napi) {
2850 spin_lock(&nic->put_lock);
2851 put_offset = ring_data->put_pos;
2852 spin_unlock(&nic->put_lock);
2853 } else
2854 put_offset = ring_data->put_pos;
2855
Ananda Rajuda6971d2005-10-31 16:55:31 -05002856 while (RXD_IS_UP2DT(rxdp)) {
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05002857 /*
2858 * If your are next to put index then it's
2859 * FIFO full condition
2860 */
Ananda Rajuda6971d2005-10-31 16:55:31 -05002861 if ((get_block == put_block) &&
2862 (get_info.offset + 1) == put_info.offset) {
Ananda Raju75c30b12006-07-24 19:55:09 -04002863 DBG_PRINT(INTR_DBG, "%s: Ring Full\n",dev->name);
Ananda Rajuda6971d2005-10-31 16:55:31 -05002864 break;
2865 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002866 skb = (struct sk_buff *) ((unsigned long)rxdp->Host_Control);
2867 if (skb == NULL) {
2868 DBG_PRINT(ERR_DBG, "%s: The skb is ",
2869 dev->name);
2870 DBG_PRINT(ERR_DBG, "Null in Rx Intr\n");
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07002871 spin_unlock(&nic->rx_lock);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002872 return;
2873 }
Ananda Rajuda6971d2005-10-31 16:55:31 -05002874 if (nic->rxd_mode == RXD_MODE_1) {
Veena Parat6d517a22007-07-23 02:20:51 -04002875 rxdp1 = (struct RxD1*)rxdp;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002876 pci_unmap_single(nic->pdev, (dma_addr_t)
Veena Parat6d517a22007-07-23 02:20:51 -04002877 rxdp1->Buffer0_ptr,
2878 dev->mtu +
2879 HEADER_ETHERNET_II_802_3_SIZE +
2880 HEADER_802_2_SIZE +
2881 HEADER_SNAP_SIZE,
2882 PCI_DMA_FROMDEVICE);
Ananda Rajuda6971d2005-10-31 16:55:31 -05002883 } else if (nic->rxd_mode == RXD_MODE_3B) {
Veena Parat6d517a22007-07-23 02:20:51 -04002884 rxdp3 = (struct RxD3*)rxdp;
Ananda Raju75c30b12006-07-24 19:55:09 -04002885 pci_dma_sync_single_for_cpu(nic->pdev, (dma_addr_t)
Veena Parat6d517a22007-07-23 02:20:51 -04002886 rxdp3->Buffer0_ptr,
2887 BUF0_LEN, PCI_DMA_FROMDEVICE);
Ananda Rajuda6971d2005-10-31 16:55:31 -05002888 pci_unmap_single(nic->pdev, (dma_addr_t)
Veena Parat6d517a22007-07-23 02:20:51 -04002889 rxdp3->Buffer2_ptr,
2890 dev->mtu + 4,
2891 PCI_DMA_FROMDEVICE);
Ananda Rajuda6971d2005-10-31 16:55:31 -05002892 }
Ananda Raju863c11a2006-04-21 19:03:13 -04002893 prefetch(skb->data);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002894 rx_osm_handler(ring_data, rxdp);
2895 get_info.offset++;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002896 ring_data->rx_curr_get_info.offset = get_info.offset;
2897 rxdp = ring_data->rx_blocks[get_block].
2898 rxds[get_info.offset].virt_addr;
2899 if (get_info.offset == rxd_count[nic->rxd_mode]) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002900 get_info.offset = 0;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002901 ring_data->rx_curr_get_info.offset = get_info.offset;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002902 get_block++;
Ananda Rajuda6971d2005-10-31 16:55:31 -05002903 if (get_block == ring_data->block_count)
2904 get_block = 0;
2905 ring_data->rx_curr_get_info.block_index = get_block;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002906 rxdp = ring_data->rx_blocks[get_block].block_virt_addr;
2907 }
2908
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002909 nic->pkts_to_process -= 1;
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05002910 if ((napi) && (!nic->pkts_to_process))
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002911 break;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002912 pkt_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 if ((indicate_max_pkts) && (pkt_cnt > indicate_max_pkts))
2914 break;
2915 }
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05002916 if (nic->lro) {
2917 /* Clear all LRO sessions before exiting */
2918 for (i=0; i<MAX_LRO_SESSIONS; i++) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002919 struct lro *lro = &nic->lro0_n[i];
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05002920 if (lro->in_use) {
2921 update_L3L4_header(nic, lro);
2922 queue_rx_frame(lro->parent);
2923 clear_lro_session(lro);
2924 }
2925 }
2926 }
2927
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07002928 spin_unlock(&nic->rx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929}
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002930
2931/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 * tx_intr_handler - Transmit interrupt handler
2933 * @nic : device private variable
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002934 * Description:
2935 * If an interrupt was raised to indicate DMA complete of the
2936 * Tx packet, this function is called. It identifies the last TxD
2937 * whose buffer was freed and frees all skbs whose data have already
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 * DMA'ed into the NICs internal memory.
2939 * Return Value:
2940 * NONE
2941 */
2942
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002943static void tx_intr_handler(struct fifo_info *fifo_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002945 struct s2io_nic *nic = fifo_data->nic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 struct net_device *dev = (struct net_device *) nic->dev;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002947 struct tx_curr_get_info get_info, put_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 struct sk_buff *skb;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002949 struct TxD *txdlp;
Olaf Heringf9046eb2007-06-19 22:41:10 +02002950 u8 err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002952 get_info = fifo_data->tx_curr_get_info;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05002953 memcpy(&put_info, &fifo_data->tx_curr_put_info, sizeof(put_info));
2954 txdlp = (struct TxD *) fifo_data->list_info[get_info.offset].
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002955 list_virt_addr;
2956 while ((!(txdlp->Control_1 & TXD_LIST_OWN_XENA)) &&
2957 (get_info.offset != put_info.offset) &&
2958 (txdlp->Host_Control)) {
2959 /* Check for TxD errors */
2960 if (txdlp->Control_1 & TXD_T_CODE) {
2961 unsigned long long err;
2962 err = txdlp->Control_1 & TXD_T_CODE;
Ananda Rajubd1034f2006-04-21 19:20:22 -04002963 if (err & 0x1) {
2964 nic->mac_control.stats_info->sw_stat.
2965 parity_err_cnt++;
2966 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04002967
2968 /* update t_code statistics */
Olaf Heringf9046eb2007-06-19 22:41:10 +02002969 err_mask = err >> 48;
2970 switch(err_mask) {
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04002971 case 2:
2972 nic->mac_control.stats_info->sw_stat.
2973 tx_buf_abort_cnt++;
2974 break;
2975
2976 case 3:
2977 nic->mac_control.stats_info->sw_stat.
2978 tx_desc_abort_cnt++;
2979 break;
2980
2981 case 7:
2982 nic->mac_control.stats_info->sw_stat.
2983 tx_parity_err_cnt++;
2984 break;
2985
2986 case 10:
2987 nic->mac_control.stats_info->sw_stat.
2988 tx_link_loss_cnt++;
2989 break;
2990
2991 case 15:
2992 nic->mac_control.stats_info->sw_stat.
2993 tx_list_proc_err_cnt++;
2994 break;
2995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002997
Ananda Rajufed5ecc2005-11-14 15:25:08 -05002998 skb = s2io_txdl_getskb(fifo_data, txdlp, get_info.offset);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07002999 if (skb == NULL) {
3000 DBG_PRINT(ERR_DBG, "%s: Null skb ",
3001 __FUNCTION__);
3002 DBG_PRINT(ERR_DBG, "in Tx Free Intr\n");
3003 return;
3004 }
3005
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003006 /* Updating the statistics block */
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003007 nic->stats.tx_bytes += skb->len;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003008 nic->mac_control.stats_info->sw_stat.mem_freed += skb->truesize;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003009 dev_kfree_skb_irq(skb);
3010
3011 get_info.offset++;
Ananda Raju863c11a2006-04-21 19:03:13 -04003012 if (get_info.offset == get_info.fifo_len + 1)
3013 get_info.offset = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003014 txdlp = (struct TxD *) fifo_data->list_info
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003015 [get_info.offset].list_virt_addr;
3016 fifo_data->tx_curr_get_info.offset =
3017 get_info.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 }
3019
3020 spin_lock(&nic->tx_lock);
3021 if (netif_queue_stopped(dev))
3022 netif_wake_queue(dev);
3023 spin_unlock(&nic->tx_lock);
3024}
3025
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003026/**
Ananda Rajubd1034f2006-04-21 19:20:22 -04003027 * s2io_mdio_write - Function to write in to MDIO registers
3028 * @mmd_type : MMD type value (PMA/PMD/WIS/PCS/PHYXS)
3029 * @addr : address value
3030 * @value : data value
3031 * @dev : pointer to net_device structure
3032 * Description:
3033 * This function is used to write values to the MDIO registers
3034 * NONE
3035 */
3036static void s2io_mdio_write(u32 mmd_type, u64 addr, u16 value, struct net_device *dev)
3037{
3038 u64 val64 = 0x0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003039 struct s2io_nic *sp = dev->priv;
3040 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Ananda Rajubd1034f2006-04-21 19:20:22 -04003041
3042 //address transaction
3043 val64 = val64 | MDIO_MMD_INDX_ADDR(addr)
3044 | MDIO_MMD_DEV_ADDR(mmd_type)
3045 | MDIO_MMS_PRT_ADDR(0x0);
3046 writeq(val64, &bar0->mdio_control);
3047 val64 = val64 | MDIO_CTRL_START_TRANS(0xE);
3048 writeq(val64, &bar0->mdio_control);
3049 udelay(100);
3050
3051 //Data transaction
3052 val64 = 0x0;
3053 val64 = val64 | MDIO_MMD_INDX_ADDR(addr)
3054 | MDIO_MMD_DEV_ADDR(mmd_type)
3055 | MDIO_MMS_PRT_ADDR(0x0)
3056 | MDIO_MDIO_DATA(value)
3057 | MDIO_OP(MDIO_OP_WRITE_TRANS);
3058 writeq(val64, &bar0->mdio_control);
3059 val64 = val64 | MDIO_CTRL_START_TRANS(0xE);
3060 writeq(val64, &bar0->mdio_control);
3061 udelay(100);
3062
3063 val64 = 0x0;
3064 val64 = val64 | MDIO_MMD_INDX_ADDR(addr)
3065 | MDIO_MMD_DEV_ADDR(mmd_type)
3066 | MDIO_MMS_PRT_ADDR(0x0)
3067 | MDIO_OP(MDIO_OP_READ_TRANS);
3068 writeq(val64, &bar0->mdio_control);
3069 val64 = val64 | MDIO_CTRL_START_TRANS(0xE);
3070 writeq(val64, &bar0->mdio_control);
3071 udelay(100);
3072
3073}
3074
3075/**
3076 * s2io_mdio_read - Function to write in to MDIO registers
3077 * @mmd_type : MMD type value (PMA/PMD/WIS/PCS/PHYXS)
3078 * @addr : address value
3079 * @dev : pointer to net_device structure
3080 * Description:
3081 * This function is used to read values to the MDIO registers
3082 * NONE
3083 */
3084static u64 s2io_mdio_read(u32 mmd_type, u64 addr, struct net_device *dev)
3085{
3086 u64 val64 = 0x0;
3087 u64 rval64 = 0x0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003088 struct s2io_nic *sp = dev->priv;
3089 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Ananda Rajubd1034f2006-04-21 19:20:22 -04003090
3091 /* address transaction */
3092 val64 = val64 | MDIO_MMD_INDX_ADDR(addr)
3093 | MDIO_MMD_DEV_ADDR(mmd_type)
3094 | MDIO_MMS_PRT_ADDR(0x0);
3095 writeq(val64, &bar0->mdio_control);
3096 val64 = val64 | MDIO_CTRL_START_TRANS(0xE);
3097 writeq(val64, &bar0->mdio_control);
3098 udelay(100);
3099
3100 /* Data transaction */
3101 val64 = 0x0;
3102 val64 = val64 | MDIO_MMD_INDX_ADDR(addr)
3103 | MDIO_MMD_DEV_ADDR(mmd_type)
3104 | MDIO_MMS_PRT_ADDR(0x0)
3105 | MDIO_OP(MDIO_OP_READ_TRANS);
3106 writeq(val64, &bar0->mdio_control);
3107 val64 = val64 | MDIO_CTRL_START_TRANS(0xE);
3108 writeq(val64, &bar0->mdio_control);
3109 udelay(100);
3110
3111 /* Read the value from regs */
3112 rval64 = readq(&bar0->mdio_control);
3113 rval64 = rval64 & 0xFFFF0000;
3114 rval64 = rval64 >> 16;
3115 return rval64;
3116}
3117/**
3118 * s2io_chk_xpak_counter - Function to check the status of the xpak counters
3119 * @counter : couter value to be updated
3120 * @flag : flag to indicate the status
3121 * @type : counter type
3122 * Description:
3123 * This function is to check the status of the xpak counters value
3124 * NONE
3125 */
3126
3127static void s2io_chk_xpak_counter(u64 *counter, u64 * regs_stat, u32 index, u16 flag, u16 type)
3128{
3129 u64 mask = 0x3;
3130 u64 val64;
3131 int i;
3132 for(i = 0; i <index; i++)
3133 mask = mask << 0x2;
3134
3135 if(flag > 0)
3136 {
3137 *counter = *counter + 1;
3138 val64 = *regs_stat & mask;
3139 val64 = val64 >> (index * 0x2);
3140 val64 = val64 + 1;
3141 if(val64 == 3)
3142 {
3143 switch(type)
3144 {
3145 case 1:
3146 DBG_PRINT(ERR_DBG, "Take Xframe NIC out of "
3147 "service. Excessive temperatures may "
3148 "result in premature transceiver "
3149 "failure \n");
3150 break;
3151 case 2:
3152 DBG_PRINT(ERR_DBG, "Take Xframe NIC out of "
3153 "service Excessive bias currents may "
3154 "indicate imminent laser diode "
3155 "failure \n");
3156 break;
3157 case 3:
3158 DBG_PRINT(ERR_DBG, "Take Xframe NIC out of "
3159 "service Excessive laser output "
3160 "power may saturate far-end "
3161 "receiver\n");
3162 break;
3163 default:
3164 DBG_PRINT(ERR_DBG, "Incorrect XPAK Alarm "
3165 "type \n");
3166 }
3167 val64 = 0x0;
3168 }
3169 val64 = val64 << (index * 0x2);
3170 *regs_stat = (*regs_stat & (~mask)) | (val64);
3171
3172 } else {
3173 *regs_stat = *regs_stat & (~mask);
3174 }
3175}
3176
3177/**
3178 * s2io_updt_xpak_counter - Function to update the xpak counters
3179 * @dev : pointer to net_device struct
3180 * Description:
3181 * This function is to upate the status of the xpak counters value
3182 * NONE
3183 */
3184static void s2io_updt_xpak_counter(struct net_device *dev)
3185{
3186 u16 flag = 0x0;
3187 u16 type = 0x0;
3188 u16 val16 = 0x0;
3189 u64 val64 = 0x0;
3190 u64 addr = 0x0;
3191
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003192 struct s2io_nic *sp = dev->priv;
3193 struct stat_block *stat_info = sp->mac_control.stats_info;
Ananda Rajubd1034f2006-04-21 19:20:22 -04003194
3195 /* Check the communication with the MDIO slave */
3196 addr = 0x0000;
3197 val64 = 0x0;
3198 val64 = s2io_mdio_read(MDIO_MMD_PMA_DEV_ADDR, addr, dev);
3199 if((val64 == 0xFFFF) || (val64 == 0x0000))
3200 {
3201 DBG_PRINT(ERR_DBG, "ERR: MDIO slave access failed - "
3202 "Returned %llx\n", (unsigned long long)val64);
3203 return;
3204 }
3205
3206 /* Check for the expecte value of 2040 at PMA address 0x0000 */
3207 if(val64 != 0x2040)
3208 {
3209 DBG_PRINT(ERR_DBG, "Incorrect value at PMA address 0x0000 - ");
3210 DBG_PRINT(ERR_DBG, "Returned: %llx- Expected: 0x2040\n",
3211 (unsigned long long)val64);
3212 return;
3213 }
3214
3215 /* Loading the DOM register to MDIO register */
3216 addr = 0xA100;
3217 s2io_mdio_write(MDIO_MMD_PMA_DEV_ADDR, addr, val16, dev);
3218 val64 = s2io_mdio_read(MDIO_MMD_PMA_DEV_ADDR, addr, dev);
3219
3220 /* Reading the Alarm flags */
3221 addr = 0xA070;
3222 val64 = 0x0;
3223 val64 = s2io_mdio_read(MDIO_MMD_PMA_DEV_ADDR, addr, dev);
3224
3225 flag = CHECKBIT(val64, 0x7);
3226 type = 1;
3227 s2io_chk_xpak_counter(&stat_info->xpak_stat.alarm_transceiver_temp_high,
3228 &stat_info->xpak_stat.xpak_regs_stat,
3229 0x0, flag, type);
3230
3231 if(CHECKBIT(val64, 0x6))
3232 stat_info->xpak_stat.alarm_transceiver_temp_low++;
3233
3234 flag = CHECKBIT(val64, 0x3);
3235 type = 2;
3236 s2io_chk_xpak_counter(&stat_info->xpak_stat.alarm_laser_bias_current_high,
3237 &stat_info->xpak_stat.xpak_regs_stat,
3238 0x2, flag, type);
3239
3240 if(CHECKBIT(val64, 0x2))
3241 stat_info->xpak_stat.alarm_laser_bias_current_low++;
3242
3243 flag = CHECKBIT(val64, 0x1);
3244 type = 3;
3245 s2io_chk_xpak_counter(&stat_info->xpak_stat.alarm_laser_output_power_high,
3246 &stat_info->xpak_stat.xpak_regs_stat,
3247 0x4, flag, type);
3248
3249 if(CHECKBIT(val64, 0x0))
3250 stat_info->xpak_stat.alarm_laser_output_power_low++;
3251
3252 /* Reading the Warning flags */
3253 addr = 0xA074;
3254 val64 = 0x0;
3255 val64 = s2io_mdio_read(MDIO_MMD_PMA_DEV_ADDR, addr, dev);
3256
3257 if(CHECKBIT(val64, 0x7))
3258 stat_info->xpak_stat.warn_transceiver_temp_high++;
3259
3260 if(CHECKBIT(val64, 0x6))
3261 stat_info->xpak_stat.warn_transceiver_temp_low++;
3262
3263 if(CHECKBIT(val64, 0x3))
3264 stat_info->xpak_stat.warn_laser_bias_current_high++;
3265
3266 if(CHECKBIT(val64, 0x2))
3267 stat_info->xpak_stat.warn_laser_bias_current_low++;
3268
3269 if(CHECKBIT(val64, 0x1))
3270 stat_info->xpak_stat.warn_laser_output_power_high++;
3271
3272 if(CHECKBIT(val64, 0x0))
3273 stat_info->xpak_stat.warn_laser_output_power_low++;
3274}
3275
3276/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 * wait_for_cmd_complete - waits for a command to complete.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003278 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003280 * Description: Function that waits for a command to Write into RMAC
3281 * ADDR DATA registers to be completed and returns either success or
3282 * error depending on whether the command was complete or not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 * Return value:
3284 * SUCCESS on success and FAILURE on failure.
3285 */
3286
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05003287static int wait_for_cmd_complete(void __iomem *addr, u64 busy_bit,
3288 int bit_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289{
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05003290 int ret = FAILURE, cnt = 0, delay = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 u64 val64;
3292
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05003293 if ((bit_state != S2IO_BIT_RESET) && (bit_state != S2IO_BIT_SET))
3294 return FAILURE;
3295
3296 do {
Ananda Rajuc92ca042006-04-21 19:18:03 -04003297 val64 = readq(addr);
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05003298 if (bit_state == S2IO_BIT_RESET) {
3299 if (!(val64 & busy_bit)) {
3300 ret = SUCCESS;
3301 break;
3302 }
3303 } else {
3304 if (!(val64 & busy_bit)) {
3305 ret = SUCCESS;
3306 break;
3307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 }
Ananda Rajuc92ca042006-04-21 19:18:03 -04003309
3310 if(in_interrupt())
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05003311 mdelay(delay);
Ananda Rajuc92ca042006-04-21 19:18:03 -04003312 else
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05003313 msleep(delay);
Ananda Rajuc92ca042006-04-21 19:18:03 -04003314
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05003315 if (++cnt >= 10)
3316 delay = 50;
3317 } while (cnt < 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 return ret;
3319}
Sivakumar Subramani19a60522007-01-31 13:30:49 -05003320/*
3321 * check_pci_device_id - Checks if the device id is supported
3322 * @id : device id
3323 * Description: Function to check if the pci device id is supported by driver.
3324 * Return value: Actual device id if supported else PCI_ANY_ID
3325 */
3326static u16 check_pci_device_id(u16 id)
3327{
3328 switch (id) {
3329 case PCI_DEVICE_ID_HERC_WIN:
3330 case PCI_DEVICE_ID_HERC_UNI:
3331 return XFRAME_II_DEVICE;
3332 case PCI_DEVICE_ID_S2IO_UNI:
3333 case PCI_DEVICE_ID_S2IO_WIN:
3334 return XFRAME_I_DEVICE;
3335 default:
3336 return PCI_ANY_ID;
3337 }
3338}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003340/**
3341 * s2io_reset - Resets the card.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 * @sp : private member of the device structure.
3343 * Description: Function to Reset the card. This function then also
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003344 * restores the previously saved PCI configuration space registers as
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 * the card reset also resets the configuration space.
3346 * Return value:
3347 * void.
3348 */
3349
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003350static void s2io_reset(struct s2io_nic * sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003352 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 u64 val64;
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07003354 u16 subid, pci_cmd;
Sivakumar Subramani19a60522007-01-31 13:30:49 -05003355 int i;
3356 u16 val16;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003357 unsigned long long up_cnt, down_cnt, up_time, down_time, reset_cnt;
3358 unsigned long long mem_alloc_cnt, mem_free_cnt, watchdog_cnt;
3359
Sivakumar Subramani19a60522007-01-31 13:30:49 -05003360 DBG_PRINT(INIT_DBG,"%s - Resetting XFrame card %s\n",
3361 __FUNCTION__, sp->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
raghavendra.koushik@neterion.com0b1f7eb2005-08-03 12:39:56 -07003363 /* Back up the PCI-X CMD reg, dont want to lose MMRBC, OST settings */
ravinandan.arakali@neterion.come960fc52005-08-12 10:15:59 -07003364 pci_read_config_word(sp->pdev, PCIX_COMMAND_REGISTER, &(pci_cmd));
raghavendra.koushik@neterion.com0b1f7eb2005-08-03 12:39:56 -07003365
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 val64 = SW_RESET_ALL;
3367 writeq(val64, &bar0->sw_reset);
Ananda Rajuc92ca042006-04-21 19:18:03 -04003368 if (strstr(sp->product_name, "CX4")) {
3369 msleep(750);
3370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 msleep(250);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05003372 for (i = 0; i < S2IO_MAX_PCI_CONFIG_SPACE_REINIT; i++) {
3373
3374 /* Restore the PCI state saved during initialization. */
3375 pci_restore_state(sp->pdev);
3376 pci_read_config_word(sp->pdev, 0x2, &val16);
3377 if (check_pci_device_id(val16) != (u16)PCI_ANY_ID)
3378 break;
3379 msleep(200);
3380 }
3381
3382 if (check_pci_device_id(val16) == (u16)PCI_ANY_ID) {
3383 DBG_PRINT(ERR_DBG,"%s SW_Reset failed!\n", __FUNCTION__);
3384 }
3385
3386 pci_write_config_word(sp->pdev, PCIX_COMMAND_REGISTER, pci_cmd);
3387
3388 s2io_init_pci(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003390 /* Set swapper to enable I/O register access */
3391 s2io_set_swapper(sp);
3392
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003393 /* Restore the MSIX table entries from local variables */
3394 restore_xmsi_data(sp);
3395
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07003396 /* Clear certain PCI/PCI-X fields after reset */
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07003397 if (sp->device_type == XFRAME_II_DEVICE) {
Ananda Rajub41477f2006-07-24 19:52:49 -04003398 /* Clear "detected parity error" bit */
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07003399 pci_write_config_word(sp->pdev, PCI_STATUS, 0x8000);
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07003400
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07003401 /* Clearing PCIX Ecc status register */
3402 pci_write_config_dword(sp->pdev, 0x68, 0x7C);
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07003403
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07003404 /* Clearing PCI_STATUS error reflected here */
3405 writeq(BIT(62), &bar0->txpic_int_reg);
3406 }
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07003407
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003408 /* Reset device statistics maintained by OS */
3409 memset(&sp->stats, 0, sizeof (struct net_device_stats));
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003410
3411 up_cnt = sp->mac_control.stats_info->sw_stat.link_up_cnt;
3412 down_cnt = sp->mac_control.stats_info->sw_stat.link_down_cnt;
3413 up_time = sp->mac_control.stats_info->sw_stat.link_up_time;
3414 down_time = sp->mac_control.stats_info->sw_stat.link_down_time;
Ramkrishna Vepa363dc362007-03-06 17:01:00 -08003415 reset_cnt = sp->mac_control.stats_info->sw_stat.soft_reset_cnt;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003416 mem_alloc_cnt = sp->mac_control.stats_info->sw_stat.mem_allocated;
3417 mem_free_cnt = sp->mac_control.stats_info->sw_stat.mem_freed;
3418 watchdog_cnt = sp->mac_control.stats_info->sw_stat.watchdog_timer_cnt;
3419 /* save link up/down time/cnt, reset/memory/watchdog cnt */
Ramkrishna Vepa363dc362007-03-06 17:01:00 -08003420 memset(sp->mac_control.stats_info, 0, sizeof(struct stat_block));
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003421 /* restore link up/down time/cnt, reset/memory/watchdog cnt */
3422 sp->mac_control.stats_info->sw_stat.link_up_cnt = up_cnt;
3423 sp->mac_control.stats_info->sw_stat.link_down_cnt = down_cnt;
3424 sp->mac_control.stats_info->sw_stat.link_up_time = up_time;
3425 sp->mac_control.stats_info->sw_stat.link_down_time = down_time;
Ramkrishna Vepa363dc362007-03-06 17:01:00 -08003426 sp->mac_control.stats_info->sw_stat.soft_reset_cnt = reset_cnt;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003427 sp->mac_control.stats_info->sw_stat.mem_allocated = mem_alloc_cnt;
3428 sp->mac_control.stats_info->sw_stat.mem_freed = mem_free_cnt;
3429 sp->mac_control.stats_info->sw_stat.watchdog_timer_cnt = watchdog_cnt;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003430
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 /* SXE-002: Configure link and activity LED to turn it off */
3432 subid = sp->pdev->subsystem_device;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07003433 if (((subid & 0xFF) >= 0x07) &&
3434 (sp->device_type == XFRAME_I_DEVICE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 val64 = readq(&bar0->gpio_control);
3436 val64 |= 0x0000800000000000ULL;
3437 writeq(val64, &bar0->gpio_control);
3438 val64 = 0x0411040400000000ULL;
viro@ftp.linux.org.uk509a2672005-09-05 03:25:58 +01003439 writeq(val64, (void __iomem *)bar0 + 0x2700);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 }
3441
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07003442 /*
3443 * Clear spurious ECC interrupts that would have occured on
3444 * XFRAME II cards after reset.
3445 */
3446 if (sp->device_type == XFRAME_II_DEVICE) {
3447 val64 = readq(&bar0->pcc_err_reg);
3448 writeq(val64, &bar0->pcc_err_reg);
3449 }
3450
Sivakumar Subramanid8d70ca2007-02-24 02:04:24 -05003451 /* restore the previously assigned mac address */
3452 s2io_set_mac_addr(sp->dev, (u8 *)&sp->def_mac_addr[0].mac_addr);
3453
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 sp->device_enabled_once = FALSE;
3455}
3456
3457/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003458 * s2io_set_swapper - to set the swapper controle on the card
3459 * @sp : private member of the device structure,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 * pointer to the s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003461 * Description: Function to set the swapper control on the card
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 * correctly depending on the 'endianness' of the system.
3463 * Return value:
3464 * SUCCESS on success and FAILURE on failure.
3465 */
3466
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003467static int s2io_set_swapper(struct s2io_nic * sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
3469 struct net_device *dev = sp->dev;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003470 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 u64 val64, valt, valr;
3472
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003473 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 * Set proper endian settings and verify the same by reading
3475 * the PIF Feed-back register.
3476 */
3477
3478 val64 = readq(&bar0->pif_rd_swapper_fb);
3479 if (val64 != 0x0123456789ABCDEFULL) {
3480 int i = 0;
3481 u64 value[] = { 0xC30000C3C30000C3ULL, /* FE=1, SE=1 */
3482 0x8100008181000081ULL, /* FE=1, SE=0 */
3483 0x4200004242000042ULL, /* FE=0, SE=1 */
3484 0}; /* FE=0, SE=0 */
3485
3486 while(i<4) {
3487 writeq(value[i], &bar0->swapper_ctrl);
3488 val64 = readq(&bar0->pif_rd_swapper_fb);
3489 if (val64 == 0x0123456789ABCDEFULL)
3490 break;
3491 i++;
3492 }
3493 if (i == 4) {
3494 DBG_PRINT(ERR_DBG, "%s: Endian settings are wrong, ",
3495 dev->name);
3496 DBG_PRINT(ERR_DBG, "feedback read %llx\n",
3497 (unsigned long long) val64);
3498 return FAILURE;
3499 }
3500 valr = value[i];
3501 } else {
3502 valr = readq(&bar0->swapper_ctrl);
3503 }
3504
3505 valt = 0x0123456789ABCDEFULL;
3506 writeq(valt, &bar0->xmsi_address);
3507 val64 = readq(&bar0->xmsi_address);
3508
3509 if(val64 != valt) {
3510 int i = 0;
3511 u64 value[] = { 0x00C3C30000C3C300ULL, /* FE=1, SE=1 */
3512 0x0081810000818100ULL, /* FE=1, SE=0 */
3513 0x0042420000424200ULL, /* FE=0, SE=1 */
3514 0}; /* FE=0, SE=0 */
3515
3516 while(i<4) {
3517 writeq((value[i] | valr), &bar0->swapper_ctrl);
3518 writeq(valt, &bar0->xmsi_address);
3519 val64 = readq(&bar0->xmsi_address);
3520 if(val64 == valt)
3521 break;
3522 i++;
3523 }
3524 if(i == 4) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003525 unsigned long long x = val64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 DBG_PRINT(ERR_DBG, "Write failed, Xmsi_addr ");
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003527 DBG_PRINT(ERR_DBG, "reads:0x%llx\n", x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 return FAILURE;
3529 }
3530 }
3531 val64 = readq(&bar0->swapper_ctrl);
3532 val64 &= 0xFFFF000000000000ULL;
3533
3534#ifdef __BIG_ENDIAN
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003535 /*
3536 * The device by default set to a big endian format, so a
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 * big endian driver need not set anything.
3538 */
3539 val64 |= (SWAPPER_CTRL_TXP_FE |
3540 SWAPPER_CTRL_TXP_SE |
3541 SWAPPER_CTRL_TXD_R_FE |
3542 SWAPPER_CTRL_TXD_W_FE |
3543 SWAPPER_CTRL_TXF_R_FE |
3544 SWAPPER_CTRL_RXD_R_FE |
3545 SWAPPER_CTRL_RXD_W_FE |
3546 SWAPPER_CTRL_RXF_W_FE |
3547 SWAPPER_CTRL_XMSI_FE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 SWAPPER_CTRL_STATS_FE | SWAPPER_CTRL_STATS_SE);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07003549 if (sp->config.intr_type == INTA)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003550 val64 |= SWAPPER_CTRL_XMSI_SE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 writeq(val64, &bar0->swapper_ctrl);
3552#else
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003553 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 * Initially we enable all bits to make it accessible by the
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003555 * driver, then we selectively enable only those bits that
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 * we want to set.
3557 */
3558 val64 |= (SWAPPER_CTRL_TXP_FE |
3559 SWAPPER_CTRL_TXP_SE |
3560 SWAPPER_CTRL_TXD_R_FE |
3561 SWAPPER_CTRL_TXD_R_SE |
3562 SWAPPER_CTRL_TXD_W_FE |
3563 SWAPPER_CTRL_TXD_W_SE |
3564 SWAPPER_CTRL_TXF_R_FE |
3565 SWAPPER_CTRL_RXD_R_FE |
3566 SWAPPER_CTRL_RXD_R_SE |
3567 SWAPPER_CTRL_RXD_W_FE |
3568 SWAPPER_CTRL_RXD_W_SE |
3569 SWAPPER_CTRL_RXF_W_FE |
3570 SWAPPER_CTRL_XMSI_FE |
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 SWAPPER_CTRL_STATS_FE | SWAPPER_CTRL_STATS_SE);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07003572 if (sp->config.intr_type == INTA)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003573 val64 |= SWAPPER_CTRL_XMSI_SE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 writeq(val64, &bar0->swapper_ctrl);
3575#endif
3576 val64 = readq(&bar0->swapper_ctrl);
3577
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003578 /*
3579 * Verifying if endian settings are accurate by reading a
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 * feedback register.
3581 */
3582 val64 = readq(&bar0->pif_rd_swapper_fb);
3583 if (val64 != 0x0123456789ABCDEFULL) {
3584 /* Endian settings are incorrect, calls for another dekko. */
3585 DBG_PRINT(ERR_DBG, "%s: Endian settings are wrong, ",
3586 dev->name);
3587 DBG_PRINT(ERR_DBG, "feedback read %llx\n",
3588 (unsigned long long) val64);
3589 return FAILURE;
3590 }
3591
3592 return SUCCESS;
3593}
3594
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003595static int wait_for_msix_trans(struct s2io_nic *nic, int i)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003596{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003597 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003598 u64 val64;
3599 int ret = 0, cnt = 0;
3600
3601 do {
3602 val64 = readq(&bar0->xmsi_access);
3603 if (!(val64 & BIT(15)))
3604 break;
3605 mdelay(1);
3606 cnt++;
3607 } while(cnt < 5);
3608 if (cnt == 5) {
3609 DBG_PRINT(ERR_DBG, "XMSI # %d Access failed\n", i);
3610 ret = 1;
3611 }
3612
3613 return ret;
3614}
3615
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003616static void restore_xmsi_data(struct s2io_nic *nic)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003617{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003618 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003619 u64 val64;
3620 int i;
3621
Ananda Raju75c30b12006-07-24 19:55:09 -04003622 for (i=0; i < MAX_REQUESTED_MSI_X; i++) {
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003623 writeq(nic->msix_info[i].addr, &bar0->xmsi_address);
3624 writeq(nic->msix_info[i].data, &bar0->xmsi_data);
3625 val64 = (BIT(7) | BIT(15) | vBIT(i, 26, 6));
3626 writeq(val64, &bar0->xmsi_access);
3627 if (wait_for_msix_trans(nic, i)) {
3628 DBG_PRINT(ERR_DBG, "failed in %s\n", __FUNCTION__);
3629 continue;
3630 }
3631 }
3632}
3633
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003634static void store_xmsi_data(struct s2io_nic *nic)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003635{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003636 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003637 u64 val64, addr, data;
3638 int i;
3639
3640 /* Store and display */
Ananda Raju75c30b12006-07-24 19:55:09 -04003641 for (i=0; i < MAX_REQUESTED_MSI_X; i++) {
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003642 val64 = (BIT(15) | vBIT(i, 26, 6));
3643 writeq(val64, &bar0->xmsi_access);
3644 if (wait_for_msix_trans(nic, i)) {
3645 DBG_PRINT(ERR_DBG, "failed in %s\n", __FUNCTION__);
3646 continue;
3647 }
3648 addr = readq(&bar0->xmsi_address);
3649 data = readq(&bar0->xmsi_data);
3650 if (addr && data) {
3651 nic->msix_info[i].addr = addr;
3652 nic->msix_info[i].data = data;
3653 }
3654 }
3655}
3656
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003657static int s2io_enable_msi_x(struct s2io_nic *nic)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003658{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003659 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003660 u64 tx_mat, rx_mat;
3661 u16 msi_control; /* Temp variable */
3662 int ret, i, j, msix_indx = 1;
3663
3664 nic->entries = kmalloc(MAX_REQUESTED_MSI_X * sizeof(struct msix_entry),
3665 GFP_KERNEL);
3666 if (nic->entries == NULL) {
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003667 DBG_PRINT(INFO_DBG, "%s: Memory allocation failed\n", \
3668 __FUNCTION__);
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04003669 nic->mac_control.stats_info->sw_stat.mem_alloc_fail_cnt++;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003670 return -ENOMEM;
3671 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003672 nic->mac_control.stats_info->sw_stat.mem_allocated
3673 += (MAX_REQUESTED_MSI_X * sizeof(struct msix_entry));
3674 memset(nic->entries, 0,MAX_REQUESTED_MSI_X * sizeof(struct msix_entry));
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003675
3676 nic->s2io_entries =
3677 kmalloc(MAX_REQUESTED_MSI_X * sizeof(struct s2io_msix_entry),
3678 GFP_KERNEL);
3679 if (nic->s2io_entries == NULL) {
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003680 DBG_PRINT(INFO_DBG, "%s: Memory allocation failed\n",
3681 __FUNCTION__);
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04003682 nic->mac_control.stats_info->sw_stat.mem_alloc_fail_cnt++;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003683 kfree(nic->entries);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003684 nic->mac_control.stats_info->sw_stat.mem_freed
3685 += (MAX_REQUESTED_MSI_X * sizeof(struct msix_entry));
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003686 return -ENOMEM;
3687 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003688 nic->mac_control.stats_info->sw_stat.mem_allocated
3689 += (MAX_REQUESTED_MSI_X * sizeof(struct s2io_msix_entry));
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003690 memset(nic->s2io_entries, 0,
3691 MAX_REQUESTED_MSI_X * sizeof(struct s2io_msix_entry));
3692
3693 for (i=0; i< MAX_REQUESTED_MSI_X; i++) {
3694 nic->entries[i].entry = i;
3695 nic->s2io_entries[i].entry = i;
3696 nic->s2io_entries[i].arg = NULL;
3697 nic->s2io_entries[i].in_use = 0;
3698 }
3699
3700 tx_mat = readq(&bar0->tx_mat0_n[0]);
3701 for (i=0; i<nic->config.tx_fifo_num; i++, msix_indx++) {
3702 tx_mat |= TX_MAT_SET(i, msix_indx);
3703 nic->s2io_entries[msix_indx].arg = &nic->mac_control.fifos[i];
3704 nic->s2io_entries[msix_indx].type = MSIX_FIFO_TYPE;
3705 nic->s2io_entries[msix_indx].in_use = MSIX_FLG;
3706 }
3707 writeq(tx_mat, &bar0->tx_mat0_n[0]);
3708
3709 if (!nic->config.bimodal) {
3710 rx_mat = readq(&bar0->rx_mat);
3711 for (j=0; j<nic->config.rx_ring_num; j++, msix_indx++) {
3712 rx_mat |= RX_MAT_SET(j, msix_indx);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003713 nic->s2io_entries[msix_indx].arg
3714 = &nic->mac_control.rings[j];
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003715 nic->s2io_entries[msix_indx].type = MSIX_RING_TYPE;
3716 nic->s2io_entries[msix_indx].in_use = MSIX_FLG;
3717 }
3718 writeq(rx_mat, &bar0->rx_mat);
3719 } else {
3720 tx_mat = readq(&bar0->tx_mat0_n[7]);
3721 for (j=0; j<nic->config.rx_ring_num; j++, msix_indx++) {
3722 tx_mat |= TX_MAT_SET(i, msix_indx);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003723 nic->s2io_entries[msix_indx].arg
3724 = &nic->mac_control.rings[j];
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003725 nic->s2io_entries[msix_indx].type = MSIX_RING_TYPE;
3726 nic->s2io_entries[msix_indx].in_use = MSIX_FLG;
3727 }
3728 writeq(tx_mat, &bar0->tx_mat0_n[7]);
3729 }
3730
Ananda Rajuc92ca042006-04-21 19:18:03 -04003731 nic->avail_msix_vectors = 0;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003732 ret = pci_enable_msix(nic->pdev, nic->entries, MAX_REQUESTED_MSI_X);
Ananda Rajuc92ca042006-04-21 19:18:03 -04003733 /* We fail init if error or we get less vectors than min required */
3734 if (ret >= (nic->config.tx_fifo_num + nic->config.rx_ring_num + 1)) {
3735 nic->avail_msix_vectors = ret;
3736 ret = pci_enable_msix(nic->pdev, nic->entries, ret);
3737 }
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003738 if (ret) {
3739 DBG_PRINT(ERR_DBG, "%s: Enabling MSIX failed\n", nic->dev->name);
3740 kfree(nic->entries);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003741 nic->mac_control.stats_info->sw_stat.mem_freed
3742 += (MAX_REQUESTED_MSI_X * sizeof(struct msix_entry));
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003743 kfree(nic->s2io_entries);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003744 nic->mac_control.stats_info->sw_stat.mem_freed
3745 += (MAX_REQUESTED_MSI_X * sizeof(struct s2io_msix_entry));
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003746 nic->entries = NULL;
3747 nic->s2io_entries = NULL;
Ananda Rajuc92ca042006-04-21 19:18:03 -04003748 nic->avail_msix_vectors = 0;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003749 return -ENOMEM;
3750 }
Ananda Rajuc92ca042006-04-21 19:18:03 -04003751 if (!nic->avail_msix_vectors)
3752 nic->avail_msix_vectors = MAX_REQUESTED_MSI_X;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003753
3754 /*
3755 * To enable MSI-X, MSI also needs to be enabled, due to a bug
3756 * in the herc NIC. (Temp change, needs to be removed later)
3757 */
3758 pci_read_config_word(nic->pdev, 0x42, &msi_control);
3759 msi_control |= 0x1; /* Enable MSI */
3760 pci_write_config_word(nic->pdev, 0x42, msi_control);
3761
3762 return 0;
3763}
3764
Sivakumar Subramani8abc4d52007-09-15 13:11:34 -07003765/* Handle software interrupt used during MSI(X) test */
3766static irqreturn_t __devinit s2io_test_intr(int irq, void *dev_id)
3767{
3768 struct s2io_nic *sp = dev_id;
3769
3770 sp->msi_detected = 1;
3771 wake_up(&sp->msi_wait);
3772
3773 return IRQ_HANDLED;
3774}
3775
3776/* Test interrupt path by forcing a a software IRQ */
3777static int __devinit s2io_test_msi(struct s2io_nic *sp)
3778{
3779 struct pci_dev *pdev = sp->pdev;
3780 struct XENA_dev_config __iomem *bar0 = sp->bar0;
3781 int err;
3782 u64 val64, saved64;
3783
3784 err = request_irq(sp->entries[1].vector, s2io_test_intr, 0,
3785 sp->name, sp);
3786 if (err) {
3787 DBG_PRINT(ERR_DBG, "%s: PCI %s: cannot assign irq %d\n",
3788 sp->dev->name, pci_name(pdev), pdev->irq);
3789 return err;
3790 }
3791
3792 init_waitqueue_head (&sp->msi_wait);
3793 sp->msi_detected = 0;
3794
3795 saved64 = val64 = readq(&bar0->scheduled_int_ctrl);
3796 val64 |= SCHED_INT_CTRL_ONE_SHOT;
3797 val64 |= SCHED_INT_CTRL_TIMER_EN;
3798 val64 |= SCHED_INT_CTRL_INT2MSI(1);
3799 writeq(val64, &bar0->scheduled_int_ctrl);
3800
3801 wait_event_timeout(sp->msi_wait, sp->msi_detected, HZ/10);
3802
3803 if (!sp->msi_detected) {
3804 /* MSI(X) test failed, go back to INTx mode */
3805 DBG_PRINT(ERR_DBG, "%s: PCI %s: No interrupt was generated"
3806 "using MSI(X) during test\n", sp->dev->name,
3807 pci_name(pdev));
3808
3809 err = -EOPNOTSUPP;
3810 }
3811
3812 free_irq(sp->entries[1].vector, sp);
3813
3814 writeq(saved64, &bar0->scheduled_int_ctrl);
3815
3816 return err;
3817}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818/* ********************************************************* *
3819 * Functions defined below concern the OS part of the driver *
3820 * ********************************************************* */
3821
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003822/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 * s2io_open - open entry point of the driver
3824 * @dev : pointer to the device structure.
3825 * Description:
3826 * This function is the open entry point of the driver. It mainly calls a
3827 * function to allocate Rx buffers and inserts them into the buffer
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003828 * descriptors and then enables the Rx part of the NIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 * Return value:
3830 * 0 on success and an appropriate (-)ve integer as defined in errno.h
3831 * file on failure.
3832 */
3833
Adrian Bunkac1f60d2005-11-06 01:46:47 +01003834static int s2io_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003836 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 int err = 0;
3838
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003839 /*
3840 * Make sure you have link off by default every time
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 * Nic is initialized
3842 */
3843 netif_carrier_off(dev);
raghavendra.koushik@neterion.com0b1f7eb2005-08-03 12:39:56 -07003844 sp->last_link_state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003846 napi_enable(&sp->napi);
3847
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07003848 if (sp->config.intr_type == MSI_X) {
Sivakumar Subramani8abc4d52007-09-15 13:11:34 -07003849 int ret = s2io_enable_msi_x(sp);
3850
3851 if (!ret) {
3852 u16 msi_control;
3853
3854 ret = s2io_test_msi(sp);
3855
3856 /* rollback MSI-X, will re-enable during add_isr() */
3857 kfree(sp->entries);
3858 sp->mac_control.stats_info->sw_stat.mem_freed +=
3859 (MAX_REQUESTED_MSI_X *
3860 sizeof(struct msix_entry));
3861 kfree(sp->s2io_entries);
3862 sp->mac_control.stats_info->sw_stat.mem_freed +=
3863 (MAX_REQUESTED_MSI_X *
3864 sizeof(struct s2io_msix_entry));
3865 sp->entries = NULL;
3866 sp->s2io_entries = NULL;
3867
3868 pci_read_config_word(sp->pdev, 0x42, &msi_control);
3869 msi_control &= 0xFFFE; /* Disable MSI */
3870 pci_write_config_word(sp->pdev, 0x42, msi_control);
3871
3872 pci_disable_msix(sp->pdev);
3873
3874 }
3875 if (ret) {
3876
3877 DBG_PRINT(ERR_DBG,
3878 "%s: MSI-X requested but failed to enable\n",
3879 dev->name);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07003880 sp->config.intr_type = INTA;
Sivakumar Subramani8abc4d52007-09-15 13:11:34 -07003881 }
3882 }
3883
Sivakumar Subramanic77dd432007-08-06 05:36:28 -04003884 /* NAPI doesn't work well with MSI(X) */
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07003885 if (sp->config.intr_type != INTA) {
Sivakumar Subramanic77dd432007-08-06 05:36:28 -04003886 if(sp->config.napi)
3887 sp->config.napi = 0;
3888 }
3889
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 /* Initialize H/W and enable interrupts */
Ananda Rajuc92ca042006-04-21 19:18:03 -04003891 err = s2io_card_up(sp);
3892 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 DBG_PRINT(ERR_DBG, "%s: H/W initialization failed\n",
3894 dev->name);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07003895 goto hw_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 }
3897
3898 if (s2io_set_mac_addr(dev, dev->dev_addr) == FAILURE) {
3899 DBG_PRINT(ERR_DBG, "Set Mac Address Failed\n");
Ananda Rajue6a8fee2006-07-06 23:58:23 -07003900 s2io_card_down(sp);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003901 err = -ENODEV;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07003902 goto hw_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 }
3904
3905 netif_start_queue(dev);
3906 return 0;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003907
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003908hw_init_failed:
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003909 napi_disable(&sp->napi);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07003910 if (sp->config.intr_type == MSI_X) {
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003911 if (sp->entries) {
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003912 kfree(sp->entries);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003913 sp->mac_control.stats_info->sw_stat.mem_freed
3914 += (MAX_REQUESTED_MSI_X * sizeof(struct msix_entry));
3915 }
3916 if (sp->s2io_entries) {
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003917 kfree(sp->s2io_entries);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003918 sp->mac_control.stats_info->sw_stat.mem_freed
3919 += (MAX_REQUESTED_MSI_X * sizeof(struct s2io_msix_entry));
3920 }
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003921 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003922 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923}
3924
3925/**
3926 * s2io_close -close entry point of the driver
3927 * @dev : device pointer.
3928 * Description:
3929 * This is the stop entry point of the driver. It needs to undo exactly
3930 * whatever was done by the open entry point,thus it's usually referred to
3931 * as the close function.Among other things this function mainly stops the
3932 * Rx side of the NIC and frees all the Rx buffers in the Rx rings.
3933 * Return value:
3934 * 0 on success and an appropriate (-)ve integer as defined in errno.h
3935 * file on failure.
3936 */
3937
Adrian Bunkac1f60d2005-11-06 01:46:47 +01003938static int s2io_close(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003940 struct s2io_nic *sp = dev->priv;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04003941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 netif_stop_queue(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003943 napi_disable(&sp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 /* Reset card, kill tasklet and free Tx and Rx buffers. */
Ananda Rajue6a8fee2006-07-06 23:58:23 -07003945 s2io_card_down(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 return 0;
3948}
3949
3950/**
3951 * s2io_xmit - Tx entry point of te driver
3952 * @skb : the socket buffer containing the Tx data.
3953 * @dev : device pointer.
3954 * Description :
3955 * This function is the Tx entry point of the driver. S2IO NIC supports
3956 * certain protocol assist features on Tx side, namely CSO, S/G, LSO.
3957 * NOTE: when device cant queue the pkt,just the trans_start variable will
3958 * not be upadted.
3959 * Return value:
3960 * 0 on success & 1 on failure.
3961 */
3962
Adrian Bunkac1f60d2005-11-06 01:46:47 +01003963static int s2io_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003965 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 u16 frg_cnt, frg_len, i, queue, queue_len, put_off, get_off;
3967 register u64 val64;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003968 struct TxD *txdp;
3969 struct TxFIFO_element __iomem *tx_fifo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 unsigned long flags;
raghavendra.koushik@neterion.combe3a6b02005-08-03 12:35:55 -07003971 u16 vlan_tag = 0;
3972 int vlan_priority = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05003973 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 struct config_param *config;
Ananda Raju75c30b12006-07-24 19:55:09 -04003975 int offload_type;
Veena Parat491abf22007-07-23 02:37:14 -04003976 struct swStat *stats = &sp->mac_control.stats_info->sw_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
3978 mac_control = &sp->mac_control;
3979 config = &sp->config;
3980
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003981 DBG_PRINT(TX_DBG, "%s: In Neterion Tx routine\n", dev->name);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04003982
3983 if (unlikely(skb->len <= 0)) {
3984 DBG_PRINT(TX_DBG, "%s:Buffer has no data..\n", dev->name);
3985 dev_kfree_skb_any(skb);
3986 return 0;
3987}
3988
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 spin_lock_irqsave(&sp->tx_lock, flags);
Sivakumar Subramani92b84432007-09-06 06:51:14 -04003990 if (!is_s2io_card_up(sp)) {
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003991 DBG_PRINT(TX_DBG, "%s: Card going down for reset\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 dev->name);
3993 spin_unlock_irqrestore(&sp->tx_lock, flags);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07003994 dev_kfree_skb(skb);
3995 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 }
3997
3998 queue = 0;
raghavendra.koushik@neterion.combe3a6b02005-08-03 12:35:55 -07003999 /* Get Fifo number to Transmit based on vlan priority */
4000 if (sp->vlgrp && vlan_tx_tag_present(skb)) {
4001 vlan_tag = vlan_tx_tag_get(skb);
4002 vlan_priority = vlan_tag >> 13;
4003 queue = config->fifo_mapping[vlan_priority];
4004 }
4005
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004006 put_off = (u16) mac_control->fifos[queue].tx_curr_put_info.offset;
4007 get_off = (u16) mac_control->fifos[queue].tx_curr_get_info.offset;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004008 txdp = (struct TxD *) mac_control->fifos[queue].list_info[put_off].
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004009 list_virt_addr;
4010
4011 queue_len = mac_control->fifos[queue].tx_curr_put_info.fifo_len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 /* Avoid "put" pointer going beyond "get" pointer */
Ananda Raju863c11a2006-04-21 19:03:13 -04004013 if (txdp->Host_Control ||
4014 ((put_off+1) == queue_len ? 0 : (put_off+1)) == get_off) {
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -07004015 DBG_PRINT(TX_DBG, "Error in xmit, No free TXDs.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 netif_stop_queue(dev);
4017 dev_kfree_skb(skb);
4018 spin_unlock_irqrestore(&sp->tx_lock, flags);
4019 return 0;
4020 }
raghavendra.koushik@neterion.com0b1f7eb2005-08-03 12:39:56 -07004021
Ananda Raju75c30b12006-07-24 19:55:09 -04004022 offload_type = s2io_offload_type(skb);
Ananda Raju75c30b12006-07-24 19:55:09 -04004023 if (offload_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 txdp->Control_1 |= TXD_TCP_LSO_EN;
Ananda Raju75c30b12006-07-24 19:55:09 -04004025 txdp->Control_1 |= TXD_TCP_LSO_MSS(s2io_tcp_mss(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 }
Patrick McHardy84fa7932006-08-29 16:44:56 -07004027 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 txdp->Control_2 |=
4029 (TXD_TX_CKO_IPV4_EN | TXD_TX_CKO_TCP_EN |
4030 TXD_TX_CKO_UDP_EN);
4031 }
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004032 txdp->Control_1 |= TXD_GATHER_CODE_FIRST;
4033 txdp->Control_1 |= TXD_LIST_OWN_XENA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 txdp->Control_2 |= config->tx_intr_type;
raghavendra.koushik@neterion.comd8892c62005-08-03 12:33:12 -07004035
raghavendra.koushik@neterion.combe3a6b02005-08-03 12:35:55 -07004036 if (sp->vlgrp && vlan_tx_tag_present(skb)) {
4037 txdp->Control_2 |= TXD_VLAN_ENABLE;
4038 txdp->Control_2 |= TXD_VLAN_TAG(vlan_tag);
4039 }
4040
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004041 frg_len = skb->len - skb->data_len;
Ananda Raju75c30b12006-07-24 19:55:09 -04004042 if (offload_type == SKB_GSO_UDP) {
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004043 int ufo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
Ananda Raju75c30b12006-07-24 19:55:09 -04004045 ufo_size = s2io_udp_mss(skb);
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004046 ufo_size &= ~7;
4047 txdp->Control_1 |= TXD_UFO_EN;
4048 txdp->Control_1 |= TXD_UFO_MSS(ufo_size);
4049 txdp->Control_1 |= TXD_BUFFER0_SIZE(8);
4050#ifdef __BIG_ENDIAN
4051 sp->ufo_in_band_v[put_off] =
4052 (u64)skb_shinfo(skb)->ip6_frag_id;
4053#else
4054 sp->ufo_in_band_v[put_off] =
4055 (u64)skb_shinfo(skb)->ip6_frag_id << 32;
4056#endif
4057 txdp->Host_Control = (unsigned long)sp->ufo_in_band_v;
4058 txdp->Buffer_Pointer = pci_map_single(sp->pdev,
4059 sp->ufo_in_band_v,
4060 sizeof(u64), PCI_DMA_TODEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04004061 if((txdp->Buffer_Pointer == 0) ||
4062 (txdp->Buffer_Pointer == DMA_ERROR_CODE))
4063 goto pci_map_failed;
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004064 txdp++;
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004065 }
4066
4067 txdp->Buffer_Pointer = pci_map_single
4068 (sp->pdev, skb->data, frg_len, PCI_DMA_TODEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04004069 if((txdp->Buffer_Pointer == 0) ||
4070 (txdp->Buffer_Pointer == DMA_ERROR_CODE))
4071 goto pci_map_failed;
4072
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004073 txdp->Host_Control = (unsigned long) skb;
4074 txdp->Control_1 |= TXD_BUFFER0_SIZE(frg_len);
Ananda Raju75c30b12006-07-24 19:55:09 -04004075 if (offload_type == SKB_GSO_UDP)
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004076 txdp->Control_1 |= TXD_UFO_EN;
4077
4078 frg_cnt = skb_shinfo(skb)->nr_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 /* For fragmented SKB. */
4080 for (i = 0; i < frg_cnt; i++) {
4081 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
raghavendra.koushik@neterion.com0b1f7eb2005-08-03 12:39:56 -07004082 /* A '0' length fragment will be ignored */
4083 if (!frag->size)
4084 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 txdp++;
4086 txdp->Buffer_Pointer = (u64) pci_map_page
4087 (sp->pdev, frag->page, frag->page_offset,
4088 frag->size, PCI_DMA_TODEVICE);
Ananda Rajuefd51b52006-01-19 14:11:54 -05004089 txdp->Control_1 = TXD_BUFFER0_SIZE(frag->size);
Ananda Raju75c30b12006-07-24 19:55:09 -04004090 if (offload_type == SKB_GSO_UDP)
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004091 txdp->Control_1 |= TXD_UFO_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 }
4093 txdp->Control_1 |= TXD_GATHER_CODE_LAST;
4094
Ananda Raju75c30b12006-07-24 19:55:09 -04004095 if (offload_type == SKB_GSO_UDP)
Ananda Rajufed5ecc2005-11-14 15:25:08 -05004096 frg_cnt++; /* as Txd0 was used for inband header */
4097
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 tx_fifo = mac_control->tx_FIFO_start[queue];
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004099 val64 = mac_control->fifos[queue].list_info[put_off].list_phy_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 writeq(val64, &tx_fifo->TxDL_Pointer);
4101
4102 val64 = (TX_FIFO_LAST_TXD_NUM(frg_cnt) | TX_FIFO_FIRST_LIST |
4103 TX_FIFO_LAST_LIST);
Ananda Raju75c30b12006-07-24 19:55:09 -04004104 if (offload_type)
4105 val64 |= TX_FIFO_SPECIAL_FUNC;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004106
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 writeq(val64, &tx_fifo->List_Control);
4108
raghavendra.koushik@neterion.com303bcb42005-08-03 12:41:38 -07004109 mmiowb();
4110
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 put_off++;
Ananda Raju863c11a2006-04-21 19:03:13 -04004112 if (put_off == mac_control->fifos[queue].tx_curr_put_info.fifo_len + 1)
4113 put_off = 0;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004114 mac_control->fifos[queue].tx_curr_put_info.offset = put_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
4116 /* Avoid "put" pointer going beyond "get" pointer */
Ananda Raju863c11a2006-04-21 19:03:13 -04004117 if (((put_off+1) == queue_len ? 0 : (put_off+1)) == get_off) {
Ananda Rajubd1034f2006-04-21 19:20:22 -04004118 sp->mac_control.stats_info->sw_stat.fifo_full_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 DBG_PRINT(TX_DBG,
4120 "No free TxDs for xmit, Put: 0x%x Get:0x%x\n",
4121 put_off, get_off);
4122 netif_stop_queue(dev);
4123 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04004124 mac_control->stats_info->sw_stat.mem_allocated += skb->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 dev->trans_start = jiffies;
4126 spin_unlock_irqrestore(&sp->tx_lock, flags);
4127
4128 return 0;
Veena Parat491abf22007-07-23 02:37:14 -04004129pci_map_failed:
4130 stats->pci_map_fail_cnt++;
4131 netif_stop_queue(dev);
4132 stats->mem_freed += skb->truesize;
4133 dev_kfree_skb(skb);
4134 spin_unlock_irqrestore(&sp->tx_lock, flags);
4135 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136}
4137
raghavendra.koushik@neterion.com25fff882005-08-03 12:34:11 -07004138static void
4139s2io_alarm_handle(unsigned long data)
4140{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004141 struct s2io_nic *sp = (struct s2io_nic *)data;
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07004142 struct net_device *dev = sp->dev;
raghavendra.koushik@neterion.com25fff882005-08-03 12:34:11 -07004143
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07004144 s2io_handle_errors(dev);
raghavendra.koushik@neterion.com25fff882005-08-03 12:34:11 -07004145 mod_timer(&sp->alarm_timer, jiffies + HZ / 2);
4146}
4147
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004148static int s2io_chk_rx_buffers(struct s2io_nic *sp, int rng_n)
Ananda Raju75c30b12006-07-24 19:55:09 -04004149{
4150 int rxb_size, level;
4151
4152 if (!sp->lro) {
4153 rxb_size = atomic_read(&sp->rx_bufs_left[rng_n]);
4154 level = rx_buffer_level(sp, rxb_size, rng_n);
4155
4156 if ((level == PANIC) && (!TASKLET_IN_USE)) {
4157 int ret;
4158 DBG_PRINT(INTR_DBG, "%s: Rx BD hit ", __FUNCTION__);
4159 DBG_PRINT(INTR_DBG, "PANIC levels\n");
4160 if ((ret = fill_rx_buffers(sp, rng_n)) == -ENOMEM) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08004161 DBG_PRINT(INFO_DBG, "Out of memory in %s",
Ananda Raju75c30b12006-07-24 19:55:09 -04004162 __FUNCTION__);
4163 clear_bit(0, (&sp->tasklet_status));
4164 return -1;
4165 }
4166 clear_bit(0, (&sp->tasklet_status));
4167 } else if (level == LOW)
4168 tasklet_schedule(&sp->task);
4169
4170 } else if (fill_rx_buffers(sp, rng_n) == -ENOMEM) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08004171 DBG_PRINT(INFO_DBG, "%s:Out of memory", sp->dev->name);
4172 DBG_PRINT(INFO_DBG, " in Rx Intr!!\n");
Ananda Raju75c30b12006-07-24 19:55:09 -04004173 }
4174 return 0;
4175}
4176
David Howells7d12e782006-10-05 14:55:46 +01004177static irqreturn_t s2io_msix_ring_handle(int irq, void *dev_id)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04004178{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004179 struct ring_info *ring = (struct ring_info *)dev_id;
4180 struct s2io_nic *sp = ring->nic;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04004181
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004182 if (!is_s2io_card_up(sp))
Sivakumar Subramani92b84432007-09-06 06:51:14 -04004183 return IRQ_HANDLED;
Sivakumar Subramani92b84432007-09-06 06:51:14 -04004184
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04004185 rx_intr_handler(ring);
Ananda Raju75c30b12006-07-24 19:55:09 -04004186 s2io_chk_rx_buffers(sp, ring->ring_no);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05004187
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04004188 return IRQ_HANDLED;
4189}
4190
David Howells7d12e782006-10-05 14:55:46 +01004191static irqreturn_t s2io_msix_fifo_handle(int irq, void *dev_id)
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04004192{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004193 struct fifo_info *fifo = (struct fifo_info *)dev_id;
4194 struct s2io_nic *sp = fifo->nic;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04004195
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004196 if (!is_s2io_card_up(sp))
Sivakumar Subramani92b84432007-09-06 06:51:14 -04004197 return IRQ_HANDLED;
Sivakumar Subramani92b84432007-09-06 06:51:14 -04004198
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04004199 tx_intr_handler(fifo);
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04004200 return IRQ_HANDLED;
4201}
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004202static void s2io_txpic_intr_handle(struct s2io_nic *sp)
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07004203{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004204 struct XENA_dev_config __iomem *bar0 = sp->bar0;
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07004205 u64 val64;
4206
4207 val64 = readq(&bar0->pic_int_status);
4208 if (val64 & PIC_INT_GPIO) {
4209 val64 = readq(&bar0->gpio_int_reg);
4210 if ((val64 & GPIO_INT_REG_LINK_DOWN) &&
4211 (val64 & GPIO_INT_REG_LINK_UP)) {
Ananda Rajuc92ca042006-04-21 19:18:03 -04004212 /*
4213 * This is unstable state so clear both up/down
4214 * interrupt and adapter to re-evaluate the link state.
4215 */
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07004216 val64 |= GPIO_INT_REG_LINK_DOWN;
4217 val64 |= GPIO_INT_REG_LINK_UP;
4218 writeq(val64, &bar0->gpio_int_reg);
Ananda Rajuc92ca042006-04-21 19:18:03 -04004219 val64 = readq(&bar0->gpio_int_mask);
4220 val64 &= ~(GPIO_INT_MASK_LINK_UP |
4221 GPIO_INT_MASK_LINK_DOWN);
4222 writeq(val64, &bar0->gpio_int_mask);
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07004223 }
Ananda Rajuc92ca042006-04-21 19:18:03 -04004224 else if (val64 & GPIO_INT_REG_LINK_UP) {
4225 val64 = readq(&bar0->adapter_status);
Ananda Rajuc92ca042006-04-21 19:18:03 -04004226 /* Enable Adapter */
Sivakumar Subramani19a60522007-01-31 13:30:49 -05004227 val64 = readq(&bar0->adapter_control);
4228 val64 |= ADAPTER_CNTL_EN;
4229 writeq(val64, &bar0->adapter_control);
4230 val64 |= ADAPTER_LED_ON;
4231 writeq(val64, &bar0->adapter_control);
4232 if (!sp->device_enabled_once)
4233 sp->device_enabled_once = 1;
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07004234
Sivakumar Subramani19a60522007-01-31 13:30:49 -05004235 s2io_link(sp, LINK_UP);
4236 /*
4237 * unmask link down interrupt and mask link-up
4238 * intr
4239 */
4240 val64 = readq(&bar0->gpio_int_mask);
4241 val64 &= ~GPIO_INT_MASK_LINK_DOWN;
4242 val64 |= GPIO_INT_MASK_LINK_UP;
4243 writeq(val64, &bar0->gpio_int_mask);
Ananda Rajuc92ca042006-04-21 19:18:03 -04004244
Ananda Rajuc92ca042006-04-21 19:18:03 -04004245 }else if (val64 & GPIO_INT_REG_LINK_DOWN) {
4246 val64 = readq(&bar0->adapter_status);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05004247 s2io_link(sp, LINK_DOWN);
4248 /* Link is down so unmaks link up interrupt */
4249 val64 = readq(&bar0->gpio_int_mask);
4250 val64 &= ~GPIO_INT_MASK_LINK_UP;
4251 val64 |= GPIO_INT_MASK_LINK_DOWN;
4252 writeq(val64, &bar0->gpio_int_mask);
Sivakumar Subramaniac1f90d2007-02-24 02:01:31 -05004253
4254 /* turn off LED */
4255 val64 = readq(&bar0->adapter_control);
4256 val64 = val64 &(~ADAPTER_LED_ON);
4257 writeq(val64, &bar0->adapter_control);
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07004258 }
4259 }
Ananda Rajuc92ca042006-04-21 19:18:03 -04004260 val64 = readq(&bar0->gpio_int_mask);
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07004261}
4262
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263/**
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07004264 * do_s2io_chk_alarm_bit - Check for alarm and incrment the counter
4265 * @value: alarm bits
4266 * @addr: address value
4267 * @cnt: counter variable
4268 * Description: Check for alarm and increment the counter
4269 * Return Value:
4270 * 1 - if alarm bit set
4271 * 0 - if alarm bit is not set
4272 */
4273int do_s2io_chk_alarm_bit(u64 value, void __iomem * addr,
4274 unsigned long long *cnt)
4275{
4276 u64 val64;
4277 val64 = readq(addr);
4278 if ( val64 & value ) {
4279 writeq(val64, addr);
4280 (*cnt)++;
4281 return 1;
4282 }
4283 return 0;
4284
4285}
4286
4287/**
4288 * s2io_handle_errors - Xframe error indication handler
4289 * @nic: device private variable
4290 * Description: Handle alarms such as loss of link, single or
4291 * double ECC errors, critical and serious errors.
4292 * Return Value:
4293 * NONE
4294 */
4295static void s2io_handle_errors(void * dev_id)
4296{
4297 struct net_device *dev = (struct net_device *) dev_id;
4298 struct s2io_nic *sp = dev->priv;
4299 struct XENA_dev_config __iomem *bar0 = sp->bar0;
4300 u64 temp64 = 0,val64=0;
4301 int i = 0;
4302
4303 struct swStat *sw_stat = &sp->mac_control.stats_info->sw_stat;
4304 struct xpakStat *stats = &sp->mac_control.stats_info->xpak_stat;
4305
Sivakumar Subramani92b84432007-09-06 06:51:14 -04004306 if (!is_s2io_card_up(sp))
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07004307 return;
4308
4309 if (pci_channel_offline(sp->pdev))
4310 return;
4311
4312 memset(&sw_stat->ring_full_cnt, 0,
4313 sizeof(sw_stat->ring_full_cnt));
4314
4315 /* Handling the XPAK counters update */
4316 if(stats->xpak_timer_count < 72000) {
4317 /* waiting for an hour */
4318 stats->xpak_timer_count++;
4319 } else {
4320 s2io_updt_xpak_counter(dev);
4321 /* reset the count to zero */
4322 stats->xpak_timer_count = 0;
4323 }
4324
4325 /* Handling link status change error Intr */
4326 if (s2io_link_fault_indication(sp) == MAC_RMAC_ERR_TIMER) {
4327 val64 = readq(&bar0->mac_rmac_err_reg);
4328 writeq(val64, &bar0->mac_rmac_err_reg);
4329 if (val64 & RMAC_LINK_STATE_CHANGE_INT)
4330 schedule_work(&sp->set_link_task);
4331 }
4332
4333 /* In case of a serious error, the device will be Reset. */
4334 if (do_s2io_chk_alarm_bit(SERR_SOURCE_ANY, &bar0->serr_source,
4335 &sw_stat->serious_err_cnt))
4336 goto reset;
4337
4338 /* Check for data parity error */
4339 if (do_s2io_chk_alarm_bit(GPIO_INT_REG_DP_ERR_INT, &bar0->gpio_int_reg,
4340 &sw_stat->parity_err_cnt))
4341 goto reset;
4342
4343 /* Check for ring full counter */
4344 if (sp->device_type == XFRAME_II_DEVICE) {
4345 val64 = readq(&bar0->ring_bump_counter1);
4346 for (i=0; i<4; i++) {
4347 temp64 = ( val64 & vBIT(0xFFFF,(i*16),16));
4348 temp64 >>= 64 - ((i+1)*16);
4349 sw_stat->ring_full_cnt[i] += temp64;
4350 }
4351
4352 val64 = readq(&bar0->ring_bump_counter2);
4353 for (i=0; i<4; i++) {
4354 temp64 = ( val64 & vBIT(0xFFFF,(i*16),16));
4355 temp64 >>= 64 - ((i+1)*16);
4356 sw_stat->ring_full_cnt[i+4] += temp64;
4357 }
4358 }
4359
4360 val64 = readq(&bar0->txdma_int_status);
4361 /*check for pfc_err*/
4362 if (val64 & TXDMA_PFC_INT) {
4363 if (do_s2io_chk_alarm_bit(PFC_ECC_DB_ERR | PFC_SM_ERR_ALARM|
4364 PFC_MISC_0_ERR | PFC_MISC_1_ERR|
4365 PFC_PCIX_ERR, &bar0->pfc_err_reg,
4366 &sw_stat->pfc_err_cnt))
4367 goto reset;
4368 do_s2io_chk_alarm_bit(PFC_ECC_SG_ERR, &bar0->pfc_err_reg,
4369 &sw_stat->pfc_err_cnt);
4370 }
4371
4372 /*check for tda_err*/
4373 if (val64 & TXDMA_TDA_INT) {
4374 if(do_s2io_chk_alarm_bit(TDA_Fn_ECC_DB_ERR | TDA_SM0_ERR_ALARM |
4375 TDA_SM1_ERR_ALARM, &bar0->tda_err_reg,
4376 &sw_stat->tda_err_cnt))
4377 goto reset;
4378 do_s2io_chk_alarm_bit(TDA_Fn_ECC_SG_ERR | TDA_PCIX_ERR,
4379 &bar0->tda_err_reg, &sw_stat->tda_err_cnt);
4380 }
4381 /*check for pcc_err*/
4382 if (val64 & TXDMA_PCC_INT) {
4383 if (do_s2io_chk_alarm_bit(PCC_SM_ERR_ALARM | PCC_WR_ERR_ALARM
4384 | PCC_N_SERR | PCC_6_COF_OV_ERR
4385 | PCC_7_COF_OV_ERR | PCC_6_LSO_OV_ERR
4386 | PCC_7_LSO_OV_ERR | PCC_FB_ECC_DB_ERR
4387 | PCC_TXB_ECC_DB_ERR, &bar0->pcc_err_reg,
4388 &sw_stat->pcc_err_cnt))
4389 goto reset;
4390 do_s2io_chk_alarm_bit(PCC_FB_ECC_SG_ERR | PCC_TXB_ECC_SG_ERR,
4391 &bar0->pcc_err_reg, &sw_stat->pcc_err_cnt);
4392 }
4393
4394 /*check for tti_err*/
4395 if (val64 & TXDMA_TTI_INT) {
4396 if (do_s2io_chk_alarm_bit(TTI_SM_ERR_ALARM, &bar0->tti_err_reg,
4397 &sw_stat->tti_err_cnt))
4398 goto reset;
4399 do_s2io_chk_alarm_bit(TTI_ECC_SG_ERR | TTI_ECC_DB_ERR,
4400 &bar0->tti_err_reg, &sw_stat->tti_err_cnt);
4401 }
4402
4403 /*check for lso_err*/
4404 if (val64 & TXDMA_LSO_INT) {
4405 if (do_s2io_chk_alarm_bit(LSO6_ABORT | LSO7_ABORT
4406 | LSO6_SM_ERR_ALARM | LSO7_SM_ERR_ALARM,
4407 &bar0->lso_err_reg, &sw_stat->lso_err_cnt))
4408 goto reset;
4409 do_s2io_chk_alarm_bit(LSO6_SEND_OFLOW | LSO7_SEND_OFLOW,
4410 &bar0->lso_err_reg, &sw_stat->lso_err_cnt);
4411 }
4412
4413 /*check for tpa_err*/
4414 if (val64 & TXDMA_TPA_INT) {
4415 if (do_s2io_chk_alarm_bit(TPA_SM_ERR_ALARM, &bar0->tpa_err_reg,
4416 &sw_stat->tpa_err_cnt))
4417 goto reset;
4418 do_s2io_chk_alarm_bit(TPA_TX_FRM_DROP, &bar0->tpa_err_reg,
4419 &sw_stat->tpa_err_cnt);
4420 }
4421
4422 /*check for sm_err*/
4423 if (val64 & TXDMA_SM_INT) {
4424 if (do_s2io_chk_alarm_bit(SM_SM_ERR_ALARM, &bar0->sm_err_reg,
4425 &sw_stat->sm_err_cnt))
4426 goto reset;
4427 }
4428
4429 val64 = readq(&bar0->mac_int_status);
4430 if (val64 & MAC_INT_STATUS_TMAC_INT) {
4431 if (do_s2io_chk_alarm_bit(TMAC_TX_BUF_OVRN | TMAC_TX_SM_ERR,
4432 &bar0->mac_tmac_err_reg,
4433 &sw_stat->mac_tmac_err_cnt))
4434 goto reset;
4435 do_s2io_chk_alarm_bit(TMAC_ECC_SG_ERR | TMAC_ECC_DB_ERR
4436 | TMAC_DESC_ECC_SG_ERR | TMAC_DESC_ECC_DB_ERR,
4437 &bar0->mac_tmac_err_reg,
4438 &sw_stat->mac_tmac_err_cnt);
4439 }
4440
4441 val64 = readq(&bar0->xgxs_int_status);
4442 if (val64 & XGXS_INT_STATUS_TXGXS) {
4443 if (do_s2io_chk_alarm_bit(TXGXS_ESTORE_UFLOW | TXGXS_TX_SM_ERR,
4444 &bar0->xgxs_txgxs_err_reg,
4445 &sw_stat->xgxs_txgxs_err_cnt))
4446 goto reset;
4447 do_s2io_chk_alarm_bit(TXGXS_ECC_SG_ERR | TXGXS_ECC_DB_ERR,
4448 &bar0->xgxs_txgxs_err_reg,
4449 &sw_stat->xgxs_txgxs_err_cnt);
4450 }
4451
4452 val64 = readq(&bar0->rxdma_int_status);
4453 if (val64 & RXDMA_INT_RC_INT_M) {
4454 if (do_s2io_chk_alarm_bit(RC_PRCn_ECC_DB_ERR | RC_FTC_ECC_DB_ERR
4455 | RC_PRCn_SM_ERR_ALARM |RC_FTC_SM_ERR_ALARM,
4456 &bar0->rc_err_reg, &sw_stat->rc_err_cnt))
4457 goto reset;
4458 do_s2io_chk_alarm_bit(RC_PRCn_ECC_SG_ERR | RC_FTC_ECC_SG_ERR
4459 | RC_RDA_FAIL_WR_Rn, &bar0->rc_err_reg,
4460 &sw_stat->rc_err_cnt);
4461 if (do_s2io_chk_alarm_bit(PRC_PCI_AB_RD_Rn | PRC_PCI_AB_WR_Rn
4462 | PRC_PCI_AB_F_WR_Rn, &bar0->prc_pcix_err_reg,
4463 &sw_stat->prc_pcix_err_cnt))
4464 goto reset;
4465 do_s2io_chk_alarm_bit(PRC_PCI_DP_RD_Rn | PRC_PCI_DP_WR_Rn
4466 | PRC_PCI_DP_F_WR_Rn, &bar0->prc_pcix_err_reg,
4467 &sw_stat->prc_pcix_err_cnt);
4468 }
4469
4470 if (val64 & RXDMA_INT_RPA_INT_M) {
4471 if (do_s2io_chk_alarm_bit(RPA_SM_ERR_ALARM | RPA_CREDIT_ERR,
4472 &bar0->rpa_err_reg, &sw_stat->rpa_err_cnt))
4473 goto reset;
4474 do_s2io_chk_alarm_bit(RPA_ECC_SG_ERR | RPA_ECC_DB_ERR,
4475 &bar0->rpa_err_reg, &sw_stat->rpa_err_cnt);
4476 }
4477
4478 if (val64 & RXDMA_INT_RDA_INT_M) {
4479 if (do_s2io_chk_alarm_bit(RDA_RXDn_ECC_DB_ERR
4480 | RDA_FRM_ECC_DB_N_AERR | RDA_SM1_ERR_ALARM
4481 | RDA_SM0_ERR_ALARM | RDA_RXD_ECC_DB_SERR,
4482 &bar0->rda_err_reg, &sw_stat->rda_err_cnt))
4483 goto reset;
4484 do_s2io_chk_alarm_bit(RDA_RXDn_ECC_SG_ERR | RDA_FRM_ECC_SG_ERR
4485 | RDA_MISC_ERR | RDA_PCIX_ERR,
4486 &bar0->rda_err_reg, &sw_stat->rda_err_cnt);
4487 }
4488
4489 if (val64 & RXDMA_INT_RTI_INT_M) {
4490 if (do_s2io_chk_alarm_bit(RTI_SM_ERR_ALARM, &bar0->rti_err_reg,
4491 &sw_stat->rti_err_cnt))
4492 goto reset;
4493 do_s2io_chk_alarm_bit(RTI_ECC_SG_ERR | RTI_ECC_DB_ERR,
4494 &bar0->rti_err_reg, &sw_stat->rti_err_cnt);
4495 }
4496
4497 val64 = readq(&bar0->mac_int_status);
4498 if (val64 & MAC_INT_STATUS_RMAC_INT) {
4499 if (do_s2io_chk_alarm_bit(RMAC_RX_BUFF_OVRN | RMAC_RX_SM_ERR,
4500 &bar0->mac_rmac_err_reg,
4501 &sw_stat->mac_rmac_err_cnt))
4502 goto reset;
4503 do_s2io_chk_alarm_bit(RMAC_UNUSED_INT|RMAC_SINGLE_ECC_ERR|
4504 RMAC_DOUBLE_ECC_ERR, &bar0->mac_rmac_err_reg,
4505 &sw_stat->mac_rmac_err_cnt);
4506 }
4507
4508 val64 = readq(&bar0->xgxs_int_status);
4509 if (val64 & XGXS_INT_STATUS_RXGXS) {
4510 if (do_s2io_chk_alarm_bit(RXGXS_ESTORE_OFLOW | RXGXS_RX_SM_ERR,
4511 &bar0->xgxs_rxgxs_err_reg,
4512 &sw_stat->xgxs_rxgxs_err_cnt))
4513 goto reset;
4514 }
4515
4516 val64 = readq(&bar0->mc_int_status);
4517 if(val64 & MC_INT_STATUS_MC_INT) {
4518 if (do_s2io_chk_alarm_bit(MC_ERR_REG_SM_ERR, &bar0->mc_err_reg,
4519 &sw_stat->mc_err_cnt))
4520 goto reset;
4521
4522 /* Handling Ecc errors */
4523 if (val64 & (MC_ERR_REG_ECC_ALL_SNG | MC_ERR_REG_ECC_ALL_DBL)) {
4524 writeq(val64, &bar0->mc_err_reg);
4525 if (val64 & MC_ERR_REG_ECC_ALL_DBL) {
4526 sw_stat->double_ecc_errs++;
4527 if (sp->device_type != XFRAME_II_DEVICE) {
4528 /*
4529 * Reset XframeI only if critical error
4530 */
4531 if (val64 &
4532 (MC_ERR_REG_MIRI_ECC_DB_ERR_0 |
4533 MC_ERR_REG_MIRI_ECC_DB_ERR_1))
4534 goto reset;
4535 }
4536 } else
4537 sw_stat->single_ecc_errs++;
4538 }
4539 }
4540 return;
4541
4542reset:
4543 netif_stop_queue(dev);
4544 schedule_work(&sp->rst_timer_task);
4545 sw_stat->soft_reset_cnt++;
4546 return;
4547}
4548
4549/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 * s2io_isr - ISR handler of the device .
4551 * @irq: the irq of the device.
4552 * @dev_id: a void pointer to the dev structure of the NIC.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004553 * Description: This function is the ISR handler of the device. It
4554 * identifies the reason for the interrupt and calls the relevant
4555 * service routines. As a contongency measure, this ISR allocates the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 * recv buffers, if their numbers are below the panic value which is
4557 * presently set to 25% of the original number of rcv buffers allocated.
4558 * Return value:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004559 * IRQ_HANDLED: will be returned if IRQ was handled by this routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 * IRQ_NONE: will be returned if interrupt is not from our device
4561 */
David Howells7d12e782006-10-05 14:55:46 +01004562static irqreturn_t s2io_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563{
4564 struct net_device *dev = (struct net_device *) dev_id;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004565 struct s2io_nic *sp = dev->priv;
4566 struct XENA_dev_config __iomem *bar0 = sp->bar0;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004567 int i;
Sivakumar Subramani19a60522007-01-31 13:30:49 -05004568 u64 reason = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004569 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 struct config_param *config;
4571
Linas Vepstasd796fdb2007-05-14 18:37:30 -05004572 /* Pretend we handled any irq's from a disconnected card */
4573 if (pci_channel_offline(sp->pdev))
4574 return IRQ_NONE;
4575
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004576 if (!is_s2io_card_up(sp))
Sivakumar Subramani92b84432007-09-06 06:51:14 -04004577 return IRQ_NONE;
Sivakumar Subramani92b84432007-09-06 06:51:14 -04004578
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 mac_control = &sp->mac_control;
4580 config = &sp->config;
4581
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004582 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 * Identify the cause for interrupt and call the appropriate
4584 * interrupt handler. Causes for the interrupt could be;
4585 * 1. Rx of packet.
4586 * 2. Tx complete.
4587 * 3. Link down.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588 */
4589 reason = readq(&bar0->general_int_status);
4590
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004591 if (unlikely(reason == S2IO_MINUS_ONE) ) {
4592 /* Nothing much can be done. Get out */
4593 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 }
4595
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004596 if (reason & (GEN_INTR_RXTRAFFIC |
4597 GEN_INTR_TXTRAFFIC | GEN_INTR_TXPIC))
4598 {
4599 writeq(S2IO_MINUS_ONE, &bar0->general_int_mask);
4600
4601 if (config->napi) {
4602 if (reason & GEN_INTR_RXTRAFFIC) {
4603 if (likely(netif_rx_schedule_prep(dev,
4604 &sp->napi))) {
4605 __netif_rx_schedule(dev, &sp->napi);
4606 writeq(S2IO_MINUS_ONE,
4607 &bar0->rx_traffic_mask);
4608 } else
4609 writeq(S2IO_MINUS_ONE,
4610 &bar0->rx_traffic_int);
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05004611 }
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004612 } else {
4613 /*
4614 * rx_traffic_int reg is an R1 register, writing all 1's
4615 * will ensure that the actual interrupt causing bit
4616 * get's cleared and hence a read can be avoided.
4617 */
4618 if (reason & GEN_INTR_RXTRAFFIC)
Sivakumar Subramani19a60522007-01-31 13:30:49 -05004619 writeq(S2IO_MINUS_ONE, &bar0->rx_traffic_int);
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004620
4621 for (i = 0; i < config->rx_ring_num; i++)
4622 rx_intr_handler(&mac_control->rings[i]);
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05004623 }
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004624
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05004625 /*
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004626 * tx_traffic_int reg is an R1 register, writing all 1's
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05004627 * will ensure that the actual interrupt causing bit get's
4628 * cleared and hence a read can be avoided.
4629 */
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004630 if (reason & GEN_INTR_TXTRAFFIC)
4631 writeq(S2IO_MINUS_ONE, &bar0->tx_traffic_int);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05004632
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004633 for (i = 0; i < config->tx_fifo_num; i++)
4634 tx_intr_handler(&mac_control->fifos[i]);
4635
4636 if (reason & GEN_INTR_TXPIC)
4637 s2io_txpic_intr_handle(sp);
4638
4639 /*
4640 * Reallocate the buffers from the interrupt handler itself.
4641 */
4642 if (!config->napi) {
4643 for (i = 0; i < config->rx_ring_num; i++)
4644 s2io_chk_rx_buffers(sp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 }
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07004646 writeq(sp->general_int_mask, &bar0->general_int_mask);
4647 readl(&bar0->general_int_status);
4648
4649 return IRQ_HANDLED;
4650
4651 }
4652 else if (!reason) {
4653 /* The interrupt was not raised by us */
4654 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 return IRQ_HANDLED;
4658}
4659
4660/**
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07004661 * s2io_updt_stats -
4662 */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004663static void s2io_updt_stats(struct s2io_nic *sp)
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07004664{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004665 struct XENA_dev_config __iomem *bar0 = sp->bar0;
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07004666 u64 val64;
4667 int cnt = 0;
4668
Sivakumar Subramani92b84432007-09-06 06:51:14 -04004669 if (is_s2io_card_up(sp)) {
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07004670 /* Apprx 30us on a 133 MHz bus */
4671 val64 = SET_UPDT_CLICKS(10) |
4672 STAT_CFG_ONE_SHOT_EN | STAT_CFG_STAT_EN;
4673 writeq(val64, &bar0->stat_cfg);
4674 do {
4675 udelay(100);
4676 val64 = readq(&bar0->stat_cfg);
4677 if (!(val64 & BIT(0)))
4678 break;
4679 cnt++;
4680 if (cnt == 5)
4681 break; /* Updt failed */
4682 } while(1);
Ramkrishna Vepa363dc362007-03-06 17:01:00 -08004683 }
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07004684}
4685
4686/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004687 * s2io_get_stats - Updates the device statistics structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 * @dev : pointer to the device structure.
4689 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004690 * This function updates the device statistics structure in the s2io_nic
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 * structure and returns a pointer to the same.
4692 * Return value:
4693 * pointer to the updated net_device_stats structure.
4694 */
4695
Adrian Bunkac1f60d2005-11-06 01:46:47 +01004696static struct net_device_stats *s2io_get_stats(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004698 struct s2io_nic *sp = dev->priv;
4699 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 struct config_param *config;
4701
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004702
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 mac_control = &sp->mac_control;
4704 config = &sp->config;
4705
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07004706 /* Configure Stats for immediate updt */
4707 s2io_updt_stats(sp);
4708
4709 sp->stats.tx_packets =
4710 le32_to_cpu(mac_control->stats_info->tmac_frms);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004711 sp->stats.tx_errors =
4712 le32_to_cpu(mac_control->stats_info->tmac_any_err_frms);
4713 sp->stats.rx_errors =
Al Viroee705db2006-09-23 01:28:17 +01004714 le64_to_cpu(mac_control->stats_info->rmac_drop_frms);
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004715 sp->stats.multicast =
4716 le32_to_cpu(mac_control->stats_info->rmac_vld_mcst_frms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 sp->stats.rx_length_errors =
Al Viroee705db2006-09-23 01:28:17 +01004718 le64_to_cpu(mac_control->stats_info->rmac_long_frms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719
4720 return (&sp->stats);
4721}
4722
4723/**
4724 * s2io_set_multicast - entry point for multicast address enable/disable.
4725 * @dev : pointer to the device structure
4726 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004727 * This function is a driver entry point which gets called by the kernel
4728 * whenever multicast addresses must be enabled/disabled. This also gets
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 * called to set/reset promiscuous mode. Depending on the deivce flag, we
4730 * determine, if multicast address must be enabled or if promiscuous mode
4731 * is to be disabled etc.
4732 * Return value:
4733 * void.
4734 */
4735
4736static void s2io_set_multicast(struct net_device *dev)
4737{
4738 int i, j, prev_cnt;
4739 struct dev_mc_list *mclist;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004740 struct s2io_nic *sp = dev->priv;
4741 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 u64 val64 = 0, multi_mac = 0x010203040506ULL, mask =
4743 0xfeffffffffffULL;
4744 u64 dis_addr = 0xffffffffffffULL, mac_addr = 0;
4745 void __iomem *add;
4746
4747 if ((dev->flags & IFF_ALLMULTI) && (!sp->m_cast_flg)) {
4748 /* Enable all Multicast addresses */
4749 writeq(RMAC_ADDR_DATA0_MEM_ADDR(multi_mac),
4750 &bar0->rmac_addr_data0_mem);
4751 writeq(RMAC_ADDR_DATA1_MEM_MASK(mask),
4752 &bar0->rmac_addr_data1_mem);
4753 val64 = RMAC_ADDR_CMD_MEM_WE |
4754 RMAC_ADDR_CMD_MEM_STROBE_NEW_CMD |
4755 RMAC_ADDR_CMD_MEM_OFFSET(MAC_MC_ALL_MC_ADDR_OFFSET);
4756 writeq(val64, &bar0->rmac_addr_cmd_mem);
4757 /* Wait till command completes */
Ananda Rajuc92ca042006-04-21 19:18:03 -04004758 wait_for_cmd_complete(&bar0->rmac_addr_cmd_mem,
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05004759 RMAC_ADDR_CMD_MEM_STROBE_CMD_EXECUTING,
4760 S2IO_BIT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761
4762 sp->m_cast_flg = 1;
4763 sp->all_multi_pos = MAC_MC_ALL_MC_ADDR_OFFSET;
4764 } else if ((dev->flags & IFF_ALLMULTI) && (sp->m_cast_flg)) {
4765 /* Disable all Multicast addresses */
4766 writeq(RMAC_ADDR_DATA0_MEM_ADDR(dis_addr),
4767 &bar0->rmac_addr_data0_mem);
raghavendra.koushik@neterion.com5e25b9d2005-08-03 12:27:09 -07004768 writeq(RMAC_ADDR_DATA1_MEM_MASK(0x0),
4769 &bar0->rmac_addr_data1_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 val64 = RMAC_ADDR_CMD_MEM_WE |
4771 RMAC_ADDR_CMD_MEM_STROBE_NEW_CMD |
4772 RMAC_ADDR_CMD_MEM_OFFSET(sp->all_multi_pos);
4773 writeq(val64, &bar0->rmac_addr_cmd_mem);
4774 /* Wait till command completes */
Ananda Rajuc92ca042006-04-21 19:18:03 -04004775 wait_for_cmd_complete(&bar0->rmac_addr_cmd_mem,
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05004776 RMAC_ADDR_CMD_MEM_STROBE_CMD_EXECUTING,
4777 S2IO_BIT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
4779 sp->m_cast_flg = 0;
4780 sp->all_multi_pos = 0;
4781 }
4782
4783 if ((dev->flags & IFF_PROMISC) && (!sp->promisc_flg)) {
4784 /* Put the NIC into promiscuous mode */
4785 add = &bar0->mac_cfg;
4786 val64 = readq(&bar0->mac_cfg);
4787 val64 |= MAC_CFG_RMAC_PROM_ENABLE;
4788
4789 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
4790 writel((u32) val64, add);
4791 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
4792 writel((u32) (val64 >> 32), (add + 4));
4793
Sivakumar Subramani926930b2007-02-24 01:59:39 -05004794 if (vlan_tag_strip != 1) {
4795 val64 = readq(&bar0->rx_pa_cfg);
4796 val64 &= ~RX_PA_CFG_STRIP_VLAN_TAG;
4797 writeq(val64, &bar0->rx_pa_cfg);
4798 vlan_strip_flag = 0;
4799 }
4800
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 val64 = readq(&bar0->mac_cfg);
4802 sp->promisc_flg = 1;
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -07004803 DBG_PRINT(INFO_DBG, "%s: entered promiscuous mode\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 dev->name);
4805 } else if (!(dev->flags & IFF_PROMISC) && (sp->promisc_flg)) {
4806 /* Remove the NIC from promiscuous mode */
4807 add = &bar0->mac_cfg;
4808 val64 = readq(&bar0->mac_cfg);
4809 val64 &= ~MAC_CFG_RMAC_PROM_ENABLE;
4810
4811 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
4812 writel((u32) val64, add);
4813 writeq(RMAC_CFG_KEY(0x4C0D), &bar0->rmac_cfg_key);
4814 writel((u32) (val64 >> 32), (add + 4));
4815
Sivakumar Subramani926930b2007-02-24 01:59:39 -05004816 if (vlan_tag_strip != 0) {
4817 val64 = readq(&bar0->rx_pa_cfg);
4818 val64 |= RX_PA_CFG_STRIP_VLAN_TAG;
4819 writeq(val64, &bar0->rx_pa_cfg);
4820 vlan_strip_flag = 1;
4821 }
4822
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 val64 = readq(&bar0->mac_cfg);
4824 sp->promisc_flg = 0;
ravinandan.arakali@neterion.com776bd202005-09-06 21:36:56 -07004825 DBG_PRINT(INFO_DBG, "%s: left promiscuous mode\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 dev->name);
4827 }
4828
4829 /* Update individual M_CAST address list */
4830 if ((!sp->m_cast_flg) && dev->mc_count) {
4831 if (dev->mc_count >
4832 (MAX_ADDRS_SUPPORTED - MAC_MC_ADDR_START_OFFSET - 1)) {
4833 DBG_PRINT(ERR_DBG, "%s: No more Rx filters ",
4834 dev->name);
4835 DBG_PRINT(ERR_DBG, "can be added, please enable ");
4836 DBG_PRINT(ERR_DBG, "ALL_MULTI instead\n");
4837 return;
4838 }
4839
4840 prev_cnt = sp->mc_addr_count;
4841 sp->mc_addr_count = dev->mc_count;
4842
4843 /* Clear out the previous list of Mc in the H/W. */
4844 for (i = 0; i < prev_cnt; i++) {
4845 writeq(RMAC_ADDR_DATA0_MEM_ADDR(dis_addr),
4846 &bar0->rmac_addr_data0_mem);
4847 writeq(RMAC_ADDR_DATA1_MEM_MASK(0ULL),
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004848 &bar0->rmac_addr_data1_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 val64 = RMAC_ADDR_CMD_MEM_WE |
4850 RMAC_ADDR_CMD_MEM_STROBE_NEW_CMD |
4851 RMAC_ADDR_CMD_MEM_OFFSET
4852 (MAC_MC_ADDR_START_OFFSET + i);
4853 writeq(val64, &bar0->rmac_addr_cmd_mem);
4854
4855 /* Wait for command completes */
Ananda Rajuc92ca042006-04-21 19:18:03 -04004856 if (wait_for_cmd_complete(&bar0->rmac_addr_cmd_mem,
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05004857 RMAC_ADDR_CMD_MEM_STROBE_CMD_EXECUTING,
4858 S2IO_BIT_RESET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 DBG_PRINT(ERR_DBG, "%s: Adding ",
4860 dev->name);
4861 DBG_PRINT(ERR_DBG, "Multicasts failed\n");
4862 return;
4863 }
4864 }
4865
4866 /* Create the new Rx filter list and update the same in H/W. */
4867 for (i = 0, mclist = dev->mc_list; i < dev->mc_count;
4868 i++, mclist = mclist->next) {
4869 memcpy(sp->usr_addrs[i].addr, mclist->dmi_addr,
4870 ETH_ALEN);
Jeff Garzika7a80d52006-03-04 12:06:51 -05004871 mac_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 for (j = 0; j < ETH_ALEN; j++) {
4873 mac_addr |= mclist->dmi_addr[j];
4874 mac_addr <<= 8;
4875 }
4876 mac_addr >>= 8;
4877 writeq(RMAC_ADDR_DATA0_MEM_ADDR(mac_addr),
4878 &bar0->rmac_addr_data0_mem);
4879 writeq(RMAC_ADDR_DATA1_MEM_MASK(0ULL),
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004880 &bar0->rmac_addr_data1_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 val64 = RMAC_ADDR_CMD_MEM_WE |
4882 RMAC_ADDR_CMD_MEM_STROBE_NEW_CMD |
4883 RMAC_ADDR_CMD_MEM_OFFSET
4884 (i + MAC_MC_ADDR_START_OFFSET);
4885 writeq(val64, &bar0->rmac_addr_cmd_mem);
4886
4887 /* Wait for command completes */
Ananda Rajuc92ca042006-04-21 19:18:03 -04004888 if (wait_for_cmd_complete(&bar0->rmac_addr_cmd_mem,
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05004889 RMAC_ADDR_CMD_MEM_STROBE_CMD_EXECUTING,
4890 S2IO_BIT_RESET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891 DBG_PRINT(ERR_DBG, "%s: Adding ",
4892 dev->name);
4893 DBG_PRINT(ERR_DBG, "Multicasts failed\n");
4894 return;
4895 }
4896 }
4897 }
4898}
4899
4900/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004901 * s2io_set_mac_addr - Programs the Xframe mac address
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 * @dev : pointer to the device structure.
4903 * @addr: a uchar pointer to the new mac address which is to be set.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004904 * Description : This procedure will program the Xframe to receive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 * frames with new Mac Address
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004906 * Return value: SUCCESS on success and an appropriate (-)ve integer
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 * as defined in errno.h file on failure.
4908 */
4909
Adrian Bunk26df54b2006-01-14 03:09:40 +01004910static int s2io_set_mac_addr(struct net_device *dev, u8 * addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004912 struct s2io_nic *sp = dev->priv;
4913 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 register u64 val64, mac_addr = 0;
4915 int i;
Sivakumar Subramanid8d70ca2007-02-24 02:04:24 -05004916 u64 old_mac_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004918 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 * Set the new MAC address as the new unicast filter and reflect this
4920 * change on the device address registered with the OS. It will be
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004921 * at offset 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 */
4923 for (i = 0; i < ETH_ALEN; i++) {
4924 mac_addr <<= 8;
4925 mac_addr |= addr[i];
Sivakumar Subramanid8d70ca2007-02-24 02:04:24 -05004926 old_mac_addr <<= 8;
4927 old_mac_addr |= sp->def_mac_addr[0].mac_addr[i];
4928 }
4929
4930 if(0 == mac_addr)
4931 return SUCCESS;
4932
4933 /* Update the internal structure with this new mac address */
4934 if(mac_addr != old_mac_addr) {
4935 memset(sp->def_mac_addr[0].mac_addr, 0, sizeof(ETH_ALEN));
4936 sp->def_mac_addr[0].mac_addr[5] = (u8) (mac_addr);
4937 sp->def_mac_addr[0].mac_addr[4] = (u8) (mac_addr >> 8);
4938 sp->def_mac_addr[0].mac_addr[3] = (u8) (mac_addr >> 16);
4939 sp->def_mac_addr[0].mac_addr[2] = (u8) (mac_addr >> 24);
4940 sp->def_mac_addr[0].mac_addr[1] = (u8) (mac_addr >> 32);
4941 sp->def_mac_addr[0].mac_addr[0] = (u8) (mac_addr >> 40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942 }
4943
4944 writeq(RMAC_ADDR_DATA0_MEM_ADDR(mac_addr),
4945 &bar0->rmac_addr_data0_mem);
4946
4947 val64 =
4948 RMAC_ADDR_CMD_MEM_WE | RMAC_ADDR_CMD_MEM_STROBE_NEW_CMD |
4949 RMAC_ADDR_CMD_MEM_OFFSET(0);
4950 writeq(val64, &bar0->rmac_addr_cmd_mem);
4951 /* Wait till command completes */
Ananda Rajuc92ca042006-04-21 19:18:03 -04004952 if (wait_for_cmd_complete(&bar0->rmac_addr_cmd_mem,
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05004953 RMAC_ADDR_CMD_MEM_STROBE_CMD_EXECUTING, S2IO_BIT_RESET)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 DBG_PRINT(ERR_DBG, "%s: set_mac_addr failed\n", dev->name);
4955 return FAILURE;
4956 }
4957
4958 return SUCCESS;
4959}
4960
4961/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004962 * s2io_ethtool_sset - Sets different link parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 * @sp : private member of the device structure, which is a pointer to the * s2io_nic structure.
4964 * @info: pointer to the structure with parameters given by ethtool to set
4965 * link information.
4966 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004967 * The function sets different link parameters provided by the user onto
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 * the NIC.
4969 * Return value:
4970 * 0 on success.
4971*/
4972
4973static int s2io_ethtool_sset(struct net_device *dev,
4974 struct ethtool_cmd *info)
4975{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05004976 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 if ((info->autoneg == AUTONEG_ENABLE) ||
4978 (info->speed != SPEED_10000) || (info->duplex != DUPLEX_FULL))
4979 return -EINVAL;
4980 else {
4981 s2io_close(sp->dev);
4982 s2io_open(sp->dev);
4983 }
4984
4985 return 0;
4986}
4987
4988/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07004989 * s2io_ethtol_gset - Return link specific information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 * @sp : private member of the device structure, pointer to the
4991 * s2io_nic structure.
4992 * @info : pointer to the structure with parameters given by ethtool
4993 * to return link information.
4994 * Description:
4995 * Returns link specific information like speed, duplex etc.. to ethtool.
4996 * Return value :
4997 * return 0 on success.
4998 */
4999
5000static int s2io_ethtool_gset(struct net_device *dev, struct ethtool_cmd *info)
5001{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005002 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003 info->supported = (SUPPORTED_10000baseT_Full | SUPPORTED_FIBRE);
5004 info->advertising = (SUPPORTED_10000baseT_Full | SUPPORTED_FIBRE);
5005 info->port = PORT_FIBRE;
5006 /* info->transceiver?? TODO */
5007
5008 if (netif_carrier_ok(sp->dev)) {
5009 info->speed = 10000;
5010 info->duplex = DUPLEX_FULL;
5011 } else {
5012 info->speed = -1;
5013 info->duplex = -1;
5014 }
5015
5016 info->autoneg = AUTONEG_DISABLE;
5017 return 0;
5018}
5019
5020/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005021 * s2io_ethtool_gdrvinfo - Returns driver specific information.
5022 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 * s2io_nic structure.
5024 * @info : pointer to the structure with parameters given by ethtool to
5025 * return driver information.
5026 * Description:
5027 * Returns driver specefic information like name, version etc.. to ethtool.
5028 * Return value:
5029 * void
5030 */
5031
5032static void s2io_ethtool_gdrvinfo(struct net_device *dev,
5033 struct ethtool_drvinfo *info)
5034{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005035 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
John W. Linvilledbc23092005-09-28 17:50:51 -04005037 strncpy(info->driver, s2io_driver_name, sizeof(info->driver));
5038 strncpy(info->version, s2io_driver_version, sizeof(info->version));
5039 strncpy(info->fw_version, "", sizeof(info->fw_version));
5040 strncpy(info->bus_info, pci_name(sp->pdev), sizeof(info->bus_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 info->regdump_len = XENA_REG_SPACE;
5042 info->eedump_len = XENA_EEPROM_SPACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043}
5044
5045/**
5046 * s2io_ethtool_gregs - dumps the entire space of Xfame into the buffer.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005047 * @sp: private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005049 * @regs : pointer to the structure with parameters given by ethtool for
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050 * dumping the registers.
5051 * @reg_space: The input argumnet into which all the registers are dumped.
5052 * Description:
5053 * Dumps the entire register space of xFrame NIC into the user given
5054 * buffer area.
5055 * Return value :
5056 * void .
5057*/
5058
5059static void s2io_ethtool_gregs(struct net_device *dev,
5060 struct ethtool_regs *regs, void *space)
5061{
5062 int i;
5063 u64 reg;
5064 u8 *reg_space = (u8 *) space;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005065 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
5067 regs->len = XENA_REG_SPACE;
5068 regs->version = sp->pdev->subsystem_device;
5069
5070 for (i = 0; i < regs->len; i += 8) {
5071 reg = readq(sp->bar0 + i);
5072 memcpy((reg_space + i), &reg, 8);
5073 }
5074}
5075
5076/**
5077 * s2io_phy_id - timer function that alternates adapter LED.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005078 * @data : address of the private member of the device structure, which
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 * is a pointer to the s2io_nic structure, provided as an u32.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005080 * Description: This is actually the timer function that alternates the
5081 * adapter LED bit of the adapter control bit to set/reset every time on
5082 * invocation. The timer is set for 1/2 a second, hence tha NIC blinks
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 * once every second.
5084*/
5085static void s2io_phy_id(unsigned long data)
5086{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005087 struct s2io_nic *sp = (struct s2io_nic *) data;
5088 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 u64 val64 = 0;
5090 u16 subid;
5091
5092 subid = sp->pdev->subsystem_device;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005093 if ((sp->device_type == XFRAME_II_DEVICE) ||
5094 ((subid & 0xFF) >= 0x07)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 val64 = readq(&bar0->gpio_control);
5096 val64 ^= GPIO_CTRL_GPIO_0;
5097 writeq(val64, &bar0->gpio_control);
5098 } else {
5099 val64 = readq(&bar0->adapter_control);
5100 val64 ^= ADAPTER_LED_ON;
5101 writeq(val64, &bar0->adapter_control);
5102 }
5103
5104 mod_timer(&sp->id_timer, jiffies + HZ / 2);
5105}
5106
5107/**
5108 * s2io_ethtool_idnic - To physically identify the nic on the system.
5109 * @sp : private member of the device structure, which is a pointer to the
5110 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005111 * @id : pointer to the structure with identification parameters given by
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 * ethtool.
5113 * Description: Used to physically identify the NIC on the system.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005114 * The Link LED will blink for a time specified by the user for
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 * identification.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005116 * NOTE: The Link has to be Up to be able to blink the LED. Hence
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 * identification is possible only if it's link is up.
5118 * Return value:
5119 * int , returns 0 on success
5120 */
5121
5122static int s2io_ethtool_idnic(struct net_device *dev, u32 data)
5123{
5124 u64 val64 = 0, last_gpio_ctrl_val;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005125 struct s2io_nic *sp = dev->priv;
5126 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 u16 subid;
5128
5129 subid = sp->pdev->subsystem_device;
5130 last_gpio_ctrl_val = readq(&bar0->gpio_control);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005131 if ((sp->device_type == XFRAME_I_DEVICE) &&
5132 ((subid & 0xFF) < 0x07)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 val64 = readq(&bar0->adapter_control);
5134 if (!(val64 & ADAPTER_CNTL_EN)) {
5135 printk(KERN_ERR
5136 "Adapter Link down, cannot blink LED\n");
5137 return -EFAULT;
5138 }
5139 }
5140 if (sp->id_timer.function == NULL) {
5141 init_timer(&sp->id_timer);
5142 sp->id_timer.function = s2io_phy_id;
5143 sp->id_timer.data = (unsigned long) sp;
5144 }
5145 mod_timer(&sp->id_timer, jiffies);
5146 if (data)
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005147 msleep_interruptible(data * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 else
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005149 msleep_interruptible(MAX_FLICKER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 del_timer_sync(&sp->id_timer);
5151
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005152 if (CARDS_WITH_FAULTY_LINK_INDICATORS(sp->device_type, subid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 writeq(last_gpio_ctrl_val, &bar0->gpio_control);
5154 last_gpio_ctrl_val = readq(&bar0->gpio_control);
5155 }
5156
5157 return 0;
5158}
5159
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005160static void s2io_ethtool_gringparam(struct net_device *dev,
5161 struct ethtool_ringparam *ering)
5162{
5163 struct s2io_nic *sp = dev->priv;
5164 int i,tx_desc_count=0,rx_desc_count=0;
5165
5166 if (sp->rxd_mode == RXD_MODE_1)
5167 ering->rx_max_pending = MAX_RX_DESC_1;
5168 else if (sp->rxd_mode == RXD_MODE_3B)
5169 ering->rx_max_pending = MAX_RX_DESC_2;
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005170
5171 ering->tx_max_pending = MAX_TX_DESC;
Veena Paratb6627672007-07-23 02:39:43 -04005172 for (i = 0 ; i < sp->config.tx_fifo_num ; i++)
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005173 tx_desc_count += sp->config.tx_cfg[i].fifo_len;
Veena Paratb6627672007-07-23 02:39:43 -04005174
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005175 DBG_PRINT(INFO_DBG,"\nmax txds : %d\n",sp->config.max_txds);
5176 ering->tx_pending = tx_desc_count;
5177 rx_desc_count = 0;
Veena Paratb6627672007-07-23 02:39:43 -04005178 for (i = 0 ; i < sp->config.rx_ring_num ; i++)
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005179 rx_desc_count += sp->config.rx_cfg[i].num_rxd;
Veena Paratb6627672007-07-23 02:39:43 -04005180
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005181 ering->rx_pending = rx_desc_count;
5182
5183 ering->rx_mini_max_pending = 0;
5184 ering->rx_mini_pending = 0;
5185 if(sp->rxd_mode == RXD_MODE_1)
5186 ering->rx_jumbo_max_pending = MAX_RX_DESC_1;
5187 else if (sp->rxd_mode == RXD_MODE_3B)
5188 ering->rx_jumbo_max_pending = MAX_RX_DESC_2;
5189 ering->rx_jumbo_pending = rx_desc_count;
5190}
5191
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192/**
5193 * s2io_ethtool_getpause_data -Pause frame frame generation and reception.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005194 * @sp : private member of the device structure, which is a pointer to the
5195 * s2io_nic structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196 * @ep : pointer to the structure with pause parameters given by ethtool.
5197 * Description:
5198 * Returns the Pause frame generation and reception capability of the NIC.
5199 * Return value:
5200 * void
5201 */
5202static void s2io_ethtool_getpause_data(struct net_device *dev,
5203 struct ethtool_pauseparam *ep)
5204{
5205 u64 val64;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005206 struct s2io_nic *sp = dev->priv;
5207 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208
5209 val64 = readq(&bar0->rmac_pause_cfg);
5210 if (val64 & RMAC_PAUSE_GEN_ENABLE)
5211 ep->tx_pause = TRUE;
5212 if (val64 & RMAC_PAUSE_RX_ENABLE)
5213 ep->rx_pause = TRUE;
5214 ep->autoneg = FALSE;
5215}
5216
5217/**
5218 * s2io_ethtool_setpause_data - set/reset pause frame generation.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005219 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 * s2io_nic structure.
5221 * @ep : pointer to the structure with pause parameters given by ethtool.
5222 * Description:
5223 * It can be used to set or reset Pause frame generation or reception
5224 * support of the NIC.
5225 * Return value:
5226 * int, returns 0 on Success
5227 */
5228
5229static int s2io_ethtool_setpause_data(struct net_device *dev,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005230 struct ethtool_pauseparam *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231{
5232 u64 val64;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005233 struct s2io_nic *sp = dev->priv;
5234 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235
5236 val64 = readq(&bar0->rmac_pause_cfg);
5237 if (ep->tx_pause)
5238 val64 |= RMAC_PAUSE_GEN_ENABLE;
5239 else
5240 val64 &= ~RMAC_PAUSE_GEN_ENABLE;
5241 if (ep->rx_pause)
5242 val64 |= RMAC_PAUSE_RX_ENABLE;
5243 else
5244 val64 &= ~RMAC_PAUSE_RX_ENABLE;
5245 writeq(val64, &bar0->rmac_pause_cfg);
5246 return 0;
5247}
5248
5249/**
5250 * read_eeprom - reads 4 bytes of data from user given offset.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005251 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 * s2io_nic structure.
5253 * @off : offset at which the data must be written
5254 * @data : Its an output parameter where the data read at the given
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005255 * offset is stored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005257 * Will read 4 bytes of data from the user given offset and return the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258 * read data.
5259 * NOTE: Will allow to read only part of the EEPROM visible through the
5260 * I2C bus.
5261 * Return value:
5262 * -1 on failure and 0 on success.
5263 */
5264
5265#define S2IO_DEV_ID 5
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005266static int read_eeprom(struct s2io_nic * sp, int off, u64 * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267{
5268 int ret = -1;
5269 u32 exit_cnt = 0;
5270 u64 val64;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005271 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005273 if (sp->device_type == XFRAME_I_DEVICE) {
5274 val64 = I2C_CONTROL_DEV_ID(S2IO_DEV_ID) | I2C_CONTROL_ADDR(off) |
5275 I2C_CONTROL_BYTE_CNT(0x3) | I2C_CONTROL_READ |
5276 I2C_CONTROL_CNTL_START;
5277 SPECIAL_REG_WRITE(val64, &bar0->i2c_control, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005279 while (exit_cnt < 5) {
5280 val64 = readq(&bar0->i2c_control);
5281 if (I2C_CONTROL_CNTL_END(val64)) {
5282 *data = I2C_CONTROL_GET_DATA(val64);
5283 ret = 0;
5284 break;
5285 }
5286 msleep(50);
5287 exit_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 }
5290
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005291 if (sp->device_type == XFRAME_II_DEVICE) {
5292 val64 = SPI_CONTROL_KEY(0x9) | SPI_CONTROL_SEL1 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005293 SPI_CONTROL_BYTECNT(0x3) |
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005294 SPI_CONTROL_CMD(0x3) | SPI_CONTROL_ADDR(off);
5295 SPECIAL_REG_WRITE(val64, &bar0->spi_control, LF);
5296 val64 |= SPI_CONTROL_REQ;
5297 SPECIAL_REG_WRITE(val64, &bar0->spi_control, LF);
5298 while (exit_cnt < 5) {
5299 val64 = readq(&bar0->spi_control);
5300 if (val64 & SPI_CONTROL_NACK) {
5301 ret = 1;
5302 break;
5303 } else if (val64 & SPI_CONTROL_DONE) {
5304 *data = readq(&bar0->spi_data);
5305 *data &= 0xffffff;
5306 ret = 0;
5307 break;
5308 }
5309 msleep(50);
5310 exit_cnt++;
5311 }
5312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313 return ret;
5314}
5315
5316/**
5317 * write_eeprom - actually writes the relevant part of the data value.
5318 * @sp : private member of the device structure, which is a pointer to the
5319 * s2io_nic structure.
5320 * @off : offset at which the data must be written
5321 * @data : The data that is to be written
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005322 * @cnt : Number of bytes of the data that are actually to be written into
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 * the Eeprom. (max of 3)
5324 * Description:
5325 * Actually writes the relevant part of the data value into the Eeprom
5326 * through the I2C bus.
5327 * Return value:
5328 * 0 on success, -1 on failure.
5329 */
5330
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005331static int write_eeprom(struct s2io_nic * sp, int off, u64 data, int cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332{
5333 int exit_cnt = 0, ret = -1;
5334 u64 val64;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005335 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005337 if (sp->device_type == XFRAME_I_DEVICE) {
5338 val64 = I2C_CONTROL_DEV_ID(S2IO_DEV_ID) | I2C_CONTROL_ADDR(off) |
5339 I2C_CONTROL_BYTE_CNT(cnt) | I2C_CONTROL_SET_DATA((u32)data) |
5340 I2C_CONTROL_CNTL_START;
5341 SPECIAL_REG_WRITE(val64, &bar0->i2c_control, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005343 while (exit_cnt < 5) {
5344 val64 = readq(&bar0->i2c_control);
5345 if (I2C_CONTROL_CNTL_END(val64)) {
5346 if (!(val64 & I2C_CONTROL_NACK))
5347 ret = 0;
5348 break;
5349 }
5350 msleep(50);
5351 exit_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 }
5354
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005355 if (sp->device_type == XFRAME_II_DEVICE) {
5356 int write_cnt = (cnt == 8) ? 0 : cnt;
5357 writeq(SPI_DATA_WRITE(data,(cnt<<3)), &bar0->spi_data);
5358
5359 val64 = SPI_CONTROL_KEY(0x9) | SPI_CONTROL_SEL1 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005360 SPI_CONTROL_BYTECNT(write_cnt) |
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005361 SPI_CONTROL_CMD(0x2) | SPI_CONTROL_ADDR(off);
5362 SPECIAL_REG_WRITE(val64, &bar0->spi_control, LF);
5363 val64 |= SPI_CONTROL_REQ;
5364 SPECIAL_REG_WRITE(val64, &bar0->spi_control, LF);
5365 while (exit_cnt < 5) {
5366 val64 = readq(&bar0->spi_control);
5367 if (val64 & SPI_CONTROL_NACK) {
5368 ret = 1;
5369 break;
5370 } else if (val64 & SPI_CONTROL_DONE) {
5371 ret = 0;
5372 break;
5373 }
5374 msleep(50);
5375 exit_cnt++;
5376 }
5377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378 return ret;
5379}
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005380static void s2io_vpd_read(struct s2io_nic *nic)
Ananda Raju9dc737a2006-04-21 19:05:41 -04005381{
Ananda Rajub41477f2006-07-24 19:52:49 -04005382 u8 *vpd_data;
5383 u8 data;
Ananda Raju9dc737a2006-04-21 19:05:41 -04005384 int i=0, cnt, fail = 0;
5385 int vpd_addr = 0x80;
5386
5387 if (nic->device_type == XFRAME_II_DEVICE) {
5388 strcpy(nic->product_name, "Xframe II 10GbE network adapter");
5389 vpd_addr = 0x80;
5390 }
5391 else {
5392 strcpy(nic->product_name, "Xframe I 10GbE network adapter");
5393 vpd_addr = 0x50;
5394 }
Sivakumar Subramani19a60522007-01-31 13:30:49 -05005395 strcpy(nic->serial_num, "NOT AVAILABLE");
Ananda Raju9dc737a2006-04-21 19:05:41 -04005396
Ananda Rajub41477f2006-07-24 19:52:49 -04005397 vpd_data = kmalloc(256, GFP_KERNEL);
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04005398 if (!vpd_data) {
5399 nic->mac_control.stats_info->sw_stat.mem_alloc_fail_cnt++;
Ananda Rajub41477f2006-07-24 19:52:49 -04005400 return;
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04005401 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04005402 nic->mac_control.stats_info->sw_stat.mem_allocated += 256;
Ananda Rajub41477f2006-07-24 19:52:49 -04005403
Ananda Raju9dc737a2006-04-21 19:05:41 -04005404 for (i = 0; i < 256; i +=4 ) {
5405 pci_write_config_byte(nic->pdev, (vpd_addr + 2), i);
5406 pci_read_config_byte(nic->pdev, (vpd_addr + 2), &data);
5407 pci_write_config_byte(nic->pdev, (vpd_addr + 3), 0);
5408 for (cnt = 0; cnt <5; cnt++) {
5409 msleep(2);
5410 pci_read_config_byte(nic->pdev, (vpd_addr + 3), &data);
5411 if (data == 0x80)
5412 break;
5413 }
5414 if (cnt >= 5) {
5415 DBG_PRINT(ERR_DBG, "Read of VPD data failed\n");
5416 fail = 1;
5417 break;
5418 }
5419 pci_read_config_dword(nic->pdev, (vpd_addr + 4),
5420 (u32 *)&vpd_data[i]);
5421 }
Sivakumar Subramani19a60522007-01-31 13:30:49 -05005422
5423 if(!fail) {
5424 /* read serial number of adapter */
5425 for (cnt = 0; cnt < 256; cnt++) {
5426 if ((vpd_data[cnt] == 'S') &&
5427 (vpd_data[cnt+1] == 'N') &&
5428 (vpd_data[cnt+2] < VPD_STRING_LEN)) {
5429 memset(nic->serial_num, 0, VPD_STRING_LEN);
5430 memcpy(nic->serial_num, &vpd_data[cnt + 3],
5431 vpd_data[cnt+2]);
5432 break;
5433 }
5434 }
5435 }
5436
5437 if ((!fail) && (vpd_data[1] < VPD_STRING_LEN)) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04005438 memset(nic->product_name, 0, vpd_data[1]);
5439 memcpy(nic->product_name, &vpd_data[3], vpd_data[1]);
5440 }
Ananda Rajub41477f2006-07-24 19:52:49 -04005441 kfree(vpd_data);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04005442 nic->mac_control.stats_info->sw_stat.mem_freed += 256;
Ananda Raju9dc737a2006-04-21 19:05:41 -04005443}
5444
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445/**
5446 * s2io_ethtool_geeprom - reads the value stored in the Eeprom.
5447 * @sp : private member of the device structure, which is a pointer to the * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005448 * @eeprom : pointer to the user level structure provided by ethtool,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 * containing all relevant information.
5450 * @data_buf : user defined value to be written into Eeprom.
5451 * Description: Reads the values stored in the Eeprom at given offset
5452 * for a given length. Stores these values int the input argument data
5453 * buffer 'data_buf' and returns these to the caller (ethtool.)
5454 * Return value:
5455 * int 0 on success
5456 */
5457
5458static int s2io_ethtool_geeprom(struct net_device *dev,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005459 struct ethtool_eeprom *eeprom, u8 * data_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460{
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005461 u32 i, valid;
5462 u64 data;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005463 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464
5465 eeprom->magic = sp->pdev->vendor | (sp->pdev->device << 16);
5466
5467 if ((eeprom->offset + eeprom->len) > (XENA_EEPROM_SPACE))
5468 eeprom->len = XENA_EEPROM_SPACE - eeprom->offset;
5469
5470 for (i = 0; i < eeprom->len; i += 4) {
5471 if (read_eeprom(sp, (eeprom->offset + i), &data)) {
5472 DBG_PRINT(ERR_DBG, "Read of EEPROM failed\n");
5473 return -EFAULT;
5474 }
5475 valid = INV(data);
5476 memcpy((data_buf + i), &valid, 4);
5477 }
5478 return 0;
5479}
5480
5481/**
5482 * s2io_ethtool_seeprom - tries to write the user provided value in Eeprom
5483 * @sp : private member of the device structure, which is a pointer to the
5484 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005485 * @eeprom : pointer to the user level structure provided by ethtool,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486 * containing all relevant information.
5487 * @data_buf ; user defined value to be written into Eeprom.
5488 * Description:
5489 * Tries to write the user provided value in the Eeprom, at the offset
5490 * given by the user.
5491 * Return value:
5492 * 0 on success, -EFAULT on failure.
5493 */
5494
5495static int s2io_ethtool_seeprom(struct net_device *dev,
5496 struct ethtool_eeprom *eeprom,
5497 u8 * data_buf)
5498{
5499 int len = eeprom->len, cnt = 0;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005500 u64 valid = 0, data;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005501 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502
5503 if (eeprom->magic != (sp->pdev->vendor | (sp->pdev->device << 16))) {
5504 DBG_PRINT(ERR_DBG,
5505 "ETHTOOL_WRITE_EEPROM Err: Magic value ");
5506 DBG_PRINT(ERR_DBG, "is wrong, Its not 0x%x\n",
5507 eeprom->magic);
5508 return -EFAULT;
5509 }
5510
5511 while (len) {
5512 data = (u32) data_buf[cnt] & 0x000000FF;
5513 if (data) {
5514 valid = (u32) (data << 24);
5515 } else
5516 valid = data;
5517
5518 if (write_eeprom(sp, (eeprom->offset + cnt), valid, 0)) {
5519 DBG_PRINT(ERR_DBG,
5520 "ETHTOOL_WRITE_EEPROM Err: Cannot ");
5521 DBG_PRINT(ERR_DBG,
5522 "write into the specified offset\n");
5523 return -EFAULT;
5524 }
5525 cnt++;
5526 len--;
5527 }
5528
5529 return 0;
5530}
5531
5532/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005533 * s2io_register_test - reads and writes into all clock domains.
5534 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535 * s2io_nic structure.
5536 * @data : variable that returns the result of each of the test conducted b
5537 * by the driver.
5538 * Description:
5539 * Read and write into all clock domains. The NIC has 3 clock domains,
5540 * see that registers in all the three regions are accessible.
5541 * Return value:
5542 * 0 on success.
5543 */
5544
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005545static int s2io_register_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005547 struct XENA_dev_config __iomem *bar0 = sp->bar0;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005548 u64 val64 = 0, exp_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549 int fail = 0;
5550
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005551 val64 = readq(&bar0->pif_rd_swapper_fb);
5552 if (val64 != 0x123456789abcdefULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553 fail = 1;
5554 DBG_PRINT(INFO_DBG, "Read Test level 1 fails\n");
5555 }
5556
5557 val64 = readq(&bar0->rmac_pause_cfg);
5558 if (val64 != 0xc000ffff00000000ULL) {
5559 fail = 1;
5560 DBG_PRINT(INFO_DBG, "Read Test level 2 fails\n");
5561 }
5562
5563 val64 = readq(&bar0->rx_queue_cfg);
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005564 if (sp->device_type == XFRAME_II_DEVICE)
5565 exp_val = 0x0404040404040404ULL;
5566 else
5567 exp_val = 0x0808080808080808ULL;
5568 if (val64 != exp_val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569 fail = 1;
5570 DBG_PRINT(INFO_DBG, "Read Test level 3 fails\n");
5571 }
5572
5573 val64 = readq(&bar0->xgxs_efifo_cfg);
5574 if (val64 != 0x000000001923141EULL) {
5575 fail = 1;
5576 DBG_PRINT(INFO_DBG, "Read Test level 4 fails\n");
5577 }
5578
5579 val64 = 0x5A5A5A5A5A5A5A5AULL;
5580 writeq(val64, &bar0->xmsi_data);
5581 val64 = readq(&bar0->xmsi_data);
5582 if (val64 != 0x5A5A5A5A5A5A5A5AULL) {
5583 fail = 1;
5584 DBG_PRINT(ERR_DBG, "Write Test level 1 fails\n");
5585 }
5586
5587 val64 = 0xA5A5A5A5A5A5A5A5ULL;
5588 writeq(val64, &bar0->xmsi_data);
5589 val64 = readq(&bar0->xmsi_data);
5590 if (val64 != 0xA5A5A5A5A5A5A5A5ULL) {
5591 fail = 1;
5592 DBG_PRINT(ERR_DBG, "Write Test level 2 fails\n");
5593 }
5594
5595 *data = fail;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005596 return fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597}
5598
5599/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005600 * s2io_eeprom_test - to verify that EEprom in the xena can be programmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601 * @sp : private member of the device structure, which is a pointer to the
5602 * s2io_nic structure.
5603 * @data:variable that returns the result of each of the test conducted by
5604 * the driver.
5605 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005606 * Verify that EEPROM in the xena can be programmed using I2C_CONTROL
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 * register.
5608 * Return value:
5609 * 0 on success.
5610 */
5611
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005612static int s2io_eeprom_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613{
5614 int fail = 0;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005615 u64 ret_data, org_4F0, org_7F0;
5616 u8 saved_4F0 = 0, saved_7F0 = 0;
5617 struct net_device *dev = sp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618
5619 /* Test Write Error at offset 0 */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005620 /* Note that SPI interface allows write access to all areas
5621 * of EEPROM. Hence doing all negative testing only for Xframe I.
5622 */
5623 if (sp->device_type == XFRAME_I_DEVICE)
5624 if (!write_eeprom(sp, 0, 0, 3))
5625 fail = 1;
5626
5627 /* Save current values at offsets 0x4F0 and 0x7F0 */
5628 if (!read_eeprom(sp, 0x4F0, &org_4F0))
5629 saved_4F0 = 1;
5630 if (!read_eeprom(sp, 0x7F0, &org_7F0))
5631 saved_7F0 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632
5633 /* Test Write at offset 4f0 */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005634 if (write_eeprom(sp, 0x4F0, 0x012345, 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 fail = 1;
5636 if (read_eeprom(sp, 0x4F0, &ret_data))
5637 fail = 1;
5638
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005639 if (ret_data != 0x012345) {
Andrew Morton26b76252005-12-14 19:25:23 -08005640 DBG_PRINT(ERR_DBG, "%s: eeprom test error at offset 0x4F0. "
5641 "Data written %llx Data read %llx\n",
5642 dev->name, (unsigned long long)0x12345,
5643 (unsigned long long)ret_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644 fail = 1;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646
5647 /* Reset the EEPROM data go FFFF */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005648 write_eeprom(sp, 0x4F0, 0xFFFFFF, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005649
5650 /* Test Write Request Error at offset 0x7c */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005651 if (sp->device_type == XFRAME_I_DEVICE)
5652 if (!write_eeprom(sp, 0x07C, 0, 3))
5653 fail = 1;
5654
5655 /* Test Write Request at offset 0x7f0 */
5656 if (write_eeprom(sp, 0x7F0, 0x012345, 3))
5657 fail = 1;
5658 if (read_eeprom(sp, 0x7F0, &ret_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659 fail = 1;
5660
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005661 if (ret_data != 0x012345) {
Andrew Morton26b76252005-12-14 19:25:23 -08005662 DBG_PRINT(ERR_DBG, "%s: eeprom test error at offset 0x7F0. "
5663 "Data written %llx Data read %llx\n",
5664 dev->name, (unsigned long long)0x12345,
5665 (unsigned long long)ret_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666 fail = 1;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668
5669 /* Reset the EEPROM data go FFFF */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005670 write_eeprom(sp, 0x7F0, 0xFFFFFF, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005672 if (sp->device_type == XFRAME_I_DEVICE) {
5673 /* Test Write Error at offset 0x80 */
5674 if (!write_eeprom(sp, 0x080, 0, 3))
5675 fail = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005677 /* Test Write Error at offset 0xfc */
5678 if (!write_eeprom(sp, 0x0FC, 0, 3))
5679 fail = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005681 /* Test Write Error at offset 0x100 */
5682 if (!write_eeprom(sp, 0x100, 0, 3))
5683 fail = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005685 /* Test Write Error at offset 4ec */
5686 if (!write_eeprom(sp, 0x4EC, 0, 3))
5687 fail = 1;
5688 }
5689
5690 /* Restore values at offsets 0x4F0 and 0x7F0 */
5691 if (saved_4F0)
5692 write_eeprom(sp, 0x4F0, org_4F0, 3);
5693 if (saved_7F0)
5694 write_eeprom(sp, 0x7F0, org_7F0, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695
5696 *data = fail;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005697 return fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698}
5699
5700/**
5701 * s2io_bist_test - invokes the MemBist test of the card .
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005702 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005704 * @data:variable that returns the result of each of the test conducted by
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705 * the driver.
5706 * Description:
5707 * This invokes the MemBist test of the card. We give around
5708 * 2 secs time for the Test to complete. If it's still not complete
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005709 * within this peiod, we consider that the test failed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710 * Return value:
5711 * 0 on success and -1 on failure.
5712 */
5713
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005714static int s2io_bist_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715{
5716 u8 bist = 0;
5717 int cnt = 0, ret = -1;
5718
5719 pci_read_config_byte(sp->pdev, PCI_BIST, &bist);
5720 bist |= PCI_BIST_START;
5721 pci_write_config_word(sp->pdev, PCI_BIST, bist);
5722
5723 while (cnt < 20) {
5724 pci_read_config_byte(sp->pdev, PCI_BIST, &bist);
5725 if (!(bist & PCI_BIST_START)) {
5726 *data = (bist & PCI_BIST_CODE_MASK);
5727 ret = 0;
5728 break;
5729 }
5730 msleep(100);
5731 cnt++;
5732 }
5733
5734 return ret;
5735}
5736
5737/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005738 * s2io-link_test - verifies the link state of the nic
5739 * @sp ; private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740 * s2io_nic structure.
5741 * @data: variable that returns the result of each of the test conducted by
5742 * the driver.
5743 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005744 * The function verifies the link state of the NIC and updates the input
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745 * argument 'data' appropriately.
5746 * Return value:
5747 * 0 on success.
5748 */
5749
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005750static int s2io_link_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005752 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753 u64 val64;
5754
5755 val64 = readq(&bar0->adapter_status);
Ananda Rajuc92ca042006-04-21 19:18:03 -04005756 if(!(LINK_IS_UP(val64)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757 *data = 1;
Ananda Rajuc92ca042006-04-21 19:18:03 -04005758 else
5759 *data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
Ananda Rajub41477f2006-07-24 19:52:49 -04005761 return *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762}
5763
5764/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005765 * s2io_rldram_test - offline test for access to the RldRam chip on the NIC
5766 * @sp - private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005768 * @data - variable that returns the result of each of the test
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769 * conducted by the driver.
5770 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005771 * This is one of the offline test that tests the read and write
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772 * access to the RldRam chip on the NIC.
5773 * Return value:
5774 * 0 on success.
5775 */
5776
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005777static int s2io_rldram_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005779 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780 u64 val64;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005781 int cnt, iteration = 0, test_fail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782
5783 val64 = readq(&bar0->adapter_control);
5784 val64 &= ~ADAPTER_ECC_EN;
5785 writeq(val64, &bar0->adapter_control);
5786
5787 val64 = readq(&bar0->mc_rldram_test_ctrl);
5788 val64 |= MC_RLDRAM_TEST_MODE;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005789 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_test_ctrl, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790
5791 val64 = readq(&bar0->mc_rldram_mrs);
5792 val64 |= MC_RLDRAM_QUEUE_SIZE_ENABLE;
5793 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_mrs, UF);
5794
5795 val64 |= MC_RLDRAM_MRS_ENABLE;
5796 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_mrs, UF);
5797
5798 while (iteration < 2) {
5799 val64 = 0x55555555aaaa0000ULL;
5800 if (iteration == 1) {
5801 val64 ^= 0xFFFFFFFFFFFF0000ULL;
5802 }
5803 writeq(val64, &bar0->mc_rldram_test_d0);
5804
5805 val64 = 0xaaaa5a5555550000ULL;
5806 if (iteration == 1) {
5807 val64 ^= 0xFFFFFFFFFFFF0000ULL;
5808 }
5809 writeq(val64, &bar0->mc_rldram_test_d1);
5810
5811 val64 = 0x55aaaaaaaa5a0000ULL;
5812 if (iteration == 1) {
5813 val64 ^= 0xFFFFFFFFFFFF0000ULL;
5814 }
5815 writeq(val64, &bar0->mc_rldram_test_d2);
5816
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005817 val64 = (u64) (0x0000003ffffe0100ULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818 writeq(val64, &bar0->mc_rldram_test_add);
5819
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005820 val64 = MC_RLDRAM_TEST_MODE | MC_RLDRAM_TEST_WRITE |
5821 MC_RLDRAM_TEST_GO;
5822 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_test_ctrl, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823
5824 for (cnt = 0; cnt < 5; cnt++) {
5825 val64 = readq(&bar0->mc_rldram_test_ctrl);
5826 if (val64 & MC_RLDRAM_TEST_DONE)
5827 break;
5828 msleep(200);
5829 }
5830
5831 if (cnt == 5)
5832 break;
5833
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005834 val64 = MC_RLDRAM_TEST_MODE | MC_RLDRAM_TEST_GO;
5835 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_test_ctrl, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836
5837 for (cnt = 0; cnt < 5; cnt++) {
5838 val64 = readq(&bar0->mc_rldram_test_ctrl);
5839 if (val64 & MC_RLDRAM_TEST_DONE)
5840 break;
5841 msleep(500);
5842 }
5843
5844 if (cnt == 5)
5845 break;
5846
5847 val64 = readq(&bar0->mc_rldram_test_ctrl);
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005848 if (!(val64 & MC_RLDRAM_TEST_PASS))
5849 test_fail = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850
5851 iteration++;
5852 }
5853
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005854 *data = test_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005856 /* Bring the adapter out of test mode */
5857 SPECIAL_REG_WRITE(0, &bar0->mc_rldram_test_ctrl, LF);
5858
5859 return test_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860}
5861
5862/**
5863 * s2io_ethtool_test - conducts 6 tsets to determine the health of card.
5864 * @sp : private member of the device structure, which is a pointer to the
5865 * s2io_nic structure.
5866 * @ethtest : pointer to a ethtool command specific structure that will be
5867 * returned to the user.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005868 * @data : variable that returns the result of each of the test
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869 * conducted by the driver.
5870 * Description:
5871 * This function conducts 6 tests ( 4 offline and 2 online) to determine
5872 * the health of the card.
5873 * Return value:
5874 * void
5875 */
5876
5877static void s2io_ethtool_test(struct net_device *dev,
5878 struct ethtool_test *ethtest,
5879 uint64_t * data)
5880{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005881 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882 int orig_state = netif_running(sp->dev);
5883
5884 if (ethtest->flags == ETH_TEST_FL_OFFLINE) {
5885 /* Offline Tests. */
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005886 if (orig_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887 s2io_close(sp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888
5889 if (s2io_register_test(sp, &data[0]))
5890 ethtest->flags |= ETH_TEST_FL_FAILED;
5891
5892 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893
5894 if (s2io_rldram_test(sp, &data[3]))
5895 ethtest->flags |= ETH_TEST_FL_FAILED;
5896
5897 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898
5899 if (s2io_eeprom_test(sp, &data[1]))
5900 ethtest->flags |= ETH_TEST_FL_FAILED;
5901
5902 if (s2io_bist_test(sp, &data[4]))
5903 ethtest->flags |= ETH_TEST_FL_FAILED;
5904
5905 if (orig_state)
5906 s2io_open(sp->dev);
5907
5908 data[2] = 0;
5909 } else {
5910 /* Online Tests. */
5911 if (!orig_state) {
5912 DBG_PRINT(ERR_DBG,
5913 "%s: is not up, cannot run test\n",
5914 dev->name);
5915 data[0] = -1;
5916 data[1] = -1;
5917 data[2] = -1;
5918 data[3] = -1;
5919 data[4] = -1;
5920 }
5921
5922 if (s2io_link_test(sp, &data[2]))
5923 ethtest->flags |= ETH_TEST_FL_FAILED;
5924
5925 data[0] = 0;
5926 data[1] = 0;
5927 data[3] = 0;
5928 data[4] = 0;
5929 }
5930}
5931
5932static void s2io_get_ethtool_stats(struct net_device *dev,
5933 struct ethtool_stats *estats,
5934 u64 * tmp_stats)
5935{
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07005936 int i = 0, k;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005937 struct s2io_nic *sp = dev->priv;
5938 struct stat_block *stat_info = sp->mac_control.stats_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07005940 s2io_updt_stats(sp);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005941 tmp_stats[i++] =
5942 (u64)le32_to_cpu(stat_info->tmac_frms_oflow) << 32 |
5943 le32_to_cpu(stat_info->tmac_frms);
5944 tmp_stats[i++] =
5945 (u64)le32_to_cpu(stat_info->tmac_data_octets_oflow) << 32 |
5946 le32_to_cpu(stat_info->tmac_data_octets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_drop_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005948 tmp_stats[i++] =
5949 (u64)le32_to_cpu(stat_info->tmac_mcst_frms_oflow) << 32 |
5950 le32_to_cpu(stat_info->tmac_mcst_frms);
5951 tmp_stats[i++] =
5952 (u64)le32_to_cpu(stat_info->tmac_bcst_frms_oflow) << 32 |
5953 le32_to_cpu(stat_info->tmac_bcst_frms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_pause_ctrl_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04005955 tmp_stats[i++] =
5956 (u64)le32_to_cpu(stat_info->tmac_ttl_octets_oflow) << 32 |
5957 le32_to_cpu(stat_info->tmac_ttl_octets);
5958 tmp_stats[i++] =
5959 (u64)le32_to_cpu(stat_info->tmac_ucst_frms_oflow) << 32 |
5960 le32_to_cpu(stat_info->tmac_ucst_frms);
5961 tmp_stats[i++] =
5962 (u64)le32_to_cpu(stat_info->tmac_nucst_frms_oflow) << 32 |
5963 le32_to_cpu(stat_info->tmac_nucst_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005964 tmp_stats[i++] =
5965 (u64)le32_to_cpu(stat_info->tmac_any_err_frms_oflow) << 32 |
5966 le32_to_cpu(stat_info->tmac_any_err_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04005967 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_ttl_less_fb_octets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_vld_ip_octets);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005969 tmp_stats[i++] =
5970 (u64)le32_to_cpu(stat_info->tmac_vld_ip_oflow) << 32 |
5971 le32_to_cpu(stat_info->tmac_vld_ip);
5972 tmp_stats[i++] =
5973 (u64)le32_to_cpu(stat_info->tmac_drop_ip_oflow) << 32 |
5974 le32_to_cpu(stat_info->tmac_drop_ip);
5975 tmp_stats[i++] =
5976 (u64)le32_to_cpu(stat_info->tmac_icmp_oflow) << 32 |
5977 le32_to_cpu(stat_info->tmac_icmp);
5978 tmp_stats[i++] =
5979 (u64)le32_to_cpu(stat_info->tmac_rst_tcp_oflow) << 32 |
5980 le32_to_cpu(stat_info->tmac_rst_tcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_tcp);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005982 tmp_stats[i++] = (u64)le32_to_cpu(stat_info->tmac_udp_oflow) << 32 |
5983 le32_to_cpu(stat_info->tmac_udp);
5984 tmp_stats[i++] =
5985 (u64)le32_to_cpu(stat_info->rmac_vld_frms_oflow) << 32 |
5986 le32_to_cpu(stat_info->rmac_vld_frms);
5987 tmp_stats[i++] =
5988 (u64)le32_to_cpu(stat_info->rmac_data_octets_oflow) << 32 |
5989 le32_to_cpu(stat_info->rmac_data_octets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_fcs_err_frms);
5991 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_drop_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005992 tmp_stats[i++] =
5993 (u64)le32_to_cpu(stat_info->rmac_vld_mcst_frms_oflow) << 32 |
5994 le32_to_cpu(stat_info->rmac_vld_mcst_frms);
5995 tmp_stats[i++] =
5996 (u64)le32_to_cpu(stat_info->rmac_vld_bcst_frms_oflow) << 32 |
5997 le32_to_cpu(stat_info->rmac_vld_bcst_frms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_in_rng_len_err_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04005999 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_out_rng_len_err_frms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_long_frms);
6001 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_pause_ctrl_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006002 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_unsup_ctrl_frms);
6003 tmp_stats[i++] =
6004 (u64)le32_to_cpu(stat_info->rmac_ttl_octets_oflow) << 32 |
6005 le32_to_cpu(stat_info->rmac_ttl_octets);
6006 tmp_stats[i++] =
6007 (u64)le32_to_cpu(stat_info->rmac_accepted_ucst_frms_oflow)
6008 << 32 | le32_to_cpu(stat_info->rmac_accepted_ucst_frms);
6009 tmp_stats[i++] =
6010 (u64)le32_to_cpu(stat_info->rmac_accepted_nucst_frms_oflow)
6011 << 32 | le32_to_cpu(stat_info->rmac_accepted_nucst_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006012 tmp_stats[i++] =
6013 (u64)le32_to_cpu(stat_info->rmac_discarded_frms_oflow) << 32 |
6014 le32_to_cpu(stat_info->rmac_discarded_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006015 tmp_stats[i++] =
6016 (u64)le32_to_cpu(stat_info->rmac_drop_events_oflow)
6017 << 32 | le32_to_cpu(stat_info->rmac_drop_events);
6018 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_less_fb_octets);
6019 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006020 tmp_stats[i++] =
6021 (u64)le32_to_cpu(stat_info->rmac_usized_frms_oflow) << 32 |
6022 le32_to_cpu(stat_info->rmac_usized_frms);
6023 tmp_stats[i++] =
6024 (u64)le32_to_cpu(stat_info->rmac_osized_frms_oflow) << 32 |
6025 le32_to_cpu(stat_info->rmac_osized_frms);
6026 tmp_stats[i++] =
6027 (u64)le32_to_cpu(stat_info->rmac_frag_frms_oflow) << 32 |
6028 le32_to_cpu(stat_info->rmac_frag_frms);
6029 tmp_stats[i++] =
6030 (u64)le32_to_cpu(stat_info->rmac_jabber_frms_oflow) << 32 |
6031 le32_to_cpu(stat_info->rmac_jabber_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006032 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_64_frms);
6033 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_65_127_frms);
6034 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_128_255_frms);
6035 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_256_511_frms);
6036 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_512_1023_frms);
6037 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_1024_1518_frms);
6038 tmp_stats[i++] =
6039 (u64)le32_to_cpu(stat_info->rmac_ip_oflow) << 32 |
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006040 le32_to_cpu(stat_info->rmac_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ip_octets);
6042 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_hdr_err_ip);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006043 tmp_stats[i++] =
6044 (u64)le32_to_cpu(stat_info->rmac_drop_ip_oflow) << 32 |
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006045 le32_to_cpu(stat_info->rmac_drop_ip);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006046 tmp_stats[i++] =
6047 (u64)le32_to_cpu(stat_info->rmac_icmp_oflow) << 32 |
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006048 le32_to_cpu(stat_info->rmac_icmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_tcp);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006050 tmp_stats[i++] =
6051 (u64)le32_to_cpu(stat_info->rmac_udp_oflow) << 32 |
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006052 le32_to_cpu(stat_info->rmac_udp);
6053 tmp_stats[i++] =
6054 (u64)le32_to_cpu(stat_info->rmac_err_drp_udp_oflow) << 32 |
6055 le32_to_cpu(stat_info->rmac_err_drp_udp);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006056 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_xgmii_err_sym);
6057 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q0);
6058 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q1);
6059 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q2);
6060 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q3);
6061 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q4);
6062 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q5);
6063 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q6);
6064 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q7);
6065 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q0);
6066 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q1);
6067 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q2);
6068 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q3);
6069 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q4);
6070 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q5);
6071 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q6);
6072 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q7);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006073 tmp_stats[i++] =
6074 (u64)le32_to_cpu(stat_info->rmac_pause_cnt_oflow) << 32 |
6075 le32_to_cpu(stat_info->rmac_pause_cnt);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006076 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_xgmii_data_err_cnt);
6077 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_xgmii_ctrl_err_cnt);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006078 tmp_stats[i++] =
6079 (u64)le32_to_cpu(stat_info->rmac_accepted_ip_oflow) << 32 |
6080 le32_to_cpu(stat_info->rmac_accepted_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_err_tcp);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006082 tmp_stats[i++] = le32_to_cpu(stat_info->rd_req_cnt);
6083 tmp_stats[i++] = le32_to_cpu(stat_info->new_rd_req_cnt);
6084 tmp_stats[i++] = le32_to_cpu(stat_info->new_rd_req_rtry_cnt);
6085 tmp_stats[i++] = le32_to_cpu(stat_info->rd_rtry_cnt);
6086 tmp_stats[i++] = le32_to_cpu(stat_info->wr_rtry_rd_ack_cnt);
6087 tmp_stats[i++] = le32_to_cpu(stat_info->wr_req_cnt);
6088 tmp_stats[i++] = le32_to_cpu(stat_info->new_wr_req_cnt);
6089 tmp_stats[i++] = le32_to_cpu(stat_info->new_wr_req_rtry_cnt);
6090 tmp_stats[i++] = le32_to_cpu(stat_info->wr_rtry_cnt);
6091 tmp_stats[i++] = le32_to_cpu(stat_info->wr_disc_cnt);
6092 tmp_stats[i++] = le32_to_cpu(stat_info->rd_rtry_wr_ack_cnt);
6093 tmp_stats[i++] = le32_to_cpu(stat_info->txp_wr_cnt);
6094 tmp_stats[i++] = le32_to_cpu(stat_info->txd_rd_cnt);
6095 tmp_stats[i++] = le32_to_cpu(stat_info->txd_wr_cnt);
6096 tmp_stats[i++] = le32_to_cpu(stat_info->rxd_rd_cnt);
6097 tmp_stats[i++] = le32_to_cpu(stat_info->rxd_wr_cnt);
6098 tmp_stats[i++] = le32_to_cpu(stat_info->txf_rd_cnt);
6099 tmp_stats[i++] = le32_to_cpu(stat_info->rxf_wr_cnt);
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -05006100
6101 /* Enhanced statistics exist only for Hercules */
6102 if(sp->device_type == XFRAME_II_DEVICE) {
6103 tmp_stats[i++] =
6104 le64_to_cpu(stat_info->rmac_ttl_1519_4095_frms);
6105 tmp_stats[i++] =
6106 le64_to_cpu(stat_info->rmac_ttl_4096_8191_frms);
6107 tmp_stats[i++] =
6108 le64_to_cpu(stat_info->rmac_ttl_8192_max_frms);
6109 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_gt_max_frms);
6110 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_osized_alt_frms);
6111 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_jabber_alt_frms);
6112 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_gt_max_alt_frms);
6113 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_vlan_frms);
6114 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_len_discard);
6115 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_fcs_discard);
6116 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_pf_discard);
6117 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_da_discard);
6118 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_red_discard);
6119 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_rts_discard);
6120 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_ingm_full_discard);
6121 tmp_stats[i++] = le32_to_cpu(stat_info->link_fault_cnt);
6122 }
6123
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07006124 tmp_stats[i++] = 0;
6125 tmp_stats[i++] = stat_info->sw_stat.single_ecc_errs;
6126 tmp_stats[i++] = stat_info->sw_stat.double_ecc_errs;
Ananda Rajubd1034f2006-04-21 19:20:22 -04006127 tmp_stats[i++] = stat_info->sw_stat.parity_err_cnt;
6128 tmp_stats[i++] = stat_info->sw_stat.serious_err_cnt;
6129 tmp_stats[i++] = stat_info->sw_stat.soft_reset_cnt;
6130 tmp_stats[i++] = stat_info->sw_stat.fifo_full_cnt;
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07006131 for (k = 0; k < MAX_RX_RINGS; k++)
6132 tmp_stats[i++] = stat_info->sw_stat.ring_full_cnt[k];
Ananda Rajubd1034f2006-04-21 19:20:22 -04006133 tmp_stats[i++] = stat_info->xpak_stat.alarm_transceiver_temp_high;
6134 tmp_stats[i++] = stat_info->xpak_stat.alarm_transceiver_temp_low;
6135 tmp_stats[i++] = stat_info->xpak_stat.alarm_laser_bias_current_high;
6136 tmp_stats[i++] = stat_info->xpak_stat.alarm_laser_bias_current_low;
6137 tmp_stats[i++] = stat_info->xpak_stat.alarm_laser_output_power_high;
6138 tmp_stats[i++] = stat_info->xpak_stat.alarm_laser_output_power_low;
6139 tmp_stats[i++] = stat_info->xpak_stat.warn_transceiver_temp_high;
6140 tmp_stats[i++] = stat_info->xpak_stat.warn_transceiver_temp_low;
6141 tmp_stats[i++] = stat_info->xpak_stat.warn_laser_bias_current_high;
6142 tmp_stats[i++] = stat_info->xpak_stat.warn_laser_bias_current_low;
6143 tmp_stats[i++] = stat_info->xpak_stat.warn_laser_output_power_high;
6144 tmp_stats[i++] = stat_info->xpak_stat.warn_laser_output_power_low;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05006145 tmp_stats[i++] = stat_info->sw_stat.clubbed_frms_cnt;
6146 tmp_stats[i++] = stat_info->sw_stat.sending_both;
6147 tmp_stats[i++] = stat_info->sw_stat.outof_sequence_pkts;
6148 tmp_stats[i++] = stat_info->sw_stat.flush_max_pkts;
Andrew Mortonfe931392006-02-03 01:45:12 -08006149 if (stat_info->sw_stat.num_aggregations) {
Ananda Rajubd1034f2006-04-21 19:20:22 -04006150 u64 tmp = stat_info->sw_stat.sum_avg_pkts_aggregated;
6151 int count = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04006152 /*
Ananda Rajubd1034f2006-04-21 19:20:22 -04006153 * Since 64-bit divide does not work on all platforms,
6154 * do repeated subtraction.
6155 */
6156 while (tmp >= stat_info->sw_stat.num_aggregations) {
6157 tmp -= stat_info->sw_stat.num_aggregations;
6158 count++;
6159 }
6160 tmp_stats[i++] = count;
Andrew Mortonfe931392006-02-03 01:45:12 -08006161 }
Ananda Rajubd1034f2006-04-21 19:20:22 -04006162 else
6163 tmp_stats[i++] = 0;
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04006164 tmp_stats[i++] = stat_info->sw_stat.mem_alloc_fail_cnt;
Veena Parat491abf22007-07-23 02:37:14 -04006165 tmp_stats[i++] = stat_info->sw_stat.pci_map_fail_cnt;
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04006166 tmp_stats[i++] = stat_info->sw_stat.watchdog_timer_cnt;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04006167 tmp_stats[i++] = stat_info->sw_stat.mem_allocated;
6168 tmp_stats[i++] = stat_info->sw_stat.mem_freed;
6169 tmp_stats[i++] = stat_info->sw_stat.link_up_cnt;
6170 tmp_stats[i++] = stat_info->sw_stat.link_down_cnt;
6171 tmp_stats[i++] = stat_info->sw_stat.link_up_time;
6172 tmp_stats[i++] = stat_info->sw_stat.link_down_time;
6173
6174 tmp_stats[i++] = stat_info->sw_stat.tx_buf_abort_cnt;
6175 tmp_stats[i++] = stat_info->sw_stat.tx_desc_abort_cnt;
6176 tmp_stats[i++] = stat_info->sw_stat.tx_parity_err_cnt;
6177 tmp_stats[i++] = stat_info->sw_stat.tx_link_loss_cnt;
6178 tmp_stats[i++] = stat_info->sw_stat.tx_list_proc_err_cnt;
6179
6180 tmp_stats[i++] = stat_info->sw_stat.rx_parity_err_cnt;
6181 tmp_stats[i++] = stat_info->sw_stat.rx_abort_cnt;
6182 tmp_stats[i++] = stat_info->sw_stat.rx_parity_abort_cnt;
6183 tmp_stats[i++] = stat_info->sw_stat.rx_rda_fail_cnt;
6184 tmp_stats[i++] = stat_info->sw_stat.rx_unkn_prot_cnt;
6185 tmp_stats[i++] = stat_info->sw_stat.rx_fcs_err_cnt;
6186 tmp_stats[i++] = stat_info->sw_stat.rx_buf_size_err_cnt;
6187 tmp_stats[i++] = stat_info->sw_stat.rx_rxd_corrupt_cnt;
6188 tmp_stats[i++] = stat_info->sw_stat.rx_unkn_err_cnt;
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07006189 tmp_stats[i++] = stat_info->sw_stat.tda_err_cnt;
6190 tmp_stats[i++] = stat_info->sw_stat.pfc_err_cnt;
6191 tmp_stats[i++] = stat_info->sw_stat.pcc_err_cnt;
6192 tmp_stats[i++] = stat_info->sw_stat.tti_err_cnt;
6193 tmp_stats[i++] = stat_info->sw_stat.tpa_err_cnt;
6194 tmp_stats[i++] = stat_info->sw_stat.sm_err_cnt;
6195 tmp_stats[i++] = stat_info->sw_stat.lso_err_cnt;
6196 tmp_stats[i++] = stat_info->sw_stat.mac_tmac_err_cnt;
6197 tmp_stats[i++] = stat_info->sw_stat.mac_rmac_err_cnt;
6198 tmp_stats[i++] = stat_info->sw_stat.xgxs_txgxs_err_cnt;
6199 tmp_stats[i++] = stat_info->sw_stat.xgxs_rxgxs_err_cnt;
6200 tmp_stats[i++] = stat_info->sw_stat.rc_err_cnt;
6201 tmp_stats[i++] = stat_info->sw_stat.prc_pcix_err_cnt;
6202 tmp_stats[i++] = stat_info->sw_stat.rpa_err_cnt;
6203 tmp_stats[i++] = stat_info->sw_stat.rda_err_cnt;
6204 tmp_stats[i++] = stat_info->sw_stat.rti_err_cnt;
6205 tmp_stats[i++] = stat_info->sw_stat.mc_err_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206}
6207
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006208static int s2io_ethtool_get_regs_len(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209{
6210 return (XENA_REG_SPACE);
6211}
6212
6213
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006214static u32 s2io_ethtool_get_rx_csum(struct net_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006216 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217
6218 return (sp->rx_csum);
6219}
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006220
6221static int s2io_ethtool_set_rx_csum(struct net_device *dev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006223 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224
6225 if (data)
6226 sp->rx_csum = 1;
6227 else
6228 sp->rx_csum = 0;
6229
6230 return 0;
6231}
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006232
6233static int s2io_get_eeprom_len(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234{
6235 return (XENA_EEPROM_SPACE);
6236}
6237
Jeff Garzikb9f2c042007-10-03 18:07:32 -07006238static int s2io_get_sset_count(struct net_device *dev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07006240 struct s2io_nic *sp = dev->priv;
6241
6242 switch (sset) {
6243 case ETH_SS_TEST:
6244 return S2IO_TEST_LEN;
6245 case ETH_SS_STATS:
6246 switch(sp->device_type) {
6247 case XFRAME_I_DEVICE:
6248 return XFRAME_I_STAT_LEN;
6249 case XFRAME_II_DEVICE:
6250 return XFRAME_II_STAT_LEN;
6251 default:
6252 return 0;
6253 }
6254 default:
6255 return -EOPNOTSUPP;
6256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257}
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006258
6259static void s2io_ethtool_get_strings(struct net_device *dev,
6260 u32 stringset, u8 * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261{
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -05006262 int stat_size = 0;
6263 struct s2io_nic *sp = dev->priv;
6264
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265 switch (stringset) {
6266 case ETH_SS_TEST:
6267 memcpy(data, s2io_gstrings, S2IO_STRINGS_LEN);
6268 break;
6269 case ETH_SS_STATS:
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -05006270 stat_size = sizeof(ethtool_xena_stats_keys);
6271 memcpy(data, &ethtool_xena_stats_keys,stat_size);
6272 if(sp->device_type == XFRAME_II_DEVICE) {
6273 memcpy(data + stat_size,
6274 &ethtool_enhanced_stats_keys,
6275 sizeof(ethtool_enhanced_stats_keys));
6276 stat_size += sizeof(ethtool_enhanced_stats_keys);
6277 }
6278
6279 memcpy(data + stat_size, &ethtool_driver_stats_keys,
6280 sizeof(ethtool_driver_stats_keys));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281 }
6282}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006284static int s2io_ethtool_op_set_tx_csum(struct net_device *dev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285{
6286 if (data)
6287 dev->features |= NETIF_F_IP_CSUM;
6288 else
6289 dev->features &= ~NETIF_F_IP_CSUM;
6290
6291 return 0;
6292}
6293
Ananda Raju75c30b12006-07-24 19:55:09 -04006294static u32 s2io_ethtool_op_get_tso(struct net_device *dev)
6295{
6296 return (dev->features & NETIF_F_TSO) != 0;
6297}
6298static int s2io_ethtool_op_set_tso(struct net_device *dev, u32 data)
6299{
6300 if (data)
6301 dev->features |= (NETIF_F_TSO | NETIF_F_TSO6);
6302 else
6303 dev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6);
6304
6305 return 0;
6306}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
Jeff Garzik7282d492006-09-13 14:30:00 -04006308static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309 .get_settings = s2io_ethtool_gset,
6310 .set_settings = s2io_ethtool_sset,
6311 .get_drvinfo = s2io_ethtool_gdrvinfo,
6312 .get_regs_len = s2io_ethtool_get_regs_len,
6313 .get_regs = s2io_ethtool_gregs,
6314 .get_link = ethtool_op_get_link,
6315 .get_eeprom_len = s2io_get_eeprom_len,
6316 .get_eeprom = s2io_ethtool_geeprom,
6317 .set_eeprom = s2io_ethtool_seeprom,
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04006318 .get_ringparam = s2io_ethtool_gringparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319 .get_pauseparam = s2io_ethtool_getpause_data,
6320 .set_pauseparam = s2io_ethtool_setpause_data,
6321 .get_rx_csum = s2io_ethtool_get_rx_csum,
6322 .set_rx_csum = s2io_ethtool_set_rx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006323 .set_tx_csum = s2io_ethtool_op_set_tx_csum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324 .set_sg = ethtool_op_set_sg,
Ananda Raju75c30b12006-07-24 19:55:09 -04006325 .get_tso = s2io_ethtool_op_get_tso,
6326 .set_tso = s2io_ethtool_op_set_tso,
Ananda Rajufed5ecc2005-11-14 15:25:08 -05006327 .set_ufo = ethtool_op_set_ufo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328 .self_test = s2io_ethtool_test,
6329 .get_strings = s2io_ethtool_get_strings,
6330 .phys_id = s2io_ethtool_idnic,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07006331 .get_ethtool_stats = s2io_get_ethtool_stats,
6332 .get_sset_count = s2io_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333};
6334
6335/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006336 * s2io_ioctl - Entry point for the Ioctl
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337 * @dev : Device pointer.
6338 * @ifr : An IOCTL specefic structure, that can contain a pointer to
6339 * a proprietary structure used to pass information to the driver.
6340 * @cmd : This is used to distinguish between the different commands that
6341 * can be passed to the IOCTL functions.
6342 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006343 * Currently there are no special functionality supported in IOCTL, hence
6344 * function always return EOPNOTSUPPORTED
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345 */
6346
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006347static int s2io_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348{
6349 return -EOPNOTSUPP;
6350}
6351
6352/**
6353 * s2io_change_mtu - entry point to change MTU size for the device.
6354 * @dev : device pointer.
6355 * @new_mtu : the new MTU size for the device.
6356 * Description: A driver entry point to change MTU size for the device.
6357 * Before changing the MTU the device must be stopped.
6358 * Return value:
6359 * 0 on success and an appropriate (-)ve integer as defined in errno.h
6360 * file on failure.
6361 */
6362
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006363static int s2io_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006365 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366
6367 if ((new_mtu < MIN_MTU) || (new_mtu > S2IO_JUMBO_SIZE)) {
6368 DBG_PRINT(ERR_DBG, "%s: MTU size is invalid.\n",
6369 dev->name);
6370 return -EPERM;
6371 }
6372
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373 dev->mtu = new_mtu;
raghavendra.koushik@neterion.comd8892c62005-08-03 12:33:12 -07006374 if (netif_running(dev)) {
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006375 s2io_card_down(sp);
raghavendra.koushik@neterion.comd8892c62005-08-03 12:33:12 -07006376 netif_stop_queue(dev);
6377 if (s2io_card_up(sp)) {
6378 DBG_PRINT(ERR_DBG, "%s: Device bring up failed\n",
6379 __FUNCTION__);
6380 }
6381 if (netif_queue_stopped(dev))
6382 netif_wake_queue(dev);
6383 } else { /* Device is down */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006384 struct XENA_dev_config __iomem *bar0 = sp->bar0;
raghavendra.koushik@neterion.comd8892c62005-08-03 12:33:12 -07006385 u64 val64 = new_mtu;
6386
6387 writeq(vBIT(val64, 2, 14), &bar0->rmac_max_pyld_len);
6388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389
6390 return 0;
6391}
6392
6393/**
6394 * s2io_tasklet - Bottom half of the ISR.
6395 * @dev_adr : address of the device structure in dma_addr_t format.
6396 * Description:
6397 * This is the tasklet or the bottom half of the ISR. This is
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006398 * an extension of the ISR which is scheduled by the scheduler to be run
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399 * when the load on the CPU is low. All low priority tasks of the ISR can
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006400 * be pushed into the tasklet. For now the tasklet is used only to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401 * replenish the Rx buffers in the Rx buffer descriptors.
6402 * Return value:
6403 * void.
6404 */
6405
6406static void s2io_tasklet(unsigned long dev_addr)
6407{
6408 struct net_device *dev = (struct net_device *) dev_addr;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006409 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410 int i, ret;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006411 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412 struct config_param *config;
6413
6414 mac_control = &sp->mac_control;
6415 config = &sp->config;
6416
6417 if (!TASKLET_IN_USE) {
6418 for (i = 0; i < config->rx_ring_num; i++) {
6419 ret = fill_rx_buffers(sp, i);
6420 if (ret == -ENOMEM) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08006421 DBG_PRINT(INFO_DBG, "%s: Out of ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422 dev->name);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04006423 DBG_PRINT(INFO_DBG, "memory in tasklet\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424 break;
6425 } else if (ret == -EFILL) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08006426 DBG_PRINT(INFO_DBG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427 "%s: Rx Ring %d is full\n",
6428 dev->name, i);
6429 break;
6430 }
6431 }
6432 clear_bit(0, (&sp->tasklet_status));
6433 }
6434}
6435
6436/**
6437 * s2io_set_link - Set the LInk status
6438 * @data: long pointer to device private structue
6439 * Description: Sets the link status for the adapter
6440 */
6441
David Howellsc4028952006-11-22 14:57:56 +00006442static void s2io_set_link(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006444 struct s2io_nic *nic = container_of(work, struct s2io_nic, set_link_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445 struct net_device *dev = nic->dev;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006446 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447 register u64 val64;
6448 u16 subid;
6449
Francois Romieu22747d62007-02-15 23:37:50 +01006450 rtnl_lock();
6451
6452 if (!netif_running(dev))
6453 goto out_unlock;
6454
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006455 if (test_and_set_bit(__S2IO_STATE_LINK_TASK, &(nic->state))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456 /* The card is being reset, no point doing anything */
Francois Romieu22747d62007-02-15 23:37:50 +01006457 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458 }
6459
6460 subid = nic->pdev->subsystem_device;
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07006461 if (s2io_link_fault_indication(nic) == MAC_RMAC_ERR_TIMER) {
6462 /*
6463 * Allow a small delay for the NICs self initiated
6464 * cleanup to complete.
6465 */
6466 msleep(100);
6467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468
6469 val64 = readq(&bar0->adapter_status);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006470 if (LINK_IS_UP(val64)) {
6471 if (!(readq(&bar0->adapter_control) & ADAPTER_CNTL_EN)) {
6472 if (verify_xena_quiescence(nic)) {
6473 val64 = readq(&bar0->adapter_control);
6474 val64 |= ADAPTER_CNTL_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475 writeq(val64, &bar0->adapter_control);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006476 if (CARDS_WITH_FAULTY_LINK_INDICATORS(
6477 nic->device_type, subid)) {
6478 val64 = readq(&bar0->gpio_control);
6479 val64 |= GPIO_CTRL_GPIO_0;
6480 writeq(val64, &bar0->gpio_control);
6481 val64 = readq(&bar0->gpio_control);
6482 } else {
6483 val64 |= ADAPTER_LED_ON;
6484 writeq(val64, &bar0->adapter_control);
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07006485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 nic->device_enabled_once = TRUE;
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006487 } else {
6488 DBG_PRINT(ERR_DBG, "%s: Error: ", dev->name);
6489 DBG_PRINT(ERR_DBG, "device is not Quiescent\n");
6490 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492 }
Sivakumar Subramani92c48792007-08-06 05:38:19 -04006493 val64 = readq(&bar0->adapter_control);
6494 val64 |= ADAPTER_LED_ON;
6495 writeq(val64, &bar0->adapter_control);
6496 s2io_link(nic, LINK_UP);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006497 } else {
6498 if (CARDS_WITH_FAULTY_LINK_INDICATORS(nic->device_type,
6499 subid)) {
6500 val64 = readq(&bar0->gpio_control);
6501 val64 &= ~GPIO_CTRL_GPIO_0;
6502 writeq(val64, &bar0->gpio_control);
6503 val64 = readq(&bar0->gpio_control);
6504 }
Sivakumar Subramani92c48792007-08-06 05:38:19 -04006505 /* turn off LED */
6506 val64 = readq(&bar0->adapter_control);
6507 val64 = val64 &(~ADAPTER_LED_ON);
6508 writeq(val64, &bar0->adapter_control);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006509 s2io_link(nic, LINK_DOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510 }
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006511 clear_bit(__S2IO_STATE_LINK_TASK, &(nic->state));
Francois Romieu22747d62007-02-15 23:37:50 +01006512
6513out_unlock:
Sivakumar Subramanid8d70ca2007-02-24 02:04:24 -05006514 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515}
6516
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006517static int set_rxd_buffer_pointer(struct s2io_nic *sp, struct RxD_t *rxdp,
6518 struct buffAdd *ba,
6519 struct sk_buff **skb, u64 *temp0, u64 *temp1,
6520 u64 *temp2, int size)
Ananda Raju5d3213c2006-04-21 19:23:26 -04006521{
6522 struct net_device *dev = sp->dev;
Veena Parat491abf22007-07-23 02:37:14 -04006523 struct swStat *stats = &sp->mac_control.stats_info->sw_stat;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006524
6525 if ((sp->rxd_mode == RXD_MODE_1) && (rxdp->Host_Control == 0)) {
Veena Parat6d517a22007-07-23 02:20:51 -04006526 struct RxD1 *rxdp1 = (struct RxD1 *)rxdp;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006527 /* allocate skb */
6528 if (*skb) {
6529 DBG_PRINT(INFO_DBG, "SKB is not NULL\n");
6530 /*
6531 * As Rx frame are not going to be processed,
6532 * using same mapped address for the Rxd
6533 * buffer pointer
6534 */
Veena Parat6d517a22007-07-23 02:20:51 -04006535 rxdp1->Buffer0_ptr = *temp0;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006536 } else {
6537 *skb = dev_alloc_skb(size);
6538 if (!(*skb)) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08006539 DBG_PRINT(INFO_DBG, "%s: Out of ", dev->name);
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04006540 DBG_PRINT(INFO_DBG, "memory to allocate ");
6541 DBG_PRINT(INFO_DBG, "1 buf mode SKBs\n");
6542 sp->mac_control.stats_info->sw_stat. \
6543 mem_alloc_fail_cnt++;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006544 return -ENOMEM ;
6545 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04006546 sp->mac_control.stats_info->sw_stat.mem_allocated
6547 += (*skb)->truesize;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006548 /* storing the mapped addr in a temp variable
6549 * such it will be used for next rxd whose
6550 * Host Control is NULL
6551 */
Veena Parat6d517a22007-07-23 02:20:51 -04006552 rxdp1->Buffer0_ptr = *temp0 =
Ananda Raju5d3213c2006-04-21 19:23:26 -04006553 pci_map_single( sp->pdev, (*skb)->data,
6554 size - NET_IP_ALIGN,
6555 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04006556 if( (rxdp1->Buffer0_ptr == 0) ||
6557 (rxdp1->Buffer0_ptr == DMA_ERROR_CODE)) {
6558 goto memalloc_failed;
6559 }
Ananda Raju5d3213c2006-04-21 19:23:26 -04006560 rxdp->Host_Control = (unsigned long) (*skb);
6561 }
6562 } else if ((sp->rxd_mode == RXD_MODE_3B) && (rxdp->Host_Control == 0)) {
Veena Parat6d517a22007-07-23 02:20:51 -04006563 struct RxD3 *rxdp3 = (struct RxD3 *)rxdp;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006564 /* Two buffer Mode */
6565 if (*skb) {
Veena Parat6d517a22007-07-23 02:20:51 -04006566 rxdp3->Buffer2_ptr = *temp2;
6567 rxdp3->Buffer0_ptr = *temp0;
6568 rxdp3->Buffer1_ptr = *temp1;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006569 } else {
6570 *skb = dev_alloc_skb(size);
David Rientjes2ceaac72006-10-30 14:19:25 -08006571 if (!(*skb)) {
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04006572 DBG_PRINT(INFO_DBG, "%s: Out of ", dev->name);
6573 DBG_PRINT(INFO_DBG, "memory to allocate ");
6574 DBG_PRINT(INFO_DBG, "2 buf mode SKBs\n");
6575 sp->mac_control.stats_info->sw_stat. \
6576 mem_alloc_fail_cnt++;
David Rientjes2ceaac72006-10-30 14:19:25 -08006577 return -ENOMEM;
6578 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04006579 sp->mac_control.stats_info->sw_stat.mem_allocated
6580 += (*skb)->truesize;
Veena Parat6d517a22007-07-23 02:20:51 -04006581 rxdp3->Buffer2_ptr = *temp2 =
Ananda Raju5d3213c2006-04-21 19:23:26 -04006582 pci_map_single(sp->pdev, (*skb)->data,
6583 dev->mtu + 4,
6584 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04006585 if( (rxdp3->Buffer2_ptr == 0) ||
6586 (rxdp3->Buffer2_ptr == DMA_ERROR_CODE)) {
6587 goto memalloc_failed;
6588 }
Veena Parat6d517a22007-07-23 02:20:51 -04006589 rxdp3->Buffer0_ptr = *temp0 =
Ananda Raju5d3213c2006-04-21 19:23:26 -04006590 pci_map_single( sp->pdev, ba->ba_0, BUF0_LEN,
6591 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04006592 if( (rxdp3->Buffer0_ptr == 0) ||
6593 (rxdp3->Buffer0_ptr == DMA_ERROR_CODE)) {
6594 pci_unmap_single (sp->pdev,
Al Viro3e847422007-08-02 19:21:30 +01006595 (dma_addr_t)rxdp3->Buffer2_ptr,
Veena Parat491abf22007-07-23 02:37:14 -04006596 dev->mtu + 4, PCI_DMA_FROMDEVICE);
6597 goto memalloc_failed;
6598 }
Ananda Raju5d3213c2006-04-21 19:23:26 -04006599 rxdp->Host_Control = (unsigned long) (*skb);
6600
6601 /* Buffer-1 will be dummy buffer not used */
Veena Parat6d517a22007-07-23 02:20:51 -04006602 rxdp3->Buffer1_ptr = *temp1 =
Ananda Raju5d3213c2006-04-21 19:23:26 -04006603 pci_map_single(sp->pdev, ba->ba_1, BUF1_LEN,
Ananda Raju5d3213c2006-04-21 19:23:26 -04006604 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04006605 if( (rxdp3->Buffer1_ptr == 0) ||
6606 (rxdp3->Buffer1_ptr == DMA_ERROR_CODE)) {
6607 pci_unmap_single (sp->pdev,
Al Viro3e847422007-08-02 19:21:30 +01006608 (dma_addr_t)rxdp3->Buffer0_ptr,
6609 BUF0_LEN, PCI_DMA_FROMDEVICE);
6610 pci_unmap_single (sp->pdev,
6611 (dma_addr_t)rxdp3->Buffer2_ptr,
Veena Parat491abf22007-07-23 02:37:14 -04006612 dev->mtu + 4, PCI_DMA_FROMDEVICE);
6613 goto memalloc_failed;
6614 }
Ananda Raju5d3213c2006-04-21 19:23:26 -04006615 }
6616 }
6617 return 0;
Veena Parat491abf22007-07-23 02:37:14 -04006618 memalloc_failed:
6619 stats->pci_map_fail_cnt++;
6620 stats->mem_freed += (*skb)->truesize;
6621 dev_kfree_skb(*skb);
6622 return -ENOMEM;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006623}
Veena Parat491abf22007-07-23 02:37:14 -04006624
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006625static void set_rxd_buffer_size(struct s2io_nic *sp, struct RxD_t *rxdp,
6626 int size)
Ananda Raju5d3213c2006-04-21 19:23:26 -04006627{
6628 struct net_device *dev = sp->dev;
6629 if (sp->rxd_mode == RXD_MODE_1) {
6630 rxdp->Control_2 = SET_BUFFER0_SIZE_1( size - NET_IP_ALIGN);
6631 } else if (sp->rxd_mode == RXD_MODE_3B) {
6632 rxdp->Control_2 = SET_BUFFER0_SIZE_3(BUF0_LEN);
6633 rxdp->Control_2 |= SET_BUFFER1_SIZE_3(1);
6634 rxdp->Control_2 |= SET_BUFFER2_SIZE_3( dev->mtu + 4);
Ananda Raju5d3213c2006-04-21 19:23:26 -04006635 }
6636}
6637
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006638static int rxd_owner_bit_reset(struct s2io_nic *sp)
Ananda Raju5d3213c2006-04-21 19:23:26 -04006639{
6640 int i, j, k, blk_cnt = 0, size;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006641 struct mac_info * mac_control = &sp->mac_control;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006642 struct config_param *config = &sp->config;
6643 struct net_device *dev = sp->dev;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006644 struct RxD_t *rxdp = NULL;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006645 struct sk_buff *skb = NULL;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006646 struct buffAdd *ba = NULL;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006647 u64 temp0_64 = 0, temp1_64 = 0, temp2_64 = 0;
6648
6649 /* Calculate the size based on ring mode */
6650 size = dev->mtu + HEADER_ETHERNET_II_802_3_SIZE +
6651 HEADER_802_2_SIZE + HEADER_SNAP_SIZE;
6652 if (sp->rxd_mode == RXD_MODE_1)
6653 size += NET_IP_ALIGN;
6654 else if (sp->rxd_mode == RXD_MODE_3B)
6655 size = dev->mtu + ALIGN_SIZE + BUF0_LEN + 4;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006656
6657 for (i = 0; i < config->rx_ring_num; i++) {
6658 blk_cnt = config->rx_cfg[i].num_rxd /
6659 (rxd_count[sp->rxd_mode] +1);
6660
6661 for (j = 0; j < blk_cnt; j++) {
6662 for (k = 0; k < rxd_count[sp->rxd_mode]; k++) {
6663 rxdp = mac_control->rings[i].
6664 rx_blocks[j].rxds[k].virt_addr;
Veena Parat6d517a22007-07-23 02:20:51 -04006665 if(sp->rxd_mode == RXD_MODE_3B)
Ananda Raju5d3213c2006-04-21 19:23:26 -04006666 ba = &mac_control->rings[i].ba[j][k];
Sivakumar Subramaniac1f90d2007-02-24 02:01:31 -05006667 if (set_rxd_buffer_pointer(sp, rxdp, ba,
Ananda Raju5d3213c2006-04-21 19:23:26 -04006668 &skb,(u64 *)&temp0_64,
6669 (u64 *)&temp1_64,
Sivakumar Subramaniac1f90d2007-02-24 02:01:31 -05006670 (u64 *)&temp2_64,
6671 size) == ENOMEM) {
6672 return 0;
6673 }
Ananda Raju5d3213c2006-04-21 19:23:26 -04006674
6675 set_rxd_buffer_size(sp, rxdp, size);
6676 wmb();
6677 /* flip the Ownership bit to Hardware */
6678 rxdp->Control_1 |= RXD_OWN_XENA;
6679 }
6680 }
6681 }
6682 return 0;
6683
6684}
6685
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006686static int s2io_add_isr(struct s2io_nic * sp)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006687{
6688 int ret = 0;
6689 struct net_device *dev = sp->dev;
6690 int err = 0;
6691
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006692 if (sp->config.intr_type == MSI_X)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006693 ret = s2io_enable_msi_x(sp);
6694 if (ret) {
6695 DBG_PRINT(ERR_DBG, "%s: Defaulting to INTA\n", dev->name);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006696 sp->config.intr_type = INTA;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006697 }
6698
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006699 /* Store the values of the MSIX table in the struct s2io_nic structure */
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006700 store_xmsi_data(sp);
6701
6702 /* After proper initialization of H/W, register ISR */
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006703 if (sp->config.intr_type == MSI_X) {
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05006704 int i, msix_tx_cnt=0,msix_rx_cnt=0;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006705
6706 for (i=1; (sp->s2io_entries[i].in_use == MSIX_FLG); i++) {
6707 if (sp->s2io_entries[i].type == MSIX_FIFO_TYPE) {
6708 sprintf(sp->desc[i], "%s:MSI-X-%d-TX",
6709 dev->name, i);
6710 err = request_irq(sp->entries[i].vector,
6711 s2io_msix_fifo_handle, 0, sp->desc[i],
6712 sp->s2io_entries[i].arg);
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05006713 /* If either data or addr is zero print it */
6714 if(!(sp->msix_info[i].addr &&
6715 sp->msix_info[i].data)) {
6716 DBG_PRINT(ERR_DBG, "%s @ Addr:0x%llx"
6717 "Data:0x%lx\n",sp->desc[i],
6718 (unsigned long long)
6719 sp->msix_info[i].addr,
6720 (unsigned long)
6721 ntohl(sp->msix_info[i].data));
6722 } else {
6723 msix_tx_cnt++;
6724 }
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006725 } else {
6726 sprintf(sp->desc[i], "%s:MSI-X-%d-RX",
6727 dev->name, i);
6728 err = request_irq(sp->entries[i].vector,
6729 s2io_msix_ring_handle, 0, sp->desc[i],
6730 sp->s2io_entries[i].arg);
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05006731 /* If either data or addr is zero print it */
6732 if(!(sp->msix_info[i].addr &&
6733 sp->msix_info[i].data)) {
6734 DBG_PRINT(ERR_DBG, "%s @ Addr:0x%llx"
6735 "Data:0x%lx\n",sp->desc[i],
6736 (unsigned long long)
6737 sp->msix_info[i].addr,
6738 (unsigned long)
6739 ntohl(sp->msix_info[i].data));
6740 } else {
6741 msix_rx_cnt++;
6742 }
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006743 }
6744 if (err) {
6745 DBG_PRINT(ERR_DBG,"%s:MSI-X-%d registration "
6746 "failed\n", dev->name, i);
6747 DBG_PRINT(ERR_DBG, "Returned: %d\n", err);
6748 return -1;
6749 }
6750 sp->s2io_entries[i].in_use = MSIX_REGISTERED_SUCCESS;
6751 }
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05006752 printk("MSI-X-TX %d entries enabled\n",msix_tx_cnt);
6753 printk("MSI-X-RX %d entries enabled\n",msix_rx_cnt);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006754 }
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006755 if (sp->config.intr_type == INTA) {
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006756 err = request_irq((int) sp->pdev->irq, s2io_isr, IRQF_SHARED,
6757 sp->name, dev);
6758 if (err) {
6759 DBG_PRINT(ERR_DBG, "%s: ISR registration failed\n",
6760 dev->name);
6761 return -1;
6762 }
6763 }
6764 return 0;
6765}
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006766static void s2io_rem_isr(struct s2io_nic * sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767{
Ananda Rajuc92ca042006-04-21 19:18:03 -04006768 struct net_device *dev = sp->dev;
Sivakumar Subramanic77dd432007-08-06 05:36:28 -04006769 struct swStat *stats = &sp->mac_control.stats_info->sw_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006771 if (sp->config.intr_type == MSI_X) {
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006772 int i;
6773 u16 msi_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006775 for (i=1; (sp->s2io_entries[i].in_use ==
6776 MSIX_REGISTERED_SUCCESS); i++) {
6777 int vector = sp->entries[i].vector;
6778 void *arg = sp->s2io_entries[i].arg;
Ananda Rajuc92ca042006-04-21 19:18:03 -04006779
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07006780 synchronize_irq(vector);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006781 free_irq(vector, arg);
6782 }
Sivakumar Subramanic77dd432007-08-06 05:36:28 -04006783
6784 kfree(sp->entries);
6785 stats->mem_freed +=
6786 (MAX_REQUESTED_MSI_X * sizeof(struct msix_entry));
6787 kfree(sp->s2io_entries);
6788 stats->mem_freed +=
6789 (MAX_REQUESTED_MSI_X * sizeof(struct s2io_msix_entry));
6790 sp->entries = NULL;
6791 sp->s2io_entries = NULL;
6792
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006793 pci_read_config_word(sp->pdev, 0x42, &msi_control);
6794 msi_control &= 0xFFFE; /* Disable MSI */
6795 pci_write_config_word(sp->pdev, 0x42, msi_control);
Ananda Rajuc92ca042006-04-21 19:18:03 -04006796
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006797 pci_disable_msix(sp->pdev);
6798 } else {
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07006799 synchronize_irq(sp->pdev->irq);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006800 free_irq(sp->pdev->irq, dev);
Ananda Rajuc92ca042006-04-21 19:18:03 -04006801 }
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006802}
6803
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006804static void do_s2io_card_down(struct s2io_nic * sp, int do_io)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006805{
6806 int cnt = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006807 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006808 unsigned long flags;
6809 register u64 val64 = 0;
6810
6811 del_timer_sync(&sp->alarm_timer);
6812 /* If s2io_set_link task is executing, wait till it completes. */
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006813 while (test_and_set_bit(__S2IO_STATE_LINK_TASK, &(sp->state))) {
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006814 msleep(50);
6815 }
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006816 clear_bit(__S2IO_STATE_CARD_UP, &sp->state);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006817
6818 /* disable Tx and Rx traffic on the NIC */
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006819 if (do_io)
6820 stop_nic(sp);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006821
6822 s2io_rem_isr(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823
6824 /* Kill tasklet. */
6825 tasklet_kill(&sp->task);
6826
6827 /* Check if the device is Quiescent and then Reset the NIC */
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006828 while(do_io) {
Ananda Raju5d3213c2006-04-21 19:23:26 -04006829 /* As per the HW requirement we need to replenish the
6830 * receive buffer to avoid the ring bump. Since there is
6831 * no intention of processing the Rx frame at this pointwe are
6832 * just settting the ownership bit of rxd in Each Rx
6833 * ring to HW and set the appropriate buffer size
6834 * based on the ring mode
6835 */
6836 rxd_owner_bit_reset(sp);
6837
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838 val64 = readq(&bar0->adapter_status);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006839 if (verify_xena_quiescence(sp)) {
6840 if(verify_pcc_quiescent(sp, sp->device_enabled_once))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841 break;
6842 }
6843
6844 msleep(50);
6845 cnt++;
6846 if (cnt == 10) {
6847 DBG_PRINT(ERR_DBG,
6848 "s2io_close:Device not Quiescent ");
6849 DBG_PRINT(ERR_DBG, "adaper status reads 0x%llx\n",
6850 (unsigned long long) val64);
6851 break;
6852 }
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006853 }
6854 if (do_io)
6855 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07006857 spin_lock_irqsave(&sp->tx_lock, flags);
6858 /* Free all Tx buffers */
6859 free_tx_buffers(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860 spin_unlock_irqrestore(&sp->tx_lock, flags);
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07006861
6862 /* Free all Rx buffers */
6863 spin_lock_irqsave(&sp->rx_lock, flags);
6864 free_rx_buffers(sp);
6865 spin_unlock_irqrestore(&sp->rx_lock, flags);
6866
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006867 clear_bit(__S2IO_STATE_LINK_TASK, &(sp->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006868}
6869
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006870static void s2io_card_down(struct s2io_nic * sp)
6871{
6872 do_s2io_card_down(sp, 1);
6873}
6874
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006875static int s2io_card_up(struct s2io_nic * sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006876{
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04006877 int i, ret = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006878 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006879 struct config_param *config;
6880 struct net_device *dev = (struct net_device *) sp->dev;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006881 u16 interruptible;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882
6883 /* Initialize the H/W I/O registers */
6884 if (init_nic(sp) != 0) {
6885 DBG_PRINT(ERR_DBG, "%s: H/W initialization failed\n",
6886 dev->name);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006887 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888 return -ENODEV;
6889 }
6890
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006891 /*
6892 * Initializing the Rx buffers. For now we are considering only 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893 * Rx ring and initializing buffers into 30 Rx blocks
6894 */
6895 mac_control = &sp->mac_control;
6896 config = &sp->config;
6897
6898 for (i = 0; i < config->rx_ring_num; i++) {
6899 if ((ret = fill_rx_buffers(sp, i))) {
6900 DBG_PRINT(ERR_DBG, "%s: Out of memory in Open\n",
6901 dev->name);
6902 s2io_reset(sp);
6903 free_rx_buffers(sp);
6904 return -ENOMEM;
6905 }
6906 DBG_PRINT(INFO_DBG, "Buf in ring:%d is %d:\n", i,
6907 atomic_read(&sp->rx_bufs_left[i]));
6908 }
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006909 /* Maintain the state prior to the open */
6910 if (sp->promisc_flg)
6911 sp->promisc_flg = 0;
6912 if (sp->m_cast_flg) {
6913 sp->m_cast_flg = 0;
6914 sp->all_multi_pos= 0;
6915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916
6917 /* Setting its receive mode */
6918 s2io_set_multicast(dev);
6919
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05006920 if (sp->lro) {
Ananda Rajub41477f2006-07-24 19:52:49 -04006921 /* Initialize max aggregatable pkts per session based on MTU */
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05006922 sp->lro_max_aggr_per_sess = ((1<<16) - 1) / dev->mtu;
6923 /* Check if we can use(if specified) user provided value */
6924 if (lro_max_pkts < sp->lro_max_aggr_per_sess)
6925 sp->lro_max_aggr_per_sess = lro_max_pkts;
6926 }
6927
Linus Torvalds1da177e2005-04-16 15:20:36 -07006928 /* Enable Rx Traffic and interrupts on the NIC */
6929 if (start_nic(sp)) {
6930 DBG_PRINT(ERR_DBG, "%s: Starting NIC failed\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931 s2io_reset(sp);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006932 free_rx_buffers(sp);
6933 return -ENODEV;
6934 }
6935
6936 /* Add interrupt service routine */
6937 if (s2io_add_isr(sp) != 0) {
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006938 if (sp->config.intr_type == MSI_X)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006939 s2io_rem_isr(sp);
6940 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941 free_rx_buffers(sp);
6942 return -ENODEV;
6943 }
6944
raghavendra.koushik@neterion.com25fff882005-08-03 12:34:11 -07006945 S2IO_TIMER_CONF(sp->alarm_timer, s2io_alarm_handle, sp, (HZ/2));
6946
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006947 /* Enable tasklet for the device */
6948 tasklet_init(&sp->task, s2io_tasklet, (unsigned long) dev);
6949
6950 /* Enable select interrupts */
Sivakumar Subramani9caab452007-09-06 06:21:54 -04006951 en_dis_err_alarms(sp, ENA_ALL_INTRS, ENABLE_INTRS);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006952 if (sp->config.intr_type != INTA)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006953 en_dis_able_nic_intrs(sp, ENA_ALL_INTRS, DISABLE_INTRS);
6954 else {
6955 interruptible = TX_TRAFFIC_INTR | RX_TRAFFIC_INTR;
Sivakumar Subramani9caab452007-09-06 06:21:54 -04006956 interruptible |= TX_PIC_INTR;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006957 en_dis_able_nic_intrs(sp, interruptible, ENABLE_INTRS);
6958 }
6959
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006960 set_bit(__S2IO_STATE_CARD_UP, &sp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006961 return 0;
6962}
6963
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006964/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006965 * s2io_restart_nic - Resets the NIC.
6966 * @data : long pointer to the device private structure
6967 * Description:
6968 * This function is scheduled to be run by the s2io_tx_watchdog
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006969 * function after 0.5 secs to reset the NIC. The idea is to reduce
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970 * the run time of the watch dog routine which is run holding a
6971 * spin lock.
6972 */
6973
David Howellsc4028952006-11-22 14:57:56 +00006974static void s2io_restart_nic(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006976 struct s2io_nic *sp = container_of(work, struct s2io_nic, rst_timer_task);
David Howellsc4028952006-11-22 14:57:56 +00006977 struct net_device *dev = sp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006978
Francois Romieu22747d62007-02-15 23:37:50 +01006979 rtnl_lock();
6980
6981 if (!netif_running(dev))
6982 goto out_unlock;
6983
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006984 s2io_card_down(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985 if (s2io_card_up(sp)) {
6986 DBG_PRINT(ERR_DBG, "%s: Device bring up failed\n",
6987 dev->name);
6988 }
6989 netif_wake_queue(dev);
6990 DBG_PRINT(ERR_DBG, "%s: was reset by Tx watchdog timer\n",
6991 dev->name);
Francois Romieu22747d62007-02-15 23:37:50 +01006992out_unlock:
6993 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994}
6995
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006996/**
6997 * s2io_tx_watchdog - Watchdog for transmit side.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998 * @dev : Pointer to net device structure
6999 * Description:
7000 * This function is triggered if the Tx Queue is stopped
7001 * for a pre-defined amount of time when the Interface is still up.
7002 * If the Interface is jammed in such a situation, the hardware is
7003 * reset (by s2io_close) and restarted again (by s2io_open) to
7004 * overcome any problem that might have been caused in the hardware.
7005 * Return value:
7006 * void
7007 */
7008
7009static void s2io_tx_watchdog(struct net_device *dev)
7010{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007011 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007012
7013 if (netif_carrier_ok(dev)) {
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04007014 sp->mac_control.stats_info->sw_stat.watchdog_timer_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007015 schedule_work(&sp->rst_timer_task);
Ananda Rajubd1034f2006-04-21 19:20:22 -04007016 sp->mac_control.stats_info->sw_stat.soft_reset_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007017 }
7018}
7019
7020/**
7021 * rx_osm_handler - To perform some OS related operations on SKB.
7022 * @sp: private member of the device structure,pointer to s2io_nic structure.
7023 * @skb : the socket buffer pointer.
7024 * @len : length of the packet
7025 * @cksum : FCS checksum of the frame.
7026 * @ring_no : the ring from which this RxD was extracted.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007027 * Description:
Ananda Rajub41477f2006-07-24 19:52:49 -04007028 * This function is called by the Rx interrupt serivce routine to perform
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029 * some OS related operations on the SKB before passing it to the upper
7030 * layers. It mainly checks if the checksum is OK, if so adds it to the
7031 * SKBs cksum variable, increments the Rx packet count and passes the SKB
7032 * to the upper layer. If the checksum is wrong, it increments the Rx
7033 * packet error count, frees the SKB and returns error.
7034 * Return value:
7035 * SUCCESS on success and -1 on failure.
7036 */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007037static int rx_osm_handler(struct ring_info *ring_data, struct RxD_t * rxdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007038{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007039 struct s2io_nic *sp = ring_data->nic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040 struct net_device *dev = (struct net_device *) sp->dev;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007041 struct sk_buff *skb = (struct sk_buff *)
7042 ((unsigned long) rxdp->Host_Control);
7043 int ring_no = ring_data->ring_no;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044 u16 l3_csum, l4_csum;
Ananda Raju863c11a2006-04-21 19:03:13 -04007045 unsigned long long err = rxdp->Control_1 & RXD_T_CODE;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007046 struct lro *lro;
Olaf Heringf9046eb2007-06-19 22:41:10 +02007047 u8 err_mask;
Ananda Rajuda6971d2005-10-31 16:55:31 -05007048
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007049 skb->dev = dev;
Ananda Rajuc92ca042006-04-21 19:18:03 -04007050
Ananda Raju863c11a2006-04-21 19:03:13 -04007051 if (err) {
Ananda Rajubd1034f2006-04-21 19:20:22 -04007052 /* Check for parity error */
7053 if (err & 0x1) {
7054 sp->mac_control.stats_info->sw_stat.parity_err_cnt++;
7055 }
Olaf Heringf9046eb2007-06-19 22:41:10 +02007056 err_mask = err >> 48;
7057 switch(err_mask) {
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007058 case 1:
7059 sp->mac_control.stats_info->sw_stat.
7060 rx_parity_err_cnt++;
7061 break;
Ananda Rajubd1034f2006-04-21 19:20:22 -04007062
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007063 case 2:
7064 sp->mac_control.stats_info->sw_stat.
7065 rx_abort_cnt++;
7066 break;
7067
7068 case 3:
7069 sp->mac_control.stats_info->sw_stat.
7070 rx_parity_abort_cnt++;
7071 break;
7072
7073 case 4:
7074 sp->mac_control.stats_info->sw_stat.
7075 rx_rda_fail_cnt++;
7076 break;
7077
7078 case 5:
7079 sp->mac_control.stats_info->sw_stat.
7080 rx_unkn_prot_cnt++;
7081 break;
7082
7083 case 6:
7084 sp->mac_control.stats_info->sw_stat.
7085 rx_fcs_err_cnt++;
7086 break;
7087
7088 case 7:
7089 sp->mac_control.stats_info->sw_stat.
7090 rx_buf_size_err_cnt++;
7091 break;
7092
7093 case 8:
7094 sp->mac_control.stats_info->sw_stat.
7095 rx_rxd_corrupt_cnt++;
7096 break;
7097
7098 case 15:
7099 sp->mac_control.stats_info->sw_stat.
7100 rx_unkn_err_cnt++;
7101 break;
7102 }
Ananda Raju863c11a2006-04-21 19:03:13 -04007103 /*
7104 * Drop the packet if bad transfer code. Exception being
7105 * 0x5, which could be due to unsupported IPv6 extension header.
7106 * In this case, we let stack handle the packet.
7107 * Note that in this case, since checksum will be incorrect,
7108 * stack will validate the same.
7109 */
Olaf Heringf9046eb2007-06-19 22:41:10 +02007110 if (err_mask != 0x5) {
7111 DBG_PRINT(ERR_DBG, "%s: Rx error Value: 0x%x\n",
7112 dev->name, err_mask);
Ananda Raju863c11a2006-04-21 19:03:13 -04007113 sp->stats.rx_crc_errors++;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007114 sp->mac_control.stats_info->sw_stat.mem_freed
7115 += skb->truesize;
Ananda Raju863c11a2006-04-21 19:03:13 -04007116 dev_kfree_skb(skb);
7117 atomic_dec(&sp->rx_bufs_left[ring_no]);
7118 rxdp->Host_Control = 0;
7119 return 0;
7120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007122
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007123 /* Updating statistics */
Ramkrishna Vepa573608e2007-07-25 19:43:12 -07007124 sp->stats.rx_packets++;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007125 rxdp->Host_Control = 0;
Ananda Rajuda6971d2005-10-31 16:55:31 -05007126 if (sp->rxd_mode == RXD_MODE_1) {
7127 int len = RXD_GET_BUFFER0_SIZE_1(rxdp->Control_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007128
Ananda Rajuda6971d2005-10-31 16:55:31 -05007129 sp->stats.rx_bytes += len;
7130 skb_put(skb, len);
7131
Veena Parat6d517a22007-07-23 02:20:51 -04007132 } else if (sp->rxd_mode == RXD_MODE_3B) {
Ananda Rajuda6971d2005-10-31 16:55:31 -05007133 int get_block = ring_data->rx_curr_get_info.block_index;
7134 int get_off = ring_data->rx_curr_get_info.offset;
7135 int buf0_len = RXD_GET_BUFFER0_SIZE_3(rxdp->Control_2);
7136 int buf2_len = RXD_GET_BUFFER2_SIZE_3(rxdp->Control_2);
7137 unsigned char *buff = skb_push(skb, buf0_len);
7138
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007139 struct buffAdd *ba = &ring_data->ba[get_block][get_off];
Ananda Rajuda6971d2005-10-31 16:55:31 -05007140 sp->stats.rx_bytes += buf0_len + buf2_len;
7141 memcpy(buff, ba->ba_0, buf0_len);
Veena Parat6d517a22007-07-23 02:20:51 -04007142 skb_put(skb, buf2_len);
Ananda Rajuda6971d2005-10-31 16:55:31 -05007143 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007144
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007145 if ((rxdp->Control_1 & TCP_OR_UDP_FRAME) && ((!sp->lro) ||
7146 (sp->lro && (!(rxdp->Control_1 & RXD_FRAME_IP_FRAG)))) &&
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007147 (sp->rx_csum)) {
7148 l3_csum = RXD_GET_L3_CKSUM(rxdp->Control_1);
7149 l4_csum = RXD_GET_L4_CKSUM(rxdp->Control_1);
7150 if ((l3_csum == L3_CKSUM_OK) && (l4_csum == L4_CKSUM_OK)) {
7151 /*
7152 * NIC verifies if the Checksum of the received
7153 * frame is Ok or not and accordingly returns
7154 * a flag in the RxD.
7155 */
7156 skb->ip_summed = CHECKSUM_UNNECESSARY;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007157 if (sp->lro) {
7158 u32 tcp_len;
7159 u8 *tcp;
7160 int ret = 0;
7161
7162 ret = s2io_club_tcp_session(skb->data, &tcp,
7163 &tcp_len, &lro, rxdp, sp);
7164 switch (ret) {
7165 case 3: /* Begin anew */
7166 lro->parent = skb;
7167 goto aggregate;
7168 case 1: /* Aggregate */
7169 {
7170 lro_append_pkt(sp, lro,
7171 skb, tcp_len);
7172 goto aggregate;
7173 }
7174 case 4: /* Flush session */
7175 {
7176 lro_append_pkt(sp, lro,
7177 skb, tcp_len);
7178 queue_rx_frame(lro->parent);
7179 clear_lro_session(lro);
7180 sp->mac_control.stats_info->
7181 sw_stat.flush_max_pkts++;
7182 goto aggregate;
7183 }
7184 case 2: /* Flush both */
7185 lro->parent->data_len =
7186 lro->frags_len;
7187 sp->mac_control.stats_info->
7188 sw_stat.sending_both++;
7189 queue_rx_frame(lro->parent);
7190 clear_lro_session(lro);
7191 goto send_up;
7192 case 0: /* sessions exceeded */
Ananda Rajuc92ca042006-04-21 19:18:03 -04007193 case -1: /* non-TCP or not
7194 * L2 aggregatable
7195 */
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007196 case 5: /*
7197 * First pkt in session not
7198 * L3/L4 aggregatable
7199 */
7200 break;
7201 default:
7202 DBG_PRINT(ERR_DBG,
7203 "%s: Samadhana!!\n",
7204 __FUNCTION__);
7205 BUG();
7206 }
7207 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007208 } else {
7209 /*
7210 * Packet with erroneous checksum, let the
7211 * upper layers deal with it.
7212 */
7213 skb->ip_summed = CHECKSUM_NONE;
7214 }
7215 } else {
7216 skb->ip_summed = CHECKSUM_NONE;
7217 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007218 sp->mac_control.stats_info->sw_stat.mem_freed += skb->truesize;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007219 if (!sp->lro) {
7220 skb->protocol = eth_type_trans(skb, dev);
Sivakumar Subramani926930b2007-02-24 01:59:39 -05007221 if ((sp->vlgrp && RXD_GET_VLAN_TAG(rxdp->Control_2) &&
7222 vlan_strip_flag)) {
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007223 /* Queueing the vlan frame to the upper layer */
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007224 if (napi)
7225 vlan_hwaccel_receive_skb(skb, sp->vlgrp,
7226 RXD_GET_VLAN_TAG(rxdp->Control_2));
7227 else
7228 vlan_hwaccel_rx(skb, sp->vlgrp,
7229 RXD_GET_VLAN_TAG(rxdp->Control_2));
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007230 } else {
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007231 if (napi)
7232 netif_receive_skb(skb);
7233 else
7234 netif_rx(skb);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007235 }
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007236 } else {
7237send_up:
7238 queue_rx_frame(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007239 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007240 dev->last_rx = jiffies;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007241aggregate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007242 atomic_dec(&sp->rx_bufs_left[ring_no]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243 return SUCCESS;
7244}
7245
7246/**
7247 * s2io_link - stops/starts the Tx queue.
7248 * @sp : private member of the device structure, which is a pointer to the
7249 * s2io_nic structure.
7250 * @link : inidicates whether link is UP/DOWN.
7251 * Description:
7252 * This function stops/starts the Tx queue depending on whether the link
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007253 * status of the NIC is is down or up. This is called by the Alarm
7254 * interrupt handler whenever a link change interrupt comes up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007255 * Return value:
7256 * void.
7257 */
7258
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007259static void s2io_link(struct s2io_nic * sp, int link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007260{
7261 struct net_device *dev = (struct net_device *) sp->dev;
7262
7263 if (link != sp->last_link_state) {
7264 if (link == LINK_DOWN) {
7265 DBG_PRINT(ERR_DBG, "%s: Link down\n", dev->name);
7266 netif_carrier_off(dev);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007267 if(sp->mac_control.stats_info->sw_stat.link_up_cnt)
7268 sp->mac_control.stats_info->sw_stat.link_up_time =
7269 jiffies - sp->start_time;
7270 sp->mac_control.stats_info->sw_stat.link_down_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007271 } else {
7272 DBG_PRINT(ERR_DBG, "%s: Link Up\n", dev->name);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007273 if (sp->mac_control.stats_info->sw_stat.link_down_cnt)
7274 sp->mac_control.stats_info->sw_stat.link_down_time =
7275 jiffies - sp->start_time;
7276 sp->mac_control.stats_info->sw_stat.link_up_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007277 netif_carrier_on(dev);
7278 }
7279 }
7280 sp->last_link_state = link;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007281 sp->start_time = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007282}
7283
7284/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007285 * s2io_init_pci -Initialization of PCI and PCI-X configuration registers .
7286 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287 * s2io_nic structure.
7288 * Description:
7289 * This function initializes a few of the PCI and PCI-X configuration registers
7290 * with recommended values.
7291 * Return value:
7292 * void
7293 */
7294
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007295static void s2io_init_pci(struct s2io_nic * sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296{
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007297 u16 pci_cmd = 0, pcix_cmd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007298
7299 /* Enable Data Parity Error Recovery in PCI-X command register. */
7300 pci_read_config_word(sp->pdev, PCIX_COMMAND_REGISTER,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007301 &(pcix_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302 pci_write_config_word(sp->pdev, PCIX_COMMAND_REGISTER,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007303 (pcix_cmd | 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304 pci_read_config_word(sp->pdev, PCIX_COMMAND_REGISTER,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007305 &(pcix_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306
7307 /* Set the PErr Response bit in PCI command register. */
7308 pci_read_config_word(sp->pdev, PCI_COMMAND, &pci_cmd);
7309 pci_write_config_word(sp->pdev, PCI_COMMAND,
7310 (pci_cmd | PCI_COMMAND_PARITY));
7311 pci_read_config_word(sp->pdev, PCI_COMMAND, &pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312}
7313
Ananda Raju9dc737a2006-04-21 19:05:41 -04007314static int s2io_verify_parm(struct pci_dev *pdev, u8 *dev_intr_type)
7315{
7316 if ( tx_fifo_num > 8) {
7317 DBG_PRINT(ERR_DBG, "s2io: Requested number of Tx fifos not "
7318 "supported\n");
7319 DBG_PRINT(ERR_DBG, "s2io: Default to 8 Tx fifos\n");
7320 tx_fifo_num = 8;
7321 }
7322 if ( rx_ring_num > 8) {
7323 DBG_PRINT(ERR_DBG, "s2io: Requested number of Rx rings not "
7324 "supported\n");
7325 DBG_PRINT(ERR_DBG, "s2io: Default to 8 Rx rings\n");
7326 rx_ring_num = 8;
7327 }
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007328 if (*dev_intr_type != INTA)
7329 napi = 0;
7330
Veena Parateccb8622007-07-23 02:23:54 -04007331 if ((*dev_intr_type != INTA) && (*dev_intr_type != MSI_X)) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04007332 DBG_PRINT(ERR_DBG, "s2io: Wrong intr_type requested. "
7333 "Defaulting to INTA\n");
7334 *dev_intr_type = INTA;
7335 }
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07007336
Ananda Raju9dc737a2006-04-21 19:05:41 -04007337 if ((*dev_intr_type == MSI_X) &&
7338 ((pdev->device != PCI_DEVICE_ID_HERC_WIN) &&
7339 (pdev->device != PCI_DEVICE_ID_HERC_UNI))) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007340 DBG_PRINT(ERR_DBG, "s2io: Xframe I does not support MSI_X. "
Ananda Raju9dc737a2006-04-21 19:05:41 -04007341 "Defaulting to INTA\n");
7342 *dev_intr_type = INTA;
7343 }
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05007344
Veena Parat6d517a22007-07-23 02:20:51 -04007345 if ((rx_ring_mode != 1) && (rx_ring_mode != 2)) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04007346 DBG_PRINT(ERR_DBG, "s2io: Requested ring mode not supported\n");
Veena Parat6d517a22007-07-23 02:20:51 -04007347 DBG_PRINT(ERR_DBG, "s2io: Defaulting to 1-buffer mode\n");
7348 rx_ring_mode = 1;
Ananda Raju9dc737a2006-04-21 19:05:41 -04007349 }
7350 return SUCCESS;
7351}
7352
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353/**
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05007354 * rts_ds_steer - Receive traffic steering based on IPv4 or IPv6 TOS
7355 * or Traffic class respectively.
7356 * @nic: device peivate variable
7357 * Description: The function configures the receive steering to
7358 * desired receive ring.
7359 * Return Value: SUCCESS on success and
7360 * '-1' on failure (endian settings incorrect).
7361 */
7362static int rts_ds_steer(struct s2io_nic *nic, u8 ds_codepoint, u8 ring)
7363{
7364 struct XENA_dev_config __iomem *bar0 = nic->bar0;
7365 register u64 val64 = 0;
7366
7367 if (ds_codepoint > 63)
7368 return FAILURE;
7369
7370 val64 = RTS_DS_MEM_DATA(ring);
7371 writeq(val64, &bar0->rts_ds_mem_data);
7372
7373 val64 = RTS_DS_MEM_CTRL_WE |
7374 RTS_DS_MEM_CTRL_STROBE_NEW_CMD |
7375 RTS_DS_MEM_CTRL_OFFSET(ds_codepoint);
7376
7377 writeq(val64, &bar0->rts_ds_mem_ctrl);
7378
7379 return wait_for_cmd_complete(&bar0->rts_ds_mem_ctrl,
7380 RTS_DS_MEM_CTRL_STROBE_CMD_BEING_EXECUTED,
7381 S2IO_BIT_RESET);
7382}
7383
7384/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007385 * s2io_init_nic - Initialization of the adapter .
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386 * @pdev : structure containing the PCI related information of the device.
7387 * @pre: List of PCI devices supported by the driver listed in s2io_tbl.
7388 * Description:
7389 * The function initializes an adapter identified by the pci_dec structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007390 * All OS related initialization including memory and device structure and
7391 * initlaization of the device private variable is done. Also the swapper
7392 * control register is initialized to enable read and write into the I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07007393 * registers of the device.
7394 * Return value:
7395 * returns 0 on success and negative on failure.
7396 */
7397
7398static int __devinit
7399s2io_init_nic(struct pci_dev *pdev, const struct pci_device_id *pre)
7400{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007401 struct s2io_nic *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007402 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403 int i, j, ret;
7404 int dma_flag = FALSE;
7405 u32 mac_up, mac_down;
7406 u64 val64 = 0, tmp64 = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007407 struct XENA_dev_config __iomem *bar0 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408 u16 subid;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007409 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007410 struct config_param *config;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007411 int mode;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04007412 u8 dev_intr_type = intr_type;
Joe Perches0795af52007-10-03 17:59:30 -07007413 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007414
Ananda Raju9dc737a2006-04-21 19:05:41 -04007415 if ((ret = s2io_verify_parm(pdev, &dev_intr_type)))
7416 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417
7418 if ((ret = pci_enable_device(pdev))) {
7419 DBG_PRINT(ERR_DBG,
7420 "s2io_init_nic: pci_enable_device failed\n");
7421 return ret;
7422 }
7423
Domen Puncer1e7f0bd2005-06-26 18:22:14 -04007424 if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007425 DBG_PRINT(INIT_DBG, "s2io_init_nic: Using 64bit DMA\n");
7426 dma_flag = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007427 if (pci_set_consistent_dma_mask
Domen Puncer1e7f0bd2005-06-26 18:22:14 -04007428 (pdev, DMA_64BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007429 DBG_PRINT(ERR_DBG,
7430 "Unable to obtain 64bit DMA for \
7431 consistent allocations\n");
7432 pci_disable_device(pdev);
7433 return -ENOMEM;
7434 }
Domen Puncer1e7f0bd2005-06-26 18:22:14 -04007435 } else if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436 DBG_PRINT(INIT_DBG, "s2io_init_nic: Using 32bit DMA\n");
7437 } else {
7438 pci_disable_device(pdev);
7439 return -ENOMEM;
7440 }
Veena Parateccb8622007-07-23 02:23:54 -04007441 if ((ret = pci_request_regions(pdev, s2io_driver_name))) {
7442 DBG_PRINT(ERR_DBG, "%s: Request Regions failed - %x \n", __FUNCTION__, ret);
7443 pci_disable_device(pdev);
7444 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445 }
7446
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007447 dev = alloc_etherdev(sizeof(struct s2io_nic));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448 if (dev == NULL) {
7449 DBG_PRINT(ERR_DBG, "Device allocation failed\n");
7450 pci_disable_device(pdev);
7451 pci_release_regions(pdev);
7452 return -ENODEV;
7453 }
7454
7455 pci_set_master(pdev);
7456 pci_set_drvdata(pdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457 SET_NETDEV_DEV(dev, &pdev->dev);
7458
7459 /* Private member variable initialized to s2io NIC structure */
7460 sp = dev->priv;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007461 memset(sp, 0, sizeof(struct s2io_nic));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007462 sp->dev = dev;
7463 sp->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464 sp->high_dma_flag = dma_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465 sp->device_enabled_once = FALSE;
Ananda Rajuda6971d2005-10-31 16:55:31 -05007466 if (rx_ring_mode == 1)
7467 sp->rxd_mode = RXD_MODE_1;
7468 if (rx_ring_mode == 2)
7469 sp->rxd_mode = RXD_MODE_3B;
Ananda Rajuda6971d2005-10-31 16:55:31 -05007470
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07007471 sp->config.intr_type = dev_intr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007473 if ((pdev->device == PCI_DEVICE_ID_HERC_WIN) ||
7474 (pdev->device == PCI_DEVICE_ID_HERC_UNI))
7475 sp->device_type = XFRAME_II_DEVICE;
7476 else
7477 sp->device_type = XFRAME_I_DEVICE;
7478
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007479 sp->lro = lro;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007480
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481 /* Initialize some PCI/PCI-X fields of the NIC. */
7482 s2io_init_pci(sp);
7483
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007484 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007485 * Setting the device configuration parameters.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007486 * Most of these parameters can be specified by the user during
7487 * module insertion as they are module loadable parameters. If
7488 * these parameters are not not specified during load time, they
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489 * are initialized with default values.
7490 */
7491 mac_control = &sp->mac_control;
7492 config = &sp->config;
7493
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07007494 config->napi = napi;
7495
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496 /* Tx side parameters. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497 config->tx_fifo_num = tx_fifo_num;
7498 for (i = 0; i < MAX_TX_FIFOS; i++) {
7499 config->tx_cfg[i].fifo_len = tx_fifo_len[i];
7500 config->tx_cfg[i].fifo_priority = i;
7501 }
7502
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007503 /* mapping the QoS priority to the configured fifos */
7504 for (i = 0; i < MAX_TX_FIFOS; i++)
7505 config->fifo_mapping[i] = fifo_map[config->tx_fifo_num][i];
7506
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507 config->tx_intr_type = TXD_INT_TYPE_UTILZ;
7508 for (i = 0; i < config->tx_fifo_num; i++) {
7509 config->tx_cfg[i].f_no_snoop =
7510 (NO_SNOOP_TXD | NO_SNOOP_TXD_BUFFER);
7511 if (config->tx_cfg[i].fifo_len < 65) {
7512 config->tx_intr_type = TXD_INT_TYPE_PER_LIST;
7513 break;
7514 }
7515 }
Ananda Rajufed5ecc2005-11-14 15:25:08 -05007516 /* + 2 because one Txd for skb->data and one Txd for UFO */
7517 config->max_txds = MAX_SKB_FRAGS + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007518
7519 /* Rx side parameters. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520 config->rx_ring_num = rx_ring_num;
7521 for (i = 0; i < MAX_RX_RINGS; i++) {
7522 config->rx_cfg[i].num_rxd = rx_ring_sz[i] *
Ananda Rajuda6971d2005-10-31 16:55:31 -05007523 (rxd_count[sp->rxd_mode] + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524 config->rx_cfg[i].ring_priority = i;
7525 }
7526
7527 for (i = 0; i < rx_ring_num; i++) {
7528 config->rx_cfg[i].ring_org = RING_ORG_BUFF1;
7529 config->rx_cfg[i].f_no_snoop =
7530 (NO_SNOOP_RXD | NO_SNOOP_RXD_BUFFER);
7531 }
7532
7533 /* Setting Mac Control parameters */
7534 mac_control->rmac_pause_time = rmac_pause_time;
7535 mac_control->mc_pause_threshold_q0q3 = mc_pause_threshold_q0q3;
7536 mac_control->mc_pause_threshold_q4q7 = mc_pause_threshold_q4q7;
7537
7538
7539 /* Initialize Ring buffer parameters. */
7540 for (i = 0; i < config->rx_ring_num; i++)
7541 atomic_set(&sp->rx_bufs_left[i], 0);
7542
7543 /* initialize the shared memory used by the NIC and the host */
7544 if (init_shared_mem(sp)) {
7545 DBG_PRINT(ERR_DBG, "%s: Memory allocation failed\n",
Ananda Rajub41477f2006-07-24 19:52:49 -04007546 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547 ret = -ENOMEM;
7548 goto mem_alloc_failed;
7549 }
7550
7551 sp->bar0 = ioremap(pci_resource_start(pdev, 0),
7552 pci_resource_len(pdev, 0));
7553 if (!sp->bar0) {
Sivakumar Subramani19a60522007-01-31 13:30:49 -05007554 DBG_PRINT(ERR_DBG, "%s: Neterion: cannot remap io mem1\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07007555 dev->name);
7556 ret = -ENOMEM;
7557 goto bar0_remap_failed;
7558 }
7559
7560 sp->bar1 = ioremap(pci_resource_start(pdev, 2),
7561 pci_resource_len(pdev, 2));
7562 if (!sp->bar1) {
Sivakumar Subramani19a60522007-01-31 13:30:49 -05007563 DBG_PRINT(ERR_DBG, "%s: Neterion: cannot remap io mem2\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564 dev->name);
7565 ret = -ENOMEM;
7566 goto bar1_remap_failed;
7567 }
7568
7569 dev->irq = pdev->irq;
7570 dev->base_addr = (unsigned long) sp->bar0;
7571
7572 /* Initializing the BAR1 address as the start of the FIFO pointer. */
7573 for (j = 0; j < MAX_TX_FIFOS; j++) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007574 mac_control->tx_FIFO_start[j] = (struct TxFIFO_element __iomem *)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575 (sp->bar1 + (j * 0x00020000));
7576 }
7577
7578 /* Driver entry points */
7579 dev->open = &s2io_open;
7580 dev->stop = &s2io_close;
7581 dev->hard_start_xmit = &s2io_xmit;
7582 dev->get_stats = &s2io_get_stats;
7583 dev->set_multicast_list = &s2io_set_multicast;
7584 dev->do_ioctl = &s2io_ioctl;
7585 dev->change_mtu = &s2io_change_mtu;
7586 SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
raghavendra.koushik@neterion.combe3a6b02005-08-03 12:35:55 -07007587 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
7588 dev->vlan_rx_register = s2io_vlan_rx_register;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007589
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590 /*
7591 * will use eth_mac_addr() for dev->set_mac_address
7592 * mac address will be set every time dev->open() is called
7593 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007594 netif_napi_add(dev, &sp->napi, s2io_poll, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007595
Brian Haley612eff02006-06-15 14:36:36 -04007596#ifdef CONFIG_NET_POLL_CONTROLLER
7597 dev->poll_controller = s2io_netpoll;
7598#endif
7599
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600 dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
7601 if (sp->high_dma_flag == TRUE)
7602 dev->features |= NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007603 dev->features |= NETIF_F_TSO;
Herbert Xuf83ef8c2006-06-30 13:37:03 -07007604 dev->features |= NETIF_F_TSO6;
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007605 if ((sp->device_type & XFRAME_II_DEVICE) && (ufo)) {
Ananda Rajufed5ecc2005-11-14 15:25:08 -05007606 dev->features |= NETIF_F_UFO;
7607 dev->features |= NETIF_F_HW_CSUM;
7608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609
7610 dev->tx_timeout = &s2io_tx_watchdog;
7611 dev->watchdog_timeo = WATCH_DOG_TIMEOUT;
David Howellsc4028952006-11-22 14:57:56 +00007612 INIT_WORK(&sp->rst_timer_task, s2io_restart_nic);
7613 INIT_WORK(&sp->set_link_task, s2io_set_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614
ravinandan.arakali@neterion.come960fc52005-08-12 10:15:59 -07007615 pci_save_state(sp->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007616
7617 /* Setting swapper control on the NIC, for proper reset operation */
7618 if (s2io_set_swapper(sp)) {
7619 DBG_PRINT(ERR_DBG, "%s:swapper settings are wrong\n",
7620 dev->name);
7621 ret = -EAGAIN;
7622 goto set_swap_failed;
7623 }
7624
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007625 /* Verify if the Herc works on the slot its placed into */
7626 if (sp->device_type & XFRAME_II_DEVICE) {
7627 mode = s2io_verify_pci_mode(sp);
7628 if (mode < 0) {
7629 DBG_PRINT(ERR_DBG, "%s: ", __FUNCTION__);
7630 DBG_PRINT(ERR_DBG, " Unsupported PCI bus mode\n");
7631 ret = -EBADSLT;
7632 goto set_swap_failed;
7633 }
7634 }
7635
7636 /* Not needed for Herc */
7637 if (sp->device_type & XFRAME_I_DEVICE) {
7638 /*
7639 * Fix for all "FFs" MAC address problems observed on
7640 * Alpha platforms
7641 */
7642 fix_mac_address(sp);
7643 s2io_reset(sp);
7644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007645
7646 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647 * MAC address initialization.
7648 * For now only one mac address will be read and used.
7649 */
7650 bar0 = sp->bar0;
7651 val64 = RMAC_ADDR_CMD_MEM_RD | RMAC_ADDR_CMD_MEM_STROBE_NEW_CMD |
7652 RMAC_ADDR_CMD_MEM_OFFSET(0 + MAC_MAC_ADDR_START_OFFSET);
7653 writeq(val64, &bar0->rmac_addr_cmd_mem);
Ananda Rajuc92ca042006-04-21 19:18:03 -04007654 wait_for_cmd_complete(&bar0->rmac_addr_cmd_mem,
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05007655 RMAC_ADDR_CMD_MEM_STROBE_CMD_EXECUTING, S2IO_BIT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656 tmp64 = readq(&bar0->rmac_addr_data0_mem);
7657 mac_down = (u32) tmp64;
7658 mac_up = (u32) (tmp64 >> 32);
7659
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660 sp->def_mac_addr[0].mac_addr[3] = (u8) (mac_up);
7661 sp->def_mac_addr[0].mac_addr[2] = (u8) (mac_up >> 8);
7662 sp->def_mac_addr[0].mac_addr[1] = (u8) (mac_up >> 16);
7663 sp->def_mac_addr[0].mac_addr[0] = (u8) (mac_up >> 24);
7664 sp->def_mac_addr[0].mac_addr[5] = (u8) (mac_down >> 16);
7665 sp->def_mac_addr[0].mac_addr[4] = (u8) (mac_down >> 24);
7666
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667 /* Set the factory defined MAC address initially */
7668 dev->addr_len = ETH_ALEN;
7669 memcpy(dev->dev_addr, sp->def_mac_addr, ETH_ALEN);
7670
Sivakumar Subramanic77dd432007-08-06 05:36:28 -04007671 /* Store the values of the MSIX table in the s2io_nic structure */
7672 store_xmsi_data(sp);
Ananda Rajub41477f2006-07-24 19:52:49 -04007673 /* reset Nic and bring it to known state */
7674 s2io_reset(sp);
7675
Linus Torvalds1da177e2005-04-16 15:20:36 -07007676 /*
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007677 * Initialize the tasklet status and link state flags
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007678 * and the card state parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -07007679 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680 sp->tasklet_status = 0;
Sivakumar Subramani92b84432007-09-06 06:51:14 -04007681 sp->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007682
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683 /* Initialize spinlocks */
7684 spin_lock_init(&sp->tx_lock);
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007685
7686 if (!napi)
7687 spin_lock_init(&sp->put_lock);
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07007688 spin_lock_init(&sp->rx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007690 /*
7691 * SXE-002: Configure link and activity LED to init state
7692 * on driver load.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693 */
7694 subid = sp->pdev->subsystem_device;
7695 if ((subid & 0xFF) >= 0x07) {
7696 val64 = readq(&bar0->gpio_control);
7697 val64 |= 0x0000800000000000ULL;
7698 writeq(val64, &bar0->gpio_control);
7699 val64 = 0x0411040400000000ULL;
7700 writeq(val64, (void __iomem *) bar0 + 0x2700);
7701 val64 = readq(&bar0->gpio_control);
7702 }
7703
7704 sp->rx_csum = 1; /* Rx chksum verify enabled by default */
7705
7706 if (register_netdev(dev)) {
7707 DBG_PRINT(ERR_DBG, "Device registration failed\n");
7708 ret = -ENODEV;
7709 goto register_failed;
7710 }
Ananda Raju9dc737a2006-04-21 19:05:41 -04007711 s2io_vpd_read(sp);
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08007712 DBG_PRINT(ERR_DBG, "Copyright(c) 2002-2007 Neterion Inc.\n");
Ananda Rajub41477f2006-07-24 19:52:49 -04007713 DBG_PRINT(ERR_DBG, "%s: Neterion %s (rev %d)\n",dev->name,
Auke Kok44c10132007-06-08 15:46:36 -07007714 sp->product_name, pdev->revision);
Ananda Rajub41477f2006-07-24 19:52:49 -04007715 DBG_PRINT(ERR_DBG, "%s: Driver version %s\n", dev->name,
7716 s2io_driver_version);
Joe Perches0795af52007-10-03 17:59:30 -07007717 DBG_PRINT(ERR_DBG, "%s: MAC ADDR: %s\n",
7718 dev->name, print_mac(mac, dev->dev_addr));
Sivakumar Subramani19a60522007-01-31 13:30:49 -05007719 DBG_PRINT(ERR_DBG, "SERIAL NUMBER: %s\n", sp->serial_num);
Ananda Raju9dc737a2006-04-21 19:05:41 -04007720 if (sp->device_type & XFRAME_II_DEVICE) {
raghavendra.koushik@neterion.com0b1f7eb2005-08-03 12:39:56 -07007721 mode = s2io_print_pci_mode(sp);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007722 if (mode < 0) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04007723 DBG_PRINT(ERR_DBG, " Unsupported PCI bus mode\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007724 ret = -EBADSLT;
Ananda Raju9dc737a2006-04-21 19:05:41 -04007725 unregister_netdev(dev);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007726 goto set_swap_failed;
7727 }
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007728 }
Ananda Raju9dc737a2006-04-21 19:05:41 -04007729 switch(sp->rxd_mode) {
7730 case RXD_MODE_1:
7731 DBG_PRINT(ERR_DBG, "%s: 1-Buffer receive mode enabled\n",
7732 dev->name);
7733 break;
7734 case RXD_MODE_3B:
7735 DBG_PRINT(ERR_DBG, "%s: 2-Buffer receive mode enabled\n",
7736 dev->name);
7737 break;
Ananda Raju9dc737a2006-04-21 19:05:41 -04007738 }
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007739
7740 if (napi)
7741 DBG_PRINT(ERR_DBG, "%s: NAPI enabled\n", dev->name);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07007742 switch(sp->config.intr_type) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04007743 case INTA:
7744 DBG_PRINT(ERR_DBG, "%s: Interrupt type INTA\n", dev->name);
7745 break;
Ananda Raju9dc737a2006-04-21 19:05:41 -04007746 case MSI_X:
7747 DBG_PRINT(ERR_DBG, "%s: Interrupt type MSI-X\n", dev->name);
7748 break;
7749 }
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007750 if (sp->lro)
7751 DBG_PRINT(ERR_DBG, "%s: Large receive offload enabled\n",
Ananda Raju9dc737a2006-04-21 19:05:41 -04007752 dev->name);
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007753 if (ufo)
7754 DBG_PRINT(ERR_DBG, "%s: UDP Fragmentation Offload(UFO)"
7755 " enabled\n", dev->name);
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07007756 /* Initialize device name */
Ananda Raju9dc737a2006-04-21 19:05:41 -04007757 sprintf(sp->name, "%s Neterion %s", dev->name, sp->product_name);
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07007758
raghavendra.koushik@neterion.comb6e3f982005-08-03 12:38:01 -07007759 /* Initialize bimodal Interrupts */
7760 sp->config.bimodal = bimodal;
7761 if (!(sp->device_type & XFRAME_II_DEVICE) && bimodal) {
7762 sp->config.bimodal = 0;
7763 DBG_PRINT(ERR_DBG,"%s:Bimodal intr not supported by Xframe I\n",
7764 dev->name);
7765 }
7766
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007767 /*
7768 * Make Link state as off at this point, when the Link change
7769 * interrupt comes the state will be automatically changed to
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770 * the right state.
7771 */
7772 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007773
7774 return 0;
7775
7776 register_failed:
7777 set_swap_failed:
7778 iounmap(sp->bar1);
7779 bar1_remap_failed:
7780 iounmap(sp->bar0);
7781 bar0_remap_failed:
7782 mem_alloc_failed:
7783 free_shared_mem(sp);
7784 pci_disable_device(pdev);
Veena Parateccb8622007-07-23 02:23:54 -04007785 pci_release_regions(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786 pci_set_drvdata(pdev, NULL);
7787 free_netdev(dev);
7788
7789 return ret;
7790}
7791
7792/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007793 * s2io_rem_nic - Free the PCI device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794 * @pdev: structure containing the PCI related information of the device.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007795 * Description: This function is called by the Pci subsystem to release a
Linus Torvalds1da177e2005-04-16 15:20:36 -07007796 * PCI device and free up all resource held up by the device. This could
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007797 * be in response to a Hot plug event or when the driver is to be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -07007798 * from memory.
7799 */
7800
7801static void __devexit s2io_rem_nic(struct pci_dev *pdev)
7802{
7803 struct net_device *dev =
7804 (struct net_device *) pci_get_drvdata(pdev);
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007805 struct s2io_nic *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806
7807 if (dev == NULL) {
7808 DBG_PRINT(ERR_DBG, "Driver Data is NULL!!\n");
7809 return;
7810 }
7811
Francois Romieu22747d62007-02-15 23:37:50 +01007812 flush_scheduled_work();
7813
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814 sp = dev->priv;
7815 unregister_netdev(dev);
7816
7817 free_shared_mem(sp);
7818 iounmap(sp->bar0);
7819 iounmap(sp->bar1);
Veena Parateccb8622007-07-23 02:23:54 -04007820 pci_release_regions(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821 pci_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822 free_netdev(dev);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05007823 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824}
7825
7826/**
7827 * s2io_starter - Entry point for the driver
7828 * Description: This function is the entry point for the driver. It verifies
7829 * the module loadable parameters and initializes PCI configuration space.
7830 */
7831
7832int __init s2io_starter(void)
7833{
Jeff Garzik29917622006-08-19 17:48:59 -04007834 return pci_register_driver(&s2io_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007835}
7836
7837/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007838 * s2io_closer - Cleanup routine for the driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07007839 * Description: This function is the cleanup routine for the driver. It unregist * ers the driver.
7840 */
7841
Sivakumar Subramani372cc592007-01-31 13:32:57 -05007842static __exit void s2io_closer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007843{
7844 pci_unregister_driver(&s2io_driver);
7845 DBG_PRINT(INIT_DBG, "cleanup done\n");
7846}
7847
7848module_init(s2io_starter);
7849module_exit(s2io_closer);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007850
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007851static int check_L2_lro_capable(u8 *buffer, struct iphdr **ip,
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007852 struct tcphdr **tcp, struct RxD_t *rxdp)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007853{
7854 int ip_off;
7855 u8 l2_type = (u8)((rxdp->Control_1 >> 37) & 0x7), ip_len;
7856
7857 if (!(rxdp->Control_1 & RXD_FRAME_PROTO_TCP)) {
7858 DBG_PRINT(INIT_DBG,"%s: Non-TCP frames not supported for LRO\n",
7859 __FUNCTION__);
7860 return -1;
7861 }
7862
7863 /* TODO:
7864 * By default the VLAN field in the MAC is stripped by the card, if this
7865 * feature is turned off in rx_pa_cfg register, then the ip_off field
7866 * has to be shifted by a further 2 bytes
7867 */
7868 switch (l2_type) {
7869 case 0: /* DIX type */
7870 case 4: /* DIX type with VLAN */
7871 ip_off = HEADER_ETHERNET_II_802_3_SIZE;
7872 break;
7873 /* LLC, SNAP etc are considered non-mergeable */
7874 default:
7875 return -1;
7876 }
7877
7878 *ip = (struct iphdr *)((u8 *)buffer + ip_off);
7879 ip_len = (u8)((*ip)->ihl);
7880 ip_len <<= 2;
7881 *tcp = (struct tcphdr *)((unsigned long)*ip + ip_len);
7882
7883 return 0;
7884}
7885
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007886static int check_for_socket_match(struct lro *lro, struct iphdr *ip,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007887 struct tcphdr *tcp)
7888{
7889 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
7890 if ((lro->iph->saddr != ip->saddr) || (lro->iph->daddr != ip->daddr) ||
7891 (lro->tcph->source != tcp->source) || (lro->tcph->dest != tcp->dest))
7892 return -1;
7893 return 0;
7894}
7895
7896static inline int get_l4_pyld_length(struct iphdr *ip, struct tcphdr *tcp)
7897{
7898 return(ntohs(ip->tot_len) - (ip->ihl << 2) - (tcp->doff << 2));
7899}
7900
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007901static void initiate_new_session(struct lro *lro, u8 *l2h,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007902 struct iphdr *ip, struct tcphdr *tcp, u32 tcp_pyld_len)
7903{
7904 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
7905 lro->l2h = l2h;
7906 lro->iph = ip;
7907 lro->tcph = tcp;
7908 lro->tcp_next_seq = tcp_pyld_len + ntohl(tcp->seq);
7909 lro->tcp_ack = ntohl(tcp->ack_seq);
7910 lro->sg_num = 1;
7911 lro->total_len = ntohs(ip->tot_len);
7912 lro->frags_len = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007913 /*
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007914 * check if we saw TCP timestamp. Other consistency checks have
7915 * already been done.
7916 */
7917 if (tcp->doff == 8) {
7918 u32 *ptr;
7919 ptr = (u32 *)(tcp+1);
7920 lro->saw_ts = 1;
7921 lro->cur_tsval = *(ptr+1);
7922 lro->cur_tsecr = *(ptr+2);
7923 }
7924 lro->in_use = 1;
7925}
7926
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007927static void update_L3L4_header(struct s2io_nic *sp, struct lro *lro)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007928{
7929 struct iphdr *ip = lro->iph;
7930 struct tcphdr *tcp = lro->tcph;
Al Virobd4f3ae2007-02-09 16:40:15 +00007931 __sum16 nchk;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007932 struct stat_block *statinfo = sp->mac_control.stats_info;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007933 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
7934
7935 /* Update L3 header */
7936 ip->tot_len = htons(lro->total_len);
7937 ip->check = 0;
7938 nchk = ip_fast_csum((u8 *)lro->iph, ip->ihl);
7939 ip->check = nchk;
7940
7941 /* Update L4 header */
7942 tcp->ack_seq = lro->tcp_ack;
7943 tcp->window = lro->window;
7944
7945 /* Update tsecr field if this session has timestamps enabled */
7946 if (lro->saw_ts) {
7947 u32 *ptr = (u32 *)(tcp + 1);
7948 *(ptr+2) = lro->cur_tsecr;
7949 }
7950
7951 /* Update counters required for calculation of
7952 * average no. of packets aggregated.
7953 */
7954 statinfo->sw_stat.sum_avg_pkts_aggregated += lro->sg_num;
7955 statinfo->sw_stat.num_aggregations++;
7956}
7957
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007958static void aggregate_new_rx(struct lro *lro, struct iphdr *ip,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007959 struct tcphdr *tcp, u32 l4_pyld)
7960{
7961 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
7962 lro->total_len += l4_pyld;
7963 lro->frags_len += l4_pyld;
7964 lro->tcp_next_seq += l4_pyld;
7965 lro->sg_num++;
7966
7967 /* Update ack seq no. and window ad(from this pkt) in LRO object */
7968 lro->tcp_ack = tcp->ack_seq;
7969 lro->window = tcp->window;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007970
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007971 if (lro->saw_ts) {
7972 u32 *ptr;
7973 /* Update tsecr and tsval from this packet */
7974 ptr = (u32 *) (tcp + 1);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007975 lro->cur_tsval = *(ptr + 1);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007976 lro->cur_tsecr = *(ptr + 2);
7977 }
7978}
7979
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007980static int verify_l3_l4_lro_capable(struct lro *l_lro, struct iphdr *ip,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007981 struct tcphdr *tcp, u32 tcp_pyld_len)
7982{
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007983 u8 *ptr;
7984
Andrew Morton79dc1902006-02-03 01:45:13 -08007985 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
7986
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007987 if (!tcp_pyld_len) {
7988 /* Runt frame or a pure ack */
7989 return -1;
7990 }
7991
7992 if (ip->ihl != 5) /* IP has options */
7993 return -1;
7994
Ananda Raju75c30b12006-07-24 19:55:09 -04007995 /* If we see CE codepoint in IP header, packet is not mergeable */
7996 if (INET_ECN_is_ce(ipv4_get_dsfield(ip)))
7997 return -1;
7998
7999 /* If we see ECE or CWR flags in TCP header, packet is not mergeable */
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008000 if (tcp->urg || tcp->psh || tcp->rst || tcp->syn || tcp->fin ||
Ananda Raju75c30b12006-07-24 19:55:09 -04008001 tcp->ece || tcp->cwr || !tcp->ack) {
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008002 /*
8003 * Currently recognize only the ack control word and
8004 * any other control field being set would result in
8005 * flushing the LRO session
8006 */
8007 return -1;
8008 }
8009
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008010 /*
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008011 * Allow only one TCP timestamp option. Don't aggregate if
8012 * any other options are detected.
8013 */
8014 if (tcp->doff != 5 && tcp->doff != 8)
8015 return -1;
8016
8017 if (tcp->doff == 8) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008018 ptr = (u8 *)(tcp + 1);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008019 while (*ptr == TCPOPT_NOP)
8020 ptr++;
8021 if (*ptr != TCPOPT_TIMESTAMP || *(ptr+1) != TCPOLEN_TIMESTAMP)
8022 return -1;
8023
8024 /* Ensure timestamp value increases monotonically */
8025 if (l_lro)
8026 if (l_lro->cur_tsval > *((u32 *)(ptr+2)))
8027 return -1;
8028
8029 /* timestamp echo reply should be non-zero */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008030 if (*((u32 *)(ptr+6)) == 0)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008031 return -1;
8032 }
8033
8034 return 0;
8035}
8036
8037static int
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008038s2io_club_tcp_session(u8 *buffer, u8 **tcp, u32 *tcp_len, struct lro **lro,
8039 struct RxD_t *rxdp, struct s2io_nic *sp)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008040{
8041 struct iphdr *ip;
8042 struct tcphdr *tcph;
8043 int ret = 0, i;
8044
8045 if (!(ret = check_L2_lro_capable(buffer, &ip, (struct tcphdr **)tcp,
8046 rxdp))) {
8047 DBG_PRINT(INFO_DBG,"IP Saddr: %x Daddr: %x\n",
8048 ip->saddr, ip->daddr);
8049 } else {
8050 return ret;
8051 }
8052
8053 tcph = (struct tcphdr *)*tcp;
8054 *tcp_len = get_l4_pyld_length(ip, tcph);
8055 for (i=0; i<MAX_LRO_SESSIONS; i++) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008056 struct lro *l_lro = &sp->lro0_n[i];
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008057 if (l_lro->in_use) {
8058 if (check_for_socket_match(l_lro, ip, tcph))
8059 continue;
8060 /* Sock pair matched */
8061 *lro = l_lro;
8062
8063 if ((*lro)->tcp_next_seq != ntohl(tcph->seq)) {
8064 DBG_PRINT(INFO_DBG, "%s:Out of order. expected "
8065 "0x%x, actual 0x%x\n", __FUNCTION__,
8066 (*lro)->tcp_next_seq,
8067 ntohl(tcph->seq));
8068
8069 sp->mac_control.stats_info->
8070 sw_stat.outof_sequence_pkts++;
8071 ret = 2;
8072 break;
8073 }
8074
8075 if (!verify_l3_l4_lro_capable(l_lro, ip, tcph,*tcp_len))
8076 ret = 1; /* Aggregate */
8077 else
8078 ret = 2; /* Flush both */
8079 break;
8080 }
8081 }
8082
8083 if (ret == 0) {
8084 /* Before searching for available LRO objects,
8085 * check if the pkt is L3/L4 aggregatable. If not
8086 * don't create new LRO session. Just send this
8087 * packet up.
8088 */
8089 if (verify_l3_l4_lro_capable(NULL, ip, tcph, *tcp_len)) {
8090 return 5;
8091 }
8092
8093 for (i=0; i<MAX_LRO_SESSIONS; i++) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008094 struct lro *l_lro = &sp->lro0_n[i];
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008095 if (!(l_lro->in_use)) {
8096 *lro = l_lro;
8097 ret = 3; /* Begin anew */
8098 break;
8099 }
8100 }
8101 }
8102
8103 if (ret == 0) { /* sessions exceeded */
8104 DBG_PRINT(INFO_DBG,"%s:All LRO sessions already in use\n",
8105 __FUNCTION__);
8106 *lro = NULL;
8107 return ret;
8108 }
8109
8110 switch (ret) {
8111 case 3:
8112 initiate_new_session(*lro, buffer, ip, tcph, *tcp_len);
8113 break;
8114 case 2:
8115 update_L3L4_header(sp, *lro);
8116 break;
8117 case 1:
8118 aggregate_new_rx(*lro, ip, tcph, *tcp_len);
8119 if ((*lro)->sg_num == sp->lro_max_aggr_per_sess) {
8120 update_L3L4_header(sp, *lro);
8121 ret = 4; /* Flush the LRO */
8122 }
8123 break;
8124 default:
8125 DBG_PRINT(ERR_DBG,"%s:Dont know, can't say!!\n",
8126 __FUNCTION__);
8127 break;
8128 }
8129
8130 return ret;
8131}
8132
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008133static void clear_lro_session(struct lro *lro)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008134{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008135 static u16 lro_struct_size = sizeof(struct lro);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008136
8137 memset(lro, 0, lro_struct_size);
8138}
8139
8140static void queue_rx_frame(struct sk_buff *skb)
8141{
8142 struct net_device *dev = skb->dev;
8143
8144 skb->protocol = eth_type_trans(skb, dev);
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05008145 if (napi)
8146 netif_receive_skb(skb);
8147 else
8148 netif_rx(skb);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008149}
8150
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008151static void lro_append_pkt(struct s2io_nic *sp, struct lro *lro,
8152 struct sk_buff *skb,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008153 u32 tcp_len)
8154{
Ananda Raju75c30b12006-07-24 19:55:09 -04008155 struct sk_buff *first = lro->parent;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008156
8157 first->len += tcp_len;
8158 first->data_len = lro->frags_len;
8159 skb_pull(skb, (skb->len - tcp_len));
Ananda Raju75c30b12006-07-24 19:55:09 -04008160 if (skb_shinfo(first)->frag_list)
8161 lro->last_frag->next = skb;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008162 else
8163 skb_shinfo(first)->frag_list = skb;
Sivakumar Subramani372cc592007-01-31 13:32:57 -05008164 first->truesize += skb->truesize;
Ananda Raju75c30b12006-07-24 19:55:09 -04008165 lro->last_frag = skb;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008166 sp->mac_control.stats_info->sw_stat.clubbed_frms_cnt++;
8167 return;
8168}
Linas Vepstasd796fdb2007-05-14 18:37:30 -05008169
8170/**
8171 * s2io_io_error_detected - called when PCI error is detected
8172 * @pdev: Pointer to PCI device
Rolf Eike Beer8453d432007-07-10 11:58:02 +02008173 * @state: The current pci connection state
Linas Vepstasd796fdb2007-05-14 18:37:30 -05008174 *
8175 * This function is called after a PCI bus error affecting
8176 * this device has been detected.
8177 */
8178static pci_ers_result_t s2io_io_error_detected(struct pci_dev *pdev,
8179 pci_channel_state_t state)
8180{
8181 struct net_device *netdev = pci_get_drvdata(pdev);
8182 struct s2io_nic *sp = netdev->priv;
8183
8184 netif_device_detach(netdev);
8185
8186 if (netif_running(netdev)) {
8187 /* Bring down the card, while avoiding PCI I/O */
8188 do_s2io_card_down(sp, 0);
Linas Vepstasd796fdb2007-05-14 18:37:30 -05008189 }
8190 pci_disable_device(pdev);
8191
8192 return PCI_ERS_RESULT_NEED_RESET;
8193}
8194
8195/**
8196 * s2io_io_slot_reset - called after the pci bus has been reset.
8197 * @pdev: Pointer to PCI device
8198 *
8199 * Restart the card from scratch, as if from a cold-boot.
8200 * At this point, the card has exprienced a hard reset,
8201 * followed by fixups by BIOS, and has its config space
8202 * set up identically to what it was at cold boot.
8203 */
8204static pci_ers_result_t s2io_io_slot_reset(struct pci_dev *pdev)
8205{
8206 struct net_device *netdev = pci_get_drvdata(pdev);
8207 struct s2io_nic *sp = netdev->priv;
8208
8209 if (pci_enable_device(pdev)) {
8210 printk(KERN_ERR "s2io: "
8211 "Cannot re-enable PCI device after reset.\n");
8212 return PCI_ERS_RESULT_DISCONNECT;
8213 }
8214
8215 pci_set_master(pdev);
8216 s2io_reset(sp);
8217
8218 return PCI_ERS_RESULT_RECOVERED;
8219}
8220
8221/**
8222 * s2io_io_resume - called when traffic can start flowing again.
8223 * @pdev: Pointer to PCI device
8224 *
8225 * This callback is called when the error recovery driver tells
8226 * us that its OK to resume normal operation.
8227 */
8228static void s2io_io_resume(struct pci_dev *pdev)
8229{
8230 struct net_device *netdev = pci_get_drvdata(pdev);
8231 struct s2io_nic *sp = netdev->priv;
8232
8233 if (netif_running(netdev)) {
8234 if (s2io_card_up(sp)) {
8235 printk(KERN_ERR "s2io: "
8236 "Can't bring device back up after reset.\n");
8237 return;
8238 }
8239
8240 if (s2io_set_mac_addr(netdev, netdev->dev_addr) == FAILURE) {
8241 s2io_card_down(sp);
8242 printk(KERN_ERR "s2io: "
8243 "Can't resetore mac addr after reset.\n");
8244 return;
8245 }
8246 }
8247
8248 netif_device_attach(netdev);
8249 netif_wake_queue(netdev);
8250}