2 * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
5 * This program is free software; you may redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
9 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
10 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
11 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
12 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
13 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
14 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 #include <linux/module.h>
21 #include <linux/kernel.h>
22 #include <linux/string.h>
23 #include <linux/errno.h>
24 #include <linux/types.h>
25 #include <linux/init.h>
26 #include <linux/workqueue.h>
27 #include <linux/pci.h>
28 #include <linux/netdevice.h>
29 #include <linux/etherdevice.h>
30 #include <linux/if_ether.h>
31 #include <linux/if_vlan.h>
32 #include <linux/ethtool.h>
35 #include <linux/ipv6.h>
36 #include <linux/tcp.h>
37 #include <linux/rtnetlink.h>
38 #include <net/ip6_checksum.h>
40 #include "cq_enet_desc.h"
42 #include "vnic_intr.h"
43 #include "vnic_stats.h"
49 #define ENIC_NOTIFY_TIMER_PERIOD (2 * HZ)
50 #define WQ_ENET_MAX_DESC_LEN (1 << WQ_ENET_LEN_BITS)
51 #define MAX_TSO (1 << 16)
52 #define ENIC_DESC_MAX_SPLITS (MAX_TSO / WQ_ENET_MAX_DESC_LEN + 1)
54 #define PCI_DEVICE_ID_CISCO_VIC_ENET 0x0043 /* ethernet vnic */
55 #define PCI_DEVICE_ID_CISCO_VIC_ENET_DYN 0x0044 /* enet dynamic vnic */
57 /* Supported devices */
58 static DEFINE_PCI_DEVICE_TABLE(enic_id_table
) = {
59 { PCI_VDEVICE(CISCO
, PCI_DEVICE_ID_CISCO_VIC_ENET
) },
60 { PCI_VDEVICE(CISCO
, PCI_DEVICE_ID_CISCO_VIC_ENET_DYN
) },
61 { 0, } /* end of table */
64 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
65 MODULE_AUTHOR("Scott Feldman <scofeldm@cisco.com>");
66 MODULE_LICENSE("GPL");
67 MODULE_VERSION(DRV_VERSION
);
68 MODULE_DEVICE_TABLE(pci
, enic_id_table
);
71 char name
[ETH_GSTRING_LEN
];
75 #define ENIC_TX_STAT(stat) \
76 { .name = #stat, .offset = offsetof(struct vnic_tx_stats, stat) / 8 }
77 #define ENIC_RX_STAT(stat) \
78 { .name = #stat, .offset = offsetof(struct vnic_rx_stats, stat) / 8 }
80 static const struct enic_stat enic_tx_stats
[] = {
81 ENIC_TX_STAT(tx_frames_ok
),
82 ENIC_TX_STAT(tx_unicast_frames_ok
),
83 ENIC_TX_STAT(tx_multicast_frames_ok
),
84 ENIC_TX_STAT(tx_broadcast_frames_ok
),
85 ENIC_TX_STAT(tx_bytes_ok
),
86 ENIC_TX_STAT(tx_unicast_bytes_ok
),
87 ENIC_TX_STAT(tx_multicast_bytes_ok
),
88 ENIC_TX_STAT(tx_broadcast_bytes_ok
),
89 ENIC_TX_STAT(tx_drops
),
90 ENIC_TX_STAT(tx_errors
),
94 static const struct enic_stat enic_rx_stats
[] = {
95 ENIC_RX_STAT(rx_frames_ok
),
96 ENIC_RX_STAT(rx_frames_total
),
97 ENIC_RX_STAT(rx_unicast_frames_ok
),
98 ENIC_RX_STAT(rx_multicast_frames_ok
),
99 ENIC_RX_STAT(rx_broadcast_frames_ok
),
100 ENIC_RX_STAT(rx_bytes_ok
),
101 ENIC_RX_STAT(rx_unicast_bytes_ok
),
102 ENIC_RX_STAT(rx_multicast_bytes_ok
),
103 ENIC_RX_STAT(rx_broadcast_bytes_ok
),
104 ENIC_RX_STAT(rx_drop
),
105 ENIC_RX_STAT(rx_no_bufs
),
106 ENIC_RX_STAT(rx_errors
),
107 ENIC_RX_STAT(rx_rss
),
108 ENIC_RX_STAT(rx_crc_errors
),
109 ENIC_RX_STAT(rx_frames_64
),
110 ENIC_RX_STAT(rx_frames_127
),
111 ENIC_RX_STAT(rx_frames_255
),
112 ENIC_RX_STAT(rx_frames_511
),
113 ENIC_RX_STAT(rx_frames_1023
),
114 ENIC_RX_STAT(rx_frames_1518
),
115 ENIC_RX_STAT(rx_frames_to_max
),
118 static const unsigned int enic_n_tx_stats
= ARRAY_SIZE(enic_tx_stats
);
119 static const unsigned int enic_n_rx_stats
= ARRAY_SIZE(enic_rx_stats
);
121 static int enic_is_dynamic(struct enic
*enic
)
123 return enic
->pdev
->device
== PCI_DEVICE_ID_CISCO_VIC_ENET_DYN
;
126 static inline unsigned int enic_cq_rq(struct enic
*enic
, unsigned int rq
)
131 static inline unsigned int enic_cq_wq(struct enic
*enic
, unsigned int wq
)
133 return enic
->rq_count
+ wq
;
136 static inline unsigned int enic_legacy_io_intr(void)
141 static inline unsigned int enic_legacy_err_intr(void)
146 static inline unsigned int enic_legacy_notify_intr(void)
151 static inline unsigned int enic_msix_rq_intr(struct enic
*enic
, unsigned int rq
)
156 static inline unsigned int enic_msix_wq_intr(struct enic
*enic
, unsigned int wq
)
158 return enic
->rq_count
+ wq
;
161 static inline unsigned int enic_msix_err_intr(struct enic
*enic
)
163 return enic
->rq_count
+ enic
->wq_count
;
166 static inline unsigned int enic_msix_notify_intr(struct enic
*enic
)
168 return enic
->rq_count
+ enic
->wq_count
+ 1;
171 static int enic_get_settings(struct net_device
*netdev
,
172 struct ethtool_cmd
*ecmd
)
174 struct enic
*enic
= netdev_priv(netdev
);
176 ecmd
->supported
= (SUPPORTED_10000baseT_Full
| SUPPORTED_FIBRE
);
177 ecmd
->advertising
= (ADVERTISED_10000baseT_Full
| ADVERTISED_FIBRE
);
178 ecmd
->port
= PORT_FIBRE
;
179 ecmd
->transceiver
= XCVR_EXTERNAL
;
181 if (netif_carrier_ok(netdev
)) {
182 ecmd
->speed
= vnic_dev_port_speed(enic
->vdev
);
183 ecmd
->duplex
= DUPLEX_FULL
;
189 ecmd
->autoneg
= AUTONEG_DISABLE
;
194 static void enic_get_drvinfo(struct net_device
*netdev
,
195 struct ethtool_drvinfo
*drvinfo
)
197 struct enic
*enic
= netdev_priv(netdev
);
198 struct vnic_devcmd_fw_info
*fw_info
;
200 enic_dev_fw_info(enic
, &fw_info
);
202 strncpy(drvinfo
->driver
, DRV_NAME
, sizeof(drvinfo
->driver
));
203 strncpy(drvinfo
->version
, DRV_VERSION
, sizeof(drvinfo
->version
));
204 strncpy(drvinfo
->fw_version
, fw_info
->fw_version
,
205 sizeof(drvinfo
->fw_version
));
206 strncpy(drvinfo
->bus_info
, pci_name(enic
->pdev
),
207 sizeof(drvinfo
->bus_info
));
210 static void enic_get_strings(struct net_device
*netdev
, u32 stringset
, u8
*data
)
216 for (i
= 0; i
< enic_n_tx_stats
; i
++) {
217 memcpy(data
, enic_tx_stats
[i
].name
, ETH_GSTRING_LEN
);
218 data
+= ETH_GSTRING_LEN
;
220 for (i
= 0; i
< enic_n_rx_stats
; i
++) {
221 memcpy(data
, enic_rx_stats
[i
].name
, ETH_GSTRING_LEN
);
222 data
+= ETH_GSTRING_LEN
;
228 static int enic_get_sset_count(struct net_device
*netdev
, int sset
)
232 return enic_n_tx_stats
+ enic_n_rx_stats
;
238 static void enic_get_ethtool_stats(struct net_device
*netdev
,
239 struct ethtool_stats
*stats
, u64
*data
)
241 struct enic
*enic
= netdev_priv(netdev
);
242 struct vnic_stats
*vstats
;
245 enic_dev_stats_dump(enic
, &vstats
);
247 for (i
= 0; i
< enic_n_tx_stats
; i
++)
248 *(data
++) = ((u64
*)&vstats
->tx
)[enic_tx_stats
[i
].offset
];
249 for (i
= 0; i
< enic_n_rx_stats
; i
++)
250 *(data
++) = ((u64
*)&vstats
->rx
)[enic_rx_stats
[i
].offset
];
253 static u32
enic_get_rx_csum(struct net_device
*netdev
)
255 struct enic
*enic
= netdev_priv(netdev
);
256 return enic
->csum_rx_enabled
;
259 static int enic_set_rx_csum(struct net_device
*netdev
, u32 data
)
261 struct enic
*enic
= netdev_priv(netdev
);
263 if (data
&& !ENIC_SETTING(enic
, RXCSUM
))
266 enic
->csum_rx_enabled
= !!data
;
271 static int enic_set_tx_csum(struct net_device
*netdev
, u32 data
)
273 struct enic
*enic
= netdev_priv(netdev
);
275 if (data
&& !ENIC_SETTING(enic
, TXCSUM
))
279 netdev
->features
|= NETIF_F_HW_CSUM
;
281 netdev
->features
&= ~NETIF_F_HW_CSUM
;
286 static int enic_set_tso(struct net_device
*netdev
, u32 data
)
288 struct enic
*enic
= netdev_priv(netdev
);
290 if (data
&& !ENIC_SETTING(enic
, TSO
))
295 NETIF_F_TSO
| NETIF_F_TSO6
| NETIF_F_TSO_ECN
;
298 ~(NETIF_F_TSO
| NETIF_F_TSO6
| NETIF_F_TSO_ECN
);
303 static u32
enic_get_msglevel(struct net_device
*netdev
)
305 struct enic
*enic
= netdev_priv(netdev
);
306 return enic
->msg_enable
;
309 static void enic_set_msglevel(struct net_device
*netdev
, u32 value
)
311 struct enic
*enic
= netdev_priv(netdev
);
312 enic
->msg_enable
= value
;
315 static int enic_get_coalesce(struct net_device
*netdev
,
316 struct ethtool_coalesce
*ecmd
)
318 struct enic
*enic
= netdev_priv(netdev
);
320 ecmd
->tx_coalesce_usecs
= enic
->tx_coalesce_usecs
;
321 ecmd
->rx_coalesce_usecs
= enic
->rx_coalesce_usecs
;
326 static int enic_set_coalesce(struct net_device
*netdev
,
327 struct ethtool_coalesce
*ecmd
)
329 struct enic
*enic
= netdev_priv(netdev
);
330 u32 tx_coalesce_usecs
;
331 u32 rx_coalesce_usecs
;
332 unsigned int i
, intr
;
334 tx_coalesce_usecs
= min_t(u32
,
335 INTR_COALESCE_HW_TO_USEC(VNIC_INTR_TIMER_MAX
),
336 ecmd
->tx_coalesce_usecs
);
337 rx_coalesce_usecs
= min_t(u32
,
338 INTR_COALESCE_HW_TO_USEC(VNIC_INTR_TIMER_MAX
),
339 ecmd
->rx_coalesce_usecs
);
341 switch (vnic_dev_get_intr_mode(enic
->vdev
)) {
342 case VNIC_DEV_INTR_MODE_INTX
:
343 if (tx_coalesce_usecs
!= rx_coalesce_usecs
)
346 intr
= enic_legacy_io_intr();
347 vnic_intr_coalescing_timer_set(&enic
->intr
[intr
],
348 INTR_COALESCE_USEC_TO_HW(tx_coalesce_usecs
));
350 case VNIC_DEV_INTR_MODE_MSI
:
351 if (tx_coalesce_usecs
!= rx_coalesce_usecs
)
354 vnic_intr_coalescing_timer_set(&enic
->intr
[0],
355 INTR_COALESCE_USEC_TO_HW(tx_coalesce_usecs
));
357 case VNIC_DEV_INTR_MODE_MSIX
:
358 for (i
= 0; i
< enic
->wq_count
; i
++) {
359 intr
= enic_msix_wq_intr(enic
, i
);
360 vnic_intr_coalescing_timer_set(&enic
->intr
[intr
],
361 INTR_COALESCE_USEC_TO_HW(tx_coalesce_usecs
));
364 for (i
= 0; i
< enic
->rq_count
; i
++) {
365 intr
= enic_msix_rq_intr(enic
, i
);
366 vnic_intr_coalescing_timer_set(&enic
->intr
[intr
],
367 INTR_COALESCE_USEC_TO_HW(rx_coalesce_usecs
));
375 enic
->tx_coalesce_usecs
= tx_coalesce_usecs
;
376 enic
->rx_coalesce_usecs
= rx_coalesce_usecs
;
381 static const struct ethtool_ops enic_ethtool_ops
= {
382 .get_settings
= enic_get_settings
,
383 .get_drvinfo
= enic_get_drvinfo
,
384 .get_msglevel
= enic_get_msglevel
,
385 .set_msglevel
= enic_set_msglevel
,
386 .get_link
= ethtool_op_get_link
,
387 .get_strings
= enic_get_strings
,
388 .get_sset_count
= enic_get_sset_count
,
389 .get_ethtool_stats
= enic_get_ethtool_stats
,
390 .get_rx_csum
= enic_get_rx_csum
,
391 .set_rx_csum
= enic_set_rx_csum
,
392 .get_tx_csum
= ethtool_op_get_tx_csum
,
393 .set_tx_csum
= enic_set_tx_csum
,
394 .get_sg
= ethtool_op_get_sg
,
395 .set_sg
= ethtool_op_set_sg
,
396 .get_tso
= ethtool_op_get_tso
,
397 .set_tso
= enic_set_tso
,
398 .get_coalesce
= enic_get_coalesce
,
399 .set_coalesce
= enic_set_coalesce
,
400 .get_flags
= ethtool_op_get_flags
,
403 static void enic_free_wq_buf(struct vnic_wq
*wq
, struct vnic_wq_buf
*buf
)
405 struct enic
*enic
= vnic_dev_priv(wq
->vdev
);
408 pci_unmap_single(enic
->pdev
, buf
->dma_addr
,
409 buf
->len
, PCI_DMA_TODEVICE
);
411 pci_unmap_page(enic
->pdev
, buf
->dma_addr
,
412 buf
->len
, PCI_DMA_TODEVICE
);
415 dev_kfree_skb_any(buf
->os_buf
);
418 static void enic_wq_free_buf(struct vnic_wq
*wq
,
419 struct cq_desc
*cq_desc
, struct vnic_wq_buf
*buf
, void *opaque
)
421 enic_free_wq_buf(wq
, buf
);
424 static int enic_wq_service(struct vnic_dev
*vdev
, struct cq_desc
*cq_desc
,
425 u8 type
, u16 q_number
, u16 completed_index
, void *opaque
)
427 struct enic
*enic
= vnic_dev_priv(vdev
);
429 spin_lock(&enic
->wq_lock
[q_number
]);
431 vnic_wq_service(&enic
->wq
[q_number
], cq_desc
,
432 completed_index
, enic_wq_free_buf
,
435 if (netif_queue_stopped(enic
->netdev
) &&
436 vnic_wq_desc_avail(&enic
->wq
[q_number
]) >=
437 (MAX_SKB_FRAGS
+ ENIC_DESC_MAX_SPLITS
))
438 netif_wake_queue(enic
->netdev
);
440 spin_unlock(&enic
->wq_lock
[q_number
]);
445 static void enic_log_q_error(struct enic
*enic
)
450 for (i
= 0; i
< enic
->wq_count
; i
++) {
451 error_status
= vnic_wq_error_status(&enic
->wq
[i
]);
453 netdev_err(enic
->netdev
, "WQ[%d] error_status %d\n",
457 for (i
= 0; i
< enic
->rq_count
; i
++) {
458 error_status
= vnic_rq_error_status(&enic
->rq
[i
]);
460 netdev_err(enic
->netdev
, "RQ[%d] error_status %d\n",
465 static void enic_msglvl_check(struct enic
*enic
)
467 u32 msg_enable
= vnic_dev_msg_lvl(enic
->vdev
);
469 if (msg_enable
!= enic
->msg_enable
) {
470 netdev_info(enic
->netdev
, "msg lvl changed from 0x%x to 0x%x\n",
471 enic
->msg_enable
, msg_enable
);
472 enic
->msg_enable
= msg_enable
;
476 static void enic_mtu_check(struct enic
*enic
)
478 u32 mtu
= vnic_dev_mtu(enic
->vdev
);
479 struct net_device
*netdev
= enic
->netdev
;
481 if (mtu
&& mtu
!= enic
->port_mtu
) {
482 enic
->port_mtu
= mtu
;
483 if (mtu
< netdev
->mtu
)
485 "interface MTU (%d) set higher "
486 "than switch port MTU (%d)\n",
491 static void enic_link_check(struct enic
*enic
)
493 int link_status
= vnic_dev_link_status(enic
->vdev
);
494 int carrier_ok
= netif_carrier_ok(enic
->netdev
);
496 if (link_status
&& !carrier_ok
) {
497 netdev_info(enic
->netdev
, "Link UP\n");
498 netif_carrier_on(enic
->netdev
);
499 } else if (!link_status
&& carrier_ok
) {
500 netdev_info(enic
->netdev
, "Link DOWN\n");
501 netif_carrier_off(enic
->netdev
);
505 static void enic_notify_check(struct enic
*enic
)
507 enic_msglvl_check(enic
);
508 enic_mtu_check(enic
);
509 enic_link_check(enic
);
512 #define ENIC_TEST_INTR(pba, i) (pba & (1 << i))
514 static irqreturn_t
enic_isr_legacy(int irq
, void *data
)
516 struct net_device
*netdev
= data
;
517 struct enic
*enic
= netdev_priv(netdev
);
518 unsigned int io_intr
= enic_legacy_io_intr();
519 unsigned int err_intr
= enic_legacy_err_intr();
520 unsigned int notify_intr
= enic_legacy_notify_intr();
523 vnic_intr_mask(&enic
->intr
[io_intr
]);
525 pba
= vnic_intr_legacy_pba(enic
->legacy_pba
);
527 vnic_intr_unmask(&enic
->intr
[io_intr
]);
528 return IRQ_NONE
; /* not our interrupt */
531 if (ENIC_TEST_INTR(pba
, notify_intr
)) {
532 vnic_intr_return_all_credits(&enic
->intr
[notify_intr
]);
533 enic_notify_check(enic
);
536 if (ENIC_TEST_INTR(pba
, err_intr
)) {
537 vnic_intr_return_all_credits(&enic
->intr
[err_intr
]);
538 enic_log_q_error(enic
);
539 /* schedule recovery from WQ/RQ error */
540 schedule_work(&enic
->reset
);
544 if (ENIC_TEST_INTR(pba
, io_intr
)) {
545 if (napi_schedule_prep(&enic
->napi
[0]))
546 __napi_schedule(&enic
->napi
[0]);
548 vnic_intr_unmask(&enic
->intr
[io_intr
]);
554 static irqreturn_t
enic_isr_msi(int irq
, void *data
)
556 struct enic
*enic
= data
;
558 /* With MSI, there is no sharing of interrupts, so this is
559 * our interrupt and there is no need to ack it. The device
560 * is not providing per-vector masking, so the OS will not
561 * write to PCI config space to mask/unmask the interrupt.
562 * We're using mask_on_assertion for MSI, so the device
563 * automatically masks the interrupt when the interrupt is
564 * generated. Later, when exiting polling, the interrupt
565 * will be unmasked (see enic_poll).
567 * Also, the device uses the same PCIe Traffic Class (TC)
568 * for Memory Write data and MSI, so there are no ordering
569 * issues; the MSI will always arrive at the Root Complex
570 * _after_ corresponding Memory Writes (i.e. descriptor
574 napi_schedule(&enic
->napi
[0]);
579 static irqreturn_t
enic_isr_msix_rq(int irq
, void *data
)
581 struct napi_struct
*napi
= data
;
583 /* schedule NAPI polling for RQ cleanup */
589 static irqreturn_t
enic_isr_msix_wq(int irq
, void *data
)
591 struct enic
*enic
= data
;
592 unsigned int cq
= enic_cq_wq(enic
, 0);
593 unsigned int intr
= enic_msix_wq_intr(enic
, 0);
594 unsigned int wq_work_to_do
= -1; /* no limit */
595 unsigned int wq_work_done
;
597 wq_work_done
= vnic_cq_service(&enic
->cq
[cq
],
598 wq_work_to_do
, enic_wq_service
, NULL
);
600 vnic_intr_return_credits(&enic
->intr
[intr
],
603 1 /* reset intr timer */);
608 static irqreturn_t
enic_isr_msix_err(int irq
, void *data
)
610 struct enic
*enic
= data
;
611 unsigned int intr
= enic_msix_err_intr(enic
);
613 vnic_intr_return_all_credits(&enic
->intr
[intr
]);
615 enic_log_q_error(enic
);
617 /* schedule recovery from WQ/RQ error */
618 schedule_work(&enic
->reset
);
623 static irqreturn_t
enic_isr_msix_notify(int irq
, void *data
)
625 struct enic
*enic
= data
;
626 unsigned int intr
= enic_msix_notify_intr(enic
);
628 vnic_intr_return_all_credits(&enic
->intr
[intr
]);
629 enic_notify_check(enic
);
634 static inline void enic_queue_wq_skb_cont(struct enic
*enic
,
635 struct vnic_wq
*wq
, struct sk_buff
*skb
,
636 unsigned int len_left
, int loopback
)
640 /* Queue additional data fragments */
641 for (frag
= skb_shinfo(skb
)->frags
; len_left
; frag
++) {
642 len_left
-= frag
->size
;
643 enic_queue_wq_desc_cont(wq
, skb
,
644 pci_map_page(enic
->pdev
, frag
->page
,
645 frag
->page_offset
, frag
->size
,
648 (len_left
== 0), /* EOP? */
653 static inline void enic_queue_wq_skb_vlan(struct enic
*enic
,
654 struct vnic_wq
*wq
, struct sk_buff
*skb
,
655 int vlan_tag_insert
, unsigned int vlan_tag
, int loopback
)
657 unsigned int head_len
= skb_headlen(skb
);
658 unsigned int len_left
= skb
->len
- head_len
;
659 int eop
= (len_left
== 0);
661 /* Queue the main skb fragment. The fragments are no larger
662 * than max MTU(9000)+ETH_HDR_LEN(14) bytes, which is less
663 * than WQ_ENET_MAX_DESC_LEN length. So only one descriptor
664 * per fragment is queued.
666 enic_queue_wq_desc(wq
, skb
,
667 pci_map_single(enic
->pdev
, skb
->data
,
668 head_len
, PCI_DMA_TODEVICE
),
670 vlan_tag_insert
, vlan_tag
,
674 enic_queue_wq_skb_cont(enic
, wq
, skb
, len_left
, loopback
);
677 static inline void enic_queue_wq_skb_csum_l4(struct enic
*enic
,
678 struct vnic_wq
*wq
, struct sk_buff
*skb
,
679 int vlan_tag_insert
, unsigned int vlan_tag
, int loopback
)
681 unsigned int head_len
= skb_headlen(skb
);
682 unsigned int len_left
= skb
->len
- head_len
;
683 unsigned int hdr_len
= skb_checksum_start_offset(skb
);
684 unsigned int csum_offset
= hdr_len
+ skb
->csum_offset
;
685 int eop
= (len_left
== 0);
687 /* Queue the main skb fragment. The fragments are no larger
688 * than max MTU(9000)+ETH_HDR_LEN(14) bytes, which is less
689 * than WQ_ENET_MAX_DESC_LEN length. So only one descriptor
690 * per fragment is queued.
692 enic_queue_wq_desc_csum_l4(wq
, skb
,
693 pci_map_single(enic
->pdev
, skb
->data
,
694 head_len
, PCI_DMA_TODEVICE
),
698 vlan_tag_insert
, vlan_tag
,
702 enic_queue_wq_skb_cont(enic
, wq
, skb
, len_left
, loopback
);
705 static inline void enic_queue_wq_skb_tso(struct enic
*enic
,
706 struct vnic_wq
*wq
, struct sk_buff
*skb
, unsigned int mss
,
707 int vlan_tag_insert
, unsigned int vlan_tag
, int loopback
)
709 unsigned int frag_len_left
= skb_headlen(skb
);
710 unsigned int len_left
= skb
->len
- frag_len_left
;
711 unsigned int hdr_len
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
712 int eop
= (len_left
== 0);
715 unsigned int offset
= 0;
718 /* Preload TCP csum field with IP pseudo hdr calculated
719 * with IP length set to zero. HW will later add in length
720 * to each TCP segment resulting from the TSO.
723 if (skb
->protocol
== cpu_to_be16(ETH_P_IP
)) {
724 ip_hdr(skb
)->check
= 0;
725 tcp_hdr(skb
)->check
= ~csum_tcpudp_magic(ip_hdr(skb
)->saddr
,
726 ip_hdr(skb
)->daddr
, 0, IPPROTO_TCP
, 0);
727 } else if (skb
->protocol
== cpu_to_be16(ETH_P_IPV6
)) {
728 tcp_hdr(skb
)->check
= ~csum_ipv6_magic(&ipv6_hdr(skb
)->saddr
,
729 &ipv6_hdr(skb
)->daddr
, 0, IPPROTO_TCP
, 0);
732 /* Queue WQ_ENET_MAX_DESC_LEN length descriptors
733 * for the main skb fragment
735 while (frag_len_left
) {
736 len
= min(frag_len_left
, (unsigned int)WQ_ENET_MAX_DESC_LEN
);
737 dma_addr
= pci_map_single(enic
->pdev
, skb
->data
+ offset
,
738 len
, PCI_DMA_TODEVICE
);
739 enic_queue_wq_desc_tso(wq
, skb
,
743 vlan_tag_insert
, vlan_tag
,
744 eop
&& (len
== frag_len_left
), loopback
);
745 frag_len_left
-= len
;
752 /* Queue WQ_ENET_MAX_DESC_LEN length descriptors
753 * for additional data fragments
755 for (frag
= skb_shinfo(skb
)->frags
; len_left
; frag
++) {
756 len_left
-= frag
->size
;
757 frag_len_left
= frag
->size
;
758 offset
= frag
->page_offset
;
760 while (frag_len_left
) {
761 len
= min(frag_len_left
,
762 (unsigned int)WQ_ENET_MAX_DESC_LEN
);
763 dma_addr
= pci_map_page(enic
->pdev
, frag
->page
,
766 enic_queue_wq_desc_cont(wq
, skb
,
770 (len
== frag_len_left
), /* EOP? */
772 frag_len_left
-= len
;
778 static inline void enic_queue_wq_skb(struct enic
*enic
,
779 struct vnic_wq
*wq
, struct sk_buff
*skb
)
781 unsigned int mss
= skb_shinfo(skb
)->gso_size
;
782 unsigned int vlan_tag
= 0;
783 int vlan_tag_insert
= 0;
786 if (vlan_tx_tag_present(skb
)) {
787 /* VLAN tag from trunking driver */
789 vlan_tag
= vlan_tx_tag_get(skb
);
790 } else if (enic
->loop_enable
) {
791 vlan_tag
= enic
->loop_tag
;
796 enic_queue_wq_skb_tso(enic
, wq
, skb
, mss
,
797 vlan_tag_insert
, vlan_tag
, loopback
);
798 else if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
799 enic_queue_wq_skb_csum_l4(enic
, wq
, skb
,
800 vlan_tag_insert
, vlan_tag
, loopback
);
802 enic_queue_wq_skb_vlan(enic
, wq
, skb
,
803 vlan_tag_insert
, vlan_tag
, loopback
);
806 /* netif_tx_lock held, process context with BHs disabled, or BH */
807 static netdev_tx_t
enic_hard_start_xmit(struct sk_buff
*skb
,
808 struct net_device
*netdev
)
810 struct enic
*enic
= netdev_priv(netdev
);
811 struct vnic_wq
*wq
= &enic
->wq
[0];
819 /* Non-TSO sends must fit within ENIC_NON_TSO_MAX_DESC descs,
820 * which is very likely. In the off chance it's going to take
821 * more than * ENIC_NON_TSO_MAX_DESC, linearize the skb.
824 if (skb_shinfo(skb
)->gso_size
== 0 &&
825 skb_shinfo(skb
)->nr_frags
+ 1 > ENIC_NON_TSO_MAX_DESC
&&
826 skb_linearize(skb
)) {
831 spin_lock_irqsave(&enic
->wq_lock
[0], flags
);
833 if (vnic_wq_desc_avail(wq
) <
834 skb_shinfo(skb
)->nr_frags
+ ENIC_DESC_MAX_SPLITS
) {
835 netif_stop_queue(netdev
);
836 /* This is a hard error, log it */
837 netdev_err(netdev
, "BUG! Tx ring full when queue awake!\n");
838 spin_unlock_irqrestore(&enic
->wq_lock
[0], flags
);
839 return NETDEV_TX_BUSY
;
842 enic_queue_wq_skb(enic
, wq
, skb
);
844 if (vnic_wq_desc_avail(wq
) < MAX_SKB_FRAGS
+ ENIC_DESC_MAX_SPLITS
)
845 netif_stop_queue(netdev
);
847 spin_unlock_irqrestore(&enic
->wq_lock
[0], flags
);
852 /* dev_base_lock rwlock held, nominally process context */
853 static struct net_device_stats
*enic_get_stats(struct net_device
*netdev
)
855 struct enic
*enic
= netdev_priv(netdev
);
856 struct net_device_stats
*net_stats
= &netdev
->stats
;
857 struct vnic_stats
*stats
;
859 enic_dev_stats_dump(enic
, &stats
);
861 net_stats
->tx_packets
= stats
->tx
.tx_frames_ok
;
862 net_stats
->tx_bytes
= stats
->tx
.tx_bytes_ok
;
863 net_stats
->tx_errors
= stats
->tx
.tx_errors
;
864 net_stats
->tx_dropped
= stats
->tx
.tx_drops
;
866 net_stats
->rx_packets
= stats
->rx
.rx_frames_ok
;
867 net_stats
->rx_bytes
= stats
->rx
.rx_bytes_ok
;
868 net_stats
->rx_errors
= stats
->rx
.rx_errors
;
869 net_stats
->multicast
= stats
->rx
.rx_multicast_frames_ok
;
870 net_stats
->rx_over_errors
= enic
->rq_truncated_pkts
;
871 net_stats
->rx_crc_errors
= enic
->rq_bad_fcs
;
872 net_stats
->rx_dropped
= stats
->rx
.rx_no_bufs
+ stats
->rx
.rx_drop
;
877 static void enic_reset_addr_lists(struct enic
*enic
)
884 static int enic_set_mac_addr(struct net_device
*netdev
, char *addr
)
886 struct enic
*enic
= netdev_priv(netdev
);
888 if (enic_is_dynamic(enic
)) {
889 if (!is_valid_ether_addr(addr
) && !is_zero_ether_addr(addr
))
890 return -EADDRNOTAVAIL
;
892 if (!is_valid_ether_addr(addr
))
893 return -EADDRNOTAVAIL
;
896 memcpy(netdev
->dev_addr
, addr
, netdev
->addr_len
);
901 static int enic_set_mac_address_dynamic(struct net_device
*netdev
, void *p
)
903 struct enic
*enic
= netdev_priv(netdev
);
904 struct sockaddr
*saddr
= p
;
905 char *addr
= saddr
->sa_data
;
908 if (netif_running(enic
->netdev
)) {
909 err
= enic_dev_del_station_addr(enic
);
914 err
= enic_set_mac_addr(netdev
, addr
);
918 if (netif_running(enic
->netdev
)) {
919 err
= enic_dev_add_station_addr(enic
);
927 static int enic_set_mac_address(struct net_device
*netdev
, void *p
)
929 struct sockaddr
*saddr
= p
;
930 char *addr
= saddr
->sa_data
;
931 struct enic
*enic
= netdev_priv(netdev
);
934 err
= enic_dev_del_station_addr(enic
);
938 err
= enic_set_mac_addr(netdev
, addr
);
942 return enic_dev_add_station_addr(enic
);
945 static void enic_update_multicast_addr_list(struct enic
*enic
)
947 struct net_device
*netdev
= enic
->netdev
;
948 struct netdev_hw_addr
*ha
;
949 unsigned int mc_count
= netdev_mc_count(netdev
);
950 u8 mc_addr
[ENIC_MULTICAST_PERFECT_FILTERS
][ETH_ALEN
];
953 if (mc_count
> ENIC_MULTICAST_PERFECT_FILTERS
) {
954 netdev_warn(netdev
, "Registering only %d out of %d "
955 "multicast addresses\n",
956 ENIC_MULTICAST_PERFECT_FILTERS
, mc_count
);
957 mc_count
= ENIC_MULTICAST_PERFECT_FILTERS
;
960 /* Is there an easier way? Trying to minimize to
961 * calls to add/del multicast addrs. We keep the
962 * addrs from the last call in enic->mc_addr and
963 * look for changes to add/del.
967 netdev_for_each_mc_addr(ha
, netdev
) {
970 memcpy(mc_addr
[i
++], ha
->addr
, ETH_ALEN
);
973 for (i
= 0; i
< enic
->mc_count
; i
++) {
974 for (j
= 0; j
< mc_count
; j
++)
975 if (compare_ether_addr(enic
->mc_addr
[i
],
979 enic_dev_del_addr(enic
, enic
->mc_addr
[i
]);
982 for (i
= 0; i
< mc_count
; i
++) {
983 for (j
= 0; j
< enic
->mc_count
; j
++)
984 if (compare_ether_addr(mc_addr
[i
],
985 enic
->mc_addr
[j
]) == 0)
987 if (j
== enic
->mc_count
)
988 enic_dev_add_addr(enic
, mc_addr
[i
]);
991 /* Save the list to compare against next time
994 for (i
= 0; i
< mc_count
; i
++)
995 memcpy(enic
->mc_addr
[i
], mc_addr
[i
], ETH_ALEN
);
997 enic
->mc_count
= mc_count
;
1000 static void enic_update_unicast_addr_list(struct enic
*enic
)
1002 struct net_device
*netdev
= enic
->netdev
;
1003 struct netdev_hw_addr
*ha
;
1004 unsigned int uc_count
= netdev_uc_count(netdev
);
1005 u8 uc_addr
[ENIC_UNICAST_PERFECT_FILTERS
][ETH_ALEN
];
1008 if (uc_count
> ENIC_UNICAST_PERFECT_FILTERS
) {
1009 netdev_warn(netdev
, "Registering only %d out of %d "
1010 "unicast addresses\n",
1011 ENIC_UNICAST_PERFECT_FILTERS
, uc_count
);
1012 uc_count
= ENIC_UNICAST_PERFECT_FILTERS
;
1015 /* Is there an easier way? Trying to minimize to
1016 * calls to add/del unicast addrs. We keep the
1017 * addrs from the last call in enic->uc_addr and
1018 * look for changes to add/del.
1022 netdev_for_each_uc_addr(ha
, netdev
) {
1025 memcpy(uc_addr
[i
++], ha
->addr
, ETH_ALEN
);
1028 for (i
= 0; i
< enic
->uc_count
; i
++) {
1029 for (j
= 0; j
< uc_count
; j
++)
1030 if (compare_ether_addr(enic
->uc_addr
[i
],
1034 enic_dev_del_addr(enic
, enic
->uc_addr
[i
]);
1037 for (i
= 0; i
< uc_count
; i
++) {
1038 for (j
= 0; j
< enic
->uc_count
; j
++)
1039 if (compare_ether_addr(uc_addr
[i
],
1040 enic
->uc_addr
[j
]) == 0)
1042 if (j
== enic
->uc_count
)
1043 enic_dev_add_addr(enic
, uc_addr
[i
]);
1046 /* Save the list to compare against next time
1049 for (i
= 0; i
< uc_count
; i
++)
1050 memcpy(enic
->uc_addr
[i
], uc_addr
[i
], ETH_ALEN
);
1052 enic
->uc_count
= uc_count
;
1055 /* netif_tx_lock held, BHs disabled */
1056 static void enic_set_rx_mode(struct net_device
*netdev
)
1058 struct enic
*enic
= netdev_priv(netdev
);
1060 int multicast
= (netdev
->flags
& IFF_MULTICAST
) ? 1 : 0;
1061 int broadcast
= (netdev
->flags
& IFF_BROADCAST
) ? 1 : 0;
1062 int promisc
= (netdev
->flags
& IFF_PROMISC
) ||
1063 netdev_uc_count(netdev
) > ENIC_UNICAST_PERFECT_FILTERS
;
1064 int allmulti
= (netdev
->flags
& IFF_ALLMULTI
) ||
1065 netdev_mc_count(netdev
) > ENIC_MULTICAST_PERFECT_FILTERS
;
1066 unsigned int flags
= netdev
->flags
|
1067 (allmulti
? IFF_ALLMULTI
: 0) |
1068 (promisc
? IFF_PROMISC
: 0);
1070 if (enic
->flags
!= flags
) {
1071 enic
->flags
= flags
;
1072 enic_dev_packet_filter(enic
, directed
,
1073 multicast
, broadcast
, promisc
, allmulti
);
1077 enic_update_unicast_addr_list(enic
);
1079 enic_update_multicast_addr_list(enic
);
1083 /* rtnl lock is held */
1084 static void enic_vlan_rx_register(struct net_device
*netdev
,
1085 struct vlan_group
*vlan_group
)
1087 struct enic
*enic
= netdev_priv(netdev
);
1088 enic
->vlan_group
= vlan_group
;
1091 /* netif_tx_lock held, BHs disabled */
1092 static void enic_tx_timeout(struct net_device
*netdev
)
1094 struct enic
*enic
= netdev_priv(netdev
);
1095 schedule_work(&enic
->reset
);
1098 static int enic_set_vf_mac(struct net_device
*netdev
, int vf
, u8
*mac
)
1100 struct enic
*enic
= netdev_priv(netdev
);
1102 if (vf
!= PORT_SELF_VF
)
1105 /* Ignore the vf argument for now. We can assume the request
1106 * is coming on a vf.
1108 if (is_valid_ether_addr(mac
)) {
1109 memcpy(enic
->pp
.vf_mac
, mac
, ETH_ALEN
);
1115 static int enic_set_port_profile(struct enic
*enic
, u8
*mac
)
1117 struct vic_provinfo
*vp
;
1118 u8 oui
[3] = VIC_PROVINFO_CISCO_OUI
;
1119 u16 os_type
= VIC_GENERIC_PROV_OS_TYPE_LINUX
;
1121 char client_mac_str
[18];
1125 err
= enic_vnic_dev_deinit(enic
);
1129 enic_reset_addr_lists(enic
);
1131 switch (enic
->pp
.request
) {
1133 case PORT_REQUEST_ASSOCIATE
:
1135 if (!(enic
->pp
.set
& ENIC_SET_NAME
) || !strlen(enic
->pp
.name
))
1138 if (!is_valid_ether_addr(mac
))
1139 return -EADDRNOTAVAIL
;
1141 vp
= vic_provinfo_alloc(GFP_KERNEL
, oui
,
1142 VIC_PROVINFO_GENERIC_TYPE
);
1146 vic_provinfo_add_tlv(vp
,
1147 VIC_GENERIC_PROV_TLV_PORT_PROFILE_NAME_STR
,
1148 strlen(enic
->pp
.name
) + 1, enic
->pp
.name
);
1150 if (!is_zero_ether_addr(enic
->pp
.mac_addr
))
1151 client_mac
= enic
->pp
.mac_addr
;
1155 vic_provinfo_add_tlv(vp
,
1156 VIC_GENERIC_PROV_TLV_CLIENT_MAC_ADDR
,
1157 ETH_ALEN
, client_mac
);
1159 sprintf(client_mac_str
, "%pM", client_mac
);
1160 vic_provinfo_add_tlv(vp
,
1161 VIC_GENERIC_PROV_TLV_CLUSTER_PORT_UUID_STR
,
1162 sizeof(client_mac_str
), client_mac_str
);
1164 if (enic
->pp
.set
& ENIC_SET_INSTANCE
) {
1165 sprintf(uuid_str
, "%pUB", enic
->pp
.instance_uuid
);
1166 vic_provinfo_add_tlv(vp
,
1167 VIC_GENERIC_PROV_TLV_CLIENT_UUID_STR
,
1168 sizeof(uuid_str
), uuid_str
);
1171 if (enic
->pp
.set
& ENIC_SET_HOST
) {
1172 sprintf(uuid_str
, "%pUB", enic
->pp
.host_uuid
);
1173 vic_provinfo_add_tlv(vp
,
1174 VIC_GENERIC_PROV_TLV_HOST_UUID_STR
,
1175 sizeof(uuid_str
), uuid_str
);
1178 os_type
= htons(os_type
);
1179 vic_provinfo_add_tlv(vp
,
1180 VIC_GENERIC_PROV_TLV_OS_TYPE
,
1181 sizeof(os_type
), &os_type
);
1183 err
= enic_dev_init_prov(enic
, vp
);
1184 vic_provinfo_free(vp
);
1189 case PORT_REQUEST_DISASSOCIATE
:
1196 /* Set flag to indicate that the port assoc/disassoc
1197 * request has been sent out to fw
1199 enic
->pp
.set
|= ENIC_PORT_REQUEST_APPLIED
;
1204 static int enic_set_vf_port(struct net_device
*netdev
, int vf
,
1205 struct nlattr
*port
[])
1207 struct enic
*enic
= netdev_priv(netdev
);
1208 struct enic_port_profile new_pp
;
1211 memset(&new_pp
, 0, sizeof(new_pp
));
1213 if (port
[IFLA_PORT_REQUEST
]) {
1214 new_pp
.set
|= ENIC_SET_REQUEST
;
1215 new_pp
.request
= nla_get_u8(port
[IFLA_PORT_REQUEST
]);
1218 if (port
[IFLA_PORT_PROFILE
]) {
1219 new_pp
.set
|= ENIC_SET_NAME
;
1220 memcpy(new_pp
.name
, nla_data(port
[IFLA_PORT_PROFILE
]),
1224 if (port
[IFLA_PORT_INSTANCE_UUID
]) {
1225 new_pp
.set
|= ENIC_SET_INSTANCE
;
1226 memcpy(new_pp
.instance_uuid
,
1227 nla_data(port
[IFLA_PORT_INSTANCE_UUID
]), PORT_UUID_MAX
);
1230 if (port
[IFLA_PORT_HOST_UUID
]) {
1231 new_pp
.set
|= ENIC_SET_HOST
;
1232 memcpy(new_pp
.host_uuid
,
1233 nla_data(port
[IFLA_PORT_HOST_UUID
]), PORT_UUID_MAX
);
1236 /* don't support VFs, yet */
1237 if (vf
!= PORT_SELF_VF
)
1240 if (!(new_pp
.set
& ENIC_SET_REQUEST
))
1243 if (new_pp
.request
== PORT_REQUEST_ASSOCIATE
) {
1244 /* Special case handling */
1245 if (!is_zero_ether_addr(enic
->pp
.vf_mac
))
1246 memcpy(new_pp
.mac_addr
, enic
->pp
.vf_mac
, ETH_ALEN
);
1248 if (is_zero_ether_addr(netdev
->dev_addr
))
1249 random_ether_addr(netdev
->dev_addr
);
1252 memcpy(&enic
->pp
, &new_pp
, sizeof(struct enic_port_profile
));
1254 err
= enic_set_port_profile(enic
, netdev
->dev_addr
);
1256 goto set_port_profile_cleanup
;
1258 set_port_profile_cleanup
:
1259 memset(enic
->pp
.vf_mac
, 0, ETH_ALEN
);
1261 if (err
|| enic
->pp
.request
== PORT_REQUEST_DISASSOCIATE
) {
1262 memset(netdev
->dev_addr
, 0, ETH_ALEN
);
1263 memset(enic
->pp
.mac_addr
, 0, ETH_ALEN
);
1269 static int enic_get_vf_port(struct net_device
*netdev
, int vf
,
1270 struct sk_buff
*skb
)
1272 struct enic
*enic
= netdev_priv(netdev
);
1273 int err
, error
, done
;
1274 u16 response
= PORT_PROFILE_RESPONSE_SUCCESS
;
1276 if (!(enic
->pp
.set
& ENIC_PORT_REQUEST_APPLIED
))
1279 err
= enic_dev_init_done(enic
, &done
, &error
);
1286 response
= PORT_PROFILE_RESPONSE_INPROGRESS
;
1289 response
= PORT_PROFILE_RESPONSE_INVALID
;
1292 response
= PORT_PROFILE_RESPONSE_BADSTATE
;
1295 response
= PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES
;
1298 response
= PORT_PROFILE_RESPONSE_ERROR
;
1302 NLA_PUT_U16(skb
, IFLA_PORT_REQUEST
, enic
->pp
.request
);
1303 NLA_PUT_U16(skb
, IFLA_PORT_RESPONSE
, response
);
1304 if (enic
->pp
.set
& ENIC_SET_NAME
)
1305 NLA_PUT(skb
, IFLA_PORT_PROFILE
, PORT_PROFILE_MAX
,
1307 if (enic
->pp
.set
& ENIC_SET_INSTANCE
)
1308 NLA_PUT(skb
, IFLA_PORT_INSTANCE_UUID
, PORT_UUID_MAX
,
1309 enic
->pp
.instance_uuid
);
1310 if (enic
->pp
.set
& ENIC_SET_HOST
)
1311 NLA_PUT(skb
, IFLA_PORT_HOST_UUID
, PORT_UUID_MAX
,
1312 enic
->pp
.host_uuid
);
1320 static void enic_free_rq_buf(struct vnic_rq
*rq
, struct vnic_rq_buf
*buf
)
1322 struct enic
*enic
= vnic_dev_priv(rq
->vdev
);
1327 pci_unmap_single(enic
->pdev
, buf
->dma_addr
,
1328 buf
->len
, PCI_DMA_FROMDEVICE
);
1329 dev_kfree_skb_any(buf
->os_buf
);
1332 static int enic_rq_alloc_buf(struct vnic_rq
*rq
)
1334 struct enic
*enic
= vnic_dev_priv(rq
->vdev
);
1335 struct net_device
*netdev
= enic
->netdev
;
1336 struct sk_buff
*skb
;
1337 unsigned int len
= netdev
->mtu
+ VLAN_ETH_HLEN
;
1338 unsigned int os_buf_index
= 0;
1339 dma_addr_t dma_addr
;
1341 skb
= netdev_alloc_skb_ip_align(netdev
, len
);
1345 dma_addr
= pci_map_single(enic
->pdev
, skb
->data
,
1346 len
, PCI_DMA_FROMDEVICE
);
1348 enic_queue_rq_desc(rq
, skb
, os_buf_index
,
1354 static void enic_rq_indicate_buf(struct vnic_rq
*rq
,
1355 struct cq_desc
*cq_desc
, struct vnic_rq_buf
*buf
,
1356 int skipped
, void *opaque
)
1358 struct enic
*enic
= vnic_dev_priv(rq
->vdev
);
1359 struct net_device
*netdev
= enic
->netdev
;
1360 struct sk_buff
*skb
;
1362 u8 type
, color
, eop
, sop
, ingress_port
, vlan_stripped
;
1363 u8 fcoe
, fcoe_sof
, fcoe_fc_crc_ok
, fcoe_enc_error
, fcoe_eof
;
1364 u8 tcp_udp_csum_ok
, udp
, tcp
, ipv4_csum_ok
;
1365 u8 ipv6
, ipv4
, ipv4_fragment
, fcs_ok
, rss_type
, csum_not_calc
;
1367 u16 q_number
, completed_index
, bytes_written
, vlan_tci
, checksum
;
1374 prefetch(skb
->data
- NET_IP_ALIGN
);
1375 pci_unmap_single(enic
->pdev
, buf
->dma_addr
,
1376 buf
->len
, PCI_DMA_FROMDEVICE
);
1378 cq_enet_rq_desc_dec((struct cq_enet_rq_desc
*)cq_desc
,
1379 &type
, &color
, &q_number
, &completed_index
,
1380 &ingress_port
, &fcoe
, &eop
, &sop
, &rss_type
,
1381 &csum_not_calc
, &rss_hash
, &bytes_written
,
1382 &packet_error
, &vlan_stripped
, &vlan_tci
, &checksum
,
1383 &fcoe_sof
, &fcoe_fc_crc_ok
, &fcoe_enc_error
,
1384 &fcoe_eof
, &tcp_udp_csum_ok
, &udp
, &tcp
,
1385 &ipv4_csum_ok
, &ipv6
, &ipv4
, &ipv4_fragment
,
1391 if (bytes_written
> 0)
1393 else if (bytes_written
== 0)
1394 enic
->rq_truncated_pkts
++;
1397 dev_kfree_skb_any(skb
);
1402 if (eop
&& bytes_written
> 0) {
1407 skb_put(skb
, bytes_written
);
1408 skb
->protocol
= eth_type_trans(skb
, netdev
);
1410 if (enic
->csum_rx_enabled
&& !csum_not_calc
) {
1411 skb
->csum
= htons(checksum
);
1412 skb
->ip_summed
= CHECKSUM_COMPLETE
;
1417 if (enic
->vlan_group
&& vlan_stripped
&&
1418 (vlan_tci
& CQ_ENET_RQ_DESC_VLAN_TCI_VLAN_MASK
)) {
1420 if (netdev
->features
& NETIF_F_GRO
)
1421 vlan_gro_receive(&enic
->napi
[q_number
],
1422 enic
->vlan_group
, vlan_tci
, skb
);
1424 vlan_hwaccel_receive_skb(skb
,
1425 enic
->vlan_group
, vlan_tci
);
1429 if (netdev
->features
& NETIF_F_GRO
)
1430 napi_gro_receive(&enic
->napi
[q_number
], skb
);
1432 netif_receive_skb(skb
);
1440 dev_kfree_skb_any(skb
);
1444 static int enic_rq_service(struct vnic_dev
*vdev
, struct cq_desc
*cq_desc
,
1445 u8 type
, u16 q_number
, u16 completed_index
, void *opaque
)
1447 struct enic
*enic
= vnic_dev_priv(vdev
);
1449 vnic_rq_service(&enic
->rq
[q_number
], cq_desc
,
1450 completed_index
, VNIC_RQ_RETURN_DESC
,
1451 enic_rq_indicate_buf
, opaque
);
1456 static int enic_poll(struct napi_struct
*napi
, int budget
)
1458 struct net_device
*netdev
= napi
->dev
;
1459 struct enic
*enic
= netdev_priv(netdev
);
1460 unsigned int cq_rq
= enic_cq_rq(enic
, 0);
1461 unsigned int cq_wq
= enic_cq_wq(enic
, 0);
1462 unsigned int intr
= enic_legacy_io_intr();
1463 unsigned int rq_work_to_do
= budget
;
1464 unsigned int wq_work_to_do
= -1; /* no limit */
1465 unsigned int work_done
, rq_work_done
, wq_work_done
;
1468 /* Service RQ (first) and WQ
1471 rq_work_done
= vnic_cq_service(&enic
->cq
[cq_rq
],
1472 rq_work_to_do
, enic_rq_service
, NULL
);
1474 wq_work_done
= vnic_cq_service(&enic
->cq
[cq_wq
],
1475 wq_work_to_do
, enic_wq_service
, NULL
);
1477 /* Accumulate intr event credits for this polling
1478 * cycle. An intr event is the completion of a
1479 * a WQ or RQ packet.
1482 work_done
= rq_work_done
+ wq_work_done
;
1485 vnic_intr_return_credits(&enic
->intr
[intr
],
1487 0 /* don't unmask intr */,
1488 0 /* don't reset intr timer */);
1490 err
= vnic_rq_fill(&enic
->rq
[0], enic_rq_alloc_buf
);
1492 /* Buffer allocation failed. Stay in polling
1493 * mode so we can try to fill the ring again.
1497 rq_work_done
= rq_work_to_do
;
1499 if (rq_work_done
< rq_work_to_do
) {
1501 /* Some work done, but not enough to stay in polling,
1505 napi_complete(napi
);
1506 vnic_intr_unmask(&enic
->intr
[intr
]);
1509 return rq_work_done
;
1512 static int enic_poll_msix(struct napi_struct
*napi
, int budget
)
1514 struct net_device
*netdev
= napi
->dev
;
1515 struct enic
*enic
= netdev_priv(netdev
);
1516 unsigned int rq
= (napi
- &enic
->napi
[0]);
1517 unsigned int cq
= enic_cq_rq(enic
, rq
);
1518 unsigned int intr
= enic_msix_rq_intr(enic
, rq
);
1519 unsigned int work_to_do
= budget
;
1520 unsigned int work_done
;
1526 work_done
= vnic_cq_service(&enic
->cq
[cq
],
1527 work_to_do
, enic_rq_service
, NULL
);
1529 /* Return intr event credits for this polling
1530 * cycle. An intr event is the completion of a
1535 vnic_intr_return_credits(&enic
->intr
[intr
],
1537 0 /* don't unmask intr */,
1538 0 /* don't reset intr timer */);
1540 err
= vnic_rq_fill(&enic
->rq
[rq
], enic_rq_alloc_buf
);
1542 /* Buffer allocation failed. Stay in polling mode
1543 * so we can try to fill the ring again.
1547 work_done
= work_to_do
;
1549 if (work_done
< work_to_do
) {
1551 /* Some work done, but not enough to stay in polling,
1555 napi_complete(napi
);
1556 vnic_intr_unmask(&enic
->intr
[intr
]);
1562 static void enic_notify_timer(unsigned long data
)
1564 struct enic
*enic
= (struct enic
*)data
;
1566 enic_notify_check(enic
);
1568 mod_timer(&enic
->notify_timer
,
1569 round_jiffies(jiffies
+ ENIC_NOTIFY_TIMER_PERIOD
));
1572 static void enic_free_intr(struct enic
*enic
)
1574 struct net_device
*netdev
= enic
->netdev
;
1577 switch (vnic_dev_get_intr_mode(enic
->vdev
)) {
1578 case VNIC_DEV_INTR_MODE_INTX
:
1579 free_irq(enic
->pdev
->irq
, netdev
);
1581 case VNIC_DEV_INTR_MODE_MSI
:
1582 free_irq(enic
->pdev
->irq
, enic
);
1584 case VNIC_DEV_INTR_MODE_MSIX
:
1585 for (i
= 0; i
< ARRAY_SIZE(enic
->msix
); i
++)
1586 if (enic
->msix
[i
].requested
)
1587 free_irq(enic
->msix_entry
[i
].vector
,
1588 enic
->msix
[i
].devid
);
1595 static int enic_request_intr(struct enic
*enic
)
1597 struct net_device
*netdev
= enic
->netdev
;
1598 unsigned int i
, intr
;
1601 switch (vnic_dev_get_intr_mode(enic
->vdev
)) {
1603 case VNIC_DEV_INTR_MODE_INTX
:
1605 err
= request_irq(enic
->pdev
->irq
, enic_isr_legacy
,
1606 IRQF_SHARED
, netdev
->name
, netdev
);
1609 case VNIC_DEV_INTR_MODE_MSI
:
1611 err
= request_irq(enic
->pdev
->irq
, enic_isr_msi
,
1612 0, netdev
->name
, enic
);
1615 case VNIC_DEV_INTR_MODE_MSIX
:
1617 for (i
= 0; i
< enic
->rq_count
; i
++) {
1618 intr
= enic_msix_rq_intr(enic
, i
);
1619 sprintf(enic
->msix
[intr
].devname
,
1620 "%.11s-rx-%d", netdev
->name
, i
);
1621 enic
->msix
[intr
].isr
= enic_isr_msix_rq
;
1622 enic
->msix
[intr
].devid
= &enic
->napi
[i
];
1625 for (i
= 0; i
< enic
->wq_count
; i
++) {
1626 intr
= enic_msix_wq_intr(enic
, i
);
1627 sprintf(enic
->msix
[intr
].devname
,
1628 "%.11s-tx-%d", netdev
->name
, i
);
1629 enic
->msix
[intr
].isr
= enic_isr_msix_wq
;
1630 enic
->msix
[intr
].devid
= enic
;
1633 intr
= enic_msix_err_intr(enic
);
1634 sprintf(enic
->msix
[intr
].devname
,
1635 "%.11s-err", netdev
->name
);
1636 enic
->msix
[intr
].isr
= enic_isr_msix_err
;
1637 enic
->msix
[intr
].devid
= enic
;
1639 intr
= enic_msix_notify_intr(enic
);
1640 sprintf(enic
->msix
[intr
].devname
,
1641 "%.11s-notify", netdev
->name
);
1642 enic
->msix
[intr
].isr
= enic_isr_msix_notify
;
1643 enic
->msix
[intr
].devid
= enic
;
1645 for (i
= 0; i
< ARRAY_SIZE(enic
->msix
); i
++)
1646 enic
->msix
[i
].requested
= 0;
1648 for (i
= 0; i
< enic
->intr_count
; i
++) {
1649 err
= request_irq(enic
->msix_entry
[i
].vector
,
1650 enic
->msix
[i
].isr
, 0,
1651 enic
->msix
[i
].devname
,
1652 enic
->msix
[i
].devid
);
1654 enic_free_intr(enic
);
1657 enic
->msix
[i
].requested
= 1;
1669 static void enic_synchronize_irqs(struct enic
*enic
)
1673 switch (vnic_dev_get_intr_mode(enic
->vdev
)) {
1674 case VNIC_DEV_INTR_MODE_INTX
:
1675 case VNIC_DEV_INTR_MODE_MSI
:
1676 synchronize_irq(enic
->pdev
->irq
);
1678 case VNIC_DEV_INTR_MODE_MSIX
:
1679 for (i
= 0; i
< enic
->intr_count
; i
++)
1680 synchronize_irq(enic
->msix_entry
[i
].vector
);
1687 static int enic_dev_notify_set(struct enic
*enic
)
1691 spin_lock(&enic
->devcmd_lock
);
1692 switch (vnic_dev_get_intr_mode(enic
->vdev
)) {
1693 case VNIC_DEV_INTR_MODE_INTX
:
1694 err
= vnic_dev_notify_set(enic
->vdev
,
1695 enic_legacy_notify_intr());
1697 case VNIC_DEV_INTR_MODE_MSIX
:
1698 err
= vnic_dev_notify_set(enic
->vdev
,
1699 enic_msix_notify_intr(enic
));
1702 err
= vnic_dev_notify_set(enic
->vdev
, -1 /* no intr */);
1705 spin_unlock(&enic
->devcmd_lock
);
1710 static void enic_notify_timer_start(struct enic
*enic
)
1712 switch (vnic_dev_get_intr_mode(enic
->vdev
)) {
1713 case VNIC_DEV_INTR_MODE_MSI
:
1714 mod_timer(&enic
->notify_timer
, jiffies
);
1717 /* Using intr for notification for INTx/MSI-X */
1722 /* rtnl lock is held, process context */
1723 static int enic_open(struct net_device
*netdev
)
1725 struct enic
*enic
= netdev_priv(netdev
);
1729 err
= enic_request_intr(enic
);
1731 netdev_err(netdev
, "Unable to request irq.\n");
1735 err
= enic_dev_notify_set(enic
);
1738 "Failed to alloc notify buffer, aborting.\n");
1739 goto err_out_free_intr
;
1742 for (i
= 0; i
< enic
->rq_count
; i
++) {
1743 vnic_rq_fill(&enic
->rq
[i
], enic_rq_alloc_buf
);
1744 /* Need at least one buffer on ring to get going */
1745 if (vnic_rq_desc_used(&enic
->rq
[i
]) == 0) {
1746 netdev_err(netdev
, "Unable to alloc receive buffers\n");
1748 goto err_out_notify_unset
;
1752 for (i
= 0; i
< enic
->wq_count
; i
++)
1753 vnic_wq_enable(&enic
->wq
[i
]);
1754 for (i
= 0; i
< enic
->rq_count
; i
++)
1755 vnic_rq_enable(&enic
->rq
[i
]);
1757 if (enic_is_dynamic(enic
) && !is_zero_ether_addr(enic
->pp
.mac_addr
))
1758 enic_dev_add_addr(enic
, enic
->pp
.mac_addr
);
1760 enic_dev_add_station_addr(enic
);
1761 enic_set_rx_mode(netdev
);
1763 netif_wake_queue(netdev
);
1765 for (i
= 0; i
< enic
->rq_count
; i
++)
1766 napi_enable(&enic
->napi
[i
]);
1768 enic_dev_enable(enic
);
1770 for (i
= 0; i
< enic
->intr_count
; i
++)
1771 vnic_intr_unmask(&enic
->intr
[i
]);
1773 enic_notify_timer_start(enic
);
1777 err_out_notify_unset
:
1778 enic_dev_notify_unset(enic
);
1780 enic_free_intr(enic
);
1785 /* rtnl lock is held, process context */
1786 static int enic_stop(struct net_device
*netdev
)
1788 struct enic
*enic
= netdev_priv(netdev
);
1792 for (i
= 0; i
< enic
->intr_count
; i
++) {
1793 vnic_intr_mask(&enic
->intr
[i
]);
1794 (void)vnic_intr_masked(&enic
->intr
[i
]); /* flush write */
1797 enic_synchronize_irqs(enic
);
1799 del_timer_sync(&enic
->notify_timer
);
1801 enic_dev_disable(enic
);
1803 for (i
= 0; i
< enic
->rq_count
; i
++)
1804 napi_disable(&enic
->napi
[i
]);
1806 netif_carrier_off(netdev
);
1807 netif_tx_disable(netdev
);
1808 if (enic_is_dynamic(enic
) && !is_zero_ether_addr(enic
->pp
.mac_addr
))
1809 enic_dev_del_addr(enic
, enic
->pp
.mac_addr
);
1811 enic_dev_del_station_addr(enic
);
1813 for (i
= 0; i
< enic
->wq_count
; i
++) {
1814 err
= vnic_wq_disable(&enic
->wq
[i
]);
1818 for (i
= 0; i
< enic
->rq_count
; i
++) {
1819 err
= vnic_rq_disable(&enic
->rq
[i
]);
1824 enic_dev_notify_unset(enic
);
1825 enic_free_intr(enic
);
1827 for (i
= 0; i
< enic
->wq_count
; i
++)
1828 vnic_wq_clean(&enic
->wq
[i
], enic_free_wq_buf
);
1829 for (i
= 0; i
< enic
->rq_count
; i
++)
1830 vnic_rq_clean(&enic
->rq
[i
], enic_free_rq_buf
);
1831 for (i
= 0; i
< enic
->cq_count
; i
++)
1832 vnic_cq_clean(&enic
->cq
[i
]);
1833 for (i
= 0; i
< enic
->intr_count
; i
++)
1834 vnic_intr_clean(&enic
->intr
[i
]);
1839 static int enic_change_mtu(struct net_device
*netdev
, int new_mtu
)
1841 struct enic
*enic
= netdev_priv(netdev
);
1842 int running
= netif_running(netdev
);
1844 if (new_mtu
< ENIC_MIN_MTU
|| new_mtu
> ENIC_MAX_MTU
)
1850 netdev
->mtu
= new_mtu
;
1852 if (netdev
->mtu
> enic
->port_mtu
)
1854 "interface MTU (%d) set higher than port MTU (%d)\n",
1855 netdev
->mtu
, enic
->port_mtu
);
1863 #ifdef CONFIG_NET_POLL_CONTROLLER
1864 static void enic_poll_controller(struct net_device
*netdev
)
1866 struct enic
*enic
= netdev_priv(netdev
);
1867 struct vnic_dev
*vdev
= enic
->vdev
;
1868 unsigned int i
, intr
;
1870 switch (vnic_dev_get_intr_mode(vdev
)) {
1871 case VNIC_DEV_INTR_MODE_MSIX
:
1872 for (i
= 0; i
< enic
->rq_count
; i
++) {
1873 intr
= enic_msix_rq_intr(enic
, i
);
1874 enic_isr_msix_rq(enic
->msix_entry
[intr
].vector
,
1877 intr
= enic_msix_wq_intr(enic
, i
);
1878 enic_isr_msix_wq(enic
->msix_entry
[intr
].vector
, enic
);
1880 case VNIC_DEV_INTR_MODE_MSI
:
1881 enic_isr_msi(enic
->pdev
->irq
, enic
);
1883 case VNIC_DEV_INTR_MODE_INTX
:
1884 enic_isr_legacy(enic
->pdev
->irq
, netdev
);
1892 static int enic_dev_wait(struct vnic_dev
*vdev
,
1893 int (*start
)(struct vnic_dev
*, int),
1894 int (*finished
)(struct vnic_dev
*, int *),
1901 BUG_ON(in_interrupt());
1903 err
= start(vdev
, arg
);
1907 /* Wait for func to complete...2 seconds max
1910 time
= jiffies
+ (HZ
* 2);
1913 err
= finished(vdev
, &done
);
1920 schedule_timeout_uninterruptible(HZ
/ 10);
1922 } while (time_after(time
, jiffies
));
1927 static int enic_dev_open(struct enic
*enic
)
1931 err
= enic_dev_wait(enic
->vdev
, vnic_dev_open
,
1932 vnic_dev_open_done
, 0);
1934 dev_err(enic_get_dev(enic
), "vNIC device open failed, err %d\n",
1940 static int enic_dev_hang_reset(struct enic
*enic
)
1944 err
= enic_dev_wait(enic
->vdev
, vnic_dev_hang_reset
,
1945 vnic_dev_hang_reset_done
, 0);
1947 netdev_err(enic
->netdev
, "vNIC hang reset failed, err %d\n",
1953 static int enic_set_rsskey(struct enic
*enic
)
1955 dma_addr_t rss_key_buf_pa
;
1956 union vnic_rss_key
*rss_key_buf_va
= NULL
;
1957 union vnic_rss_key rss_key
= {
1958 .key
[0].b
= {85, 67, 83, 97, 119, 101, 115, 111, 109, 101},
1959 .key
[1].b
= {80, 65, 76, 79, 117, 110, 105, 113, 117, 101},
1960 .key
[2].b
= {76, 73, 78, 85, 88, 114, 111, 99, 107, 115},
1961 .key
[3].b
= {69, 78, 73, 67, 105, 115, 99, 111, 111, 108},
1965 rss_key_buf_va
= pci_alloc_consistent(enic
->pdev
,
1966 sizeof(union vnic_rss_key
), &rss_key_buf_pa
);
1967 if (!rss_key_buf_va
)
1970 memcpy(rss_key_buf_va
, &rss_key
, sizeof(union vnic_rss_key
));
1972 spin_lock(&enic
->devcmd_lock
);
1973 err
= enic_set_rss_key(enic
,
1975 sizeof(union vnic_rss_key
));
1976 spin_unlock(&enic
->devcmd_lock
);
1978 pci_free_consistent(enic
->pdev
, sizeof(union vnic_rss_key
),
1979 rss_key_buf_va
, rss_key_buf_pa
);
1984 static int enic_set_rsscpu(struct enic
*enic
, u8 rss_hash_bits
)
1986 dma_addr_t rss_cpu_buf_pa
;
1987 union vnic_rss_cpu
*rss_cpu_buf_va
= NULL
;
1991 rss_cpu_buf_va
= pci_alloc_consistent(enic
->pdev
,
1992 sizeof(union vnic_rss_cpu
), &rss_cpu_buf_pa
);
1993 if (!rss_cpu_buf_va
)
1996 for (i
= 0; i
< (1 << rss_hash_bits
); i
++)
1997 (*rss_cpu_buf_va
).cpu
[i
/4].b
[i
%4] = i
% enic
->rq_count
;
1999 spin_lock(&enic
->devcmd_lock
);
2000 err
= enic_set_rss_cpu(enic
,
2002 sizeof(union vnic_rss_cpu
));
2003 spin_unlock(&enic
->devcmd_lock
);
2005 pci_free_consistent(enic
->pdev
, sizeof(union vnic_rss_cpu
),
2006 rss_cpu_buf_va
, rss_cpu_buf_pa
);
2011 static int enic_set_niccfg(struct enic
*enic
, u8 rss_default_cpu
,
2012 u8 rss_hash_type
, u8 rss_hash_bits
, u8 rss_base_cpu
, u8 rss_enable
)
2014 const u8 tso_ipid_split_en
= 0;
2015 const u8 ig_vlan_strip_en
= 1;
2018 /* Enable VLAN tag stripping.
2021 spin_lock(&enic
->devcmd_lock
);
2022 err
= enic_set_nic_cfg(enic
,
2023 rss_default_cpu
, rss_hash_type
,
2024 rss_hash_bits
, rss_base_cpu
,
2025 rss_enable
, tso_ipid_split_en
,
2027 spin_unlock(&enic
->devcmd_lock
);
2032 static int enic_set_rss_nic_cfg(struct enic
*enic
)
2034 struct device
*dev
= enic_get_dev(enic
);
2035 const u8 rss_default_cpu
= 0;
2036 const u8 rss_hash_type
= NIC_CFG_RSS_HASH_TYPE_IPV4
|
2037 NIC_CFG_RSS_HASH_TYPE_TCP_IPV4
|
2038 NIC_CFG_RSS_HASH_TYPE_IPV6
|
2039 NIC_CFG_RSS_HASH_TYPE_TCP_IPV6
;
2040 const u8 rss_hash_bits
= 7;
2041 const u8 rss_base_cpu
= 0;
2042 u8 rss_enable
= ENIC_SETTING(enic
, RSS
) && (enic
->rq_count
> 1);
2045 if (!enic_set_rsskey(enic
)) {
2046 if (enic_set_rsscpu(enic
, rss_hash_bits
)) {
2048 dev_warn(dev
, "RSS disabled, "
2049 "Failed to set RSS cpu indirection table.");
2053 dev_warn(dev
, "RSS disabled, Failed to set RSS key.\n");
2057 return enic_set_niccfg(enic
, rss_default_cpu
, rss_hash_type
,
2058 rss_hash_bits
, rss_base_cpu
, rss_enable
);
2061 static void enic_reset(struct work_struct
*work
)
2063 struct enic
*enic
= container_of(work
, struct enic
, reset
);
2065 if (!netif_running(enic
->netdev
))
2070 enic_dev_hang_notify(enic
);
2071 enic_stop(enic
->netdev
);
2072 enic_dev_hang_reset(enic
);
2073 enic_reset_addr_lists(enic
);
2074 enic_init_vnic_resources(enic
);
2075 enic_set_rss_nic_cfg(enic
);
2076 enic_dev_set_ig_vlan_rewrite_mode(enic
);
2077 enic_open(enic
->netdev
);
2082 static int enic_set_intr_mode(struct enic
*enic
)
2084 unsigned int n
= min_t(unsigned int, enic
->rq_count
, ENIC_RQ_MAX
);
2085 unsigned int m
= min_t(unsigned int, enic
->wq_count
, ENIC_WQ_MAX
);
2088 /* Set interrupt mode (INTx, MSI, MSI-X) depending
2089 * on system capabilities.
2093 * We need n RQs, m WQs, n+m CQs, and n+m+2 INTRs
2094 * (the second to last INTR is used for WQ/RQ errors)
2095 * (the last INTR is used for notifications)
2098 BUG_ON(ARRAY_SIZE(enic
->msix_entry
) < n
+ m
+ 2);
2099 for (i
= 0; i
< n
+ m
+ 2; i
++)
2100 enic
->msix_entry
[i
].entry
= i
;
2102 /* Use multiple RQs if RSS is enabled
2105 if (ENIC_SETTING(enic
, RSS
) &&
2106 enic
->config
.intr_mode
< 1 &&
2107 enic
->rq_count
>= n
&&
2108 enic
->wq_count
>= m
&&
2109 enic
->cq_count
>= n
+ m
&&
2110 enic
->intr_count
>= n
+ m
+ 2) {
2112 if (!pci_enable_msix(enic
->pdev
, enic
->msix_entry
, n
+ m
+ 2)) {
2116 enic
->cq_count
= n
+ m
;
2117 enic
->intr_count
= n
+ m
+ 2;
2119 vnic_dev_set_intr_mode(enic
->vdev
,
2120 VNIC_DEV_INTR_MODE_MSIX
);
2126 if (enic
->config
.intr_mode
< 1 &&
2127 enic
->rq_count
>= 1 &&
2128 enic
->wq_count
>= m
&&
2129 enic
->cq_count
>= 1 + m
&&
2130 enic
->intr_count
>= 1 + m
+ 2) {
2131 if (!pci_enable_msix(enic
->pdev
, enic
->msix_entry
, 1 + m
+ 2)) {
2135 enic
->cq_count
= 1 + m
;
2136 enic
->intr_count
= 1 + m
+ 2;
2138 vnic_dev_set_intr_mode(enic
->vdev
,
2139 VNIC_DEV_INTR_MODE_MSIX
);
2147 * We need 1 RQ, 1 WQ, 2 CQs, and 1 INTR
2150 if (enic
->config
.intr_mode
< 2 &&
2151 enic
->rq_count
>= 1 &&
2152 enic
->wq_count
>= 1 &&
2153 enic
->cq_count
>= 2 &&
2154 enic
->intr_count
>= 1 &&
2155 !pci_enable_msi(enic
->pdev
)) {
2160 enic
->intr_count
= 1;
2162 vnic_dev_set_intr_mode(enic
->vdev
, VNIC_DEV_INTR_MODE_MSI
);
2169 * We need 1 RQ, 1 WQ, 2 CQs, and 3 INTRs
2170 * (the first INTR is used for WQ/RQ)
2171 * (the second INTR is used for WQ/RQ errors)
2172 * (the last INTR is used for notifications)
2175 if (enic
->config
.intr_mode
< 3 &&
2176 enic
->rq_count
>= 1 &&
2177 enic
->wq_count
>= 1 &&
2178 enic
->cq_count
>= 2 &&
2179 enic
->intr_count
>= 3) {
2184 enic
->intr_count
= 3;
2186 vnic_dev_set_intr_mode(enic
->vdev
, VNIC_DEV_INTR_MODE_INTX
);
2191 vnic_dev_set_intr_mode(enic
->vdev
, VNIC_DEV_INTR_MODE_UNKNOWN
);
2196 static void enic_clear_intr_mode(struct enic
*enic
)
2198 switch (vnic_dev_get_intr_mode(enic
->vdev
)) {
2199 case VNIC_DEV_INTR_MODE_MSIX
:
2200 pci_disable_msix(enic
->pdev
);
2202 case VNIC_DEV_INTR_MODE_MSI
:
2203 pci_disable_msi(enic
->pdev
);
2209 vnic_dev_set_intr_mode(enic
->vdev
, VNIC_DEV_INTR_MODE_UNKNOWN
);
2212 static const struct net_device_ops enic_netdev_dynamic_ops
= {
2213 .ndo_open
= enic_open
,
2214 .ndo_stop
= enic_stop
,
2215 .ndo_start_xmit
= enic_hard_start_xmit
,
2216 .ndo_get_stats
= enic_get_stats
,
2217 .ndo_validate_addr
= eth_validate_addr
,
2218 .ndo_set_rx_mode
= enic_set_rx_mode
,
2219 .ndo_set_multicast_list
= enic_set_rx_mode
,
2220 .ndo_set_mac_address
= enic_set_mac_address_dynamic
,
2221 .ndo_change_mtu
= enic_change_mtu
,
2222 .ndo_vlan_rx_register
= enic_vlan_rx_register
,
2223 .ndo_vlan_rx_add_vid
= enic_vlan_rx_add_vid
,
2224 .ndo_vlan_rx_kill_vid
= enic_vlan_rx_kill_vid
,
2225 .ndo_tx_timeout
= enic_tx_timeout
,
2226 .ndo_set_vf_port
= enic_set_vf_port
,
2227 .ndo_get_vf_port
= enic_get_vf_port
,
2228 .ndo_set_vf_mac
= enic_set_vf_mac
,
2229 #ifdef CONFIG_NET_POLL_CONTROLLER
2230 .ndo_poll_controller
= enic_poll_controller
,
2234 static const struct net_device_ops enic_netdev_ops
= {
2235 .ndo_open
= enic_open
,
2236 .ndo_stop
= enic_stop
,
2237 .ndo_start_xmit
= enic_hard_start_xmit
,
2238 .ndo_get_stats
= enic_get_stats
,
2239 .ndo_validate_addr
= eth_validate_addr
,
2240 .ndo_set_mac_address
= enic_set_mac_address
,
2241 .ndo_set_rx_mode
= enic_set_rx_mode
,
2242 .ndo_set_multicast_list
= enic_set_rx_mode
,
2243 .ndo_change_mtu
= enic_change_mtu
,
2244 .ndo_vlan_rx_register
= enic_vlan_rx_register
,
2245 .ndo_vlan_rx_add_vid
= enic_vlan_rx_add_vid
,
2246 .ndo_vlan_rx_kill_vid
= enic_vlan_rx_kill_vid
,
2247 .ndo_tx_timeout
= enic_tx_timeout
,
2248 #ifdef CONFIG_NET_POLL_CONTROLLER
2249 .ndo_poll_controller
= enic_poll_controller
,
2253 static void enic_dev_deinit(struct enic
*enic
)
2257 for (i
= 0; i
< enic
->rq_count
; i
++)
2258 netif_napi_del(&enic
->napi
[i
]);
2260 enic_free_vnic_resources(enic
);
2261 enic_clear_intr_mode(enic
);
2264 static int enic_dev_init(struct enic
*enic
)
2266 struct device
*dev
= enic_get_dev(enic
);
2267 struct net_device
*netdev
= enic
->netdev
;
2271 /* Get vNIC configuration
2274 err
= enic_get_vnic_config(enic
);
2276 dev_err(dev
, "Get vNIC configuration failed, aborting\n");
2280 /* Get available resource counts
2283 enic_get_res_counts(enic
);
2285 /* Set interrupt mode based on resource counts and system
2289 err
= enic_set_intr_mode(enic
);
2291 dev_err(dev
, "Failed to set intr mode based on resource "
2292 "counts and system capabilities, aborting\n");
2296 /* Allocate and configure vNIC resources
2299 err
= enic_alloc_vnic_resources(enic
);
2301 dev_err(dev
, "Failed to alloc vNIC resources, aborting\n");
2302 goto err_out_free_vnic_resources
;
2305 enic_init_vnic_resources(enic
);
2307 err
= enic_set_rss_nic_cfg(enic
);
2309 dev_err(dev
, "Failed to config nic, aborting\n");
2310 goto err_out_free_vnic_resources
;
2313 switch (vnic_dev_get_intr_mode(enic
->vdev
)) {
2315 netif_napi_add(netdev
, &enic
->napi
[0], enic_poll
, 64);
2317 case VNIC_DEV_INTR_MODE_MSIX
:
2318 for (i
= 0; i
< enic
->rq_count
; i
++)
2319 netif_napi_add(netdev
, &enic
->napi
[i
],
2320 enic_poll_msix
, 64);
2326 err_out_free_vnic_resources
:
2327 enic_clear_intr_mode(enic
);
2328 enic_free_vnic_resources(enic
);
2333 static void enic_iounmap(struct enic
*enic
)
2337 for (i
= 0; i
< ARRAY_SIZE(enic
->bar
); i
++)
2338 if (enic
->bar
[i
].vaddr
)
2339 iounmap(enic
->bar
[i
].vaddr
);
2342 static int __devinit
enic_probe(struct pci_dev
*pdev
,
2343 const struct pci_device_id
*ent
)
2345 struct device
*dev
= &pdev
->dev
;
2346 struct net_device
*netdev
;
2352 /* Allocate net device structure and initialize. Private
2353 * instance data is initialized to zero.
2356 netdev
= alloc_etherdev(sizeof(struct enic
));
2358 pr_err("Etherdev alloc failed, aborting\n");
2362 pci_set_drvdata(pdev
, netdev
);
2364 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
2366 enic
= netdev_priv(netdev
);
2367 enic
->netdev
= netdev
;
2370 /* Setup PCI resources
2373 err
= pci_enable_device_mem(pdev
);
2375 dev_err(dev
, "Cannot enable PCI device, aborting\n");
2376 goto err_out_free_netdev
;
2379 err
= pci_request_regions(pdev
, DRV_NAME
);
2381 dev_err(dev
, "Cannot request PCI regions, aborting\n");
2382 goto err_out_disable_device
;
2385 pci_set_master(pdev
);
2387 /* Query PCI controller on system for DMA addressing
2388 * limitation for the device. Try 40-bit first, and
2392 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(40));
2394 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
2396 dev_err(dev
, "No usable DMA configuration, aborting\n");
2397 goto err_out_release_regions
;
2399 err
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32));
2401 dev_err(dev
, "Unable to obtain %u-bit DMA "
2402 "for consistent allocations, aborting\n", 32);
2403 goto err_out_release_regions
;
2406 err
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(40));
2408 dev_err(dev
, "Unable to obtain %u-bit DMA "
2409 "for consistent allocations, aborting\n", 40);
2410 goto err_out_release_regions
;
2415 /* Map vNIC resources from BAR0-5
2418 for (i
= 0; i
< ARRAY_SIZE(enic
->bar
); i
++) {
2419 if (!(pci_resource_flags(pdev
, i
) & IORESOURCE_MEM
))
2421 enic
->bar
[i
].len
= pci_resource_len(pdev
, i
);
2422 enic
->bar
[i
].vaddr
= pci_iomap(pdev
, i
, enic
->bar
[i
].len
);
2423 if (!enic
->bar
[i
].vaddr
) {
2424 dev_err(dev
, "Cannot memory-map BAR %d, aborting\n", i
);
2426 goto err_out_iounmap
;
2428 enic
->bar
[i
].bus_addr
= pci_resource_start(pdev
, i
);
2431 /* Register vNIC device
2434 enic
->vdev
= vnic_dev_register(NULL
, enic
, pdev
, enic
->bar
,
2435 ARRAY_SIZE(enic
->bar
));
2437 dev_err(dev
, "vNIC registration failed, aborting\n");
2439 goto err_out_iounmap
;
2442 /* Issue device open to get device in known state
2445 err
= enic_dev_open(enic
);
2447 dev_err(dev
, "vNIC dev open failed, aborting\n");
2448 goto err_out_vnic_unregister
;
2451 /* Setup devcmd lock
2454 spin_lock_init(&enic
->devcmd_lock
);
2457 * Set ingress vlan rewrite mode before vnic initialization
2460 err
= enic_dev_set_ig_vlan_rewrite_mode(enic
);
2463 "Failed to set ingress vlan rewrite mode, aborting.\n");
2464 goto err_out_dev_close
;
2467 /* Issue device init to initialize the vnic-to-switch link.
2468 * We'll start with carrier off and wait for link UP
2469 * notification later to turn on carrier. We don't need
2470 * to wait here for the vnic-to-switch link initialization
2471 * to complete; link UP notification is the indication that
2472 * the process is complete.
2475 netif_carrier_off(netdev
);
2477 /* Do not call dev_init for a dynamic vnic.
2478 * For a dynamic vnic, init_prov_info will be
2479 * called later by an upper layer.
2482 if (!enic_is_dynamic(enic
)) {
2483 err
= vnic_dev_init(enic
->vdev
, 0);
2485 dev_err(dev
, "vNIC dev init failed, aborting\n");
2486 goto err_out_dev_close
;
2490 err
= enic_dev_init(enic
);
2492 dev_err(dev
, "Device initialization failed, aborting\n");
2493 goto err_out_dev_close
;
2496 /* Setup notification timer, HW reset task, and wq locks
2499 init_timer(&enic
->notify_timer
);
2500 enic
->notify_timer
.function
= enic_notify_timer
;
2501 enic
->notify_timer
.data
= (unsigned long)enic
;
2503 INIT_WORK(&enic
->reset
, enic_reset
);
2505 for (i
= 0; i
< enic
->wq_count
; i
++)
2506 spin_lock_init(&enic
->wq_lock
[i
]);
2508 /* Register net device
2511 enic
->port_mtu
= enic
->config
.mtu
;
2512 (void)enic_change_mtu(netdev
, enic
->port_mtu
);
2514 err
= enic_set_mac_addr(netdev
, enic
->mac_addr
);
2516 dev_err(dev
, "Invalid MAC address, aborting\n");
2517 goto err_out_dev_deinit
;
2520 enic
->tx_coalesce_usecs
= enic
->config
.intr_timer_usec
;
2521 enic
->rx_coalesce_usecs
= enic
->tx_coalesce_usecs
;
2523 if (enic_is_dynamic(enic
))
2524 netdev
->netdev_ops
= &enic_netdev_dynamic_ops
;
2526 netdev
->netdev_ops
= &enic_netdev_ops
;
2528 netdev
->watchdog_timeo
= 2 * HZ
;
2529 netdev
->ethtool_ops
= &enic_ethtool_ops
;
2531 netdev
->features
|= NETIF_F_HW_VLAN_TX
| NETIF_F_HW_VLAN_RX
;
2532 if (ENIC_SETTING(enic
, LOOP
)) {
2533 netdev
->features
&= ~NETIF_F_HW_VLAN_TX
;
2534 enic
->loop_enable
= 1;
2535 enic
->loop_tag
= enic
->config
.loop_tag
;
2536 dev_info(dev
, "loopback tag=0x%04x\n", enic
->loop_tag
);
2538 if (ENIC_SETTING(enic
, TXCSUM
))
2539 netdev
->features
|= NETIF_F_SG
| NETIF_F_HW_CSUM
;
2540 if (ENIC_SETTING(enic
, TSO
))
2541 netdev
->features
|= NETIF_F_TSO
|
2542 NETIF_F_TSO6
| NETIF_F_TSO_ECN
;
2543 if (ENIC_SETTING(enic
, LRO
))
2544 netdev
->features
|= NETIF_F_GRO
;
2546 netdev
->features
|= NETIF_F_HIGHDMA
;
2548 enic
->csum_rx_enabled
= ENIC_SETTING(enic
, RXCSUM
);
2550 err
= register_netdev(netdev
);
2552 dev_err(dev
, "Cannot register net device, aborting\n");
2553 goto err_out_dev_deinit
;
2559 enic_dev_deinit(enic
);
2561 vnic_dev_close(enic
->vdev
);
2562 err_out_vnic_unregister
:
2563 vnic_dev_unregister(enic
->vdev
);
2566 err_out_release_regions
:
2567 pci_release_regions(pdev
);
2568 err_out_disable_device
:
2569 pci_disable_device(pdev
);
2570 err_out_free_netdev
:
2571 pci_set_drvdata(pdev
, NULL
);
2572 free_netdev(netdev
);
2577 static void __devexit
enic_remove(struct pci_dev
*pdev
)
2579 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2582 struct enic
*enic
= netdev_priv(netdev
);
2584 cancel_work_sync(&enic
->reset
);
2585 unregister_netdev(netdev
);
2586 enic_dev_deinit(enic
);
2587 vnic_dev_close(enic
->vdev
);
2588 vnic_dev_unregister(enic
->vdev
);
2590 pci_release_regions(pdev
);
2591 pci_disable_device(pdev
);
2592 pci_set_drvdata(pdev
, NULL
);
2593 free_netdev(netdev
);
2597 static struct pci_driver enic_driver
= {
2599 .id_table
= enic_id_table
,
2600 .probe
= enic_probe
,
2601 .remove
= __devexit_p(enic_remove
),
2604 static int __init
enic_init_module(void)
2606 pr_info("%s, ver %s\n", DRV_DESCRIPTION
, DRV_VERSION
);
2608 return pci_register_driver(&enic_driver
);
2611 static void __exit
enic_cleanup_module(void)
2613 pci_unregister_driver(&enic_driver
);
2616 module_init(enic_init_module
);
2617 module_exit(enic_cleanup_module
);