blob: ac6b9b93c0256d583d7fc9d9303a3cdf11de5480 [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;
5043 info->testinfo_len = S2IO_TEST_LEN;
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -05005044
5045 if (sp->device_type == XFRAME_I_DEVICE)
5046 info->n_stats = XFRAME_I_STAT_LEN;
5047 else
5048 info->n_stats = XFRAME_II_STAT_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049}
5050
5051/**
5052 * s2io_ethtool_gregs - dumps the entire space of Xfame into the buffer.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005053 * @sp: private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005055 * @regs : pointer to the structure with parameters given by ethtool for
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 * dumping the registers.
5057 * @reg_space: The input argumnet into which all the registers are dumped.
5058 * Description:
5059 * Dumps the entire register space of xFrame NIC into the user given
5060 * buffer area.
5061 * Return value :
5062 * void .
5063*/
5064
5065static void s2io_ethtool_gregs(struct net_device *dev,
5066 struct ethtool_regs *regs, void *space)
5067{
5068 int i;
5069 u64 reg;
5070 u8 *reg_space = (u8 *) space;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005071 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072
5073 regs->len = XENA_REG_SPACE;
5074 regs->version = sp->pdev->subsystem_device;
5075
5076 for (i = 0; i < regs->len; i += 8) {
5077 reg = readq(sp->bar0 + i);
5078 memcpy((reg_space + i), &reg, 8);
5079 }
5080}
5081
5082/**
5083 * s2io_phy_id - timer function that alternates adapter LED.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005084 * @data : address of the private member of the device structure, which
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 * is a pointer to the s2io_nic structure, provided as an u32.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005086 * Description: This is actually the timer function that alternates the
5087 * adapter LED bit of the adapter control bit to set/reset every time on
5088 * invocation. The timer is set for 1/2 a second, hence tha NIC blinks
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 * once every second.
5090*/
5091static void s2io_phy_id(unsigned long data)
5092{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005093 struct s2io_nic *sp = (struct s2io_nic *) data;
5094 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 u64 val64 = 0;
5096 u16 subid;
5097
5098 subid = sp->pdev->subsystem_device;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005099 if ((sp->device_type == XFRAME_II_DEVICE) ||
5100 ((subid & 0xFF) >= 0x07)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 val64 = readq(&bar0->gpio_control);
5102 val64 ^= GPIO_CTRL_GPIO_0;
5103 writeq(val64, &bar0->gpio_control);
5104 } else {
5105 val64 = readq(&bar0->adapter_control);
5106 val64 ^= ADAPTER_LED_ON;
5107 writeq(val64, &bar0->adapter_control);
5108 }
5109
5110 mod_timer(&sp->id_timer, jiffies + HZ / 2);
5111}
5112
5113/**
5114 * s2io_ethtool_idnic - To physically identify the nic on the system.
5115 * @sp : private member of the device structure, which is a pointer to the
5116 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005117 * @id : pointer to the structure with identification parameters given by
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 * ethtool.
5119 * Description: Used to physically identify the NIC on the system.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005120 * The Link LED will blink for a time specified by the user for
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 * identification.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005122 * NOTE: The Link has to be Up to be able to blink the LED. Hence
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 * identification is possible only if it's link is up.
5124 * Return value:
5125 * int , returns 0 on success
5126 */
5127
5128static int s2io_ethtool_idnic(struct net_device *dev, u32 data)
5129{
5130 u64 val64 = 0, last_gpio_ctrl_val;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005131 struct s2io_nic *sp = dev->priv;
5132 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 u16 subid;
5134
5135 subid = sp->pdev->subsystem_device;
5136 last_gpio_ctrl_val = readq(&bar0->gpio_control);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005137 if ((sp->device_type == XFRAME_I_DEVICE) &&
5138 ((subid & 0xFF) < 0x07)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 val64 = readq(&bar0->adapter_control);
5140 if (!(val64 & ADAPTER_CNTL_EN)) {
5141 printk(KERN_ERR
5142 "Adapter Link down, cannot blink LED\n");
5143 return -EFAULT;
5144 }
5145 }
5146 if (sp->id_timer.function == NULL) {
5147 init_timer(&sp->id_timer);
5148 sp->id_timer.function = s2io_phy_id;
5149 sp->id_timer.data = (unsigned long) sp;
5150 }
5151 mod_timer(&sp->id_timer, jiffies);
5152 if (data)
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005153 msleep_interruptible(data * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 else
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005155 msleep_interruptible(MAX_FLICKER_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 del_timer_sync(&sp->id_timer);
5157
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005158 if (CARDS_WITH_FAULTY_LINK_INDICATORS(sp->device_type, subid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 writeq(last_gpio_ctrl_val, &bar0->gpio_control);
5160 last_gpio_ctrl_val = readq(&bar0->gpio_control);
5161 }
5162
5163 return 0;
5164}
5165
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005166static void s2io_ethtool_gringparam(struct net_device *dev,
5167 struct ethtool_ringparam *ering)
5168{
5169 struct s2io_nic *sp = dev->priv;
5170 int i,tx_desc_count=0,rx_desc_count=0;
5171
5172 if (sp->rxd_mode == RXD_MODE_1)
5173 ering->rx_max_pending = MAX_RX_DESC_1;
5174 else if (sp->rxd_mode == RXD_MODE_3B)
5175 ering->rx_max_pending = MAX_RX_DESC_2;
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005176
5177 ering->tx_max_pending = MAX_TX_DESC;
Veena Paratb6627672007-07-23 02:39:43 -04005178 for (i = 0 ; i < sp->config.tx_fifo_num ; i++)
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005179 tx_desc_count += sp->config.tx_cfg[i].fifo_len;
Veena Paratb6627672007-07-23 02:39:43 -04005180
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005181 DBG_PRINT(INFO_DBG,"\nmax txds : %d\n",sp->config.max_txds);
5182 ering->tx_pending = tx_desc_count;
5183 rx_desc_count = 0;
Veena Paratb6627672007-07-23 02:39:43 -04005184 for (i = 0 ; i < sp->config.rx_ring_num ; i++)
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005185 rx_desc_count += sp->config.rx_cfg[i].num_rxd;
Veena Paratb6627672007-07-23 02:39:43 -04005186
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04005187 ering->rx_pending = rx_desc_count;
5188
5189 ering->rx_mini_max_pending = 0;
5190 ering->rx_mini_pending = 0;
5191 if(sp->rxd_mode == RXD_MODE_1)
5192 ering->rx_jumbo_max_pending = MAX_RX_DESC_1;
5193 else if (sp->rxd_mode == RXD_MODE_3B)
5194 ering->rx_jumbo_max_pending = MAX_RX_DESC_2;
5195 ering->rx_jumbo_pending = rx_desc_count;
5196}
5197
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198/**
5199 * s2io_ethtool_getpause_data -Pause frame frame generation and reception.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005200 * @sp : private member of the device structure, which is a pointer to the
5201 * s2io_nic structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202 * @ep : pointer to the structure with pause parameters given by ethtool.
5203 * Description:
5204 * Returns the Pause frame generation and reception capability of the NIC.
5205 * Return value:
5206 * void
5207 */
5208static void s2io_ethtool_getpause_data(struct net_device *dev,
5209 struct ethtool_pauseparam *ep)
5210{
5211 u64 val64;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005212 struct s2io_nic *sp = dev->priv;
5213 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214
5215 val64 = readq(&bar0->rmac_pause_cfg);
5216 if (val64 & RMAC_PAUSE_GEN_ENABLE)
5217 ep->tx_pause = TRUE;
5218 if (val64 & RMAC_PAUSE_RX_ENABLE)
5219 ep->rx_pause = TRUE;
5220 ep->autoneg = FALSE;
5221}
5222
5223/**
5224 * s2io_ethtool_setpause_data - set/reset pause frame generation.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005225 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 * s2io_nic structure.
5227 * @ep : pointer to the structure with pause parameters given by ethtool.
5228 * Description:
5229 * It can be used to set or reset Pause frame generation or reception
5230 * support of the NIC.
5231 * Return value:
5232 * int, returns 0 on Success
5233 */
5234
5235static int s2io_ethtool_setpause_data(struct net_device *dev,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005236 struct ethtool_pauseparam *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237{
5238 u64 val64;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005239 struct s2io_nic *sp = dev->priv;
5240 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241
5242 val64 = readq(&bar0->rmac_pause_cfg);
5243 if (ep->tx_pause)
5244 val64 |= RMAC_PAUSE_GEN_ENABLE;
5245 else
5246 val64 &= ~RMAC_PAUSE_GEN_ENABLE;
5247 if (ep->rx_pause)
5248 val64 |= RMAC_PAUSE_RX_ENABLE;
5249 else
5250 val64 &= ~RMAC_PAUSE_RX_ENABLE;
5251 writeq(val64, &bar0->rmac_pause_cfg);
5252 return 0;
5253}
5254
5255/**
5256 * read_eeprom - reads 4 bytes of data from user given offset.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005257 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258 * s2io_nic structure.
5259 * @off : offset at which the data must be written
5260 * @data : Its an output parameter where the data read at the given
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005261 * offset is stored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005263 * Will read 4 bytes of data from the user given offset and return the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 * read data.
5265 * NOTE: Will allow to read only part of the EEPROM visible through the
5266 * I2C bus.
5267 * Return value:
5268 * -1 on failure and 0 on success.
5269 */
5270
5271#define S2IO_DEV_ID 5
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005272static int read_eeprom(struct s2io_nic * sp, int off, u64 * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273{
5274 int ret = -1;
5275 u32 exit_cnt = 0;
5276 u64 val64;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005277 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005279 if (sp->device_type == XFRAME_I_DEVICE) {
5280 val64 = I2C_CONTROL_DEV_ID(S2IO_DEV_ID) | I2C_CONTROL_ADDR(off) |
5281 I2C_CONTROL_BYTE_CNT(0x3) | I2C_CONTROL_READ |
5282 I2C_CONTROL_CNTL_START;
5283 SPECIAL_REG_WRITE(val64, &bar0->i2c_control, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005285 while (exit_cnt < 5) {
5286 val64 = readq(&bar0->i2c_control);
5287 if (I2C_CONTROL_CNTL_END(val64)) {
5288 *data = I2C_CONTROL_GET_DATA(val64);
5289 ret = 0;
5290 break;
5291 }
5292 msleep(50);
5293 exit_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 }
5296
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005297 if (sp->device_type == XFRAME_II_DEVICE) {
5298 val64 = SPI_CONTROL_KEY(0x9) | SPI_CONTROL_SEL1 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005299 SPI_CONTROL_BYTECNT(0x3) |
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005300 SPI_CONTROL_CMD(0x3) | SPI_CONTROL_ADDR(off);
5301 SPECIAL_REG_WRITE(val64, &bar0->spi_control, LF);
5302 val64 |= SPI_CONTROL_REQ;
5303 SPECIAL_REG_WRITE(val64, &bar0->spi_control, LF);
5304 while (exit_cnt < 5) {
5305 val64 = readq(&bar0->spi_control);
5306 if (val64 & SPI_CONTROL_NACK) {
5307 ret = 1;
5308 break;
5309 } else if (val64 & SPI_CONTROL_DONE) {
5310 *data = readq(&bar0->spi_data);
5311 *data &= 0xffffff;
5312 ret = 0;
5313 break;
5314 }
5315 msleep(50);
5316 exit_cnt++;
5317 }
5318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319 return ret;
5320}
5321
5322/**
5323 * write_eeprom - actually writes the relevant part of the data value.
5324 * @sp : private member of the device structure, which is a pointer to the
5325 * s2io_nic structure.
5326 * @off : offset at which the data must be written
5327 * @data : The data that is to be written
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005328 * @cnt : Number of bytes of the data that are actually to be written into
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 * the Eeprom. (max of 3)
5330 * Description:
5331 * Actually writes the relevant part of the data value into the Eeprom
5332 * through the I2C bus.
5333 * Return value:
5334 * 0 on success, -1 on failure.
5335 */
5336
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005337static int write_eeprom(struct s2io_nic * sp, int off, u64 data, int cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338{
5339 int exit_cnt = 0, ret = -1;
5340 u64 val64;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005341 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005343 if (sp->device_type == XFRAME_I_DEVICE) {
5344 val64 = I2C_CONTROL_DEV_ID(S2IO_DEV_ID) | I2C_CONTROL_ADDR(off) |
5345 I2C_CONTROL_BYTE_CNT(cnt) | I2C_CONTROL_SET_DATA((u32)data) |
5346 I2C_CONTROL_CNTL_START;
5347 SPECIAL_REG_WRITE(val64, &bar0->i2c_control, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005349 while (exit_cnt < 5) {
5350 val64 = readq(&bar0->i2c_control);
5351 if (I2C_CONTROL_CNTL_END(val64)) {
5352 if (!(val64 & I2C_CONTROL_NACK))
5353 ret = 0;
5354 break;
5355 }
5356 msleep(50);
5357 exit_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 }
5360
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005361 if (sp->device_type == XFRAME_II_DEVICE) {
5362 int write_cnt = (cnt == 8) ? 0 : cnt;
5363 writeq(SPI_DATA_WRITE(data,(cnt<<3)), &bar0->spi_data);
5364
5365 val64 = SPI_CONTROL_KEY(0x9) | SPI_CONTROL_SEL1 |
Jeff Garzik6aa20a22006-09-13 13:24:59 -04005366 SPI_CONTROL_BYTECNT(write_cnt) |
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005367 SPI_CONTROL_CMD(0x2) | SPI_CONTROL_ADDR(off);
5368 SPECIAL_REG_WRITE(val64, &bar0->spi_control, LF);
5369 val64 |= SPI_CONTROL_REQ;
5370 SPECIAL_REG_WRITE(val64, &bar0->spi_control, LF);
5371 while (exit_cnt < 5) {
5372 val64 = readq(&bar0->spi_control);
5373 if (val64 & SPI_CONTROL_NACK) {
5374 ret = 1;
5375 break;
5376 } else if (val64 & SPI_CONTROL_DONE) {
5377 ret = 0;
5378 break;
5379 }
5380 msleep(50);
5381 exit_cnt++;
5382 }
5383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 return ret;
5385}
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005386static void s2io_vpd_read(struct s2io_nic *nic)
Ananda Raju9dc737a2006-04-21 19:05:41 -04005387{
Ananda Rajub41477f2006-07-24 19:52:49 -04005388 u8 *vpd_data;
5389 u8 data;
Ananda Raju9dc737a2006-04-21 19:05:41 -04005390 int i=0, cnt, fail = 0;
5391 int vpd_addr = 0x80;
5392
5393 if (nic->device_type == XFRAME_II_DEVICE) {
5394 strcpy(nic->product_name, "Xframe II 10GbE network adapter");
5395 vpd_addr = 0x80;
5396 }
5397 else {
5398 strcpy(nic->product_name, "Xframe I 10GbE network adapter");
5399 vpd_addr = 0x50;
5400 }
Sivakumar Subramani19a60522007-01-31 13:30:49 -05005401 strcpy(nic->serial_num, "NOT AVAILABLE");
Ananda Raju9dc737a2006-04-21 19:05:41 -04005402
Ananda Rajub41477f2006-07-24 19:52:49 -04005403 vpd_data = kmalloc(256, GFP_KERNEL);
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04005404 if (!vpd_data) {
5405 nic->mac_control.stats_info->sw_stat.mem_alloc_fail_cnt++;
Ananda Rajub41477f2006-07-24 19:52:49 -04005406 return;
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04005407 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04005408 nic->mac_control.stats_info->sw_stat.mem_allocated += 256;
Ananda Rajub41477f2006-07-24 19:52:49 -04005409
Ananda Raju9dc737a2006-04-21 19:05:41 -04005410 for (i = 0; i < 256; i +=4 ) {
5411 pci_write_config_byte(nic->pdev, (vpd_addr + 2), i);
5412 pci_read_config_byte(nic->pdev, (vpd_addr + 2), &data);
5413 pci_write_config_byte(nic->pdev, (vpd_addr + 3), 0);
5414 for (cnt = 0; cnt <5; cnt++) {
5415 msleep(2);
5416 pci_read_config_byte(nic->pdev, (vpd_addr + 3), &data);
5417 if (data == 0x80)
5418 break;
5419 }
5420 if (cnt >= 5) {
5421 DBG_PRINT(ERR_DBG, "Read of VPD data failed\n");
5422 fail = 1;
5423 break;
5424 }
5425 pci_read_config_dword(nic->pdev, (vpd_addr + 4),
5426 (u32 *)&vpd_data[i]);
5427 }
Sivakumar Subramani19a60522007-01-31 13:30:49 -05005428
5429 if(!fail) {
5430 /* read serial number of adapter */
5431 for (cnt = 0; cnt < 256; cnt++) {
5432 if ((vpd_data[cnt] == 'S') &&
5433 (vpd_data[cnt+1] == 'N') &&
5434 (vpd_data[cnt+2] < VPD_STRING_LEN)) {
5435 memset(nic->serial_num, 0, VPD_STRING_LEN);
5436 memcpy(nic->serial_num, &vpd_data[cnt + 3],
5437 vpd_data[cnt+2]);
5438 break;
5439 }
5440 }
5441 }
5442
5443 if ((!fail) && (vpd_data[1] < VPD_STRING_LEN)) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04005444 memset(nic->product_name, 0, vpd_data[1]);
5445 memcpy(nic->product_name, &vpd_data[3], vpd_data[1]);
5446 }
Ananda Rajub41477f2006-07-24 19:52:49 -04005447 kfree(vpd_data);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04005448 nic->mac_control.stats_info->sw_stat.mem_freed += 256;
Ananda Raju9dc737a2006-04-21 19:05:41 -04005449}
5450
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451/**
5452 * s2io_ethtool_geeprom - reads the value stored in the Eeprom.
5453 * @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 -07005454 * @eeprom : pointer to the user level structure provided by ethtool,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455 * containing all relevant information.
5456 * @data_buf : user defined value to be written into Eeprom.
5457 * Description: Reads the values stored in the Eeprom at given offset
5458 * for a given length. Stores these values int the input argument data
5459 * buffer 'data_buf' and returns these to the caller (ethtool.)
5460 * Return value:
5461 * int 0 on success
5462 */
5463
5464static int s2io_ethtool_geeprom(struct net_device *dev,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005465 struct ethtool_eeprom *eeprom, u8 * data_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466{
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005467 u32 i, valid;
5468 u64 data;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005469 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470
5471 eeprom->magic = sp->pdev->vendor | (sp->pdev->device << 16);
5472
5473 if ((eeprom->offset + eeprom->len) > (XENA_EEPROM_SPACE))
5474 eeprom->len = XENA_EEPROM_SPACE - eeprom->offset;
5475
5476 for (i = 0; i < eeprom->len; i += 4) {
5477 if (read_eeprom(sp, (eeprom->offset + i), &data)) {
5478 DBG_PRINT(ERR_DBG, "Read of EEPROM failed\n");
5479 return -EFAULT;
5480 }
5481 valid = INV(data);
5482 memcpy((data_buf + i), &valid, 4);
5483 }
5484 return 0;
5485}
5486
5487/**
5488 * s2io_ethtool_seeprom - tries to write the user provided value in Eeprom
5489 * @sp : private member of the device structure, which is a pointer to the
5490 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005491 * @eeprom : pointer to the user level structure provided by ethtool,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492 * containing all relevant information.
5493 * @data_buf ; user defined value to be written into Eeprom.
5494 * Description:
5495 * Tries to write the user provided value in the Eeprom, at the offset
5496 * given by the user.
5497 * Return value:
5498 * 0 on success, -EFAULT on failure.
5499 */
5500
5501static int s2io_ethtool_seeprom(struct net_device *dev,
5502 struct ethtool_eeprom *eeprom,
5503 u8 * data_buf)
5504{
5505 int len = eeprom->len, cnt = 0;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005506 u64 valid = 0, data;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005507 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508
5509 if (eeprom->magic != (sp->pdev->vendor | (sp->pdev->device << 16))) {
5510 DBG_PRINT(ERR_DBG,
5511 "ETHTOOL_WRITE_EEPROM Err: Magic value ");
5512 DBG_PRINT(ERR_DBG, "is wrong, Its not 0x%x\n",
5513 eeprom->magic);
5514 return -EFAULT;
5515 }
5516
5517 while (len) {
5518 data = (u32) data_buf[cnt] & 0x000000FF;
5519 if (data) {
5520 valid = (u32) (data << 24);
5521 } else
5522 valid = data;
5523
5524 if (write_eeprom(sp, (eeprom->offset + cnt), valid, 0)) {
5525 DBG_PRINT(ERR_DBG,
5526 "ETHTOOL_WRITE_EEPROM Err: Cannot ");
5527 DBG_PRINT(ERR_DBG,
5528 "write into the specified offset\n");
5529 return -EFAULT;
5530 }
5531 cnt++;
5532 len--;
5533 }
5534
5535 return 0;
5536}
5537
5538/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005539 * s2io_register_test - reads and writes into all clock domains.
5540 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541 * s2io_nic structure.
5542 * @data : variable that returns the result of each of the test conducted b
5543 * by the driver.
5544 * Description:
5545 * Read and write into all clock domains. The NIC has 3 clock domains,
5546 * see that registers in all the three regions are accessible.
5547 * Return value:
5548 * 0 on success.
5549 */
5550
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005551static int s2io_register_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005553 struct XENA_dev_config __iomem *bar0 = sp->bar0;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005554 u64 val64 = 0, exp_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555 int fail = 0;
5556
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005557 val64 = readq(&bar0->pif_rd_swapper_fb);
5558 if (val64 != 0x123456789abcdefULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559 fail = 1;
5560 DBG_PRINT(INFO_DBG, "Read Test level 1 fails\n");
5561 }
5562
5563 val64 = readq(&bar0->rmac_pause_cfg);
5564 if (val64 != 0xc000ffff00000000ULL) {
5565 fail = 1;
5566 DBG_PRINT(INFO_DBG, "Read Test level 2 fails\n");
5567 }
5568
5569 val64 = readq(&bar0->rx_queue_cfg);
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005570 if (sp->device_type == XFRAME_II_DEVICE)
5571 exp_val = 0x0404040404040404ULL;
5572 else
5573 exp_val = 0x0808080808080808ULL;
5574 if (val64 != exp_val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 fail = 1;
5576 DBG_PRINT(INFO_DBG, "Read Test level 3 fails\n");
5577 }
5578
5579 val64 = readq(&bar0->xgxs_efifo_cfg);
5580 if (val64 != 0x000000001923141EULL) {
5581 fail = 1;
5582 DBG_PRINT(INFO_DBG, "Read Test level 4 fails\n");
5583 }
5584
5585 val64 = 0x5A5A5A5A5A5A5A5AULL;
5586 writeq(val64, &bar0->xmsi_data);
5587 val64 = readq(&bar0->xmsi_data);
5588 if (val64 != 0x5A5A5A5A5A5A5A5AULL) {
5589 fail = 1;
5590 DBG_PRINT(ERR_DBG, "Write Test level 1 fails\n");
5591 }
5592
5593 val64 = 0xA5A5A5A5A5A5A5A5ULL;
5594 writeq(val64, &bar0->xmsi_data);
5595 val64 = readq(&bar0->xmsi_data);
5596 if (val64 != 0xA5A5A5A5A5A5A5A5ULL) {
5597 fail = 1;
5598 DBG_PRINT(ERR_DBG, "Write Test level 2 fails\n");
5599 }
5600
5601 *data = fail;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005602 return fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603}
5604
5605/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005606 * s2io_eeprom_test - to verify that EEprom in the xena can be programmed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 * @sp : private member of the device structure, which is a pointer to the
5608 * s2io_nic structure.
5609 * @data:variable that returns the result of each of the test conducted by
5610 * the driver.
5611 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005612 * Verify that EEPROM in the xena can be programmed using I2C_CONTROL
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613 * register.
5614 * Return value:
5615 * 0 on success.
5616 */
5617
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005618static int s2io_eeprom_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619{
5620 int fail = 0;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005621 u64 ret_data, org_4F0, org_7F0;
5622 u8 saved_4F0 = 0, saved_7F0 = 0;
5623 struct net_device *dev = sp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005624
5625 /* Test Write Error at offset 0 */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005626 /* Note that SPI interface allows write access to all areas
5627 * of EEPROM. Hence doing all negative testing only for Xframe I.
5628 */
5629 if (sp->device_type == XFRAME_I_DEVICE)
5630 if (!write_eeprom(sp, 0, 0, 3))
5631 fail = 1;
5632
5633 /* Save current values at offsets 0x4F0 and 0x7F0 */
5634 if (!read_eeprom(sp, 0x4F0, &org_4F0))
5635 saved_4F0 = 1;
5636 if (!read_eeprom(sp, 0x7F0, &org_7F0))
5637 saved_7F0 = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638
5639 /* Test Write at offset 4f0 */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005640 if (write_eeprom(sp, 0x4F0, 0x012345, 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641 fail = 1;
5642 if (read_eeprom(sp, 0x4F0, &ret_data))
5643 fail = 1;
5644
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005645 if (ret_data != 0x012345) {
Andrew Morton26b76252005-12-14 19:25:23 -08005646 DBG_PRINT(ERR_DBG, "%s: eeprom test error at offset 0x4F0. "
5647 "Data written %llx Data read %llx\n",
5648 dev->name, (unsigned long long)0x12345,
5649 (unsigned long long)ret_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650 fail = 1;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
5653 /* Reset the EEPROM data go FFFF */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005654 write_eeprom(sp, 0x4F0, 0xFFFFFF, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655
5656 /* Test Write Request Error at offset 0x7c */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005657 if (sp->device_type == XFRAME_I_DEVICE)
5658 if (!write_eeprom(sp, 0x07C, 0, 3))
5659 fail = 1;
5660
5661 /* Test Write Request at offset 0x7f0 */
5662 if (write_eeprom(sp, 0x7F0, 0x012345, 3))
5663 fail = 1;
5664 if (read_eeprom(sp, 0x7F0, &ret_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665 fail = 1;
5666
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005667 if (ret_data != 0x012345) {
Andrew Morton26b76252005-12-14 19:25:23 -08005668 DBG_PRINT(ERR_DBG, "%s: eeprom test error at offset 0x7F0. "
5669 "Data written %llx Data read %llx\n",
5670 dev->name, (unsigned long long)0x12345,
5671 (unsigned long long)ret_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672 fail = 1;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
5675 /* Reset the EEPROM data go FFFF */
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005676 write_eeprom(sp, 0x7F0, 0xFFFFFF, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005678 if (sp->device_type == XFRAME_I_DEVICE) {
5679 /* Test Write Error at offset 0x80 */
5680 if (!write_eeprom(sp, 0x080, 0, 3))
5681 fail = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005683 /* Test Write Error at offset 0xfc */
5684 if (!write_eeprom(sp, 0x0FC, 0, 3))
5685 fail = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005687 /* Test Write Error at offset 0x100 */
5688 if (!write_eeprom(sp, 0x100, 0, 3))
5689 fail = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005691 /* Test Write Error at offset 4ec */
5692 if (!write_eeprom(sp, 0x4EC, 0, 3))
5693 fail = 1;
5694 }
5695
5696 /* Restore values at offsets 0x4F0 and 0x7F0 */
5697 if (saved_4F0)
5698 write_eeprom(sp, 0x4F0, org_4F0, 3);
5699 if (saved_7F0)
5700 write_eeprom(sp, 0x7F0, org_7F0, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701
5702 *data = fail;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005703 return fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704}
5705
5706/**
5707 * s2io_bist_test - invokes the MemBist test of the card .
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005708 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005710 * @data:variable that returns the result of each of the test conducted by
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711 * the driver.
5712 * Description:
5713 * This invokes the MemBist test of the card. We give around
5714 * 2 secs time for the Test to complete. If it's still not complete
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005715 * within this peiod, we consider that the test failed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716 * Return value:
5717 * 0 on success and -1 on failure.
5718 */
5719
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005720static int s2io_bist_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721{
5722 u8 bist = 0;
5723 int cnt = 0, ret = -1;
5724
5725 pci_read_config_byte(sp->pdev, PCI_BIST, &bist);
5726 bist |= PCI_BIST_START;
5727 pci_write_config_word(sp->pdev, PCI_BIST, bist);
5728
5729 while (cnt < 20) {
5730 pci_read_config_byte(sp->pdev, PCI_BIST, &bist);
5731 if (!(bist & PCI_BIST_START)) {
5732 *data = (bist & PCI_BIST_CODE_MASK);
5733 ret = 0;
5734 break;
5735 }
5736 msleep(100);
5737 cnt++;
5738 }
5739
5740 return ret;
5741}
5742
5743/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005744 * s2io-link_test - verifies the link state of the nic
5745 * @sp ; private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746 * s2io_nic structure.
5747 * @data: variable that returns the result of each of the test conducted by
5748 * the driver.
5749 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005750 * The function verifies the link state of the NIC and updates the input
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751 * argument 'data' appropriately.
5752 * Return value:
5753 * 0 on success.
5754 */
5755
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005756static int s2io_link_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005758 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759 u64 val64;
5760
5761 val64 = readq(&bar0->adapter_status);
Ananda Rajuc92ca042006-04-21 19:18:03 -04005762 if(!(LINK_IS_UP(val64)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763 *data = 1;
Ananda Rajuc92ca042006-04-21 19:18:03 -04005764 else
5765 *data = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766
Ananda Rajub41477f2006-07-24 19:52:49 -04005767 return *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768}
5769
5770/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005771 * s2io_rldram_test - offline test for access to the RldRam chip on the NIC
5772 * @sp - private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773 * s2io_nic structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005774 * @data - variable that returns the result of each of the test
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775 * conducted by the driver.
5776 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005777 * This is one of the offline test that tests the read and write
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778 * access to the RldRam chip on the NIC.
5779 * Return value:
5780 * 0 on success.
5781 */
5782
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005783static int s2io_rldram_test(struct s2io_nic * sp, uint64_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005785 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786 u64 val64;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005787 int cnt, iteration = 0, test_fail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788
5789 val64 = readq(&bar0->adapter_control);
5790 val64 &= ~ADAPTER_ECC_EN;
5791 writeq(val64, &bar0->adapter_control);
5792
5793 val64 = readq(&bar0->mc_rldram_test_ctrl);
5794 val64 |= MC_RLDRAM_TEST_MODE;
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005795 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_test_ctrl, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796
5797 val64 = readq(&bar0->mc_rldram_mrs);
5798 val64 |= MC_RLDRAM_QUEUE_SIZE_ENABLE;
5799 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_mrs, UF);
5800
5801 val64 |= MC_RLDRAM_MRS_ENABLE;
5802 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_mrs, UF);
5803
5804 while (iteration < 2) {
5805 val64 = 0x55555555aaaa0000ULL;
5806 if (iteration == 1) {
5807 val64 ^= 0xFFFFFFFFFFFF0000ULL;
5808 }
5809 writeq(val64, &bar0->mc_rldram_test_d0);
5810
5811 val64 = 0xaaaa5a5555550000ULL;
5812 if (iteration == 1) {
5813 val64 ^= 0xFFFFFFFFFFFF0000ULL;
5814 }
5815 writeq(val64, &bar0->mc_rldram_test_d1);
5816
5817 val64 = 0x55aaaaaaaa5a0000ULL;
5818 if (iteration == 1) {
5819 val64 ^= 0xFFFFFFFFFFFF0000ULL;
5820 }
5821 writeq(val64, &bar0->mc_rldram_test_d2);
5822
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005823 val64 = (u64) (0x0000003ffffe0100ULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824 writeq(val64, &bar0->mc_rldram_test_add);
5825
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005826 val64 = MC_RLDRAM_TEST_MODE | MC_RLDRAM_TEST_WRITE |
5827 MC_RLDRAM_TEST_GO;
5828 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_test_ctrl, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829
5830 for (cnt = 0; cnt < 5; cnt++) {
5831 val64 = readq(&bar0->mc_rldram_test_ctrl);
5832 if (val64 & MC_RLDRAM_TEST_DONE)
5833 break;
5834 msleep(200);
5835 }
5836
5837 if (cnt == 5)
5838 break;
5839
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005840 val64 = MC_RLDRAM_TEST_MODE | MC_RLDRAM_TEST_GO;
5841 SPECIAL_REG_WRITE(val64, &bar0->mc_rldram_test_ctrl, LF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842
5843 for (cnt = 0; cnt < 5; cnt++) {
5844 val64 = readq(&bar0->mc_rldram_test_ctrl);
5845 if (val64 & MC_RLDRAM_TEST_DONE)
5846 break;
5847 msleep(500);
5848 }
5849
5850 if (cnt == 5)
5851 break;
5852
5853 val64 = readq(&bar0->mc_rldram_test_ctrl);
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005854 if (!(val64 & MC_RLDRAM_TEST_PASS))
5855 test_fail = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
5857 iteration++;
5858 }
5859
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005860 *data = test_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861
ravinandan.arakali@neterion.comad4ebed2005-10-17 18:26:20 -07005862 /* Bring the adapter out of test mode */
5863 SPECIAL_REG_WRITE(0, &bar0->mc_rldram_test_ctrl, LF);
5864
5865 return test_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866}
5867
5868/**
5869 * s2io_ethtool_test - conducts 6 tsets to determine the health of card.
5870 * @sp : private member of the device structure, which is a pointer to the
5871 * s2io_nic structure.
5872 * @ethtest : pointer to a ethtool command specific structure that will be
5873 * returned to the user.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005874 * @data : variable that returns the result of each of the test
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 * conducted by the driver.
5876 * Description:
5877 * This function conducts 6 tests ( 4 offline and 2 online) to determine
5878 * the health of the card.
5879 * Return value:
5880 * void
5881 */
5882
5883static void s2io_ethtool_test(struct net_device *dev,
5884 struct ethtool_test *ethtest,
5885 uint64_t * data)
5886{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005887 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888 int orig_state = netif_running(sp->dev);
5889
5890 if (ethtest->flags == ETH_TEST_FL_OFFLINE) {
5891 /* Offline Tests. */
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07005892 if (orig_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893 s2io_close(sp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894
5895 if (s2io_register_test(sp, &data[0]))
5896 ethtest->flags |= ETH_TEST_FL_FAILED;
5897
5898 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899
5900 if (s2io_rldram_test(sp, &data[3]))
5901 ethtest->flags |= ETH_TEST_FL_FAILED;
5902
5903 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904
5905 if (s2io_eeprom_test(sp, &data[1]))
5906 ethtest->flags |= ETH_TEST_FL_FAILED;
5907
5908 if (s2io_bist_test(sp, &data[4]))
5909 ethtest->flags |= ETH_TEST_FL_FAILED;
5910
5911 if (orig_state)
5912 s2io_open(sp->dev);
5913
5914 data[2] = 0;
5915 } else {
5916 /* Online Tests. */
5917 if (!orig_state) {
5918 DBG_PRINT(ERR_DBG,
5919 "%s: is not up, cannot run test\n",
5920 dev->name);
5921 data[0] = -1;
5922 data[1] = -1;
5923 data[2] = -1;
5924 data[3] = -1;
5925 data[4] = -1;
5926 }
5927
5928 if (s2io_link_test(sp, &data[2]))
5929 ethtest->flags |= ETH_TEST_FL_FAILED;
5930
5931 data[0] = 0;
5932 data[1] = 0;
5933 data[3] = 0;
5934 data[4] = 0;
5935 }
5936}
5937
5938static void s2io_get_ethtool_stats(struct net_device *dev,
5939 struct ethtool_stats *estats,
5940 u64 * tmp_stats)
5941{
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07005942 int i = 0, k;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05005943 struct s2io_nic *sp = dev->priv;
5944 struct stat_block *stat_info = sp->mac_control.stats_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07005946 s2io_updt_stats(sp);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005947 tmp_stats[i++] =
5948 (u64)le32_to_cpu(stat_info->tmac_frms_oflow) << 32 |
5949 le32_to_cpu(stat_info->tmac_frms);
5950 tmp_stats[i++] =
5951 (u64)le32_to_cpu(stat_info->tmac_data_octets_oflow) << 32 |
5952 le32_to_cpu(stat_info->tmac_data_octets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_drop_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005954 tmp_stats[i++] =
5955 (u64)le32_to_cpu(stat_info->tmac_mcst_frms_oflow) << 32 |
5956 le32_to_cpu(stat_info->tmac_mcst_frms);
5957 tmp_stats[i++] =
5958 (u64)le32_to_cpu(stat_info->tmac_bcst_frms_oflow) << 32 |
5959 le32_to_cpu(stat_info->tmac_bcst_frms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_pause_ctrl_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04005961 tmp_stats[i++] =
5962 (u64)le32_to_cpu(stat_info->tmac_ttl_octets_oflow) << 32 |
5963 le32_to_cpu(stat_info->tmac_ttl_octets);
5964 tmp_stats[i++] =
5965 (u64)le32_to_cpu(stat_info->tmac_ucst_frms_oflow) << 32 |
5966 le32_to_cpu(stat_info->tmac_ucst_frms);
5967 tmp_stats[i++] =
5968 (u64)le32_to_cpu(stat_info->tmac_nucst_frms_oflow) << 32 |
5969 le32_to_cpu(stat_info->tmac_nucst_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005970 tmp_stats[i++] =
5971 (u64)le32_to_cpu(stat_info->tmac_any_err_frms_oflow) << 32 |
5972 le32_to_cpu(stat_info->tmac_any_err_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04005973 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_ttl_less_fb_octets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_vld_ip_octets);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005975 tmp_stats[i++] =
5976 (u64)le32_to_cpu(stat_info->tmac_vld_ip_oflow) << 32 |
5977 le32_to_cpu(stat_info->tmac_vld_ip);
5978 tmp_stats[i++] =
5979 (u64)le32_to_cpu(stat_info->tmac_drop_ip_oflow) << 32 |
5980 le32_to_cpu(stat_info->tmac_drop_ip);
5981 tmp_stats[i++] =
5982 (u64)le32_to_cpu(stat_info->tmac_icmp_oflow) << 32 |
5983 le32_to_cpu(stat_info->tmac_icmp);
5984 tmp_stats[i++] =
5985 (u64)le32_to_cpu(stat_info->tmac_rst_tcp_oflow) << 32 |
5986 le32_to_cpu(stat_info->tmac_rst_tcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 tmp_stats[i++] = le64_to_cpu(stat_info->tmac_tcp);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005988 tmp_stats[i++] = (u64)le32_to_cpu(stat_info->tmac_udp_oflow) << 32 |
5989 le32_to_cpu(stat_info->tmac_udp);
5990 tmp_stats[i++] =
5991 (u64)le32_to_cpu(stat_info->rmac_vld_frms_oflow) << 32 |
5992 le32_to_cpu(stat_info->rmac_vld_frms);
5993 tmp_stats[i++] =
5994 (u64)le32_to_cpu(stat_info->rmac_data_octets_oflow) << 32 |
5995 le32_to_cpu(stat_info->rmac_data_octets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_fcs_err_frms);
5997 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_drop_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07005998 tmp_stats[i++] =
5999 (u64)le32_to_cpu(stat_info->rmac_vld_mcst_frms_oflow) << 32 |
6000 le32_to_cpu(stat_info->rmac_vld_mcst_frms);
6001 tmp_stats[i++] =
6002 (u64)le32_to_cpu(stat_info->rmac_vld_bcst_frms_oflow) << 32 |
6003 le32_to_cpu(stat_info->rmac_vld_bcst_frms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_in_rng_len_err_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006005 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_out_rng_len_err_frms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_long_frms);
6007 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_pause_ctrl_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006008 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_unsup_ctrl_frms);
6009 tmp_stats[i++] =
6010 (u64)le32_to_cpu(stat_info->rmac_ttl_octets_oflow) << 32 |
6011 le32_to_cpu(stat_info->rmac_ttl_octets);
6012 tmp_stats[i++] =
6013 (u64)le32_to_cpu(stat_info->rmac_accepted_ucst_frms_oflow)
6014 << 32 | le32_to_cpu(stat_info->rmac_accepted_ucst_frms);
6015 tmp_stats[i++] =
6016 (u64)le32_to_cpu(stat_info->rmac_accepted_nucst_frms_oflow)
6017 << 32 | le32_to_cpu(stat_info->rmac_accepted_nucst_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006018 tmp_stats[i++] =
6019 (u64)le32_to_cpu(stat_info->rmac_discarded_frms_oflow) << 32 |
6020 le32_to_cpu(stat_info->rmac_discarded_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006021 tmp_stats[i++] =
6022 (u64)le32_to_cpu(stat_info->rmac_drop_events_oflow)
6023 << 32 | le32_to_cpu(stat_info->rmac_drop_events);
6024 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_less_fb_octets);
6025 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_frms);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006026 tmp_stats[i++] =
6027 (u64)le32_to_cpu(stat_info->rmac_usized_frms_oflow) << 32 |
6028 le32_to_cpu(stat_info->rmac_usized_frms);
6029 tmp_stats[i++] =
6030 (u64)le32_to_cpu(stat_info->rmac_osized_frms_oflow) << 32 |
6031 le32_to_cpu(stat_info->rmac_osized_frms);
6032 tmp_stats[i++] =
6033 (u64)le32_to_cpu(stat_info->rmac_frag_frms_oflow) << 32 |
6034 le32_to_cpu(stat_info->rmac_frag_frms);
6035 tmp_stats[i++] =
6036 (u64)le32_to_cpu(stat_info->rmac_jabber_frms_oflow) << 32 |
6037 le32_to_cpu(stat_info->rmac_jabber_frms);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006038 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_64_frms);
6039 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_65_127_frms);
6040 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_128_255_frms);
6041 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_256_511_frms);
6042 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_512_1023_frms);
6043 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_1024_1518_frms);
6044 tmp_stats[i++] =
6045 (u64)le32_to_cpu(stat_info->rmac_ip_oflow) << 32 |
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006046 le32_to_cpu(stat_info->rmac_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ip_octets);
6048 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_hdr_err_ip);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006049 tmp_stats[i++] =
6050 (u64)le32_to_cpu(stat_info->rmac_drop_ip_oflow) << 32 |
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006051 le32_to_cpu(stat_info->rmac_drop_ip);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006052 tmp_stats[i++] =
6053 (u64)le32_to_cpu(stat_info->rmac_icmp_oflow) << 32 |
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006054 le32_to_cpu(stat_info->rmac_icmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_tcp);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006056 tmp_stats[i++] =
6057 (u64)le32_to_cpu(stat_info->rmac_udp_oflow) << 32 |
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006058 le32_to_cpu(stat_info->rmac_udp);
6059 tmp_stats[i++] =
6060 (u64)le32_to_cpu(stat_info->rmac_err_drp_udp_oflow) << 32 |
6061 le32_to_cpu(stat_info->rmac_err_drp_udp);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006062 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_xgmii_err_sym);
6063 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q0);
6064 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q1);
6065 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q2);
6066 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q3);
6067 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q4);
6068 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q5);
6069 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q6);
6070 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_frms_q7);
6071 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q0);
6072 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q1);
6073 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q2);
6074 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q3);
6075 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q4);
6076 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q5);
6077 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q6);
6078 tmp_stats[i++] = le16_to_cpu(stat_info->rmac_full_q7);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006079 tmp_stats[i++] =
6080 (u64)le32_to_cpu(stat_info->rmac_pause_cnt_oflow) << 32 |
6081 le32_to_cpu(stat_info->rmac_pause_cnt);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006082 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_xgmii_data_err_cnt);
6083 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_xgmii_ctrl_err_cnt);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07006084 tmp_stats[i++] =
6085 (u64)le32_to_cpu(stat_info->rmac_accepted_ip_oflow) << 32 |
6086 le32_to_cpu(stat_info->rmac_accepted_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_err_tcp);
Ananda Rajubd1034f2006-04-21 19:20:22 -04006088 tmp_stats[i++] = le32_to_cpu(stat_info->rd_req_cnt);
6089 tmp_stats[i++] = le32_to_cpu(stat_info->new_rd_req_cnt);
6090 tmp_stats[i++] = le32_to_cpu(stat_info->new_rd_req_rtry_cnt);
6091 tmp_stats[i++] = le32_to_cpu(stat_info->rd_rtry_cnt);
6092 tmp_stats[i++] = le32_to_cpu(stat_info->wr_rtry_rd_ack_cnt);
6093 tmp_stats[i++] = le32_to_cpu(stat_info->wr_req_cnt);
6094 tmp_stats[i++] = le32_to_cpu(stat_info->new_wr_req_cnt);
6095 tmp_stats[i++] = le32_to_cpu(stat_info->new_wr_req_rtry_cnt);
6096 tmp_stats[i++] = le32_to_cpu(stat_info->wr_rtry_cnt);
6097 tmp_stats[i++] = le32_to_cpu(stat_info->wr_disc_cnt);
6098 tmp_stats[i++] = le32_to_cpu(stat_info->rd_rtry_wr_ack_cnt);
6099 tmp_stats[i++] = le32_to_cpu(stat_info->txp_wr_cnt);
6100 tmp_stats[i++] = le32_to_cpu(stat_info->txd_rd_cnt);
6101 tmp_stats[i++] = le32_to_cpu(stat_info->txd_wr_cnt);
6102 tmp_stats[i++] = le32_to_cpu(stat_info->rxd_rd_cnt);
6103 tmp_stats[i++] = le32_to_cpu(stat_info->rxd_wr_cnt);
6104 tmp_stats[i++] = le32_to_cpu(stat_info->txf_rd_cnt);
6105 tmp_stats[i++] = le32_to_cpu(stat_info->rxf_wr_cnt);
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -05006106
6107 /* Enhanced statistics exist only for Hercules */
6108 if(sp->device_type == XFRAME_II_DEVICE) {
6109 tmp_stats[i++] =
6110 le64_to_cpu(stat_info->rmac_ttl_1519_4095_frms);
6111 tmp_stats[i++] =
6112 le64_to_cpu(stat_info->rmac_ttl_4096_8191_frms);
6113 tmp_stats[i++] =
6114 le64_to_cpu(stat_info->rmac_ttl_8192_max_frms);
6115 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_ttl_gt_max_frms);
6116 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_osized_alt_frms);
6117 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_jabber_alt_frms);
6118 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_gt_max_alt_frms);
6119 tmp_stats[i++] = le64_to_cpu(stat_info->rmac_vlan_frms);
6120 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_len_discard);
6121 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_fcs_discard);
6122 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_pf_discard);
6123 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_da_discard);
6124 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_red_discard);
6125 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_rts_discard);
6126 tmp_stats[i++] = le32_to_cpu(stat_info->rmac_ingm_full_discard);
6127 tmp_stats[i++] = le32_to_cpu(stat_info->link_fault_cnt);
6128 }
6129
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07006130 tmp_stats[i++] = 0;
6131 tmp_stats[i++] = stat_info->sw_stat.single_ecc_errs;
6132 tmp_stats[i++] = stat_info->sw_stat.double_ecc_errs;
Ananda Rajubd1034f2006-04-21 19:20:22 -04006133 tmp_stats[i++] = stat_info->sw_stat.parity_err_cnt;
6134 tmp_stats[i++] = stat_info->sw_stat.serious_err_cnt;
6135 tmp_stats[i++] = stat_info->sw_stat.soft_reset_cnt;
6136 tmp_stats[i++] = stat_info->sw_stat.fifo_full_cnt;
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07006137 for (k = 0; k < MAX_RX_RINGS; k++)
6138 tmp_stats[i++] = stat_info->sw_stat.ring_full_cnt[k];
Ananda Rajubd1034f2006-04-21 19:20:22 -04006139 tmp_stats[i++] = stat_info->xpak_stat.alarm_transceiver_temp_high;
6140 tmp_stats[i++] = stat_info->xpak_stat.alarm_transceiver_temp_low;
6141 tmp_stats[i++] = stat_info->xpak_stat.alarm_laser_bias_current_high;
6142 tmp_stats[i++] = stat_info->xpak_stat.alarm_laser_bias_current_low;
6143 tmp_stats[i++] = stat_info->xpak_stat.alarm_laser_output_power_high;
6144 tmp_stats[i++] = stat_info->xpak_stat.alarm_laser_output_power_low;
6145 tmp_stats[i++] = stat_info->xpak_stat.warn_transceiver_temp_high;
6146 tmp_stats[i++] = stat_info->xpak_stat.warn_transceiver_temp_low;
6147 tmp_stats[i++] = stat_info->xpak_stat.warn_laser_bias_current_high;
6148 tmp_stats[i++] = stat_info->xpak_stat.warn_laser_bias_current_low;
6149 tmp_stats[i++] = stat_info->xpak_stat.warn_laser_output_power_high;
6150 tmp_stats[i++] = stat_info->xpak_stat.warn_laser_output_power_low;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05006151 tmp_stats[i++] = stat_info->sw_stat.clubbed_frms_cnt;
6152 tmp_stats[i++] = stat_info->sw_stat.sending_both;
6153 tmp_stats[i++] = stat_info->sw_stat.outof_sequence_pkts;
6154 tmp_stats[i++] = stat_info->sw_stat.flush_max_pkts;
Andrew Mortonfe931392006-02-03 01:45:12 -08006155 if (stat_info->sw_stat.num_aggregations) {
Ananda Rajubd1034f2006-04-21 19:20:22 -04006156 u64 tmp = stat_info->sw_stat.sum_avg_pkts_aggregated;
6157 int count = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04006158 /*
Ananda Rajubd1034f2006-04-21 19:20:22 -04006159 * Since 64-bit divide does not work on all platforms,
6160 * do repeated subtraction.
6161 */
6162 while (tmp >= stat_info->sw_stat.num_aggregations) {
6163 tmp -= stat_info->sw_stat.num_aggregations;
6164 count++;
6165 }
6166 tmp_stats[i++] = count;
Andrew Mortonfe931392006-02-03 01:45:12 -08006167 }
Ananda Rajubd1034f2006-04-21 19:20:22 -04006168 else
6169 tmp_stats[i++] = 0;
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04006170 tmp_stats[i++] = stat_info->sw_stat.mem_alloc_fail_cnt;
Veena Parat491abf22007-07-23 02:37:14 -04006171 tmp_stats[i++] = stat_info->sw_stat.pci_map_fail_cnt;
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04006172 tmp_stats[i++] = stat_info->sw_stat.watchdog_timer_cnt;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04006173 tmp_stats[i++] = stat_info->sw_stat.mem_allocated;
6174 tmp_stats[i++] = stat_info->sw_stat.mem_freed;
6175 tmp_stats[i++] = stat_info->sw_stat.link_up_cnt;
6176 tmp_stats[i++] = stat_info->sw_stat.link_down_cnt;
6177 tmp_stats[i++] = stat_info->sw_stat.link_up_time;
6178 tmp_stats[i++] = stat_info->sw_stat.link_down_time;
6179
6180 tmp_stats[i++] = stat_info->sw_stat.tx_buf_abort_cnt;
6181 tmp_stats[i++] = stat_info->sw_stat.tx_desc_abort_cnt;
6182 tmp_stats[i++] = stat_info->sw_stat.tx_parity_err_cnt;
6183 tmp_stats[i++] = stat_info->sw_stat.tx_link_loss_cnt;
6184 tmp_stats[i++] = stat_info->sw_stat.tx_list_proc_err_cnt;
6185
6186 tmp_stats[i++] = stat_info->sw_stat.rx_parity_err_cnt;
6187 tmp_stats[i++] = stat_info->sw_stat.rx_abort_cnt;
6188 tmp_stats[i++] = stat_info->sw_stat.rx_parity_abort_cnt;
6189 tmp_stats[i++] = stat_info->sw_stat.rx_rda_fail_cnt;
6190 tmp_stats[i++] = stat_info->sw_stat.rx_unkn_prot_cnt;
6191 tmp_stats[i++] = stat_info->sw_stat.rx_fcs_err_cnt;
6192 tmp_stats[i++] = stat_info->sw_stat.rx_buf_size_err_cnt;
6193 tmp_stats[i++] = stat_info->sw_stat.rx_rxd_corrupt_cnt;
6194 tmp_stats[i++] = stat_info->sw_stat.rx_unkn_err_cnt;
Sivakumar Subramani8116f3c2007-09-17 13:05:35 -07006195 tmp_stats[i++] = stat_info->sw_stat.tda_err_cnt;
6196 tmp_stats[i++] = stat_info->sw_stat.pfc_err_cnt;
6197 tmp_stats[i++] = stat_info->sw_stat.pcc_err_cnt;
6198 tmp_stats[i++] = stat_info->sw_stat.tti_err_cnt;
6199 tmp_stats[i++] = stat_info->sw_stat.tpa_err_cnt;
6200 tmp_stats[i++] = stat_info->sw_stat.sm_err_cnt;
6201 tmp_stats[i++] = stat_info->sw_stat.lso_err_cnt;
6202 tmp_stats[i++] = stat_info->sw_stat.mac_tmac_err_cnt;
6203 tmp_stats[i++] = stat_info->sw_stat.mac_rmac_err_cnt;
6204 tmp_stats[i++] = stat_info->sw_stat.xgxs_txgxs_err_cnt;
6205 tmp_stats[i++] = stat_info->sw_stat.xgxs_rxgxs_err_cnt;
6206 tmp_stats[i++] = stat_info->sw_stat.rc_err_cnt;
6207 tmp_stats[i++] = stat_info->sw_stat.prc_pcix_err_cnt;
6208 tmp_stats[i++] = stat_info->sw_stat.rpa_err_cnt;
6209 tmp_stats[i++] = stat_info->sw_stat.rda_err_cnt;
6210 tmp_stats[i++] = stat_info->sw_stat.rti_err_cnt;
6211 tmp_stats[i++] = stat_info->sw_stat.mc_err_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212}
6213
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006214static int s2io_ethtool_get_regs_len(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215{
6216 return (XENA_REG_SPACE);
6217}
6218
6219
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006220static u32 s2io_ethtool_get_rx_csum(struct net_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006222 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223
6224 return (sp->rx_csum);
6225}
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006226
6227static int s2io_ethtool_set_rx_csum(struct net_device *dev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006229 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230
6231 if (data)
6232 sp->rx_csum = 1;
6233 else
6234 sp->rx_csum = 0;
6235
6236 return 0;
6237}
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006238
6239static int s2io_get_eeprom_len(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240{
6241 return (XENA_EEPROM_SPACE);
6242}
6243
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006244static int s2io_ethtool_self_test_count(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245{
6246 return (S2IO_TEST_LEN);
6247}
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006248
6249static void s2io_ethtool_get_strings(struct net_device *dev,
6250 u32 stringset, u8 * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251{
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -05006252 int stat_size = 0;
6253 struct s2io_nic *sp = dev->priv;
6254
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255 switch (stringset) {
6256 case ETH_SS_TEST:
6257 memcpy(data, s2io_gstrings, S2IO_STRINGS_LEN);
6258 break;
6259 case ETH_SS_STATS:
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -05006260 stat_size = sizeof(ethtool_xena_stats_keys);
6261 memcpy(data, &ethtool_xena_stats_keys,stat_size);
6262 if(sp->device_type == XFRAME_II_DEVICE) {
6263 memcpy(data + stat_size,
6264 &ethtool_enhanced_stats_keys,
6265 sizeof(ethtool_enhanced_stats_keys));
6266 stat_size += sizeof(ethtool_enhanced_stats_keys);
6267 }
6268
6269 memcpy(data + stat_size, &ethtool_driver_stats_keys,
6270 sizeof(ethtool_driver_stats_keys));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271 }
6272}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273static int s2io_ethtool_get_stats_count(struct net_device *dev)
6274{
Sivakumar Subramanifa1f0cb2007-02-24 02:03:22 -05006275 struct s2io_nic *sp = dev->priv;
6276 int stat_count = 0;
6277 switch(sp->device_type) {
6278 case XFRAME_I_DEVICE:
6279 stat_count = XFRAME_I_STAT_LEN;
6280 break;
6281
6282 case XFRAME_II_DEVICE:
6283 stat_count = XFRAME_II_STAT_LEN;
6284 break;
6285 }
6286
6287 return stat_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288}
6289
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006290static int s2io_ethtool_op_set_tx_csum(struct net_device *dev, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006291{
6292 if (data)
6293 dev->features |= NETIF_F_IP_CSUM;
6294 else
6295 dev->features &= ~NETIF_F_IP_CSUM;
6296
6297 return 0;
6298}
6299
Ananda Raju75c30b12006-07-24 19:55:09 -04006300static u32 s2io_ethtool_op_get_tso(struct net_device *dev)
6301{
6302 return (dev->features & NETIF_F_TSO) != 0;
6303}
6304static int s2io_ethtool_op_set_tso(struct net_device *dev, u32 data)
6305{
6306 if (data)
6307 dev->features |= (NETIF_F_TSO | NETIF_F_TSO6);
6308 else
6309 dev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6);
6310
6311 return 0;
6312}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313
Jeff Garzik7282d492006-09-13 14:30:00 -04006314static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315 .get_settings = s2io_ethtool_gset,
6316 .set_settings = s2io_ethtool_sset,
6317 .get_drvinfo = s2io_ethtool_gdrvinfo,
6318 .get_regs_len = s2io_ethtool_get_regs_len,
6319 .get_regs = s2io_ethtool_gregs,
6320 .get_link = ethtool_op_get_link,
6321 .get_eeprom_len = s2io_get_eeprom_len,
6322 .get_eeprom = s2io_ethtool_geeprom,
6323 .set_eeprom = s2io_ethtool_seeprom,
Sreenivasa Honnur0cec35e2007-05-10 04:06:28 -04006324 .get_ringparam = s2io_ethtool_gringparam,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325 .get_pauseparam = s2io_ethtool_getpause_data,
6326 .set_pauseparam = s2io_ethtool_setpause_data,
6327 .get_rx_csum = s2io_ethtool_get_rx_csum,
6328 .set_rx_csum = s2io_ethtool_set_rx_csum,
6329 .get_tx_csum = ethtool_op_get_tx_csum,
6330 .set_tx_csum = s2io_ethtool_op_set_tx_csum,
6331 .get_sg = ethtool_op_get_sg,
6332 .set_sg = ethtool_op_set_sg,
Ananda Raju75c30b12006-07-24 19:55:09 -04006333 .get_tso = s2io_ethtool_op_get_tso,
6334 .set_tso = s2io_ethtool_op_set_tso,
Ananda Rajufed5ecc2005-11-14 15:25:08 -05006335 .get_ufo = ethtool_op_get_ufo,
6336 .set_ufo = ethtool_op_set_ufo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337 .self_test_count = s2io_ethtool_self_test_count,
6338 .self_test = s2io_ethtool_test,
6339 .get_strings = s2io_ethtool_get_strings,
6340 .phys_id = s2io_ethtool_idnic,
6341 .get_stats_count = s2io_ethtool_get_stats_count,
6342 .get_ethtool_stats = s2io_get_ethtool_stats
6343};
6344
6345/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006346 * s2io_ioctl - Entry point for the Ioctl
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347 * @dev : Device pointer.
6348 * @ifr : An IOCTL specefic structure, that can contain a pointer to
6349 * a proprietary structure used to pass information to the driver.
6350 * @cmd : This is used to distinguish between the different commands that
6351 * can be passed to the IOCTL functions.
6352 * Description:
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006353 * Currently there are no special functionality supported in IOCTL, hence
6354 * function always return EOPNOTSUPPORTED
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355 */
6356
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006357static int s2io_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358{
6359 return -EOPNOTSUPP;
6360}
6361
6362/**
6363 * s2io_change_mtu - entry point to change MTU size for the device.
6364 * @dev : device pointer.
6365 * @new_mtu : the new MTU size for the device.
6366 * Description: A driver entry point to change MTU size for the device.
6367 * Before changing the MTU the device must be stopped.
6368 * Return value:
6369 * 0 on success and an appropriate (-)ve integer as defined in errno.h
6370 * file on failure.
6371 */
6372
Adrian Bunkac1f60d2005-11-06 01:46:47 +01006373static int s2io_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006375 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376
6377 if ((new_mtu < MIN_MTU) || (new_mtu > S2IO_JUMBO_SIZE)) {
6378 DBG_PRINT(ERR_DBG, "%s: MTU size is invalid.\n",
6379 dev->name);
6380 return -EPERM;
6381 }
6382
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383 dev->mtu = new_mtu;
raghavendra.koushik@neterion.comd8892c62005-08-03 12:33:12 -07006384 if (netif_running(dev)) {
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006385 s2io_card_down(sp);
raghavendra.koushik@neterion.comd8892c62005-08-03 12:33:12 -07006386 netif_stop_queue(dev);
6387 if (s2io_card_up(sp)) {
6388 DBG_PRINT(ERR_DBG, "%s: Device bring up failed\n",
6389 __FUNCTION__);
6390 }
6391 if (netif_queue_stopped(dev))
6392 netif_wake_queue(dev);
6393 } else { /* Device is down */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006394 struct XENA_dev_config __iomem *bar0 = sp->bar0;
raghavendra.koushik@neterion.comd8892c62005-08-03 12:33:12 -07006395 u64 val64 = new_mtu;
6396
6397 writeq(vBIT(val64, 2, 14), &bar0->rmac_max_pyld_len);
6398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399
6400 return 0;
6401}
6402
6403/**
6404 * s2io_tasklet - Bottom half of the ISR.
6405 * @dev_adr : address of the device structure in dma_addr_t format.
6406 * Description:
6407 * This is the tasklet or the bottom half of the ISR. This is
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006408 * an extension of the ISR which is scheduled by the scheduler to be run
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409 * 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 -07006410 * be pushed into the tasklet. For now the tasklet is used only to
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411 * replenish the Rx buffers in the Rx buffer descriptors.
6412 * Return value:
6413 * void.
6414 */
6415
6416static void s2io_tasklet(unsigned long dev_addr)
6417{
6418 struct net_device *dev = (struct net_device *) dev_addr;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006419 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420 int i, ret;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006421 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422 struct config_param *config;
6423
6424 mac_control = &sp->mac_control;
6425 config = &sp->config;
6426
6427 if (!TASKLET_IN_USE) {
6428 for (i = 0; i < config->rx_ring_num; i++) {
6429 ret = fill_rx_buffers(sp, i);
6430 if (ret == -ENOMEM) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08006431 DBG_PRINT(INFO_DBG, "%s: Out of ",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432 dev->name);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04006433 DBG_PRINT(INFO_DBG, "memory in tasklet\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434 break;
6435 } else if (ret == -EFILL) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08006436 DBG_PRINT(INFO_DBG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437 "%s: Rx Ring %d is full\n",
6438 dev->name, i);
6439 break;
6440 }
6441 }
6442 clear_bit(0, (&sp->tasklet_status));
6443 }
6444}
6445
6446/**
6447 * s2io_set_link - Set the LInk status
6448 * @data: long pointer to device private structue
6449 * Description: Sets the link status for the adapter
6450 */
6451
David Howellsc4028952006-11-22 14:57:56 +00006452static void s2io_set_link(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006454 struct s2io_nic *nic = container_of(work, struct s2io_nic, set_link_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455 struct net_device *dev = nic->dev;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006456 struct XENA_dev_config __iomem *bar0 = nic->bar0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457 register u64 val64;
6458 u16 subid;
6459
Francois Romieu22747d62007-02-15 23:37:50 +01006460 rtnl_lock();
6461
6462 if (!netif_running(dev))
6463 goto out_unlock;
6464
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006465 if (test_and_set_bit(__S2IO_STATE_LINK_TASK, &(nic->state))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466 /* The card is being reset, no point doing anything */
Francois Romieu22747d62007-02-15 23:37:50 +01006467 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468 }
6469
6470 subid = nic->pdev->subsystem_device;
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07006471 if (s2io_link_fault_indication(nic) == MAC_RMAC_ERR_TIMER) {
6472 /*
6473 * Allow a small delay for the NICs self initiated
6474 * cleanup to complete.
6475 */
6476 msleep(100);
6477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478
6479 val64 = readq(&bar0->adapter_status);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006480 if (LINK_IS_UP(val64)) {
6481 if (!(readq(&bar0->adapter_control) & ADAPTER_CNTL_EN)) {
6482 if (verify_xena_quiescence(nic)) {
6483 val64 = readq(&bar0->adapter_control);
6484 val64 |= ADAPTER_CNTL_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485 writeq(val64, &bar0->adapter_control);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006486 if (CARDS_WITH_FAULTY_LINK_INDICATORS(
6487 nic->device_type, subid)) {
6488 val64 = readq(&bar0->gpio_control);
6489 val64 |= GPIO_CTRL_GPIO_0;
6490 writeq(val64, &bar0->gpio_control);
6491 val64 = readq(&bar0->gpio_control);
6492 } else {
6493 val64 |= ADAPTER_LED_ON;
6494 writeq(val64, &bar0->adapter_control);
raghavendra.koushik@neterion.coma371a072005-08-03 12:38:59 -07006495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 nic->device_enabled_once = TRUE;
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006497 } else {
6498 DBG_PRINT(ERR_DBG, "%s: Error: ", dev->name);
6499 DBG_PRINT(ERR_DBG, "device is not Quiescent\n");
6500 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502 }
Sivakumar Subramani92c48792007-08-06 05:38:19 -04006503 val64 = readq(&bar0->adapter_control);
6504 val64 |= ADAPTER_LED_ON;
6505 writeq(val64, &bar0->adapter_control);
6506 s2io_link(nic, LINK_UP);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006507 } else {
6508 if (CARDS_WITH_FAULTY_LINK_INDICATORS(nic->device_type,
6509 subid)) {
6510 val64 = readq(&bar0->gpio_control);
6511 val64 &= ~GPIO_CTRL_GPIO_0;
6512 writeq(val64, &bar0->gpio_control);
6513 val64 = readq(&bar0->gpio_control);
6514 }
Sivakumar Subramani92c48792007-08-06 05:38:19 -04006515 /* turn off LED */
6516 val64 = readq(&bar0->adapter_control);
6517 val64 = val64 &(~ADAPTER_LED_ON);
6518 writeq(val64, &bar0->adapter_control);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006519 s2io_link(nic, LINK_DOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520 }
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006521 clear_bit(__S2IO_STATE_LINK_TASK, &(nic->state));
Francois Romieu22747d62007-02-15 23:37:50 +01006522
6523out_unlock:
Sivakumar Subramanid8d70ca2007-02-24 02:04:24 -05006524 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525}
6526
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006527static int set_rxd_buffer_pointer(struct s2io_nic *sp, struct RxD_t *rxdp,
6528 struct buffAdd *ba,
6529 struct sk_buff **skb, u64 *temp0, u64 *temp1,
6530 u64 *temp2, int size)
Ananda Raju5d3213c2006-04-21 19:23:26 -04006531{
6532 struct net_device *dev = sp->dev;
Veena Parat491abf22007-07-23 02:37:14 -04006533 struct swStat *stats = &sp->mac_control.stats_info->sw_stat;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006534
6535 if ((sp->rxd_mode == RXD_MODE_1) && (rxdp->Host_Control == 0)) {
Veena Parat6d517a22007-07-23 02:20:51 -04006536 struct RxD1 *rxdp1 = (struct RxD1 *)rxdp;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006537 /* allocate skb */
6538 if (*skb) {
6539 DBG_PRINT(INFO_DBG, "SKB is not NULL\n");
6540 /*
6541 * As Rx frame are not going to be processed,
6542 * using same mapped address for the Rxd
6543 * buffer pointer
6544 */
Veena Parat6d517a22007-07-23 02:20:51 -04006545 rxdp1->Buffer0_ptr = *temp0;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006546 } else {
6547 *skb = dev_alloc_skb(size);
6548 if (!(*skb)) {
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08006549 DBG_PRINT(INFO_DBG, "%s: Out of ", dev->name);
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04006550 DBG_PRINT(INFO_DBG, "memory to allocate ");
6551 DBG_PRINT(INFO_DBG, "1 buf mode SKBs\n");
6552 sp->mac_control.stats_info->sw_stat. \
6553 mem_alloc_fail_cnt++;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006554 return -ENOMEM ;
6555 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04006556 sp->mac_control.stats_info->sw_stat.mem_allocated
6557 += (*skb)->truesize;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006558 /* storing the mapped addr in a temp variable
6559 * such it will be used for next rxd whose
6560 * Host Control is NULL
6561 */
Veena Parat6d517a22007-07-23 02:20:51 -04006562 rxdp1->Buffer0_ptr = *temp0 =
Ananda Raju5d3213c2006-04-21 19:23:26 -04006563 pci_map_single( sp->pdev, (*skb)->data,
6564 size - NET_IP_ALIGN,
6565 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04006566 if( (rxdp1->Buffer0_ptr == 0) ||
6567 (rxdp1->Buffer0_ptr == DMA_ERROR_CODE)) {
6568 goto memalloc_failed;
6569 }
Ananda Raju5d3213c2006-04-21 19:23:26 -04006570 rxdp->Host_Control = (unsigned long) (*skb);
6571 }
6572 } else if ((sp->rxd_mode == RXD_MODE_3B) && (rxdp->Host_Control == 0)) {
Veena Parat6d517a22007-07-23 02:20:51 -04006573 struct RxD3 *rxdp3 = (struct RxD3 *)rxdp;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006574 /* Two buffer Mode */
6575 if (*skb) {
Veena Parat6d517a22007-07-23 02:20:51 -04006576 rxdp3->Buffer2_ptr = *temp2;
6577 rxdp3->Buffer0_ptr = *temp0;
6578 rxdp3->Buffer1_ptr = *temp1;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006579 } else {
6580 *skb = dev_alloc_skb(size);
David Rientjes2ceaac72006-10-30 14:19:25 -08006581 if (!(*skb)) {
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04006582 DBG_PRINT(INFO_DBG, "%s: Out of ", dev->name);
6583 DBG_PRINT(INFO_DBG, "memory to allocate ");
6584 DBG_PRINT(INFO_DBG, "2 buf mode SKBs\n");
6585 sp->mac_control.stats_info->sw_stat. \
6586 mem_alloc_fail_cnt++;
David Rientjes2ceaac72006-10-30 14:19:25 -08006587 return -ENOMEM;
6588 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04006589 sp->mac_control.stats_info->sw_stat.mem_allocated
6590 += (*skb)->truesize;
Veena Parat6d517a22007-07-23 02:20:51 -04006591 rxdp3->Buffer2_ptr = *temp2 =
Ananda Raju5d3213c2006-04-21 19:23:26 -04006592 pci_map_single(sp->pdev, (*skb)->data,
6593 dev->mtu + 4,
6594 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04006595 if( (rxdp3->Buffer2_ptr == 0) ||
6596 (rxdp3->Buffer2_ptr == DMA_ERROR_CODE)) {
6597 goto memalloc_failed;
6598 }
Veena Parat6d517a22007-07-23 02:20:51 -04006599 rxdp3->Buffer0_ptr = *temp0 =
Ananda Raju5d3213c2006-04-21 19:23:26 -04006600 pci_map_single( sp->pdev, ba->ba_0, BUF0_LEN,
6601 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04006602 if( (rxdp3->Buffer0_ptr == 0) ||
6603 (rxdp3->Buffer0_ptr == DMA_ERROR_CODE)) {
6604 pci_unmap_single (sp->pdev,
Al Viro3e847422007-08-02 19:21:30 +01006605 (dma_addr_t)rxdp3->Buffer2_ptr,
Veena Parat491abf22007-07-23 02:37:14 -04006606 dev->mtu + 4, PCI_DMA_FROMDEVICE);
6607 goto memalloc_failed;
6608 }
Ananda Raju5d3213c2006-04-21 19:23:26 -04006609 rxdp->Host_Control = (unsigned long) (*skb);
6610
6611 /* Buffer-1 will be dummy buffer not used */
Veena Parat6d517a22007-07-23 02:20:51 -04006612 rxdp3->Buffer1_ptr = *temp1 =
Ananda Raju5d3213c2006-04-21 19:23:26 -04006613 pci_map_single(sp->pdev, ba->ba_1, BUF1_LEN,
Ananda Raju5d3213c2006-04-21 19:23:26 -04006614 PCI_DMA_FROMDEVICE);
Veena Parat491abf22007-07-23 02:37:14 -04006615 if( (rxdp3->Buffer1_ptr == 0) ||
6616 (rxdp3->Buffer1_ptr == DMA_ERROR_CODE)) {
6617 pci_unmap_single (sp->pdev,
Al Viro3e847422007-08-02 19:21:30 +01006618 (dma_addr_t)rxdp3->Buffer0_ptr,
6619 BUF0_LEN, PCI_DMA_FROMDEVICE);
6620 pci_unmap_single (sp->pdev,
6621 (dma_addr_t)rxdp3->Buffer2_ptr,
Veena Parat491abf22007-07-23 02:37:14 -04006622 dev->mtu + 4, PCI_DMA_FROMDEVICE);
6623 goto memalloc_failed;
6624 }
Ananda Raju5d3213c2006-04-21 19:23:26 -04006625 }
6626 }
6627 return 0;
Veena Parat491abf22007-07-23 02:37:14 -04006628 memalloc_failed:
6629 stats->pci_map_fail_cnt++;
6630 stats->mem_freed += (*skb)->truesize;
6631 dev_kfree_skb(*skb);
6632 return -ENOMEM;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006633}
Veena Parat491abf22007-07-23 02:37:14 -04006634
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006635static void set_rxd_buffer_size(struct s2io_nic *sp, struct RxD_t *rxdp,
6636 int size)
Ananda Raju5d3213c2006-04-21 19:23:26 -04006637{
6638 struct net_device *dev = sp->dev;
6639 if (sp->rxd_mode == RXD_MODE_1) {
6640 rxdp->Control_2 = SET_BUFFER0_SIZE_1( size - NET_IP_ALIGN);
6641 } else if (sp->rxd_mode == RXD_MODE_3B) {
6642 rxdp->Control_2 = SET_BUFFER0_SIZE_3(BUF0_LEN);
6643 rxdp->Control_2 |= SET_BUFFER1_SIZE_3(1);
6644 rxdp->Control_2 |= SET_BUFFER2_SIZE_3( dev->mtu + 4);
Ananda Raju5d3213c2006-04-21 19:23:26 -04006645 }
6646}
6647
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006648static int rxd_owner_bit_reset(struct s2io_nic *sp)
Ananda Raju5d3213c2006-04-21 19:23:26 -04006649{
6650 int i, j, k, blk_cnt = 0, size;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006651 struct mac_info * mac_control = &sp->mac_control;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006652 struct config_param *config = &sp->config;
6653 struct net_device *dev = sp->dev;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006654 struct RxD_t *rxdp = NULL;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006655 struct sk_buff *skb = NULL;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006656 struct buffAdd *ba = NULL;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006657 u64 temp0_64 = 0, temp1_64 = 0, temp2_64 = 0;
6658
6659 /* Calculate the size based on ring mode */
6660 size = dev->mtu + HEADER_ETHERNET_II_802_3_SIZE +
6661 HEADER_802_2_SIZE + HEADER_SNAP_SIZE;
6662 if (sp->rxd_mode == RXD_MODE_1)
6663 size += NET_IP_ALIGN;
6664 else if (sp->rxd_mode == RXD_MODE_3B)
6665 size = dev->mtu + ALIGN_SIZE + BUF0_LEN + 4;
Ananda Raju5d3213c2006-04-21 19:23:26 -04006666
6667 for (i = 0; i < config->rx_ring_num; i++) {
6668 blk_cnt = config->rx_cfg[i].num_rxd /
6669 (rxd_count[sp->rxd_mode] +1);
6670
6671 for (j = 0; j < blk_cnt; j++) {
6672 for (k = 0; k < rxd_count[sp->rxd_mode]; k++) {
6673 rxdp = mac_control->rings[i].
6674 rx_blocks[j].rxds[k].virt_addr;
Veena Parat6d517a22007-07-23 02:20:51 -04006675 if(sp->rxd_mode == RXD_MODE_3B)
Ananda Raju5d3213c2006-04-21 19:23:26 -04006676 ba = &mac_control->rings[i].ba[j][k];
Sivakumar Subramaniac1f90d2007-02-24 02:01:31 -05006677 if (set_rxd_buffer_pointer(sp, rxdp, ba,
Ananda Raju5d3213c2006-04-21 19:23:26 -04006678 &skb,(u64 *)&temp0_64,
6679 (u64 *)&temp1_64,
Sivakumar Subramaniac1f90d2007-02-24 02:01:31 -05006680 (u64 *)&temp2_64,
6681 size) == ENOMEM) {
6682 return 0;
6683 }
Ananda Raju5d3213c2006-04-21 19:23:26 -04006684
6685 set_rxd_buffer_size(sp, rxdp, size);
6686 wmb();
6687 /* flip the Ownership bit to Hardware */
6688 rxdp->Control_1 |= RXD_OWN_XENA;
6689 }
6690 }
6691 }
6692 return 0;
6693
6694}
6695
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006696static int s2io_add_isr(struct s2io_nic * sp)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006697{
6698 int ret = 0;
6699 struct net_device *dev = sp->dev;
6700 int err = 0;
6701
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006702 if (sp->config.intr_type == MSI_X)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006703 ret = s2io_enable_msi_x(sp);
6704 if (ret) {
6705 DBG_PRINT(ERR_DBG, "%s: Defaulting to INTA\n", dev->name);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006706 sp->config.intr_type = INTA;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006707 }
6708
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006709 /* Store the values of the MSIX table in the struct s2io_nic structure */
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006710 store_xmsi_data(sp);
6711
6712 /* After proper initialization of H/W, register ISR */
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006713 if (sp->config.intr_type == MSI_X) {
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05006714 int i, msix_tx_cnt=0,msix_rx_cnt=0;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006715
6716 for (i=1; (sp->s2io_entries[i].in_use == MSIX_FLG); i++) {
6717 if (sp->s2io_entries[i].type == MSIX_FIFO_TYPE) {
6718 sprintf(sp->desc[i], "%s:MSI-X-%d-TX",
6719 dev->name, i);
6720 err = request_irq(sp->entries[i].vector,
6721 s2io_msix_fifo_handle, 0, sp->desc[i],
6722 sp->s2io_entries[i].arg);
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05006723 /* If either data or addr is zero print it */
6724 if(!(sp->msix_info[i].addr &&
6725 sp->msix_info[i].data)) {
6726 DBG_PRINT(ERR_DBG, "%s @ Addr:0x%llx"
6727 "Data:0x%lx\n",sp->desc[i],
6728 (unsigned long long)
6729 sp->msix_info[i].addr,
6730 (unsigned long)
6731 ntohl(sp->msix_info[i].data));
6732 } else {
6733 msix_tx_cnt++;
6734 }
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006735 } else {
6736 sprintf(sp->desc[i], "%s:MSI-X-%d-RX",
6737 dev->name, i);
6738 err = request_irq(sp->entries[i].vector,
6739 s2io_msix_ring_handle, 0, sp->desc[i],
6740 sp->s2io_entries[i].arg);
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05006741 /* If either data or addr is zero print it */
6742 if(!(sp->msix_info[i].addr &&
6743 sp->msix_info[i].data)) {
6744 DBG_PRINT(ERR_DBG, "%s @ Addr:0x%llx"
6745 "Data:0x%lx\n",sp->desc[i],
6746 (unsigned long long)
6747 sp->msix_info[i].addr,
6748 (unsigned long)
6749 ntohl(sp->msix_info[i].data));
6750 } else {
6751 msix_rx_cnt++;
6752 }
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006753 }
6754 if (err) {
6755 DBG_PRINT(ERR_DBG,"%s:MSI-X-%d registration "
6756 "failed\n", dev->name, i);
6757 DBG_PRINT(ERR_DBG, "Returned: %d\n", err);
6758 return -1;
6759 }
6760 sp->s2io_entries[i].in_use = MSIX_REGISTERED_SUCCESS;
6761 }
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05006762 printk("MSI-X-TX %d entries enabled\n",msix_tx_cnt);
6763 printk("MSI-X-RX %d entries enabled\n",msix_rx_cnt);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006764 }
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006765 if (sp->config.intr_type == INTA) {
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006766 err = request_irq((int) sp->pdev->irq, s2io_isr, IRQF_SHARED,
6767 sp->name, dev);
6768 if (err) {
6769 DBG_PRINT(ERR_DBG, "%s: ISR registration failed\n",
6770 dev->name);
6771 return -1;
6772 }
6773 }
6774 return 0;
6775}
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006776static void s2io_rem_isr(struct s2io_nic * sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777{
Ananda Rajuc92ca042006-04-21 19:18:03 -04006778 struct net_device *dev = sp->dev;
Sivakumar Subramanic77dd432007-08-06 05:36:28 -04006779 struct swStat *stats = &sp->mac_control.stats_info->sw_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006781 if (sp->config.intr_type == MSI_X) {
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006782 int i;
6783 u16 msi_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006785 for (i=1; (sp->s2io_entries[i].in_use ==
6786 MSIX_REGISTERED_SUCCESS); i++) {
6787 int vector = sp->entries[i].vector;
6788 void *arg = sp->s2io_entries[i].arg;
Ananda Rajuc92ca042006-04-21 19:18:03 -04006789
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07006790 synchronize_irq(vector);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006791 free_irq(vector, arg);
6792 }
Sivakumar Subramanic77dd432007-08-06 05:36:28 -04006793
6794 kfree(sp->entries);
6795 stats->mem_freed +=
6796 (MAX_REQUESTED_MSI_X * sizeof(struct msix_entry));
6797 kfree(sp->s2io_entries);
6798 stats->mem_freed +=
6799 (MAX_REQUESTED_MSI_X * sizeof(struct s2io_msix_entry));
6800 sp->entries = NULL;
6801 sp->s2io_entries = NULL;
6802
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006803 pci_read_config_word(sp->pdev, 0x42, &msi_control);
6804 msi_control &= 0xFFFE; /* Disable MSI */
6805 pci_write_config_word(sp->pdev, 0x42, msi_control);
Ananda Rajuc92ca042006-04-21 19:18:03 -04006806
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006807 pci_disable_msix(sp->pdev);
6808 } else {
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07006809 synchronize_irq(sp->pdev->irq);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006810 free_irq(sp->pdev->irq, dev);
Ananda Rajuc92ca042006-04-21 19:18:03 -04006811 }
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006812}
6813
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006814static void do_s2io_card_down(struct s2io_nic * sp, int do_io)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006815{
6816 int cnt = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006817 struct XENA_dev_config __iomem *bar0 = sp->bar0;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006818 unsigned long flags;
6819 register u64 val64 = 0;
6820
6821 del_timer_sync(&sp->alarm_timer);
6822 /* If s2io_set_link task is executing, wait till it completes. */
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006823 while (test_and_set_bit(__S2IO_STATE_LINK_TASK, &(sp->state))) {
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006824 msleep(50);
6825 }
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006826 clear_bit(__S2IO_STATE_CARD_UP, &sp->state);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006827
6828 /* disable Tx and Rx traffic on the NIC */
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006829 if (do_io)
6830 stop_nic(sp);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006831
6832 s2io_rem_isr(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833
6834 /* Kill tasklet. */
6835 tasklet_kill(&sp->task);
6836
6837 /* Check if the device is Quiescent and then Reset the NIC */
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006838 while(do_io) {
Ananda Raju5d3213c2006-04-21 19:23:26 -04006839 /* As per the HW requirement we need to replenish the
6840 * receive buffer to avoid the ring bump. Since there is
6841 * no intention of processing the Rx frame at this pointwe are
6842 * just settting the ownership bit of rxd in Each Rx
6843 * ring to HW and set the appropriate buffer size
6844 * based on the ring mode
6845 */
6846 rxd_owner_bit_reset(sp);
6847
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848 val64 = readq(&bar0->adapter_status);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006849 if (verify_xena_quiescence(sp)) {
6850 if(verify_pcc_quiescent(sp, sp->device_enabled_once))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851 break;
6852 }
6853
6854 msleep(50);
6855 cnt++;
6856 if (cnt == 10) {
6857 DBG_PRINT(ERR_DBG,
6858 "s2io_close:Device not Quiescent ");
6859 DBG_PRINT(ERR_DBG, "adaper status reads 0x%llx\n",
6860 (unsigned long long) val64);
6861 break;
6862 }
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006863 }
6864 if (do_io)
6865 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07006867 spin_lock_irqsave(&sp->tx_lock, flags);
6868 /* Free all Tx buffers */
6869 free_tx_buffers(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870 spin_unlock_irqrestore(&sp->tx_lock, flags);
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07006871
6872 /* Free all Rx buffers */
6873 spin_lock_irqsave(&sp->rx_lock, flags);
6874 free_rx_buffers(sp);
6875 spin_unlock_irqrestore(&sp->rx_lock, flags);
6876
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006877 clear_bit(__S2IO_STATE_LINK_TASK, &(sp->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878}
6879
Linas Vepstasd796fdb2007-05-14 18:37:30 -05006880static void s2io_card_down(struct s2io_nic * sp)
6881{
6882 do_s2io_card_down(sp, 1);
6883}
6884
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006885static int s2io_card_up(struct s2io_nic * sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886{
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04006887 int i, ret = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006888 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006889 struct config_param *config;
6890 struct net_device *dev = (struct net_device *) sp->dev;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006891 u16 interruptible;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006892
6893 /* Initialize the H/W I/O registers */
6894 if (init_nic(sp) != 0) {
6895 DBG_PRINT(ERR_DBG, "%s: H/W initialization failed\n",
6896 dev->name);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006897 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898 return -ENODEV;
6899 }
6900
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006901 /*
6902 * Initializing the Rx buffers. For now we are considering only 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07006903 * Rx ring and initializing buffers into 30 Rx blocks
6904 */
6905 mac_control = &sp->mac_control;
6906 config = &sp->config;
6907
6908 for (i = 0; i < config->rx_ring_num; i++) {
6909 if ((ret = fill_rx_buffers(sp, i))) {
6910 DBG_PRINT(ERR_DBG, "%s: Out of memory in Open\n",
6911 dev->name);
6912 s2io_reset(sp);
6913 free_rx_buffers(sp);
6914 return -ENOMEM;
6915 }
6916 DBG_PRINT(INFO_DBG, "Buf in ring:%d is %d:\n", i,
6917 atomic_read(&sp->rx_bufs_left[i]));
6918 }
Sivakumar Subramani19a60522007-01-31 13:30:49 -05006919 /* Maintain the state prior to the open */
6920 if (sp->promisc_flg)
6921 sp->promisc_flg = 0;
6922 if (sp->m_cast_flg) {
6923 sp->m_cast_flg = 0;
6924 sp->all_multi_pos= 0;
6925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006926
6927 /* Setting its receive mode */
6928 s2io_set_multicast(dev);
6929
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05006930 if (sp->lro) {
Ananda Rajub41477f2006-07-24 19:52:49 -04006931 /* Initialize max aggregatable pkts per session based on MTU */
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05006932 sp->lro_max_aggr_per_sess = ((1<<16) - 1) / dev->mtu;
6933 /* Check if we can use(if specified) user provided value */
6934 if (lro_max_pkts < sp->lro_max_aggr_per_sess)
6935 sp->lro_max_aggr_per_sess = lro_max_pkts;
6936 }
6937
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938 /* Enable Rx Traffic and interrupts on the NIC */
6939 if (start_nic(sp)) {
6940 DBG_PRINT(ERR_DBG, "%s: Starting NIC failed\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941 s2io_reset(sp);
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006942 free_rx_buffers(sp);
6943 return -ENODEV;
6944 }
6945
6946 /* Add interrupt service routine */
6947 if (s2io_add_isr(sp) != 0) {
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006948 if (sp->config.intr_type == MSI_X)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006949 s2io_rem_isr(sp);
6950 s2io_reset(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006951 free_rx_buffers(sp);
6952 return -ENODEV;
6953 }
6954
raghavendra.koushik@neterion.com25fff882005-08-03 12:34:11 -07006955 S2IO_TIMER_CONF(sp->alarm_timer, s2io_alarm_handle, sp, (HZ/2));
6956
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006957 /* Enable tasklet for the device */
6958 tasklet_init(&sp->task, s2io_tasklet, (unsigned long) dev);
6959
6960 /* Enable select interrupts */
Sivakumar Subramani9caab452007-09-06 06:21:54 -04006961 en_dis_err_alarms(sp, ENA_ALL_INTRS, ENABLE_INTRS);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07006962 if (sp->config.intr_type != INTA)
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006963 en_dis_able_nic_intrs(sp, ENA_ALL_INTRS, DISABLE_INTRS);
6964 else {
6965 interruptible = TX_TRAFFIC_INTR | RX_TRAFFIC_INTR;
Sivakumar Subramani9caab452007-09-06 06:21:54 -04006966 interruptible |= TX_PIC_INTR;
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006967 en_dis_able_nic_intrs(sp, interruptible, ENABLE_INTRS);
6968 }
6969
Sivakumar Subramani92b84432007-09-06 06:51:14 -04006970 set_bit(__S2IO_STATE_CARD_UP, &sp->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971 return 0;
6972}
6973
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006974/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975 * s2io_restart_nic - Resets the NIC.
6976 * @data : long pointer to the device private structure
6977 * Description:
6978 * This function is scheduled to be run by the s2io_tx_watchdog
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07006979 * function after 0.5 secs to reset the NIC. The idea is to reduce
Linus Torvalds1da177e2005-04-16 15:20:36 -07006980 * the run time of the watch dog routine which is run holding a
6981 * spin lock.
6982 */
6983
David Howellsc4028952006-11-22 14:57:56 +00006984static void s2io_restart_nic(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05006986 struct s2io_nic *sp = container_of(work, struct s2io_nic, rst_timer_task);
David Howellsc4028952006-11-22 14:57:56 +00006987 struct net_device *dev = sp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006988
Francois Romieu22747d62007-02-15 23:37:50 +01006989 rtnl_lock();
6990
6991 if (!netif_running(dev))
6992 goto out_unlock;
6993
Ananda Rajue6a8fee2006-07-06 23:58:23 -07006994 s2io_card_down(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006995 if (s2io_card_up(sp)) {
6996 DBG_PRINT(ERR_DBG, "%s: Device bring up failed\n",
6997 dev->name);
6998 }
6999 netif_wake_queue(dev);
7000 DBG_PRINT(ERR_DBG, "%s: was reset by Tx watchdog timer\n",
7001 dev->name);
Francois Romieu22747d62007-02-15 23:37:50 +01007002out_unlock:
7003 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004}
7005
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007006/**
7007 * s2io_tx_watchdog - Watchdog for transmit side.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008 * @dev : Pointer to net device structure
7009 * Description:
7010 * This function is triggered if the Tx Queue is stopped
7011 * for a pre-defined amount of time when the Interface is still up.
7012 * If the Interface is jammed in such a situation, the hardware is
7013 * reset (by s2io_close) and restarted again (by s2io_open) to
7014 * overcome any problem that might have been caused in the hardware.
7015 * Return value:
7016 * void
7017 */
7018
7019static void s2io_tx_watchdog(struct net_device *dev)
7020{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007021 struct s2io_nic *sp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007022
7023 if (netif_carrier_ok(dev)) {
Sreenivasa Honnurc53d4942007-05-10 04:18:54 -04007024 sp->mac_control.stats_info->sw_stat.watchdog_timer_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025 schedule_work(&sp->rst_timer_task);
Ananda Rajubd1034f2006-04-21 19:20:22 -04007026 sp->mac_control.stats_info->sw_stat.soft_reset_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007027 }
7028}
7029
7030/**
7031 * rx_osm_handler - To perform some OS related operations on SKB.
7032 * @sp: private member of the device structure,pointer to s2io_nic structure.
7033 * @skb : the socket buffer pointer.
7034 * @len : length of the packet
7035 * @cksum : FCS checksum of the frame.
7036 * @ring_no : the ring from which this RxD was extracted.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007037 * Description:
Ananda Rajub41477f2006-07-24 19:52:49 -04007038 * This function is called by the Rx interrupt serivce routine to perform
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039 * some OS related operations on the SKB before passing it to the upper
7040 * layers. It mainly checks if the checksum is OK, if so adds it to the
7041 * SKBs cksum variable, increments the Rx packet count and passes the SKB
7042 * to the upper layer. If the checksum is wrong, it increments the Rx
7043 * packet error count, frees the SKB and returns error.
7044 * Return value:
7045 * SUCCESS on success and -1 on failure.
7046 */
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007047static int rx_osm_handler(struct ring_info *ring_data, struct RxD_t * rxdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007049 struct s2io_nic *sp = ring_data->nic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050 struct net_device *dev = (struct net_device *) sp->dev;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007051 struct sk_buff *skb = (struct sk_buff *)
7052 ((unsigned long) rxdp->Host_Control);
7053 int ring_no = ring_data->ring_no;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054 u16 l3_csum, l4_csum;
Ananda Raju863c11a2006-04-21 19:03:13 -04007055 unsigned long long err = rxdp->Control_1 & RXD_T_CODE;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007056 struct lro *lro;
Olaf Heringf9046eb2007-06-19 22:41:10 +02007057 u8 err_mask;
Ananda Rajuda6971d2005-10-31 16:55:31 -05007058
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007059 skb->dev = dev;
Ananda Rajuc92ca042006-04-21 19:18:03 -04007060
Ananda Raju863c11a2006-04-21 19:03:13 -04007061 if (err) {
Ananda Rajubd1034f2006-04-21 19:20:22 -04007062 /* Check for parity error */
7063 if (err & 0x1) {
7064 sp->mac_control.stats_info->sw_stat.parity_err_cnt++;
7065 }
Olaf Heringf9046eb2007-06-19 22:41:10 +02007066 err_mask = err >> 48;
7067 switch(err_mask) {
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007068 case 1:
7069 sp->mac_control.stats_info->sw_stat.
7070 rx_parity_err_cnt++;
7071 break;
Ananda Rajubd1034f2006-04-21 19:20:22 -04007072
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007073 case 2:
7074 sp->mac_control.stats_info->sw_stat.
7075 rx_abort_cnt++;
7076 break;
7077
7078 case 3:
7079 sp->mac_control.stats_info->sw_stat.
7080 rx_parity_abort_cnt++;
7081 break;
7082
7083 case 4:
7084 sp->mac_control.stats_info->sw_stat.
7085 rx_rda_fail_cnt++;
7086 break;
7087
7088 case 5:
7089 sp->mac_control.stats_info->sw_stat.
7090 rx_unkn_prot_cnt++;
7091 break;
7092
7093 case 6:
7094 sp->mac_control.stats_info->sw_stat.
7095 rx_fcs_err_cnt++;
7096 break;
7097
7098 case 7:
7099 sp->mac_control.stats_info->sw_stat.
7100 rx_buf_size_err_cnt++;
7101 break;
7102
7103 case 8:
7104 sp->mac_control.stats_info->sw_stat.
7105 rx_rxd_corrupt_cnt++;
7106 break;
7107
7108 case 15:
7109 sp->mac_control.stats_info->sw_stat.
7110 rx_unkn_err_cnt++;
7111 break;
7112 }
Ananda Raju863c11a2006-04-21 19:03:13 -04007113 /*
7114 * Drop the packet if bad transfer code. Exception being
7115 * 0x5, which could be due to unsupported IPv6 extension header.
7116 * In this case, we let stack handle the packet.
7117 * Note that in this case, since checksum will be incorrect,
7118 * stack will validate the same.
7119 */
Olaf Heringf9046eb2007-06-19 22:41:10 +02007120 if (err_mask != 0x5) {
7121 DBG_PRINT(ERR_DBG, "%s: Rx error Value: 0x%x\n",
7122 dev->name, err_mask);
Ananda Raju863c11a2006-04-21 19:03:13 -04007123 sp->stats.rx_crc_errors++;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007124 sp->mac_control.stats_info->sw_stat.mem_freed
7125 += skb->truesize;
Ananda Raju863c11a2006-04-21 19:03:13 -04007126 dev_kfree_skb(skb);
7127 atomic_dec(&sp->rx_bufs_left[ring_no]);
7128 rxdp->Host_Control = 0;
7129 return 0;
7130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007133 /* Updating statistics */
Ramkrishna Vepa573608e2007-07-25 19:43:12 -07007134 sp->stats.rx_packets++;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007135 rxdp->Host_Control = 0;
Ananda Rajuda6971d2005-10-31 16:55:31 -05007136 if (sp->rxd_mode == RXD_MODE_1) {
7137 int len = RXD_GET_BUFFER0_SIZE_1(rxdp->Control_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138
Ananda Rajuda6971d2005-10-31 16:55:31 -05007139 sp->stats.rx_bytes += len;
7140 skb_put(skb, len);
7141
Veena Parat6d517a22007-07-23 02:20:51 -04007142 } else if (sp->rxd_mode == RXD_MODE_3B) {
Ananda Rajuda6971d2005-10-31 16:55:31 -05007143 int get_block = ring_data->rx_curr_get_info.block_index;
7144 int get_off = ring_data->rx_curr_get_info.offset;
7145 int buf0_len = RXD_GET_BUFFER0_SIZE_3(rxdp->Control_2);
7146 int buf2_len = RXD_GET_BUFFER2_SIZE_3(rxdp->Control_2);
7147 unsigned char *buff = skb_push(skb, buf0_len);
7148
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007149 struct buffAdd *ba = &ring_data->ba[get_block][get_off];
Ananda Rajuda6971d2005-10-31 16:55:31 -05007150 sp->stats.rx_bytes += buf0_len + buf2_len;
7151 memcpy(buff, ba->ba_0, buf0_len);
Veena Parat6d517a22007-07-23 02:20:51 -04007152 skb_put(skb, buf2_len);
Ananda Rajuda6971d2005-10-31 16:55:31 -05007153 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007154
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007155 if ((rxdp->Control_1 & TCP_OR_UDP_FRAME) && ((!sp->lro) ||
7156 (sp->lro && (!(rxdp->Control_1 & RXD_FRAME_IP_FRAG)))) &&
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007157 (sp->rx_csum)) {
7158 l3_csum = RXD_GET_L3_CKSUM(rxdp->Control_1);
7159 l4_csum = RXD_GET_L4_CKSUM(rxdp->Control_1);
7160 if ((l3_csum == L3_CKSUM_OK) && (l4_csum == L4_CKSUM_OK)) {
7161 /*
7162 * NIC verifies if the Checksum of the received
7163 * frame is Ok or not and accordingly returns
7164 * a flag in the RxD.
7165 */
7166 skb->ip_summed = CHECKSUM_UNNECESSARY;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007167 if (sp->lro) {
7168 u32 tcp_len;
7169 u8 *tcp;
7170 int ret = 0;
7171
7172 ret = s2io_club_tcp_session(skb->data, &tcp,
7173 &tcp_len, &lro, rxdp, sp);
7174 switch (ret) {
7175 case 3: /* Begin anew */
7176 lro->parent = skb;
7177 goto aggregate;
7178 case 1: /* Aggregate */
7179 {
7180 lro_append_pkt(sp, lro,
7181 skb, tcp_len);
7182 goto aggregate;
7183 }
7184 case 4: /* Flush session */
7185 {
7186 lro_append_pkt(sp, lro,
7187 skb, tcp_len);
7188 queue_rx_frame(lro->parent);
7189 clear_lro_session(lro);
7190 sp->mac_control.stats_info->
7191 sw_stat.flush_max_pkts++;
7192 goto aggregate;
7193 }
7194 case 2: /* Flush both */
7195 lro->parent->data_len =
7196 lro->frags_len;
7197 sp->mac_control.stats_info->
7198 sw_stat.sending_both++;
7199 queue_rx_frame(lro->parent);
7200 clear_lro_session(lro);
7201 goto send_up;
7202 case 0: /* sessions exceeded */
Ananda Rajuc92ca042006-04-21 19:18:03 -04007203 case -1: /* non-TCP or not
7204 * L2 aggregatable
7205 */
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007206 case 5: /*
7207 * First pkt in session not
7208 * L3/L4 aggregatable
7209 */
7210 break;
7211 default:
7212 DBG_PRINT(ERR_DBG,
7213 "%s: Samadhana!!\n",
7214 __FUNCTION__);
7215 BUG();
7216 }
7217 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007218 } else {
7219 /*
7220 * Packet with erroneous checksum, let the
7221 * upper layers deal with it.
7222 */
7223 skb->ip_summed = CHECKSUM_NONE;
7224 }
7225 } else {
7226 skb->ip_summed = CHECKSUM_NONE;
7227 }
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007228 sp->mac_control.stats_info->sw_stat.mem_freed += skb->truesize;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007229 if (!sp->lro) {
7230 skb->protocol = eth_type_trans(skb, dev);
Sivakumar Subramani926930b2007-02-24 01:59:39 -05007231 if ((sp->vlgrp && RXD_GET_VLAN_TAG(rxdp->Control_2) &&
7232 vlan_strip_flag)) {
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007233 /* Queueing the vlan frame to the upper layer */
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007234 if (napi)
7235 vlan_hwaccel_receive_skb(skb, sp->vlgrp,
7236 RXD_GET_VLAN_TAG(rxdp->Control_2));
7237 else
7238 vlan_hwaccel_rx(skb, sp->vlgrp,
7239 RXD_GET_VLAN_TAG(rxdp->Control_2));
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007240 } else {
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007241 if (napi)
7242 netif_receive_skb(skb);
7243 else
7244 netif_rx(skb);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007245 }
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007246 } else {
7247send_up:
7248 queue_rx_frame(skb);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007249 }
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007250 dev->last_rx = jiffies;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007251aggregate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252 atomic_dec(&sp->rx_bufs_left[ring_no]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007253 return SUCCESS;
7254}
7255
7256/**
7257 * s2io_link - stops/starts the Tx queue.
7258 * @sp : private member of the device structure, which is a pointer to the
7259 * s2io_nic structure.
7260 * @link : inidicates whether link is UP/DOWN.
7261 * Description:
7262 * This function stops/starts the Tx queue depending on whether the link
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007263 * status of the NIC is is down or up. This is called by the Alarm
7264 * interrupt handler whenever a link change interrupt comes up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007265 * Return value:
7266 * void.
7267 */
7268
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007269static void s2io_link(struct s2io_nic * sp, int link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007270{
7271 struct net_device *dev = (struct net_device *) sp->dev;
7272
7273 if (link != sp->last_link_state) {
7274 if (link == LINK_DOWN) {
7275 DBG_PRINT(ERR_DBG, "%s: Link down\n", dev->name);
7276 netif_carrier_off(dev);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007277 if(sp->mac_control.stats_info->sw_stat.link_up_cnt)
7278 sp->mac_control.stats_info->sw_stat.link_up_time =
7279 jiffies - sp->start_time;
7280 sp->mac_control.stats_info->sw_stat.link_down_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007281 } else {
7282 DBG_PRINT(ERR_DBG, "%s: Link Up\n", dev->name);
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007283 if (sp->mac_control.stats_info->sw_stat.link_down_cnt)
7284 sp->mac_control.stats_info->sw_stat.link_down_time =
7285 jiffies - sp->start_time;
7286 sp->mac_control.stats_info->sw_stat.link_up_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007287 netif_carrier_on(dev);
7288 }
7289 }
7290 sp->last_link_state = link;
Sreenivasa Honnur491976b2007-05-10 04:22:25 -04007291 sp->start_time = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007292}
7293
7294/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007295 * s2io_init_pci -Initialization of PCI and PCI-X configuration registers .
7296 * @sp : private member of the device structure, which is a pointer to the
Linus Torvalds1da177e2005-04-16 15:20:36 -07007297 * s2io_nic structure.
7298 * Description:
7299 * This function initializes a few of the PCI and PCI-X configuration registers
7300 * with recommended values.
7301 * Return value:
7302 * void
7303 */
7304
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007305static void s2io_init_pci(struct s2io_nic * sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306{
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007307 u16 pci_cmd = 0, pcix_cmd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308
7309 /* Enable Data Parity Error Recovery in PCI-X command register. */
7310 pci_read_config_word(sp->pdev, PCIX_COMMAND_REGISTER,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007311 &(pcix_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312 pci_write_config_word(sp->pdev, PCIX_COMMAND_REGISTER,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007313 (pcix_cmd | 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007314 pci_read_config_word(sp->pdev, PCIX_COMMAND_REGISTER,
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007315 &(pcix_cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316
7317 /* Set the PErr Response bit in PCI command register. */
7318 pci_read_config_word(sp->pdev, PCI_COMMAND, &pci_cmd);
7319 pci_write_config_word(sp->pdev, PCI_COMMAND,
7320 (pci_cmd | PCI_COMMAND_PARITY));
7321 pci_read_config_word(sp->pdev, PCI_COMMAND, &pci_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322}
7323
Ananda Raju9dc737a2006-04-21 19:05:41 -04007324static int s2io_verify_parm(struct pci_dev *pdev, u8 *dev_intr_type)
7325{
7326 if ( tx_fifo_num > 8) {
7327 DBG_PRINT(ERR_DBG, "s2io: Requested number of Tx fifos not "
7328 "supported\n");
7329 DBG_PRINT(ERR_DBG, "s2io: Default to 8 Tx fifos\n");
7330 tx_fifo_num = 8;
7331 }
7332 if ( rx_ring_num > 8) {
7333 DBG_PRINT(ERR_DBG, "s2io: Requested number of Rx rings not "
7334 "supported\n");
7335 DBG_PRINT(ERR_DBG, "s2io: Default to 8 Rx rings\n");
7336 rx_ring_num = 8;
7337 }
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007338 if (*dev_intr_type != INTA)
7339 napi = 0;
7340
Veena Parateccb8622007-07-23 02:23:54 -04007341 if ((*dev_intr_type != INTA) && (*dev_intr_type != MSI_X)) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04007342 DBG_PRINT(ERR_DBG, "s2io: Wrong intr_type requested. "
7343 "Defaulting to INTA\n");
7344 *dev_intr_type = INTA;
7345 }
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07007346
Ananda Raju9dc737a2006-04-21 19:05:41 -04007347 if ((*dev_intr_type == MSI_X) &&
7348 ((pdev->device != PCI_DEVICE_ID_HERC_WIN) &&
7349 (pdev->device != PCI_DEVICE_ID_HERC_UNI))) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007350 DBG_PRINT(ERR_DBG, "s2io: Xframe I does not support MSI_X. "
Ananda Raju9dc737a2006-04-21 19:05:41 -04007351 "Defaulting to INTA\n");
7352 *dev_intr_type = INTA;
7353 }
Sivakumar Subramanifb6a8252007-02-24 01:51:50 -05007354
Veena Parat6d517a22007-07-23 02:20:51 -04007355 if ((rx_ring_mode != 1) && (rx_ring_mode != 2)) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04007356 DBG_PRINT(ERR_DBG, "s2io: Requested ring mode not supported\n");
Veena Parat6d517a22007-07-23 02:20:51 -04007357 DBG_PRINT(ERR_DBG, "s2io: Defaulting to 1-buffer mode\n");
7358 rx_ring_mode = 1;
Ananda Raju9dc737a2006-04-21 19:05:41 -04007359 }
7360 return SUCCESS;
7361}
7362
Linus Torvalds1da177e2005-04-16 15:20:36 -07007363/**
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05007364 * rts_ds_steer - Receive traffic steering based on IPv4 or IPv6 TOS
7365 * or Traffic class respectively.
7366 * @nic: device peivate variable
7367 * Description: The function configures the receive steering to
7368 * desired receive ring.
7369 * Return Value: SUCCESS on success and
7370 * '-1' on failure (endian settings incorrect).
7371 */
7372static int rts_ds_steer(struct s2io_nic *nic, u8 ds_codepoint, u8 ring)
7373{
7374 struct XENA_dev_config __iomem *bar0 = nic->bar0;
7375 register u64 val64 = 0;
7376
7377 if (ds_codepoint > 63)
7378 return FAILURE;
7379
7380 val64 = RTS_DS_MEM_DATA(ring);
7381 writeq(val64, &bar0->rts_ds_mem_data);
7382
7383 val64 = RTS_DS_MEM_CTRL_WE |
7384 RTS_DS_MEM_CTRL_STROBE_NEW_CMD |
7385 RTS_DS_MEM_CTRL_OFFSET(ds_codepoint);
7386
7387 writeq(val64, &bar0->rts_ds_mem_ctrl);
7388
7389 return wait_for_cmd_complete(&bar0->rts_ds_mem_ctrl,
7390 RTS_DS_MEM_CTRL_STROBE_CMD_BEING_EXECUTED,
7391 S2IO_BIT_RESET);
7392}
7393
7394/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007395 * s2io_init_nic - Initialization of the adapter .
Linus Torvalds1da177e2005-04-16 15:20:36 -07007396 * @pdev : structure containing the PCI related information of the device.
7397 * @pre: List of PCI devices supported by the driver listed in s2io_tbl.
7398 * Description:
7399 * The function initializes an adapter identified by the pci_dec structure.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007400 * All OS related initialization including memory and device structure and
7401 * initlaization of the device private variable is done. Also the swapper
7402 * control register is initialized to enable read and write into the I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403 * registers of the device.
7404 * Return value:
7405 * returns 0 on success and negative on failure.
7406 */
7407
7408static int __devinit
7409s2io_init_nic(struct pci_dev *pdev, const struct pci_device_id *pre)
7410{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007411 struct s2io_nic *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413 int i, j, ret;
7414 int dma_flag = FALSE;
7415 u32 mac_up, mac_down;
7416 u64 val64 = 0, tmp64 = 0;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007417 struct XENA_dev_config __iomem *bar0 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007418 u16 subid;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007419 struct mac_info *mac_control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420 struct config_param *config;
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007421 int mode;
Ravinandan Arakalicc6e7c42005-10-04 06:41:24 -04007422 u8 dev_intr_type = intr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007423
Ananda Raju9dc737a2006-04-21 19:05:41 -04007424 if ((ret = s2io_verify_parm(pdev, &dev_intr_type)))
7425 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426
7427 if ((ret = pci_enable_device(pdev))) {
7428 DBG_PRINT(ERR_DBG,
7429 "s2io_init_nic: pci_enable_device failed\n");
7430 return ret;
7431 }
7432
Domen Puncer1e7f0bd2005-06-26 18:22:14 -04007433 if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434 DBG_PRINT(INIT_DBG, "s2io_init_nic: Using 64bit DMA\n");
7435 dma_flag = TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436 if (pci_set_consistent_dma_mask
Domen Puncer1e7f0bd2005-06-26 18:22:14 -04007437 (pdev, DMA_64BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438 DBG_PRINT(ERR_DBG,
7439 "Unable to obtain 64bit DMA for \
7440 consistent allocations\n");
7441 pci_disable_device(pdev);
7442 return -ENOMEM;
7443 }
Domen Puncer1e7f0bd2005-06-26 18:22:14 -04007444 } else if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445 DBG_PRINT(INIT_DBG, "s2io_init_nic: Using 32bit DMA\n");
7446 } else {
7447 pci_disable_device(pdev);
7448 return -ENOMEM;
7449 }
Veena Parateccb8622007-07-23 02:23:54 -04007450 if ((ret = pci_request_regions(pdev, s2io_driver_name))) {
7451 DBG_PRINT(ERR_DBG, "%s: Request Regions failed - %x \n", __FUNCTION__, ret);
7452 pci_disable_device(pdev);
7453 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007454 }
7455
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007456 dev = alloc_etherdev(sizeof(struct s2io_nic));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457 if (dev == NULL) {
7458 DBG_PRINT(ERR_DBG, "Device allocation failed\n");
7459 pci_disable_device(pdev);
7460 pci_release_regions(pdev);
7461 return -ENODEV;
7462 }
7463
7464 pci_set_master(pdev);
7465 pci_set_drvdata(pdev, dev);
7466 SET_MODULE_OWNER(dev);
7467 SET_NETDEV_DEV(dev, &pdev->dev);
7468
7469 /* Private member variable initialized to s2io NIC structure */
7470 sp = dev->priv;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007471 memset(sp, 0, sizeof(struct s2io_nic));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472 sp->dev = dev;
7473 sp->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474 sp->high_dma_flag = dma_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475 sp->device_enabled_once = FALSE;
Ananda Rajuda6971d2005-10-31 16:55:31 -05007476 if (rx_ring_mode == 1)
7477 sp->rxd_mode = RXD_MODE_1;
7478 if (rx_ring_mode == 2)
7479 sp->rxd_mode = RXD_MODE_3B;
Ananda Rajuda6971d2005-10-31 16:55:31 -05007480
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07007481 sp->config.intr_type = dev_intr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007483 if ((pdev->device == PCI_DEVICE_ID_HERC_WIN) ||
7484 (pdev->device == PCI_DEVICE_ID_HERC_UNI))
7485 sp->device_type = XFRAME_II_DEVICE;
7486 else
7487 sp->device_type = XFRAME_I_DEVICE;
7488
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007489 sp->lro = lro;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007490
Linus Torvalds1da177e2005-04-16 15:20:36 -07007491 /* Initialize some PCI/PCI-X fields of the NIC. */
7492 s2io_init_pci(sp);
7493
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007494 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007495 * Setting the device configuration parameters.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007496 * Most of these parameters can be specified by the user during
7497 * module insertion as they are module loadable parameters. If
7498 * these parameters are not not specified during load time, they
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499 * are initialized with default values.
7500 */
7501 mac_control = &sp->mac_control;
7502 config = &sp->config;
7503
Sivakumar Subramani596c5c92007-09-15 14:24:03 -07007504 config->napi = napi;
7505
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506 /* Tx side parameters. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507 config->tx_fifo_num = tx_fifo_num;
7508 for (i = 0; i < MAX_TX_FIFOS; i++) {
7509 config->tx_cfg[i].fifo_len = tx_fifo_len[i];
7510 config->tx_cfg[i].fifo_priority = i;
7511 }
7512
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007513 /* mapping the QoS priority to the configured fifos */
7514 for (i = 0; i < MAX_TX_FIFOS; i++)
7515 config->fifo_mapping[i] = fifo_map[config->tx_fifo_num][i];
7516
Linus Torvalds1da177e2005-04-16 15:20:36 -07007517 config->tx_intr_type = TXD_INT_TYPE_UTILZ;
7518 for (i = 0; i < config->tx_fifo_num; i++) {
7519 config->tx_cfg[i].f_no_snoop =
7520 (NO_SNOOP_TXD | NO_SNOOP_TXD_BUFFER);
7521 if (config->tx_cfg[i].fifo_len < 65) {
7522 config->tx_intr_type = TXD_INT_TYPE_PER_LIST;
7523 break;
7524 }
7525 }
Ananda Rajufed5ecc2005-11-14 15:25:08 -05007526 /* + 2 because one Txd for skb->data and one Txd for UFO */
7527 config->max_txds = MAX_SKB_FRAGS + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528
7529 /* Rx side parameters. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530 config->rx_ring_num = rx_ring_num;
7531 for (i = 0; i < MAX_RX_RINGS; i++) {
7532 config->rx_cfg[i].num_rxd = rx_ring_sz[i] *
Ananda Rajuda6971d2005-10-31 16:55:31 -05007533 (rxd_count[sp->rxd_mode] + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007534 config->rx_cfg[i].ring_priority = i;
7535 }
7536
7537 for (i = 0; i < rx_ring_num; i++) {
7538 config->rx_cfg[i].ring_org = RING_ORG_BUFF1;
7539 config->rx_cfg[i].f_no_snoop =
7540 (NO_SNOOP_RXD | NO_SNOOP_RXD_BUFFER);
7541 }
7542
7543 /* Setting Mac Control parameters */
7544 mac_control->rmac_pause_time = rmac_pause_time;
7545 mac_control->mc_pause_threshold_q0q3 = mc_pause_threshold_q0q3;
7546 mac_control->mc_pause_threshold_q4q7 = mc_pause_threshold_q4q7;
7547
7548
7549 /* Initialize Ring buffer parameters. */
7550 for (i = 0; i < config->rx_ring_num; i++)
7551 atomic_set(&sp->rx_bufs_left[i], 0);
7552
7553 /* initialize the shared memory used by the NIC and the host */
7554 if (init_shared_mem(sp)) {
7555 DBG_PRINT(ERR_DBG, "%s: Memory allocation failed\n",
Ananda Rajub41477f2006-07-24 19:52:49 -04007556 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557 ret = -ENOMEM;
7558 goto mem_alloc_failed;
7559 }
7560
7561 sp->bar0 = ioremap(pci_resource_start(pdev, 0),
7562 pci_resource_len(pdev, 0));
7563 if (!sp->bar0) {
Sivakumar Subramani19a60522007-01-31 13:30:49 -05007564 DBG_PRINT(ERR_DBG, "%s: Neterion: cannot remap io mem1\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07007565 dev->name);
7566 ret = -ENOMEM;
7567 goto bar0_remap_failed;
7568 }
7569
7570 sp->bar1 = ioremap(pci_resource_start(pdev, 2),
7571 pci_resource_len(pdev, 2));
7572 if (!sp->bar1) {
Sivakumar Subramani19a60522007-01-31 13:30:49 -05007573 DBG_PRINT(ERR_DBG, "%s: Neterion: cannot remap io mem2\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07007574 dev->name);
7575 ret = -ENOMEM;
7576 goto bar1_remap_failed;
7577 }
7578
7579 dev->irq = pdev->irq;
7580 dev->base_addr = (unsigned long) sp->bar0;
7581
7582 /* Initializing the BAR1 address as the start of the FIFO pointer. */
7583 for (j = 0; j < MAX_TX_FIFOS; j++) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007584 mac_control->tx_FIFO_start[j] = (struct TxFIFO_element __iomem *)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585 (sp->bar1 + (j * 0x00020000));
7586 }
7587
7588 /* Driver entry points */
7589 dev->open = &s2io_open;
7590 dev->stop = &s2io_close;
7591 dev->hard_start_xmit = &s2io_xmit;
7592 dev->get_stats = &s2io_get_stats;
7593 dev->set_multicast_list = &s2io_set_multicast;
7594 dev->do_ioctl = &s2io_ioctl;
7595 dev->change_mtu = &s2io_change_mtu;
7596 SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
raghavendra.koushik@neterion.combe3a6b02005-08-03 12:35:55 -07007597 dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
7598 dev->vlan_rx_register = s2io_vlan_rx_register;
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007599
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600 /*
7601 * will use eth_mac_addr() for dev->set_mac_address
7602 * mac address will be set every time dev->open() is called
7603 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007604 netif_napi_add(dev, &sp->napi, s2io_poll, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605
Brian Haley612eff02006-06-15 14:36:36 -04007606#ifdef CONFIG_NET_POLL_CONTROLLER
7607 dev->poll_controller = s2io_netpoll;
7608#endif
7609
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610 dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
7611 if (sp->high_dma_flag == TRUE)
7612 dev->features |= NETIF_F_HIGHDMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613 dev->features |= NETIF_F_TSO;
Herbert Xuf83ef8c2006-06-30 13:37:03 -07007614 dev->features |= NETIF_F_TSO6;
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007615 if ((sp->device_type & XFRAME_II_DEVICE) && (ufo)) {
Ananda Rajufed5ecc2005-11-14 15:25:08 -05007616 dev->features |= NETIF_F_UFO;
7617 dev->features |= NETIF_F_HW_CSUM;
7618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619
7620 dev->tx_timeout = &s2io_tx_watchdog;
7621 dev->watchdog_timeo = WATCH_DOG_TIMEOUT;
David Howellsc4028952006-11-22 14:57:56 +00007622 INIT_WORK(&sp->rst_timer_task, s2io_restart_nic);
7623 INIT_WORK(&sp->set_link_task, s2io_set_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007624
ravinandan.arakali@neterion.come960fc52005-08-12 10:15:59 -07007625 pci_save_state(sp->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626
7627 /* Setting swapper control on the NIC, for proper reset operation */
7628 if (s2io_set_swapper(sp)) {
7629 DBG_PRINT(ERR_DBG, "%s:swapper settings are wrong\n",
7630 dev->name);
7631 ret = -EAGAIN;
7632 goto set_swap_failed;
7633 }
7634
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007635 /* Verify if the Herc works on the slot its placed into */
7636 if (sp->device_type & XFRAME_II_DEVICE) {
7637 mode = s2io_verify_pci_mode(sp);
7638 if (mode < 0) {
7639 DBG_PRINT(ERR_DBG, "%s: ", __FUNCTION__);
7640 DBG_PRINT(ERR_DBG, " Unsupported PCI bus mode\n");
7641 ret = -EBADSLT;
7642 goto set_swap_failed;
7643 }
7644 }
7645
7646 /* Not needed for Herc */
7647 if (sp->device_type & XFRAME_I_DEVICE) {
7648 /*
7649 * Fix for all "FFs" MAC address problems observed on
7650 * Alpha platforms
7651 */
7652 fix_mac_address(sp);
7653 s2io_reset(sp);
7654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007655
7656 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07007657 * MAC address initialization.
7658 * For now only one mac address will be read and used.
7659 */
7660 bar0 = sp->bar0;
7661 val64 = RMAC_ADDR_CMD_MEM_RD | RMAC_ADDR_CMD_MEM_STROBE_NEW_CMD |
7662 RMAC_ADDR_CMD_MEM_OFFSET(0 + MAC_MAC_ADDR_START_OFFSET);
7663 writeq(val64, &bar0->rmac_addr_cmd_mem);
Ananda Rajuc92ca042006-04-21 19:18:03 -04007664 wait_for_cmd_complete(&bar0->rmac_addr_cmd_mem,
Sivakumar Subramani9fc93a42007-02-24 01:57:32 -05007665 RMAC_ADDR_CMD_MEM_STROBE_CMD_EXECUTING, S2IO_BIT_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666 tmp64 = readq(&bar0->rmac_addr_data0_mem);
7667 mac_down = (u32) tmp64;
7668 mac_up = (u32) (tmp64 >> 32);
7669
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670 sp->def_mac_addr[0].mac_addr[3] = (u8) (mac_up);
7671 sp->def_mac_addr[0].mac_addr[2] = (u8) (mac_up >> 8);
7672 sp->def_mac_addr[0].mac_addr[1] = (u8) (mac_up >> 16);
7673 sp->def_mac_addr[0].mac_addr[0] = (u8) (mac_up >> 24);
7674 sp->def_mac_addr[0].mac_addr[5] = (u8) (mac_down >> 16);
7675 sp->def_mac_addr[0].mac_addr[4] = (u8) (mac_down >> 24);
7676
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677 /* Set the factory defined MAC address initially */
7678 dev->addr_len = ETH_ALEN;
7679 memcpy(dev->dev_addr, sp->def_mac_addr, ETH_ALEN);
7680
Sivakumar Subramanic77dd432007-08-06 05:36:28 -04007681 /* Store the values of the MSIX table in the s2io_nic structure */
7682 store_xmsi_data(sp);
Ananda Rajub41477f2006-07-24 19:52:49 -04007683 /* reset Nic and bring it to known state */
7684 s2io_reset(sp);
7685
Linus Torvalds1da177e2005-04-16 15:20:36 -07007686 /*
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007687 * Initialize the tasklet status and link state flags
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007688 * and the card state parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -07007689 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007690 sp->tasklet_status = 0;
Sivakumar Subramani92b84432007-09-06 06:51:14 -04007691 sp->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693 /* Initialize spinlocks */
7694 spin_lock_init(&sp->tx_lock);
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007695
7696 if (!napi)
7697 spin_lock_init(&sp->put_lock);
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07007698 spin_lock_init(&sp->rx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007700 /*
7701 * SXE-002: Configure link and activity LED to init state
7702 * on driver load.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007703 */
7704 subid = sp->pdev->subsystem_device;
7705 if ((subid & 0xFF) >= 0x07) {
7706 val64 = readq(&bar0->gpio_control);
7707 val64 |= 0x0000800000000000ULL;
7708 writeq(val64, &bar0->gpio_control);
7709 val64 = 0x0411040400000000ULL;
7710 writeq(val64, (void __iomem *) bar0 + 0x2700);
7711 val64 = readq(&bar0->gpio_control);
7712 }
7713
7714 sp->rx_csum = 1; /* Rx chksum verify enabled by default */
7715
7716 if (register_netdev(dev)) {
7717 DBG_PRINT(ERR_DBG, "Device registration failed\n");
7718 ret = -ENODEV;
7719 goto register_failed;
7720 }
Ananda Raju9dc737a2006-04-21 19:05:41 -04007721 s2io_vpd_read(sp);
Ramkrishna Vepa0c61ed52007-03-09 18:28:32 -08007722 DBG_PRINT(ERR_DBG, "Copyright(c) 2002-2007 Neterion Inc.\n");
Ananda Rajub41477f2006-07-24 19:52:49 -04007723 DBG_PRINT(ERR_DBG, "%s: Neterion %s (rev %d)\n",dev->name,
Auke Kok44c10132007-06-08 15:46:36 -07007724 sp->product_name, pdev->revision);
Ananda Rajub41477f2006-07-24 19:52:49 -04007725 DBG_PRINT(ERR_DBG, "%s: Driver version %s\n", dev->name,
7726 s2io_driver_version);
Ananda Raju9dc737a2006-04-21 19:05:41 -04007727 DBG_PRINT(ERR_DBG, "%s: MAC ADDR: "
Sivakumar Subramani19a60522007-01-31 13:30:49 -05007728 "%02x:%02x:%02x:%02x:%02x:%02x", dev->name,
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007729 sp->def_mac_addr[0].mac_addr[0],
7730 sp->def_mac_addr[0].mac_addr[1],
7731 sp->def_mac_addr[0].mac_addr[2],
7732 sp->def_mac_addr[0].mac_addr[3],
7733 sp->def_mac_addr[0].mac_addr[4],
7734 sp->def_mac_addr[0].mac_addr[5]);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05007735 DBG_PRINT(ERR_DBG, "SERIAL NUMBER: %s\n", sp->serial_num);
Ananda Raju9dc737a2006-04-21 19:05:41 -04007736 if (sp->device_type & XFRAME_II_DEVICE) {
raghavendra.koushik@neterion.com0b1f7eb2005-08-03 12:39:56 -07007737 mode = s2io_print_pci_mode(sp);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007738 if (mode < 0) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04007739 DBG_PRINT(ERR_DBG, " Unsupported PCI bus mode\n");
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007740 ret = -EBADSLT;
Ananda Raju9dc737a2006-04-21 19:05:41 -04007741 unregister_netdev(dev);
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007742 goto set_swap_failed;
7743 }
raghavendra.koushik@neterion.com541ae682005-08-03 12:36:55 -07007744 }
Ananda Raju9dc737a2006-04-21 19:05:41 -04007745 switch(sp->rxd_mode) {
7746 case RXD_MODE_1:
7747 DBG_PRINT(ERR_DBG, "%s: 1-Buffer receive mode enabled\n",
7748 dev->name);
7749 break;
7750 case RXD_MODE_3B:
7751 DBG_PRINT(ERR_DBG, "%s: 2-Buffer receive mode enabled\n",
7752 dev->name);
7753 break;
Ananda Raju9dc737a2006-04-21 19:05:41 -04007754 }
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007755
7756 if (napi)
7757 DBG_PRINT(ERR_DBG, "%s: NAPI enabled\n", dev->name);
Sivakumar Subramanieaae7f72007-09-15 14:14:22 -07007758 switch(sp->config.intr_type) {
Ananda Raju9dc737a2006-04-21 19:05:41 -04007759 case INTA:
7760 DBG_PRINT(ERR_DBG, "%s: Interrupt type INTA\n", dev->name);
7761 break;
Ananda Raju9dc737a2006-04-21 19:05:41 -04007762 case MSI_X:
7763 DBG_PRINT(ERR_DBG, "%s: Interrupt type MSI-X\n", dev->name);
7764 break;
7765 }
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007766 if (sp->lro)
7767 DBG_PRINT(ERR_DBG, "%s: Large receive offload enabled\n",
Ananda Raju9dc737a2006-04-21 19:05:41 -04007768 dev->name);
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05007769 if (ufo)
7770 DBG_PRINT(ERR_DBG, "%s: UDP Fragmentation Offload(UFO)"
7771 " enabled\n", dev->name);
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07007772 /* Initialize device name */
Ananda Raju9dc737a2006-04-21 19:05:41 -04007773 sprintf(sp->name, "%s Neterion %s", dev->name, sp->product_name);
raghavendra.koushik@neterion.com7ba013a2005-08-03 12:29:20 -07007774
raghavendra.koushik@neterion.comb6e3f982005-08-03 12:38:01 -07007775 /* Initialize bimodal Interrupts */
7776 sp->config.bimodal = bimodal;
7777 if (!(sp->device_type & XFRAME_II_DEVICE) && bimodal) {
7778 sp->config.bimodal = 0;
7779 DBG_PRINT(ERR_DBG,"%s:Bimodal intr not supported by Xframe I\n",
7780 dev->name);
7781 }
7782
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007783 /*
7784 * Make Link state as off at this point, when the Link change
7785 * interrupt comes the state will be automatically changed to
Linus Torvalds1da177e2005-04-16 15:20:36 -07007786 * the right state.
7787 */
7788 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007789
7790 return 0;
7791
7792 register_failed:
7793 set_swap_failed:
7794 iounmap(sp->bar1);
7795 bar1_remap_failed:
7796 iounmap(sp->bar0);
7797 bar0_remap_failed:
7798 mem_alloc_failed:
7799 free_shared_mem(sp);
7800 pci_disable_device(pdev);
Veena Parateccb8622007-07-23 02:23:54 -04007801 pci_release_regions(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007802 pci_set_drvdata(pdev, NULL);
7803 free_netdev(dev);
7804
7805 return ret;
7806}
7807
7808/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007809 * s2io_rem_nic - Free the PCI device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810 * @pdev: structure containing the PCI related information of the device.
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007811 * Description: This function is called by the Pci subsystem to release a
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812 * PCI device and free up all resource held up by the device. This could
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007813 * be in response to a Hot plug event or when the driver is to be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -07007814 * from memory.
7815 */
7816
7817static void __devexit s2io_rem_nic(struct pci_dev *pdev)
7818{
7819 struct net_device *dev =
7820 (struct net_device *) pci_get_drvdata(pdev);
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007821 struct s2io_nic *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822
7823 if (dev == NULL) {
7824 DBG_PRINT(ERR_DBG, "Driver Data is NULL!!\n");
7825 return;
7826 }
7827
Francois Romieu22747d62007-02-15 23:37:50 +01007828 flush_scheduled_work();
7829
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830 sp = dev->priv;
7831 unregister_netdev(dev);
7832
7833 free_shared_mem(sp);
7834 iounmap(sp->bar0);
7835 iounmap(sp->bar1);
Veena Parateccb8622007-07-23 02:23:54 -04007836 pci_release_regions(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007837 pci_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007838 free_netdev(dev);
Sivakumar Subramani19a60522007-01-31 13:30:49 -05007839 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007840}
7841
7842/**
7843 * s2io_starter - Entry point for the driver
7844 * Description: This function is the entry point for the driver. It verifies
7845 * the module loadable parameters and initializes PCI configuration space.
7846 */
7847
7848int __init s2io_starter(void)
7849{
Jeff Garzik29917622006-08-19 17:48:59 -04007850 return pci_register_driver(&s2io_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007851}
7852
7853/**
raghavendra.koushik@neterion.com20346722005-08-03 12:24:33 -07007854 * s2io_closer - Cleanup routine for the driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855 * Description: This function is the cleanup routine for the driver. It unregist * ers the driver.
7856 */
7857
Sivakumar Subramani372cc592007-01-31 13:32:57 -05007858static __exit void s2io_closer(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007859{
7860 pci_unregister_driver(&s2io_driver);
7861 DBG_PRINT(INIT_DBG, "cleanup done\n");
7862}
7863
7864module_init(s2io_starter);
7865module_exit(s2io_closer);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007866
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007867static int check_L2_lro_capable(u8 *buffer, struct iphdr **ip,
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007868 struct tcphdr **tcp, struct RxD_t *rxdp)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007869{
7870 int ip_off;
7871 u8 l2_type = (u8)((rxdp->Control_1 >> 37) & 0x7), ip_len;
7872
7873 if (!(rxdp->Control_1 & RXD_FRAME_PROTO_TCP)) {
7874 DBG_PRINT(INIT_DBG,"%s: Non-TCP frames not supported for LRO\n",
7875 __FUNCTION__);
7876 return -1;
7877 }
7878
7879 /* TODO:
7880 * By default the VLAN field in the MAC is stripped by the card, if this
7881 * feature is turned off in rx_pa_cfg register, then the ip_off field
7882 * has to be shifted by a further 2 bytes
7883 */
7884 switch (l2_type) {
7885 case 0: /* DIX type */
7886 case 4: /* DIX type with VLAN */
7887 ip_off = HEADER_ETHERNET_II_802_3_SIZE;
7888 break;
7889 /* LLC, SNAP etc are considered non-mergeable */
7890 default:
7891 return -1;
7892 }
7893
7894 *ip = (struct iphdr *)((u8 *)buffer + ip_off);
7895 ip_len = (u8)((*ip)->ihl);
7896 ip_len <<= 2;
7897 *tcp = (struct tcphdr *)((unsigned long)*ip + ip_len);
7898
7899 return 0;
7900}
7901
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007902static int check_for_socket_match(struct lro *lro, struct iphdr *ip,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007903 struct tcphdr *tcp)
7904{
7905 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
7906 if ((lro->iph->saddr != ip->saddr) || (lro->iph->daddr != ip->daddr) ||
7907 (lro->tcph->source != tcp->source) || (lro->tcph->dest != tcp->dest))
7908 return -1;
7909 return 0;
7910}
7911
7912static inline int get_l4_pyld_length(struct iphdr *ip, struct tcphdr *tcp)
7913{
7914 return(ntohs(ip->tot_len) - (ip->ihl << 2) - (tcp->doff << 2));
7915}
7916
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007917static void initiate_new_session(struct lro *lro, u8 *l2h,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007918 struct iphdr *ip, struct tcphdr *tcp, u32 tcp_pyld_len)
7919{
7920 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
7921 lro->l2h = l2h;
7922 lro->iph = ip;
7923 lro->tcph = tcp;
7924 lro->tcp_next_seq = tcp_pyld_len + ntohl(tcp->seq);
7925 lro->tcp_ack = ntohl(tcp->ack_seq);
7926 lro->sg_num = 1;
7927 lro->total_len = ntohs(ip->tot_len);
7928 lro->frags_len = 0;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007929 /*
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007930 * check if we saw TCP timestamp. Other consistency checks have
7931 * already been done.
7932 */
7933 if (tcp->doff == 8) {
7934 u32 *ptr;
7935 ptr = (u32 *)(tcp+1);
7936 lro->saw_ts = 1;
7937 lro->cur_tsval = *(ptr+1);
7938 lro->cur_tsecr = *(ptr+2);
7939 }
7940 lro->in_use = 1;
7941}
7942
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007943static void update_L3L4_header(struct s2io_nic *sp, struct lro *lro)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007944{
7945 struct iphdr *ip = lro->iph;
7946 struct tcphdr *tcp = lro->tcph;
Al Virobd4f3ae2007-02-09 16:40:15 +00007947 __sum16 nchk;
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007948 struct stat_block *statinfo = sp->mac_control.stats_info;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007949 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
7950
7951 /* Update L3 header */
7952 ip->tot_len = htons(lro->total_len);
7953 ip->check = 0;
7954 nchk = ip_fast_csum((u8 *)lro->iph, ip->ihl);
7955 ip->check = nchk;
7956
7957 /* Update L4 header */
7958 tcp->ack_seq = lro->tcp_ack;
7959 tcp->window = lro->window;
7960
7961 /* Update tsecr field if this session has timestamps enabled */
7962 if (lro->saw_ts) {
7963 u32 *ptr = (u32 *)(tcp + 1);
7964 *(ptr+2) = lro->cur_tsecr;
7965 }
7966
7967 /* Update counters required for calculation of
7968 * average no. of packets aggregated.
7969 */
7970 statinfo->sw_stat.sum_avg_pkts_aggregated += lro->sg_num;
7971 statinfo->sw_stat.num_aggregations++;
7972}
7973
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007974static void aggregate_new_rx(struct lro *lro, struct iphdr *ip,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007975 struct tcphdr *tcp, u32 l4_pyld)
7976{
7977 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
7978 lro->total_len += l4_pyld;
7979 lro->frags_len += l4_pyld;
7980 lro->tcp_next_seq += l4_pyld;
7981 lro->sg_num++;
7982
7983 /* Update ack seq no. and window ad(from this pkt) in LRO object */
7984 lro->tcp_ack = tcp->ack_seq;
7985 lro->window = tcp->window;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007986
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007987 if (lro->saw_ts) {
7988 u32 *ptr;
7989 /* Update tsecr and tsval from this packet */
7990 ptr = (u32 *) (tcp + 1);
Jeff Garzik6aa20a22006-09-13 13:24:59 -04007991 lro->cur_tsval = *(ptr + 1);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007992 lro->cur_tsecr = *(ptr + 2);
7993 }
7994}
7995
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05007996static int verify_l3_l4_lro_capable(struct lro *l_lro, struct iphdr *ip,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007997 struct tcphdr *tcp, u32 tcp_pyld_len)
7998{
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05007999 u8 *ptr;
8000
Andrew Morton79dc1902006-02-03 01:45:13 -08008001 DBG_PRINT(INFO_DBG,"%s: Been here...\n", __FUNCTION__);
8002
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008003 if (!tcp_pyld_len) {
8004 /* Runt frame or a pure ack */
8005 return -1;
8006 }
8007
8008 if (ip->ihl != 5) /* IP has options */
8009 return -1;
8010
Ananda Raju75c30b12006-07-24 19:55:09 -04008011 /* If we see CE codepoint in IP header, packet is not mergeable */
8012 if (INET_ECN_is_ce(ipv4_get_dsfield(ip)))
8013 return -1;
8014
8015 /* If we see ECE or CWR flags in TCP header, packet is not mergeable */
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008016 if (tcp->urg || tcp->psh || tcp->rst || tcp->syn || tcp->fin ||
Ananda Raju75c30b12006-07-24 19:55:09 -04008017 tcp->ece || tcp->cwr || !tcp->ack) {
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008018 /*
8019 * Currently recognize only the ack control word and
8020 * any other control field being set would result in
8021 * flushing the LRO session
8022 */
8023 return -1;
8024 }
8025
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008026 /*
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008027 * Allow only one TCP timestamp option. Don't aggregate if
8028 * any other options are detected.
8029 */
8030 if (tcp->doff != 5 && tcp->doff != 8)
8031 return -1;
8032
8033 if (tcp->doff == 8) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008034 ptr = (u8 *)(tcp + 1);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008035 while (*ptr == TCPOPT_NOP)
8036 ptr++;
8037 if (*ptr != TCPOPT_TIMESTAMP || *(ptr+1) != TCPOLEN_TIMESTAMP)
8038 return -1;
8039
8040 /* Ensure timestamp value increases monotonically */
8041 if (l_lro)
8042 if (l_lro->cur_tsval > *((u32 *)(ptr+2)))
8043 return -1;
8044
8045 /* timestamp echo reply should be non-zero */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04008046 if (*((u32 *)(ptr+6)) == 0)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008047 return -1;
8048 }
8049
8050 return 0;
8051}
8052
8053static int
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008054s2io_club_tcp_session(u8 *buffer, u8 **tcp, u32 *tcp_len, struct lro **lro,
8055 struct RxD_t *rxdp, struct s2io_nic *sp)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008056{
8057 struct iphdr *ip;
8058 struct tcphdr *tcph;
8059 int ret = 0, i;
8060
8061 if (!(ret = check_L2_lro_capable(buffer, &ip, (struct tcphdr **)tcp,
8062 rxdp))) {
8063 DBG_PRINT(INFO_DBG,"IP Saddr: %x Daddr: %x\n",
8064 ip->saddr, ip->daddr);
8065 } else {
8066 return ret;
8067 }
8068
8069 tcph = (struct tcphdr *)*tcp;
8070 *tcp_len = get_l4_pyld_length(ip, tcph);
8071 for (i=0; i<MAX_LRO_SESSIONS; i++) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008072 struct lro *l_lro = &sp->lro0_n[i];
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008073 if (l_lro->in_use) {
8074 if (check_for_socket_match(l_lro, ip, tcph))
8075 continue;
8076 /* Sock pair matched */
8077 *lro = l_lro;
8078
8079 if ((*lro)->tcp_next_seq != ntohl(tcph->seq)) {
8080 DBG_PRINT(INFO_DBG, "%s:Out of order. expected "
8081 "0x%x, actual 0x%x\n", __FUNCTION__,
8082 (*lro)->tcp_next_seq,
8083 ntohl(tcph->seq));
8084
8085 sp->mac_control.stats_info->
8086 sw_stat.outof_sequence_pkts++;
8087 ret = 2;
8088 break;
8089 }
8090
8091 if (!verify_l3_l4_lro_capable(l_lro, ip, tcph,*tcp_len))
8092 ret = 1; /* Aggregate */
8093 else
8094 ret = 2; /* Flush both */
8095 break;
8096 }
8097 }
8098
8099 if (ret == 0) {
8100 /* Before searching for available LRO objects,
8101 * check if the pkt is L3/L4 aggregatable. If not
8102 * don't create new LRO session. Just send this
8103 * packet up.
8104 */
8105 if (verify_l3_l4_lro_capable(NULL, ip, tcph, *tcp_len)) {
8106 return 5;
8107 }
8108
8109 for (i=0; i<MAX_LRO_SESSIONS; i++) {
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008110 struct lro *l_lro = &sp->lro0_n[i];
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008111 if (!(l_lro->in_use)) {
8112 *lro = l_lro;
8113 ret = 3; /* Begin anew */
8114 break;
8115 }
8116 }
8117 }
8118
8119 if (ret == 0) { /* sessions exceeded */
8120 DBG_PRINT(INFO_DBG,"%s:All LRO sessions already in use\n",
8121 __FUNCTION__);
8122 *lro = NULL;
8123 return ret;
8124 }
8125
8126 switch (ret) {
8127 case 3:
8128 initiate_new_session(*lro, buffer, ip, tcph, *tcp_len);
8129 break;
8130 case 2:
8131 update_L3L4_header(sp, *lro);
8132 break;
8133 case 1:
8134 aggregate_new_rx(*lro, ip, tcph, *tcp_len);
8135 if ((*lro)->sg_num == sp->lro_max_aggr_per_sess) {
8136 update_L3L4_header(sp, *lro);
8137 ret = 4; /* Flush the LRO */
8138 }
8139 break;
8140 default:
8141 DBG_PRINT(ERR_DBG,"%s:Dont know, can't say!!\n",
8142 __FUNCTION__);
8143 break;
8144 }
8145
8146 return ret;
8147}
8148
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008149static void clear_lro_session(struct lro *lro)
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008150{
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008151 static u16 lro_struct_size = sizeof(struct lro);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008152
8153 memset(lro, 0, lro_struct_size);
8154}
8155
8156static void queue_rx_frame(struct sk_buff *skb)
8157{
8158 struct net_device *dev = skb->dev;
8159
8160 skb->protocol = eth_type_trans(skb, dev);
Sivakumar Subramanidb874e62007-01-31 13:28:08 -05008161 if (napi)
8162 netif_receive_skb(skb);
8163 else
8164 netif_rx(skb);
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008165}
8166
Ralf Baechle1ee6dd72007-01-31 14:09:29 -05008167static void lro_append_pkt(struct s2io_nic *sp, struct lro *lro,
8168 struct sk_buff *skb,
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008169 u32 tcp_len)
8170{
Ananda Raju75c30b12006-07-24 19:55:09 -04008171 struct sk_buff *first = lro->parent;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008172
8173 first->len += tcp_len;
8174 first->data_len = lro->frags_len;
8175 skb_pull(skb, (skb->len - tcp_len));
Ananda Raju75c30b12006-07-24 19:55:09 -04008176 if (skb_shinfo(first)->frag_list)
8177 lro->last_frag->next = skb;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008178 else
8179 skb_shinfo(first)->frag_list = skb;
Sivakumar Subramani372cc592007-01-31 13:32:57 -05008180 first->truesize += skb->truesize;
Ananda Raju75c30b12006-07-24 19:55:09 -04008181 lro->last_frag = skb;
Ravinandan Arakali7d3d04392006-01-25 14:53:07 -05008182 sp->mac_control.stats_info->sw_stat.clubbed_frms_cnt++;
8183 return;
8184}
Linas Vepstasd796fdb2007-05-14 18:37:30 -05008185
8186/**
8187 * s2io_io_error_detected - called when PCI error is detected
8188 * @pdev: Pointer to PCI device
Rolf Eike Beer8453d432007-07-10 11:58:02 +02008189 * @state: The current pci connection state
Linas Vepstasd796fdb2007-05-14 18:37:30 -05008190 *
8191 * This function is called after a PCI bus error affecting
8192 * this device has been detected.
8193 */
8194static pci_ers_result_t s2io_io_error_detected(struct pci_dev *pdev,
8195 pci_channel_state_t state)
8196{
8197 struct net_device *netdev = pci_get_drvdata(pdev);
8198 struct s2io_nic *sp = netdev->priv;
8199
8200 netif_device_detach(netdev);
8201
8202 if (netif_running(netdev)) {
8203 /* Bring down the card, while avoiding PCI I/O */
8204 do_s2io_card_down(sp, 0);
Linas Vepstasd796fdb2007-05-14 18:37:30 -05008205 }
8206 pci_disable_device(pdev);
8207
8208 return PCI_ERS_RESULT_NEED_RESET;
8209}
8210
8211/**
8212 * s2io_io_slot_reset - called after the pci bus has been reset.
8213 * @pdev: Pointer to PCI device
8214 *
8215 * Restart the card from scratch, as if from a cold-boot.
8216 * At this point, the card has exprienced a hard reset,
8217 * followed by fixups by BIOS, and has its config space
8218 * set up identically to what it was at cold boot.
8219 */
8220static pci_ers_result_t s2io_io_slot_reset(struct pci_dev *pdev)
8221{
8222 struct net_device *netdev = pci_get_drvdata(pdev);
8223 struct s2io_nic *sp = netdev->priv;
8224
8225 if (pci_enable_device(pdev)) {
8226 printk(KERN_ERR "s2io: "
8227 "Cannot re-enable PCI device after reset.\n");
8228 return PCI_ERS_RESULT_DISCONNECT;
8229 }
8230
8231 pci_set_master(pdev);
8232 s2io_reset(sp);
8233
8234 return PCI_ERS_RESULT_RECOVERED;
8235}
8236
8237/**
8238 * s2io_io_resume - called when traffic can start flowing again.
8239 * @pdev: Pointer to PCI device
8240 *
8241 * This callback is called when the error recovery driver tells
8242 * us that its OK to resume normal operation.
8243 */
8244static void s2io_io_resume(struct pci_dev *pdev)
8245{
8246 struct net_device *netdev = pci_get_drvdata(pdev);
8247 struct s2io_nic *sp = netdev->priv;
8248
8249 if (netif_running(netdev)) {
8250 if (s2io_card_up(sp)) {
8251 printk(KERN_ERR "s2io: "
8252 "Can't bring device back up after reset.\n");
8253 return;
8254 }
8255
8256 if (s2io_set_mac_addr(netdev, netdev->dev_addr) == FAILURE) {
8257 s2io_card_down(sp);
8258 printk(KERN_ERR "s2io: "
8259 "Can't resetore mac addr after reset.\n");
8260 return;
8261 }
8262 }
8263
8264 netif_device_attach(netdev);
8265 netif_wake_queue(netdev);
8266}