vxge: correct eprom version detection
[deliverable/linux.git] / drivers / net / vxge / vxge-main.c
CommitLineData
703da5a1
RV
1/******************************************************************************
2* This software may be used and distributed according to the terms of
3* the GNU General Public License (GPL), incorporated herein by reference.
4* Drivers based on or derived from this code fall under the GPL and must
5* retain the authorship, copyright and license notice. This file is not
6* a complete program and may only be used when the entire operating
7* system is licensed under the GPL.
8* See the file COPYING in this distribution for more information.
9*
926bd900 10* vxge-main.c: Driver for Exar Corp's X3100 Series 10GbE PCIe I/O
703da5a1 11* Virtualized Server Adapter.
926bd900 12* Copyright(c) 2002-2010 Exar Corp.
703da5a1
RV
13*
14* The module loadable parameters that are supported by the driver and a brief
15* explanation of all the variables:
16* vlan_tag_strip:
17* Strip VLAN Tag enable/disable. Instructs the device to remove
18* the VLAN tag from all received tagged frames that are not
19* replicated at the internal L2 switch.
20* 0 - Do not strip the VLAN tag.
21* 1 - Strip the VLAN tag.
22*
23* addr_learn_en:
24* Enable learning the mac address of the guest OS interface in
25* a virtualization environment.
26* 0 - DISABLE
27* 1 - ENABLE
28*
29* max_config_port:
30* Maximum number of port to be supported.
31* MIN -1 and MAX - 2
32*
33* max_config_vpath:
34* This configures the maximum no of VPATH configures for each
35* device function.
36* MIN - 1 and MAX - 17
37*
38* max_config_dev:
39* This configures maximum no of Device function to be enabled.
40* MIN - 1 and MAX - 17
41*
42******************************************************************************/
43
75f5e1c6
JP
44#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
45
703da5a1
RV
46#include <linux/if_vlan.h>
47#include <linux/pci.h>
5a0e3ad6 48#include <linux/slab.h>
2b05e002 49#include <linux/tcp.h>
703da5a1
RV
50#include <net/ip.h>
51#include <linux/netdevice.h>
52#include <linux/etherdevice.h>
e8ac1756 53#include <linux/firmware.h>
b81b3733 54#include <linux/net_tstamp.h>
703da5a1
RV
55#include "vxge-main.h"
56#include "vxge-reg.h"
57
58MODULE_LICENSE("Dual BSD/GPL");
59MODULE_DESCRIPTION("Neterion's X3100 Series 10GbE PCIe I/O"
60 "Virtualized Server Adapter");
61
a3aa1884 62static DEFINE_PCI_DEVICE_TABLE(vxge_id_table) = {
703da5a1
RV
63 {PCI_VENDOR_ID_S2IO, PCI_DEVICE_ID_TITAN_WIN, PCI_ANY_ID,
64 PCI_ANY_ID},
65 {PCI_VENDOR_ID_S2IO, PCI_DEVICE_ID_TITAN_UNI, PCI_ANY_ID,
66 PCI_ANY_ID},
67 {0}
68};
69
70MODULE_DEVICE_TABLE(pci, vxge_id_table);
71
72VXGE_MODULE_PARAM_INT(vlan_tag_strip, VXGE_HW_VPATH_RPA_STRIP_VLAN_TAG_ENABLE);
73VXGE_MODULE_PARAM_INT(addr_learn_en, VXGE_HW_MAC_ADDR_LEARN_DEFAULT);
74VXGE_MODULE_PARAM_INT(max_config_port, VXGE_MAX_CONFIG_PORT);
75VXGE_MODULE_PARAM_INT(max_config_vpath, VXGE_USE_DEFAULT);
76VXGE_MODULE_PARAM_INT(max_mac_vpath, VXGE_MAX_MAC_ADDR_COUNT);
77VXGE_MODULE_PARAM_INT(max_config_dev, VXGE_MAX_CONFIG_DEV);
78
79static u16 vpath_selector[VXGE_HW_MAX_VIRTUAL_PATHS] =
80 {0, 1, 3, 3, 7, 7, 7, 7, 15, 15, 15, 15, 15, 15, 15, 15, 31};
81static unsigned int bw_percentage[VXGE_HW_MAX_VIRTUAL_PATHS] =
82 {[0 ...(VXGE_HW_MAX_VIRTUAL_PATHS - 1)] = 0xFF};
83module_param_array(bw_percentage, uint, NULL, 0);
84
85static struct vxge_drv_config *driver_config;
86
87static inline int is_vxge_card_up(struct vxgedev *vdev)
88{
89 return test_bit(__VXGE_STATE_CARD_UP, &vdev->state);
90}
91
92static inline void VXGE_COMPLETE_VPATH_TX(struct vxge_fifo *fifo)
93{
ff67df55
BL
94 struct sk_buff **skb_ptr = NULL;
95 struct sk_buff **temp;
96#define NR_SKB_COMPLETED 128
97 struct sk_buff *completed[NR_SKB_COMPLETED];
98 int more;
703da5a1 99
ff67df55
BL
100 do {
101 more = 0;
102 skb_ptr = completed;
103
98f45da2 104 if (__netif_tx_trylock(fifo->txq)) {
ff67df55
BL
105 vxge_hw_vpath_poll_tx(fifo->handle, &skb_ptr,
106 NR_SKB_COMPLETED, &more);
98f45da2 107 __netif_tx_unlock(fifo->txq);
ff67df55 108 }
98f45da2 109
ff67df55
BL
110 /* free SKBs */
111 for (temp = completed; temp != skb_ptr; temp++)
112 dev_kfree_skb_irq(*temp);
98f45da2 113 } while (more);
703da5a1
RV
114}
115
116static inline void VXGE_COMPLETE_ALL_TX(struct vxgedev *vdev)
117{
118 int i;
119
120 /* Complete all transmits */
121 for (i = 0; i < vdev->no_of_vpath; i++)
122 VXGE_COMPLETE_VPATH_TX(&vdev->vpaths[i].fifo);
123}
124
125static inline void VXGE_COMPLETE_ALL_RX(struct vxgedev *vdev)
126{
127 int i;
128 struct vxge_ring *ring;
129
130 /* Complete all receives*/
131 for (i = 0; i < vdev->no_of_vpath; i++) {
132 ring = &vdev->vpaths[i].ring;
133 vxge_hw_vpath_poll_rx(ring->handle);
134 }
135}
136
703da5a1
RV
137/*
138 * vxge_callback_link_up
139 *
140 * This function is called during interrupt context to notify link up state
141 * change.
142 */
528f7272 143static void vxge_callback_link_up(struct __vxge_hw_device *hldev)
703da5a1
RV
144{
145 struct net_device *dev = hldev->ndev;
5f54cebb 146 struct vxgedev *vdev = netdev_priv(dev);
703da5a1
RV
147
148 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d",
149 vdev->ndev->name, __func__, __LINE__);
75f5e1c6 150 netdev_notice(vdev->ndev, "Link Up\n");
703da5a1
RV
151 vdev->stats.link_up++;
152
153 netif_carrier_on(vdev->ndev);
d03848e0 154 netif_tx_wake_all_queues(vdev->ndev);
703da5a1
RV
155
156 vxge_debug_entryexit(VXGE_TRACE,
157 "%s: %s:%d Exiting...", vdev->ndev->name, __func__, __LINE__);
158}
159
160/*
161 * vxge_callback_link_down
162 *
163 * This function is called during interrupt context to notify link down state
164 * change.
165 */
528f7272 166static void vxge_callback_link_down(struct __vxge_hw_device *hldev)
703da5a1
RV
167{
168 struct net_device *dev = hldev->ndev;
5f54cebb 169 struct vxgedev *vdev = netdev_priv(dev);
703da5a1
RV
170
171 vxge_debug_entryexit(VXGE_TRACE,
172 "%s: %s:%d", vdev->ndev->name, __func__, __LINE__);
75f5e1c6 173 netdev_notice(vdev->ndev, "Link Down\n");
703da5a1
RV
174
175 vdev->stats.link_down++;
176 netif_carrier_off(vdev->ndev);
d03848e0 177 netif_tx_stop_all_queues(vdev->ndev);
703da5a1
RV
178
179 vxge_debug_entryexit(VXGE_TRACE,
180 "%s: %s:%d Exiting...", vdev->ndev->name, __func__, __LINE__);
181}
182
183/*
184 * vxge_rx_alloc
185 *
186 * Allocate SKB.
187 */
528f7272 188static struct sk_buff *
703da5a1
RV
189vxge_rx_alloc(void *dtrh, struct vxge_ring *ring, const int skb_size)
190{
191 struct net_device *dev;
192 struct sk_buff *skb;
193 struct vxge_rx_priv *rx_priv;
194
195 dev = ring->ndev;
196 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d",
197 ring->ndev->name, __func__, __LINE__);
198
199 rx_priv = vxge_hw_ring_rxd_private_get(dtrh);
200
201 /* try to allocate skb first. this one may fail */
202 skb = netdev_alloc_skb(dev, skb_size +
203 VXGE_HW_HEADER_ETHERNET_II_802_3_ALIGN);
204 if (skb == NULL) {
205 vxge_debug_mem(VXGE_ERR,
206 "%s: out of memory to allocate SKB", dev->name);
207 ring->stats.skb_alloc_fail++;
208 return NULL;
209 }
210
211 vxge_debug_mem(VXGE_TRACE,
212 "%s: %s:%d Skb : 0x%p", ring->ndev->name,
213 __func__, __LINE__, skb);
214
215 skb_reserve(skb, VXGE_HW_HEADER_ETHERNET_II_802_3_ALIGN);
216
217 rx_priv->skb = skb;
ea11bbe0 218 rx_priv->skb_data = NULL;
703da5a1
RV
219 rx_priv->data_size = skb_size;
220 vxge_debug_entryexit(VXGE_TRACE,
221 "%s: %s:%d Exiting...", ring->ndev->name, __func__, __LINE__);
222
223 return skb;
224}
225
226/*
227 * vxge_rx_map
228 */
229static int vxge_rx_map(void *dtrh, struct vxge_ring *ring)
230{
231 struct vxge_rx_priv *rx_priv;
232 dma_addr_t dma_addr;
233
234 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d",
235 ring->ndev->name, __func__, __LINE__);
236 rx_priv = vxge_hw_ring_rxd_private_get(dtrh);
237
ea11bbe0
BL
238 rx_priv->skb_data = rx_priv->skb->data;
239 dma_addr = pci_map_single(ring->pdev, rx_priv->skb_data,
703da5a1
RV
240 rx_priv->data_size, PCI_DMA_FROMDEVICE);
241
fa15e99b 242 if (unlikely(pci_dma_mapping_error(ring->pdev, dma_addr))) {
703da5a1
RV
243 ring->stats.pci_map_fail++;
244 return -EIO;
245 }
246 vxge_debug_mem(VXGE_TRACE,
247 "%s: %s:%d 1 buffer mode dma_addr = 0x%llx",
248 ring->ndev->name, __func__, __LINE__,
249 (unsigned long long)dma_addr);
250 vxge_hw_ring_rxd_1b_set(dtrh, dma_addr, rx_priv->data_size);
251
252 rx_priv->data_dma = dma_addr;
253 vxge_debug_entryexit(VXGE_TRACE,
254 "%s: %s:%d Exiting...", ring->ndev->name, __func__, __LINE__);
255
256 return 0;
257}
258
259/*
260 * vxge_rx_initial_replenish
261 * Allocation of RxD as an initial replenish procedure.
262 */
263static enum vxge_hw_status
264vxge_rx_initial_replenish(void *dtrh, void *userdata)
265{
266 struct vxge_ring *ring = (struct vxge_ring *)userdata;
267 struct vxge_rx_priv *rx_priv;
268
269 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d",
270 ring->ndev->name, __func__, __LINE__);
271 if (vxge_rx_alloc(dtrh, ring,
272 VXGE_LL_MAX_FRAME_SIZE(ring->ndev)) == NULL)
273 return VXGE_HW_FAIL;
274
275 if (vxge_rx_map(dtrh, ring)) {
276 rx_priv = vxge_hw_ring_rxd_private_get(dtrh);
277 dev_kfree_skb(rx_priv->skb);
278
279 return VXGE_HW_FAIL;
280 }
281 vxge_debug_entryexit(VXGE_TRACE,
282 "%s: %s:%d Exiting...", ring->ndev->name, __func__, __LINE__);
283
284 return VXGE_HW_OK;
285}
286
287static inline void
288vxge_rx_complete(struct vxge_ring *ring, struct sk_buff *skb, u16 vlan,
289 int pkt_length, struct vxge_hw_ring_rxd_info *ext_info)
290{
291
292 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d",
293 ring->ndev->name, __func__, __LINE__);
294 skb_record_rx_queue(skb, ring->driver_id);
295 skb->protocol = eth_type_trans(skb, ring->ndev);
296
297 ring->stats.rx_frms++;
298 ring->stats.rx_bytes += pkt_length;
299
300 if (skb->pkt_type == PACKET_MULTICAST)
301 ring->stats.rx_mcast++;
302
303 vxge_debug_rx(VXGE_TRACE,
304 "%s: %s:%d skb protocol = %d",
305 ring->ndev->name, __func__, __LINE__, skb->protocol);
306
307 if (ring->gro_enable) {
308 if (ring->vlgrp && ext_info->vlan &&
309 (ring->vlan_tag_strip ==
310 VXGE_HW_VPATH_RPA_STRIP_VLAN_TAG_ENABLE))
a5d165b5 311 vlan_gro_receive(ring->napi_p, ring->vlgrp,
703da5a1
RV
312 ext_info->vlan, skb);
313 else
a5d165b5 314 napi_gro_receive(ring->napi_p, skb);
703da5a1
RV
315 } else {
316 if (ring->vlgrp && vlan &&
317 (ring->vlan_tag_strip ==
318 VXGE_HW_VPATH_RPA_STRIP_VLAN_TAG_ENABLE))
319 vlan_hwaccel_receive_skb(skb, ring->vlgrp, vlan);
320 else
321 netif_receive_skb(skb);
322 }
323 vxge_debug_entryexit(VXGE_TRACE,
324 "%s: %s:%d Exiting...", ring->ndev->name, __func__, __LINE__);
325}
326
327static inline void vxge_re_pre_post(void *dtr, struct vxge_ring *ring,
328 struct vxge_rx_priv *rx_priv)
329{
330 pci_dma_sync_single_for_device(ring->pdev,
331 rx_priv->data_dma, rx_priv->data_size, PCI_DMA_FROMDEVICE);
332
333 vxge_hw_ring_rxd_1b_set(dtr, rx_priv->data_dma, rx_priv->data_size);
334 vxge_hw_ring_rxd_pre_post(ring->handle, dtr);
335}
336
337static inline void vxge_post(int *dtr_cnt, void **first_dtr,
338 void *post_dtr, struct __vxge_hw_ring *ringh)
339{
340 int dtr_count = *dtr_cnt;
341 if ((*dtr_cnt % VXGE_HW_RXSYNC_FREQ_CNT) == 0) {
342 if (*first_dtr)
343 vxge_hw_ring_rxd_post_post_wmb(ringh, *first_dtr);
344 *first_dtr = post_dtr;
345 } else
346 vxge_hw_ring_rxd_post_post(ringh, post_dtr);
347 dtr_count++;
348 *dtr_cnt = dtr_count;
349}
350
351/*
352 * vxge_rx_1b_compl
353 *
354 * If the interrupt is because of a received frame or if the receive ring
355 * contains fresh as yet un-processed frames, this function is called.
356 */
42821a5b 357static enum vxge_hw_status
703da5a1
RV
358vxge_rx_1b_compl(struct __vxge_hw_ring *ringh, void *dtr,
359 u8 t_code, void *userdata)
360{
361 struct vxge_ring *ring = (struct vxge_ring *)userdata;
b81b3733 362 struct net_device *dev = ring->ndev;
703da5a1
RV
363 unsigned int dma_sizes;
364 void *first_dtr = NULL;
365 int dtr_cnt = 0;
366 int data_size;
367 dma_addr_t data_dma;
368 int pkt_length;
369 struct sk_buff *skb;
370 struct vxge_rx_priv *rx_priv;
371 struct vxge_hw_ring_rxd_info ext_info;
372 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d",
373 ring->ndev->name, __func__, __LINE__);
374 ring->pkts_processed = 0;
375
3363276f 376 vxge_hw_ring_replenish(ringh);
703da5a1
RV
377
378 do {
3f23e436 379 prefetch((char *)dtr + L1_CACHE_BYTES);
703da5a1
RV
380 rx_priv = vxge_hw_ring_rxd_private_get(dtr);
381 skb = rx_priv->skb;
382 data_size = rx_priv->data_size;
383 data_dma = rx_priv->data_dma;
ea11bbe0 384 prefetch(rx_priv->skb_data);
703da5a1
RV
385
386 vxge_debug_rx(VXGE_TRACE,
387 "%s: %s:%d skb = 0x%p",
388 ring->ndev->name, __func__, __LINE__, skb);
389
390 vxge_hw_ring_rxd_1b_get(ringh, dtr, &dma_sizes);
391 pkt_length = dma_sizes;
392
22fa125e
SH
393 pkt_length -= ETH_FCS_LEN;
394
703da5a1
RV
395 vxge_debug_rx(VXGE_TRACE,
396 "%s: %s:%d Packet Length = %d",
397 ring->ndev->name, __func__, __LINE__, pkt_length);
398
399 vxge_hw_ring_rxd_1b_info_get(ringh, dtr, &ext_info);
400
401 /* check skb validity */
402 vxge_assert(skb);
403
404 prefetch((char *)skb + L1_CACHE_BYTES);
405 if (unlikely(t_code)) {
703da5a1
RV
406 if (vxge_hw_ring_handle_tcode(ringh, dtr, t_code) !=
407 VXGE_HW_OK) {
408
409 ring->stats.rx_errors++;
410 vxge_debug_rx(VXGE_TRACE,
411 "%s: %s :%d Rx T_code is %d",
412 ring->ndev->name, __func__,
413 __LINE__, t_code);
414
415 /* If the t_code is not supported and if the
416 * t_code is other than 0x5 (unparseable packet
417 * such as unknown UPV6 header), Drop it !!!
418 */
419 vxge_re_pre_post(dtr, ring, rx_priv);
420
421 vxge_post(&dtr_cnt, &first_dtr, dtr, ringh);
422 ring->stats.rx_dropped++;
423 continue;
424 }
425 }
426
427 if (pkt_length > VXGE_LL_RX_COPY_THRESHOLD) {
703da5a1 428 if (vxge_rx_alloc(dtr, ring, data_size) != NULL) {
703da5a1
RV
429 if (!vxge_rx_map(dtr, ring)) {
430 skb_put(skb, pkt_length);
431
432 pci_unmap_single(ring->pdev, data_dma,
433 data_size, PCI_DMA_FROMDEVICE);
434
435 vxge_hw_ring_rxd_pre_post(ringh, dtr);
436 vxge_post(&dtr_cnt, &first_dtr, dtr,
437 ringh);
438 } else {
439 dev_kfree_skb(rx_priv->skb);
440 rx_priv->skb = skb;
441 rx_priv->data_size = data_size;
442 vxge_re_pre_post(dtr, ring, rx_priv);
443
444 vxge_post(&dtr_cnt, &first_dtr, dtr,
445 ringh);
446 ring->stats.rx_dropped++;
447 break;
448 }
449 } else {
450 vxge_re_pre_post(dtr, ring, rx_priv);
451
452 vxge_post(&dtr_cnt, &first_dtr, dtr, ringh);
453 ring->stats.rx_dropped++;
454 break;
455 }
456 } else {
457 struct sk_buff *skb_up;
458
459 skb_up = netdev_alloc_skb(dev, pkt_length +
460 VXGE_HW_HEADER_ETHERNET_II_802_3_ALIGN);
461 if (skb_up != NULL) {
462 skb_reserve(skb_up,
463 VXGE_HW_HEADER_ETHERNET_II_802_3_ALIGN);
464
465 pci_dma_sync_single_for_cpu(ring->pdev,
466 data_dma, data_size,
467 PCI_DMA_FROMDEVICE);
468
469 vxge_debug_mem(VXGE_TRACE,
470 "%s: %s:%d skb_up = %p",
471 ring->ndev->name, __func__,
472 __LINE__, skb);
473 memcpy(skb_up->data, skb->data, pkt_length);
474
475 vxge_re_pre_post(dtr, ring, rx_priv);
476
477 vxge_post(&dtr_cnt, &first_dtr, dtr,
478 ringh);
479 /* will netif_rx small SKB instead */
480 skb = skb_up;
481 skb_put(skb, pkt_length);
482 } else {
483 vxge_re_pre_post(dtr, ring, rx_priv);
484
485 vxge_post(&dtr_cnt, &first_dtr, dtr, ringh);
486 vxge_debug_rx(VXGE_ERR,
487 "%s: vxge_rx_1b_compl: out of "
488 "memory", dev->name);
489 ring->stats.skb_alloc_fail++;
490 break;
491 }
492 }
493
494 if ((ext_info.proto & VXGE_HW_FRAME_PROTO_TCP_OR_UDP) &&
495 !(ext_info.proto & VXGE_HW_FRAME_PROTO_IP_FRAG) &&
496 ring->rx_csum && /* Offload Rx side CSUM */
497 ext_info.l3_cksum == VXGE_HW_L3_CKSUM_OK &&
498 ext_info.l4_cksum == VXGE_HW_L4_CKSUM_OK)
499 skb->ip_summed = CHECKSUM_UNNECESSARY;
500 else
bc8acf2c 501 skb_checksum_none_assert(skb);
703da5a1 502
b81b3733
JM
503
504 if (ring->rx_hwts) {
505 struct skb_shared_hwtstamps *skb_hwts;
506 u32 ns = *(u32 *)(skb->head + pkt_length);
507
508 skb_hwts = skb_hwtstamps(skb);
509 skb_hwts->hwtstamp = ns_to_ktime(ns);
510 skb_hwts->syststamp.tv64 = 0;
511 }
512
47f01db4
JM
513 /* rth_hash_type and rth_it_hit are non-zero regardless of
514 * whether rss is enabled. Only the rth_value is zero/non-zero
515 * if rss is disabled/enabled, so key off of that.
516 */
517 if (ext_info.rth_value)
518 skb->rxhash = ext_info.rth_value;
519
703da5a1
RV
520 vxge_rx_complete(ring, skb, ext_info.vlan,
521 pkt_length, &ext_info);
522
523 ring->budget--;
524 ring->pkts_processed++;
525 if (!ring->budget)
526 break;
527
528 } while (vxge_hw_ring_rxd_next_completed(ringh, &dtr,
529 &t_code) == VXGE_HW_OK);
530
531 if (first_dtr)
532 vxge_hw_ring_rxd_post_post_wmb(ringh, first_dtr);
533
703da5a1
RV
534 vxge_debug_entryexit(VXGE_TRACE,
535 "%s:%d Exiting...",
536 __func__, __LINE__);
537 return VXGE_HW_OK;
538}
539
540/*
541 * vxge_xmit_compl
542 *
543 * If an interrupt was raised to indicate DMA complete of the Tx packet,
544 * this function is called. It identifies the last TxD whose buffer was
545 * freed and frees all skbs whose data have already DMA'ed into the NICs
546 * internal memory.
547 */
42821a5b 548static enum vxge_hw_status
703da5a1
RV
549vxge_xmit_compl(struct __vxge_hw_fifo *fifo_hw, void *dtr,
550 enum vxge_hw_fifo_tcode t_code, void *userdata,
ff67df55 551 struct sk_buff ***skb_ptr, int nr_skb, int *more)
703da5a1
RV
552{
553 struct vxge_fifo *fifo = (struct vxge_fifo *)userdata;
ff67df55 554 struct sk_buff *skb, **done_skb = *skb_ptr;
703da5a1
RV
555 int pkt_cnt = 0;
556
557 vxge_debug_entryexit(VXGE_TRACE,
558 "%s:%d Entered....", __func__, __LINE__);
559
560 do {
561 int frg_cnt;
562 skb_frag_t *frag;
563 int i = 0, j;
564 struct vxge_tx_priv *txd_priv =
565 vxge_hw_fifo_txdl_private_get(dtr);
566
567 skb = txd_priv->skb;
568 frg_cnt = skb_shinfo(skb)->nr_frags;
569 frag = &skb_shinfo(skb)->frags[0];
570
571 vxge_debug_tx(VXGE_TRACE,
572 "%s: %s:%d fifo_hw = %p dtr = %p "
573 "tcode = 0x%x", fifo->ndev->name, __func__,
574 __LINE__, fifo_hw, dtr, t_code);
575 /* check skb validity */
576 vxge_assert(skb);
577 vxge_debug_tx(VXGE_TRACE,
578 "%s: %s:%d skb = %p itxd_priv = %p frg_cnt = %d",
579 fifo->ndev->name, __func__, __LINE__,
580 skb, txd_priv, frg_cnt);
581 if (unlikely(t_code)) {
582 fifo->stats.tx_errors++;
583 vxge_debug_tx(VXGE_ERR,
584 "%s: tx: dtr %p completed due to "
585 "error t_code %01x", fifo->ndev->name,
586 dtr, t_code);
587 vxge_hw_fifo_handle_tcode(fifo_hw, dtr, t_code);
588 }
589
590 /* for unfragmented skb */
591 pci_unmap_single(fifo->pdev, txd_priv->dma_buffers[i++],
592 skb_headlen(skb), PCI_DMA_TODEVICE);
593
594 for (j = 0; j < frg_cnt; j++) {
595 pci_unmap_page(fifo->pdev,
596 txd_priv->dma_buffers[i++],
597 frag->size, PCI_DMA_TODEVICE);
598 frag += 1;
599 }
600
601 vxge_hw_fifo_txdl_free(fifo_hw, dtr);
602
603 /* Updating the statistics block */
604 fifo->stats.tx_frms++;
605 fifo->stats.tx_bytes += skb->len;
606
ff67df55
BL
607 *done_skb++ = skb;
608
609 if (--nr_skb <= 0) {
610 *more = 1;
611 break;
612 }
703da5a1
RV
613
614 pkt_cnt++;
615 if (pkt_cnt > fifo->indicate_max_pkts)
616 break;
617
618 } while (vxge_hw_fifo_txdl_next_completed(fifo_hw,
619 &dtr, &t_code) == VXGE_HW_OK);
620
ff67df55 621 *skb_ptr = done_skb;
98f45da2
JM
622 if (netif_tx_queue_stopped(fifo->txq))
623 netif_tx_wake_queue(fifo->txq);
703da5a1 624
703da5a1
RV
625 vxge_debug_entryexit(VXGE_TRACE,
626 "%s: %s:%d Exiting...",
627 fifo->ndev->name, __func__, __LINE__);
628 return VXGE_HW_OK;
629}
630
28679751 631/* select a vpath to transmit the packet */
98f45da2 632static u32 vxge_get_vpath_no(struct vxgedev *vdev, struct sk_buff *skb)
703da5a1
RV
633{
634 u16 queue_len, counter = 0;
635 if (skb->protocol == htons(ETH_P_IP)) {
636 struct iphdr *ip;
637 struct tcphdr *th;
638
639 ip = ip_hdr(skb);
640
641 if ((ip->frag_off & htons(IP_OFFSET|IP_MF)) == 0) {
642 th = (struct tcphdr *)(((unsigned char *)ip) +
643 ip->ihl*4);
644
645 queue_len = vdev->no_of_vpath;
646 counter = (ntohs(th->source) +
647 ntohs(th->dest)) &
648 vdev->vpath_selector[queue_len - 1];
649 if (counter >= queue_len)
650 counter = queue_len - 1;
703da5a1
RV
651 }
652 }
653 return counter;
654}
655
656static enum vxge_hw_status vxge_search_mac_addr_in_list(
657 struct vxge_vpath *vpath, u64 del_mac)
658{
659 struct list_head *entry, *next;
660 list_for_each_safe(entry, next, &vpath->mac_addr_list) {
661 if (((struct vxge_mac_addrs *)entry)->macaddr == del_mac)
662 return TRUE;
663 }
664 return FALSE;
665}
666
528f7272
JM
667static int vxge_mac_list_add(struct vxge_vpath *vpath, struct macInfo *mac)
668{
669 struct vxge_mac_addrs *new_mac_entry;
670 u8 *mac_address = NULL;
671
672 if (vpath->mac_addr_cnt >= VXGE_MAX_LEARN_MAC_ADDR_CNT)
673 return TRUE;
674
675 new_mac_entry = kzalloc(sizeof(struct vxge_mac_addrs), GFP_ATOMIC);
676 if (!new_mac_entry) {
677 vxge_debug_mem(VXGE_ERR,
678 "%s: memory allocation failed",
679 VXGE_DRIVER_NAME);
680 return FALSE;
681 }
682
683 list_add(&new_mac_entry->item, &vpath->mac_addr_list);
684
685 /* Copy the new mac address to the list */
686 mac_address = (u8 *)&new_mac_entry->macaddr;
687 memcpy(mac_address, mac->macaddr, ETH_ALEN);
688
689 new_mac_entry->state = mac->state;
690 vpath->mac_addr_cnt++;
691
692 /* Is this a multicast address */
693 if (0x01 & mac->macaddr[0])
694 vpath->mcast_addr_cnt++;
695
696 return TRUE;
697}
698
699/* Add a mac address to DA table */
700static enum vxge_hw_status
701vxge_add_mac_addr(struct vxgedev *vdev, struct macInfo *mac)
702{
703 enum vxge_hw_status status = VXGE_HW_OK;
704 struct vxge_vpath *vpath;
705 enum vxge_hw_vpath_mac_addr_add_mode duplicate_mode;
706
707 if (0x01 & mac->macaddr[0]) /* multicast address */
708 duplicate_mode = VXGE_HW_VPATH_MAC_ADDR_ADD_DUPLICATE;
709 else
710 duplicate_mode = VXGE_HW_VPATH_MAC_ADDR_REPLACE_DUPLICATE;
711
712 vpath = &vdev->vpaths[mac->vpath_no];
713 status = vxge_hw_vpath_mac_addr_add(vpath->handle, mac->macaddr,
714 mac->macmask, duplicate_mode);
715 if (status != VXGE_HW_OK) {
716 vxge_debug_init(VXGE_ERR,
717 "DA config add entry failed for vpath:%d",
718 vpath->device_id);
719 } else
720 if (FALSE == vxge_mac_list_add(vpath, mac))
721 status = -EPERM;
722
723 return status;
724}
725
703da5a1
RV
726static int vxge_learn_mac(struct vxgedev *vdev, u8 *mac_header)
727{
728 struct macInfo mac_info;
729 u8 *mac_address = NULL;
730 u64 mac_addr = 0, vpath_vector = 0;
731 int vpath_idx = 0;
732 enum vxge_hw_status status = VXGE_HW_OK;
733 struct vxge_vpath *vpath = NULL;
734 struct __vxge_hw_device *hldev;
735
d8ee7071 736 hldev = pci_get_drvdata(vdev->pdev);
703da5a1
RV
737
738 mac_address = (u8 *)&mac_addr;
739 memcpy(mac_address, mac_header, ETH_ALEN);
740
741 /* Is this mac address already in the list? */
742 for (vpath_idx = 0; vpath_idx < vdev->no_of_vpath; vpath_idx++) {
743 vpath = &vdev->vpaths[vpath_idx];
744 if (vxge_search_mac_addr_in_list(vpath, mac_addr))
745 return vpath_idx;
746 }
747
748 memset(&mac_info, 0, sizeof(struct macInfo));
749 memcpy(mac_info.macaddr, mac_header, ETH_ALEN);
750
751 /* Any vpath has room to add mac address to its da table? */
752 for (vpath_idx = 0; vpath_idx < vdev->no_of_vpath; vpath_idx++) {
753 vpath = &vdev->vpaths[vpath_idx];
754 if (vpath->mac_addr_cnt < vpath->max_mac_addr_cnt) {
755 /* Add this mac address to this vpath */
756 mac_info.vpath_no = vpath_idx;
757 mac_info.state = VXGE_LL_MAC_ADDR_IN_DA_TABLE;
758 status = vxge_add_mac_addr(vdev, &mac_info);
759 if (status != VXGE_HW_OK)
760 return -EPERM;
761 return vpath_idx;
762 }
763 }
764
765 mac_info.state = VXGE_LL_MAC_ADDR_IN_LIST;
766 vpath_idx = 0;
767 mac_info.vpath_no = vpath_idx;
768 /* Is the first vpath already selected as catch-basin ? */
769 vpath = &vdev->vpaths[vpath_idx];
770 if (vpath->mac_addr_cnt > vpath->max_mac_addr_cnt) {
771 /* Add this mac address to this vpath */
772 if (FALSE == vxge_mac_list_add(vpath, &mac_info))
773 return -EPERM;
774 return vpath_idx;
775 }
776
777 /* Select first vpath as catch-basin */
778 vpath_vector = vxge_mBIT(vpath->device_id);
779 status = vxge_hw_mgmt_reg_write(vpath->vdev->devh,
780 vxge_hw_mgmt_reg_type_mrpcim,
781 0,
782 (ulong)offsetof(
783 struct vxge_hw_mrpcim_reg,
784 rts_mgr_cbasin_cfg),
785 vpath_vector);
786 if (status != VXGE_HW_OK) {
787 vxge_debug_tx(VXGE_ERR,
788 "%s: Unable to set the vpath-%d in catch-basin mode",
789 VXGE_DRIVER_NAME, vpath->device_id);
790 return -EPERM;
791 }
792
793 if (FALSE == vxge_mac_list_add(vpath, &mac_info))
794 return -EPERM;
795
796 return vpath_idx;
797}
798
799/**
800 * vxge_xmit
801 * @skb : the socket buffer containing the Tx data.
802 * @dev : device pointer.
803 *
804 * This function is the Tx entry point of the driver. Neterion NIC supports
805 * certain protocol assist features on Tx side, namely CSO, S/G, LSO.
703da5a1 806*/
61357325 807static netdev_tx_t
703da5a1
RV
808vxge_xmit(struct sk_buff *skb, struct net_device *dev)
809{
810 struct vxge_fifo *fifo = NULL;
811 void *dtr_priv;
812 void *dtr = NULL;
813 struct vxgedev *vdev = NULL;
814 enum vxge_hw_status status;
815 int frg_cnt, first_frg_len;
816 skb_frag_t *frag;
817 int i = 0, j = 0, avail;
818 u64 dma_pointer;
819 struct vxge_tx_priv *txdl_priv = NULL;
820 struct __vxge_hw_fifo *fifo_hw;
703da5a1 821 int offload_type;
703da5a1 822 int vpath_no = 0;
703da5a1
RV
823
824 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d",
825 dev->name, __func__, __LINE__);
826
827 /* A buffer with no data will be dropped */
828 if (unlikely(skb->len <= 0)) {
829 vxge_debug_tx(VXGE_ERR,
830 "%s: Buffer has no data..", dev->name);
831 dev_kfree_skb(skb);
832 return NETDEV_TX_OK;
833 }
834
5f54cebb 835 vdev = netdev_priv(dev);
703da5a1
RV
836
837 if (unlikely(!is_vxge_card_up(vdev))) {
838 vxge_debug_tx(VXGE_ERR,
839 "%s: vdev not initialized", dev->name);
840 dev_kfree_skb(skb);
841 return NETDEV_TX_OK;
842 }
843
844 if (vdev->config.addr_learn_en) {
845 vpath_no = vxge_learn_mac(vdev, skb->data + ETH_ALEN);
846 if (vpath_no == -EPERM) {
847 vxge_debug_tx(VXGE_ERR,
848 "%s: Failed to store the mac address",
849 dev->name);
850 dev_kfree_skb(skb);
851 return NETDEV_TX_OK;
852 }
853 }
854
855 if (vdev->config.tx_steering_type == TX_MULTIQ_STEERING)
856 vpath_no = skb_get_queue_mapping(skb);
857 else if (vdev->config.tx_steering_type == TX_PORT_STEERING)
98f45da2 858 vpath_no = vxge_get_vpath_no(vdev, skb);
703da5a1
RV
859
860 vxge_debug_tx(VXGE_TRACE, "%s: vpath_no= %d", dev->name, vpath_no);
861
862 if (vpath_no >= vdev->no_of_vpath)
863 vpath_no = 0;
864
865 fifo = &vdev->vpaths[vpath_no].fifo;
866 fifo_hw = fifo->handle;
867
98f45da2 868 if (netif_tx_queue_stopped(fifo->txq))
d03848e0 869 return NETDEV_TX_BUSY;
d03848e0 870
703da5a1
RV
871 avail = vxge_hw_fifo_free_txdl_count_get(fifo_hw);
872 if (avail == 0) {
873 vxge_debug_tx(VXGE_ERR,
874 "%s: No free TXDs available", dev->name);
875 fifo->stats.txd_not_free++;
98f45da2 876 goto _exit0;
703da5a1
RV
877 }
878
4403b371
BL
879 /* Last TXD? Stop tx queue to avoid dropping packets. TX
880 * completion will resume the queue.
881 */
882 if (avail == 1)
98f45da2 883 netif_tx_stop_queue(fifo->txq);
4403b371 884
703da5a1
RV
885 status = vxge_hw_fifo_txdl_reserve(fifo_hw, &dtr, &dtr_priv);
886 if (unlikely(status != VXGE_HW_OK)) {
887 vxge_debug_tx(VXGE_ERR,
888 "%s: Out of descriptors .", dev->name);
889 fifo->stats.txd_out_of_desc++;
98f45da2 890 goto _exit0;
703da5a1
RV
891 }
892
893 vxge_debug_tx(VXGE_TRACE,
894 "%s: %s:%d fifo_hw = %p dtr = %p dtr_priv = %p",
895 dev->name, __func__, __LINE__,
896 fifo_hw, dtr, dtr_priv);
897
eab6d18d 898 if (vlan_tx_tag_present(skb)) {
703da5a1
RV
899 u16 vlan_tag = vlan_tx_tag_get(skb);
900 vxge_hw_fifo_txdl_vlan_set(dtr, vlan_tag);
901 }
902
903 first_frg_len = skb_headlen(skb);
904
905 dma_pointer = pci_map_single(fifo->pdev, skb->data, first_frg_len,
906 PCI_DMA_TODEVICE);
907
908 if (unlikely(pci_dma_mapping_error(fifo->pdev, dma_pointer))) {
909 vxge_hw_fifo_txdl_free(fifo_hw, dtr);
703da5a1 910 fifo->stats.pci_map_fail++;
98f45da2 911 goto _exit0;
703da5a1
RV
912 }
913
914 txdl_priv = vxge_hw_fifo_txdl_private_get(dtr);
915 txdl_priv->skb = skb;
916 txdl_priv->dma_buffers[j] = dma_pointer;
917
918 frg_cnt = skb_shinfo(skb)->nr_frags;
919 vxge_debug_tx(VXGE_TRACE,
920 "%s: %s:%d skb = %p txdl_priv = %p "
921 "frag_cnt = %d dma_pointer = 0x%llx", dev->name,
922 __func__, __LINE__, skb, txdl_priv,
923 frg_cnt, (unsigned long long)dma_pointer);
924
925 vxge_hw_fifo_txdl_buffer_set(fifo_hw, dtr, j++, dma_pointer,
926 first_frg_len);
927
928 frag = &skb_shinfo(skb)->frags[0];
929 for (i = 0; i < frg_cnt; i++) {
930 /* ignore 0 length fragment */
931 if (!frag->size)
932 continue;
933
98f45da2 934 dma_pointer = (u64) pci_map_page(fifo->pdev, frag->page,
703da5a1
RV
935 frag->page_offset, frag->size,
936 PCI_DMA_TODEVICE);
937
938 if (unlikely(pci_dma_mapping_error(fifo->pdev, dma_pointer)))
98f45da2 939 goto _exit2;
703da5a1
RV
940 vxge_debug_tx(VXGE_TRACE,
941 "%s: %s:%d frag = %d dma_pointer = 0x%llx",
942 dev->name, __func__, __LINE__, i,
943 (unsigned long long)dma_pointer);
944
945 txdl_priv->dma_buffers[j] = dma_pointer;
946 vxge_hw_fifo_txdl_buffer_set(fifo_hw, dtr, j++, dma_pointer,
947 frag->size);
948 frag += 1;
949 }
950
951 offload_type = vxge_offload_type(skb);
952
953 if (offload_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)) {
703da5a1
RV
954 int mss = vxge_tcp_mss(skb);
955 if (mss) {
98f45da2 956 vxge_debug_tx(VXGE_TRACE, "%s: %s:%d mss = %d",
703da5a1
RV
957 dev->name, __func__, __LINE__, mss);
958 vxge_hw_fifo_txdl_mss_set(dtr, mss);
959 } else {
960 vxge_assert(skb->len <=
961 dev->mtu + VXGE_HW_MAC_HEADER_MAX_SIZE);
962 vxge_assert(0);
963 goto _exit1;
964 }
965 }
966
967 if (skb->ip_summed == CHECKSUM_PARTIAL)
968 vxge_hw_fifo_txdl_cksum_set_bits(dtr,
969 VXGE_HW_FIFO_TXD_TX_CKO_IPV4_EN |
970 VXGE_HW_FIFO_TXD_TX_CKO_TCP_EN |
971 VXGE_HW_FIFO_TXD_TX_CKO_UDP_EN);
972
973 vxge_hw_fifo_txdl_post(fifo_hw, dtr);
703da5a1 974
703da5a1
RV
975 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d Exiting...",
976 dev->name, __func__, __LINE__);
6ed10654 977 return NETDEV_TX_OK;
703da5a1 978
98f45da2 979_exit2:
703da5a1 980 vxge_debug_tx(VXGE_TRACE, "%s: pci_map_page failed", dev->name);
703da5a1
RV
981_exit1:
982 j = 0;
983 frag = &skb_shinfo(skb)->frags[0];
984
985 pci_unmap_single(fifo->pdev, txdl_priv->dma_buffers[j++],
986 skb_headlen(skb), PCI_DMA_TODEVICE);
987
988 for (; j < i; j++) {
989 pci_unmap_page(fifo->pdev, txdl_priv->dma_buffers[j],
990 frag->size, PCI_DMA_TODEVICE);
991 frag += 1;
992 }
993
994 vxge_hw_fifo_txdl_free(fifo_hw, dtr);
98f45da2
JM
995_exit0:
996 netif_tx_stop_queue(fifo->txq);
703da5a1 997 dev_kfree_skb(skb);
703da5a1 998
6ed10654 999 return NETDEV_TX_OK;
703da5a1
RV
1000}
1001
1002/*
1003 * vxge_rx_term
1004 *
1005 * Function will be called by hw function to abort all outstanding receive
1006 * descriptors.
1007 */
1008static void
1009vxge_rx_term(void *dtrh, enum vxge_hw_rxd_state state, void *userdata)
1010{
1011 struct vxge_ring *ring = (struct vxge_ring *)userdata;
1012 struct vxge_rx_priv *rx_priv =
1013 vxge_hw_ring_rxd_private_get(dtrh);
1014
1015 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d",
1016 ring->ndev->name, __func__, __LINE__);
1017 if (state != VXGE_HW_RXD_STATE_POSTED)
1018 return;
1019
1020 pci_unmap_single(ring->pdev, rx_priv->data_dma,
1021 rx_priv->data_size, PCI_DMA_FROMDEVICE);
1022
1023 dev_kfree_skb(rx_priv->skb);
ea11bbe0 1024 rx_priv->skb_data = NULL;
703da5a1
RV
1025
1026 vxge_debug_entryexit(VXGE_TRACE,
1027 "%s: %s:%d Exiting...",
1028 ring->ndev->name, __func__, __LINE__);
1029}
1030
1031/*
1032 * vxge_tx_term
1033 *
1034 * Function will be called to abort all outstanding tx descriptors
1035 */
1036static void
1037vxge_tx_term(void *dtrh, enum vxge_hw_txdl_state state, void *userdata)
1038{
1039 struct vxge_fifo *fifo = (struct vxge_fifo *)userdata;
1040 skb_frag_t *frag;
1041 int i = 0, j, frg_cnt;
1042 struct vxge_tx_priv *txd_priv = vxge_hw_fifo_txdl_private_get(dtrh);
1043 struct sk_buff *skb = txd_priv->skb;
1044
1045 vxge_debug_entryexit(VXGE_TRACE, "%s:%d", __func__, __LINE__);
1046
1047 if (state != VXGE_HW_TXDL_STATE_POSTED)
1048 return;
1049
1050 /* check skb validity */
1051 vxge_assert(skb);
1052 frg_cnt = skb_shinfo(skb)->nr_frags;
1053 frag = &skb_shinfo(skb)->frags[0];
1054
1055 /* for unfragmented skb */
1056 pci_unmap_single(fifo->pdev, txd_priv->dma_buffers[i++],
1057 skb_headlen(skb), PCI_DMA_TODEVICE);
1058
1059 for (j = 0; j < frg_cnt; j++) {
1060 pci_unmap_page(fifo->pdev, txd_priv->dma_buffers[i++],
1061 frag->size, PCI_DMA_TODEVICE);
1062 frag += 1;
1063 }
1064
1065 dev_kfree_skb(skb);
1066
1067 vxge_debug_entryexit(VXGE_TRACE,
1068 "%s:%d Exiting...", __func__, __LINE__);
1069}
1070
528f7272
JM
1071static int vxge_mac_list_del(struct vxge_vpath *vpath, struct macInfo *mac)
1072{
1073 struct list_head *entry, *next;
1074 u64 del_mac = 0;
1075 u8 *mac_address = (u8 *) (&del_mac);
1076
1077 /* Copy the mac address to delete from the list */
1078 memcpy(mac_address, mac->macaddr, ETH_ALEN);
1079
1080 list_for_each_safe(entry, next, &vpath->mac_addr_list) {
1081 if (((struct vxge_mac_addrs *)entry)->macaddr == del_mac) {
1082 list_del(entry);
1083 kfree((struct vxge_mac_addrs *)entry);
1084 vpath->mac_addr_cnt--;
1085
1086 /* Is this a multicast address */
1087 if (0x01 & mac->macaddr[0])
1088 vpath->mcast_addr_cnt--;
1089 return TRUE;
1090 }
1091 }
1092
1093 return FALSE;
1094}
1095
1096/* delete a mac address from DA table */
1097static enum vxge_hw_status
1098vxge_del_mac_addr(struct vxgedev *vdev, struct macInfo *mac)
1099{
1100 enum vxge_hw_status status = VXGE_HW_OK;
1101 struct vxge_vpath *vpath;
1102
1103 vpath = &vdev->vpaths[mac->vpath_no];
1104 status = vxge_hw_vpath_mac_addr_delete(vpath->handle, mac->macaddr,
1105 mac->macmask);
1106 if (status != VXGE_HW_OK) {
1107 vxge_debug_init(VXGE_ERR,
1108 "DA config delete entry failed for vpath:%d",
1109 vpath->device_id);
1110 } else
1111 vxge_mac_list_del(vpath, mac);
1112 return status;
1113}
1114
703da5a1
RV
1115/**
1116 * vxge_set_multicast
1117 * @dev: pointer to the device structure
1118 *
1119 * Entry point for multicast address enable/disable
1120 * This function is a driver entry point which gets called by the kernel
1121 * whenever multicast addresses must be enabled/disabled. This also gets
1122 * called to set/reset promiscuous mode. Depending on the deivce flag, we
1123 * determine, if multicast address must be enabled or if promiscuous mode
1124 * is to be disabled etc.
1125 */
1126static void vxge_set_multicast(struct net_device *dev)
1127{
22bedad3 1128 struct netdev_hw_addr *ha;
703da5a1
RV
1129 struct vxgedev *vdev;
1130 int i, mcast_cnt = 0;
7adf7d1b
JM
1131 struct __vxge_hw_device *hldev;
1132 struct vxge_vpath *vpath;
703da5a1
RV
1133 enum vxge_hw_status status = VXGE_HW_OK;
1134 struct macInfo mac_info;
1135 int vpath_idx = 0;
1136 struct vxge_mac_addrs *mac_entry;
1137 struct list_head *list_head;
1138 struct list_head *entry, *next;
1139 u8 *mac_address = NULL;
1140
1141 vxge_debug_entryexit(VXGE_TRACE,
1142 "%s:%d", __func__, __LINE__);
1143
5f54cebb 1144 vdev = netdev_priv(dev);
703da5a1
RV
1145 hldev = (struct __vxge_hw_device *)vdev->devh;
1146
1147 if (unlikely(!is_vxge_card_up(vdev)))
1148 return;
1149
1150 if ((dev->flags & IFF_ALLMULTI) && (!vdev->all_multi_flg)) {
1151 for (i = 0; i < vdev->no_of_vpath; i++) {
7adf7d1b
JM
1152 vpath = &vdev->vpaths[i];
1153 vxge_assert(vpath->is_open);
1154 status = vxge_hw_vpath_mcast_enable(vpath->handle);
1155 if (status != VXGE_HW_OK)
1156 vxge_debug_init(VXGE_ERR, "failed to enable "
1157 "multicast, status %d", status);
703da5a1
RV
1158 vdev->all_multi_flg = 1;
1159 }
7adf7d1b 1160 } else if (!(dev->flags & IFF_ALLMULTI) && (vdev->all_multi_flg)) {
703da5a1 1161 for (i = 0; i < vdev->no_of_vpath; i++) {
7adf7d1b
JM
1162 vpath = &vdev->vpaths[i];
1163 vxge_assert(vpath->is_open);
1164 status = vxge_hw_vpath_mcast_disable(vpath->handle);
1165 if (status != VXGE_HW_OK)
1166 vxge_debug_init(VXGE_ERR, "failed to disable "
1167 "multicast, status %d", status);
1168 vdev->all_multi_flg = 0;
703da5a1
RV
1169 }
1170 }
1171
703da5a1
RV
1172
1173 if (!vdev->config.addr_learn_en) {
7adf7d1b
JM
1174 for (i = 0; i < vdev->no_of_vpath; i++) {
1175 vpath = &vdev->vpaths[i];
1176 vxge_assert(vpath->is_open);
1177
1178 if (dev->flags & IFF_PROMISC)
703da5a1 1179 status = vxge_hw_vpath_promisc_enable(
7adf7d1b
JM
1180 vpath->handle);
1181 else
703da5a1 1182 status = vxge_hw_vpath_promisc_disable(
7adf7d1b
JM
1183 vpath->handle);
1184 if (status != VXGE_HW_OK)
1185 vxge_debug_init(VXGE_ERR, "failed to %s promisc"
1186 ", status %d", dev->flags&IFF_PROMISC ?
1187 "enable" : "disable", status);
703da5a1
RV
1188 }
1189 }
1190
1191 memset(&mac_info, 0, sizeof(struct macInfo));
1192 /* Update individual M_CAST address list */
4cd24eaf 1193 if ((!vdev->all_multi_flg) && netdev_mc_count(dev)) {
703da5a1
RV
1194 mcast_cnt = vdev->vpaths[0].mcast_addr_cnt;
1195 list_head = &vdev->vpaths[0].mac_addr_list;
4cd24eaf 1196 if ((netdev_mc_count(dev) +
703da5a1
RV
1197 (vdev->vpaths[0].mac_addr_cnt - mcast_cnt)) >
1198 vdev->vpaths[0].max_mac_addr_cnt)
1199 goto _set_all_mcast;
1200
1201 /* Delete previous MC's */
1202 for (i = 0; i < mcast_cnt; i++) {
703da5a1 1203 list_for_each_safe(entry, next, list_head) {
2c91308f 1204 mac_entry = (struct vxge_mac_addrs *)entry;
703da5a1
RV
1205 /* Copy the mac address to delete */
1206 mac_address = (u8 *)&mac_entry->macaddr;
1207 memcpy(mac_info.macaddr, mac_address, ETH_ALEN);
1208
1209 /* Is this a multicast address */
1210 if (0x01 & mac_info.macaddr[0]) {
1211 for (vpath_idx = 0; vpath_idx <
1212 vdev->no_of_vpath;
1213 vpath_idx++) {
1214 mac_info.vpath_no = vpath_idx;
1215 status = vxge_del_mac_addr(
1216 vdev,
1217 &mac_info);
1218 }
1219 }
1220 }
1221 }
1222
1223 /* Add new ones */
22bedad3
JP
1224 netdev_for_each_mc_addr(ha, dev) {
1225 memcpy(mac_info.macaddr, ha->addr, ETH_ALEN);
703da5a1
RV
1226 for (vpath_idx = 0; vpath_idx < vdev->no_of_vpath;
1227 vpath_idx++) {
1228 mac_info.vpath_no = vpath_idx;
1229 mac_info.state = VXGE_LL_MAC_ADDR_IN_DA_TABLE;
1230 status = vxge_add_mac_addr(vdev, &mac_info);
1231 if (status != VXGE_HW_OK) {
1232 vxge_debug_init(VXGE_ERR,
1233 "%s:%d Setting individual"
1234 "multicast address failed",
1235 __func__, __LINE__);
1236 goto _set_all_mcast;
1237 }
1238 }
1239 }
1240
1241 return;
1242_set_all_mcast:
1243 mcast_cnt = vdev->vpaths[0].mcast_addr_cnt;
1244 /* Delete previous MC's */
1245 for (i = 0; i < mcast_cnt; i++) {
703da5a1 1246 list_for_each_safe(entry, next, list_head) {
2c91308f 1247 mac_entry = (struct vxge_mac_addrs *)entry;
703da5a1
RV
1248 /* Copy the mac address to delete */
1249 mac_address = (u8 *)&mac_entry->macaddr;
1250 memcpy(mac_info.macaddr, mac_address, ETH_ALEN);
1251
1252 /* Is this a multicast address */
1253 if (0x01 & mac_info.macaddr[0])
1254 break;
1255 }
1256
1257 for (vpath_idx = 0; vpath_idx < vdev->no_of_vpath;
1258 vpath_idx++) {
1259 mac_info.vpath_no = vpath_idx;
1260 status = vxge_del_mac_addr(vdev, &mac_info);
1261 }
1262 }
1263
1264 /* Enable all multicast */
1265 for (i = 0; i < vdev->no_of_vpath; i++) {
7adf7d1b
JM
1266 vpath = &vdev->vpaths[i];
1267 vxge_assert(vpath->is_open);
1268
1269 status = vxge_hw_vpath_mcast_enable(vpath->handle);
703da5a1
RV
1270 if (status != VXGE_HW_OK) {
1271 vxge_debug_init(VXGE_ERR,
1272 "%s:%d Enabling all multicasts failed",
1273 __func__, __LINE__);
1274 }
1275 vdev->all_multi_flg = 1;
1276 }
1277 dev->flags |= IFF_ALLMULTI;
1278 }
1279
1280 vxge_debug_entryexit(VXGE_TRACE,
1281 "%s:%d Exiting...", __func__, __LINE__);
1282}
1283
1284/**
1285 * vxge_set_mac_addr
1286 * @dev: pointer to the device structure
1287 *
1288 * Update entry "0" (default MAC addr)
1289 */
1290static int vxge_set_mac_addr(struct net_device *dev, void *p)
1291{
1292 struct sockaddr *addr = p;
1293 struct vxgedev *vdev;
2c91308f 1294 struct __vxge_hw_device *hldev;
703da5a1
RV
1295 enum vxge_hw_status status = VXGE_HW_OK;
1296 struct macInfo mac_info_new, mac_info_old;
1297 int vpath_idx = 0;
1298
1299 vxge_debug_entryexit(VXGE_TRACE, "%s:%d", __func__, __LINE__);
1300
5f54cebb 1301 vdev = netdev_priv(dev);
703da5a1
RV
1302 hldev = vdev->devh;
1303
1304 if (!is_valid_ether_addr(addr->sa_data))
1305 return -EINVAL;
1306
1307 memset(&mac_info_new, 0, sizeof(struct macInfo));
1308 memset(&mac_info_old, 0, sizeof(struct macInfo));
1309
1310 vxge_debug_entryexit(VXGE_TRACE, "%s:%d Exiting...",
1311 __func__, __LINE__);
1312
1313 /* Get the old address */
1314 memcpy(mac_info_old.macaddr, dev->dev_addr, dev->addr_len);
1315
1316 /* Copy the new address */
1317 memcpy(mac_info_new.macaddr, addr->sa_data, dev->addr_len);
1318
1319 /* First delete the old mac address from all the vpaths
1320 as we can't specify the index while adding new mac address */
1321 for (vpath_idx = 0; vpath_idx < vdev->no_of_vpath; vpath_idx++) {
1322 struct vxge_vpath *vpath = &vdev->vpaths[vpath_idx];
1323 if (!vpath->is_open) {
1324 /* This can happen when this interface is added/removed
1325 to the bonding interface. Delete this station address
1326 from the linked list */
1327 vxge_mac_list_del(vpath, &mac_info_old);
1328
1329 /* Add this new address to the linked list
1330 for later restoring */
1331 vxge_mac_list_add(vpath, &mac_info_new);
1332
1333 continue;
1334 }
1335 /* Delete the station address */
1336 mac_info_old.vpath_no = vpath_idx;
1337 status = vxge_del_mac_addr(vdev, &mac_info_old);
1338 }
1339
1340 if (unlikely(!is_vxge_card_up(vdev))) {
1341 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1342 return VXGE_HW_OK;
1343 }
1344
1345 /* Set this mac address to all the vpaths */
1346 for (vpath_idx = 0; vpath_idx < vdev->no_of_vpath; vpath_idx++) {
1347 mac_info_new.vpath_no = vpath_idx;
1348 mac_info_new.state = VXGE_LL_MAC_ADDR_IN_DA_TABLE;
1349 status = vxge_add_mac_addr(vdev, &mac_info_new);
1350 if (status != VXGE_HW_OK)
1351 return -EINVAL;
1352 }
1353
1354 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1355
1356 return status;
1357}
1358
1359/*
1360 * vxge_vpath_intr_enable
1361 * @vdev: pointer to vdev
1362 * @vp_id: vpath for which to enable the interrupts
1363 *
1364 * Enables the interrupts for the vpath
1365*/
42821a5b 1366static void vxge_vpath_intr_enable(struct vxgedev *vdev, int vp_id)
703da5a1
RV
1367{
1368 struct vxge_vpath *vpath = &vdev->vpaths[vp_id];
b59c9457
SH
1369 int msix_id = 0;
1370 int tim_msix_id[4] = {0, 1, 0, 0};
1371 int alarm_msix_id = VXGE_ALARM_MSIX_ID;
703da5a1
RV
1372
1373 vxge_hw_vpath_intr_enable(vpath->handle);
1374
1375 if (vdev->config.intr_type == INTA)
1376 vxge_hw_vpath_inta_unmask_tx_rx(vpath->handle);
1377 else {
703da5a1
RV
1378 vxge_hw_vpath_msix_set(vpath->handle, tim_msix_id,
1379 alarm_msix_id);
1380
b59c9457 1381 msix_id = vpath->device_id * VXGE_HW_VPATH_MSIX_ACTIVE;
703da5a1
RV
1382 vxge_hw_vpath_msix_unmask(vpath->handle, msix_id);
1383 vxge_hw_vpath_msix_unmask(vpath->handle, msix_id + 1);
1384
1385 /* enable the alarm vector */
b59c9457
SH
1386 msix_id = (vpath->handle->vpath->hldev->first_vp_id *
1387 VXGE_HW_VPATH_MSIX_ACTIVE) + alarm_msix_id;
1388 vxge_hw_vpath_msix_unmask(vpath->handle, msix_id);
703da5a1
RV
1389 }
1390}
1391
1392/*
1393 * vxge_vpath_intr_disable
1394 * @vdev: pointer to vdev
1395 * @vp_id: vpath for which to disable the interrupts
1396 *
1397 * Disables the interrupts for the vpath
1398*/
42821a5b 1399static void vxge_vpath_intr_disable(struct vxgedev *vdev, int vp_id)
703da5a1
RV
1400{
1401 struct vxge_vpath *vpath = &vdev->vpaths[vp_id];
4d2a5b40 1402 struct __vxge_hw_device *hldev;
703da5a1
RV
1403 int msix_id;
1404
d8ee7071 1405 hldev = pci_get_drvdata(vdev->pdev);
4d2a5b40
JM
1406
1407 vxge_hw_vpath_wait_receive_idle(hldev, vpath->device_id);
1408
703da5a1
RV
1409 vxge_hw_vpath_intr_disable(vpath->handle);
1410
1411 if (vdev->config.intr_type == INTA)
1412 vxge_hw_vpath_inta_mask_tx_rx(vpath->handle);
1413 else {
b59c9457 1414 msix_id = vpath->device_id * VXGE_HW_VPATH_MSIX_ACTIVE;
703da5a1
RV
1415 vxge_hw_vpath_msix_mask(vpath->handle, msix_id);
1416 vxge_hw_vpath_msix_mask(vpath->handle, msix_id + 1);
1417
1418 /* disable the alarm vector */
b59c9457
SH
1419 msix_id = (vpath->handle->vpath->hldev->first_vp_id *
1420 VXGE_HW_VPATH_MSIX_ACTIVE) + VXGE_ALARM_MSIX_ID;
703da5a1
RV
1421 vxge_hw_vpath_msix_mask(vpath->handle, msix_id);
1422 }
1423}
1424
528f7272
JM
1425/* list all mac addresses from DA table */
1426static enum vxge_hw_status
1427vxge_search_mac_addr_in_da_table(struct vxge_vpath *vpath, struct macInfo *mac)
1428{
1429 enum vxge_hw_status status = VXGE_HW_OK;
1430 unsigned char macmask[ETH_ALEN];
1431 unsigned char macaddr[ETH_ALEN];
1432
1433 status = vxge_hw_vpath_mac_addr_get(vpath->handle,
1434 macaddr, macmask);
1435 if (status != VXGE_HW_OK) {
1436 vxge_debug_init(VXGE_ERR,
1437 "DA config list entry failed for vpath:%d",
1438 vpath->device_id);
1439 return status;
1440 }
1441
1442 while (memcmp(mac->macaddr, macaddr, ETH_ALEN)) {
1443 status = vxge_hw_vpath_mac_addr_get_next(vpath->handle,
1444 macaddr, macmask);
1445 if (status != VXGE_HW_OK)
1446 break;
1447 }
1448
1449 return status;
1450}
1451
1452/* Store all mac addresses from the list to the DA table */
1453static enum vxge_hw_status vxge_restore_vpath_mac_addr(struct vxge_vpath *vpath)
1454{
1455 enum vxge_hw_status status = VXGE_HW_OK;
1456 struct macInfo mac_info;
1457 u8 *mac_address = NULL;
1458 struct list_head *entry, *next;
1459
1460 memset(&mac_info, 0, sizeof(struct macInfo));
1461
1462 if (vpath->is_open) {
1463 list_for_each_safe(entry, next, &vpath->mac_addr_list) {
1464 mac_address =
1465 (u8 *)&
1466 ((struct vxge_mac_addrs *)entry)->macaddr;
1467 memcpy(mac_info.macaddr, mac_address, ETH_ALEN);
1468 ((struct vxge_mac_addrs *)entry)->state =
1469 VXGE_LL_MAC_ADDR_IN_DA_TABLE;
1470 /* does this mac address already exist in da table? */
1471 status = vxge_search_mac_addr_in_da_table(vpath,
1472 &mac_info);
1473 if (status != VXGE_HW_OK) {
1474 /* Add this mac address to the DA table */
1475 status = vxge_hw_vpath_mac_addr_add(
1476 vpath->handle, mac_info.macaddr,
1477 mac_info.macmask,
1478 VXGE_HW_VPATH_MAC_ADDR_ADD_DUPLICATE);
1479 if (status != VXGE_HW_OK) {
1480 vxge_debug_init(VXGE_ERR,
1481 "DA add entry failed for vpath:%d",
1482 vpath->device_id);
1483 ((struct vxge_mac_addrs *)entry)->state
1484 = VXGE_LL_MAC_ADDR_IN_LIST;
1485 }
1486 }
1487 }
1488 }
1489
1490 return status;
1491}
1492
1493/* Store all vlan ids from the list to the vid table */
1494static enum vxge_hw_status
1495vxge_restore_vpath_vid_table(struct vxge_vpath *vpath)
1496{
1497 enum vxge_hw_status status = VXGE_HW_OK;
1498 struct vxgedev *vdev = vpath->vdev;
1499 u16 vid;
1500
1501 if (vdev->vlgrp && vpath->is_open) {
1502
1503 for (vid = 0; vid < VLAN_N_VID; vid++) {
1504 if (!vlan_group_get_device(vdev->vlgrp, vid))
1505 continue;
1506 /* Add these vlan to the vid table */
1507 status = vxge_hw_vpath_vid_add(vpath->handle, vid);
1508 }
1509 }
1510
1511 return status;
1512}
1513
703da5a1
RV
1514/*
1515 * vxge_reset_vpath
1516 * @vdev: pointer to vdev
1517 * @vp_id: vpath to reset
1518 *
1519 * Resets the vpath
1520*/
1521static int vxge_reset_vpath(struct vxgedev *vdev, int vp_id)
1522{
1523 enum vxge_hw_status status = VXGE_HW_OK;
7adf7d1b 1524 struct vxge_vpath *vpath = &vdev->vpaths[vp_id];
703da5a1
RV
1525 int ret = 0;
1526
1527 /* check if device is down already */
1528 if (unlikely(!is_vxge_card_up(vdev)))
1529 return 0;
1530
1531 /* is device reset already scheduled */
1532 if (test_bit(__VXGE_STATE_RESET_CARD, &vdev->state))
1533 return 0;
1534
7adf7d1b
JM
1535 if (vpath->handle) {
1536 if (vxge_hw_vpath_reset(vpath->handle) == VXGE_HW_OK) {
703da5a1 1537 if (is_vxge_card_up(vdev) &&
7adf7d1b 1538 vxge_hw_vpath_recover_from_reset(vpath->handle)
703da5a1
RV
1539 != VXGE_HW_OK) {
1540 vxge_debug_init(VXGE_ERR,
1541 "vxge_hw_vpath_recover_from_reset"
1542 "failed for vpath:%d", vp_id);
1543 return status;
1544 }
1545 } else {
1546 vxge_debug_init(VXGE_ERR,
1547 "vxge_hw_vpath_reset failed for"
1548 "vpath:%d", vp_id);
1549 return status;
1550 }
1551 } else
1552 return VXGE_HW_FAIL;
1553
7adf7d1b
JM
1554 vxge_restore_vpath_mac_addr(vpath);
1555 vxge_restore_vpath_vid_table(vpath);
703da5a1
RV
1556
1557 /* Enable all broadcast */
7adf7d1b
JM
1558 vxge_hw_vpath_bcast_enable(vpath->handle);
1559
1560 /* Enable all multicast */
1561 if (vdev->all_multi_flg) {
1562 status = vxge_hw_vpath_mcast_enable(vpath->handle);
1563 if (status != VXGE_HW_OK)
1564 vxge_debug_init(VXGE_ERR,
1565 "%s:%d Enabling multicast failed",
1566 __func__, __LINE__);
1567 }
703da5a1
RV
1568
1569 /* Enable the interrupts */
1570 vxge_vpath_intr_enable(vdev, vp_id);
1571
1572 smp_wmb();
1573
1574 /* Enable the flow of traffic through the vpath */
7adf7d1b 1575 vxge_hw_vpath_enable(vpath->handle);
703da5a1
RV
1576
1577 smp_wmb();
7adf7d1b
JM
1578 vxge_hw_vpath_rx_doorbell_init(vpath->handle);
1579 vpath->ring.last_status = VXGE_HW_OK;
703da5a1
RV
1580
1581 /* Vpath reset done */
1582 clear_bit(vp_id, &vdev->vp_reset);
1583
1584 /* Start the vpath queue */
98f45da2
JM
1585 if (netif_tx_queue_stopped(vpath->fifo.txq))
1586 netif_tx_wake_queue(vpath->fifo.txq);
703da5a1
RV
1587
1588 return ret;
1589}
1590
1591static int do_vxge_reset(struct vxgedev *vdev, int event)
1592{
1593 enum vxge_hw_status status;
1594 int ret = 0, vp_id, i;
1595
1596 vxge_debug_entryexit(VXGE_TRACE, "%s:%d", __func__, __LINE__);
1597
1598 if ((event == VXGE_LL_FULL_RESET) || (event == VXGE_LL_START_RESET)) {
1599 /* check if device is down already */
1600 if (unlikely(!is_vxge_card_up(vdev)))
1601 return 0;
1602
1603 /* is reset already scheduled */
1604 if (test_and_set_bit(__VXGE_STATE_RESET_CARD, &vdev->state))
1605 return 0;
1606 }
1607
1608 if (event == VXGE_LL_FULL_RESET) {
2e41f644
JM
1609 netif_carrier_off(vdev->ndev);
1610
703da5a1
RV
1611 /* wait for all the vpath reset to complete */
1612 for (vp_id = 0; vp_id < vdev->no_of_vpath; vp_id++) {
1613 while (test_bit(vp_id, &vdev->vp_reset))
1614 msleep(50);
1615 }
1616
2e41f644
JM
1617 netif_carrier_on(vdev->ndev);
1618
703da5a1
RV
1619 /* if execution mode is set to debug, don't reset the adapter */
1620 if (unlikely(vdev->exec_mode)) {
1621 vxge_debug_init(VXGE_ERR,
1622 "%s: execution mode is debug, returning..",
1623 vdev->ndev->name);
7adf7d1b
JM
1624 clear_bit(__VXGE_STATE_CARD_UP, &vdev->state);
1625 netif_tx_stop_all_queues(vdev->ndev);
1626 return 0;
703da5a1
RV
1627 }
1628 }
1629
1630 if (event == VXGE_LL_FULL_RESET) {
4d2a5b40 1631 vxge_hw_device_wait_receive_idle(vdev->devh);
703da5a1
RV
1632 vxge_hw_device_intr_disable(vdev->devh);
1633
1634 switch (vdev->cric_err_event) {
1635 case VXGE_HW_EVENT_UNKNOWN:
d03848e0 1636 netif_tx_stop_all_queues(vdev->ndev);
703da5a1
RV
1637 vxge_debug_init(VXGE_ERR,
1638 "fatal: %s: Disabling device due to"
1639 "unknown error",
1640 vdev->ndev->name);
1641 ret = -EPERM;
1642 goto out;
1643 case VXGE_HW_EVENT_RESET_START:
1644 break;
1645 case VXGE_HW_EVENT_RESET_COMPLETE:
1646 case VXGE_HW_EVENT_LINK_DOWN:
1647 case VXGE_HW_EVENT_LINK_UP:
1648 case VXGE_HW_EVENT_ALARM_CLEARED:
1649 case VXGE_HW_EVENT_ECCERR:
1650 case VXGE_HW_EVENT_MRPCIM_ECCERR:
1651 ret = -EPERM;
1652 goto out;
1653 case VXGE_HW_EVENT_FIFO_ERR:
1654 case VXGE_HW_EVENT_VPATH_ERR:
1655 break;
1656 case VXGE_HW_EVENT_CRITICAL_ERR:
d03848e0 1657 netif_tx_stop_all_queues(vdev->ndev);
703da5a1
RV
1658 vxge_debug_init(VXGE_ERR,
1659 "fatal: %s: Disabling device due to"
1660 "serious error",
1661 vdev->ndev->name);
1662 /* SOP or device reset required */
1663 /* This event is not currently used */
1664 ret = -EPERM;
1665 goto out;
1666 case VXGE_HW_EVENT_SERR:
d03848e0 1667 netif_tx_stop_all_queues(vdev->ndev);
703da5a1
RV
1668 vxge_debug_init(VXGE_ERR,
1669 "fatal: %s: Disabling device due to"
1670 "serious error",
1671 vdev->ndev->name);
1672 ret = -EPERM;
1673 goto out;
1674 case VXGE_HW_EVENT_SRPCIM_SERR:
1675 case VXGE_HW_EVENT_MRPCIM_SERR:
1676 ret = -EPERM;
1677 goto out;
1678 case VXGE_HW_EVENT_SLOT_FREEZE:
d03848e0 1679 netif_tx_stop_all_queues(vdev->ndev);
703da5a1
RV
1680 vxge_debug_init(VXGE_ERR,
1681 "fatal: %s: Disabling device due to"
1682 "slot freeze",
1683 vdev->ndev->name);
1684 ret = -EPERM;
1685 goto out;
1686 default:
1687 break;
1688
1689 }
1690 }
1691
1692 if ((event == VXGE_LL_FULL_RESET) || (event == VXGE_LL_START_RESET))
d03848e0 1693 netif_tx_stop_all_queues(vdev->ndev);
703da5a1
RV
1694
1695 if (event == VXGE_LL_FULL_RESET) {
1696 status = vxge_reset_all_vpaths(vdev);
1697 if (status != VXGE_HW_OK) {
1698 vxge_debug_init(VXGE_ERR,
1699 "fatal: %s: can not reset vpaths",
1700 vdev->ndev->name);
1701 ret = -EPERM;
1702 goto out;
1703 }
1704 }
1705
1706 if (event == VXGE_LL_COMPL_RESET) {
1707 for (i = 0; i < vdev->no_of_vpath; i++)
1708 if (vdev->vpaths[i].handle) {
1709 if (vxge_hw_vpath_recover_from_reset(
1710 vdev->vpaths[i].handle)
1711 != VXGE_HW_OK) {
1712 vxge_debug_init(VXGE_ERR,
1713 "vxge_hw_vpath_recover_"
1714 "from_reset failed for vpath: "
1715 "%d", i);
1716 ret = -EPERM;
1717 goto out;
1718 }
1719 } else {
1720 vxge_debug_init(VXGE_ERR,
1721 "vxge_hw_vpath_reset failed for "
1722 "vpath:%d", i);
1723 ret = -EPERM;
1724 goto out;
1725 }
1726 }
1727
1728 if ((event == VXGE_LL_FULL_RESET) || (event == VXGE_LL_COMPL_RESET)) {
1729 /* Reprogram the DA table with populated mac addresses */
1730 for (vp_id = 0; vp_id < vdev->no_of_vpath; vp_id++) {
1731 vxge_restore_vpath_mac_addr(&vdev->vpaths[vp_id]);
1732 vxge_restore_vpath_vid_table(&vdev->vpaths[vp_id]);
1733 }
1734
1735 /* enable vpath interrupts */
1736 for (i = 0; i < vdev->no_of_vpath; i++)
1737 vxge_vpath_intr_enable(vdev, i);
1738
1739 vxge_hw_device_intr_enable(vdev->devh);
1740
1741 smp_wmb();
1742
1743 /* Indicate card up */
1744 set_bit(__VXGE_STATE_CARD_UP, &vdev->state);
1745
1746 /* Get the traffic to flow through the vpaths */
1747 for (i = 0; i < vdev->no_of_vpath; i++) {
1748 vxge_hw_vpath_enable(vdev->vpaths[i].handle);
1749 smp_wmb();
1750 vxge_hw_vpath_rx_doorbell_init(vdev->vpaths[i].handle);
1751 }
1752
d03848e0 1753 netif_tx_wake_all_queues(vdev->ndev);
703da5a1
RV
1754 }
1755
1756out:
1757 vxge_debug_entryexit(VXGE_TRACE,
1758 "%s:%d Exiting...", __func__, __LINE__);
1759
1760 /* Indicate reset done */
1761 if ((event == VXGE_LL_FULL_RESET) || (event == VXGE_LL_COMPL_RESET))
1762 clear_bit(__VXGE_STATE_RESET_CARD, &vdev->state);
1763 return ret;
1764}
1765
1766/*
1767 * vxge_reset
1768 * @vdev: pointer to ll device
1769 *
1770 * driver may reset the chip on events of serr, eccerr, etc
1771 */
2e41f644 1772static void vxge_reset(struct work_struct *work)
703da5a1 1773{
2e41f644
JM
1774 struct vxgedev *vdev = container_of(work, struct vxgedev, reset_task);
1775
1776 if (!netif_running(vdev->ndev))
1777 return;
1778
1779 do_vxge_reset(vdev, VXGE_LL_FULL_RESET);
703da5a1
RV
1780}
1781
1782/**
1783 * vxge_poll - Receive handler when Receive Polling is used.
1784 * @dev: pointer to the device structure.
1785 * @budget: Number of packets budgeted to be processed in this iteration.
1786 *
1787 * This function comes into picture only if Receive side is being handled
1788 * through polling (called NAPI in linux). It mostly does what the normal
1789 * Rx interrupt handler does in terms of descriptor and packet processing
1790 * but not in an interrupt context. Also it will process a specified number
1791 * of packets at most in one iteration. This value is passed down by the
1792 * kernel as the function argument 'budget'.
1793 */
1794static int vxge_poll_msix(struct napi_struct *napi, int budget)
1795{
1796 struct vxge_ring *ring =
1797 container_of(napi, struct vxge_ring, napi);
1798 int budget_org = budget;
1799 ring->budget = budget;
1800
1801 vxge_hw_vpath_poll_rx(ring->handle);
1802
1803 if (ring->pkts_processed < budget_org) {
1804 napi_complete(napi);
1805 /* Re enable the Rx interrupts for the vpath */
1806 vxge_hw_channel_msix_unmask(
1807 (struct __vxge_hw_channel *)ring->handle,
1808 ring->rx_vector_no);
1809 }
1810
1811 return ring->pkts_processed;
1812}
1813
1814static int vxge_poll_inta(struct napi_struct *napi, int budget)
1815{
1816 struct vxgedev *vdev = container_of(napi, struct vxgedev, napi);
1817 int pkts_processed = 0;
1818 int i;
1819 int budget_org = budget;
1820 struct vxge_ring *ring;
1821
d8ee7071 1822 struct __vxge_hw_device *hldev = pci_get_drvdata(vdev->pdev);
703da5a1
RV
1823
1824 for (i = 0; i < vdev->no_of_vpath; i++) {
1825 ring = &vdev->vpaths[i].ring;
1826 ring->budget = budget;
1827 vxge_hw_vpath_poll_rx(ring->handle);
1828 pkts_processed += ring->pkts_processed;
1829 budget -= ring->pkts_processed;
1830 if (budget <= 0)
1831 break;
1832 }
1833
1834 VXGE_COMPLETE_ALL_TX(vdev);
1835
1836 if (pkts_processed < budget_org) {
1837 napi_complete(napi);
1838 /* Re enable the Rx interrupts for the ring */
1839 vxge_hw_device_unmask_all(hldev);
1840 vxge_hw_device_flush_io(hldev);
1841 }
1842
1843 return pkts_processed;
1844}
1845
1846#ifdef CONFIG_NET_POLL_CONTROLLER
1847/**
1848 * vxge_netpoll - netpoll event handler entry point
1849 * @dev : pointer to the device structure.
1850 * Description:
1851 * This function will be called by upper layer to check for events on the
1852 * interface in situations where interrupts are disabled. It is used for
1853 * specific in-kernel networking tasks, such as remote consoles and kernel
1854 * debugging over the network (example netdump in RedHat).
1855 */
1856static void vxge_netpoll(struct net_device *dev)
1857{
2c91308f 1858 struct __vxge_hw_device *hldev;
703da5a1
RV
1859 struct vxgedev *vdev;
1860
5f54cebb 1861 vdev = netdev_priv(dev);
d8ee7071 1862 hldev = pci_get_drvdata(vdev->pdev);
703da5a1
RV
1863
1864 vxge_debug_entryexit(VXGE_TRACE, "%s:%d", __func__, __LINE__);
1865
1866 if (pci_channel_offline(vdev->pdev))
1867 return;
1868
1869 disable_irq(dev->irq);
1870 vxge_hw_device_clear_tx_rx(hldev);
1871
1872 vxge_hw_device_clear_tx_rx(hldev);
1873 VXGE_COMPLETE_ALL_RX(vdev);
1874 VXGE_COMPLETE_ALL_TX(vdev);
1875
1876 enable_irq(dev->irq);
1877
1878 vxge_debug_entryexit(VXGE_TRACE,
1879 "%s:%d Exiting...", __func__, __LINE__);
703da5a1
RV
1880}
1881#endif
1882
1883/* RTH configuration */
1884static enum vxge_hw_status vxge_rth_configure(struct vxgedev *vdev)
1885{
1886 enum vxge_hw_status status = VXGE_HW_OK;
1887 struct vxge_hw_rth_hash_types hash_types;
1888 u8 itable[256] = {0}; /* indirection table */
1889 u8 mtable[256] = {0}; /* CPU to vpath mapping */
1890 int index;
1891
1892 /*
1893 * Filling
1894 * - itable with bucket numbers
1895 * - mtable with bucket-to-vpath mapping
1896 */
1897 for (index = 0; index < (1 << vdev->config.rth_bkt_sz); index++) {
1898 itable[index] = index;
1899 mtable[index] = index % vdev->no_of_vpath;
1900 }
1901
703da5a1
RV
1902 /* set indirection table, bucket-to-vpath mapping */
1903 status = vxge_hw_vpath_rts_rth_itable_set(vdev->vp_handles,
1904 vdev->no_of_vpath,
1905 mtable, itable,
1906 vdev->config.rth_bkt_sz);
1907 if (status != VXGE_HW_OK) {
1908 vxge_debug_init(VXGE_ERR,
1909 "RTH indirection table configuration failed "
1910 "for vpath:%d", vdev->vpaths[0].device_id);
1911 return status;
1912 }
1913
47f01db4
JM
1914 /* Fill RTH hash types */
1915 hash_types.hash_type_tcpipv4_en = vdev->config.rth_hash_type_tcpipv4;
1916 hash_types.hash_type_ipv4_en = vdev->config.rth_hash_type_ipv4;
1917 hash_types.hash_type_tcpipv6_en = vdev->config.rth_hash_type_tcpipv6;
1918 hash_types.hash_type_ipv6_en = vdev->config.rth_hash_type_ipv6;
1919 hash_types.hash_type_tcpipv6ex_en =
1920 vdev->config.rth_hash_type_tcpipv6ex;
1921 hash_types.hash_type_ipv6ex_en = vdev->config.rth_hash_type_ipv6ex;
1922
703da5a1 1923 /*
47f01db4
JM
1924 * Because the itable_set() method uses the active_table field
1925 * for the target virtual path the RTH config should be updated
1926 * for all VPATHs. The h/w only uses the lowest numbered VPATH
1927 * when steering frames.
1928 */
703da5a1
RV
1929 for (index = 0; index < vdev->no_of_vpath; index++) {
1930 status = vxge_hw_vpath_rts_rth_set(
1931 vdev->vpaths[index].handle,
1932 vdev->config.rth_algorithm,
1933 &hash_types,
1934 vdev->config.rth_bkt_sz);
703da5a1
RV
1935 if (status != VXGE_HW_OK) {
1936 vxge_debug_init(VXGE_ERR,
1937 "RTH configuration failed for vpath:%d",
1938 vdev->vpaths[index].device_id);
1939 return status;
1940 }
1941 }
1942
1943 return status;
1944}
1945
703da5a1 1946/* reset vpaths */
4d2a5b40 1947enum vxge_hw_status vxge_reset_all_vpaths(struct vxgedev *vdev)
703da5a1 1948{
703da5a1 1949 enum vxge_hw_status status = VXGE_HW_OK;
7adf7d1b
JM
1950 struct vxge_vpath *vpath;
1951 int i;
703da5a1 1952
7adf7d1b
JM
1953 for (i = 0; i < vdev->no_of_vpath; i++) {
1954 vpath = &vdev->vpaths[i];
1955 if (vpath->handle) {
1956 if (vxge_hw_vpath_reset(vpath->handle) == VXGE_HW_OK) {
703da5a1
RV
1957 if (is_vxge_card_up(vdev) &&
1958 vxge_hw_vpath_recover_from_reset(
7adf7d1b 1959 vpath->handle) != VXGE_HW_OK) {
703da5a1
RV
1960 vxge_debug_init(VXGE_ERR,
1961 "vxge_hw_vpath_recover_"
1962 "from_reset failed for vpath: "
1963 "%d", i);
1964 return status;
1965 }
1966 } else {
1967 vxge_debug_init(VXGE_ERR,
1968 "vxge_hw_vpath_reset failed for "
1969 "vpath:%d", i);
1970 return status;
1971 }
1972 }
7adf7d1b
JM
1973 }
1974
703da5a1
RV
1975 return status;
1976}
1977
1978/* close vpaths */
42821a5b 1979static void vxge_close_vpaths(struct vxgedev *vdev, int index)
703da5a1 1980{
7adf7d1b 1981 struct vxge_vpath *vpath;
703da5a1 1982 int i;
7adf7d1b 1983
703da5a1 1984 for (i = index; i < vdev->no_of_vpath; i++) {
7adf7d1b
JM
1985 vpath = &vdev->vpaths[i];
1986
1987 if (vpath->handle && vpath->is_open) {
1988 vxge_hw_vpath_close(vpath->handle);
703da5a1
RV
1989 vdev->stats.vpaths_open--;
1990 }
7adf7d1b
JM
1991 vpath->is_open = 0;
1992 vpath->handle = NULL;
703da5a1
RV
1993 }
1994}
1995
1996/* open vpaths */
42821a5b 1997static int vxge_open_vpaths(struct vxgedev *vdev)
703da5a1 1998{
7adf7d1b 1999 struct vxge_hw_vpath_attr attr;
703da5a1 2000 enum vxge_hw_status status;
7adf7d1b 2001 struct vxge_vpath *vpath;
703da5a1 2002 u32 vp_id = 0;
7adf7d1b 2003 int i;
703da5a1
RV
2004
2005 for (i = 0; i < vdev->no_of_vpath; i++) {
7adf7d1b 2006 vpath = &vdev->vpaths[i];
7adf7d1b 2007 vxge_assert(vpath->is_configured);
e7935c96
JM
2008
2009 if (!vdev->titan1) {
2010 struct vxge_hw_vp_config *vcfg;
2011 vcfg = &vdev->devh->config.vp_config[vpath->device_id];
2012
2013 vcfg->rti.urange_a = RTI_T1A_RX_URANGE_A;
2014 vcfg->rti.urange_b = RTI_T1A_RX_URANGE_B;
2015 vcfg->rti.urange_c = RTI_T1A_RX_URANGE_C;
2016 vcfg->tti.uec_a = TTI_T1A_TX_UFC_A;
2017 vcfg->tti.uec_b = TTI_T1A_TX_UFC_B;
2018 vcfg->tti.uec_c = TTI_T1A_TX_UFC_C(vdev->mtu);
2019 vcfg->tti.uec_d = TTI_T1A_TX_UFC_D(vdev->mtu);
2020 vcfg->tti.ltimer_val = VXGE_T1A_TTI_LTIMER_VAL;
2021 vcfg->tti.rtimer_val = VXGE_T1A_TTI_RTIMER_VAL;
2022 }
2023
7adf7d1b 2024 attr.vp_id = vpath->device_id;
703da5a1
RV
2025 attr.fifo_attr.callback = vxge_xmit_compl;
2026 attr.fifo_attr.txdl_term = vxge_tx_term;
2027 attr.fifo_attr.per_txdl_space = sizeof(struct vxge_tx_priv);
7adf7d1b 2028 attr.fifo_attr.userdata = &vpath->fifo;
703da5a1
RV
2029
2030 attr.ring_attr.callback = vxge_rx_1b_compl;
2031 attr.ring_attr.rxd_init = vxge_rx_initial_replenish;
2032 attr.ring_attr.rxd_term = vxge_rx_term;
2033 attr.ring_attr.per_rxd_space = sizeof(struct vxge_rx_priv);
7adf7d1b 2034 attr.ring_attr.userdata = &vpath->ring;
703da5a1 2035
7adf7d1b
JM
2036 vpath->ring.ndev = vdev->ndev;
2037 vpath->ring.pdev = vdev->pdev;
528f7272 2038
7adf7d1b 2039 status = vxge_hw_vpath_open(vdev->devh, &attr, &vpath->handle);
703da5a1 2040 if (status == VXGE_HW_OK) {
7adf7d1b 2041 vpath->fifo.handle =
703da5a1 2042 (struct __vxge_hw_fifo *)attr.fifo_attr.userdata;
7adf7d1b 2043 vpath->ring.handle =
703da5a1 2044 (struct __vxge_hw_ring *)attr.ring_attr.userdata;
7adf7d1b 2045 vpath->fifo.tx_steering_type =
703da5a1 2046 vdev->config.tx_steering_type;
7adf7d1b
JM
2047 vpath->fifo.ndev = vdev->ndev;
2048 vpath->fifo.pdev = vdev->pdev;
98f45da2
JM
2049 if (vdev->config.tx_steering_type)
2050 vpath->fifo.txq =
2051 netdev_get_tx_queue(vdev->ndev, i);
2052 else
2053 vpath->fifo.txq =
2054 netdev_get_tx_queue(vdev->ndev, 0);
7adf7d1b 2055 vpath->fifo.indicate_max_pkts =
703da5a1 2056 vdev->config.fifo_indicate_max_pkts;
7adf7d1b
JM
2057 vpath->ring.rx_vector_no = 0;
2058 vpath->ring.rx_csum = vdev->rx_csum;
b81b3733 2059 vpath->ring.rx_hwts = vdev->rx_hwts;
7adf7d1b
JM
2060 vpath->is_open = 1;
2061 vdev->vp_handles[i] = vpath->handle;
2062 vpath->ring.gro_enable = vdev->config.gro_enable;
2063 vpath->ring.vlan_tag_strip = vdev->vlan_tag_strip;
703da5a1
RV
2064 vdev->stats.vpaths_open++;
2065 } else {
2066 vdev->stats.vpath_open_fail++;
528f7272
JM
2067 vxge_debug_init(VXGE_ERR, "%s: vpath: %d failed to "
2068 "open with status: %d",
2069 vdev->ndev->name, vpath->device_id,
2070 status);
703da5a1
RV
2071 vxge_close_vpaths(vdev, 0);
2072 return -EPERM;
2073 }
2074
7adf7d1b 2075 vp_id = vpath->handle->vpath->vp_id;
703da5a1
RV
2076 vdev->vpaths_deployed |= vxge_mBIT(vp_id);
2077 }
528f7272 2078
703da5a1
RV
2079 return VXGE_HW_OK;
2080}
2081
2082/*
2083 * vxge_isr_napi
2084 * @irq: the irq of the device.
2085 * @dev_id: a void pointer to the hldev structure of the Titan device
2086 * @ptregs: pointer to the registers pushed on the stack.
2087 *
2088 * This function is the ISR handler of the device when napi is enabled. It
2089 * identifies the reason for the interrupt and calls the relevant service
2090 * routines.
2091 */
2092static irqreturn_t vxge_isr_napi(int irq, void *dev_id)
2093{
703da5a1 2094 struct net_device *dev;
a5d165b5 2095 struct __vxge_hw_device *hldev;
703da5a1
RV
2096 u64 reason;
2097 enum vxge_hw_status status;
2c91308f 2098 struct vxgedev *vdev = (struct vxgedev *)dev_id;
703da5a1
RV
2099
2100 vxge_debug_intr(VXGE_TRACE, "%s:%d", __func__, __LINE__);
2101
a5d165b5 2102 dev = vdev->ndev;
d8ee7071 2103 hldev = pci_get_drvdata(vdev->pdev);
703da5a1
RV
2104
2105 if (pci_channel_offline(vdev->pdev))
2106 return IRQ_NONE;
2107
2108 if (unlikely(!is_vxge_card_up(vdev)))
4d2a5b40 2109 return IRQ_HANDLED;
703da5a1 2110
528f7272 2111 status = vxge_hw_device_begin_irq(hldev, vdev->exec_mode, &reason);
703da5a1
RV
2112 if (status == VXGE_HW_OK) {
2113 vxge_hw_device_mask_all(hldev);
2114
2115 if (reason &
2116 VXGE_HW_TITAN_GENERAL_INT_STATUS_VPATH_TRAFFIC_INT(
2117 vdev->vpaths_deployed >>
2118 (64 - VXGE_HW_MAX_VIRTUAL_PATHS))) {
2119
2120 vxge_hw_device_clear_tx_rx(hldev);
2121 napi_schedule(&vdev->napi);
2122 vxge_debug_intr(VXGE_TRACE,
2123 "%s:%d Exiting...", __func__, __LINE__);
2124 return IRQ_HANDLED;
2125 } else
2126 vxge_hw_device_unmask_all(hldev);
2127 } else if (unlikely((status == VXGE_HW_ERR_VPATH) ||
2128 (status == VXGE_HW_ERR_CRITICAL) ||
2129 (status == VXGE_HW_ERR_FIFO))) {
2130 vxge_hw_device_mask_all(hldev);
2131 vxge_hw_device_flush_io(hldev);
2132 return IRQ_HANDLED;
2133 } else if (unlikely(status == VXGE_HW_ERR_SLOT_FREEZE))
2134 return IRQ_HANDLED;
2135
2136 vxge_debug_intr(VXGE_TRACE, "%s:%d Exiting...", __func__, __LINE__);
2137 return IRQ_NONE;
2138}
2139
2140#ifdef CONFIG_PCI_MSI
2141
2142static irqreturn_t
2143vxge_tx_msix_handle(int irq, void *dev_id)
2144{
2145 struct vxge_fifo *fifo = (struct vxge_fifo *)dev_id;
2146
2147 VXGE_COMPLETE_VPATH_TX(fifo);
2148
2149 return IRQ_HANDLED;
2150}
2151
2152static irqreturn_t
2153vxge_rx_msix_napi_handle(int irq, void *dev_id)
2154{
2155 struct vxge_ring *ring = (struct vxge_ring *)dev_id;
2156
2157 /* MSIX_IDX for Rx is 1 */
2158 vxge_hw_channel_msix_mask((struct __vxge_hw_channel *)ring->handle,
2159 ring->rx_vector_no);
2160
2161 napi_schedule(&ring->napi);
2162 return IRQ_HANDLED;
2163}
2164
2165static irqreturn_t
2166vxge_alarm_msix_handle(int irq, void *dev_id)
2167{
2168 int i;
2169 enum vxge_hw_status status;
2170 struct vxge_vpath *vpath = (struct vxge_vpath *)dev_id;
2171 struct vxgedev *vdev = vpath->vdev;
b59c9457
SH
2172 int msix_id = (vpath->handle->vpath->vp_id *
2173 VXGE_HW_VPATH_MSIX_ACTIVE) + VXGE_ALARM_MSIX_ID;
703da5a1
RV
2174
2175 for (i = 0; i < vdev->no_of_vpath; i++) {
b59c9457 2176 vxge_hw_vpath_msix_mask(vdev->vpaths[i].handle, msix_id);
703da5a1
RV
2177
2178 status = vxge_hw_vpath_alarm_process(vdev->vpaths[i].handle,
2179 vdev->exec_mode);
2180 if (status == VXGE_HW_OK) {
2181
2182 vxge_hw_vpath_msix_unmask(vdev->vpaths[i].handle,
b59c9457 2183 msix_id);
703da5a1
RV
2184 continue;
2185 }
2186 vxge_debug_intr(VXGE_ERR,
2187 "%s: vxge_hw_vpath_alarm_process failed %x ",
2188 VXGE_DRIVER_NAME, status);
2189 }
2190 return IRQ_HANDLED;
2191}
2192
2193static int vxge_alloc_msix(struct vxgedev *vdev)
2194{
2195 int j, i, ret = 0;
b59c9457 2196 int msix_intr_vect = 0, temp;
703da5a1
RV
2197 vdev->intr_cnt = 0;
2198
b59c9457 2199start:
703da5a1
RV
2200 /* Tx/Rx MSIX Vectors count */
2201 vdev->intr_cnt = vdev->no_of_vpath * 2;
2202
2203 /* Alarm MSIX Vectors count */
2204 vdev->intr_cnt++;
2205
baeb2ffa
JP
2206 vdev->entries = kcalloc(vdev->intr_cnt, sizeof(struct msix_entry),
2207 GFP_KERNEL);
703da5a1
RV
2208 if (!vdev->entries) {
2209 vxge_debug_init(VXGE_ERR,
2210 "%s: memory allocation failed",
2211 VXGE_DRIVER_NAME);
cc413d90
MS
2212 ret = -ENOMEM;
2213 goto alloc_entries_failed;
703da5a1
RV
2214 }
2215
baeb2ffa
JP
2216 vdev->vxge_entries = kcalloc(vdev->intr_cnt,
2217 sizeof(struct vxge_msix_entry),
2218 GFP_KERNEL);
703da5a1
RV
2219 if (!vdev->vxge_entries) {
2220 vxge_debug_init(VXGE_ERR, "%s: memory allocation failed",
2221 VXGE_DRIVER_NAME);
cc413d90
MS
2222 ret = -ENOMEM;
2223 goto alloc_vxge_entries_failed;
703da5a1
RV
2224 }
2225
b59c9457 2226 for (i = 0, j = 0; i < vdev->no_of_vpath; i++) {
703da5a1
RV
2227
2228 msix_intr_vect = i * VXGE_HW_VPATH_MSIX_ACTIVE;
2229
2230 /* Initialize the fifo vector */
2231 vdev->entries[j].entry = msix_intr_vect;
2232 vdev->vxge_entries[j].entry = msix_intr_vect;
2233 vdev->vxge_entries[j].in_use = 0;
2234 j++;
2235
2236 /* Initialize the ring vector */
2237 vdev->entries[j].entry = msix_intr_vect + 1;
2238 vdev->vxge_entries[j].entry = msix_intr_vect + 1;
2239 vdev->vxge_entries[j].in_use = 0;
2240 j++;
2241 }
2242
2243 /* Initialize the alarm vector */
b59c9457
SH
2244 vdev->entries[j].entry = VXGE_ALARM_MSIX_ID;
2245 vdev->vxge_entries[j].entry = VXGE_ALARM_MSIX_ID;
703da5a1
RV
2246 vdev->vxge_entries[j].in_use = 0;
2247
b59c9457 2248 ret = pci_enable_msix(vdev->pdev, vdev->entries, vdev->intr_cnt);
b59c9457 2249 if (ret > 0) {
703da5a1
RV
2250 vxge_debug_init(VXGE_ERR,
2251 "%s: MSI-X enable failed for %d vectors, ret: %d",
b59c9457 2252 VXGE_DRIVER_NAME, vdev->intr_cnt, ret);
cc413d90
MS
2253 if ((max_config_vpath != VXGE_USE_DEFAULT) || (ret < 3)) {
2254 ret = -ENODEV;
2255 goto enable_msix_failed;
2256 }
2257
703da5a1
RV
2258 kfree(vdev->entries);
2259 kfree(vdev->vxge_entries);
2260 vdev->entries = NULL;
2261 vdev->vxge_entries = NULL;
b59c9457
SH
2262 /* Try with less no of vector by reducing no of vpaths count */
2263 temp = (ret - 1)/2;
2264 vxge_close_vpaths(vdev, temp);
2265 vdev->no_of_vpath = temp;
2266 goto start;
cc413d90
MS
2267 } else if (ret < 0) {
2268 ret = -ENODEV;
2269 goto enable_msix_failed;
2270 }
703da5a1 2271 return 0;
cc413d90
MS
2272
2273enable_msix_failed:
2274 kfree(vdev->vxge_entries);
2275alloc_vxge_entries_failed:
2276 kfree(vdev->entries);
2277alloc_entries_failed:
2278 return ret;
703da5a1
RV
2279}
2280
2281static int vxge_enable_msix(struct vxgedev *vdev)
2282{
2283
2284 int i, ret = 0;
703da5a1 2285 /* 0 - Tx, 1 - Rx */
b59c9457
SH
2286 int tim_msix_id[4] = {0, 1, 0, 0};
2287
703da5a1
RV
2288 vdev->intr_cnt = 0;
2289
2290 /* allocate msix vectors */
2291 ret = vxge_alloc_msix(vdev);
2292 if (!ret) {
703da5a1 2293 for (i = 0; i < vdev->no_of_vpath; i++) {
7adf7d1b 2294 struct vxge_vpath *vpath = &vdev->vpaths[i];
703da5a1 2295
7adf7d1b
JM
2296 /* If fifo or ring are not enabled, the MSIX vector for
2297 * it should be set to 0.
2298 */
2299 vpath->ring.rx_vector_no = (vpath->device_id *
2300 VXGE_HW_VPATH_MSIX_ACTIVE) + 1;
703da5a1 2301
7adf7d1b
JM
2302 vxge_hw_vpath_msix_set(vpath->handle, tim_msix_id,
2303 VXGE_ALARM_MSIX_ID);
703da5a1
RV
2304 }
2305 }
2306
2307 return ret;
2308}
2309
2310static void vxge_rem_msix_isr(struct vxgedev *vdev)
2311{
2312 int intr_cnt;
2313
b59c9457 2314 for (intr_cnt = 0; intr_cnt < (vdev->no_of_vpath * 2 + 1);
703da5a1
RV
2315 intr_cnt++) {
2316 if (vdev->vxge_entries[intr_cnt].in_use) {
2317 synchronize_irq(vdev->entries[intr_cnt].vector);
2318 free_irq(vdev->entries[intr_cnt].vector,
2319 vdev->vxge_entries[intr_cnt].arg);
2320 vdev->vxge_entries[intr_cnt].in_use = 0;
2321 }
2322 }
2323
2324 kfree(vdev->entries);
2325 kfree(vdev->vxge_entries);
2326 vdev->entries = NULL;
2327 vdev->vxge_entries = NULL;
2328
2329 if (vdev->config.intr_type == MSI_X)
2330 pci_disable_msix(vdev->pdev);
2331}
2332#endif
2333
2334static void vxge_rem_isr(struct vxgedev *vdev)
2335{
2c91308f 2336 struct __vxge_hw_device *hldev;
d8ee7071 2337 hldev = pci_get_drvdata(vdev->pdev);
703da5a1
RV
2338
2339#ifdef CONFIG_PCI_MSI
2340 if (vdev->config.intr_type == MSI_X) {
2341 vxge_rem_msix_isr(vdev);
2342 } else
2343#endif
2344 if (vdev->config.intr_type == INTA) {
2345 synchronize_irq(vdev->pdev->irq);
a5d165b5 2346 free_irq(vdev->pdev->irq, vdev);
703da5a1
RV
2347 }
2348}
2349
2350static int vxge_add_isr(struct vxgedev *vdev)
2351{
2352 int ret = 0;
703da5a1
RV
2353#ifdef CONFIG_PCI_MSI
2354 int vp_idx = 0, intr_idx = 0, intr_cnt = 0, msix_idx = 0, irq_req = 0;
703da5a1
RV
2355 int pci_fun = PCI_FUNC(vdev->pdev->devfn);
2356
2357 if (vdev->config.intr_type == MSI_X)
2358 ret = vxge_enable_msix(vdev);
2359
2360 if (ret) {
2361 vxge_debug_init(VXGE_ERR,
2362 "%s: Enabling MSI-X Failed", VXGE_DRIVER_NAME);
eb5f10c2
SH
2363 vxge_debug_init(VXGE_ERR,
2364 "%s: Defaulting to INTA", VXGE_DRIVER_NAME);
2365 vdev->config.intr_type = INTA;
703da5a1
RV
2366 }
2367
2368 if (vdev->config.intr_type == MSI_X) {
2369 for (intr_idx = 0;
2370 intr_idx < (vdev->no_of_vpath *
2371 VXGE_HW_VPATH_MSIX_ACTIVE); intr_idx++) {
2372
2373 msix_idx = intr_idx % VXGE_HW_VPATH_MSIX_ACTIVE;
2374 irq_req = 0;
2375
2376 switch (msix_idx) {
2377 case 0:
2378 snprintf(vdev->desc[intr_cnt], VXGE_INTR_STRLEN,
b59c9457
SH
2379 "%s:vxge:MSI-X %d - Tx - fn:%d vpath:%d",
2380 vdev->ndev->name,
2381 vdev->entries[intr_cnt].entry,
2382 pci_fun, vp_idx);
703da5a1
RV
2383 ret = request_irq(
2384 vdev->entries[intr_cnt].vector,
2385 vxge_tx_msix_handle, 0,
2386 vdev->desc[intr_cnt],
2387 &vdev->vpaths[vp_idx].fifo);
2388 vdev->vxge_entries[intr_cnt].arg =
2389 &vdev->vpaths[vp_idx].fifo;
2390 irq_req = 1;
2391 break;
2392 case 1:
2393 snprintf(vdev->desc[intr_cnt], VXGE_INTR_STRLEN,
b59c9457
SH
2394 "%s:vxge:MSI-X %d - Rx - fn:%d vpath:%d",
2395 vdev->ndev->name,
2396 vdev->entries[intr_cnt].entry,
2397 pci_fun, vp_idx);
703da5a1
RV
2398 ret = request_irq(
2399 vdev->entries[intr_cnt].vector,
2400 vxge_rx_msix_napi_handle,
2401 0,
2402 vdev->desc[intr_cnt],
2403 &vdev->vpaths[vp_idx].ring);
2404 vdev->vxge_entries[intr_cnt].arg =
2405 &vdev->vpaths[vp_idx].ring;
2406 irq_req = 1;
2407 break;
2408 }
2409
2410 if (ret) {
2411 vxge_debug_init(VXGE_ERR,
2412 "%s: MSIX - %d Registration failed",
2413 vdev->ndev->name, intr_cnt);
2414 vxge_rem_msix_isr(vdev);
eb5f10c2
SH
2415 vdev->config.intr_type = INTA;
2416 vxge_debug_init(VXGE_ERR,
2417 "%s: Defaulting to INTA"
2418 , vdev->ndev->name);
703da5a1 2419 goto INTA_MODE;
703da5a1
RV
2420 }
2421
2422 if (irq_req) {
2423 /* We requested for this msix interrupt */
2424 vdev->vxge_entries[intr_cnt].in_use = 1;
b59c9457
SH
2425 msix_idx += vdev->vpaths[vp_idx].device_id *
2426 VXGE_HW_VPATH_MSIX_ACTIVE;
703da5a1
RV
2427 vxge_hw_vpath_msix_unmask(
2428 vdev->vpaths[vp_idx].handle,
b59c9457 2429 msix_idx);
703da5a1
RV
2430 intr_cnt++;
2431 }
2432
2433 /* Point to next vpath handler */
8e95a202
JP
2434 if (((intr_idx + 1) % VXGE_HW_VPATH_MSIX_ACTIVE == 0) &&
2435 (vp_idx < (vdev->no_of_vpath - 1)))
2436 vp_idx++;
703da5a1
RV
2437 }
2438
b59c9457 2439 intr_cnt = vdev->no_of_vpath * 2;
703da5a1 2440 snprintf(vdev->desc[intr_cnt], VXGE_INTR_STRLEN,
b59c9457
SH
2441 "%s:vxge:MSI-X %d - Alarm - fn:%d",
2442 vdev->ndev->name,
2443 vdev->entries[intr_cnt].entry,
2444 pci_fun);
703da5a1
RV
2445 /* For Alarm interrupts */
2446 ret = request_irq(vdev->entries[intr_cnt].vector,
2447 vxge_alarm_msix_handle, 0,
2448 vdev->desc[intr_cnt],
b59c9457 2449 &vdev->vpaths[0]);
703da5a1
RV
2450 if (ret) {
2451 vxge_debug_init(VXGE_ERR,
2452 "%s: MSIX - %d Registration failed",
2453 vdev->ndev->name, intr_cnt);
2454 vxge_rem_msix_isr(vdev);
eb5f10c2
SH
2455 vdev->config.intr_type = INTA;
2456 vxge_debug_init(VXGE_ERR,
2457 "%s: Defaulting to INTA",
2458 vdev->ndev->name);
703da5a1 2459 goto INTA_MODE;
703da5a1
RV
2460 }
2461
b59c9457
SH
2462 msix_idx = (vdev->vpaths[0].handle->vpath->vp_id *
2463 VXGE_HW_VPATH_MSIX_ACTIVE) + VXGE_ALARM_MSIX_ID;
703da5a1 2464 vxge_hw_vpath_msix_unmask(vdev->vpaths[vp_idx].handle,
b59c9457 2465 msix_idx);
703da5a1 2466 vdev->vxge_entries[intr_cnt].in_use = 1;
b59c9457 2467 vdev->vxge_entries[intr_cnt].arg = &vdev->vpaths[0];
703da5a1
RV
2468 }
2469INTA_MODE:
2470#endif
703da5a1
RV
2471
2472 if (vdev->config.intr_type == INTA) {
b59c9457
SH
2473 snprintf(vdev->desc[0], VXGE_INTR_STRLEN,
2474 "%s:vxge:INTA", vdev->ndev->name);
eb5f10c2
SH
2475 vxge_hw_device_set_intr_type(vdev->devh,
2476 VXGE_HW_INTR_MODE_IRQLINE);
2477 vxge_hw_vpath_tti_ci_set(vdev->devh,
2478 vdev->vpaths[0].device_id);
703da5a1
RV
2479 ret = request_irq((int) vdev->pdev->irq,
2480 vxge_isr_napi,
a5d165b5 2481 IRQF_SHARED, vdev->desc[0], vdev);
703da5a1
RV
2482 if (ret) {
2483 vxge_debug_init(VXGE_ERR,
2484 "%s %s-%d: ISR registration failed",
2485 VXGE_DRIVER_NAME, "IRQ", vdev->pdev->irq);
2486 return -ENODEV;
2487 }
2488 vxge_debug_init(VXGE_TRACE,
2489 "new %s-%d line allocated",
2490 "IRQ", vdev->pdev->irq);
2491 }
2492
2493 return VXGE_HW_OK;
2494}
2495
2496static void vxge_poll_vp_reset(unsigned long data)
2497{
2498 struct vxgedev *vdev = (struct vxgedev *)data;
2499 int i, j = 0;
2500
2501 for (i = 0; i < vdev->no_of_vpath; i++) {
2502 if (test_bit(i, &vdev->vp_reset)) {
2503 vxge_reset_vpath(vdev, i);
2504 j++;
2505 }
2506 }
2507 if (j && (vdev->config.intr_type != MSI_X)) {
2508 vxge_hw_device_unmask_all(vdev->devh);
2509 vxge_hw_device_flush_io(vdev->devh);
2510 }
2511
2512 mod_timer(&vdev->vp_reset_timer, jiffies + HZ / 2);
2513}
2514
2515static void vxge_poll_vp_lockup(unsigned long data)
2516{
2517 struct vxgedev *vdev = (struct vxgedev *)data;
703da5a1 2518 enum vxge_hw_status status = VXGE_HW_OK;
7adf7d1b
JM
2519 struct vxge_vpath *vpath;
2520 struct vxge_ring *ring;
2521 int i;
703da5a1
RV
2522
2523 for (i = 0; i < vdev->no_of_vpath; i++) {
2524 ring = &vdev->vpaths[i].ring;
2525 /* Did this vpath received any packets */
2526 if (ring->stats.prev_rx_frms == ring->stats.rx_frms) {
2527 status = vxge_hw_vpath_check_leak(ring->handle);
2528
2529 /* Did it received any packets last time */
2530 if ((VXGE_HW_FAIL == status) &&
2531 (VXGE_HW_FAIL == ring->last_status)) {
2532
2533 /* schedule vpath reset */
2534 if (!test_and_set_bit(i, &vdev->vp_reset)) {
7adf7d1b 2535 vpath = &vdev->vpaths[i];
703da5a1
RV
2536
2537 /* disable interrupts for this vpath */
2538 vxge_vpath_intr_disable(vdev, i);
2539
2540 /* stop the queue for this vpath */
98f45da2 2541 netif_tx_stop_queue(vpath->fifo.txq);
703da5a1
RV
2542 continue;
2543 }
2544 }
2545 }
2546 ring->stats.prev_rx_frms = ring->stats.rx_frms;
2547 ring->last_status = status;
2548 }
2549
2550 /* Check every 1 milli second */
2551 mod_timer(&vdev->vp_lockup_timer, jiffies + HZ / 1000);
2552}
2553
2554/**
2555 * vxge_open
2556 * @dev: pointer to the device structure.
2557 *
2558 * This function is the open entry point of the driver. It mainly calls a
2559 * function to allocate Rx buffers and inserts them into the buffer
2560 * descriptors and then enables the Rx part of the NIC.
2561 * Return value: '0' on success and an appropriate (-)ve integer as
2562 * defined in errno.h file on failure.
2563 */
528f7272 2564static int vxge_open(struct net_device *dev)
703da5a1
RV
2565{
2566 enum vxge_hw_status status;
2567 struct vxgedev *vdev;
2568 struct __vxge_hw_device *hldev;
7adf7d1b 2569 struct vxge_vpath *vpath;
703da5a1
RV
2570 int ret = 0;
2571 int i;
2572 u64 val64, function_mode;
528f7272 2573
703da5a1
RV
2574 vxge_debug_entryexit(VXGE_TRACE,
2575 "%s: %s:%d", dev->name, __func__, __LINE__);
2576
5f54cebb 2577 vdev = netdev_priv(dev);
d8ee7071 2578 hldev = pci_get_drvdata(vdev->pdev);
703da5a1
RV
2579 function_mode = vdev->config.device_hw_info.function_mode;
2580
2581 /* make sure you have link off by default every time Nic is
2582 * initialized */
2583 netif_carrier_off(dev);
2584
703da5a1
RV
2585 /* Open VPATHs */
2586 status = vxge_open_vpaths(vdev);
2587 if (status != VXGE_HW_OK) {
2588 vxge_debug_init(VXGE_ERR,
2589 "%s: fatal: Vpath open failed", vdev->ndev->name);
2590 ret = -EPERM;
2591 goto out0;
2592 }
2593
2594 vdev->mtu = dev->mtu;
2595
2596 status = vxge_add_isr(vdev);
2597 if (status != VXGE_HW_OK) {
2598 vxge_debug_init(VXGE_ERR,
2599 "%s: fatal: ISR add failed", dev->name);
2600 ret = -EPERM;
2601 goto out1;
2602 }
2603
703da5a1
RV
2604 if (vdev->config.intr_type != MSI_X) {
2605 netif_napi_add(dev, &vdev->napi, vxge_poll_inta,
2606 vdev->config.napi_weight);
2607 napi_enable(&vdev->napi);
7adf7d1b
JM
2608 for (i = 0; i < vdev->no_of_vpath; i++) {
2609 vpath = &vdev->vpaths[i];
2610 vpath->ring.napi_p = &vdev->napi;
2611 }
703da5a1
RV
2612 } else {
2613 for (i = 0; i < vdev->no_of_vpath; i++) {
7adf7d1b
JM
2614 vpath = &vdev->vpaths[i];
2615 netif_napi_add(dev, &vpath->ring.napi,
703da5a1 2616 vxge_poll_msix, vdev->config.napi_weight);
7adf7d1b
JM
2617 napi_enable(&vpath->ring.napi);
2618 vpath->ring.napi_p = &vpath->ring.napi;
703da5a1
RV
2619 }
2620 }
2621
2622 /* configure RTH */
2623 if (vdev->config.rth_steering) {
2624 status = vxge_rth_configure(vdev);
2625 if (status != VXGE_HW_OK) {
2626 vxge_debug_init(VXGE_ERR,
2627 "%s: fatal: RTH configuration failed",
2628 dev->name);
2629 ret = -EPERM;
2630 goto out2;
2631 }
2632 }
47f01db4
JM
2633 printk(KERN_INFO "%s: Receive Hashing Offload %s\n", dev->name,
2634 hldev->config.rth_en ? "enabled" : "disabled");
703da5a1
RV
2635
2636 for (i = 0; i < vdev->no_of_vpath; i++) {
7adf7d1b
JM
2637 vpath = &vdev->vpaths[i];
2638
703da5a1 2639 /* set initial mtu before enabling the device */
7adf7d1b 2640 status = vxge_hw_vpath_mtu_set(vpath->handle, vdev->mtu);
703da5a1
RV
2641 if (status != VXGE_HW_OK) {
2642 vxge_debug_init(VXGE_ERR,
2643 "%s: fatal: can not set new MTU", dev->name);
2644 ret = -EPERM;
2645 goto out2;
2646 }
2647 }
2648
2649 VXGE_DEVICE_DEBUG_LEVEL_SET(VXGE_TRACE, VXGE_COMPONENT_LL, vdev);
2650 vxge_debug_init(vdev->level_trace,
2651 "%s: MTU is %d", vdev->ndev->name, vdev->mtu);
2652 VXGE_DEVICE_DEBUG_LEVEL_SET(VXGE_ERR, VXGE_COMPONENT_LL, vdev);
2653
7adf7d1b
JM
2654 /* Restore the DA, VID table and also multicast and promiscuous mode
2655 * states
2656 */
2657 if (vdev->all_multi_flg) {
2658 for (i = 0; i < vdev->no_of_vpath; i++) {
2659 vpath = &vdev->vpaths[i];
2660 vxge_restore_vpath_mac_addr(vpath);
2661 vxge_restore_vpath_vid_table(vpath);
2662
2663 status = vxge_hw_vpath_mcast_enable(vpath->handle);
2664 if (status != VXGE_HW_OK)
2665 vxge_debug_init(VXGE_ERR,
2666 "%s:%d Enabling multicast failed",
2667 __func__, __LINE__);
2668 }
703da5a1
RV
2669 }
2670
2671 /* Enable vpath to sniff all unicast/multicast traffic that not
2672 * addressed to them. We allow promiscous mode for PF only
2673 */
2674
2675 val64 = 0;
2676 for (i = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++)
2677 val64 |= VXGE_HW_RXMAC_AUTHORIZE_ALL_ADDR_VP(i);
2678
2679 vxge_hw_mgmt_reg_write(vdev->devh,
2680 vxge_hw_mgmt_reg_type_mrpcim,
2681 0,
2682 (ulong)offsetof(struct vxge_hw_mrpcim_reg,
2683 rxmac_authorize_all_addr),
2684 val64);
2685
2686 vxge_hw_mgmt_reg_write(vdev->devh,
2687 vxge_hw_mgmt_reg_type_mrpcim,
2688 0,
2689 (ulong)offsetof(struct vxge_hw_mrpcim_reg,
2690 rxmac_authorize_all_vid),
2691 val64);
2692
2693 vxge_set_multicast(dev);
2694
2695 /* Enabling Bcast and mcast for all vpath */
2696 for (i = 0; i < vdev->no_of_vpath; i++) {
7adf7d1b
JM
2697 vpath = &vdev->vpaths[i];
2698 status = vxge_hw_vpath_bcast_enable(vpath->handle);
703da5a1
RV
2699 if (status != VXGE_HW_OK)
2700 vxge_debug_init(VXGE_ERR,
2701 "%s : Can not enable bcast for vpath "
2702 "id %d", dev->name, i);
2703 if (vdev->config.addr_learn_en) {
7adf7d1b 2704 status = vxge_hw_vpath_mcast_enable(vpath->handle);
703da5a1
RV
2705 if (status != VXGE_HW_OK)
2706 vxge_debug_init(VXGE_ERR,
2707 "%s : Can not enable mcast for vpath "
2708 "id %d", dev->name, i);
2709 }
2710 }
2711
2712 vxge_hw_device_setpause_data(vdev->devh, 0,
2713 vdev->config.tx_pause_enable,
2714 vdev->config.rx_pause_enable);
2715
2716 if (vdev->vp_reset_timer.function == NULL)
2717 vxge_os_timer(vdev->vp_reset_timer,
2718 vxge_poll_vp_reset, vdev, (HZ/2));
2719
e7935c96
JM
2720 /* There is no need to check for RxD leak and RxD lookup on Titan1A */
2721 if (vdev->titan1 && vdev->vp_lockup_timer.function == NULL)
2722 vxge_os_timer(vdev->vp_lockup_timer, vxge_poll_vp_lockup, vdev,
2723 HZ / 2);
703da5a1
RV
2724
2725 set_bit(__VXGE_STATE_CARD_UP, &vdev->state);
2726
2727 smp_wmb();
2728
2729 if (vxge_hw_device_link_state_get(vdev->devh) == VXGE_HW_LINK_UP) {
2730 netif_carrier_on(vdev->ndev);
75f5e1c6 2731 netdev_notice(vdev->ndev, "Link Up\n");
703da5a1
RV
2732 vdev->stats.link_up++;
2733 }
2734
2735 vxge_hw_device_intr_enable(vdev->devh);
2736
2737 smp_wmb();
2738
2739 for (i = 0; i < vdev->no_of_vpath; i++) {
7adf7d1b
JM
2740 vpath = &vdev->vpaths[i];
2741
2742 vxge_hw_vpath_enable(vpath->handle);
703da5a1 2743 smp_wmb();
7adf7d1b 2744 vxge_hw_vpath_rx_doorbell_init(vpath->handle);
703da5a1
RV
2745 }
2746
d03848e0 2747 netif_tx_start_all_queues(vdev->ndev);
703da5a1
RV
2748 goto out0;
2749
2750out2:
2751 vxge_rem_isr(vdev);
2752
2753 /* Disable napi */
2754 if (vdev->config.intr_type != MSI_X)
2755 napi_disable(&vdev->napi);
2756 else {
2757 for (i = 0; i < vdev->no_of_vpath; i++)
2758 napi_disable(&vdev->vpaths[i].ring.napi);
2759 }
2760
2761out1:
2762 vxge_close_vpaths(vdev, 0);
2763out0:
2764 vxge_debug_entryexit(VXGE_TRACE,
2765 "%s: %s:%d Exiting...",
2766 dev->name, __func__, __LINE__);
2767 return ret;
2768}
2769
2770/* Loop throught the mac address list and delete all the entries */
42821a5b 2771static void vxge_free_mac_add_list(struct vxge_vpath *vpath)
703da5a1
RV
2772{
2773
2774 struct list_head *entry, *next;
2775 if (list_empty(&vpath->mac_addr_list))
2776 return;
2777
2778 list_for_each_safe(entry, next, &vpath->mac_addr_list) {
2779 list_del(entry);
2780 kfree((struct vxge_mac_addrs *)entry);
2781 }
2782}
2783
2784static void vxge_napi_del_all(struct vxgedev *vdev)
2785{
2786 int i;
2787 if (vdev->config.intr_type != MSI_X)
2788 netif_napi_del(&vdev->napi);
2789 else {
2790 for (i = 0; i < vdev->no_of_vpath; i++)
2791 netif_napi_del(&vdev->vpaths[i].ring.napi);
2792 }
703da5a1
RV
2793}
2794
42821a5b 2795static int do_vxge_close(struct net_device *dev, int do_io)
703da5a1
RV
2796{
2797 enum vxge_hw_status status;
2798 struct vxgedev *vdev;
2799 struct __vxge_hw_device *hldev;
2800 int i;
2801 u64 val64, vpath_vector;
2802 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d",
2803 dev->name, __func__, __LINE__);
2804
5f54cebb 2805 vdev = netdev_priv(dev);
d8ee7071 2806 hldev = pci_get_drvdata(vdev->pdev);
703da5a1 2807
bd9ee680
SH
2808 if (unlikely(!is_vxge_card_up(vdev)))
2809 return 0;
2810
703da5a1
RV
2811 /* If vxge_handle_crit_err task is executing,
2812 * wait till it completes. */
2813 while (test_and_set_bit(__VXGE_STATE_RESET_CARD, &vdev->state))
2814 msleep(50);
2815
703da5a1
RV
2816 if (do_io) {
2817 /* Put the vpath back in normal mode */
2818 vpath_vector = vxge_mBIT(vdev->vpaths[0].device_id);
2819 status = vxge_hw_mgmt_reg_read(vdev->devh,
2820 vxge_hw_mgmt_reg_type_mrpcim,
2821 0,
2822 (ulong)offsetof(
2823 struct vxge_hw_mrpcim_reg,
2824 rts_mgr_cbasin_cfg),
2825 &val64);
703da5a1
RV
2826 if (status == VXGE_HW_OK) {
2827 val64 &= ~vpath_vector;
2828 status = vxge_hw_mgmt_reg_write(vdev->devh,
2829 vxge_hw_mgmt_reg_type_mrpcim,
2830 0,
2831 (ulong)offsetof(
2832 struct vxge_hw_mrpcim_reg,
2833 rts_mgr_cbasin_cfg),
2834 val64);
2835 }
2836
2837 /* Remove the function 0 from promiscous mode */
2838 vxge_hw_mgmt_reg_write(vdev->devh,
2839 vxge_hw_mgmt_reg_type_mrpcim,
2840 0,
2841 (ulong)offsetof(struct vxge_hw_mrpcim_reg,
2842 rxmac_authorize_all_addr),
2843 0);
2844
2845 vxge_hw_mgmt_reg_write(vdev->devh,
2846 vxge_hw_mgmt_reg_type_mrpcim,
2847 0,
2848 (ulong)offsetof(struct vxge_hw_mrpcim_reg,
2849 rxmac_authorize_all_vid),
2850 0);
2851
2852 smp_wmb();
2853 }
e7935c96
JM
2854
2855 if (vdev->titan1)
2856 del_timer_sync(&vdev->vp_lockup_timer);
703da5a1
RV
2857
2858 del_timer_sync(&vdev->vp_reset_timer);
2859
4d2a5b40
JM
2860 if (do_io)
2861 vxge_hw_device_wait_receive_idle(hldev);
2862
2863 clear_bit(__VXGE_STATE_CARD_UP, &vdev->state);
2864
703da5a1
RV
2865 /* Disable napi */
2866 if (vdev->config.intr_type != MSI_X)
2867 napi_disable(&vdev->napi);
2868 else {
2869 for (i = 0; i < vdev->no_of_vpath; i++)
2870 napi_disable(&vdev->vpaths[i].ring.napi);
2871 }
2872
2873 netif_carrier_off(vdev->ndev);
75f5e1c6 2874 netdev_notice(vdev->ndev, "Link Down\n");
d03848e0 2875 netif_tx_stop_all_queues(vdev->ndev);
703da5a1
RV
2876
2877 /* Note that at this point xmit() is stopped by upper layer */
2878 if (do_io)
2879 vxge_hw_device_intr_disable(vdev->devh);
2880
703da5a1
RV
2881 vxge_rem_isr(vdev);
2882
2883 vxge_napi_del_all(vdev);
2884
2885 if (do_io)
2886 vxge_reset_all_vpaths(vdev);
2887
2888 vxge_close_vpaths(vdev, 0);
2889
2890 vxge_debug_entryexit(VXGE_TRACE,
2891 "%s: %s:%d Exiting...", dev->name, __func__, __LINE__);
2892
703da5a1
RV
2893 clear_bit(__VXGE_STATE_RESET_CARD, &vdev->state);
2894
2895 return 0;
2896}
2897
2898/**
2899 * vxge_close
2900 * @dev: device pointer.
2901 *
2902 * This is the stop entry point of the driver. It needs to undo exactly
2903 * whatever was done by the open entry point, thus it's usually referred to
2904 * as the close function.Among other things this function mainly stops the
2905 * Rx side of the NIC and frees all the Rx buffers in the Rx rings.
2906 * Return value: '0' on success and an appropriate (-)ve integer as
2907 * defined in errno.h file on failure.
2908 */
528f7272 2909static int vxge_close(struct net_device *dev)
703da5a1
RV
2910{
2911 do_vxge_close(dev, 1);
2912 return 0;
2913}
2914
2915/**
2916 * vxge_change_mtu
2917 * @dev: net device pointer.
2918 * @new_mtu :the new MTU size for the device.
2919 *
2920 * A driver entry point to change MTU size for the device. Before changing
2921 * the MTU the device must be stopped.
2922 */
2923static int vxge_change_mtu(struct net_device *dev, int new_mtu)
2924{
2925 struct vxgedev *vdev = netdev_priv(dev);
2926
2927 vxge_debug_entryexit(vdev->level_trace,
2928 "%s:%d", __func__, __LINE__);
2929 if ((new_mtu < VXGE_HW_MIN_MTU) || (new_mtu > VXGE_HW_MAX_MTU)) {
2930 vxge_debug_init(vdev->level_err,
2931 "%s: mtu size is invalid", dev->name);
2932 return -EPERM;
2933 }
2934
2935 /* check if device is down already */
2936 if (unlikely(!is_vxge_card_up(vdev))) {
2937 /* just store new value, will use later on open() */
2938 dev->mtu = new_mtu;
2939 vxge_debug_init(vdev->level_err,
2940 "%s", "device is down on MTU change");
2941 return 0;
2942 }
2943
2944 vxge_debug_init(vdev->level_trace,
2945 "trying to apply new MTU %d", new_mtu);
2946
2947 if (vxge_close(dev))
2948 return -EIO;
2949
2950 dev->mtu = new_mtu;
2951 vdev->mtu = new_mtu;
2952
2953 if (vxge_open(dev))
2954 return -EIO;
2955
2956 vxge_debug_init(vdev->level_trace,
2957 "%s: MTU changed to %d", vdev->ndev->name, new_mtu);
2958
2959 vxge_debug_entryexit(vdev->level_trace,
2960 "%s:%d Exiting...", __func__, __LINE__);
2961
2962 return 0;
2963}
2964
2965/**
dd57f970 2966 * vxge_get_stats64
703da5a1 2967 * @dev: pointer to the device structure
dd57f970 2968 * @stats: pointer to struct rtnl_link_stats64
703da5a1 2969 *
703da5a1 2970 */
dd57f970
ED
2971static struct rtnl_link_stats64 *
2972vxge_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *net_stats)
703da5a1 2973{
dd57f970 2974 struct vxgedev *vdev = netdev_priv(dev);
703da5a1
RV
2975 int k;
2976
dd57f970 2977 /* net_stats already zeroed by caller */
703da5a1
RV
2978 for (k = 0; k < vdev->no_of_vpath; k++) {
2979 net_stats->rx_packets += vdev->vpaths[k].ring.stats.rx_frms;
2980 net_stats->rx_bytes += vdev->vpaths[k].ring.stats.rx_bytes;
2981 net_stats->rx_errors += vdev->vpaths[k].ring.stats.rx_errors;
2982 net_stats->multicast += vdev->vpaths[k].ring.stats.rx_mcast;
528f7272 2983 net_stats->rx_dropped += vdev->vpaths[k].ring.stats.rx_dropped;
703da5a1
RV
2984 net_stats->tx_packets += vdev->vpaths[k].fifo.stats.tx_frms;
2985 net_stats->tx_bytes += vdev->vpaths[k].fifo.stats.tx_bytes;
2986 net_stats->tx_errors += vdev->vpaths[k].fifo.stats.tx_errors;
2987 }
2988
2989 return net_stats;
2990}
2991
b81b3733
JM
2992static enum vxge_hw_status vxge_timestamp_config(struct vxgedev *vdev,
2993 int enable)
2994{
2995 enum vxge_hw_status status;
2996 u64 val64;
2997
2998 /* Timestamp is passed to the driver via the FCS, therefore we
2999 * must disable the FCS stripping by the adapter. Since this is
3000 * required for the driver to load (due to a hardware bug),
3001 * there is no need to do anything special here.
3002 */
3003 if (enable)
3004 val64 = VXGE_HW_XMAC_TIMESTAMP_EN |
3005 VXGE_HW_XMAC_TIMESTAMP_USE_LINK_ID(0) |
3006 VXGE_HW_XMAC_TIMESTAMP_INTERVAL(0);
3007 else
3008 val64 = 0;
3009
3010 status = vxge_hw_mgmt_reg_write(vdev->devh,
3011 vxge_hw_mgmt_reg_type_mrpcim,
3012 0,
3013 offsetof(struct vxge_hw_mrpcim_reg,
3014 xmac_timestamp),
3015 val64);
3016 vxge_hw_device_flush_io(vdev->devh);
3017 return status;
3018}
3019
3020static int vxge_hwtstamp_ioctl(struct vxgedev *vdev, void __user *data)
3021{
3022 struct hwtstamp_config config;
3023 enum vxge_hw_status status;
3024 int i;
3025
3026 if (copy_from_user(&config, data, sizeof(config)))
3027 return -EFAULT;
3028
3029 /* reserved for future extensions */
3030 if (config.flags)
3031 return -EINVAL;
3032
3033 /* Transmit HW Timestamp not supported */
3034 switch (config.tx_type) {
3035 case HWTSTAMP_TX_OFF:
3036 break;
3037 case HWTSTAMP_TX_ON:
3038 default:
3039 return -ERANGE;
3040 }
3041
3042 switch (config.rx_filter) {
3043 case HWTSTAMP_FILTER_NONE:
3044 status = vxge_timestamp_config(vdev, 0);
3045 if (status != VXGE_HW_OK)
3046 return -EFAULT;
3047
3048 vdev->rx_hwts = 0;
3049 config.rx_filter = HWTSTAMP_FILTER_NONE;
3050 break;
3051
3052 case HWTSTAMP_FILTER_ALL:
3053 case HWTSTAMP_FILTER_SOME:
3054 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
3055 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
3056 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
3057 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
3058 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
3059 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
3060 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
3061 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
3062 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
3063 case HWTSTAMP_FILTER_PTP_V2_EVENT:
3064 case HWTSTAMP_FILTER_PTP_V2_SYNC:
3065 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
3066 status = vxge_timestamp_config(vdev, 1);
3067 if (status != VXGE_HW_OK)
3068 return -EFAULT;
3069
3070 vdev->rx_hwts = 1;
3071 config.rx_filter = HWTSTAMP_FILTER_ALL;
3072 break;
3073
3074 default:
3075 return -ERANGE;
3076 }
3077
3078 for (i = 0; i < vdev->no_of_vpath; i++)
3079 vdev->vpaths[i].ring.rx_hwts = vdev->rx_hwts;
3080
3081 if (copy_to_user(data, &config, sizeof(config)))
3082 return -EFAULT;
3083
3084 return 0;
3085}
3086
703da5a1
RV
3087/**
3088 * vxge_ioctl
3089 * @dev: Device pointer.
3090 * @ifr: An IOCTL specific structure, that can contain a pointer to
3091 * a proprietary structure used to pass information to the driver.
3092 * @cmd: This is used to distinguish between the different commands that
3093 * can be passed to the IOCTL functions.
3094 *
3095 * Entry point for the Ioctl.
3096 */
3097static int vxge_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
3098{
b81b3733
JM
3099 struct vxgedev *vdev = netdev_priv(dev);
3100 int ret;
3101
3102 switch (cmd) {
3103 case SIOCSHWTSTAMP:
3104 ret = vxge_hwtstamp_ioctl(vdev, rq->ifr_data);
3105 if (ret)
3106 return ret;
3107 break;
3108 default:
3109 return -EOPNOTSUPP;
3110 }
3111
3112 return 0;
703da5a1
RV
3113}
3114
3115/**
3116 * vxge_tx_watchdog
3117 * @dev: pointer to net device structure
3118 *
3119 * Watchdog for transmit side.
3120 * This function is triggered if the Tx Queue is stopped
3121 * for a pre-defined amount of time when the Interface is still up.
3122 */
2e41f644 3123static void vxge_tx_watchdog(struct net_device *dev)
703da5a1
RV
3124{
3125 struct vxgedev *vdev;
3126
3127 vxge_debug_entryexit(VXGE_TRACE, "%s:%d", __func__, __LINE__);
3128
5f54cebb 3129 vdev = netdev_priv(dev);
703da5a1
RV
3130
3131 vdev->cric_err_event = VXGE_HW_EVENT_RESET_START;
3132
2e41f644 3133 schedule_work(&vdev->reset_task);
703da5a1
RV
3134 vxge_debug_entryexit(VXGE_TRACE,
3135 "%s:%d Exiting...", __func__, __LINE__);
3136}
3137
3138/**
3139 * vxge_vlan_rx_register
3140 * @dev: net device pointer.
3141 * @grp: vlan group
3142 *
3143 * Vlan group registration
3144 */
3145static void
3146vxge_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
3147{
3148 struct vxgedev *vdev;
3149 struct vxge_vpath *vpath;
3150 int vp;
3151 u64 vid;
3152 enum vxge_hw_status status;
3153 int i;
3154
3155 vxge_debug_entryexit(VXGE_TRACE, "%s:%d", __func__, __LINE__);
3156
5f54cebb 3157 vdev = netdev_priv(dev);
703da5a1
RV
3158
3159 vpath = &vdev->vpaths[0];
3160 if ((NULL == grp) && (vpath->is_open)) {
3161 /* Get the first vlan */
3162 status = vxge_hw_vpath_vid_get(vpath->handle, &vid);
3163
3164 while (status == VXGE_HW_OK) {
3165
3166 /* Delete this vlan from the vid table */
3167 for (vp = 0; vp < vdev->no_of_vpath; vp++) {
3168 vpath = &vdev->vpaths[vp];
3169 if (!vpath->is_open)
3170 continue;
3171
3172 vxge_hw_vpath_vid_delete(vpath->handle, vid);
3173 }
3174
3175 /* Get the next vlan to be deleted */
3176 vpath = &vdev->vpaths[0];
3177 status = vxge_hw_vpath_vid_get(vpath->handle, &vid);
3178 }
3179 }
3180
3181 vdev->vlgrp = grp;
3182
3183 for (i = 0; i < vdev->no_of_vpath; i++) {
3184 if (vdev->vpaths[i].is_configured)
3185 vdev->vpaths[i].ring.vlgrp = grp;
3186 }
3187
3188 vxge_debug_entryexit(VXGE_TRACE,
3189 "%s:%d Exiting...", __func__, __LINE__);
3190}
3191
3192/**
3193 * vxge_vlan_rx_add_vid
3194 * @dev: net device pointer.
3195 * @vid: vid
3196 *
3197 * Add the vlan id to the devices vlan id table
3198 */
3199static void
3200vxge_vlan_rx_add_vid(struct net_device *dev, unsigned short vid)
3201{
3202 struct vxgedev *vdev;
3203 struct vxge_vpath *vpath;
3204 int vp_id;
3205
5f54cebb 3206 vdev = netdev_priv(dev);
703da5a1
RV
3207
3208 /* Add these vlan to the vid table */
3209 for (vp_id = 0; vp_id < vdev->no_of_vpath; vp_id++) {
3210 vpath = &vdev->vpaths[vp_id];
3211 if (!vpath->is_open)
3212 continue;
3213 vxge_hw_vpath_vid_add(vpath->handle, vid);
3214 }
3215}
3216
3217/**
3218 * vxge_vlan_rx_add_vid
3219 * @dev: net device pointer.
3220 * @vid: vid
3221 *
3222 * Remove the vlan id from the device's vlan id table
3223 */
3224static void
3225vxge_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
3226{
3227 struct vxgedev *vdev;
3228 struct vxge_vpath *vpath;
3229 int vp_id;
3230
3231 vxge_debug_entryexit(VXGE_TRACE, "%s:%d", __func__, __LINE__);
3232
5f54cebb 3233 vdev = netdev_priv(dev);
703da5a1
RV
3234
3235 vlan_group_set_device(vdev->vlgrp, vid, NULL);
3236
3237 /* Delete this vlan from the vid table */
3238 for (vp_id = 0; vp_id < vdev->no_of_vpath; vp_id++) {
3239 vpath = &vdev->vpaths[vp_id];
3240 if (!vpath->is_open)
3241 continue;
3242 vxge_hw_vpath_vid_delete(vpath->handle, vid);
3243 }
3244 vxge_debug_entryexit(VXGE_TRACE,
3245 "%s:%d Exiting...", __func__, __LINE__);
3246}
3247
3248static const struct net_device_ops vxge_netdev_ops = {
3249 .ndo_open = vxge_open,
3250 .ndo_stop = vxge_close,
dd57f970 3251 .ndo_get_stats64 = vxge_get_stats64,
703da5a1
RV
3252 .ndo_start_xmit = vxge_xmit,
3253 .ndo_validate_addr = eth_validate_addr,
3254 .ndo_set_multicast_list = vxge_set_multicast,
703da5a1 3255 .ndo_do_ioctl = vxge_ioctl,
703da5a1
RV
3256 .ndo_set_mac_address = vxge_set_mac_addr,
3257 .ndo_change_mtu = vxge_change_mtu,
3258 .ndo_vlan_rx_register = vxge_vlan_rx_register,
3259 .ndo_vlan_rx_kill_vid = vxge_vlan_rx_kill_vid,
3260 .ndo_vlan_rx_add_vid = vxge_vlan_rx_add_vid,
703da5a1
RV
3261 .ndo_tx_timeout = vxge_tx_watchdog,
3262#ifdef CONFIG_NET_POLL_CONTROLLER
3263 .ndo_poll_controller = vxge_netpoll,
3264#endif
3265};
3266
e7935c96
JM
3267static int __devinit vxge_device_revision(struct vxgedev *vdev)
3268{
3269 int ret;
3270 u8 revision;
3271
3272 ret = pci_read_config_byte(vdev->pdev, PCI_REVISION_ID, &revision);
3273 if (ret)
3274 return -EIO;
3275
3276 vdev->titan1 = (revision == VXGE_HW_TITAN1_PCI_REVISION);
3277 return 0;
3278}
3279
42821a5b 3280static int __devinit vxge_device_register(struct __vxge_hw_device *hldev,
3281 struct vxge_config *config,
3282 int high_dma, int no_of_vpath,
3283 struct vxgedev **vdev_out)
703da5a1
RV
3284{
3285 struct net_device *ndev;
3286 enum vxge_hw_status status = VXGE_HW_OK;
3287 struct vxgedev *vdev;
98f45da2 3288 int ret = 0, no_of_queue = 1;
703da5a1
RV
3289 u64 stat;
3290
3291 *vdev_out = NULL;
d03848e0 3292 if (config->tx_steering_type)
703da5a1
RV
3293 no_of_queue = no_of_vpath;
3294
3295 ndev = alloc_etherdev_mq(sizeof(struct vxgedev),
3296 no_of_queue);
3297 if (ndev == NULL) {
3298 vxge_debug_init(
3299 vxge_hw_device_trace_level_get(hldev),
3300 "%s : device allocation failed", __func__);
3301 ret = -ENODEV;
3302 goto _out0;
3303 }
3304
3305 vxge_debug_entryexit(
3306 vxge_hw_device_trace_level_get(hldev),
3307 "%s: %s:%d Entering...",
3308 ndev->name, __func__, __LINE__);
3309
3310 vdev = netdev_priv(ndev);
3311 memset(vdev, 0, sizeof(struct vxgedev));
3312
3313 vdev->ndev = ndev;
3314 vdev->devh = hldev;
3315 vdev->pdev = hldev->pdev;
3316 memcpy(&vdev->config, config, sizeof(struct vxge_config));
3317 vdev->rx_csum = 1; /* Enable Rx CSUM by default. */
b81b3733 3318 vdev->rx_hwts = 0;
703da5a1 3319
e7935c96
JM
3320 ret = vxge_device_revision(vdev);
3321 if (ret < 0)
3322 goto _out1;
3323
703da5a1
RV
3324 SET_NETDEV_DEV(ndev, &vdev->pdev->dev);
3325
3326 ndev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX |
3327 NETIF_F_HW_VLAN_FILTER;
3328 /* Driver entry points */
3329 ndev->irq = vdev->pdev->irq;
3330 ndev->base_addr = (unsigned long) hldev->bar0;
3331
3332 ndev->netdev_ops = &vxge_netdev_ops;
3333
3334 ndev->watchdog_timeo = VXGE_LL_WATCH_DOG_TIMEOUT;
2e41f644 3335 INIT_WORK(&vdev->reset_task, vxge_reset);
703da5a1 3336
42821a5b 3337 vxge_initialize_ethtool_ops(ndev);
703da5a1 3338
47f01db4
JM
3339 if (vdev->config.rth_steering != NO_STEERING) {
3340 ndev->features |= NETIF_F_RXHASH;
3341 hldev->config.rth_en = VXGE_HW_RTH_ENABLE;
3342 }
3343
703da5a1
RV
3344 /* Allocate memory for vpath */
3345 vdev->vpaths = kzalloc((sizeof(struct vxge_vpath)) *
3346 no_of_vpath, GFP_KERNEL);
3347 if (!vdev->vpaths) {
3348 vxge_debug_init(VXGE_ERR,
3349 "%s: vpath memory allocation failed",
3350 vdev->ndev->name);
6cca2003 3351 ret = -ENOMEM;
703da5a1
RV
3352 goto _out1;
3353 }
3354
3355 ndev->features |= NETIF_F_SG;
3356
79032644 3357 ndev->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
703da5a1
RV
3358 vxge_debug_init(vxge_hw_device_trace_level_get(hldev),
3359 "%s : checksuming enabled", __func__);
3360
3361 if (high_dma) {
3362 ndev->features |= NETIF_F_HIGHDMA;
3363 vxge_debug_init(vxge_hw_device_trace_level_get(hldev),
3364 "%s : using High DMA", __func__);
3365 }
3366
3367 ndev->features |= NETIF_F_TSO | NETIF_F_TSO6;
3368
3369 if (vdev->config.gro_enable)
3370 ndev->features |= NETIF_F_GRO;
3371
6cca2003
JM
3372 ret = register_netdev(ndev);
3373 if (ret) {
703da5a1
RV
3374 vxge_debug_init(vxge_hw_device_trace_level_get(hldev),
3375 "%s: %s : device registration failed!",
3376 ndev->name, __func__);
703da5a1
RV
3377 goto _out2;
3378 }
3379
3380 /* Set the factory defined MAC address initially */
3381 ndev->addr_len = ETH_ALEN;
3382
3383 /* Make Link state as off at this point, when the Link change
3384 * interrupt comes the state will be automatically changed to
3385 * the right state.
3386 */
3387 netif_carrier_off(ndev);
3388
3389 vxge_debug_init(vxge_hw_device_trace_level_get(hldev),
3390 "%s: Ethernet device registered",
3391 ndev->name);
3392
e8ac1756 3393 hldev->ndev = ndev;
703da5a1
RV
3394 *vdev_out = vdev;
3395
3396 /* Resetting the Device stats */
3397 status = vxge_hw_mrpcim_stats_access(
3398 hldev,
3399 VXGE_HW_STATS_OP_CLEAR_ALL_STATS,
3400 0,
3401 0,
3402 &stat);
3403
3404 if (status == VXGE_HW_ERR_PRIVILAGED_OPEARATION)
3405 vxge_debug_init(
3406 vxge_hw_device_trace_level_get(hldev),
3407 "%s: device stats clear returns"
3408 "VXGE_HW_ERR_PRIVILAGED_OPEARATION", ndev->name);
3409
3410 vxge_debug_entryexit(vxge_hw_device_trace_level_get(hldev),
3411 "%s: %s:%d Exiting...",
3412 ndev->name, __func__, __LINE__);
3413
3414 return ret;
3415_out2:
3416 kfree(vdev->vpaths);
3417_out1:
3418 free_netdev(ndev);
3419_out0:
3420 return ret;
3421}
3422
3423/*
3424 * vxge_device_unregister
3425 *
3426 * This function will unregister and free network device
3427 */
2c91308f 3428static void vxge_device_unregister(struct __vxge_hw_device *hldev)
703da5a1
RV
3429{
3430 struct vxgedev *vdev;
3431 struct net_device *dev;
3432 char buf[IFNAMSIZ];
703da5a1
RV
3433
3434 dev = hldev->ndev;
3435 vdev = netdev_priv(dev);
703da5a1 3436
2c91308f
JM
3437 vxge_debug_entryexit(vdev->level_trace, "%s: %s:%d", vdev->ndev->name,
3438 __func__, __LINE__);
3439
ead5d238 3440 strncpy(buf, dev->name, IFNAMSIZ);
703da5a1 3441
ba27d85c
TH
3442 flush_work_sync(&vdev->reset_task);
3443
703da5a1
RV
3444 /* in 2.6 will call stop() if device is up */
3445 unregister_netdev(dev);
3446
6cca2003
JM
3447 kfree(vdev->vpaths);
3448
3449 /* we are safe to free it now */
3450 free_netdev(dev);
3451
2c91308f
JM
3452 vxge_debug_init(vdev->level_trace, "%s: ethernet device unregistered",
3453 buf);
3454 vxge_debug_entryexit(vdev->level_trace, "%s: %s:%d Exiting...", buf,
3455 __func__, __LINE__);
703da5a1
RV
3456}
3457
3458/*
3459 * vxge_callback_crit_err
3460 *
3461 * This function is called by the alarm handler in interrupt context.
3462 * Driver must analyze it based on the event type.
3463 */
3464static void
3465vxge_callback_crit_err(struct __vxge_hw_device *hldev,
3466 enum vxge_hw_event type, u64 vp_id)
3467{
3468 struct net_device *dev = hldev->ndev;
5f54cebb 3469 struct vxgedev *vdev = netdev_priv(dev);
98f45da2 3470 struct vxge_vpath *vpath = NULL;
703da5a1
RV
3471 int vpath_idx;
3472
3473 vxge_debug_entryexit(vdev->level_trace,
3474 "%s: %s:%d", vdev->ndev->name, __func__, __LINE__);
3475
3476 /* Note: This event type should be used for device wide
3477 * indications only - Serious errors, Slot freeze and critical errors
3478 */
3479 vdev->cric_err_event = type;
3480
98f45da2
JM
3481 for (vpath_idx = 0; vpath_idx < vdev->no_of_vpath; vpath_idx++) {
3482 vpath = &vdev->vpaths[vpath_idx];
3483 if (vpath->device_id == vp_id)
703da5a1 3484 break;
98f45da2 3485 }
703da5a1
RV
3486
3487 if (!test_bit(__VXGE_STATE_RESET_CARD, &vdev->state)) {
3488 if (type == VXGE_HW_EVENT_SLOT_FREEZE) {
3489 vxge_debug_init(VXGE_ERR,
3490 "%s: Slot is frozen", vdev->ndev->name);
3491 } else if (type == VXGE_HW_EVENT_SERR) {
3492 vxge_debug_init(VXGE_ERR,
3493 "%s: Encountered Serious Error",
3494 vdev->ndev->name);
3495 } else if (type == VXGE_HW_EVENT_CRITICAL_ERR)
3496 vxge_debug_init(VXGE_ERR,
3497 "%s: Encountered Critical Error",
3498 vdev->ndev->name);
3499 }
3500
3501 if ((type == VXGE_HW_EVENT_SERR) ||
3502 (type == VXGE_HW_EVENT_SLOT_FREEZE)) {
3503 if (unlikely(vdev->exec_mode))
3504 clear_bit(__VXGE_STATE_CARD_UP, &vdev->state);
3505 } else if (type == VXGE_HW_EVENT_CRITICAL_ERR) {
3506 vxge_hw_device_mask_all(hldev);
3507 if (unlikely(vdev->exec_mode))
3508 clear_bit(__VXGE_STATE_CARD_UP, &vdev->state);
3509 } else if ((type == VXGE_HW_EVENT_FIFO_ERR) ||
3510 (type == VXGE_HW_EVENT_VPATH_ERR)) {
3511
3512 if (unlikely(vdev->exec_mode))
3513 clear_bit(__VXGE_STATE_CARD_UP, &vdev->state);
3514 else {
3515 /* check if this vpath is already set for reset */
3516 if (!test_and_set_bit(vpath_idx, &vdev->vp_reset)) {
3517
3518 /* disable interrupts for this vpath */
3519 vxge_vpath_intr_disable(vdev, vpath_idx);
3520
3521 /* stop the queue for this vpath */
98f45da2 3522 netif_tx_stop_queue(vpath->fifo.txq);
703da5a1
RV
3523 }
3524 }
3525 }
3526
3527 vxge_debug_entryexit(vdev->level_trace,
3528 "%s: %s:%d Exiting...",
3529 vdev->ndev->name, __func__, __LINE__);
3530}
3531
3532static void verify_bandwidth(void)
3533{
3534 int i, band_width, total = 0, equal_priority = 0;
3535
3536 /* 1. If user enters 0 for some fifo, give equal priority to all */
3537 for (i = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++) {
3538 if (bw_percentage[i] == 0) {
3539 equal_priority = 1;
3540 break;
3541 }
3542 }
3543
3544 if (!equal_priority) {
3545 /* 2. If sum exceeds 100, give equal priority to all */
3546 for (i = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++) {
3547 if (bw_percentage[i] == 0xFF)
3548 break;
3549
3550 total += bw_percentage[i];
3551 if (total > VXGE_HW_VPATH_BANDWIDTH_MAX) {
3552 equal_priority = 1;
3553 break;
3554 }
3555 }
3556 }
3557
3558 if (!equal_priority) {
3559 /* Is all the bandwidth consumed? */
3560 if (total < VXGE_HW_VPATH_BANDWIDTH_MAX) {
3561 if (i < VXGE_HW_MAX_VIRTUAL_PATHS) {
3562 /* Split rest of bw equally among next VPs*/
3563 band_width =
3564 (VXGE_HW_VPATH_BANDWIDTH_MAX - total) /
3565 (VXGE_HW_MAX_VIRTUAL_PATHS - i);
3566 if (band_width < 2) /* min of 2% */
3567 equal_priority = 1;
3568 else {
3569 for (; i < VXGE_HW_MAX_VIRTUAL_PATHS;
3570 i++)
3571 bw_percentage[i] =
3572 band_width;
3573 }
3574 }
3575 } else if (i < VXGE_HW_MAX_VIRTUAL_PATHS)
3576 equal_priority = 1;
3577 }
3578
3579 if (equal_priority) {
3580 vxge_debug_init(VXGE_ERR,
3581 "%s: Assigning equal bandwidth to all the vpaths",
3582 VXGE_DRIVER_NAME);
3583 bw_percentage[0] = VXGE_HW_VPATH_BANDWIDTH_MAX /
3584 VXGE_HW_MAX_VIRTUAL_PATHS;
3585 for (i = 1; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++)
3586 bw_percentage[i] = bw_percentage[0];
3587 }
703da5a1
RV
3588}
3589
3590/*
3591 * Vpath configuration
3592 */
3593static int __devinit vxge_config_vpaths(
3594 struct vxge_hw_device_config *device_config,
3595 u64 vpath_mask, struct vxge_config *config_param)
3596{
3597 int i, no_of_vpaths = 0, default_no_vpath = 0, temp;
3598 u32 txdl_size, txdl_per_memblock;
3599
3600 temp = driver_config->vpath_per_dev;
3601 if ((driver_config->vpath_per_dev == VXGE_USE_DEFAULT) &&
3602 (max_config_dev == VXGE_MAX_CONFIG_DEV)) {
3603 /* No more CPU. Return vpath number as zero.*/
3604 if (driver_config->g_no_cpus == -1)
3605 return 0;
3606
3607 if (!driver_config->g_no_cpus)
3608 driver_config->g_no_cpus = num_online_cpus();
3609
3610 driver_config->vpath_per_dev = driver_config->g_no_cpus >> 1;
3611 if (!driver_config->vpath_per_dev)
3612 driver_config->vpath_per_dev = 1;
3613
3614 for (i = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++)
3615 if (!vxge_bVALn(vpath_mask, i, 1))
3616 continue;
3617 else
3618 default_no_vpath++;
3619 if (default_no_vpath < driver_config->vpath_per_dev)
3620 driver_config->vpath_per_dev = default_no_vpath;
3621
3622 driver_config->g_no_cpus = driver_config->g_no_cpus -
3623 (driver_config->vpath_per_dev * 2);
3624 if (driver_config->g_no_cpus <= 0)
3625 driver_config->g_no_cpus = -1;
3626 }
3627
3628 if (driver_config->vpath_per_dev == 1) {
3629 vxge_debug_ll_config(VXGE_TRACE,
3630 "%s: Disable tx and rx steering, "
3631 "as single vpath is configured", VXGE_DRIVER_NAME);
3632 config_param->rth_steering = NO_STEERING;
3633 config_param->tx_steering_type = NO_STEERING;
3634 device_config->rth_en = 0;
3635 }
3636
3637 /* configure bandwidth */
3638 for (i = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++)
3639 device_config->vp_config[i].min_bandwidth = bw_percentage[i];
3640
3641 for (i = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++) {
3642 device_config->vp_config[i].vp_id = i;
3643 device_config->vp_config[i].mtu = VXGE_HW_DEFAULT_MTU;
3644 if (no_of_vpaths < driver_config->vpath_per_dev) {
3645 if (!vxge_bVALn(vpath_mask, i, 1)) {
3646 vxge_debug_ll_config(VXGE_TRACE,
3647 "%s: vpath: %d is not available",
3648 VXGE_DRIVER_NAME, i);
3649 continue;
3650 } else {
3651 vxge_debug_ll_config(VXGE_TRACE,
3652 "%s: vpath: %d available",
3653 VXGE_DRIVER_NAME, i);
3654 no_of_vpaths++;
3655 }
3656 } else {
3657 vxge_debug_ll_config(VXGE_TRACE,
3658 "%s: vpath: %d is not configured, "
3659 "max_config_vpath exceeded",
3660 VXGE_DRIVER_NAME, i);
3661 break;
3662 }
3663
3664 /* Configure Tx fifo's */
3665 device_config->vp_config[i].fifo.enable =
3666 VXGE_HW_FIFO_ENABLE;
3667 device_config->vp_config[i].fifo.max_frags =
5beefb4f 3668 MAX_SKB_FRAGS + 1;
703da5a1
RV
3669 device_config->vp_config[i].fifo.memblock_size =
3670 VXGE_HW_MIN_FIFO_MEMBLOCK_SIZE;
3671
5beefb4f
SH
3672 txdl_size = device_config->vp_config[i].fifo.max_frags *
3673 sizeof(struct vxge_hw_fifo_txd);
703da5a1
RV
3674 txdl_per_memblock = VXGE_HW_MIN_FIFO_MEMBLOCK_SIZE / txdl_size;
3675
3676 device_config->vp_config[i].fifo.fifo_blocks =
3677 ((VXGE_DEF_FIFO_LENGTH - 1) / txdl_per_memblock) + 1;
3678
3679 device_config->vp_config[i].fifo.intr =
3680 VXGE_HW_FIFO_QUEUE_INTR_DISABLE;
3681
3682 /* Configure tti properties */
3683 device_config->vp_config[i].tti.intr_enable =
3684 VXGE_HW_TIM_INTR_ENABLE;
3685
3686 device_config->vp_config[i].tti.btimer_val =
3687 (VXGE_TTI_BTIMER_VAL * 1000) / 272;
3688
3689 device_config->vp_config[i].tti.timer_ac_en =
3690 VXGE_HW_TIM_TIMER_AC_ENABLE;
3691
528f7272
JM
3692 /* For msi-x with napi (each vector has a handler of its own) -
3693 * Set CI to OFF for all vpaths
3694 */
703da5a1
RV
3695 device_config->vp_config[i].tti.timer_ci_en =
3696 VXGE_HW_TIM_TIMER_CI_DISABLE;
3697
3698 device_config->vp_config[i].tti.timer_ri_en =
3699 VXGE_HW_TIM_TIMER_RI_DISABLE;
3700
3701 device_config->vp_config[i].tti.util_sel =
3702 VXGE_HW_TIM_UTIL_SEL_LEGACY_TX_NET_UTIL;
3703
3704 device_config->vp_config[i].tti.ltimer_val =
3705 (VXGE_TTI_LTIMER_VAL * 1000) / 272;
3706
3707 device_config->vp_config[i].tti.rtimer_val =
3708 (VXGE_TTI_RTIMER_VAL * 1000) / 272;
3709
3710 device_config->vp_config[i].tti.urange_a = TTI_TX_URANGE_A;
3711 device_config->vp_config[i].tti.urange_b = TTI_TX_URANGE_B;
3712 device_config->vp_config[i].tti.urange_c = TTI_TX_URANGE_C;
3713 device_config->vp_config[i].tti.uec_a = TTI_TX_UFC_A;
3714 device_config->vp_config[i].tti.uec_b = TTI_TX_UFC_B;
3715 device_config->vp_config[i].tti.uec_c = TTI_TX_UFC_C;
3716 device_config->vp_config[i].tti.uec_d = TTI_TX_UFC_D;
3717
3718 /* Configure Rx rings */
3719 device_config->vp_config[i].ring.enable =
3720 VXGE_HW_RING_ENABLE;
3721
3722 device_config->vp_config[i].ring.ring_blocks =
3723 VXGE_HW_DEF_RING_BLOCKS;
528f7272 3724
703da5a1
RV
3725 device_config->vp_config[i].ring.buffer_mode =
3726 VXGE_HW_RING_RXD_BUFFER_MODE_1;
528f7272 3727
703da5a1
RV
3728 device_config->vp_config[i].ring.rxds_limit =
3729 VXGE_HW_DEF_RING_RXDS_LIMIT;
528f7272 3730
703da5a1
RV
3731 device_config->vp_config[i].ring.scatter_mode =
3732 VXGE_HW_RING_SCATTER_MODE_A;
3733
3734 /* Configure rti properties */
3735 device_config->vp_config[i].rti.intr_enable =
3736 VXGE_HW_TIM_INTR_ENABLE;
3737
3738 device_config->vp_config[i].rti.btimer_val =
3739 (VXGE_RTI_BTIMER_VAL * 1000)/272;
3740
3741 device_config->vp_config[i].rti.timer_ac_en =
3742 VXGE_HW_TIM_TIMER_AC_ENABLE;
3743
3744 device_config->vp_config[i].rti.timer_ci_en =
3745 VXGE_HW_TIM_TIMER_CI_DISABLE;
3746
3747 device_config->vp_config[i].rti.timer_ri_en =
3748 VXGE_HW_TIM_TIMER_RI_DISABLE;
3749
3750 device_config->vp_config[i].rti.util_sel =
3751 VXGE_HW_TIM_UTIL_SEL_LEGACY_RX_NET_UTIL;
3752
3753 device_config->vp_config[i].rti.urange_a =
3754 RTI_RX_URANGE_A;
3755 device_config->vp_config[i].rti.urange_b =
3756 RTI_RX_URANGE_B;
3757 device_config->vp_config[i].rti.urange_c =
3758 RTI_RX_URANGE_C;
3759 device_config->vp_config[i].rti.uec_a = RTI_RX_UFC_A;
3760 device_config->vp_config[i].rti.uec_b = RTI_RX_UFC_B;
3761 device_config->vp_config[i].rti.uec_c = RTI_RX_UFC_C;
3762 device_config->vp_config[i].rti.uec_d = RTI_RX_UFC_D;
3763
3764 device_config->vp_config[i].rti.rtimer_val =
3765 (VXGE_RTI_RTIMER_VAL * 1000) / 272;
3766
3767 device_config->vp_config[i].rti.ltimer_val =
3768 (VXGE_RTI_LTIMER_VAL * 1000) / 272;
3769
3770 device_config->vp_config[i].rpa_strip_vlan_tag =
3771 vlan_tag_strip;
3772 }
3773
3774 driver_config->vpath_per_dev = temp;
3775 return no_of_vpaths;
3776}
3777
3778/* initialize device configuratrions */
3779static void __devinit vxge_device_config_init(
3780 struct vxge_hw_device_config *device_config,
3781 int *intr_type)
3782{
3783 /* Used for CQRQ/SRQ. */
3784 device_config->dma_blockpool_initial =
3785 VXGE_HW_INITIAL_DMA_BLOCK_POOL_SIZE;
3786
3787 device_config->dma_blockpool_max =
3788 VXGE_HW_MAX_DMA_BLOCK_POOL_SIZE;
3789
3790 if (max_mac_vpath > VXGE_MAX_MAC_ADDR_COUNT)
3791 max_mac_vpath = VXGE_MAX_MAC_ADDR_COUNT;
3792
3793#ifndef CONFIG_PCI_MSI
3794 vxge_debug_init(VXGE_ERR,
3795 "%s: This Kernel does not support "
3796 "MSI-X. Defaulting to INTA", VXGE_DRIVER_NAME);
3797 *intr_type = INTA;
3798#endif
3799
3800 /* Configure whether MSI-X or IRQL. */
3801 switch (*intr_type) {
3802 case INTA:
3803 device_config->intr_mode = VXGE_HW_INTR_MODE_IRQLINE;
3804 break;
3805
3806 case MSI_X:
3807 device_config->intr_mode = VXGE_HW_INTR_MODE_MSIX;
3808 break;
3809 }
528f7272 3810
703da5a1
RV
3811 /* Timer period between device poll */
3812 device_config->device_poll_millis = VXGE_TIMER_DELAY;
3813
3814 /* Configure mac based steering. */
3815 device_config->rts_mac_en = addr_learn_en;
3816
3817 /* Configure Vpaths */
3818 device_config->rth_it_type = VXGE_HW_RTH_IT_TYPE_MULTI_IT;
3819
3820 vxge_debug_ll_config(VXGE_TRACE, "%s : Device Config Params ",
3821 __func__);
703da5a1
RV
3822 vxge_debug_ll_config(VXGE_TRACE, "intr_mode : %d",
3823 device_config->intr_mode);
3824 vxge_debug_ll_config(VXGE_TRACE, "device_poll_millis : %d",
3825 device_config->device_poll_millis);
703da5a1
RV
3826 vxge_debug_ll_config(VXGE_TRACE, "rth_en : %d",
3827 device_config->rth_en);
3828 vxge_debug_ll_config(VXGE_TRACE, "rth_it_type : %d",
3829 device_config->rth_it_type);
3830}
3831
3832static void __devinit vxge_print_parm(struct vxgedev *vdev, u64 vpath_mask)
3833{
3834 int i;
3835
3836 vxge_debug_init(VXGE_TRACE,
3837 "%s: %d Vpath(s) opened",
3838 vdev->ndev->name, vdev->no_of_vpath);
3839
3840 switch (vdev->config.intr_type) {
3841 case INTA:
3842 vxge_debug_init(VXGE_TRACE,
3843 "%s: Interrupt type INTA", vdev->ndev->name);
3844 break;
3845
3846 case MSI_X:
3847 vxge_debug_init(VXGE_TRACE,
3848 "%s: Interrupt type MSI-X", vdev->ndev->name);
3849 break;
3850 }
3851
3852 if (vdev->config.rth_steering) {
3853 vxge_debug_init(VXGE_TRACE,
3854 "%s: RTH steering enabled for TCP_IPV4",
3855 vdev->ndev->name);
3856 } else {
3857 vxge_debug_init(VXGE_TRACE,
3858 "%s: RTH steering disabled", vdev->ndev->name);
3859 }
3860
3861 switch (vdev->config.tx_steering_type) {
3862 case NO_STEERING:
3863 vxge_debug_init(VXGE_TRACE,
3864 "%s: Tx steering disabled", vdev->ndev->name);
3865 break;
3866 case TX_PRIORITY_STEERING:
3867 vxge_debug_init(VXGE_TRACE,
3868 "%s: Unsupported tx steering option",
3869 vdev->ndev->name);
3870 vxge_debug_init(VXGE_TRACE,
3871 "%s: Tx steering disabled", vdev->ndev->name);
3872 vdev->config.tx_steering_type = 0;
3873 break;
3874 case TX_VLAN_STEERING:
3875 vxge_debug_init(VXGE_TRACE,
3876 "%s: Unsupported tx steering option",
3877 vdev->ndev->name);
3878 vxge_debug_init(VXGE_TRACE,
3879 "%s: Tx steering disabled", vdev->ndev->name);
3880 vdev->config.tx_steering_type = 0;
3881 break;
3882 case TX_MULTIQ_STEERING:
3883 vxge_debug_init(VXGE_TRACE,
3884 "%s: Tx multiqueue steering enabled",
3885 vdev->ndev->name);
3886 break;
3887 case TX_PORT_STEERING:
3888 vxge_debug_init(VXGE_TRACE,
3889 "%s: Tx port steering enabled",
3890 vdev->ndev->name);
3891 break;
3892 default:
3893 vxge_debug_init(VXGE_ERR,
3894 "%s: Unsupported tx steering type",
3895 vdev->ndev->name);
3896 vxge_debug_init(VXGE_TRACE,
3897 "%s: Tx steering disabled", vdev->ndev->name);
3898 vdev->config.tx_steering_type = 0;
3899 }
3900
3901 if (vdev->config.gro_enable) {
3902 vxge_debug_init(VXGE_ERR,
3903 "%s: Generic receive offload enabled",
3904 vdev->ndev->name);
3905 } else
3906 vxge_debug_init(VXGE_TRACE,
3907 "%s: Generic receive offload disabled",
3908 vdev->ndev->name);
3909
3910 if (vdev->config.addr_learn_en)
3911 vxge_debug_init(VXGE_TRACE,
3912 "%s: MAC Address learning enabled", vdev->ndev->name);
3913
703da5a1
RV
3914 for (i = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++) {
3915 if (!vxge_bVALn(vpath_mask, i, 1))
3916 continue;
3917 vxge_debug_ll_config(VXGE_TRACE,
3918 "%s: MTU size - %d", vdev->ndev->name,
3919 ((struct __vxge_hw_device *)(vdev->devh))->
3920 config.vp_config[i].mtu);
3921 vxge_debug_init(VXGE_TRACE,
3922 "%s: VLAN tag stripping %s", vdev->ndev->name,
3923 ((struct __vxge_hw_device *)(vdev->devh))->
3924 config.vp_config[i].rpa_strip_vlan_tag
3925 ? "Enabled" : "Disabled");
703da5a1
RV
3926 vxge_debug_ll_config(VXGE_TRACE,
3927 "%s: Max frags : %d", vdev->ndev->name,
3928 ((struct __vxge_hw_device *)(vdev->devh))->
3929 config.vp_config[i].fifo.max_frags);
3930 break;
3931 }
3932}
3933
3934#ifdef CONFIG_PM
3935/**
3936 * vxge_pm_suspend - vxge power management suspend entry point
3937 *
3938 */
3939static int vxge_pm_suspend(struct pci_dev *pdev, pm_message_t state)
3940{
3941 return -ENOSYS;
3942}
3943/**
3944 * vxge_pm_resume - vxge power management resume entry point
3945 *
3946 */
3947static int vxge_pm_resume(struct pci_dev *pdev)
3948{
3949 return -ENOSYS;
3950}
3951
3952#endif
3953
3954/**
3955 * vxge_io_error_detected - called when PCI error is detected
3956 * @pdev: Pointer to PCI device
3957 * @state: The current pci connection state
3958 *
3959 * This function is called after a PCI bus error affecting
3960 * this device has been detected.
3961 */
3962static pci_ers_result_t vxge_io_error_detected(struct pci_dev *pdev,
3963 pci_channel_state_t state)
3964{
d8ee7071 3965 struct __vxge_hw_device *hldev = pci_get_drvdata(pdev);
703da5a1
RV
3966 struct net_device *netdev = hldev->ndev;
3967
3968 netif_device_detach(netdev);
3969
e33b992d
DN
3970 if (state == pci_channel_io_perm_failure)
3971 return PCI_ERS_RESULT_DISCONNECT;
3972
703da5a1
RV
3973 if (netif_running(netdev)) {
3974 /* Bring down the card, while avoiding PCI I/O */
3975 do_vxge_close(netdev, 0);
3976 }
3977
3978 pci_disable_device(pdev);
3979
3980 return PCI_ERS_RESULT_NEED_RESET;
3981}
3982
3983/**
3984 * vxge_io_slot_reset - called after the pci bus has been reset.
3985 * @pdev: Pointer to PCI device
3986 *
3987 * Restart the card from scratch, as if from a cold-boot.
3988 * At this point, the card has exprienced a hard reset,
3989 * followed by fixups by BIOS, and has its config space
3990 * set up identically to what it was at cold boot.
3991 */
3992static pci_ers_result_t vxge_io_slot_reset(struct pci_dev *pdev)
3993{
d8ee7071 3994 struct __vxge_hw_device *hldev = pci_get_drvdata(pdev);
703da5a1
RV
3995 struct net_device *netdev = hldev->ndev;
3996
3997 struct vxgedev *vdev = netdev_priv(netdev);
3998
3999 if (pci_enable_device(pdev)) {
75f5e1c6 4000 netdev_err(netdev, "Cannot re-enable device after reset\n");
703da5a1
RV
4001 return PCI_ERS_RESULT_DISCONNECT;
4002 }
4003
4004 pci_set_master(pdev);
528f7272 4005 do_vxge_reset(vdev, VXGE_LL_FULL_RESET);
703da5a1
RV
4006
4007 return PCI_ERS_RESULT_RECOVERED;
4008}
4009
4010/**
4011 * vxge_io_resume - called when traffic can start flowing again.
4012 * @pdev: Pointer to PCI device
4013 *
4014 * This callback is called when the error recovery driver tells
4015 * us that its OK to resume normal operation.
4016 */
4017static void vxge_io_resume(struct pci_dev *pdev)
4018{
d8ee7071 4019 struct __vxge_hw_device *hldev = pci_get_drvdata(pdev);
703da5a1
RV
4020 struct net_device *netdev = hldev->ndev;
4021
4022 if (netif_running(netdev)) {
4023 if (vxge_open(netdev)) {
75f5e1c6
JP
4024 netdev_err(netdev,
4025 "Can't bring device back up after reset\n");
703da5a1
RV
4026 return;
4027 }
4028 }
4029
4030 netif_device_attach(netdev);
4031}
4032
cb27ec60
SH
4033static inline u32 vxge_get_num_vfs(u64 function_mode)
4034{
4035 u32 num_functions = 0;
4036
4037 switch (function_mode) {
4038 case VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION:
4039 case VXGE_HW_FUNCTION_MODE_SRIOV_8:
4040 num_functions = 8;
4041 break;
4042 case VXGE_HW_FUNCTION_MODE_SINGLE_FUNCTION:
4043 num_functions = 1;
4044 break;
4045 case VXGE_HW_FUNCTION_MODE_SRIOV:
4046 case VXGE_HW_FUNCTION_MODE_MRIOV:
4047 case VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION_17:
4048 num_functions = 17;
4049 break;
4050 case VXGE_HW_FUNCTION_MODE_SRIOV_4:
4051 num_functions = 4;
4052 break;
4053 case VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION_2:
4054 num_functions = 2;
4055 break;
4056 case VXGE_HW_FUNCTION_MODE_MRIOV_8:
4057 num_functions = 8; /* TODO */
4058 break;
4059 }
4060 return num_functions;
4061}
4062
e8ac1756
JM
4063int vxge_fw_upgrade(struct vxgedev *vdev, char *fw_name, int override)
4064{
4065 struct __vxge_hw_device *hldev = vdev->devh;
4066 u32 maj, min, bld, cmaj, cmin, cbld;
4067 enum vxge_hw_status status;
4068 const struct firmware *fw;
4069 int ret;
4070
4071 ret = request_firmware(&fw, fw_name, &vdev->pdev->dev);
4072 if (ret) {
4073 vxge_debug_init(VXGE_ERR, "%s: Firmware file '%s' not found",
4074 VXGE_DRIVER_NAME, fw_name);
4075 goto out;
4076 }
4077
4078 /* Load the new firmware onto the adapter */
4079 status = vxge_update_fw_image(hldev, fw->data, fw->size);
4080 if (status != VXGE_HW_OK) {
4081 vxge_debug_init(VXGE_ERR,
4082 "%s: FW image download to adapter failed '%s'.",
4083 VXGE_DRIVER_NAME, fw_name);
4084 ret = -EIO;
4085 goto out;
4086 }
4087
4088 /* Read the version of the new firmware */
4089 status = vxge_hw_upgrade_read_version(hldev, &maj, &min, &bld);
4090 if (status != VXGE_HW_OK) {
4091 vxge_debug_init(VXGE_ERR,
4092 "%s: Upgrade read version failed '%s'.",
4093 VXGE_DRIVER_NAME, fw_name);
4094 ret = -EIO;
4095 goto out;
4096 }
4097
4098 cmaj = vdev->config.device_hw_info.fw_version.major;
4099 cmin = vdev->config.device_hw_info.fw_version.minor;
4100 cbld = vdev->config.device_hw_info.fw_version.build;
4101 /* It's possible the version in /lib/firmware is not the latest version.
4102 * If so, we could get into a loop of trying to upgrade to the latest
4103 * and flashing the older version.
4104 */
4105 if (VXGE_FW_VER(maj, min, bld) == VXGE_FW_VER(cmaj, cmin, cbld) &&
4106 !override) {
4107 ret = -EINVAL;
4108 goto out;
4109 }
4110
4111 printk(KERN_NOTICE "Upgrade to firmware version %d.%d.%d commencing\n",
4112 maj, min, bld);
4113
4114 /* Flash the adapter with the new firmware */
4115 status = vxge_hw_flash_fw(hldev);
4116 if (status != VXGE_HW_OK) {
4117 vxge_debug_init(VXGE_ERR, "%s: Upgrade commit failed '%s'.",
4118 VXGE_DRIVER_NAME, fw_name);
4119 ret = -EIO;
4120 goto out;
4121 }
4122
4123 printk(KERN_NOTICE "Upgrade of firmware successful! Adapter must be "
4124 "hard reset before using, thus requiring a system reboot or a "
4125 "hotplug event.\n");
4126
4127out:
e84f885e 4128 release_firmware(fw);
e8ac1756
JM
4129 return ret;
4130}
4131
4132static int vxge_probe_fw_update(struct vxgedev *vdev)
4133{
4134 u32 maj, min, bld;
4135 int ret, gpxe = 0;
4136 char *fw_name;
4137
4138 maj = vdev->config.device_hw_info.fw_version.major;
4139 min = vdev->config.device_hw_info.fw_version.minor;
4140 bld = vdev->config.device_hw_info.fw_version.build;
4141
4142 if (VXGE_FW_VER(maj, min, bld) == VXGE_CERT_FW_VER)
4143 return 0;
4144
4145 /* Ignore the build number when determining if the current firmware is
4146 * "too new" to load the driver
4147 */
4148 if (VXGE_FW_VER(maj, min, 0) > VXGE_CERT_FW_VER) {
4149 vxge_debug_init(VXGE_ERR, "%s: Firmware newer than last known "
4150 "version, unable to load driver\n",
4151 VXGE_DRIVER_NAME);
4152 return -EINVAL;
4153 }
4154
4155 /* Firmware 1.4.4 and older cannot be upgraded, and is too ancient to
4156 * work with this driver.
4157 */
4158 if (VXGE_FW_VER(maj, min, bld) <= VXGE_FW_DEAD_VER) {
4159 vxge_debug_init(VXGE_ERR, "%s: Firmware %d.%d.%d cannot be "
4160 "upgraded\n", VXGE_DRIVER_NAME, maj, min, bld);
4161 return -EINVAL;
4162 }
4163
4164 /* If file not specified, determine gPXE or not */
4165 if (VXGE_FW_VER(maj, min, bld) >= VXGE_EPROM_FW_VER) {
4166 int i;
4167 for (i = 0; i < VXGE_HW_MAX_ROM_IMAGES; i++)
4168 if (vdev->devh->eprom_versions[i]) {
4169 gpxe = 1;
4170 break;
4171 }
4172 }
4173 if (gpxe)
4174 fw_name = "vxge/X3fw-pxe.ncf";
4175 else
4176 fw_name = "vxge/X3fw.ncf";
4177
4178 ret = vxge_fw_upgrade(vdev, fw_name, 0);
4179 /* -EINVAL and -ENOENT are not fatal errors for flashing firmware on
4180 * probe, so ignore them
4181 */
4182 if (ret != -EINVAL && ret != -ENOENT)
4183 return -EIO;
4184 else
4185 ret = 0;
4186
4187 if (VXGE_FW_VER(VXGE_CERT_FW_VER_MAJOR, VXGE_CERT_FW_VER_MINOR, 0) >
4188 VXGE_FW_VER(maj, min, 0)) {
4189 vxge_debug_init(VXGE_ERR, "%s: Firmware %d.%d.%d is too old to"
4190 " be used with this driver.\n"
4191 "Please get the latest version from "
4192 "ftp://ftp.s2io.com/pub/X3100-Drivers/FIRMWARE",
4193 VXGE_DRIVER_NAME, maj, min, bld);
4194 return -EINVAL;
4195 }
4196
4197 return ret;
4198}
4199
c92bf70d
JM
4200static int __devinit is_sriov_initialized(struct pci_dev *pdev)
4201{
4202 int pos;
4203 u16 ctrl;
4204
4205 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
4206 if (pos) {
4207 pci_read_config_word(pdev, pos + PCI_SRIOV_CTRL, &ctrl);
4208 if (ctrl & PCI_SRIOV_CTRL_VFE)
4209 return 1;
4210 }
4211 return 0;
4212}
4213
703da5a1
RV
4214/**
4215 * vxge_probe
4216 * @pdev : structure containing the PCI related information of the device.
4217 * @pre: List of PCI devices supported by the driver listed in vxge_id_table.
4218 * Description:
4219 * This function is called when a new PCI device gets detected and initializes
4220 * it.
4221 * Return value:
4222 * returns 0 on success and negative on failure.
4223 *
4224 */
4225static int __devinit
4226vxge_probe(struct pci_dev *pdev, const struct pci_device_id *pre)
4227{
2c91308f 4228 struct __vxge_hw_device *hldev;
703da5a1
RV
4229 enum vxge_hw_status status;
4230 int ret;
4231 int high_dma = 0;
4232 u64 vpath_mask = 0;
4233 struct vxgedev *vdev;
7dad171c 4234 struct vxge_config *ll_config = NULL;
703da5a1
RV
4235 struct vxge_hw_device_config *device_config = NULL;
4236 struct vxge_hw_device_attr attr;
4237 int i, j, no_of_vpath = 0, max_vpath_supported = 0;
4238 u8 *macaddr;
4239 struct vxge_mac_addrs *entry;
4240 static int bus = -1, device = -1;
cb27ec60 4241 u32 host_type;
703da5a1 4242 u8 new_device = 0;
cb27ec60
SH
4243 enum vxge_hw_status is_privileged;
4244 u32 function_mode;
4245 u32 num_vfs = 0;
703da5a1
RV
4246
4247 vxge_debug_entryexit(VXGE_TRACE, "%s:%d", __func__, __LINE__);
4248 attr.pdev = pdev;
4249
cb27ec60 4250 /* In SRIOV-17 mode, functions of the same adapter
528f7272
JM
4251 * can be deployed on different buses
4252 */
4253 if (((bus != pdev->bus->number) || (device != PCI_SLOT(pdev->devfn))) &&
4254 !pdev->is_virtfn)
703da5a1
RV
4255 new_device = 1;
4256
4257 bus = pdev->bus->number;
4258 device = PCI_SLOT(pdev->devfn);
4259
4260 if (new_device) {
4261 if (driver_config->config_dev_cnt &&
4262 (driver_config->config_dev_cnt !=
4263 driver_config->total_dev_cnt))
4264 vxge_debug_init(VXGE_ERR,
4265 "%s: Configured %d of %d devices",
4266 VXGE_DRIVER_NAME,
4267 driver_config->config_dev_cnt,
4268 driver_config->total_dev_cnt);
4269 driver_config->config_dev_cnt = 0;
4270 driver_config->total_dev_cnt = 0;
703da5a1 4271 }
528f7272 4272
9002397e
SH
4273 /* Now making the CPU based no of vpath calculation
4274 * applicable for individual functions as well.
4275 */
4276 driver_config->g_no_cpus = 0;
657205bd
SH
4277 driver_config->vpath_per_dev = max_config_vpath;
4278
703da5a1
RV
4279 driver_config->total_dev_cnt++;
4280 if (++driver_config->config_dev_cnt > max_config_dev) {
4281 ret = 0;
4282 goto _exit0;
4283 }
4284
4285 device_config = kzalloc(sizeof(struct vxge_hw_device_config),
4286 GFP_KERNEL);
4287 if (!device_config) {
4288 ret = -ENOMEM;
4289 vxge_debug_init(VXGE_ERR,
4290 "device_config : malloc failed %s %d",
4291 __FILE__, __LINE__);
4292 goto _exit0;
4293 }
4294
528f7272 4295 ll_config = kzalloc(sizeof(struct vxge_config), GFP_KERNEL);
7dad171c
PB
4296 if (!ll_config) {
4297 ret = -ENOMEM;
4298 vxge_debug_init(VXGE_ERR,
528f7272 4299 "device_config : malloc failed %s %d",
7dad171c
PB
4300 __FILE__, __LINE__);
4301 goto _exit0;
4302 }
4303 ll_config->tx_steering_type = TX_MULTIQ_STEERING;
4304 ll_config->intr_type = MSI_X;
4305 ll_config->napi_weight = NEW_NAPI_WEIGHT;
4306 ll_config->rth_steering = RTH_STEERING;
703da5a1
RV
4307
4308 /* get the default configuration parameters */
4309 vxge_hw_device_config_default_get(device_config);
4310
4311 /* initialize configuration parameters */
7dad171c 4312 vxge_device_config_init(device_config, &ll_config->intr_type);
703da5a1
RV
4313
4314 ret = pci_enable_device(pdev);
4315 if (ret) {
4316 vxge_debug_init(VXGE_ERR,
4317 "%s : can not enable PCI device", __func__);
4318 goto _exit0;
4319 }
4320
b3837cec 4321 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
703da5a1
RV
4322 vxge_debug_ll_config(VXGE_TRACE,
4323 "%s : using 64bit DMA", __func__);
4324
4325 high_dma = 1;
4326
4327 if (pci_set_consistent_dma_mask(pdev,
b3837cec 4328 DMA_BIT_MASK(64))) {
703da5a1
RV
4329 vxge_debug_init(VXGE_ERR,
4330 "%s : unable to obtain 64bit DMA for "
4331 "consistent allocations", __func__);
4332 ret = -ENOMEM;
4333 goto _exit1;
4334 }
b3837cec 4335 } else if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) {
703da5a1
RV
4336 vxge_debug_ll_config(VXGE_TRACE,
4337 "%s : using 32bit DMA", __func__);
4338 } else {
4339 ret = -ENOMEM;
4340 goto _exit1;
4341 }
4342
6cca2003
JM
4343 ret = pci_request_region(pdev, 0, VXGE_DRIVER_NAME);
4344 if (ret) {
703da5a1
RV
4345 vxge_debug_init(VXGE_ERR,
4346 "%s : request regions failed", __func__);
703da5a1
RV
4347 goto _exit1;
4348 }
4349
4350 pci_set_master(pdev);
4351
4352 attr.bar0 = pci_ioremap_bar(pdev, 0);
4353 if (!attr.bar0) {
4354 vxge_debug_init(VXGE_ERR,
4355 "%s : cannot remap io memory bar0", __func__);
4356 ret = -ENODEV;
4357 goto _exit2;
4358 }
4359 vxge_debug_ll_config(VXGE_TRACE,
4360 "pci ioremap bar0: %p:0x%llx",
4361 attr.bar0,
4362 (unsigned long long)pci_resource_start(pdev, 0));
4363
703da5a1 4364 status = vxge_hw_device_hw_info_get(attr.bar0,
7dad171c 4365 &ll_config->device_hw_info);
703da5a1
RV
4366 if (status != VXGE_HW_OK) {
4367 vxge_debug_init(VXGE_ERR,
4368 "%s: Reading of hardware info failed."
4369 "Please try upgrading the firmware.", VXGE_DRIVER_NAME);
4370 ret = -EINVAL;
7975d1ee 4371 goto _exit3;
703da5a1
RV
4372 }
4373
7dad171c 4374 vpath_mask = ll_config->device_hw_info.vpath_mask;
703da5a1
RV
4375 if (vpath_mask == 0) {
4376 vxge_debug_ll_config(VXGE_TRACE,
4377 "%s: No vpaths available in device", VXGE_DRIVER_NAME);
4378 ret = -EINVAL;
7975d1ee 4379 goto _exit3;
703da5a1
RV
4380 }
4381
4382 vxge_debug_ll_config(VXGE_TRACE,
4383 "%s:%d Vpath mask = %llx", __func__, __LINE__,
4384 (unsigned long long)vpath_mask);
4385
7dad171c
PB
4386 function_mode = ll_config->device_hw_info.function_mode;
4387 host_type = ll_config->device_hw_info.host_type;
cb27ec60 4388 is_privileged = __vxge_hw_device_is_privilaged(host_type,
7dad171c 4389 ll_config->device_hw_info.func_id);
cb27ec60 4390
703da5a1
RV
4391 /* Check how many vpaths are available */
4392 for (i = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++) {
4393 if (!((vpath_mask) & vxge_mBIT(i)))
4394 continue;
4395 max_vpath_supported++;
4396 }
4397
cb27ec60
SH
4398 if (new_device)
4399 num_vfs = vxge_get_num_vfs(function_mode) - 1;
4400
5dbc9011 4401 /* Enable SRIOV mode, if firmware has SRIOV support and if it is a PF */
c92bf70d
JM
4402 if (is_sriov(function_mode) && !is_sriov_initialized(pdev) &&
4403 (ll_config->intr_type != INTA)) {
4404 ret = pci_enable_sriov(pdev, num_vfs);
cb27ec60
SH
4405 if (ret)
4406 vxge_debug_ll_config(VXGE_ERR,
4407 "Failed in enabling SRIOV mode: %d\n", ret);
c92bf70d 4408 /* No need to fail out, as an error here is non-fatal */
5dbc9011
SS
4409 }
4410
703da5a1
RV
4411 /*
4412 * Configure vpaths and get driver configured number of vpaths
4413 * which is less than or equal to the maximum vpaths per function.
4414 */
7dad171c 4415 no_of_vpath = vxge_config_vpaths(device_config, vpath_mask, ll_config);
703da5a1
RV
4416 if (!no_of_vpath) {
4417 vxge_debug_ll_config(VXGE_ERR,
4418 "%s: No more vpaths to configure", VXGE_DRIVER_NAME);
4419 ret = 0;
7975d1ee 4420 goto _exit3;
703da5a1
RV
4421 }
4422
4423 /* Setting driver callbacks */
4424 attr.uld_callbacks.link_up = vxge_callback_link_up;
4425 attr.uld_callbacks.link_down = vxge_callback_link_down;
4426 attr.uld_callbacks.crit_err = vxge_callback_crit_err;
4427
4428 status = vxge_hw_device_initialize(&hldev, &attr, device_config);
4429 if (status != VXGE_HW_OK) {
4430 vxge_debug_init(VXGE_ERR,
4431 "Failed to initialize device (%d)", status);
4432 ret = -EINVAL;
7975d1ee 4433 goto _exit3;
703da5a1
RV
4434 }
4435
e8ac1756
JM
4436 if (VXGE_FW_VER(ll_config->device_hw_info.fw_version.major,
4437 ll_config->device_hw_info.fw_version.minor,
4438 ll_config->device_hw_info.fw_version.build) >=
4439 VXGE_EPROM_FW_VER) {
4440 struct eprom_image img[VXGE_HW_MAX_ROM_IMAGES];
4441
4442 status = vxge_hw_vpath_eprom_img_ver_get(hldev, img);
4443 if (status != VXGE_HW_OK) {
4444 vxge_debug_init(VXGE_ERR, "%s: Reading of EPROM failed",
4445 VXGE_DRIVER_NAME);
4446 /* This is a non-fatal error, continue */
4447 }
4448
4449 for (i = 0; i < VXGE_HW_MAX_ROM_IMAGES; i++) {
4450 hldev->eprom_versions[i] = img[i].version;
4451 if (!img[i].is_valid)
4452 break;
4453 vxge_debug_init(VXGE_TRACE, "%s: EPROM %d, version "
1d15f81c 4454 "%d.%d.%d.%d", VXGE_DRIVER_NAME, i,
e8ac1756
JM
4455 VXGE_EPROM_IMG_MAJOR(img[i].version),
4456 VXGE_EPROM_IMG_MINOR(img[i].version),
4457 VXGE_EPROM_IMG_FIX(img[i].version),
4458 VXGE_EPROM_IMG_BUILD(img[i].version));
4459 }
4460 }
4461
fa41fd10 4462 /* if FCS stripping is not disabled in MAC fail driver load */
b81b3733
JM
4463 status = vxge_hw_vpath_strip_fcs_check(hldev, vpath_mask);
4464 if (status != VXGE_HW_OK) {
4465 vxge_debug_init(VXGE_ERR, "%s: FCS stripping is enabled in MAC"
4466 " failing driver load", VXGE_DRIVER_NAME);
fa41fd10
SH
4467 ret = -EINVAL;
4468 goto _exit4;
4469 }
4470
703da5a1
RV
4471 vxge_hw_device_debug_set(hldev, VXGE_ERR, VXGE_COMPONENT_LL);
4472
4473 /* set private device info */
4474 pci_set_drvdata(pdev, hldev);
4475
7dad171c
PB
4476 ll_config->gro_enable = VXGE_GRO_ALWAYS_AGGREGATE;
4477 ll_config->fifo_indicate_max_pkts = VXGE_FIFO_INDICATE_MAX_PKTS;
4478 ll_config->addr_learn_en = addr_learn_en;
4479 ll_config->rth_algorithm = RTH_ALG_JENKINS;
47f01db4
JM
4480 ll_config->rth_hash_type_tcpipv4 = 1;
4481 ll_config->rth_hash_type_ipv4 = 0;
4482 ll_config->rth_hash_type_tcpipv6 = 0;
4483 ll_config->rth_hash_type_ipv6 = 0;
4484 ll_config->rth_hash_type_tcpipv6ex = 0;
4485 ll_config->rth_hash_type_ipv6ex = 0;
7dad171c
PB
4486 ll_config->rth_bkt_sz = RTH_BUCKET_SIZE;
4487 ll_config->tx_pause_enable = VXGE_PAUSE_CTRL_ENABLE;
4488 ll_config->rx_pause_enable = VXGE_PAUSE_CTRL_ENABLE;
4489
e8ac1756
JM
4490 ret = vxge_device_register(hldev, ll_config, high_dma, no_of_vpath,
4491 &vdev);
4492 if (ret) {
703da5a1 4493 ret = -EINVAL;
7975d1ee 4494 goto _exit4;
703da5a1
RV
4495 }
4496
e8ac1756
JM
4497 ret = vxge_probe_fw_update(vdev);
4498 if (ret)
4499 goto _exit5;
4500
703da5a1
RV
4501 vxge_hw_device_debug_set(hldev, VXGE_TRACE, VXGE_COMPONENT_LL);
4502 VXGE_COPY_DEBUG_INFO_TO_LL(vdev, vxge_hw_device_error_level_get(hldev),
4503 vxge_hw_device_trace_level_get(hldev));
4504
4505 /* set private HW device info */
703da5a1
RV
4506 vdev->mtu = VXGE_HW_DEFAULT_MTU;
4507 vdev->bar0 = attr.bar0;
703da5a1
RV
4508 vdev->max_vpath_supported = max_vpath_supported;
4509 vdev->no_of_vpath = no_of_vpath;
4510
4511 /* Virtual Path count */
4512 for (i = 0, j = 0; i < VXGE_HW_MAX_VIRTUAL_PATHS; i++) {
4513 if (!vxge_bVALn(vpath_mask, i, 1))
4514 continue;
4515 if (j >= vdev->no_of_vpath)
4516 break;
4517
4518 vdev->vpaths[j].is_configured = 1;
4519 vdev->vpaths[j].device_id = i;
703da5a1
RV
4520 vdev->vpaths[j].ring.driver_id = j;
4521 vdev->vpaths[j].vdev = vdev;
4522 vdev->vpaths[j].max_mac_addr_cnt = max_mac_vpath;
4523 memcpy((u8 *)vdev->vpaths[j].macaddr,
7dad171c 4524 ll_config->device_hw_info.mac_addrs[i],
703da5a1
RV
4525 ETH_ALEN);
4526
4527 /* Initialize the mac address list header */
4528 INIT_LIST_HEAD(&vdev->vpaths[j].mac_addr_list);
4529
4530 vdev->vpaths[j].mac_addr_cnt = 0;
4531 vdev->vpaths[j].mcast_addr_cnt = 0;
4532 j++;
4533 }
4534 vdev->exec_mode = VXGE_EXEC_MODE_DISABLE;
4535 vdev->max_config_port = max_config_port;
4536
4537 vdev->vlan_tag_strip = vlan_tag_strip;
4538
4539 /* map the hashing selector table to the configured vpaths */
4540 for (i = 0; i < vdev->no_of_vpath; i++)
4541 vdev->vpath_selector[i] = vpath_selector[i];
4542
4543 macaddr = (u8 *)vdev->vpaths[0].macaddr;
4544
7dad171c
PB
4545 ll_config->device_hw_info.serial_number[VXGE_HW_INFO_LEN - 1] = '\0';
4546 ll_config->device_hw_info.product_desc[VXGE_HW_INFO_LEN - 1] = '\0';
4547 ll_config->device_hw_info.part_number[VXGE_HW_INFO_LEN - 1] = '\0';
703da5a1
RV
4548
4549 vxge_debug_init(VXGE_TRACE, "%s: SERIAL NUMBER: %s",
7dad171c 4550 vdev->ndev->name, ll_config->device_hw_info.serial_number);
703da5a1
RV
4551
4552 vxge_debug_init(VXGE_TRACE, "%s: PART NUMBER: %s",
7dad171c 4553 vdev->ndev->name, ll_config->device_hw_info.part_number);
703da5a1
RV
4554
4555 vxge_debug_init(VXGE_TRACE, "%s: Neterion %s Server Adapter",
7dad171c 4556 vdev->ndev->name, ll_config->device_hw_info.product_desc);
703da5a1 4557
bf54e736 4558 vxge_debug_init(VXGE_TRACE, "%s: MAC ADDR: %pM",
4559 vdev->ndev->name, macaddr);
703da5a1
RV
4560
4561 vxge_debug_init(VXGE_TRACE, "%s: Link Width x%d",
4562 vdev->ndev->name, vxge_hw_device_link_width_get(hldev));
4563
4564 vxge_debug_init(VXGE_TRACE,
4565 "%s: Firmware version : %s Date : %s", vdev->ndev->name,
7dad171c
PB
4566 ll_config->device_hw_info.fw_version.version,
4567 ll_config->device_hw_info.fw_date.date);
703da5a1 4568
0a25bdc6 4569 if (new_device) {
7dad171c 4570 switch (ll_config->device_hw_info.function_mode) {
0a25bdc6
SH
4571 case VXGE_HW_FUNCTION_MODE_SINGLE_FUNCTION:
4572 vxge_debug_init(VXGE_TRACE,
4573 "%s: Single Function Mode Enabled", vdev->ndev->name);
4574 break;
4575 case VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION:
4576 vxge_debug_init(VXGE_TRACE,
4577 "%s: Multi Function Mode Enabled", vdev->ndev->name);
4578 break;
4579 case VXGE_HW_FUNCTION_MODE_SRIOV:
4580 vxge_debug_init(VXGE_TRACE,
4581 "%s: Single Root IOV Mode Enabled", vdev->ndev->name);
4582 break;
4583 case VXGE_HW_FUNCTION_MODE_MRIOV:
4584 vxge_debug_init(VXGE_TRACE,
4585 "%s: Multi Root IOV Mode Enabled", vdev->ndev->name);
4586 break;
4587 }
4588 }
4589
703da5a1
RV
4590 vxge_print_parm(vdev, vpath_mask);
4591
4592 /* Store the fw version for ethttool option */
7dad171c 4593 strcpy(vdev->fw_version, ll_config->device_hw_info.fw_version.version);
703da5a1
RV
4594 memcpy(vdev->ndev->dev_addr, (u8 *)vdev->vpaths[0].macaddr, ETH_ALEN);
4595 memcpy(vdev->ndev->perm_addr, vdev->ndev->dev_addr, ETH_ALEN);
4596
4597 /* Copy the station mac address to the list */
4598 for (i = 0; i < vdev->no_of_vpath; i++) {
e80be0b0 4599 entry = kzalloc(sizeof(struct vxge_mac_addrs), GFP_KERNEL);
703da5a1
RV
4600 if (NULL == entry) {
4601 vxge_debug_init(VXGE_ERR,
4602 "%s: mac_addr_list : memory allocation failed",
4603 vdev->ndev->name);
4604 ret = -EPERM;
e8ac1756 4605 goto _exit6;
703da5a1
RV
4606 }
4607 macaddr = (u8 *)&entry->macaddr;
4608 memcpy(macaddr, vdev->ndev->dev_addr, ETH_ALEN);
4609 list_add(&entry->item, &vdev->vpaths[i].mac_addr_list);
4610 vdev->vpaths[i].mac_addr_cnt = 1;
4611 }
4612
914d0d71 4613 kfree(device_config);
eb5f10c2
SH
4614
4615 /*
4616 * INTA is shared in multi-function mode. This is unlike the INTA
4617 * implementation in MR mode, where each VH has its own INTA message.
4618 * - INTA is masked (disabled) as long as at least one function sets
4619 * its TITAN_MASK_ALL_INT.ALARM bit.
4620 * - INTA is unmasked (enabled) when all enabled functions have cleared
4621 * their own TITAN_MASK_ALL_INT.ALARM bit.
4622 * The TITAN_MASK_ALL_INT ALARM & TRAFFIC bits are cleared on power up.
4623 * Though this driver leaves the top level interrupts unmasked while
4624 * leaving the required module interrupt bits masked on exit, there
4625 * could be a rougue driver around that does not follow this procedure
4626 * resulting in a failure to generate interrupts. The following code is
4627 * present to prevent such a failure.
4628 */
4629
7dad171c 4630 if (ll_config->device_hw_info.function_mode ==
eb5f10c2
SH
4631 VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION)
4632 if (vdev->config.intr_type == INTA)
4633 vxge_hw_device_unmask_all(hldev);
4634
703da5a1
RV
4635 vxge_debug_entryexit(VXGE_TRACE, "%s: %s:%d Exiting...",
4636 vdev->ndev->name, __func__, __LINE__);
4637
4638 vxge_hw_device_debug_set(hldev, VXGE_ERR, VXGE_COMPONENT_LL);
4639 VXGE_COPY_DEBUG_INFO_TO_LL(vdev, vxge_hw_device_error_level_get(hldev),
4640 vxge_hw_device_trace_level_get(hldev));
4641
7dad171c 4642 kfree(ll_config);
703da5a1
RV
4643 return 0;
4644
e8ac1756 4645_exit6:
703da5a1
RV
4646 for (i = 0; i < vdev->no_of_vpath; i++)
4647 vxge_free_mac_add_list(&vdev->vpaths[i]);
e8ac1756 4648_exit5:
703da5a1 4649 vxge_device_unregister(hldev);
7975d1ee 4650_exit4:
6cca2003 4651 pci_set_drvdata(pdev, NULL);
703da5a1 4652 vxge_hw_device_terminate(hldev);
6cca2003 4653 pci_disable_sriov(pdev);
703da5a1
RV
4654_exit3:
4655 iounmap(attr.bar0);
4656_exit2:
dc66daa9 4657 pci_release_region(pdev, 0);
703da5a1
RV
4658_exit1:
4659 pci_disable_device(pdev);
4660_exit0:
7dad171c 4661 kfree(ll_config);
703da5a1
RV
4662 kfree(device_config);
4663 driver_config->config_dev_cnt--;
6cca2003 4664 driver_config->total_dev_cnt--;
703da5a1
RV
4665 return ret;
4666}
4667
4668/**
4669 * vxge_rem_nic - Free the PCI device
4670 * @pdev: structure containing the PCI related information of the device.
4671 * Description: This function is called by the Pci subsystem to release a
4672 * PCI device and free up all resource held up by the device.
4673 */
2c91308f 4674static void __devexit vxge_remove(struct pci_dev *pdev)
703da5a1 4675{
2c91308f 4676 struct __vxge_hw_device *hldev;
6cca2003
JM
4677 struct vxgedev *vdev;
4678 int i;
703da5a1 4679
d8ee7071 4680 hldev = pci_get_drvdata(pdev);
703da5a1
RV
4681 if (hldev == NULL)
4682 return;
2c91308f 4683
6cca2003 4684 vdev = netdev_priv(hldev->ndev);
703da5a1 4685
2c91308f 4686 vxge_debug_entryexit(vdev->level_trace, "%s:%d", __func__, __LINE__);
2c91308f
JM
4687 vxge_debug_init(vdev->level_trace, "%s : removing PCI device...",
4688 __func__);
703da5a1 4689
6cca2003 4690 for (i = 0; i < vdev->no_of_vpath; i++)
703da5a1 4691 vxge_free_mac_add_list(&vdev->vpaths[i]);
703da5a1 4692
6cca2003
JM
4693 vxge_device_unregister(hldev);
4694 pci_set_drvdata(pdev, NULL);
4695 /* Do not call pci_disable_sriov here, as it will break child devices */
4696 vxge_hw_device_terminate(hldev);
703da5a1 4697 iounmap(vdev->bar0);
6cca2003
JM
4698 pci_release_region(pdev, 0);
4699 pci_disable_device(pdev);
4700 driver_config->config_dev_cnt--;
4701 driver_config->total_dev_cnt--;
703da5a1 4702
2c91308f
JM
4703 vxge_debug_init(vdev->level_trace, "%s:%d Device unregistered",
4704 __func__, __LINE__);
2c91308f
JM
4705 vxge_debug_entryexit(vdev->level_trace, "%s:%d Exiting...", __func__,
4706 __LINE__);
703da5a1
RV
4707}
4708
4709static struct pci_error_handlers vxge_err_handler = {
4710 .error_detected = vxge_io_error_detected,
4711 .slot_reset = vxge_io_slot_reset,
4712 .resume = vxge_io_resume,
4713};
4714
4715static struct pci_driver vxge_driver = {
4716 .name = VXGE_DRIVER_NAME,
4717 .id_table = vxge_id_table,
4718 .probe = vxge_probe,
4719 .remove = __devexit_p(vxge_remove),
4720#ifdef CONFIG_PM
4721 .suspend = vxge_pm_suspend,
4722 .resume = vxge_pm_resume,
4723#endif
4724 .err_handler = &vxge_err_handler,
4725};
4726
4727static int __init
4728vxge_starter(void)
4729{
4730 int ret = 0;
703da5a1 4731
75f5e1c6
JP
4732 pr_info("Copyright(c) 2002-2010 Exar Corp.\n");
4733 pr_info("Driver version: %s\n", DRV_VERSION);
703da5a1
RV
4734
4735 verify_bandwidth();
4736
4737 driver_config = kzalloc(sizeof(struct vxge_drv_config), GFP_KERNEL);
4738 if (!driver_config)
4739 return -ENOMEM;
4740
4741 ret = pci_register_driver(&vxge_driver);
528f7272
JM
4742 if (ret) {
4743 kfree(driver_config);
4744 goto err;
4745 }
703da5a1
RV
4746
4747 if (driver_config->config_dev_cnt &&
4748 (driver_config->config_dev_cnt != driver_config->total_dev_cnt))
4749 vxge_debug_init(VXGE_ERR,
4750 "%s: Configured %d of %d devices",
4751 VXGE_DRIVER_NAME, driver_config->config_dev_cnt,
4752 driver_config->total_dev_cnt);
528f7272 4753err:
703da5a1
RV
4754 return ret;
4755}
4756
4757static void __exit
4758vxge_closer(void)
4759{
4760 pci_unregister_driver(&vxge_driver);
4761 kfree(driver_config);
4762}
4763module_init(vxge_starter);
4764module_exit(vxge_closer);
This page took 0.500331 seconds and 5 git commands to generate.