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.
10 * vxge-main.c: Driver for Exar Corp's X3100 Series 10GbE PCIe I/O
11 * Virtualized Server Adapter.
12 * Copyright(c) 2002-2010 Exar Corp.
14 * The module loadable parameters that are supported by the driver and a brief
15 * explanation of all the variables:
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.
24 * Enable learning the mac address of the guest OS interface in
25 * a virtualization environment.
30 * Maximum number of port to be supported.
34 * This configures the maximum no of VPATH configures for each
36 * MIN - 1 and MAX - 17
39 * This configures maximum no of Device function to be enabled.
40 * MIN - 1 and MAX - 17
42 ******************************************************************************/
44 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
46 #include <linux/if_vlan.h>
47 #include <linux/pci.h>
48 #include <linux/slab.h>
49 #include <linux/tcp.h>
51 #include <linux/netdevice.h>
52 #include <linux/etherdevice.h>
53 #include <linux/firmware.h>
54 #include <linux/net_tstamp.h>
55 #include "vxge-main.h"
58 MODULE_LICENSE("Dual BSD/GPL");
59 MODULE_DESCRIPTION("Neterion's X3100 Series 10GbE PCIe I/O"
60 "Virtualized Server Adapter");
62 static DEFINE_PCI_DEVICE_TABLE(vxge_id_table
) = {
63 {PCI_VENDOR_ID_S2IO
, PCI_DEVICE_ID_TITAN_WIN
, PCI_ANY_ID
,
65 {PCI_VENDOR_ID_S2IO
, PCI_DEVICE_ID_TITAN_UNI
, PCI_ANY_ID
,
70 MODULE_DEVICE_TABLE(pci
, vxge_id_table
);
72 VXGE_MODULE_PARAM_INT(vlan_tag_strip
, VXGE_HW_VPATH_RPA_STRIP_VLAN_TAG_ENABLE
);
73 VXGE_MODULE_PARAM_INT(addr_learn_en
, VXGE_HW_MAC_ADDR_LEARN_DEFAULT
);
74 VXGE_MODULE_PARAM_INT(max_config_port
, VXGE_MAX_CONFIG_PORT
);
75 VXGE_MODULE_PARAM_INT(max_config_vpath
, VXGE_USE_DEFAULT
);
76 VXGE_MODULE_PARAM_INT(max_mac_vpath
, VXGE_MAX_MAC_ADDR_COUNT
);
77 VXGE_MODULE_PARAM_INT(max_config_dev
, VXGE_MAX_CONFIG_DEV
);
79 static 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};
81 static unsigned int bw_percentage
[VXGE_HW_MAX_VIRTUAL_PATHS
] =
82 {[0 ...(VXGE_HW_MAX_VIRTUAL_PATHS
- 1)] = 0xFF};
83 module_param_array(bw_percentage
, uint
, NULL
, 0);
85 static struct vxge_drv_config
*driver_config
;
87 static inline int is_vxge_card_up(struct vxgedev
*vdev
)
89 return test_bit(__VXGE_STATE_CARD_UP
, &vdev
->state
);
92 static inline void VXGE_COMPLETE_VPATH_TX(struct vxge_fifo
*fifo
)
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
];
104 if (__netif_tx_trylock(fifo
->txq
)) {
105 vxge_hw_vpath_poll_tx(fifo
->handle
, &skb_ptr
,
106 NR_SKB_COMPLETED
, &more
);
107 __netif_tx_unlock(fifo
->txq
);
111 for (temp
= completed
; temp
!= skb_ptr
; temp
++)
112 dev_kfree_skb_irq(*temp
);
116 static inline void VXGE_COMPLETE_ALL_TX(struct vxgedev
*vdev
)
120 /* Complete all transmits */
121 for (i
= 0; i
< vdev
->no_of_vpath
; i
++)
122 VXGE_COMPLETE_VPATH_TX(&vdev
->vpaths
[i
].fifo
);
125 static inline void VXGE_COMPLETE_ALL_RX(struct vxgedev
*vdev
)
128 struct vxge_ring
*ring
;
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
);
138 * vxge_callback_link_up
140 * This function is called during interrupt context to notify link up state
143 static void vxge_callback_link_up(struct __vxge_hw_device
*hldev
)
145 struct net_device
*dev
= hldev
->ndev
;
146 struct vxgedev
*vdev
= netdev_priv(dev
);
148 vxge_debug_entryexit(VXGE_TRACE
, "%s: %s:%d",
149 vdev
->ndev
->name
, __func__
, __LINE__
);
150 netdev_notice(vdev
->ndev
, "Link Up\n");
151 vdev
->stats
.link_up
++;
153 netif_carrier_on(vdev
->ndev
);
154 netif_tx_wake_all_queues(vdev
->ndev
);
156 vxge_debug_entryexit(VXGE_TRACE
,
157 "%s: %s:%d Exiting...", vdev
->ndev
->name
, __func__
, __LINE__
);
161 * vxge_callback_link_down
163 * This function is called during interrupt context to notify link down state
166 static void vxge_callback_link_down(struct __vxge_hw_device
*hldev
)
168 struct net_device
*dev
= hldev
->ndev
;
169 struct vxgedev
*vdev
= netdev_priv(dev
);
171 vxge_debug_entryexit(VXGE_TRACE
,
172 "%s: %s:%d", vdev
->ndev
->name
, __func__
, __LINE__
);
173 netdev_notice(vdev
->ndev
, "Link Down\n");
175 vdev
->stats
.link_down
++;
176 netif_carrier_off(vdev
->ndev
);
177 netif_tx_stop_all_queues(vdev
->ndev
);
179 vxge_debug_entryexit(VXGE_TRACE
,
180 "%s: %s:%d Exiting...", vdev
->ndev
->name
, __func__
, __LINE__
);
188 static struct sk_buff
*
189 vxge_rx_alloc(void *dtrh
, struct vxge_ring
*ring
, const int skb_size
)
191 struct net_device
*dev
;
193 struct vxge_rx_priv
*rx_priv
;
196 vxge_debug_entryexit(VXGE_TRACE
, "%s: %s:%d",
197 ring
->ndev
->name
, __func__
, __LINE__
);
199 rx_priv
= vxge_hw_ring_rxd_private_get(dtrh
);
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
);
205 vxge_debug_mem(VXGE_ERR
,
206 "%s: out of memory to allocate SKB", dev
->name
);
207 ring
->stats
.skb_alloc_fail
++;
211 vxge_debug_mem(VXGE_TRACE
,
212 "%s: %s:%d Skb : 0x%p", ring
->ndev
->name
,
213 __func__
, __LINE__
, skb
);
215 skb_reserve(skb
, VXGE_HW_HEADER_ETHERNET_II_802_3_ALIGN
);
218 rx_priv
->skb_data
= NULL
;
219 rx_priv
->data_size
= skb_size
;
220 vxge_debug_entryexit(VXGE_TRACE
,
221 "%s: %s:%d Exiting...", ring
->ndev
->name
, __func__
, __LINE__
);
229 static int vxge_rx_map(void *dtrh
, struct vxge_ring
*ring
)
231 struct vxge_rx_priv
*rx_priv
;
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
);
238 rx_priv
->skb_data
= rx_priv
->skb
->data
;
239 dma_addr
= pci_map_single(ring
->pdev
, rx_priv
->skb_data
,
240 rx_priv
->data_size
, PCI_DMA_FROMDEVICE
);
242 if (unlikely(pci_dma_mapping_error(ring
->pdev
, dma_addr
))) {
243 ring
->stats
.pci_map_fail
++;
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
);
252 rx_priv
->data_dma
= dma_addr
;
253 vxge_debug_entryexit(VXGE_TRACE
,
254 "%s: %s:%d Exiting...", ring
->ndev
->name
, __func__
, __LINE__
);
260 * vxge_rx_initial_replenish
261 * Allocation of RxD as an initial replenish procedure.
263 static enum vxge_hw_status
264 vxge_rx_initial_replenish(void *dtrh
, void *userdata
)
266 struct vxge_ring
*ring
= (struct vxge_ring
*)userdata
;
267 struct vxge_rx_priv
*rx_priv
;
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
)
275 if (vxge_rx_map(dtrh
, ring
)) {
276 rx_priv
= vxge_hw_ring_rxd_private_get(dtrh
);
277 dev_kfree_skb(rx_priv
->skb
);
281 vxge_debug_entryexit(VXGE_TRACE
,
282 "%s: %s:%d Exiting...", ring
->ndev
->name
, __func__
, __LINE__
);
288 vxge_rx_complete(struct vxge_ring
*ring
, struct sk_buff
*skb
, u16 vlan
,
289 int pkt_length
, struct vxge_hw_ring_rxd_info
*ext_info
)
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
);
297 ring
->stats
.rx_frms
++;
298 ring
->stats
.rx_bytes
+= pkt_length
;
300 if (skb
->pkt_type
== PACKET_MULTICAST
)
301 ring
->stats
.rx_mcast
++;
303 vxge_debug_rx(VXGE_TRACE
,
304 "%s: %s:%d skb protocol = %d",
305 ring
->ndev
->name
, __func__
, __LINE__
, skb
->protocol
);
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
))
311 vlan_gro_receive(ring
->napi_p
, ring
->vlgrp
,
312 ext_info
->vlan
, skb
);
314 napi_gro_receive(ring
->napi_p
, skb
);
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
);
321 netif_receive_skb(skb
);
323 vxge_debug_entryexit(VXGE_TRACE
,
324 "%s: %s:%d Exiting...", ring
->ndev
->name
, __func__
, __LINE__
);
327 static inline void vxge_re_pre_post(void *dtr
, struct vxge_ring
*ring
,
328 struct vxge_rx_priv
*rx_priv
)
330 pci_dma_sync_single_for_device(ring
->pdev
,
331 rx_priv
->data_dma
, rx_priv
->data_size
, PCI_DMA_FROMDEVICE
);
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
);
337 static inline void vxge_post(int *dtr_cnt
, void **first_dtr
,
338 void *post_dtr
, struct __vxge_hw_ring
*ringh
)
340 int dtr_count
= *dtr_cnt
;
341 if ((*dtr_cnt
% VXGE_HW_RXSYNC_FREQ_CNT
) == 0) {
343 vxge_hw_ring_rxd_post_post_wmb(ringh
, *first_dtr
);
344 *first_dtr
= post_dtr
;
346 vxge_hw_ring_rxd_post_post(ringh
, post_dtr
);
348 *dtr_cnt
= dtr_count
;
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.
357 static enum vxge_hw_status
358 vxge_rx_1b_compl(struct __vxge_hw_ring
*ringh
, void *dtr
,
359 u8 t_code
, void *userdata
)
361 struct vxge_ring
*ring
= (struct vxge_ring
*)userdata
;
362 struct net_device
*dev
= ring
->ndev
;
363 unsigned int dma_sizes
;
364 void *first_dtr
= NULL
;
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;
376 vxge_hw_ring_replenish(ringh
);
379 prefetch((char *)dtr
+ L1_CACHE_BYTES
);
380 rx_priv
= vxge_hw_ring_rxd_private_get(dtr
);
382 data_size
= rx_priv
->data_size
;
383 data_dma
= rx_priv
->data_dma
;
384 prefetch(rx_priv
->skb_data
);
386 vxge_debug_rx(VXGE_TRACE
,
387 "%s: %s:%d skb = 0x%p",
388 ring
->ndev
->name
, __func__
, __LINE__
, skb
);
390 vxge_hw_ring_rxd_1b_get(ringh
, dtr
, &dma_sizes
);
391 pkt_length
= dma_sizes
;
393 pkt_length
-= ETH_FCS_LEN
;
395 vxge_debug_rx(VXGE_TRACE
,
396 "%s: %s:%d Packet Length = %d",
397 ring
->ndev
->name
, __func__
, __LINE__
, pkt_length
);
399 vxge_hw_ring_rxd_1b_info_get(ringh
, dtr
, &ext_info
);
401 /* check skb validity */
404 prefetch((char *)skb
+ L1_CACHE_BYTES
);
405 if (unlikely(t_code
)) {
406 if (vxge_hw_ring_handle_tcode(ringh
, dtr
, t_code
) !=
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__
,
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 !!!
419 vxge_re_pre_post(dtr
, ring
, rx_priv
);
421 vxge_post(&dtr_cnt
, &first_dtr
, dtr
, ringh
);
422 ring
->stats
.rx_dropped
++;
427 if (pkt_length
> VXGE_LL_RX_COPY_THRESHOLD
) {
428 if (vxge_rx_alloc(dtr
, ring
, data_size
) != NULL
) {
429 if (!vxge_rx_map(dtr
, ring
)) {
430 skb_put(skb
, pkt_length
);
432 pci_unmap_single(ring
->pdev
, data_dma
,
433 data_size
, PCI_DMA_FROMDEVICE
);
435 vxge_hw_ring_rxd_pre_post(ringh
, dtr
);
436 vxge_post(&dtr_cnt
, &first_dtr
, dtr
,
439 dev_kfree_skb(rx_priv
->skb
);
441 rx_priv
->data_size
= data_size
;
442 vxge_re_pre_post(dtr
, ring
, rx_priv
);
444 vxge_post(&dtr_cnt
, &first_dtr
, dtr
,
446 ring
->stats
.rx_dropped
++;
450 vxge_re_pre_post(dtr
, ring
, rx_priv
);
452 vxge_post(&dtr_cnt
, &first_dtr
, dtr
, ringh
);
453 ring
->stats
.rx_dropped
++;
457 struct sk_buff
*skb_up
;
459 skb_up
= netdev_alloc_skb(dev
, pkt_length
+
460 VXGE_HW_HEADER_ETHERNET_II_802_3_ALIGN
);
461 if (skb_up
!= NULL
) {
463 VXGE_HW_HEADER_ETHERNET_II_802_3_ALIGN
);
465 pci_dma_sync_single_for_cpu(ring
->pdev
,
469 vxge_debug_mem(VXGE_TRACE
,
470 "%s: %s:%d skb_up = %p",
471 ring
->ndev
->name
, __func__
,
473 memcpy(skb_up
->data
, skb
->data
, pkt_length
);
475 vxge_re_pre_post(dtr
, ring
, rx_priv
);
477 vxge_post(&dtr_cnt
, &first_dtr
, dtr
,
479 /* will netif_rx small SKB instead */
481 skb_put(skb
, pkt_length
);
483 vxge_re_pre_post(dtr
, ring
, rx_priv
);
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
++;
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
;
501 skb_checksum_none_assert(skb
);
505 struct skb_shared_hwtstamps
*skb_hwts
;
506 u32 ns
= *(u32
*)(skb
->head
+ pkt_length
);
508 skb_hwts
= skb_hwtstamps(skb
);
509 skb_hwts
->hwtstamp
= ns_to_ktime(ns
);
510 skb_hwts
->syststamp
.tv64
= 0;
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.
517 if (ext_info
.rth_value
)
518 skb
->rxhash
= ext_info
.rth_value
;
520 vxge_rx_complete(ring
, skb
, ext_info
.vlan
,
521 pkt_length
, &ext_info
);
524 ring
->pkts_processed
++;
528 } while (vxge_hw_ring_rxd_next_completed(ringh
, &dtr
,
529 &t_code
) == VXGE_HW_OK
);
532 vxge_hw_ring_rxd_post_post_wmb(ringh
, first_dtr
);
534 vxge_debug_entryexit(VXGE_TRACE
,
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
548 static enum vxge_hw_status
549 vxge_xmit_compl(struct __vxge_hw_fifo
*fifo_hw
, void *dtr
,
550 enum vxge_hw_fifo_tcode t_code
, void *userdata
,
551 struct sk_buff
***skb_ptr
, int nr_skb
, int *more
)
553 struct vxge_fifo
*fifo
= (struct vxge_fifo
*)userdata
;
554 struct sk_buff
*skb
, **done_skb
= *skb_ptr
;
557 vxge_debug_entryexit(VXGE_TRACE
,
558 "%s:%d Entered....", __func__
, __LINE__
);
564 struct vxge_tx_priv
*txd_priv
=
565 vxge_hw_fifo_txdl_private_get(dtr
);
568 frg_cnt
= skb_shinfo(skb
)->nr_frags
;
569 frag
= &skb_shinfo(skb
)->frags
[0];
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 */
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
,
587 vxge_hw_fifo_handle_tcode(fifo_hw
, dtr
, t_code
);
590 /* for unfragmented skb */
591 pci_unmap_single(fifo
->pdev
, txd_priv
->dma_buffers
[i
++],
592 skb_headlen(skb
), PCI_DMA_TODEVICE
);
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
);
601 vxge_hw_fifo_txdl_free(fifo_hw
, dtr
);
603 /* Updating the statistics block */
604 fifo
->stats
.tx_frms
++;
605 fifo
->stats
.tx_bytes
+= skb
->len
;
615 if (pkt_cnt
> fifo
->indicate_max_pkts
)
618 } while (vxge_hw_fifo_txdl_next_completed(fifo_hw
,
619 &dtr
, &t_code
) == VXGE_HW_OK
);
622 if (netif_tx_queue_stopped(fifo
->txq
))
623 netif_tx_wake_queue(fifo
->txq
);
625 vxge_debug_entryexit(VXGE_TRACE
,
626 "%s: %s:%d Exiting...",
627 fifo
->ndev
->name
, __func__
, __LINE__
);
631 /* select a vpath to transmit the packet */
632 static u32
vxge_get_vpath_no(struct vxgedev
*vdev
, struct sk_buff
*skb
)
634 u16 queue_len
, counter
= 0;
635 if (skb
->protocol
== htons(ETH_P_IP
)) {
641 if ((ip
->frag_off
& htons(IP_OFFSET
|IP_MF
)) == 0) {
642 th
= (struct tcphdr
*)(((unsigned char *)ip
) +
645 queue_len
= vdev
->no_of_vpath
;
646 counter
= (ntohs(th
->source
) +
648 vdev
->vpath_selector
[queue_len
- 1];
649 if (counter
>= queue_len
)
650 counter
= queue_len
- 1;
656 static enum vxge_hw_status
vxge_search_mac_addr_in_list(
657 struct vxge_vpath
*vpath
, u64 del_mac
)
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
)
667 static int vxge_mac_list_add(struct vxge_vpath
*vpath
, struct macInfo
*mac
)
669 struct vxge_mac_addrs
*new_mac_entry
;
670 u8
*mac_address
= NULL
;
672 if (vpath
->mac_addr_cnt
>= VXGE_MAX_LEARN_MAC_ADDR_CNT
)
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",
683 list_add(&new_mac_entry
->item
, &vpath
->mac_addr_list
);
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
);
689 new_mac_entry
->state
= mac
->state
;
690 vpath
->mac_addr_cnt
++;
692 /* Is this a multicast address */
693 if (0x01 & mac
->macaddr
[0])
694 vpath
->mcast_addr_cnt
++;
699 /* Add a mac address to DA table */
700 static enum vxge_hw_status
701 vxge_add_mac_addr(struct vxgedev
*vdev
, struct macInfo
*mac
)
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
;
707 if (0x01 & mac
->macaddr
[0]) /* multicast address */
708 duplicate_mode
= VXGE_HW_VPATH_MAC_ADDR_ADD_DUPLICATE
;
710 duplicate_mode
= VXGE_HW_VPATH_MAC_ADDR_REPLACE_DUPLICATE
;
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",
720 if (FALSE
== vxge_mac_list_add(vpath
, mac
))
726 static int vxge_learn_mac(struct vxgedev
*vdev
, u8
*mac_header
)
728 struct macInfo mac_info
;
729 u8
*mac_address
= NULL
;
730 u64 mac_addr
= 0, vpath_vector
= 0;
732 enum vxge_hw_status status
= VXGE_HW_OK
;
733 struct vxge_vpath
*vpath
= NULL
;
734 struct __vxge_hw_device
*hldev
;
736 hldev
= pci_get_drvdata(vdev
->pdev
);
738 mac_address
= (u8
*)&mac_addr
;
739 memcpy(mac_address
, mac_header
, ETH_ALEN
);
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
))
748 memset(&mac_info
, 0, sizeof(struct macInfo
));
749 memcpy(mac_info
.macaddr
, mac_header
, ETH_ALEN
);
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
)
765 mac_info
.state
= VXGE_LL_MAC_ADDR_IN_LIST
;
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
))
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
,
783 struct vxge_hw_mrpcim_reg
,
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
);
793 if (FALSE
== vxge_mac_list_add(vpath
, &mac_info
))
801 * @skb : the socket buffer containing the Tx data.
802 * @dev : device pointer.
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.
808 vxge_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
810 struct vxge_fifo
*fifo
= NULL
;
813 struct vxgedev
*vdev
= NULL
;
814 enum vxge_hw_status status
;
815 int frg_cnt
, first_frg_len
;
817 int i
= 0, j
= 0, avail
;
819 struct vxge_tx_priv
*txdl_priv
= NULL
;
820 struct __vxge_hw_fifo
*fifo_hw
;
824 vxge_debug_entryexit(VXGE_TRACE
, "%s: %s:%d",
825 dev
->name
, __func__
, __LINE__
);
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
);
835 vdev
= netdev_priv(dev
);
837 if (unlikely(!is_vxge_card_up(vdev
))) {
838 vxge_debug_tx(VXGE_ERR
,
839 "%s: vdev not initialized", dev
->name
);
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",
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
)
858 vpath_no
= vxge_get_vpath_no(vdev
, skb
);
860 vxge_debug_tx(VXGE_TRACE
, "%s: vpath_no= %d", dev
->name
, vpath_no
);
862 if (vpath_no
>= vdev
->no_of_vpath
)
865 fifo
= &vdev
->vpaths
[vpath_no
].fifo
;
866 fifo_hw
= fifo
->handle
;
868 if (netif_tx_queue_stopped(fifo
->txq
))
869 return NETDEV_TX_BUSY
;
871 avail
= vxge_hw_fifo_free_txdl_count_get(fifo_hw
);
873 vxge_debug_tx(VXGE_ERR
,
874 "%s: No free TXDs available", dev
->name
);
875 fifo
->stats
.txd_not_free
++;
879 /* Last TXD? Stop tx queue to avoid dropping packets. TX
880 * completion will resume the queue.
883 netif_tx_stop_queue(fifo
->txq
);
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
++;
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
);
898 if (vlan_tx_tag_present(skb
)) {
899 u16 vlan_tag
= vlan_tx_tag_get(skb
);
900 vxge_hw_fifo_txdl_vlan_set(dtr
, vlan_tag
);
903 first_frg_len
= skb_headlen(skb
);
905 dma_pointer
= pci_map_single(fifo
->pdev
, skb
->data
, first_frg_len
,
908 if (unlikely(pci_dma_mapping_error(fifo
->pdev
, dma_pointer
))) {
909 vxge_hw_fifo_txdl_free(fifo_hw
, dtr
);
910 fifo
->stats
.pci_map_fail
++;
914 txdl_priv
= vxge_hw_fifo_txdl_private_get(dtr
);
915 txdl_priv
->skb
= skb
;
916 txdl_priv
->dma_buffers
[j
] = dma_pointer
;
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
);
925 vxge_hw_fifo_txdl_buffer_set(fifo_hw
, dtr
, j
++, dma_pointer
,
928 frag
= &skb_shinfo(skb
)->frags
[0];
929 for (i
= 0; i
< frg_cnt
; i
++) {
930 /* ignore 0 length fragment */
934 dma_pointer
= (u64
) pci_map_page(fifo
->pdev
, frag
->page
,
935 frag
->page_offset
, frag
->size
,
938 if (unlikely(pci_dma_mapping_error(fifo
->pdev
, dma_pointer
)))
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
);
945 txdl_priv
->dma_buffers
[j
] = dma_pointer
;
946 vxge_hw_fifo_txdl_buffer_set(fifo_hw
, dtr
, j
++, dma_pointer
,
951 offload_type
= vxge_offload_type(skb
);
953 if (offload_type
& (SKB_GSO_TCPV4
| SKB_GSO_TCPV6
)) {
954 int mss
= vxge_tcp_mss(skb
);
956 vxge_debug_tx(VXGE_TRACE
, "%s: %s:%d mss = %d",
957 dev
->name
, __func__
, __LINE__
, mss
);
958 vxge_hw_fifo_txdl_mss_set(dtr
, mss
);
960 vxge_assert(skb
->len
<=
961 dev
->mtu
+ VXGE_HW_MAC_HEADER_MAX_SIZE
);
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
);
973 vxge_hw_fifo_txdl_post(fifo_hw
, dtr
);
975 vxge_debug_entryexit(VXGE_TRACE
, "%s: %s:%d Exiting...",
976 dev
->name
, __func__
, __LINE__
);
980 vxge_debug_tx(VXGE_TRACE
, "%s: pci_map_page failed", dev
->name
);
983 frag
= &skb_shinfo(skb
)->frags
[0];
985 pci_unmap_single(fifo
->pdev
, txdl_priv
->dma_buffers
[j
++],
986 skb_headlen(skb
), PCI_DMA_TODEVICE
);
989 pci_unmap_page(fifo
->pdev
, txdl_priv
->dma_buffers
[j
],
990 frag
->size
, PCI_DMA_TODEVICE
);
994 vxge_hw_fifo_txdl_free(fifo_hw
, dtr
);
996 netif_tx_stop_queue(fifo
->txq
);
1005 * Function will be called by hw function to abort all outstanding receive
1009 vxge_rx_term(void *dtrh
, enum vxge_hw_rxd_state state
, void *userdata
)
1011 struct vxge_ring
*ring
= (struct vxge_ring
*)userdata
;
1012 struct vxge_rx_priv
*rx_priv
=
1013 vxge_hw_ring_rxd_private_get(dtrh
);
1015 vxge_debug_entryexit(VXGE_TRACE
, "%s: %s:%d",
1016 ring
->ndev
->name
, __func__
, __LINE__
);
1017 if (state
!= VXGE_HW_RXD_STATE_POSTED
)
1020 pci_unmap_single(ring
->pdev
, rx_priv
->data_dma
,
1021 rx_priv
->data_size
, PCI_DMA_FROMDEVICE
);
1023 dev_kfree_skb(rx_priv
->skb
);
1024 rx_priv
->skb_data
= NULL
;
1026 vxge_debug_entryexit(VXGE_TRACE
,
1027 "%s: %s:%d Exiting...",
1028 ring
->ndev
->name
, __func__
, __LINE__
);
1034 * Function will be called to abort all outstanding tx descriptors
1037 vxge_tx_term(void *dtrh
, enum vxge_hw_txdl_state state
, void *userdata
)
1039 struct vxge_fifo
*fifo
= (struct vxge_fifo
*)userdata
;
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
;
1045 vxge_debug_entryexit(VXGE_TRACE
, "%s:%d", __func__
, __LINE__
);
1047 if (state
!= VXGE_HW_TXDL_STATE_POSTED
)
1050 /* check skb validity */
1052 frg_cnt
= skb_shinfo(skb
)->nr_frags
;
1053 frag
= &skb_shinfo(skb
)->frags
[0];
1055 /* for unfragmented skb */
1056 pci_unmap_single(fifo
->pdev
, txd_priv
->dma_buffers
[i
++],
1057 skb_headlen(skb
), PCI_DMA_TODEVICE
);
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
);
1067 vxge_debug_entryexit(VXGE_TRACE
,
1068 "%s:%d Exiting...", __func__
, __LINE__
);
1071 static int vxge_mac_list_del(struct vxge_vpath
*vpath
, struct macInfo
*mac
)
1073 struct list_head
*entry
, *next
;
1075 u8
*mac_address
= (u8
*) (&del_mac
);
1077 /* Copy the mac address to delete from the list */
1078 memcpy(mac_address
, mac
->macaddr
, ETH_ALEN
);
1080 list_for_each_safe(entry
, next
, &vpath
->mac_addr_list
) {
1081 if (((struct vxge_mac_addrs
*)entry
)->macaddr
== del_mac
) {
1083 kfree((struct vxge_mac_addrs
*)entry
);
1084 vpath
->mac_addr_cnt
--;
1086 /* Is this a multicast address */
1087 if (0x01 & mac
->macaddr
[0])
1088 vpath
->mcast_addr_cnt
--;
1096 /* delete a mac address from DA table */
1097 static enum vxge_hw_status
1098 vxge_del_mac_addr(struct vxgedev
*vdev
, struct macInfo
*mac
)
1100 enum vxge_hw_status status
= VXGE_HW_OK
;
1101 struct vxge_vpath
*vpath
;
1103 vpath
= &vdev
->vpaths
[mac
->vpath_no
];
1104 status
= vxge_hw_vpath_mac_addr_delete(vpath
->handle
, mac
->macaddr
,
1106 if (status
!= VXGE_HW_OK
) {
1107 vxge_debug_init(VXGE_ERR
,
1108 "DA config delete entry failed for vpath:%d",
1111 vxge_mac_list_del(vpath
, mac
);
1116 * vxge_set_multicast
1117 * @dev: pointer to the device structure
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.
1126 static void vxge_set_multicast(struct net_device
*dev
)
1128 struct netdev_hw_addr
*ha
;
1129 struct vxgedev
*vdev
;
1130 int i
, mcast_cnt
= 0;
1131 struct __vxge_hw_device
*hldev
;
1132 struct vxge_vpath
*vpath
;
1133 enum vxge_hw_status status
= VXGE_HW_OK
;
1134 struct macInfo mac_info
;
1136 struct vxge_mac_addrs
*mac_entry
;
1137 struct list_head
*list_head
;
1138 struct list_head
*entry
, *next
;
1139 u8
*mac_address
= NULL
;
1141 vxge_debug_entryexit(VXGE_TRACE
,
1142 "%s:%d", __func__
, __LINE__
);
1144 vdev
= netdev_priv(dev
);
1145 hldev
= (struct __vxge_hw_device
*)vdev
->devh
;
1147 if (unlikely(!is_vxge_card_up(vdev
)))
1150 if ((dev
->flags
& IFF_ALLMULTI
) && (!vdev
->all_multi_flg
)) {
1151 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
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
);
1158 vdev
->all_multi_flg
= 1;
1160 } else if (!(dev
->flags
& IFF_ALLMULTI
) && (vdev
->all_multi_flg
)) {
1161 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
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;
1173 if (!vdev
->config
.addr_learn_en
) {
1174 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
1175 vpath
= &vdev
->vpaths
[i
];
1176 vxge_assert(vpath
->is_open
);
1178 if (dev
->flags
& IFF_PROMISC
)
1179 status
= vxge_hw_vpath_promisc_enable(
1182 status
= vxge_hw_vpath_promisc_disable(
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
);
1191 memset(&mac_info
, 0, sizeof(struct macInfo
));
1192 /* Update individual M_CAST address list */
1193 if ((!vdev
->all_multi_flg
) && netdev_mc_count(dev
)) {
1194 mcast_cnt
= vdev
->vpaths
[0].mcast_addr_cnt
;
1195 list_head
= &vdev
->vpaths
[0].mac_addr_list
;
1196 if ((netdev_mc_count(dev
) +
1197 (vdev
->vpaths
[0].mac_addr_cnt
- mcast_cnt
)) >
1198 vdev
->vpaths
[0].max_mac_addr_cnt
)
1199 goto _set_all_mcast
;
1201 /* Delete previous MC's */
1202 for (i
= 0; i
< mcast_cnt
; i
++) {
1203 list_for_each_safe(entry
, next
, list_head
) {
1204 mac_entry
= (struct vxge_mac_addrs
*)entry
;
1205 /* Copy the mac address to delete */
1206 mac_address
= (u8
*)&mac_entry
->macaddr
;
1207 memcpy(mac_info
.macaddr
, mac_address
, ETH_ALEN
);
1209 /* Is this a multicast address */
1210 if (0x01 & mac_info
.macaddr
[0]) {
1211 for (vpath_idx
= 0; vpath_idx
<
1214 mac_info
.vpath_no
= vpath_idx
;
1215 status
= vxge_del_mac_addr(
1224 netdev_for_each_mc_addr(ha
, dev
) {
1225 memcpy(mac_info
.macaddr
, ha
->addr
, ETH_ALEN
);
1226 for (vpath_idx
= 0; vpath_idx
< vdev
->no_of_vpath
;
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
;
1243 mcast_cnt
= vdev
->vpaths
[0].mcast_addr_cnt
;
1244 /* Delete previous MC's */
1245 for (i
= 0; i
< mcast_cnt
; i
++) {
1246 list_for_each_safe(entry
, next
, list_head
) {
1247 mac_entry
= (struct vxge_mac_addrs
*)entry
;
1248 /* Copy the mac address to delete */
1249 mac_address
= (u8
*)&mac_entry
->macaddr
;
1250 memcpy(mac_info
.macaddr
, mac_address
, ETH_ALEN
);
1252 /* Is this a multicast address */
1253 if (0x01 & mac_info
.macaddr
[0])
1257 for (vpath_idx
= 0; vpath_idx
< vdev
->no_of_vpath
;
1259 mac_info
.vpath_no
= vpath_idx
;
1260 status
= vxge_del_mac_addr(vdev
, &mac_info
);
1264 /* Enable all multicast */
1265 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
1266 vpath
= &vdev
->vpaths
[i
];
1267 vxge_assert(vpath
->is_open
);
1269 status
= vxge_hw_vpath_mcast_enable(vpath
->handle
);
1270 if (status
!= VXGE_HW_OK
) {
1271 vxge_debug_init(VXGE_ERR
,
1272 "%s:%d Enabling all multicasts failed",
1273 __func__
, __LINE__
);
1275 vdev
->all_multi_flg
= 1;
1277 dev
->flags
|= IFF_ALLMULTI
;
1280 vxge_debug_entryexit(VXGE_TRACE
,
1281 "%s:%d Exiting...", __func__
, __LINE__
);
1286 * @dev: pointer to the device structure
1288 * Update entry "0" (default MAC addr)
1290 static int vxge_set_mac_addr(struct net_device
*dev
, void *p
)
1292 struct sockaddr
*addr
= p
;
1293 struct vxgedev
*vdev
;
1294 struct __vxge_hw_device
*hldev
;
1295 enum vxge_hw_status status
= VXGE_HW_OK
;
1296 struct macInfo mac_info_new
, mac_info_old
;
1299 vxge_debug_entryexit(VXGE_TRACE
, "%s:%d", __func__
, __LINE__
);
1301 vdev
= netdev_priv(dev
);
1304 if (!is_valid_ether_addr(addr
->sa_data
))
1307 memset(&mac_info_new
, 0, sizeof(struct macInfo
));
1308 memset(&mac_info_old
, 0, sizeof(struct macInfo
));
1310 vxge_debug_entryexit(VXGE_TRACE
, "%s:%d Exiting...",
1311 __func__
, __LINE__
);
1313 /* Get the old address */
1314 memcpy(mac_info_old
.macaddr
, dev
->dev_addr
, dev
->addr_len
);
1316 /* Copy the new address */
1317 memcpy(mac_info_new
.macaddr
, addr
->sa_data
, dev
->addr_len
);
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
);
1329 /* Add this new address to the linked list
1330 for later restoring */
1331 vxge_mac_list_add(vpath
, &mac_info_new
);
1335 /* Delete the station address */
1336 mac_info_old
.vpath_no
= vpath_idx
;
1337 status
= vxge_del_mac_addr(vdev
, &mac_info_old
);
1340 if (unlikely(!is_vxge_card_up(vdev
))) {
1341 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
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
)
1354 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
1360 * vxge_vpath_intr_enable
1361 * @vdev: pointer to vdev
1362 * @vp_id: vpath for which to enable the interrupts
1364 * Enables the interrupts for the vpath
1366 static void vxge_vpath_intr_enable(struct vxgedev
*vdev
, int vp_id
)
1368 struct vxge_vpath
*vpath
= &vdev
->vpaths
[vp_id
];
1370 int tim_msix_id
[4] = {0, 1, 0, 0};
1371 int alarm_msix_id
= VXGE_ALARM_MSIX_ID
;
1373 vxge_hw_vpath_intr_enable(vpath
->handle
);
1375 if (vdev
->config
.intr_type
== INTA
)
1376 vxge_hw_vpath_inta_unmask_tx_rx(vpath
->handle
);
1378 vxge_hw_vpath_msix_set(vpath
->handle
, tim_msix_id
,
1381 msix_id
= vpath
->device_id
* VXGE_HW_VPATH_MSIX_ACTIVE
;
1382 vxge_hw_vpath_msix_unmask(vpath
->handle
, msix_id
);
1383 vxge_hw_vpath_msix_unmask(vpath
->handle
, msix_id
+ 1);
1385 /* enable the alarm vector */
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
);
1393 * vxge_vpath_intr_disable
1394 * @vdev: pointer to vdev
1395 * @vp_id: vpath for which to disable the interrupts
1397 * Disables the interrupts for the vpath
1399 static void vxge_vpath_intr_disable(struct vxgedev
*vdev
, int vp_id
)
1401 struct vxge_vpath
*vpath
= &vdev
->vpaths
[vp_id
];
1402 struct __vxge_hw_device
*hldev
;
1405 hldev
= pci_get_drvdata(vdev
->pdev
);
1407 vxge_hw_vpath_wait_receive_idle(hldev
, vpath
->device_id
);
1409 vxge_hw_vpath_intr_disable(vpath
->handle
);
1411 if (vdev
->config
.intr_type
== INTA
)
1412 vxge_hw_vpath_inta_mask_tx_rx(vpath
->handle
);
1414 msix_id
= vpath
->device_id
* VXGE_HW_VPATH_MSIX_ACTIVE
;
1415 vxge_hw_vpath_msix_mask(vpath
->handle
, msix_id
);
1416 vxge_hw_vpath_msix_mask(vpath
->handle
, msix_id
+ 1);
1418 /* disable the alarm vector */
1419 msix_id
= (vpath
->handle
->vpath
->hldev
->first_vp_id
*
1420 VXGE_HW_VPATH_MSIX_ACTIVE
) + VXGE_ALARM_MSIX_ID
;
1421 vxge_hw_vpath_msix_mask(vpath
->handle
, msix_id
);
1425 /* list all mac addresses from DA table */
1426 static enum vxge_hw_status
1427 vxge_search_mac_addr_in_da_table(struct vxge_vpath
*vpath
, struct macInfo
*mac
)
1429 enum vxge_hw_status status
= VXGE_HW_OK
;
1430 unsigned char macmask
[ETH_ALEN
];
1431 unsigned char macaddr
[ETH_ALEN
];
1433 status
= vxge_hw_vpath_mac_addr_get(vpath
->handle
,
1435 if (status
!= VXGE_HW_OK
) {
1436 vxge_debug_init(VXGE_ERR
,
1437 "DA config list entry failed for vpath:%d",
1442 while (memcmp(mac
->macaddr
, macaddr
, ETH_ALEN
)) {
1443 status
= vxge_hw_vpath_mac_addr_get_next(vpath
->handle
,
1445 if (status
!= VXGE_HW_OK
)
1452 /* Store all mac addresses from the list to the DA table */
1453 static enum vxge_hw_status
vxge_restore_vpath_mac_addr(struct vxge_vpath
*vpath
)
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
;
1460 memset(&mac_info
, 0, sizeof(struct macInfo
));
1462 if (vpath
->is_open
) {
1463 list_for_each_safe(entry
, next
, &vpath
->mac_addr_list
) {
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
,
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
,
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",
1483 ((struct vxge_mac_addrs
*)entry
)->state
1484 = VXGE_LL_MAC_ADDR_IN_LIST
;
1493 /* Store all vlan ids from the list to the vid table */
1494 static enum vxge_hw_status
1495 vxge_restore_vpath_vid_table(struct vxge_vpath
*vpath
)
1497 enum vxge_hw_status status
= VXGE_HW_OK
;
1498 struct vxgedev
*vdev
= vpath
->vdev
;
1501 if (vdev
->vlgrp
&& vpath
->is_open
) {
1503 for (vid
= 0; vid
< VLAN_N_VID
; vid
++) {
1504 if (!vlan_group_get_device(vdev
->vlgrp
, vid
))
1506 /* Add these vlan to the vid table */
1507 status
= vxge_hw_vpath_vid_add(vpath
->handle
, vid
);
1516 * @vdev: pointer to vdev
1517 * @vp_id: vpath to reset
1521 static int vxge_reset_vpath(struct vxgedev
*vdev
, int vp_id
)
1523 enum vxge_hw_status status
= VXGE_HW_OK
;
1524 struct vxge_vpath
*vpath
= &vdev
->vpaths
[vp_id
];
1527 /* check if device is down already */
1528 if (unlikely(!is_vxge_card_up(vdev
)))
1531 /* is device reset already scheduled */
1532 if (test_bit(__VXGE_STATE_RESET_CARD
, &vdev
->state
))
1535 if (vpath
->handle
) {
1536 if (vxge_hw_vpath_reset(vpath
->handle
) == VXGE_HW_OK
) {
1537 if (is_vxge_card_up(vdev
) &&
1538 vxge_hw_vpath_recover_from_reset(vpath
->handle
)
1540 vxge_debug_init(VXGE_ERR
,
1541 "vxge_hw_vpath_recover_from_reset"
1542 "failed for vpath:%d", vp_id
);
1546 vxge_debug_init(VXGE_ERR
,
1547 "vxge_hw_vpath_reset failed for"
1552 return VXGE_HW_FAIL
;
1554 vxge_restore_vpath_mac_addr(vpath
);
1555 vxge_restore_vpath_vid_table(vpath
);
1557 /* Enable all broadcast */
1558 vxge_hw_vpath_bcast_enable(vpath
->handle
);
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__
);
1569 /* Enable the interrupts */
1570 vxge_vpath_intr_enable(vdev
, vp_id
);
1574 /* Enable the flow of traffic through the vpath */
1575 vxge_hw_vpath_enable(vpath
->handle
);
1578 vxge_hw_vpath_rx_doorbell_init(vpath
->handle
);
1579 vpath
->ring
.last_status
= VXGE_HW_OK
;
1581 /* Vpath reset done */
1582 clear_bit(vp_id
, &vdev
->vp_reset
);
1584 /* Start the vpath queue */
1585 if (netif_tx_queue_stopped(vpath
->fifo
.txq
))
1586 netif_tx_wake_queue(vpath
->fifo
.txq
);
1591 static int do_vxge_reset(struct vxgedev
*vdev
, int event
)
1593 enum vxge_hw_status status
;
1594 int ret
= 0, vp_id
, i
;
1596 vxge_debug_entryexit(VXGE_TRACE
, "%s:%d", __func__
, __LINE__
);
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
)))
1603 /* is reset already scheduled */
1604 if (test_and_set_bit(__VXGE_STATE_RESET_CARD
, &vdev
->state
))
1608 if (event
== VXGE_LL_FULL_RESET
) {
1609 netif_carrier_off(vdev
->ndev
);
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
))
1617 netif_carrier_on(vdev
->ndev
);
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..",
1624 clear_bit(__VXGE_STATE_CARD_UP
, &vdev
->state
);
1625 netif_tx_stop_all_queues(vdev
->ndev
);
1630 if (event
== VXGE_LL_FULL_RESET
) {
1631 vxge_hw_device_wait_receive_idle(vdev
->devh
);
1632 vxge_hw_device_intr_disable(vdev
->devh
);
1634 switch (vdev
->cric_err_event
) {
1635 case VXGE_HW_EVENT_UNKNOWN
:
1636 netif_tx_stop_all_queues(vdev
->ndev
);
1637 vxge_debug_init(VXGE_ERR
,
1638 "fatal: %s: Disabling device due to"
1643 case VXGE_HW_EVENT_RESET_START
:
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
:
1653 case VXGE_HW_EVENT_FIFO_ERR
:
1654 case VXGE_HW_EVENT_VPATH_ERR
:
1656 case VXGE_HW_EVENT_CRITICAL_ERR
:
1657 netif_tx_stop_all_queues(vdev
->ndev
);
1658 vxge_debug_init(VXGE_ERR
,
1659 "fatal: %s: Disabling device due to"
1662 /* SOP or device reset required */
1663 /* This event is not currently used */
1666 case VXGE_HW_EVENT_SERR
:
1667 netif_tx_stop_all_queues(vdev
->ndev
);
1668 vxge_debug_init(VXGE_ERR
,
1669 "fatal: %s: Disabling device due to"
1674 case VXGE_HW_EVENT_SRPCIM_SERR
:
1675 case VXGE_HW_EVENT_MRPCIM_SERR
:
1678 case VXGE_HW_EVENT_SLOT_FREEZE
:
1679 netif_tx_stop_all_queues(vdev
->ndev
);
1680 vxge_debug_init(VXGE_ERR
,
1681 "fatal: %s: Disabling device due to"
1692 if ((event
== VXGE_LL_FULL_RESET
) || (event
== VXGE_LL_START_RESET
))
1693 netif_tx_stop_all_queues(vdev
->ndev
);
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",
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
)
1712 vxge_debug_init(VXGE_ERR
,
1713 "vxge_hw_vpath_recover_"
1714 "from_reset failed for vpath: "
1720 vxge_debug_init(VXGE_ERR
,
1721 "vxge_hw_vpath_reset failed for "
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
]);
1735 /* enable vpath interrupts */
1736 for (i
= 0; i
< vdev
->no_of_vpath
; i
++)
1737 vxge_vpath_intr_enable(vdev
, i
);
1739 vxge_hw_device_intr_enable(vdev
->devh
);
1743 /* Indicate card up */
1744 set_bit(__VXGE_STATE_CARD_UP
, &vdev
->state
);
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
);
1750 vxge_hw_vpath_rx_doorbell_init(vdev
->vpaths
[i
].handle
);
1753 netif_tx_wake_all_queues(vdev
->ndev
);
1757 vxge_debug_entryexit(VXGE_TRACE
,
1758 "%s:%d Exiting...", __func__
, __LINE__
);
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
);
1768 * @vdev: pointer to ll device
1770 * driver may reset the chip on events of serr, eccerr, etc
1772 static void vxge_reset(struct work_struct
*work
)
1774 struct vxgedev
*vdev
= container_of(work
, struct vxgedev
, reset_task
);
1776 if (!netif_running(vdev
->ndev
))
1779 do_vxge_reset(vdev
, VXGE_LL_FULL_RESET
);
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.
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'.
1794 static int vxge_poll_msix(struct napi_struct
*napi
, int budget
)
1796 struct vxge_ring
*ring
=
1797 container_of(napi
, struct vxge_ring
, napi
);
1798 int budget_org
= budget
;
1799 ring
->budget
= budget
;
1801 vxge_hw_vpath_poll_rx(ring
->handle
);
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
);
1811 return ring
->pkts_processed
;
1814 static int vxge_poll_inta(struct napi_struct
*napi
, int budget
)
1816 struct vxgedev
*vdev
= container_of(napi
, struct vxgedev
, napi
);
1817 int pkts_processed
= 0;
1819 int budget_org
= budget
;
1820 struct vxge_ring
*ring
;
1822 struct __vxge_hw_device
*hldev
= pci_get_drvdata(vdev
->pdev
);
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
;
1834 VXGE_COMPLETE_ALL_TX(vdev
);
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
);
1843 return pkts_processed
;
1846 #ifdef CONFIG_NET_POLL_CONTROLLER
1848 * vxge_netpoll - netpoll event handler entry point
1849 * @dev : pointer to the device structure.
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).
1856 static void vxge_netpoll(struct net_device
*dev
)
1858 struct __vxge_hw_device
*hldev
;
1859 struct vxgedev
*vdev
;
1861 vdev
= netdev_priv(dev
);
1862 hldev
= pci_get_drvdata(vdev
->pdev
);
1864 vxge_debug_entryexit(VXGE_TRACE
, "%s:%d", __func__
, __LINE__
);
1866 if (pci_channel_offline(vdev
->pdev
))
1869 disable_irq(dev
->irq
);
1870 vxge_hw_device_clear_tx_rx(hldev
);
1872 vxge_hw_device_clear_tx_rx(hldev
);
1873 VXGE_COMPLETE_ALL_RX(vdev
);
1874 VXGE_COMPLETE_ALL_TX(vdev
);
1876 enable_irq(dev
->irq
);
1878 vxge_debug_entryexit(VXGE_TRACE
,
1879 "%s:%d Exiting...", __func__
, __LINE__
);
1883 /* RTH configuration */
1884 static enum vxge_hw_status
vxge_rth_configure(struct vxgedev
*vdev
)
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 */
1894 * - itable with bucket numbers
1895 * - mtable with bucket-to-vpath mapping
1897 for (index
= 0; index
< (1 << vdev
->config
.rth_bkt_sz
); index
++) {
1898 itable
[index
] = index
;
1899 mtable
[index
] = index
% vdev
->no_of_vpath
;
1902 /* set indirection table, bucket-to-vpath mapping */
1903 status
= vxge_hw_vpath_rts_rth_itable_set(vdev
->vp_handles
,
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
);
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
;
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.
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
,
1934 vdev
->config
.rth_bkt_sz
);
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
);
1947 enum vxge_hw_status
vxge_reset_all_vpaths(struct vxgedev
*vdev
)
1949 enum vxge_hw_status status
= VXGE_HW_OK
;
1950 struct vxge_vpath
*vpath
;
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
) {
1957 if (is_vxge_card_up(vdev
) &&
1958 vxge_hw_vpath_recover_from_reset(
1959 vpath
->handle
) != VXGE_HW_OK
) {
1960 vxge_debug_init(VXGE_ERR
,
1961 "vxge_hw_vpath_recover_"
1962 "from_reset failed for vpath: "
1967 vxge_debug_init(VXGE_ERR
,
1968 "vxge_hw_vpath_reset failed for "
1979 static void vxge_close_vpaths(struct vxgedev
*vdev
, int index
)
1981 struct vxge_vpath
*vpath
;
1984 for (i
= index
; i
< vdev
->no_of_vpath
; i
++) {
1985 vpath
= &vdev
->vpaths
[i
];
1987 if (vpath
->handle
&& vpath
->is_open
) {
1988 vxge_hw_vpath_close(vpath
->handle
);
1989 vdev
->stats
.vpaths_open
--;
1992 vpath
->handle
= NULL
;
1997 static int vxge_open_vpaths(struct vxgedev
*vdev
)
1999 struct vxge_hw_vpath_attr attr
;
2000 enum vxge_hw_status status
;
2001 struct vxge_vpath
*vpath
;
2005 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
2006 vpath
= &vdev
->vpaths
[i
];
2007 vxge_assert(vpath
->is_configured
);
2009 if (!vdev
->titan1
) {
2010 struct vxge_hw_vp_config
*vcfg
;
2011 vcfg
= &vdev
->devh
->config
.vp_config
[vpath
->device_id
];
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
;
2024 attr
.vp_id
= vpath
->device_id
;
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
);
2028 attr
.fifo_attr
.userdata
= &vpath
->fifo
;
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
);
2034 attr
.ring_attr
.userdata
= &vpath
->ring
;
2036 vpath
->ring
.ndev
= vdev
->ndev
;
2037 vpath
->ring
.pdev
= vdev
->pdev
;
2039 status
= vxge_hw_vpath_open(vdev
->devh
, &attr
, &vpath
->handle
);
2040 if (status
== VXGE_HW_OK
) {
2041 vpath
->fifo
.handle
=
2042 (struct __vxge_hw_fifo
*)attr
.fifo_attr
.userdata
;
2043 vpath
->ring
.handle
=
2044 (struct __vxge_hw_ring
*)attr
.ring_attr
.userdata
;
2045 vpath
->fifo
.tx_steering_type
=
2046 vdev
->config
.tx_steering_type
;
2047 vpath
->fifo
.ndev
= vdev
->ndev
;
2048 vpath
->fifo
.pdev
= vdev
->pdev
;
2049 if (vdev
->config
.tx_steering_type
)
2051 netdev_get_tx_queue(vdev
->ndev
, i
);
2054 netdev_get_tx_queue(vdev
->ndev
, 0);
2055 vpath
->fifo
.indicate_max_pkts
=
2056 vdev
->config
.fifo_indicate_max_pkts
;
2057 vpath
->ring
.rx_vector_no
= 0;
2058 vpath
->ring
.rx_csum
= vdev
->rx_csum
;
2059 vpath
->ring
.rx_hwts
= vdev
->rx_hwts
;
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
;
2064 vdev
->stats
.vpaths_open
++;
2066 vdev
->stats
.vpath_open_fail
++;
2067 vxge_debug_init(VXGE_ERR
, "%s: vpath: %d failed to "
2068 "open with status: %d",
2069 vdev
->ndev
->name
, vpath
->device_id
,
2071 vxge_close_vpaths(vdev
, 0);
2075 vp_id
= vpath
->handle
->vpath
->vp_id
;
2076 vdev
->vpaths_deployed
|= vxge_mBIT(vp_id
);
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.
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
2092 static irqreturn_t
vxge_isr_napi(int irq
, void *dev_id
)
2094 struct net_device
*dev
;
2095 struct __vxge_hw_device
*hldev
;
2097 enum vxge_hw_status status
;
2098 struct vxgedev
*vdev
= (struct vxgedev
*)dev_id
;
2100 vxge_debug_intr(VXGE_TRACE
, "%s:%d", __func__
, __LINE__
);
2103 hldev
= pci_get_drvdata(vdev
->pdev
);
2105 if (pci_channel_offline(vdev
->pdev
))
2108 if (unlikely(!is_vxge_card_up(vdev
)))
2111 status
= vxge_hw_device_begin_irq(hldev
, vdev
->exec_mode
, &reason
);
2112 if (status
== VXGE_HW_OK
) {
2113 vxge_hw_device_mask_all(hldev
);
2116 VXGE_HW_TITAN_GENERAL_INT_STATUS_VPATH_TRAFFIC_INT(
2117 vdev
->vpaths_deployed
>>
2118 (64 - VXGE_HW_MAX_VIRTUAL_PATHS
))) {
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__
);
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
);
2133 } else if (unlikely(status
== VXGE_HW_ERR_SLOT_FREEZE
))
2136 vxge_debug_intr(VXGE_TRACE
, "%s:%d Exiting...", __func__
, __LINE__
);
2140 #ifdef CONFIG_PCI_MSI
2143 vxge_tx_msix_handle(int irq
, void *dev_id
)
2145 struct vxge_fifo
*fifo
= (struct vxge_fifo
*)dev_id
;
2147 VXGE_COMPLETE_VPATH_TX(fifo
);
2153 vxge_rx_msix_napi_handle(int irq
, void *dev_id
)
2155 struct vxge_ring
*ring
= (struct vxge_ring
*)dev_id
;
2157 /* MSIX_IDX for Rx is 1 */
2158 vxge_hw_channel_msix_mask((struct __vxge_hw_channel
*)ring
->handle
,
2159 ring
->rx_vector_no
);
2161 napi_schedule(&ring
->napi
);
2166 vxge_alarm_msix_handle(int irq
, void *dev_id
)
2169 enum vxge_hw_status status
;
2170 struct vxge_vpath
*vpath
= (struct vxge_vpath
*)dev_id
;
2171 struct vxgedev
*vdev
= vpath
->vdev
;
2172 int msix_id
= (vpath
->handle
->vpath
->vp_id
*
2173 VXGE_HW_VPATH_MSIX_ACTIVE
) + VXGE_ALARM_MSIX_ID
;
2175 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
2176 vxge_hw_vpath_msix_mask(vdev
->vpaths
[i
].handle
, msix_id
);
2178 status
= vxge_hw_vpath_alarm_process(vdev
->vpaths
[i
].handle
,
2180 if (status
== VXGE_HW_OK
) {
2182 vxge_hw_vpath_msix_unmask(vdev
->vpaths
[i
].handle
,
2186 vxge_debug_intr(VXGE_ERR
,
2187 "%s: vxge_hw_vpath_alarm_process failed %x ",
2188 VXGE_DRIVER_NAME
, status
);
2193 static int vxge_alloc_msix(struct vxgedev
*vdev
)
2196 int msix_intr_vect
= 0, temp
;
2200 /* Tx/Rx MSIX Vectors count */
2201 vdev
->intr_cnt
= vdev
->no_of_vpath
* 2;
2203 /* Alarm MSIX Vectors count */
2206 vdev
->entries
= kcalloc(vdev
->intr_cnt
, sizeof(struct msix_entry
),
2208 if (!vdev
->entries
) {
2209 vxge_debug_init(VXGE_ERR
,
2210 "%s: memory allocation failed",
2213 goto alloc_entries_failed
;
2216 vdev
->vxge_entries
= kcalloc(vdev
->intr_cnt
,
2217 sizeof(struct vxge_msix_entry
),
2219 if (!vdev
->vxge_entries
) {
2220 vxge_debug_init(VXGE_ERR
, "%s: memory allocation failed",
2223 goto alloc_vxge_entries_failed
;
2226 for (i
= 0, j
= 0; i
< vdev
->no_of_vpath
; i
++) {
2228 msix_intr_vect
= i
* VXGE_HW_VPATH_MSIX_ACTIVE
;
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;
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;
2243 /* Initialize the alarm vector */
2244 vdev
->entries
[j
].entry
= VXGE_ALARM_MSIX_ID
;
2245 vdev
->vxge_entries
[j
].entry
= VXGE_ALARM_MSIX_ID
;
2246 vdev
->vxge_entries
[j
].in_use
= 0;
2248 ret
= pci_enable_msix(vdev
->pdev
, vdev
->entries
, vdev
->intr_cnt
);
2250 vxge_debug_init(VXGE_ERR
,
2251 "%s: MSI-X enable failed for %d vectors, ret: %d",
2252 VXGE_DRIVER_NAME
, vdev
->intr_cnt
, ret
);
2253 if ((max_config_vpath
!= VXGE_USE_DEFAULT
) || (ret
< 3)) {
2255 goto enable_msix_failed
;
2258 kfree(vdev
->entries
);
2259 kfree(vdev
->vxge_entries
);
2260 vdev
->entries
= NULL
;
2261 vdev
->vxge_entries
= NULL
;
2262 /* Try with less no of vector by reducing no of vpaths count */
2264 vxge_close_vpaths(vdev
, temp
);
2265 vdev
->no_of_vpath
= temp
;
2267 } else if (ret
< 0) {
2269 goto enable_msix_failed
;
2274 kfree(vdev
->vxge_entries
);
2275 alloc_vxge_entries_failed
:
2276 kfree(vdev
->entries
);
2277 alloc_entries_failed
:
2281 static int vxge_enable_msix(struct vxgedev
*vdev
)
2285 /* 0 - Tx, 1 - Rx */
2286 int tim_msix_id
[4] = {0, 1, 0, 0};
2290 /* allocate msix vectors */
2291 ret
= vxge_alloc_msix(vdev
);
2293 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
2294 struct vxge_vpath
*vpath
= &vdev
->vpaths
[i
];
2296 /* If fifo or ring are not enabled, the MSIX vector for
2297 * it should be set to 0.
2299 vpath
->ring
.rx_vector_no
= (vpath
->device_id
*
2300 VXGE_HW_VPATH_MSIX_ACTIVE
) + 1;
2302 vxge_hw_vpath_msix_set(vpath
->handle
, tim_msix_id
,
2303 VXGE_ALARM_MSIX_ID
);
2310 static void vxge_rem_msix_isr(struct vxgedev
*vdev
)
2314 for (intr_cnt
= 0; intr_cnt
< (vdev
->no_of_vpath
* 2 + 1);
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;
2324 kfree(vdev
->entries
);
2325 kfree(vdev
->vxge_entries
);
2326 vdev
->entries
= NULL
;
2327 vdev
->vxge_entries
= NULL
;
2329 if (vdev
->config
.intr_type
== MSI_X
)
2330 pci_disable_msix(vdev
->pdev
);
2334 static void vxge_rem_isr(struct vxgedev
*vdev
)
2336 struct __vxge_hw_device
*hldev
;
2337 hldev
= pci_get_drvdata(vdev
->pdev
);
2339 #ifdef CONFIG_PCI_MSI
2340 if (vdev
->config
.intr_type
== MSI_X
) {
2341 vxge_rem_msix_isr(vdev
);
2344 if (vdev
->config
.intr_type
== INTA
) {
2345 synchronize_irq(vdev
->pdev
->irq
);
2346 free_irq(vdev
->pdev
->irq
, vdev
);
2350 static int vxge_add_isr(struct vxgedev
*vdev
)
2353 #ifdef CONFIG_PCI_MSI
2354 int vp_idx
= 0, intr_idx
= 0, intr_cnt
= 0, msix_idx
= 0, irq_req
= 0;
2355 int pci_fun
= PCI_FUNC(vdev
->pdev
->devfn
);
2357 if (vdev
->config
.intr_type
== MSI_X
)
2358 ret
= vxge_enable_msix(vdev
);
2361 vxge_debug_init(VXGE_ERR
,
2362 "%s: Enabling MSI-X Failed", VXGE_DRIVER_NAME
);
2363 vxge_debug_init(VXGE_ERR
,
2364 "%s: Defaulting to INTA", VXGE_DRIVER_NAME
);
2365 vdev
->config
.intr_type
= INTA
;
2368 if (vdev
->config
.intr_type
== MSI_X
) {
2370 intr_idx
< (vdev
->no_of_vpath
*
2371 VXGE_HW_VPATH_MSIX_ACTIVE
); intr_idx
++) {
2373 msix_idx
= intr_idx
% VXGE_HW_VPATH_MSIX_ACTIVE
;
2378 snprintf(vdev
->desc
[intr_cnt
], VXGE_INTR_STRLEN
,
2379 "%s:vxge:MSI-X %d - Tx - fn:%d vpath:%d",
2381 vdev
->entries
[intr_cnt
].entry
,
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
;
2393 snprintf(vdev
->desc
[intr_cnt
], VXGE_INTR_STRLEN
,
2394 "%s:vxge:MSI-X %d - Rx - fn:%d vpath:%d",
2396 vdev
->entries
[intr_cnt
].entry
,
2399 vdev
->entries
[intr_cnt
].vector
,
2400 vxge_rx_msix_napi_handle
,
2402 vdev
->desc
[intr_cnt
],
2403 &vdev
->vpaths
[vp_idx
].ring
);
2404 vdev
->vxge_entries
[intr_cnt
].arg
=
2405 &vdev
->vpaths
[vp_idx
].ring
;
2411 vxge_debug_init(VXGE_ERR
,
2412 "%s: MSIX - %d Registration failed",
2413 vdev
->ndev
->name
, intr_cnt
);
2414 vxge_rem_msix_isr(vdev
);
2415 vdev
->config
.intr_type
= INTA
;
2416 vxge_debug_init(VXGE_ERR
,
2417 "%s: Defaulting to INTA"
2418 , vdev
->ndev
->name
);
2423 /* We requested for this msix interrupt */
2424 vdev
->vxge_entries
[intr_cnt
].in_use
= 1;
2425 msix_idx
+= vdev
->vpaths
[vp_idx
].device_id
*
2426 VXGE_HW_VPATH_MSIX_ACTIVE
;
2427 vxge_hw_vpath_msix_unmask(
2428 vdev
->vpaths
[vp_idx
].handle
,
2433 /* Point to next vpath handler */
2434 if (((intr_idx
+ 1) % VXGE_HW_VPATH_MSIX_ACTIVE
== 0) &&
2435 (vp_idx
< (vdev
->no_of_vpath
- 1)))
2439 intr_cnt
= vdev
->no_of_vpath
* 2;
2440 snprintf(vdev
->desc
[intr_cnt
], VXGE_INTR_STRLEN
,
2441 "%s:vxge:MSI-X %d - Alarm - fn:%d",
2443 vdev
->entries
[intr_cnt
].entry
,
2445 /* For Alarm interrupts */
2446 ret
= request_irq(vdev
->entries
[intr_cnt
].vector
,
2447 vxge_alarm_msix_handle
, 0,
2448 vdev
->desc
[intr_cnt
],
2451 vxge_debug_init(VXGE_ERR
,
2452 "%s: MSIX - %d Registration failed",
2453 vdev
->ndev
->name
, intr_cnt
);
2454 vxge_rem_msix_isr(vdev
);
2455 vdev
->config
.intr_type
= INTA
;
2456 vxge_debug_init(VXGE_ERR
,
2457 "%s: Defaulting to INTA",
2462 msix_idx
= (vdev
->vpaths
[0].handle
->vpath
->vp_id
*
2463 VXGE_HW_VPATH_MSIX_ACTIVE
) + VXGE_ALARM_MSIX_ID
;
2464 vxge_hw_vpath_msix_unmask(vdev
->vpaths
[vp_idx
].handle
,
2466 vdev
->vxge_entries
[intr_cnt
].in_use
= 1;
2467 vdev
->vxge_entries
[intr_cnt
].arg
= &vdev
->vpaths
[0];
2472 if (vdev
->config
.intr_type
== INTA
) {
2473 snprintf(vdev
->desc
[0], VXGE_INTR_STRLEN
,
2474 "%s:vxge:INTA", vdev
->ndev
->name
);
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
);
2479 ret
= request_irq((int) vdev
->pdev
->irq
,
2481 IRQF_SHARED
, vdev
->desc
[0], vdev
);
2483 vxge_debug_init(VXGE_ERR
,
2484 "%s %s-%d: ISR registration failed",
2485 VXGE_DRIVER_NAME
, "IRQ", vdev
->pdev
->irq
);
2488 vxge_debug_init(VXGE_TRACE
,
2489 "new %s-%d line allocated",
2490 "IRQ", vdev
->pdev
->irq
);
2496 static void vxge_poll_vp_reset(unsigned long data
)
2498 struct vxgedev
*vdev
= (struct vxgedev
*)data
;
2501 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
2502 if (test_bit(i
, &vdev
->vp_reset
)) {
2503 vxge_reset_vpath(vdev
, i
);
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
);
2512 mod_timer(&vdev
->vp_reset_timer
, jiffies
+ HZ
/ 2);
2515 static void vxge_poll_vp_lockup(unsigned long data
)
2517 struct vxgedev
*vdev
= (struct vxgedev
*)data
;
2518 enum vxge_hw_status status
= VXGE_HW_OK
;
2519 struct vxge_vpath
*vpath
;
2520 struct vxge_ring
*ring
;
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
);
2529 /* Did it received any packets last time */
2530 if ((VXGE_HW_FAIL
== status
) &&
2531 (VXGE_HW_FAIL
== ring
->last_status
)) {
2533 /* schedule vpath reset */
2534 if (!test_and_set_bit(i
, &vdev
->vp_reset
)) {
2535 vpath
= &vdev
->vpaths
[i
];
2537 /* disable interrupts for this vpath */
2538 vxge_vpath_intr_disable(vdev
, i
);
2540 /* stop the queue for this vpath */
2541 netif_tx_stop_queue(vpath
->fifo
.txq
);
2546 ring
->stats
.prev_rx_frms
= ring
->stats
.rx_frms
;
2547 ring
->last_status
= status
;
2550 /* Check every 1 milli second */
2551 mod_timer(&vdev
->vp_lockup_timer
, jiffies
+ HZ
/ 1000);
2556 * @dev: pointer to the device structure.
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.
2564 static int vxge_open(struct net_device
*dev
)
2566 enum vxge_hw_status status
;
2567 struct vxgedev
*vdev
;
2568 struct __vxge_hw_device
*hldev
;
2569 struct vxge_vpath
*vpath
;
2572 u64 val64
, function_mode
;
2574 vxge_debug_entryexit(VXGE_TRACE
,
2575 "%s: %s:%d", dev
->name
, __func__
, __LINE__
);
2577 vdev
= netdev_priv(dev
);
2578 hldev
= pci_get_drvdata(vdev
->pdev
);
2579 function_mode
= vdev
->config
.device_hw_info
.function_mode
;
2581 /* make sure you have link off by default every time Nic is
2583 netif_carrier_off(dev
);
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
);
2594 vdev
->mtu
= dev
->mtu
;
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
);
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
);
2608 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
2609 vpath
= &vdev
->vpaths
[i
];
2610 vpath
->ring
.napi_p
= &vdev
->napi
;
2613 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
2614 vpath
= &vdev
->vpaths
[i
];
2615 netif_napi_add(dev
, &vpath
->ring
.napi
,
2616 vxge_poll_msix
, vdev
->config
.napi_weight
);
2617 napi_enable(&vpath
->ring
.napi
);
2618 vpath
->ring
.napi_p
= &vpath
->ring
.napi
;
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",
2633 printk(KERN_INFO
"%s: Receive Hashing Offload %s\n", dev
->name
,
2634 hldev
->config
.rth_en
? "enabled" : "disabled");
2636 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
2637 vpath
= &vdev
->vpaths
[i
];
2639 /* set initial mtu before enabling the device */
2640 status
= vxge_hw_vpath_mtu_set(vpath
->handle
, vdev
->mtu
);
2641 if (status
!= VXGE_HW_OK
) {
2642 vxge_debug_init(VXGE_ERR
,
2643 "%s: fatal: can not set new MTU", dev
->name
);
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
);
2654 /* Restore the DA, VID table and also multicast and promiscuous mode
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
);
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__
);
2671 /* Enable vpath to sniff all unicast/multicast traffic that not
2672 * addressed to them. We allow promiscous mode for PF only
2676 for (i
= 0; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++)
2677 val64
|= VXGE_HW_RXMAC_AUTHORIZE_ALL_ADDR_VP(i
);
2679 vxge_hw_mgmt_reg_write(vdev
->devh
,
2680 vxge_hw_mgmt_reg_type_mrpcim
,
2682 (ulong
)offsetof(struct vxge_hw_mrpcim_reg
,
2683 rxmac_authorize_all_addr
),
2686 vxge_hw_mgmt_reg_write(vdev
->devh
,
2687 vxge_hw_mgmt_reg_type_mrpcim
,
2689 (ulong
)offsetof(struct vxge_hw_mrpcim_reg
,
2690 rxmac_authorize_all_vid
),
2693 vxge_set_multicast(dev
);
2695 /* Enabling Bcast and mcast for all vpath */
2696 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
2697 vpath
= &vdev
->vpaths
[i
];
2698 status
= vxge_hw_vpath_bcast_enable(vpath
->handle
);
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
) {
2704 status
= vxge_hw_vpath_mcast_enable(vpath
->handle
);
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
);
2712 vxge_hw_device_setpause_data(vdev
->devh
, 0,
2713 vdev
->config
.tx_pause_enable
,
2714 vdev
->config
.rx_pause_enable
);
2716 if (vdev
->vp_reset_timer
.function
== NULL
)
2717 vxge_os_timer(vdev
->vp_reset_timer
,
2718 vxge_poll_vp_reset
, vdev
, (HZ
/2));
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
,
2725 set_bit(__VXGE_STATE_CARD_UP
, &vdev
->state
);
2729 if (vxge_hw_device_link_state_get(vdev
->devh
) == VXGE_HW_LINK_UP
) {
2730 netif_carrier_on(vdev
->ndev
);
2731 netdev_notice(vdev
->ndev
, "Link Up\n");
2732 vdev
->stats
.link_up
++;
2735 vxge_hw_device_intr_enable(vdev
->devh
);
2739 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
2740 vpath
= &vdev
->vpaths
[i
];
2742 vxge_hw_vpath_enable(vpath
->handle
);
2744 vxge_hw_vpath_rx_doorbell_init(vpath
->handle
);
2747 netif_tx_start_all_queues(vdev
->ndev
);
2754 if (vdev
->config
.intr_type
!= MSI_X
)
2755 napi_disable(&vdev
->napi
);
2757 for (i
= 0; i
< vdev
->no_of_vpath
; i
++)
2758 napi_disable(&vdev
->vpaths
[i
].ring
.napi
);
2762 vxge_close_vpaths(vdev
, 0);
2764 vxge_debug_entryexit(VXGE_TRACE
,
2765 "%s: %s:%d Exiting...",
2766 dev
->name
, __func__
, __LINE__
);
2770 /* Loop throught the mac address list and delete all the entries */
2771 static void vxge_free_mac_add_list(struct vxge_vpath
*vpath
)
2774 struct list_head
*entry
, *next
;
2775 if (list_empty(&vpath
->mac_addr_list
))
2778 list_for_each_safe(entry
, next
, &vpath
->mac_addr_list
) {
2780 kfree((struct vxge_mac_addrs
*)entry
);
2784 static void vxge_napi_del_all(struct vxgedev
*vdev
)
2787 if (vdev
->config
.intr_type
!= MSI_X
)
2788 netif_napi_del(&vdev
->napi
);
2790 for (i
= 0; i
< vdev
->no_of_vpath
; i
++)
2791 netif_napi_del(&vdev
->vpaths
[i
].ring
.napi
);
2795 static int do_vxge_close(struct net_device
*dev
, int do_io
)
2797 enum vxge_hw_status status
;
2798 struct vxgedev
*vdev
;
2799 struct __vxge_hw_device
*hldev
;
2801 u64 val64
, vpath_vector
;
2802 vxge_debug_entryexit(VXGE_TRACE
, "%s: %s:%d",
2803 dev
->name
, __func__
, __LINE__
);
2805 vdev
= netdev_priv(dev
);
2806 hldev
= pci_get_drvdata(vdev
->pdev
);
2808 if (unlikely(!is_vxge_card_up(vdev
)))
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
))
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
,
2823 struct vxge_hw_mrpcim_reg
,
2824 rts_mgr_cbasin_cfg
),
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
,
2832 struct vxge_hw_mrpcim_reg
,
2833 rts_mgr_cbasin_cfg
),
2837 /* Remove the function 0 from promiscous mode */
2838 vxge_hw_mgmt_reg_write(vdev
->devh
,
2839 vxge_hw_mgmt_reg_type_mrpcim
,
2841 (ulong
)offsetof(struct vxge_hw_mrpcim_reg
,
2842 rxmac_authorize_all_addr
),
2845 vxge_hw_mgmt_reg_write(vdev
->devh
,
2846 vxge_hw_mgmt_reg_type_mrpcim
,
2848 (ulong
)offsetof(struct vxge_hw_mrpcim_reg
,
2849 rxmac_authorize_all_vid
),
2856 del_timer_sync(&vdev
->vp_lockup_timer
);
2858 del_timer_sync(&vdev
->vp_reset_timer
);
2861 vxge_hw_device_wait_receive_idle(hldev
);
2863 clear_bit(__VXGE_STATE_CARD_UP
, &vdev
->state
);
2866 if (vdev
->config
.intr_type
!= MSI_X
)
2867 napi_disable(&vdev
->napi
);
2869 for (i
= 0; i
< vdev
->no_of_vpath
; i
++)
2870 napi_disable(&vdev
->vpaths
[i
].ring
.napi
);
2873 netif_carrier_off(vdev
->ndev
);
2874 netdev_notice(vdev
->ndev
, "Link Down\n");
2875 netif_tx_stop_all_queues(vdev
->ndev
);
2877 /* Note that at this point xmit() is stopped by upper layer */
2879 vxge_hw_device_intr_disable(vdev
->devh
);
2883 vxge_napi_del_all(vdev
);
2886 vxge_reset_all_vpaths(vdev
);
2888 vxge_close_vpaths(vdev
, 0);
2890 vxge_debug_entryexit(VXGE_TRACE
,
2891 "%s: %s:%d Exiting...", dev
->name
, __func__
, __LINE__
);
2893 clear_bit(__VXGE_STATE_RESET_CARD
, &vdev
->state
);
2900 * @dev: device pointer.
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.
2909 static int vxge_close(struct net_device
*dev
)
2911 do_vxge_close(dev
, 1);
2917 * @dev: net device pointer.
2918 * @new_mtu :the new MTU size for the device.
2920 * A driver entry point to change MTU size for the device. Before changing
2921 * the MTU the device must be stopped.
2923 static int vxge_change_mtu(struct net_device
*dev
, int new_mtu
)
2925 struct vxgedev
*vdev
= netdev_priv(dev
);
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
);
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() */
2939 vxge_debug_init(vdev
->level_err
,
2940 "%s", "device is down on MTU change");
2944 vxge_debug_init(vdev
->level_trace
,
2945 "trying to apply new MTU %d", new_mtu
);
2947 if (vxge_close(dev
))
2951 vdev
->mtu
= new_mtu
;
2956 vxge_debug_init(vdev
->level_trace
,
2957 "%s: MTU changed to %d", vdev
->ndev
->name
, new_mtu
);
2959 vxge_debug_entryexit(vdev
->level_trace
,
2960 "%s:%d Exiting...", __func__
, __LINE__
);
2967 * @dev: pointer to the device structure
2968 * @stats: pointer to struct rtnl_link_stats64
2971 static struct rtnl_link_stats64
*
2972 vxge_get_stats64(struct net_device
*dev
, struct rtnl_link_stats64
*net_stats
)
2974 struct vxgedev
*vdev
= netdev_priv(dev
);
2977 /* net_stats already zeroed by caller */
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
;
2983 net_stats
->rx_dropped
+= vdev
->vpaths
[k
].ring
.stats
.rx_dropped
;
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
;
2992 static enum vxge_hw_status
vxge_timestamp_config(struct vxgedev
*vdev
,
2995 enum vxge_hw_status status
;
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.
3004 val64
= VXGE_HW_XMAC_TIMESTAMP_EN
|
3005 VXGE_HW_XMAC_TIMESTAMP_USE_LINK_ID(0) |
3006 VXGE_HW_XMAC_TIMESTAMP_INTERVAL(0);
3010 status
= vxge_hw_mgmt_reg_write(vdev
->devh
,
3011 vxge_hw_mgmt_reg_type_mrpcim
,
3013 offsetof(struct vxge_hw_mrpcim_reg
,
3016 vxge_hw_device_flush_io(vdev
->devh
);
3020 static int vxge_hwtstamp_ioctl(struct vxgedev
*vdev
, void __user
*data
)
3022 struct hwtstamp_config config
;
3023 enum vxge_hw_status status
;
3026 if (copy_from_user(&config
, data
, sizeof(config
)))
3029 /* reserved for future extensions */
3033 /* Transmit HW Timestamp not supported */
3034 switch (config
.tx_type
) {
3035 case HWTSTAMP_TX_OFF
:
3037 case HWTSTAMP_TX_ON
:
3042 switch (config
.rx_filter
) {
3043 case HWTSTAMP_FILTER_NONE
:
3044 status
= vxge_timestamp_config(vdev
, 0);
3045 if (status
!= VXGE_HW_OK
)
3049 config
.rx_filter
= HWTSTAMP_FILTER_NONE
;
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
)
3071 config
.rx_filter
= HWTSTAMP_FILTER_ALL
;
3078 for (i
= 0; i
< vdev
->no_of_vpath
; i
++)
3079 vdev
->vpaths
[i
].ring
.rx_hwts
= vdev
->rx_hwts
;
3081 if (copy_to_user(data
, &config
, sizeof(config
)))
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.
3095 * Entry point for the Ioctl.
3097 static int vxge_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
3099 struct vxgedev
*vdev
= netdev_priv(dev
);
3104 ret
= vxge_hwtstamp_ioctl(vdev
, rq
->ifr_data
);
3117 * @dev: pointer to net device structure
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.
3123 static void vxge_tx_watchdog(struct net_device
*dev
)
3125 struct vxgedev
*vdev
;
3127 vxge_debug_entryexit(VXGE_TRACE
, "%s:%d", __func__
, __LINE__
);
3129 vdev
= netdev_priv(dev
);
3131 vdev
->cric_err_event
= VXGE_HW_EVENT_RESET_START
;
3133 schedule_work(&vdev
->reset_task
);
3134 vxge_debug_entryexit(VXGE_TRACE
,
3135 "%s:%d Exiting...", __func__
, __LINE__
);
3139 * vxge_vlan_rx_register
3140 * @dev: net device pointer.
3143 * Vlan group registration
3146 vxge_vlan_rx_register(struct net_device
*dev
, struct vlan_group
*grp
)
3148 struct vxgedev
*vdev
;
3149 struct vxge_vpath
*vpath
;
3152 enum vxge_hw_status status
;
3155 vxge_debug_entryexit(VXGE_TRACE
, "%s:%d", __func__
, __LINE__
);
3157 vdev
= netdev_priv(dev
);
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
);
3164 while (status
== VXGE_HW_OK
) {
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
)
3172 vxge_hw_vpath_vid_delete(vpath
->handle
, vid
);
3175 /* Get the next vlan to be deleted */
3176 vpath
= &vdev
->vpaths
[0];
3177 status
= vxge_hw_vpath_vid_get(vpath
->handle
, &vid
);
3183 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
3184 if (vdev
->vpaths
[i
].is_configured
)
3185 vdev
->vpaths
[i
].ring
.vlgrp
= grp
;
3188 vxge_debug_entryexit(VXGE_TRACE
,
3189 "%s:%d Exiting...", __func__
, __LINE__
);
3193 * vxge_vlan_rx_add_vid
3194 * @dev: net device pointer.
3197 * Add the vlan id to the devices vlan id table
3200 vxge_vlan_rx_add_vid(struct net_device
*dev
, unsigned short vid
)
3202 struct vxgedev
*vdev
;
3203 struct vxge_vpath
*vpath
;
3206 vdev
= netdev_priv(dev
);
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
)
3213 vxge_hw_vpath_vid_add(vpath
->handle
, vid
);
3218 * vxge_vlan_rx_add_vid
3219 * @dev: net device pointer.
3222 * Remove the vlan id from the device's vlan id table
3225 vxge_vlan_rx_kill_vid(struct net_device
*dev
, unsigned short vid
)
3227 struct vxgedev
*vdev
;
3228 struct vxge_vpath
*vpath
;
3231 vxge_debug_entryexit(VXGE_TRACE
, "%s:%d", __func__
, __LINE__
);
3233 vdev
= netdev_priv(dev
);
3235 vlan_group_set_device(vdev
->vlgrp
, vid
, NULL
);
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
)
3242 vxge_hw_vpath_vid_delete(vpath
->handle
, vid
);
3244 vxge_debug_entryexit(VXGE_TRACE
,
3245 "%s:%d Exiting...", __func__
, __LINE__
);
3248 static const struct net_device_ops vxge_netdev_ops
= {
3249 .ndo_open
= vxge_open
,
3250 .ndo_stop
= vxge_close
,
3251 .ndo_get_stats64
= vxge_get_stats64
,
3252 .ndo_start_xmit
= vxge_xmit
,
3253 .ndo_validate_addr
= eth_validate_addr
,
3254 .ndo_set_multicast_list
= vxge_set_multicast
,
3255 .ndo_do_ioctl
= vxge_ioctl
,
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
,
3261 .ndo_tx_timeout
= vxge_tx_watchdog
,
3262 #ifdef CONFIG_NET_POLL_CONTROLLER
3263 .ndo_poll_controller
= vxge_netpoll
,
3267 static int __devinit
vxge_device_revision(struct vxgedev
*vdev
)
3272 ret
= pci_read_config_byte(vdev
->pdev
, PCI_REVISION_ID
, &revision
);
3276 vdev
->titan1
= (revision
== VXGE_HW_TITAN1_PCI_REVISION
);
3280 static 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
)
3285 struct net_device
*ndev
;
3286 enum vxge_hw_status status
= VXGE_HW_OK
;
3287 struct vxgedev
*vdev
;
3288 int ret
= 0, no_of_queue
= 1;
3292 if (config
->tx_steering_type
)
3293 no_of_queue
= no_of_vpath
;
3295 ndev
= alloc_etherdev_mq(sizeof(struct vxgedev
),
3299 vxge_hw_device_trace_level_get(hldev
),
3300 "%s : device allocation failed", __func__
);
3305 vxge_debug_entryexit(
3306 vxge_hw_device_trace_level_get(hldev
),
3307 "%s: %s:%d Entering...",
3308 ndev
->name
, __func__
, __LINE__
);
3310 vdev
= netdev_priv(ndev
);
3311 memset(vdev
, 0, sizeof(struct vxgedev
));
3315 vdev
->pdev
= hldev
->pdev
;
3316 memcpy(&vdev
->config
, config
, sizeof(struct vxge_config
));
3317 vdev
->rx_csum
= 1; /* Enable Rx CSUM by default. */
3320 ret
= vxge_device_revision(vdev
);
3324 SET_NETDEV_DEV(ndev
, &vdev
->pdev
->dev
);
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
;
3332 ndev
->netdev_ops
= &vxge_netdev_ops
;
3334 ndev
->watchdog_timeo
= VXGE_LL_WATCH_DOG_TIMEOUT
;
3335 INIT_WORK(&vdev
->reset_task
, vxge_reset
);
3337 vxge_initialize_ethtool_ops(ndev
);
3339 if (vdev
->config
.rth_steering
!= NO_STEERING
) {
3340 ndev
->features
|= NETIF_F_RXHASH
;
3341 hldev
->config
.rth_en
= VXGE_HW_RTH_ENABLE
;
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",
3355 ndev
->features
|= NETIF_F_SG
;
3357 ndev
->features
|= NETIF_F_IP_CSUM
| NETIF_F_IPV6_CSUM
;
3358 vxge_debug_init(vxge_hw_device_trace_level_get(hldev
),
3359 "%s : checksuming enabled", __func__
);
3362 ndev
->features
|= NETIF_F_HIGHDMA
;
3363 vxge_debug_init(vxge_hw_device_trace_level_get(hldev
),
3364 "%s : using High DMA", __func__
);
3367 ndev
->features
|= NETIF_F_TSO
| NETIF_F_TSO6
;
3369 if (vdev
->config
.gro_enable
)
3370 ndev
->features
|= NETIF_F_GRO
;
3372 if (register_netdev(ndev
)) {
3373 vxge_debug_init(vxge_hw_device_trace_level_get(hldev
),
3374 "%s: %s : device registration failed!",
3375 ndev
->name
, __func__
);
3380 /* Set the factory defined MAC address initially */
3381 ndev
->addr_len
= ETH_ALEN
;
3383 /* Make Link state as off at this point, when the Link change
3384 * interrupt comes the state will be automatically changed to
3387 netif_carrier_off(ndev
);
3389 vxge_debug_init(vxge_hw_device_trace_level_get(hldev
),
3390 "%s: Ethernet device registered",
3396 /* Resetting the Device stats */
3397 status
= vxge_hw_mrpcim_stats_access(
3399 VXGE_HW_STATS_OP_CLEAR_ALL_STATS
,
3404 if (status
== VXGE_HW_ERR_PRIVILAGED_OPEARATION
)
3406 vxge_hw_device_trace_level_get(hldev
),
3407 "%s: device stats clear returns"
3408 "VXGE_HW_ERR_PRIVILAGED_OPEARATION", ndev
->name
);
3410 vxge_debug_entryexit(vxge_hw_device_trace_level_get(hldev
),
3411 "%s: %s:%d Exiting...",
3412 ndev
->name
, __func__
, __LINE__
);
3416 kfree(vdev
->vpaths
);
3424 * vxge_device_unregister
3426 * This function will unregister and free network device
3428 static void vxge_device_unregister(struct __vxge_hw_device
*hldev
)
3430 struct vxgedev
*vdev
;
3431 struct net_device
*dev
;
3435 vdev
= netdev_priv(dev
);
3437 vxge_debug_entryexit(vdev
->level_trace
, "%s: %s:%d", vdev
->ndev
->name
,
3438 __func__
, __LINE__
);
3440 strncpy(buf
, dev
->name
, IFNAMSIZ
);
3442 /* in 2.6 will call stop() if device is up */
3443 unregister_netdev(dev
);
3445 flush_scheduled_work();
3447 vxge_debug_init(vdev
->level_trace
, "%s: ethernet device unregistered",
3449 vxge_debug_entryexit(vdev
->level_trace
, "%s: %s:%d Exiting...", buf
,
3450 __func__
, __LINE__
);
3454 * vxge_callback_crit_err
3456 * This function is called by the alarm handler in interrupt context.
3457 * Driver must analyze it based on the event type.
3460 vxge_callback_crit_err(struct __vxge_hw_device
*hldev
,
3461 enum vxge_hw_event type
, u64 vp_id
)
3463 struct net_device
*dev
= hldev
->ndev
;
3464 struct vxgedev
*vdev
= netdev_priv(dev
);
3465 struct vxge_vpath
*vpath
= NULL
;
3468 vxge_debug_entryexit(vdev
->level_trace
,
3469 "%s: %s:%d", vdev
->ndev
->name
, __func__
, __LINE__
);
3471 /* Note: This event type should be used for device wide
3472 * indications only - Serious errors, Slot freeze and critical errors
3474 vdev
->cric_err_event
= type
;
3476 for (vpath_idx
= 0; vpath_idx
< vdev
->no_of_vpath
; vpath_idx
++) {
3477 vpath
= &vdev
->vpaths
[vpath_idx
];
3478 if (vpath
->device_id
== vp_id
)
3482 if (!test_bit(__VXGE_STATE_RESET_CARD
, &vdev
->state
)) {
3483 if (type
== VXGE_HW_EVENT_SLOT_FREEZE
) {
3484 vxge_debug_init(VXGE_ERR
,
3485 "%s: Slot is frozen", vdev
->ndev
->name
);
3486 } else if (type
== VXGE_HW_EVENT_SERR
) {
3487 vxge_debug_init(VXGE_ERR
,
3488 "%s: Encountered Serious Error",
3490 } else if (type
== VXGE_HW_EVENT_CRITICAL_ERR
)
3491 vxge_debug_init(VXGE_ERR
,
3492 "%s: Encountered Critical Error",
3496 if ((type
== VXGE_HW_EVENT_SERR
) ||
3497 (type
== VXGE_HW_EVENT_SLOT_FREEZE
)) {
3498 if (unlikely(vdev
->exec_mode
))
3499 clear_bit(__VXGE_STATE_CARD_UP
, &vdev
->state
);
3500 } else if (type
== VXGE_HW_EVENT_CRITICAL_ERR
) {
3501 vxge_hw_device_mask_all(hldev
);
3502 if (unlikely(vdev
->exec_mode
))
3503 clear_bit(__VXGE_STATE_CARD_UP
, &vdev
->state
);
3504 } else if ((type
== VXGE_HW_EVENT_FIFO_ERR
) ||
3505 (type
== VXGE_HW_EVENT_VPATH_ERR
)) {
3507 if (unlikely(vdev
->exec_mode
))
3508 clear_bit(__VXGE_STATE_CARD_UP
, &vdev
->state
);
3510 /* check if this vpath is already set for reset */
3511 if (!test_and_set_bit(vpath_idx
, &vdev
->vp_reset
)) {
3513 /* disable interrupts for this vpath */
3514 vxge_vpath_intr_disable(vdev
, vpath_idx
);
3516 /* stop the queue for this vpath */
3517 netif_tx_stop_queue(vpath
->fifo
.txq
);
3522 vxge_debug_entryexit(vdev
->level_trace
,
3523 "%s: %s:%d Exiting...",
3524 vdev
->ndev
->name
, __func__
, __LINE__
);
3527 static void verify_bandwidth(void)
3529 int i
, band_width
, total
= 0, equal_priority
= 0;
3531 /* 1. If user enters 0 for some fifo, give equal priority to all */
3532 for (i
= 0; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++) {
3533 if (bw_percentage
[i
] == 0) {
3539 if (!equal_priority
) {
3540 /* 2. If sum exceeds 100, give equal priority to all */
3541 for (i
= 0; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++) {
3542 if (bw_percentage
[i
] == 0xFF)
3545 total
+= bw_percentage
[i
];
3546 if (total
> VXGE_HW_VPATH_BANDWIDTH_MAX
) {
3553 if (!equal_priority
) {
3554 /* Is all the bandwidth consumed? */
3555 if (total
< VXGE_HW_VPATH_BANDWIDTH_MAX
) {
3556 if (i
< VXGE_HW_MAX_VIRTUAL_PATHS
) {
3557 /* Split rest of bw equally among next VPs*/
3559 (VXGE_HW_VPATH_BANDWIDTH_MAX
- total
) /
3560 (VXGE_HW_MAX_VIRTUAL_PATHS
- i
);
3561 if (band_width
< 2) /* min of 2% */
3564 for (; i
< VXGE_HW_MAX_VIRTUAL_PATHS
;
3570 } else if (i
< VXGE_HW_MAX_VIRTUAL_PATHS
)
3574 if (equal_priority
) {
3575 vxge_debug_init(VXGE_ERR
,
3576 "%s: Assigning equal bandwidth to all the vpaths",
3578 bw_percentage
[0] = VXGE_HW_VPATH_BANDWIDTH_MAX
/
3579 VXGE_HW_MAX_VIRTUAL_PATHS
;
3580 for (i
= 1; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++)
3581 bw_percentage
[i
] = bw_percentage
[0];
3586 * Vpath configuration
3588 static int __devinit
vxge_config_vpaths(
3589 struct vxge_hw_device_config
*device_config
,
3590 u64 vpath_mask
, struct vxge_config
*config_param
)
3592 int i
, no_of_vpaths
= 0, default_no_vpath
= 0, temp
;
3593 u32 txdl_size
, txdl_per_memblock
;
3595 temp
= driver_config
->vpath_per_dev
;
3596 if ((driver_config
->vpath_per_dev
== VXGE_USE_DEFAULT
) &&
3597 (max_config_dev
== VXGE_MAX_CONFIG_DEV
)) {
3598 /* No more CPU. Return vpath number as zero.*/
3599 if (driver_config
->g_no_cpus
== -1)
3602 if (!driver_config
->g_no_cpus
)
3603 driver_config
->g_no_cpus
= num_online_cpus();
3605 driver_config
->vpath_per_dev
= driver_config
->g_no_cpus
>> 1;
3606 if (!driver_config
->vpath_per_dev
)
3607 driver_config
->vpath_per_dev
= 1;
3609 for (i
= 0; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++)
3610 if (!vxge_bVALn(vpath_mask
, i
, 1))
3614 if (default_no_vpath
< driver_config
->vpath_per_dev
)
3615 driver_config
->vpath_per_dev
= default_no_vpath
;
3617 driver_config
->g_no_cpus
= driver_config
->g_no_cpus
-
3618 (driver_config
->vpath_per_dev
* 2);
3619 if (driver_config
->g_no_cpus
<= 0)
3620 driver_config
->g_no_cpus
= -1;
3623 if (driver_config
->vpath_per_dev
== 1) {
3624 vxge_debug_ll_config(VXGE_TRACE
,
3625 "%s: Disable tx and rx steering, "
3626 "as single vpath is configured", VXGE_DRIVER_NAME
);
3627 config_param
->rth_steering
= NO_STEERING
;
3628 config_param
->tx_steering_type
= NO_STEERING
;
3629 device_config
->rth_en
= 0;
3632 /* configure bandwidth */
3633 for (i
= 0; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++)
3634 device_config
->vp_config
[i
].min_bandwidth
= bw_percentage
[i
];
3636 for (i
= 0; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++) {
3637 device_config
->vp_config
[i
].vp_id
= i
;
3638 device_config
->vp_config
[i
].mtu
= VXGE_HW_DEFAULT_MTU
;
3639 if (no_of_vpaths
< driver_config
->vpath_per_dev
) {
3640 if (!vxge_bVALn(vpath_mask
, i
, 1)) {
3641 vxge_debug_ll_config(VXGE_TRACE
,
3642 "%s: vpath: %d is not available",
3643 VXGE_DRIVER_NAME
, i
);
3646 vxge_debug_ll_config(VXGE_TRACE
,
3647 "%s: vpath: %d available",
3648 VXGE_DRIVER_NAME
, i
);
3652 vxge_debug_ll_config(VXGE_TRACE
,
3653 "%s: vpath: %d is not configured, "
3654 "max_config_vpath exceeded",
3655 VXGE_DRIVER_NAME
, i
);
3659 /* Configure Tx fifo's */
3660 device_config
->vp_config
[i
].fifo
.enable
=
3661 VXGE_HW_FIFO_ENABLE
;
3662 device_config
->vp_config
[i
].fifo
.max_frags
=
3664 device_config
->vp_config
[i
].fifo
.memblock_size
=
3665 VXGE_HW_MIN_FIFO_MEMBLOCK_SIZE
;
3667 txdl_size
= device_config
->vp_config
[i
].fifo
.max_frags
*
3668 sizeof(struct vxge_hw_fifo_txd
);
3669 txdl_per_memblock
= VXGE_HW_MIN_FIFO_MEMBLOCK_SIZE
/ txdl_size
;
3671 device_config
->vp_config
[i
].fifo
.fifo_blocks
=
3672 ((VXGE_DEF_FIFO_LENGTH
- 1) / txdl_per_memblock
) + 1;
3674 device_config
->vp_config
[i
].fifo
.intr
=
3675 VXGE_HW_FIFO_QUEUE_INTR_DISABLE
;
3677 /* Configure tti properties */
3678 device_config
->vp_config
[i
].tti
.intr_enable
=
3679 VXGE_HW_TIM_INTR_ENABLE
;
3681 device_config
->vp_config
[i
].tti
.btimer_val
=
3682 (VXGE_TTI_BTIMER_VAL
* 1000) / 272;
3684 device_config
->vp_config
[i
].tti
.timer_ac_en
=
3685 VXGE_HW_TIM_TIMER_AC_ENABLE
;
3687 /* For msi-x with napi (each vector has a handler of its own) -
3688 * Set CI to OFF for all vpaths
3690 device_config
->vp_config
[i
].tti
.timer_ci_en
=
3691 VXGE_HW_TIM_TIMER_CI_DISABLE
;
3693 device_config
->vp_config
[i
].tti
.timer_ri_en
=
3694 VXGE_HW_TIM_TIMER_RI_DISABLE
;
3696 device_config
->vp_config
[i
].tti
.util_sel
=
3697 VXGE_HW_TIM_UTIL_SEL_LEGACY_TX_NET_UTIL
;
3699 device_config
->vp_config
[i
].tti
.ltimer_val
=
3700 (VXGE_TTI_LTIMER_VAL
* 1000) / 272;
3702 device_config
->vp_config
[i
].tti
.rtimer_val
=
3703 (VXGE_TTI_RTIMER_VAL
* 1000) / 272;
3705 device_config
->vp_config
[i
].tti
.urange_a
= TTI_TX_URANGE_A
;
3706 device_config
->vp_config
[i
].tti
.urange_b
= TTI_TX_URANGE_B
;
3707 device_config
->vp_config
[i
].tti
.urange_c
= TTI_TX_URANGE_C
;
3708 device_config
->vp_config
[i
].tti
.uec_a
= TTI_TX_UFC_A
;
3709 device_config
->vp_config
[i
].tti
.uec_b
= TTI_TX_UFC_B
;
3710 device_config
->vp_config
[i
].tti
.uec_c
= TTI_TX_UFC_C
;
3711 device_config
->vp_config
[i
].tti
.uec_d
= TTI_TX_UFC_D
;
3713 /* Configure Rx rings */
3714 device_config
->vp_config
[i
].ring
.enable
=
3715 VXGE_HW_RING_ENABLE
;
3717 device_config
->vp_config
[i
].ring
.ring_blocks
=
3718 VXGE_HW_DEF_RING_BLOCKS
;
3720 device_config
->vp_config
[i
].ring
.buffer_mode
=
3721 VXGE_HW_RING_RXD_BUFFER_MODE_1
;
3723 device_config
->vp_config
[i
].ring
.rxds_limit
=
3724 VXGE_HW_DEF_RING_RXDS_LIMIT
;
3726 device_config
->vp_config
[i
].ring
.scatter_mode
=
3727 VXGE_HW_RING_SCATTER_MODE_A
;
3729 /* Configure rti properties */
3730 device_config
->vp_config
[i
].rti
.intr_enable
=
3731 VXGE_HW_TIM_INTR_ENABLE
;
3733 device_config
->vp_config
[i
].rti
.btimer_val
=
3734 (VXGE_RTI_BTIMER_VAL
* 1000)/272;
3736 device_config
->vp_config
[i
].rti
.timer_ac_en
=
3737 VXGE_HW_TIM_TIMER_AC_ENABLE
;
3739 device_config
->vp_config
[i
].rti
.timer_ci_en
=
3740 VXGE_HW_TIM_TIMER_CI_DISABLE
;
3742 device_config
->vp_config
[i
].rti
.timer_ri_en
=
3743 VXGE_HW_TIM_TIMER_RI_DISABLE
;
3745 device_config
->vp_config
[i
].rti
.util_sel
=
3746 VXGE_HW_TIM_UTIL_SEL_LEGACY_RX_NET_UTIL
;
3748 device_config
->vp_config
[i
].rti
.urange_a
=
3750 device_config
->vp_config
[i
].rti
.urange_b
=
3752 device_config
->vp_config
[i
].rti
.urange_c
=
3754 device_config
->vp_config
[i
].rti
.uec_a
= RTI_RX_UFC_A
;
3755 device_config
->vp_config
[i
].rti
.uec_b
= RTI_RX_UFC_B
;
3756 device_config
->vp_config
[i
].rti
.uec_c
= RTI_RX_UFC_C
;
3757 device_config
->vp_config
[i
].rti
.uec_d
= RTI_RX_UFC_D
;
3759 device_config
->vp_config
[i
].rti
.rtimer_val
=
3760 (VXGE_RTI_RTIMER_VAL
* 1000) / 272;
3762 device_config
->vp_config
[i
].rti
.ltimer_val
=
3763 (VXGE_RTI_LTIMER_VAL
* 1000) / 272;
3765 device_config
->vp_config
[i
].rpa_strip_vlan_tag
=
3769 driver_config
->vpath_per_dev
= temp
;
3770 return no_of_vpaths
;
3773 /* initialize device configuratrions */
3774 static void __devinit
vxge_device_config_init(
3775 struct vxge_hw_device_config
*device_config
,
3778 /* Used for CQRQ/SRQ. */
3779 device_config
->dma_blockpool_initial
=
3780 VXGE_HW_INITIAL_DMA_BLOCK_POOL_SIZE
;
3782 device_config
->dma_blockpool_max
=
3783 VXGE_HW_MAX_DMA_BLOCK_POOL_SIZE
;
3785 if (max_mac_vpath
> VXGE_MAX_MAC_ADDR_COUNT
)
3786 max_mac_vpath
= VXGE_MAX_MAC_ADDR_COUNT
;
3788 #ifndef CONFIG_PCI_MSI
3789 vxge_debug_init(VXGE_ERR
,
3790 "%s: This Kernel does not support "
3791 "MSI-X. Defaulting to INTA", VXGE_DRIVER_NAME
);
3795 /* Configure whether MSI-X or IRQL. */
3796 switch (*intr_type
) {
3798 device_config
->intr_mode
= VXGE_HW_INTR_MODE_IRQLINE
;
3802 device_config
->intr_mode
= VXGE_HW_INTR_MODE_MSIX
;
3806 /* Timer period between device poll */
3807 device_config
->device_poll_millis
= VXGE_TIMER_DELAY
;
3809 /* Configure mac based steering. */
3810 device_config
->rts_mac_en
= addr_learn_en
;
3812 /* Configure Vpaths */
3813 device_config
->rth_it_type
= VXGE_HW_RTH_IT_TYPE_MULTI_IT
;
3815 vxge_debug_ll_config(VXGE_TRACE
, "%s : Device Config Params ",
3817 vxge_debug_ll_config(VXGE_TRACE
, "intr_mode : %d",
3818 device_config
->intr_mode
);
3819 vxge_debug_ll_config(VXGE_TRACE
, "device_poll_millis : %d",
3820 device_config
->device_poll_millis
);
3821 vxge_debug_ll_config(VXGE_TRACE
, "rth_en : %d",
3822 device_config
->rth_en
);
3823 vxge_debug_ll_config(VXGE_TRACE
, "rth_it_type : %d",
3824 device_config
->rth_it_type
);
3827 static void __devinit
vxge_print_parm(struct vxgedev
*vdev
, u64 vpath_mask
)
3831 vxge_debug_init(VXGE_TRACE
,
3832 "%s: %d Vpath(s) opened",
3833 vdev
->ndev
->name
, vdev
->no_of_vpath
);
3835 switch (vdev
->config
.intr_type
) {
3837 vxge_debug_init(VXGE_TRACE
,
3838 "%s: Interrupt type INTA", vdev
->ndev
->name
);
3842 vxge_debug_init(VXGE_TRACE
,
3843 "%s: Interrupt type MSI-X", vdev
->ndev
->name
);
3847 if (vdev
->config
.rth_steering
) {
3848 vxge_debug_init(VXGE_TRACE
,
3849 "%s: RTH steering enabled for TCP_IPV4",
3852 vxge_debug_init(VXGE_TRACE
,
3853 "%s: RTH steering disabled", vdev
->ndev
->name
);
3856 switch (vdev
->config
.tx_steering_type
) {
3858 vxge_debug_init(VXGE_TRACE
,
3859 "%s: Tx steering disabled", vdev
->ndev
->name
);
3861 case TX_PRIORITY_STEERING
:
3862 vxge_debug_init(VXGE_TRACE
,
3863 "%s: Unsupported tx steering option",
3865 vxge_debug_init(VXGE_TRACE
,
3866 "%s: Tx steering disabled", vdev
->ndev
->name
);
3867 vdev
->config
.tx_steering_type
= 0;
3869 case TX_VLAN_STEERING
:
3870 vxge_debug_init(VXGE_TRACE
,
3871 "%s: Unsupported tx steering option",
3873 vxge_debug_init(VXGE_TRACE
,
3874 "%s: Tx steering disabled", vdev
->ndev
->name
);
3875 vdev
->config
.tx_steering_type
= 0;
3877 case TX_MULTIQ_STEERING
:
3878 vxge_debug_init(VXGE_TRACE
,
3879 "%s: Tx multiqueue steering enabled",
3882 case TX_PORT_STEERING
:
3883 vxge_debug_init(VXGE_TRACE
,
3884 "%s: Tx port steering enabled",
3888 vxge_debug_init(VXGE_ERR
,
3889 "%s: Unsupported tx steering type",
3891 vxge_debug_init(VXGE_TRACE
,
3892 "%s: Tx steering disabled", vdev
->ndev
->name
);
3893 vdev
->config
.tx_steering_type
= 0;
3896 if (vdev
->config
.gro_enable
) {
3897 vxge_debug_init(VXGE_ERR
,
3898 "%s: Generic receive offload enabled",
3901 vxge_debug_init(VXGE_TRACE
,
3902 "%s: Generic receive offload disabled",
3905 if (vdev
->config
.addr_learn_en
)
3906 vxge_debug_init(VXGE_TRACE
,
3907 "%s: MAC Address learning enabled", vdev
->ndev
->name
);
3909 for (i
= 0; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++) {
3910 if (!vxge_bVALn(vpath_mask
, i
, 1))
3912 vxge_debug_ll_config(VXGE_TRACE
,
3913 "%s: MTU size - %d", vdev
->ndev
->name
,
3914 ((struct __vxge_hw_device
*)(vdev
->devh
))->
3915 config
.vp_config
[i
].mtu
);
3916 vxge_debug_init(VXGE_TRACE
,
3917 "%s: VLAN tag stripping %s", vdev
->ndev
->name
,
3918 ((struct __vxge_hw_device
*)(vdev
->devh
))->
3919 config
.vp_config
[i
].rpa_strip_vlan_tag
3920 ? "Enabled" : "Disabled");
3921 vxge_debug_ll_config(VXGE_TRACE
,
3922 "%s: Max frags : %d", vdev
->ndev
->name
,
3923 ((struct __vxge_hw_device
*)(vdev
->devh
))->
3924 config
.vp_config
[i
].fifo
.max_frags
);
3931 * vxge_pm_suspend - vxge power management suspend entry point
3934 static int vxge_pm_suspend(struct pci_dev
*pdev
, pm_message_t state
)
3939 * vxge_pm_resume - vxge power management resume entry point
3942 static int vxge_pm_resume(struct pci_dev
*pdev
)
3950 * vxge_io_error_detected - called when PCI error is detected
3951 * @pdev: Pointer to PCI device
3952 * @state: The current pci connection state
3954 * This function is called after a PCI bus error affecting
3955 * this device has been detected.
3957 static pci_ers_result_t
vxge_io_error_detected(struct pci_dev
*pdev
,
3958 pci_channel_state_t state
)
3960 struct __vxge_hw_device
*hldev
= pci_get_drvdata(pdev
);
3961 struct net_device
*netdev
= hldev
->ndev
;
3963 netif_device_detach(netdev
);
3965 if (state
== pci_channel_io_perm_failure
)
3966 return PCI_ERS_RESULT_DISCONNECT
;
3968 if (netif_running(netdev
)) {
3969 /* Bring down the card, while avoiding PCI I/O */
3970 do_vxge_close(netdev
, 0);
3973 pci_disable_device(pdev
);
3975 return PCI_ERS_RESULT_NEED_RESET
;
3979 * vxge_io_slot_reset - called after the pci bus has been reset.
3980 * @pdev: Pointer to PCI device
3982 * Restart the card from scratch, as if from a cold-boot.
3983 * At this point, the card has exprienced a hard reset,
3984 * followed by fixups by BIOS, and has its config space
3985 * set up identically to what it was at cold boot.
3987 static pci_ers_result_t
vxge_io_slot_reset(struct pci_dev
*pdev
)
3989 struct __vxge_hw_device
*hldev
= pci_get_drvdata(pdev
);
3990 struct net_device
*netdev
= hldev
->ndev
;
3992 struct vxgedev
*vdev
= netdev_priv(netdev
);
3994 if (pci_enable_device(pdev
)) {
3995 netdev_err(netdev
, "Cannot re-enable device after reset\n");
3996 return PCI_ERS_RESULT_DISCONNECT
;
3999 pci_set_master(pdev
);
4000 do_vxge_reset(vdev
, VXGE_LL_FULL_RESET
);
4002 return PCI_ERS_RESULT_RECOVERED
;
4006 * vxge_io_resume - called when traffic can start flowing again.
4007 * @pdev: Pointer to PCI device
4009 * This callback is called when the error recovery driver tells
4010 * us that its OK to resume normal operation.
4012 static void vxge_io_resume(struct pci_dev
*pdev
)
4014 struct __vxge_hw_device
*hldev
= pci_get_drvdata(pdev
);
4015 struct net_device
*netdev
= hldev
->ndev
;
4017 if (netif_running(netdev
)) {
4018 if (vxge_open(netdev
)) {
4020 "Can't bring device back up after reset\n");
4025 netif_device_attach(netdev
);
4028 static inline u32
vxge_get_num_vfs(u64 function_mode
)
4030 u32 num_functions
= 0;
4032 switch (function_mode
) {
4033 case VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION
:
4034 case VXGE_HW_FUNCTION_MODE_SRIOV_8
:
4037 case VXGE_HW_FUNCTION_MODE_SINGLE_FUNCTION
:
4040 case VXGE_HW_FUNCTION_MODE_SRIOV
:
4041 case VXGE_HW_FUNCTION_MODE_MRIOV
:
4042 case VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION_17
:
4045 case VXGE_HW_FUNCTION_MODE_SRIOV_4
:
4048 case VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION_2
:
4051 case VXGE_HW_FUNCTION_MODE_MRIOV_8
:
4052 num_functions
= 8; /* TODO */
4055 return num_functions
;
4058 int vxge_fw_upgrade(struct vxgedev
*vdev
, char *fw_name
, int override
)
4060 struct __vxge_hw_device
*hldev
= vdev
->devh
;
4061 u32 maj
, min
, bld
, cmaj
, cmin
, cbld
;
4062 enum vxge_hw_status status
;
4063 const struct firmware
*fw
;
4066 ret
= request_firmware(&fw
, fw_name
, &vdev
->pdev
->dev
);
4068 vxge_debug_init(VXGE_ERR
, "%s: Firmware file '%s' not found",
4069 VXGE_DRIVER_NAME
, fw_name
);
4073 /* Load the new firmware onto the adapter */
4074 status
= vxge_update_fw_image(hldev
, fw
->data
, fw
->size
);
4075 if (status
!= VXGE_HW_OK
) {
4076 vxge_debug_init(VXGE_ERR
,
4077 "%s: FW image download to adapter failed '%s'.",
4078 VXGE_DRIVER_NAME
, fw_name
);
4083 /* Read the version of the new firmware */
4084 status
= vxge_hw_upgrade_read_version(hldev
, &maj
, &min
, &bld
);
4085 if (status
!= VXGE_HW_OK
) {
4086 vxge_debug_init(VXGE_ERR
,
4087 "%s: Upgrade read version failed '%s'.",
4088 VXGE_DRIVER_NAME
, fw_name
);
4093 cmaj
= vdev
->config
.device_hw_info
.fw_version
.major
;
4094 cmin
= vdev
->config
.device_hw_info
.fw_version
.minor
;
4095 cbld
= vdev
->config
.device_hw_info
.fw_version
.build
;
4096 /* It's possible the version in /lib/firmware is not the latest version.
4097 * If so, we could get into a loop of trying to upgrade to the latest
4098 * and flashing the older version.
4100 if (VXGE_FW_VER(maj
, min
, bld
) == VXGE_FW_VER(cmaj
, cmin
, cbld
) &&
4106 printk(KERN_NOTICE
"Upgrade to firmware version %d.%d.%d commencing\n",
4109 /* Flash the adapter with the new firmware */
4110 status
= vxge_hw_flash_fw(hldev
);
4111 if (status
!= VXGE_HW_OK
) {
4112 vxge_debug_init(VXGE_ERR
, "%s: Upgrade commit failed '%s'.",
4113 VXGE_DRIVER_NAME
, fw_name
);
4118 printk(KERN_NOTICE
"Upgrade of firmware successful! Adapter must be "
4119 "hard reset before using, thus requiring a system reboot or a "
4120 "hotplug event.\n");
4126 static int vxge_probe_fw_update(struct vxgedev
*vdev
)
4132 maj
= vdev
->config
.device_hw_info
.fw_version
.major
;
4133 min
= vdev
->config
.device_hw_info
.fw_version
.minor
;
4134 bld
= vdev
->config
.device_hw_info
.fw_version
.build
;
4136 if (VXGE_FW_VER(maj
, min
, bld
) == VXGE_CERT_FW_VER
)
4139 /* Ignore the build number when determining if the current firmware is
4140 * "too new" to load the driver
4142 if (VXGE_FW_VER(maj
, min
, 0) > VXGE_CERT_FW_VER
) {
4143 vxge_debug_init(VXGE_ERR
, "%s: Firmware newer than last known "
4144 "version, unable to load driver\n",
4149 /* Firmware 1.4.4 and older cannot be upgraded, and is too ancient to
4150 * work with this driver.
4152 if (VXGE_FW_VER(maj
, min
, bld
) <= VXGE_FW_DEAD_VER
) {
4153 vxge_debug_init(VXGE_ERR
, "%s: Firmware %d.%d.%d cannot be "
4154 "upgraded\n", VXGE_DRIVER_NAME
, maj
, min
, bld
);
4158 /* If file not specified, determine gPXE or not */
4159 if (VXGE_FW_VER(maj
, min
, bld
) >= VXGE_EPROM_FW_VER
) {
4161 for (i
= 0; i
< VXGE_HW_MAX_ROM_IMAGES
; i
++)
4162 if (vdev
->devh
->eprom_versions
[i
]) {
4168 fw_name
= "vxge/X3fw-pxe.ncf";
4170 fw_name
= "vxge/X3fw.ncf";
4172 ret
= vxge_fw_upgrade(vdev
, fw_name
, 0);
4173 /* -EINVAL and -ENOENT are not fatal errors for flashing firmware on
4174 * probe, so ignore them
4176 if (ret
!= -EINVAL
&& ret
!= -ENOENT
)
4181 if (VXGE_FW_VER(VXGE_CERT_FW_VER_MAJOR
, VXGE_CERT_FW_VER_MINOR
, 0) >
4182 VXGE_FW_VER(maj
, min
, 0)) {
4183 vxge_debug_init(VXGE_ERR
, "%s: Firmware %d.%d.%d is too old to"
4184 " be used with this driver.\n"
4185 "Please get the latest version from "
4186 "ftp://ftp.s2io.com/pub/X3100-Drivers/FIRMWARE",
4187 VXGE_DRIVER_NAME
, maj
, min
, bld
);
4194 static int __devinit
is_sriov_initialized(struct pci_dev
*pdev
)
4199 pos
= pci_find_ext_capability(pdev
, PCI_EXT_CAP_ID_SRIOV
);
4201 pci_read_config_word(pdev
, pos
+ PCI_SRIOV_CTRL
, &ctrl
);
4202 if (ctrl
& PCI_SRIOV_CTRL_VFE
)
4210 * @pdev : structure containing the PCI related information of the device.
4211 * @pre: List of PCI devices supported by the driver listed in vxge_id_table.
4213 * This function is called when a new PCI device gets detected and initializes
4216 * returns 0 on success and negative on failure.
4219 static int __devinit
4220 vxge_probe(struct pci_dev
*pdev
, const struct pci_device_id
*pre
)
4222 struct __vxge_hw_device
*hldev
;
4223 enum vxge_hw_status status
;
4227 struct vxgedev
*vdev
;
4228 struct vxge_config
*ll_config
= NULL
;
4229 struct vxge_hw_device_config
*device_config
= NULL
;
4230 struct vxge_hw_device_attr attr
;
4231 int i
, j
, no_of_vpath
= 0, max_vpath_supported
= 0;
4233 struct vxge_mac_addrs
*entry
;
4234 static int bus
= -1, device
= -1;
4237 enum vxge_hw_status is_privileged
;
4241 vxge_debug_entryexit(VXGE_TRACE
, "%s:%d", __func__
, __LINE__
);
4244 /* In SRIOV-17 mode, functions of the same adapter
4245 * can be deployed on different buses
4247 if (((bus
!= pdev
->bus
->number
) || (device
!= PCI_SLOT(pdev
->devfn
))) &&
4251 bus
= pdev
->bus
->number
;
4252 device
= PCI_SLOT(pdev
->devfn
);
4255 if (driver_config
->config_dev_cnt
&&
4256 (driver_config
->config_dev_cnt
!=
4257 driver_config
->total_dev_cnt
))
4258 vxge_debug_init(VXGE_ERR
,
4259 "%s: Configured %d of %d devices",
4261 driver_config
->config_dev_cnt
,
4262 driver_config
->total_dev_cnt
);
4263 driver_config
->config_dev_cnt
= 0;
4264 driver_config
->total_dev_cnt
= 0;
4267 /* Now making the CPU based no of vpath calculation
4268 * applicable for individual functions as well.
4270 driver_config
->g_no_cpus
= 0;
4271 driver_config
->vpath_per_dev
= max_config_vpath
;
4273 driver_config
->total_dev_cnt
++;
4274 if (++driver_config
->config_dev_cnt
> max_config_dev
) {
4279 device_config
= kzalloc(sizeof(struct vxge_hw_device_config
),
4281 if (!device_config
) {
4283 vxge_debug_init(VXGE_ERR
,
4284 "device_config : malloc failed %s %d",
4285 __FILE__
, __LINE__
);
4289 ll_config
= kzalloc(sizeof(struct vxge_config
), GFP_KERNEL
);
4292 vxge_debug_init(VXGE_ERR
,
4293 "device_config : malloc failed %s %d",
4294 __FILE__
, __LINE__
);
4297 ll_config
->tx_steering_type
= TX_MULTIQ_STEERING
;
4298 ll_config
->intr_type
= MSI_X
;
4299 ll_config
->napi_weight
= NEW_NAPI_WEIGHT
;
4300 ll_config
->rth_steering
= RTH_STEERING
;
4302 /* get the default configuration parameters */
4303 vxge_hw_device_config_default_get(device_config
);
4305 /* initialize configuration parameters */
4306 vxge_device_config_init(device_config
, &ll_config
->intr_type
);
4308 ret
= pci_enable_device(pdev
);
4310 vxge_debug_init(VXGE_ERR
,
4311 "%s : can not enable PCI device", __func__
);
4315 if (!pci_set_dma_mask(pdev
, DMA_BIT_MASK(64))) {
4316 vxge_debug_ll_config(VXGE_TRACE
,
4317 "%s : using 64bit DMA", __func__
);
4321 if (pci_set_consistent_dma_mask(pdev
,
4322 DMA_BIT_MASK(64))) {
4323 vxge_debug_init(VXGE_ERR
,
4324 "%s : unable to obtain 64bit DMA for "
4325 "consistent allocations", __func__
);
4329 } else if (!pci_set_dma_mask(pdev
, DMA_BIT_MASK(32))) {
4330 vxge_debug_ll_config(VXGE_TRACE
,
4331 "%s : using 32bit DMA", __func__
);
4337 if (pci_request_region(pdev
, 0, VXGE_DRIVER_NAME
)) {
4338 vxge_debug_init(VXGE_ERR
,
4339 "%s : request regions failed", __func__
);
4344 pci_set_master(pdev
);
4346 attr
.bar0
= pci_ioremap_bar(pdev
, 0);
4348 vxge_debug_init(VXGE_ERR
,
4349 "%s : cannot remap io memory bar0", __func__
);
4353 vxge_debug_ll_config(VXGE_TRACE
,
4354 "pci ioremap bar0: %p:0x%llx",
4356 (unsigned long long)pci_resource_start(pdev
, 0));
4358 status
= vxge_hw_device_hw_info_get(attr
.bar0
,
4359 &ll_config
->device_hw_info
);
4360 if (status
!= VXGE_HW_OK
) {
4361 vxge_debug_init(VXGE_ERR
,
4362 "%s: Reading of hardware info failed."
4363 "Please try upgrading the firmware.", VXGE_DRIVER_NAME
);
4368 vpath_mask
= ll_config
->device_hw_info
.vpath_mask
;
4369 if (vpath_mask
== 0) {
4370 vxge_debug_ll_config(VXGE_TRACE
,
4371 "%s: No vpaths available in device", VXGE_DRIVER_NAME
);
4376 vxge_debug_ll_config(VXGE_TRACE
,
4377 "%s:%d Vpath mask = %llx", __func__
, __LINE__
,
4378 (unsigned long long)vpath_mask
);
4380 function_mode
= ll_config
->device_hw_info
.function_mode
;
4381 host_type
= ll_config
->device_hw_info
.host_type
;
4382 is_privileged
= __vxge_hw_device_is_privilaged(host_type
,
4383 ll_config
->device_hw_info
.func_id
);
4385 /* Check how many vpaths are available */
4386 for (i
= 0; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++) {
4387 if (!((vpath_mask
) & vxge_mBIT(i
)))
4389 max_vpath_supported
++;
4393 num_vfs
= vxge_get_num_vfs(function_mode
) - 1;
4395 /* Enable SRIOV mode, if firmware has SRIOV support and if it is a PF */
4396 if (is_sriov(function_mode
) && !is_sriov_initialized(pdev
) &&
4397 (ll_config
->intr_type
!= INTA
)) {
4398 ret
= pci_enable_sriov(pdev
, num_vfs
);
4400 vxge_debug_ll_config(VXGE_ERR
,
4401 "Failed in enabling SRIOV mode: %d\n", ret
);
4402 /* No need to fail out, as an error here is non-fatal */
4406 * Configure vpaths and get driver configured number of vpaths
4407 * which is less than or equal to the maximum vpaths per function.
4409 no_of_vpath
= vxge_config_vpaths(device_config
, vpath_mask
, ll_config
);
4411 vxge_debug_ll_config(VXGE_ERR
,
4412 "%s: No more vpaths to configure", VXGE_DRIVER_NAME
);
4417 /* Setting driver callbacks */
4418 attr
.uld_callbacks
.link_up
= vxge_callback_link_up
;
4419 attr
.uld_callbacks
.link_down
= vxge_callback_link_down
;
4420 attr
.uld_callbacks
.crit_err
= vxge_callback_crit_err
;
4422 status
= vxge_hw_device_initialize(&hldev
, &attr
, device_config
);
4423 if (status
!= VXGE_HW_OK
) {
4424 vxge_debug_init(VXGE_ERR
,
4425 "Failed to initialize device (%d)", status
);
4430 if (VXGE_FW_VER(ll_config
->device_hw_info
.fw_version
.major
,
4431 ll_config
->device_hw_info
.fw_version
.minor
,
4432 ll_config
->device_hw_info
.fw_version
.build
) >=
4433 VXGE_EPROM_FW_VER
) {
4434 struct eprom_image img
[VXGE_HW_MAX_ROM_IMAGES
];
4436 status
= vxge_hw_vpath_eprom_img_ver_get(hldev
, img
);
4437 if (status
!= VXGE_HW_OK
) {
4438 vxge_debug_init(VXGE_ERR
, "%s: Reading of EPROM failed",
4440 /* This is a non-fatal error, continue */
4443 for (i
= 0; i
< VXGE_HW_MAX_ROM_IMAGES
; i
++) {
4444 hldev
->eprom_versions
[i
] = img
[i
].version
;
4445 if (!img
[i
].is_valid
)
4447 vxge_debug_init(VXGE_TRACE
, "%s: EPROM %d, version "
4448 "%d.%d.%d.%d\n", VXGE_DRIVER_NAME
, i
,
4449 VXGE_EPROM_IMG_MAJOR(img
[i
].version
),
4450 VXGE_EPROM_IMG_MINOR(img
[i
].version
),
4451 VXGE_EPROM_IMG_FIX(img
[i
].version
),
4452 VXGE_EPROM_IMG_BUILD(img
[i
].version
));
4456 /* if FCS stripping is not disabled in MAC fail driver load */
4457 status
= vxge_hw_vpath_strip_fcs_check(hldev
, vpath_mask
);
4458 if (status
!= VXGE_HW_OK
) {
4459 vxge_debug_init(VXGE_ERR
, "%s: FCS stripping is enabled in MAC"
4460 " failing driver load", VXGE_DRIVER_NAME
);
4465 vxge_hw_device_debug_set(hldev
, VXGE_ERR
, VXGE_COMPONENT_LL
);
4467 /* set private device info */
4468 pci_set_drvdata(pdev
, hldev
);
4470 ll_config
->gro_enable
= VXGE_GRO_ALWAYS_AGGREGATE
;
4471 ll_config
->fifo_indicate_max_pkts
= VXGE_FIFO_INDICATE_MAX_PKTS
;
4472 ll_config
->addr_learn_en
= addr_learn_en
;
4473 ll_config
->rth_algorithm
= RTH_ALG_JENKINS
;
4474 ll_config
->rth_hash_type_tcpipv4
= 1;
4475 ll_config
->rth_hash_type_ipv4
= 0;
4476 ll_config
->rth_hash_type_tcpipv6
= 0;
4477 ll_config
->rth_hash_type_ipv6
= 0;
4478 ll_config
->rth_hash_type_tcpipv6ex
= 0;
4479 ll_config
->rth_hash_type_ipv6ex
= 0;
4480 ll_config
->rth_bkt_sz
= RTH_BUCKET_SIZE
;
4481 ll_config
->tx_pause_enable
= VXGE_PAUSE_CTRL_ENABLE
;
4482 ll_config
->rx_pause_enable
= VXGE_PAUSE_CTRL_ENABLE
;
4484 ret
= vxge_device_register(hldev
, ll_config
, high_dma
, no_of_vpath
,
4491 ret
= vxge_probe_fw_update(vdev
);
4495 vxge_hw_device_debug_set(hldev
, VXGE_TRACE
, VXGE_COMPONENT_LL
);
4496 VXGE_COPY_DEBUG_INFO_TO_LL(vdev
, vxge_hw_device_error_level_get(hldev
),
4497 vxge_hw_device_trace_level_get(hldev
));
4499 /* set private HW device info */
4500 vdev
->mtu
= VXGE_HW_DEFAULT_MTU
;
4501 vdev
->bar0
= attr
.bar0
;
4502 vdev
->max_vpath_supported
= max_vpath_supported
;
4503 vdev
->no_of_vpath
= no_of_vpath
;
4505 /* Virtual Path count */
4506 for (i
= 0, j
= 0; i
< VXGE_HW_MAX_VIRTUAL_PATHS
; i
++) {
4507 if (!vxge_bVALn(vpath_mask
, i
, 1))
4509 if (j
>= vdev
->no_of_vpath
)
4512 vdev
->vpaths
[j
].is_configured
= 1;
4513 vdev
->vpaths
[j
].device_id
= i
;
4514 vdev
->vpaths
[j
].ring
.driver_id
= j
;
4515 vdev
->vpaths
[j
].vdev
= vdev
;
4516 vdev
->vpaths
[j
].max_mac_addr_cnt
= max_mac_vpath
;
4517 memcpy((u8
*)vdev
->vpaths
[j
].macaddr
,
4518 ll_config
->device_hw_info
.mac_addrs
[i
],
4521 /* Initialize the mac address list header */
4522 INIT_LIST_HEAD(&vdev
->vpaths
[j
].mac_addr_list
);
4524 vdev
->vpaths
[j
].mac_addr_cnt
= 0;
4525 vdev
->vpaths
[j
].mcast_addr_cnt
= 0;
4528 vdev
->exec_mode
= VXGE_EXEC_MODE_DISABLE
;
4529 vdev
->max_config_port
= max_config_port
;
4531 vdev
->vlan_tag_strip
= vlan_tag_strip
;
4533 /* map the hashing selector table to the configured vpaths */
4534 for (i
= 0; i
< vdev
->no_of_vpath
; i
++)
4535 vdev
->vpath_selector
[i
] = vpath_selector
[i
];
4537 macaddr
= (u8
*)vdev
->vpaths
[0].macaddr
;
4539 ll_config
->device_hw_info
.serial_number
[VXGE_HW_INFO_LEN
- 1] = '\0';
4540 ll_config
->device_hw_info
.product_desc
[VXGE_HW_INFO_LEN
- 1] = '\0';
4541 ll_config
->device_hw_info
.part_number
[VXGE_HW_INFO_LEN
- 1] = '\0';
4543 vxge_debug_init(VXGE_TRACE
, "%s: SERIAL NUMBER: %s",
4544 vdev
->ndev
->name
, ll_config
->device_hw_info
.serial_number
);
4546 vxge_debug_init(VXGE_TRACE
, "%s: PART NUMBER: %s",
4547 vdev
->ndev
->name
, ll_config
->device_hw_info
.part_number
);
4549 vxge_debug_init(VXGE_TRACE
, "%s: Neterion %s Server Adapter",
4550 vdev
->ndev
->name
, ll_config
->device_hw_info
.product_desc
);
4552 vxge_debug_init(VXGE_TRACE
, "%s: MAC ADDR: %pM",
4553 vdev
->ndev
->name
, macaddr
);
4555 vxge_debug_init(VXGE_TRACE
, "%s: Link Width x%d",
4556 vdev
->ndev
->name
, vxge_hw_device_link_width_get(hldev
));
4558 vxge_debug_init(VXGE_TRACE
,
4559 "%s: Firmware version : %s Date : %s", vdev
->ndev
->name
,
4560 ll_config
->device_hw_info
.fw_version
.version
,
4561 ll_config
->device_hw_info
.fw_date
.date
);
4564 switch (ll_config
->device_hw_info
.function_mode
) {
4565 case VXGE_HW_FUNCTION_MODE_SINGLE_FUNCTION
:
4566 vxge_debug_init(VXGE_TRACE
,
4567 "%s: Single Function Mode Enabled", vdev
->ndev
->name
);
4569 case VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION
:
4570 vxge_debug_init(VXGE_TRACE
,
4571 "%s: Multi Function Mode Enabled", vdev
->ndev
->name
);
4573 case VXGE_HW_FUNCTION_MODE_SRIOV
:
4574 vxge_debug_init(VXGE_TRACE
,
4575 "%s: Single Root IOV Mode Enabled", vdev
->ndev
->name
);
4577 case VXGE_HW_FUNCTION_MODE_MRIOV
:
4578 vxge_debug_init(VXGE_TRACE
,
4579 "%s: Multi Root IOV Mode Enabled", vdev
->ndev
->name
);
4584 vxge_print_parm(vdev
, vpath_mask
);
4586 /* Store the fw version for ethttool option */
4587 strcpy(vdev
->fw_version
, ll_config
->device_hw_info
.fw_version
.version
);
4588 memcpy(vdev
->ndev
->dev_addr
, (u8
*)vdev
->vpaths
[0].macaddr
, ETH_ALEN
);
4589 memcpy(vdev
->ndev
->perm_addr
, vdev
->ndev
->dev_addr
, ETH_ALEN
);
4591 /* Copy the station mac address to the list */
4592 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
4593 entry
= kzalloc(sizeof(struct vxge_mac_addrs
), GFP_KERNEL
);
4594 if (NULL
== entry
) {
4595 vxge_debug_init(VXGE_ERR
,
4596 "%s: mac_addr_list : memory allocation failed",
4601 macaddr
= (u8
*)&entry
->macaddr
;
4602 memcpy(macaddr
, vdev
->ndev
->dev_addr
, ETH_ALEN
);
4603 list_add(&entry
->item
, &vdev
->vpaths
[i
].mac_addr_list
);
4604 vdev
->vpaths
[i
].mac_addr_cnt
= 1;
4607 kfree(device_config
);
4610 * INTA is shared in multi-function mode. This is unlike the INTA
4611 * implementation in MR mode, where each VH has its own INTA message.
4612 * - INTA is masked (disabled) as long as at least one function sets
4613 * its TITAN_MASK_ALL_INT.ALARM bit.
4614 * - INTA is unmasked (enabled) when all enabled functions have cleared
4615 * their own TITAN_MASK_ALL_INT.ALARM bit.
4616 * The TITAN_MASK_ALL_INT ALARM & TRAFFIC bits are cleared on power up.
4617 * Though this driver leaves the top level interrupts unmasked while
4618 * leaving the required module interrupt bits masked on exit, there
4619 * could be a rougue driver around that does not follow this procedure
4620 * resulting in a failure to generate interrupts. The following code is
4621 * present to prevent such a failure.
4624 if (ll_config
->device_hw_info
.function_mode
==
4625 VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION
)
4626 if (vdev
->config
.intr_type
== INTA
)
4627 vxge_hw_device_unmask_all(hldev
);
4629 vxge_debug_entryexit(VXGE_TRACE
, "%s: %s:%d Exiting...",
4630 vdev
->ndev
->name
, __func__
, __LINE__
);
4632 vxge_hw_device_debug_set(hldev
, VXGE_ERR
, VXGE_COMPONENT_LL
);
4633 VXGE_COPY_DEBUG_INFO_TO_LL(vdev
, vxge_hw_device_error_level_get(hldev
),
4634 vxge_hw_device_trace_level_get(hldev
));
4640 for (i
= 0; i
< vdev
->no_of_vpath
; i
++)
4641 vxge_free_mac_add_list(&vdev
->vpaths
[i
]);
4643 vxge_device_unregister(hldev
);
4645 pci_disable_sriov(pdev
);
4646 vxge_hw_device_terminate(hldev
);
4650 pci_release_region(pdev
, 0);
4652 pci_disable_device(pdev
);
4655 kfree(device_config
);
4656 driver_config
->config_dev_cnt
--;
4657 pci_set_drvdata(pdev
, NULL
);
4662 * vxge_rem_nic - Free the PCI device
4663 * @pdev: structure containing the PCI related information of the device.
4664 * Description: This function is called by the Pci subsystem to release a
4665 * PCI device and free up all resource held up by the device.
4667 static void __devexit
vxge_remove(struct pci_dev
*pdev
)
4669 struct __vxge_hw_device
*hldev
;
4670 struct vxgedev
*vdev
= NULL
;
4671 struct net_device
*dev
;
4674 hldev
= pci_get_drvdata(pdev
);
4680 vdev
= netdev_priv(dev
);
4682 vxge_debug_entryexit(vdev
->level_trace
, "%s:%d", __func__
, __LINE__
);
4684 vxge_debug_init(vdev
->level_trace
, "%s : removing PCI device...",
4686 vxge_device_unregister(hldev
);
4688 for (i
= 0; i
< vdev
->no_of_vpath
; i
++) {
4689 vxge_free_mac_add_list(&vdev
->vpaths
[i
]);
4690 vdev
->vpaths
[i
].mcast_addr_cnt
= 0;
4691 vdev
->vpaths
[i
].mac_addr_cnt
= 0;
4694 kfree(vdev
->vpaths
);
4696 iounmap(vdev
->bar0
);
4698 /* we are safe to free it now */
4701 vxge_debug_init(vdev
->level_trace
, "%s:%d Device unregistered",
4702 __func__
, __LINE__
);
4704 vxge_hw_device_terminate(hldev
);
4706 pci_disable_device(pdev
);
4707 pci_release_region(pdev
, 0);
4708 pci_set_drvdata(pdev
, NULL
);
4709 vxge_debug_entryexit(vdev
->level_trace
, "%s:%d Exiting...", __func__
,
4713 static struct pci_error_handlers vxge_err_handler
= {
4714 .error_detected
= vxge_io_error_detected
,
4715 .slot_reset
= vxge_io_slot_reset
,
4716 .resume
= vxge_io_resume
,
4719 static struct pci_driver vxge_driver
= {
4720 .name
= VXGE_DRIVER_NAME
,
4721 .id_table
= vxge_id_table
,
4722 .probe
= vxge_probe
,
4723 .remove
= __devexit_p(vxge_remove
),
4725 .suspend
= vxge_pm_suspend
,
4726 .resume
= vxge_pm_resume
,
4728 .err_handler
= &vxge_err_handler
,
4736 pr_info("Copyright(c) 2002-2010 Exar Corp.\n");
4737 pr_info("Driver version: %s\n", DRV_VERSION
);
4741 driver_config
= kzalloc(sizeof(struct vxge_drv_config
), GFP_KERNEL
);
4745 ret
= pci_register_driver(&vxge_driver
);
4747 kfree(driver_config
);
4751 if (driver_config
->config_dev_cnt
&&
4752 (driver_config
->config_dev_cnt
!= driver_config
->total_dev_cnt
))
4753 vxge_debug_init(VXGE_ERR
,
4754 "%s: Configured %d of %d devices",
4755 VXGE_DRIVER_NAME
, driver_config
->config_dev_cnt
,
4756 driver_config
->total_dev_cnt
);
4764 pci_unregister_driver(&vxge_driver
);
4765 kfree(driver_config
);
4767 module_init(vxge_starter
);
4768 module_exit(vxge_closer
);