1 /*******************************************************************************
3 Intel 82599 Virtual Function driver
4 Copyright(c) 1999 - 2012 Intel Corporation.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
23 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26 *******************************************************************************/
29 /******************************************************************************
30 Copyright (c)2006 - 2007 Myricom, Inc. for some LRO specific code
31 ******************************************************************************/
33 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35 #include <linux/types.h>
36 #include <linux/bitops.h>
37 #include <linux/module.h>
38 #include <linux/pci.h>
39 #include <linux/netdevice.h>
40 #include <linux/vmalloc.h>
41 #include <linux/string.h>
44 #include <linux/tcp.h>
45 #include <linux/ipv6.h>
46 #include <linux/slab.h>
47 #include <net/checksum.h>
48 #include <net/ip6_checksum.h>
49 #include <linux/ethtool.h>
51 #include <linux/if_vlan.h>
52 #include <linux/prefetch.h>
56 const char ixgbevf_driver_name
[] = "ixgbevf";
57 static const char ixgbevf_driver_string
[] =
58 "Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver";
60 #define DRV_VERSION "2.2.0-k"
61 const char ixgbevf_driver_version
[] = DRV_VERSION
;
62 static char ixgbevf_copyright
[] =
63 "Copyright (c) 2009 - 2012 Intel Corporation.";
65 static const struct ixgbevf_info
*ixgbevf_info_tbl
[] = {
66 [board_82599_vf
] = &ixgbevf_82599_vf_info
,
67 [board_X540_vf
] = &ixgbevf_X540_vf_info
,
70 /* ixgbevf_pci_tbl - PCI Device ID Table
72 * Wildcard entries (PCI_ANY_ID) should come last
73 * Last entry must be all 0s
75 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
76 * Class, Class Mask, private data (not used) }
78 static struct pci_device_id ixgbevf_pci_tbl
[] = {
79 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_VF
),
81 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X540_VF
),
84 /* required last entry */
87 MODULE_DEVICE_TABLE(pci
, ixgbevf_pci_tbl
);
89 MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
90 MODULE_DESCRIPTION("Intel(R) 82599 Virtual Function Driver");
91 MODULE_LICENSE("GPL");
92 MODULE_VERSION(DRV_VERSION
);
94 #define DEFAULT_DEBUG_LEVEL_SHIFT 3
97 static void ixgbevf_set_itr_msix(struct ixgbevf_q_vector
*q_vector
);
98 static void ixgbevf_write_eitr(struct ixgbevf_adapter
*adapter
, int v_idx
,
101 static inline void ixgbevf_release_rx_desc(struct ixgbe_hw
*hw
,
102 struct ixgbevf_ring
*rx_ring
,
106 * Force memory writes to complete before letting h/w
107 * know there are new descriptors to fetch. (Only
108 * applicable for weak-ordered memory model archs,
112 IXGBE_WRITE_REG(hw
, IXGBE_VFRDT(rx_ring
->reg_idx
), val
);
116 * ixgbevf_set_ivar - set IVAR registers - maps interrupt causes to vectors
117 * @adapter: pointer to adapter struct
118 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
119 * @queue: queue to map the corresponding interrupt to
120 * @msix_vector: the vector to map to the corresponding queue
123 static void ixgbevf_set_ivar(struct ixgbevf_adapter
*adapter
, s8 direction
,
124 u8 queue
, u8 msix_vector
)
127 struct ixgbe_hw
*hw
= &adapter
->hw
;
128 if (direction
== -1) {
130 msix_vector
|= IXGBE_IVAR_ALLOC_VAL
;
131 ivar
= IXGBE_READ_REG(hw
, IXGBE_VTIVAR_MISC
);
134 IXGBE_WRITE_REG(hw
, IXGBE_VTIVAR_MISC
, ivar
);
136 /* tx or rx causes */
137 msix_vector
|= IXGBE_IVAR_ALLOC_VAL
;
138 index
= ((16 * (queue
& 1)) + (8 * direction
));
139 ivar
= IXGBE_READ_REG(hw
, IXGBE_VTIVAR(queue
>> 1));
140 ivar
&= ~(0xFF << index
);
141 ivar
|= (msix_vector
<< index
);
142 IXGBE_WRITE_REG(hw
, IXGBE_VTIVAR(queue
>> 1), ivar
);
146 static void ixgbevf_unmap_and_free_tx_resource(struct ixgbevf_adapter
*adapter
,
147 struct ixgbevf_tx_buffer
150 if (tx_buffer_info
->dma
) {
151 if (tx_buffer_info
->mapped_as_page
)
152 dma_unmap_page(&adapter
->pdev
->dev
,
154 tx_buffer_info
->length
,
157 dma_unmap_single(&adapter
->pdev
->dev
,
159 tx_buffer_info
->length
,
161 tx_buffer_info
->dma
= 0;
163 if (tx_buffer_info
->skb
) {
164 dev_kfree_skb_any(tx_buffer_info
->skb
);
165 tx_buffer_info
->skb
= NULL
;
167 tx_buffer_info
->time_stamp
= 0;
168 /* tx_buffer_info must be completely set up in the transmit path */
171 #define IXGBE_MAX_TXD_PWR 14
172 #define IXGBE_MAX_DATA_PER_TXD (1 << IXGBE_MAX_TXD_PWR)
174 /* Tx Descriptors needed, worst case */
175 #define TXD_USE_COUNT(S) (((S) >> IXGBE_MAX_TXD_PWR) + \
176 (((S) & (IXGBE_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
178 #define DESC_NEEDED (TXD_USE_COUNT(IXGBE_MAX_DATA_PER_TXD) /* skb->data */ + \
179 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1) /* for context */
181 #define DESC_NEEDED TXD_USE_COUNT(IXGBE_MAX_DATA_PER_TXD)
184 static void ixgbevf_tx_timeout(struct net_device
*netdev
);
187 * ixgbevf_clean_tx_irq - Reclaim resources after transmit completes
188 * @adapter: board private structure
189 * @tx_ring: tx ring to clean
191 static bool ixgbevf_clean_tx_irq(struct ixgbevf_adapter
*adapter
,
192 struct ixgbevf_ring
*tx_ring
)
194 struct net_device
*netdev
= adapter
->netdev
;
195 struct ixgbe_hw
*hw
= &adapter
->hw
;
196 union ixgbe_adv_tx_desc
*tx_desc
, *eop_desc
;
197 struct ixgbevf_tx_buffer
*tx_buffer_info
;
198 unsigned int i
, eop
, count
= 0;
199 unsigned int total_bytes
= 0, total_packets
= 0;
201 i
= tx_ring
->next_to_clean
;
202 eop
= tx_ring
->tx_buffer_info
[i
].next_to_watch
;
203 eop_desc
= IXGBE_TX_DESC_ADV(*tx_ring
, eop
);
205 while ((eop_desc
->wb
.status
& cpu_to_le32(IXGBE_TXD_STAT_DD
)) &&
206 (count
< tx_ring
->work_limit
)) {
207 bool cleaned
= false;
208 rmb(); /* read buffer_info after eop_desc */
209 /* eop could change between read and DD-check */
210 if (unlikely(eop
!= tx_ring
->tx_buffer_info
[i
].next_to_watch
))
212 for ( ; !cleaned
; count
++) {
214 tx_desc
= IXGBE_TX_DESC_ADV(*tx_ring
, i
);
215 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
216 cleaned
= (i
== eop
);
217 skb
= tx_buffer_info
->skb
;
219 if (cleaned
&& skb
) {
220 unsigned int segs
, bytecount
;
222 /* gso_segs is currently only valid for tcp */
223 segs
= skb_shinfo(skb
)->gso_segs
?: 1;
224 /* multiply data chunks by size of headers */
225 bytecount
= ((segs
- 1) * skb_headlen(skb
)) +
227 total_packets
+= segs
;
228 total_bytes
+= bytecount
;
231 ixgbevf_unmap_and_free_tx_resource(adapter
,
234 tx_desc
->wb
.status
= 0;
237 if (i
== tx_ring
->count
)
242 eop
= tx_ring
->tx_buffer_info
[i
].next_to_watch
;
243 eop_desc
= IXGBE_TX_DESC_ADV(*tx_ring
, eop
);
246 tx_ring
->next_to_clean
= i
;
248 #define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
249 if (unlikely(count
&& netif_carrier_ok(netdev
) &&
250 (IXGBE_DESC_UNUSED(tx_ring
) >= TX_WAKE_THRESHOLD
))) {
251 /* Make sure that anybody stopping the queue after this
252 * sees the new next_to_clean.
256 if (__netif_subqueue_stopped(netdev
, tx_ring
->queue_index
) &&
257 !test_bit(__IXGBEVF_DOWN
, &adapter
->state
)) {
258 netif_wake_subqueue(netdev
, tx_ring
->queue_index
);
259 ++adapter
->restart_queue
;
262 if (netif_queue_stopped(netdev
) &&
263 !test_bit(__IXGBEVF_DOWN
, &adapter
->state
)) {
264 netif_wake_queue(netdev
);
265 ++adapter
->restart_queue
;
270 /* re-arm the interrupt */
271 if ((count
>= tx_ring
->work_limit
) &&
272 (!test_bit(__IXGBEVF_DOWN
, &adapter
->state
))) {
273 IXGBE_WRITE_REG(hw
, IXGBE_VTEICS
, tx_ring
->v_idx
);
276 u64_stats_update_begin(&tx_ring
->syncp
);
277 tx_ring
->total_bytes
+= total_bytes
;
278 tx_ring
->total_packets
+= total_packets
;
279 u64_stats_update_end(&tx_ring
->syncp
);
281 return count
< tx_ring
->work_limit
;
285 * ixgbevf_receive_skb - Send a completed packet up the stack
286 * @q_vector: structure containing interrupt and ring information
287 * @skb: packet to send up
288 * @status: hardware indication of status of receive
289 * @rx_ring: rx descriptor ring (for a specific queue) to setup
290 * @rx_desc: rx descriptor
292 static void ixgbevf_receive_skb(struct ixgbevf_q_vector
*q_vector
,
293 struct sk_buff
*skb
, u8 status
,
294 struct ixgbevf_ring
*ring
,
295 union ixgbe_adv_rx_desc
*rx_desc
)
297 struct ixgbevf_adapter
*adapter
= q_vector
->adapter
;
298 bool is_vlan
= (status
& IXGBE_RXD_STAT_VP
);
299 u16 tag
= le16_to_cpu(rx_desc
->wb
.upper
.vlan
);
301 if (is_vlan
&& test_bit(tag
, adapter
->active_vlans
))
302 __vlan_hwaccel_put_tag(skb
, tag
);
304 if (!(adapter
->flags
& IXGBE_FLAG_IN_NETPOLL
))
305 napi_gro_receive(&q_vector
->napi
, skb
);
311 * ixgbevf_rx_checksum - indicate in skb if hw indicated a good cksum
312 * @adapter: address of board private structure
313 * @status_err: hardware indication of status of receive
314 * @skb: skb currently being received and modified
316 static inline void ixgbevf_rx_checksum(struct ixgbevf_adapter
*adapter
,
317 u32 status_err
, struct sk_buff
*skb
)
319 skb_checksum_none_assert(skb
);
321 /* Rx csum disabled */
322 if (!(adapter
->flags
& IXGBE_FLAG_RX_CSUM_ENABLED
))
325 /* if IP and error */
326 if ((status_err
& IXGBE_RXD_STAT_IPCS
) &&
327 (status_err
& IXGBE_RXDADV_ERR_IPE
)) {
328 adapter
->hw_csum_rx_error
++;
332 if (!(status_err
& IXGBE_RXD_STAT_L4CS
))
335 if (status_err
& IXGBE_RXDADV_ERR_TCPE
) {
336 adapter
->hw_csum_rx_error
++;
340 /* It must be a TCP or UDP packet with a valid checksum */
341 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
342 adapter
->hw_csum_rx_good
++;
346 * ixgbevf_alloc_rx_buffers - Replace used receive buffers; packet split
347 * @adapter: address of board private structure
349 static void ixgbevf_alloc_rx_buffers(struct ixgbevf_adapter
*adapter
,
350 struct ixgbevf_ring
*rx_ring
,
353 struct pci_dev
*pdev
= adapter
->pdev
;
354 union ixgbe_adv_rx_desc
*rx_desc
;
355 struct ixgbevf_rx_buffer
*bi
;
358 unsigned int bufsz
= rx_ring
->rx_buf_len
+ NET_IP_ALIGN
;
360 i
= rx_ring
->next_to_use
;
361 bi
= &rx_ring
->rx_buffer_info
[i
];
363 while (cleaned_count
--) {
364 rx_desc
= IXGBE_RX_DESC_ADV(*rx_ring
, i
);
367 (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
)) {
369 bi
->page
= alloc_page(GFP_ATOMIC
| __GFP_COLD
);
371 adapter
->alloc_rx_page_failed
++;
376 /* use a half page if we're re-using */
377 bi
->page_offset
^= (PAGE_SIZE
/ 2);
380 bi
->page_dma
= dma_map_page(&pdev
->dev
, bi
->page
,
388 skb
= netdev_alloc_skb(adapter
->netdev
,
392 adapter
->alloc_rx_buff_failed
++;
397 * Make buffer alignment 2 beyond a 16 byte boundary
398 * this will result in a 16 byte aligned IP header after
399 * the 14 byte MAC header is removed
401 skb_reserve(skb
, NET_IP_ALIGN
);
406 bi
->dma
= dma_map_single(&pdev
->dev
, skb
->data
,
410 /* Refresh the desc even if buffer_addrs didn't change because
411 * each write-back erases this info. */
412 if (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
) {
413 rx_desc
->read
.pkt_addr
= cpu_to_le64(bi
->page_dma
);
414 rx_desc
->read
.hdr_addr
= cpu_to_le64(bi
->dma
);
416 rx_desc
->read
.pkt_addr
= cpu_to_le64(bi
->dma
);
420 if (i
== rx_ring
->count
)
422 bi
= &rx_ring
->rx_buffer_info
[i
];
426 if (rx_ring
->next_to_use
!= i
) {
427 rx_ring
->next_to_use
= i
;
429 i
= (rx_ring
->count
- 1);
431 ixgbevf_release_rx_desc(&adapter
->hw
, rx_ring
, i
);
435 static inline void ixgbevf_irq_enable_queues(struct ixgbevf_adapter
*adapter
,
439 struct ixgbe_hw
*hw
= &adapter
->hw
;
441 mask
= (qmask
& 0xFFFFFFFF);
442 IXGBE_WRITE_REG(hw
, IXGBE_VTEIMS
, mask
);
445 static inline u16
ixgbevf_get_hdr_info(union ixgbe_adv_rx_desc
*rx_desc
)
447 return rx_desc
->wb
.lower
.lo_dword
.hs_rss
.hdr_info
;
450 static inline u16
ixgbevf_get_pkt_info(union ixgbe_adv_rx_desc
*rx_desc
)
452 return rx_desc
->wb
.lower
.lo_dword
.hs_rss
.pkt_info
;
455 static bool ixgbevf_clean_rx_irq(struct ixgbevf_q_vector
*q_vector
,
456 struct ixgbevf_ring
*rx_ring
,
457 int *work_done
, int work_to_do
)
459 struct ixgbevf_adapter
*adapter
= q_vector
->adapter
;
460 struct pci_dev
*pdev
= adapter
->pdev
;
461 union ixgbe_adv_rx_desc
*rx_desc
, *next_rxd
;
462 struct ixgbevf_rx_buffer
*rx_buffer_info
, *next_buffer
;
467 bool cleaned
= false;
468 int cleaned_count
= 0;
469 unsigned int total_rx_bytes
= 0, total_rx_packets
= 0;
471 i
= rx_ring
->next_to_clean
;
472 rx_desc
= IXGBE_RX_DESC_ADV(*rx_ring
, i
);
473 staterr
= le32_to_cpu(rx_desc
->wb
.upper
.status_error
);
474 rx_buffer_info
= &rx_ring
->rx_buffer_info
[i
];
476 while (staterr
& IXGBE_RXD_STAT_DD
) {
478 if (*work_done
>= work_to_do
)
482 rmb(); /* read descriptor and rx_buffer_info after status DD */
483 if (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
) {
484 hdr_info
= le16_to_cpu(ixgbevf_get_hdr_info(rx_desc
));
485 len
= (hdr_info
& IXGBE_RXDADV_HDRBUFLEN_MASK
) >>
486 IXGBE_RXDADV_HDRBUFLEN_SHIFT
;
487 if (hdr_info
& IXGBE_RXDADV_SPH
)
488 adapter
->rx_hdr_split
++;
489 if (len
> IXGBEVF_RX_HDR_SIZE
)
490 len
= IXGBEVF_RX_HDR_SIZE
;
491 upper_len
= le16_to_cpu(rx_desc
->wb
.upper
.length
);
493 len
= le16_to_cpu(rx_desc
->wb
.upper
.length
);
496 skb
= rx_buffer_info
->skb
;
497 prefetch(skb
->data
- NET_IP_ALIGN
);
498 rx_buffer_info
->skb
= NULL
;
500 if (rx_buffer_info
->dma
) {
501 dma_unmap_single(&pdev
->dev
, rx_buffer_info
->dma
,
504 rx_buffer_info
->dma
= 0;
509 dma_unmap_page(&pdev
->dev
, rx_buffer_info
->page_dma
,
510 PAGE_SIZE
/ 2, DMA_FROM_DEVICE
);
511 rx_buffer_info
->page_dma
= 0;
512 skb_fill_page_desc(skb
, skb_shinfo(skb
)->nr_frags
,
513 rx_buffer_info
->page
,
514 rx_buffer_info
->page_offset
,
517 if ((rx_ring
->rx_buf_len
> (PAGE_SIZE
/ 2)) ||
518 (page_count(rx_buffer_info
->page
) != 1))
519 rx_buffer_info
->page
= NULL
;
521 get_page(rx_buffer_info
->page
);
523 skb
->len
+= upper_len
;
524 skb
->data_len
+= upper_len
;
525 skb
->truesize
+= upper_len
;
529 if (i
== rx_ring
->count
)
532 next_rxd
= IXGBE_RX_DESC_ADV(*rx_ring
, i
);
536 next_buffer
= &rx_ring
->rx_buffer_info
[i
];
538 if (!(staterr
& IXGBE_RXD_STAT_EOP
)) {
539 if (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
) {
540 rx_buffer_info
->skb
= next_buffer
->skb
;
541 rx_buffer_info
->dma
= next_buffer
->dma
;
542 next_buffer
->skb
= skb
;
543 next_buffer
->dma
= 0;
545 skb
->next
= next_buffer
->skb
;
546 skb
->next
->prev
= skb
;
548 adapter
->non_eop_descs
++;
552 /* ERR_MASK will only have valid bits if EOP set */
553 if (unlikely(staterr
& IXGBE_RXDADV_ERR_FRAME_ERR_MASK
)) {
554 dev_kfree_skb_irq(skb
);
558 ixgbevf_rx_checksum(adapter
, staterr
, skb
);
560 /* probably a little skewed due to removing CRC */
561 total_rx_bytes
+= skb
->len
;
565 * Work around issue of some types of VM to VM loop back
566 * packets not getting split correctly
568 if (staterr
& IXGBE_RXD_STAT_LB
) {
569 u32 header_fixup_len
= skb_headlen(skb
);
570 if (header_fixup_len
< 14)
571 skb_push(skb
, header_fixup_len
);
573 skb
->protocol
= eth_type_trans(skb
, adapter
->netdev
);
575 ixgbevf_receive_skb(q_vector
, skb
, staterr
, rx_ring
, rx_desc
);
578 rx_desc
->wb
.upper
.status_error
= 0;
580 /* return some buffers to hardware, one at a time is too slow */
581 if (cleaned_count
>= IXGBEVF_RX_BUFFER_WRITE
) {
582 ixgbevf_alloc_rx_buffers(adapter
, rx_ring
,
587 /* use prefetched values */
589 rx_buffer_info
= &rx_ring
->rx_buffer_info
[i
];
591 staterr
= le32_to_cpu(rx_desc
->wb
.upper
.status_error
);
594 rx_ring
->next_to_clean
= i
;
595 cleaned_count
= IXGBE_DESC_UNUSED(rx_ring
);
598 ixgbevf_alloc_rx_buffers(adapter
, rx_ring
, cleaned_count
);
600 u64_stats_update_begin(&rx_ring
->syncp
);
601 rx_ring
->total_packets
+= total_rx_packets
;
602 rx_ring
->total_bytes
+= total_rx_bytes
;
603 u64_stats_update_end(&rx_ring
->syncp
);
609 * ixgbevf_clean_rxonly - msix (aka one shot) rx clean routine
610 * @napi: napi struct with our devices info in it
611 * @budget: amount of work driver is allowed to do this pass, in packets
613 * This function is optimized for cleaning one queue only on a single
616 static int ixgbevf_clean_rxonly(struct napi_struct
*napi
, int budget
)
618 struct ixgbevf_q_vector
*q_vector
=
619 container_of(napi
, struct ixgbevf_q_vector
, napi
);
620 struct ixgbevf_adapter
*adapter
= q_vector
->adapter
;
621 struct ixgbevf_ring
*rx_ring
= NULL
;
625 r_idx
= find_first_bit(q_vector
->rxr_idx
, adapter
->num_rx_queues
);
626 rx_ring
= &(adapter
->rx_ring
[r_idx
]);
628 ixgbevf_clean_rx_irq(q_vector
, rx_ring
, &work_done
, budget
);
630 /* If all Rx work done, exit the polling mode */
631 if (work_done
< budget
) {
633 if (adapter
->itr_setting
& 1)
634 ixgbevf_set_itr_msix(q_vector
);
635 if (!test_bit(__IXGBEVF_DOWN
, &adapter
->state
))
636 ixgbevf_irq_enable_queues(adapter
, rx_ring
->v_idx
);
643 * ixgbevf_clean_rxonly_many - msix (aka one shot) rx clean routine
644 * @napi: napi struct with our devices info in it
645 * @budget: amount of work driver is allowed to do this pass, in packets
647 * This function will clean more than one rx queue associated with a
650 static int ixgbevf_clean_rxonly_many(struct napi_struct
*napi
, int budget
)
652 struct ixgbevf_q_vector
*q_vector
=
653 container_of(napi
, struct ixgbevf_q_vector
, napi
);
654 struct ixgbevf_adapter
*adapter
= q_vector
->adapter
;
655 struct ixgbevf_ring
*rx_ring
= NULL
;
656 int work_done
= 0, i
;
660 /* attempt to distribute budget to each queue fairly, but don't allow
661 * the budget to go below 1 because we'll exit polling */
662 budget
/= (q_vector
->rxr_count
?: 1);
663 budget
= max(budget
, 1);
664 r_idx
= find_first_bit(q_vector
->rxr_idx
, adapter
->num_rx_queues
);
665 for (i
= 0; i
< q_vector
->rxr_count
; i
++) {
666 rx_ring
= &(adapter
->rx_ring
[r_idx
]);
667 ixgbevf_clean_rx_irq(q_vector
, rx_ring
, &work_done
, budget
);
668 enable_mask
|= rx_ring
->v_idx
;
669 r_idx
= find_next_bit(q_vector
->rxr_idx
, adapter
->num_rx_queues
,
673 #ifndef HAVE_NETDEV_NAPI_LIST
674 if (!netif_running(adapter
->netdev
))
678 r_idx
= find_first_bit(q_vector
->rxr_idx
, adapter
->num_rx_queues
);
679 rx_ring
= &(adapter
->rx_ring
[r_idx
]);
681 /* If all Rx work done, exit the polling mode */
682 if (work_done
< budget
) {
684 if (adapter
->itr_setting
& 1)
685 ixgbevf_set_itr_msix(q_vector
);
686 if (!test_bit(__IXGBEVF_DOWN
, &adapter
->state
))
687 ixgbevf_irq_enable_queues(adapter
, enable_mask
);
695 * ixgbevf_configure_msix - Configure MSI-X hardware
696 * @adapter: board private structure
698 * ixgbevf_configure_msix sets up the hardware to properly generate MSI-X
701 static void ixgbevf_configure_msix(struct ixgbevf_adapter
*adapter
)
703 struct ixgbevf_q_vector
*q_vector
;
704 struct ixgbe_hw
*hw
= &adapter
->hw
;
705 int i
, j
, q_vectors
, v_idx
, r_idx
;
708 q_vectors
= adapter
->num_msix_vectors
- NON_Q_VECTORS
;
711 * Populate the IVAR table and set the ITR values to the
712 * corresponding register.
714 for (v_idx
= 0; v_idx
< q_vectors
; v_idx
++) {
715 q_vector
= adapter
->q_vector
[v_idx
];
716 /* XXX for_each_set_bit(...) */
717 r_idx
= find_first_bit(q_vector
->rxr_idx
,
718 adapter
->num_rx_queues
);
720 for (i
= 0; i
< q_vector
->rxr_count
; i
++) {
721 j
= adapter
->rx_ring
[r_idx
].reg_idx
;
722 ixgbevf_set_ivar(adapter
, 0, j
, v_idx
);
723 r_idx
= find_next_bit(q_vector
->rxr_idx
,
724 adapter
->num_rx_queues
,
727 r_idx
= find_first_bit(q_vector
->txr_idx
,
728 adapter
->num_tx_queues
);
730 for (i
= 0; i
< q_vector
->txr_count
; i
++) {
731 j
= adapter
->tx_ring
[r_idx
].reg_idx
;
732 ixgbevf_set_ivar(adapter
, 1, j
, v_idx
);
733 r_idx
= find_next_bit(q_vector
->txr_idx
,
734 adapter
->num_tx_queues
,
738 /* if this is a tx only vector halve the interrupt rate */
739 if (q_vector
->txr_count
&& !q_vector
->rxr_count
)
740 q_vector
->eitr
= (adapter
->eitr_param
>> 1);
741 else if (q_vector
->rxr_count
)
743 q_vector
->eitr
= adapter
->eitr_param
;
745 ixgbevf_write_eitr(adapter
, v_idx
, q_vector
->eitr
);
748 ixgbevf_set_ivar(adapter
, -1, 1, v_idx
);
750 /* set up to autoclear timer, and the vectors */
751 mask
= IXGBE_EIMS_ENABLE_MASK
;
752 mask
&= ~IXGBE_EIMS_OTHER
;
753 IXGBE_WRITE_REG(hw
, IXGBE_VTEIAC
, mask
);
760 latency_invalid
= 255
764 * ixgbevf_update_itr - update the dynamic ITR value based on statistics
765 * @adapter: pointer to adapter
766 * @eitr: eitr setting (ints per sec) to give last timeslice
767 * @itr_setting: current throttle rate in ints/second
768 * @packets: the number of packets during this measurement interval
769 * @bytes: the number of bytes during this measurement interval
771 * Stores a new ITR value based on packets and byte
772 * counts during the last interrupt. The advantage of per interrupt
773 * computation is faster updates and more accurate ITR for the current
774 * traffic pattern. Constants in this function were computed
775 * based on theoretical maximum wire speed and thresholds were set based
776 * on testing data as well as attempting to minimize response time
777 * while increasing bulk throughput.
779 static u8
ixgbevf_update_itr(struct ixgbevf_adapter
*adapter
,
780 u32 eitr
, u8 itr_setting
,
781 int packets
, int bytes
)
783 unsigned int retval
= itr_setting
;
788 goto update_itr_done
;
791 /* simple throttlerate management
792 * 0-20MB/s lowest (100000 ints/s)
793 * 20-100MB/s low (20000 ints/s)
794 * 100-1249MB/s bulk (8000 ints/s)
796 /* what was last interrupt timeslice? */
797 timepassed_us
= 1000000/eitr
;
798 bytes_perint
= bytes
/ timepassed_us
; /* bytes/usec */
800 switch (itr_setting
) {
802 if (bytes_perint
> adapter
->eitr_low
)
803 retval
= low_latency
;
806 if (bytes_perint
> adapter
->eitr_high
)
807 retval
= bulk_latency
;
808 else if (bytes_perint
<= adapter
->eitr_low
)
809 retval
= lowest_latency
;
812 if (bytes_perint
<= adapter
->eitr_high
)
813 retval
= low_latency
;
822 * ixgbevf_write_eitr - write VTEITR register in hardware specific way
823 * @adapter: pointer to adapter struct
824 * @v_idx: vector index into q_vector array
825 * @itr_reg: new value to be written in *register* format, not ints/s
827 * This function is made to be called by ethtool and by the driver
828 * when it needs to update VTEITR registers at runtime. Hardware
829 * specific quirks/differences are taken care of here.
831 static void ixgbevf_write_eitr(struct ixgbevf_adapter
*adapter
, int v_idx
,
834 struct ixgbe_hw
*hw
= &adapter
->hw
;
836 itr_reg
= EITR_INTS_PER_SEC_TO_REG(itr_reg
);
839 * set the WDIS bit to not clear the timer bits and cause an
840 * immediate assertion of the interrupt
842 itr_reg
|= IXGBE_EITR_CNT_WDIS
;
844 IXGBE_WRITE_REG(hw
, IXGBE_VTEITR(v_idx
), itr_reg
);
847 static void ixgbevf_set_itr_msix(struct ixgbevf_q_vector
*q_vector
)
849 struct ixgbevf_adapter
*adapter
= q_vector
->adapter
;
851 u8 current_itr
, ret_itr
;
852 int i
, r_idx
, v_idx
= q_vector
->v_idx
;
853 struct ixgbevf_ring
*rx_ring
, *tx_ring
;
855 r_idx
= find_first_bit(q_vector
->txr_idx
, adapter
->num_tx_queues
);
856 for (i
= 0; i
< q_vector
->txr_count
; i
++) {
857 tx_ring
= &(adapter
->tx_ring
[r_idx
]);
858 ret_itr
= ixgbevf_update_itr(adapter
, q_vector
->eitr
,
860 tx_ring
->total_packets
,
861 tx_ring
->total_bytes
);
862 /* if the result for this queue would decrease interrupt
863 * rate for this vector then use that result */
864 q_vector
->tx_itr
= ((q_vector
->tx_itr
> ret_itr
) ?
865 q_vector
->tx_itr
- 1 : ret_itr
);
866 r_idx
= find_next_bit(q_vector
->txr_idx
, adapter
->num_tx_queues
,
870 r_idx
= find_first_bit(q_vector
->rxr_idx
, adapter
->num_rx_queues
);
871 for (i
= 0; i
< q_vector
->rxr_count
; i
++) {
872 rx_ring
= &(adapter
->rx_ring
[r_idx
]);
873 ret_itr
= ixgbevf_update_itr(adapter
, q_vector
->eitr
,
875 rx_ring
->total_packets
,
876 rx_ring
->total_bytes
);
877 /* if the result for this queue would decrease interrupt
878 * rate for this vector then use that result */
879 q_vector
->rx_itr
= ((q_vector
->rx_itr
> ret_itr
) ?
880 q_vector
->rx_itr
- 1 : ret_itr
);
881 r_idx
= find_next_bit(q_vector
->rxr_idx
, adapter
->num_rx_queues
,
885 current_itr
= max(q_vector
->rx_itr
, q_vector
->tx_itr
);
887 switch (current_itr
) {
888 /* counts and packets in update_itr are dependent on these numbers */
893 new_itr
= 20000; /* aka hwitr = ~200 */
901 if (new_itr
!= q_vector
->eitr
) {
904 /* save the algorithm value here, not the smoothed one */
905 q_vector
->eitr
= new_itr
;
906 /* do an exponential smoothing */
907 new_itr
= ((q_vector
->eitr
* 90)/100) + ((new_itr
* 10)/100);
908 itr_reg
= EITR_INTS_PER_SEC_TO_REG(new_itr
);
909 ixgbevf_write_eitr(adapter
, v_idx
, itr_reg
);
913 static irqreturn_t
ixgbevf_msix_mbx(int irq
, void *data
)
915 struct net_device
*netdev
= data
;
916 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
917 struct ixgbe_hw
*hw
= &adapter
->hw
;
920 bool got_ack
= false;
922 eicr
= IXGBE_READ_REG(hw
, IXGBE_VTEICS
);
923 IXGBE_WRITE_REG(hw
, IXGBE_VTEICR
, eicr
);
925 if (!hw
->mbx
.ops
.check_for_ack(hw
))
928 if (!hw
->mbx
.ops
.check_for_msg(hw
)) {
929 hw
->mbx
.ops
.read(hw
, &msg
, 1);
931 if ((msg
& IXGBE_MBVFICR_VFREQ_MASK
) == IXGBE_PF_CONTROL_MSG
)
932 mod_timer(&adapter
->watchdog_timer
,
933 round_jiffies(jiffies
+ 1));
935 if (msg
& IXGBE_VT_MSGTYPE_NACK
)
936 pr_warn("Last Request of type %2.2x to PF Nacked\n",
939 * Restore the PFSTS bit in case someone is polling for a
940 * return message from the PF
942 hw
->mbx
.v2p_mailbox
|= IXGBE_VFMAILBOX_PFSTS
;
946 * checking for the ack clears the PFACK bit. Place
947 * it back in the v2p_mailbox cache so that anyone
948 * polling for an ack will not miss it
951 hw
->mbx
.v2p_mailbox
|= IXGBE_VFMAILBOX_PFACK
;
956 static irqreturn_t
ixgbevf_msix_clean_tx(int irq
, void *data
)
958 struct ixgbevf_q_vector
*q_vector
= data
;
959 struct ixgbevf_adapter
*adapter
= q_vector
->adapter
;
960 struct ixgbevf_ring
*tx_ring
;
963 if (!q_vector
->txr_count
)
966 r_idx
= find_first_bit(q_vector
->txr_idx
, adapter
->num_tx_queues
);
967 for (i
= 0; i
< q_vector
->txr_count
; i
++) {
968 tx_ring
= &(adapter
->tx_ring
[r_idx
]);
969 tx_ring
->total_bytes
= 0;
970 tx_ring
->total_packets
= 0;
971 ixgbevf_clean_tx_irq(adapter
, tx_ring
);
972 r_idx
= find_next_bit(q_vector
->txr_idx
, adapter
->num_tx_queues
,
976 if (adapter
->itr_setting
& 1)
977 ixgbevf_set_itr_msix(q_vector
);
983 * ixgbevf_msix_clean_rx - single unshared vector rx clean (all queues)
985 * @data: pointer to our q_vector struct for this interrupt vector
987 static irqreturn_t
ixgbevf_msix_clean_rx(int irq
, void *data
)
989 struct ixgbevf_q_vector
*q_vector
= data
;
990 struct ixgbevf_adapter
*adapter
= q_vector
->adapter
;
991 struct ixgbe_hw
*hw
= &adapter
->hw
;
992 struct ixgbevf_ring
*rx_ring
;
996 r_idx
= find_first_bit(q_vector
->rxr_idx
, adapter
->num_rx_queues
);
997 for (i
= 0; i
< q_vector
->rxr_count
; i
++) {
998 rx_ring
= &(adapter
->rx_ring
[r_idx
]);
999 rx_ring
->total_bytes
= 0;
1000 rx_ring
->total_packets
= 0;
1001 r_idx
= find_next_bit(q_vector
->rxr_idx
, adapter
->num_rx_queues
,
1005 if (!q_vector
->rxr_count
)
1008 r_idx
= find_first_bit(q_vector
->rxr_idx
, adapter
->num_rx_queues
);
1009 rx_ring
= &(adapter
->rx_ring
[r_idx
]);
1010 /* disable interrupts on this vector only */
1011 IXGBE_WRITE_REG(hw
, IXGBE_VTEIMC
, rx_ring
->v_idx
);
1012 napi_schedule(&q_vector
->napi
);
1018 static irqreturn_t
ixgbevf_msix_clean_many(int irq
, void *data
)
1020 ixgbevf_msix_clean_rx(irq
, data
);
1021 ixgbevf_msix_clean_tx(irq
, data
);
1026 static inline void map_vector_to_rxq(struct ixgbevf_adapter
*a
, int v_idx
,
1029 struct ixgbevf_q_vector
*q_vector
= a
->q_vector
[v_idx
];
1031 set_bit(r_idx
, q_vector
->rxr_idx
);
1032 q_vector
->rxr_count
++;
1033 a
->rx_ring
[r_idx
].v_idx
= 1 << v_idx
;
1036 static inline void map_vector_to_txq(struct ixgbevf_adapter
*a
, int v_idx
,
1039 struct ixgbevf_q_vector
*q_vector
= a
->q_vector
[v_idx
];
1041 set_bit(t_idx
, q_vector
->txr_idx
);
1042 q_vector
->txr_count
++;
1043 a
->tx_ring
[t_idx
].v_idx
= 1 << v_idx
;
1047 * ixgbevf_map_rings_to_vectors - Maps descriptor rings to vectors
1048 * @adapter: board private structure to initialize
1050 * This function maps descriptor rings to the queue-specific vectors
1051 * we were allotted through the MSI-X enabling code. Ideally, we'd have
1052 * one vector per ring/queue, but on a constrained vector budget, we
1053 * group the rings as "efficiently" as possible. You would add new
1054 * mapping configurations in here.
1056 static int ixgbevf_map_rings_to_vectors(struct ixgbevf_adapter
*adapter
)
1060 int rxr_idx
= 0, txr_idx
= 0;
1061 int rxr_remaining
= adapter
->num_rx_queues
;
1062 int txr_remaining
= adapter
->num_tx_queues
;
1067 q_vectors
= adapter
->num_msix_vectors
- NON_Q_VECTORS
;
1070 * The ideal configuration...
1071 * We have enough vectors to map one per queue.
1073 if (q_vectors
== adapter
->num_rx_queues
+ adapter
->num_tx_queues
) {
1074 for (; rxr_idx
< rxr_remaining
; v_start
++, rxr_idx
++)
1075 map_vector_to_rxq(adapter
, v_start
, rxr_idx
);
1077 for (; txr_idx
< txr_remaining
; v_start
++, txr_idx
++)
1078 map_vector_to_txq(adapter
, v_start
, txr_idx
);
1083 * If we don't have enough vectors for a 1-to-1
1084 * mapping, we'll have to group them so there are
1085 * multiple queues per vector.
1087 /* Re-adjusting *qpv takes care of the remainder. */
1088 for (i
= v_start
; i
< q_vectors
; i
++) {
1089 rqpv
= DIV_ROUND_UP(rxr_remaining
, q_vectors
- i
);
1090 for (j
= 0; j
< rqpv
; j
++) {
1091 map_vector_to_rxq(adapter
, i
, rxr_idx
);
1096 for (i
= v_start
; i
< q_vectors
; i
++) {
1097 tqpv
= DIV_ROUND_UP(txr_remaining
, q_vectors
- i
);
1098 for (j
= 0; j
< tqpv
; j
++) {
1099 map_vector_to_txq(adapter
, i
, txr_idx
);
1110 * ixgbevf_request_msix_irqs - Initialize MSI-X interrupts
1111 * @adapter: board private structure
1113 * ixgbevf_request_msix_irqs allocates MSI-X vectors and requests
1114 * interrupts from the kernel.
1116 static int ixgbevf_request_msix_irqs(struct ixgbevf_adapter
*adapter
)
1118 struct net_device
*netdev
= adapter
->netdev
;
1119 irqreturn_t (*handler
)(int, void *);
1120 int i
, vector
, q_vectors
, err
;
1123 /* Decrement for Other and TCP Timer vectors */
1124 q_vectors
= adapter
->num_msix_vectors
- NON_Q_VECTORS
;
1126 #define SET_HANDLER(_v) (((_v)->rxr_count && (_v)->txr_count) \
1127 ? &ixgbevf_msix_clean_many : \
1128 (_v)->rxr_count ? &ixgbevf_msix_clean_rx : \
1129 (_v)->txr_count ? &ixgbevf_msix_clean_tx : \
1131 for (vector
= 0; vector
< q_vectors
; vector
++) {
1132 handler
= SET_HANDLER(adapter
->q_vector
[vector
]);
1134 if (handler
== &ixgbevf_msix_clean_rx
) {
1135 sprintf(adapter
->name
[vector
], "%s-%s-%d",
1136 netdev
->name
, "rx", ri
++);
1137 } else if (handler
== &ixgbevf_msix_clean_tx
) {
1138 sprintf(adapter
->name
[vector
], "%s-%s-%d",
1139 netdev
->name
, "tx", ti
++);
1140 } else if (handler
== &ixgbevf_msix_clean_many
) {
1141 sprintf(adapter
->name
[vector
], "%s-%s-%d",
1142 netdev
->name
, "TxRx", vector
);
1144 /* skip this unused q_vector */
1147 err
= request_irq(adapter
->msix_entries
[vector
].vector
,
1148 handler
, 0, adapter
->name
[vector
],
1149 adapter
->q_vector
[vector
]);
1151 hw_dbg(&adapter
->hw
,
1152 "request_irq failed for MSIX interrupt "
1153 "Error: %d\n", err
);
1154 goto free_queue_irqs
;
1158 sprintf(adapter
->name
[vector
], "%s:mbx", netdev
->name
);
1159 err
= request_irq(adapter
->msix_entries
[vector
].vector
,
1160 &ixgbevf_msix_mbx
, 0, adapter
->name
[vector
], netdev
);
1162 hw_dbg(&adapter
->hw
,
1163 "request_irq for msix_mbx failed: %d\n", err
);
1164 goto free_queue_irqs
;
1170 for (i
= vector
- 1; i
>= 0; i
--)
1171 free_irq(adapter
->msix_entries
[--vector
].vector
,
1172 &(adapter
->q_vector
[i
]));
1173 pci_disable_msix(adapter
->pdev
);
1174 kfree(adapter
->msix_entries
);
1175 adapter
->msix_entries
= NULL
;
1179 static inline void ixgbevf_reset_q_vectors(struct ixgbevf_adapter
*adapter
)
1181 int i
, q_vectors
= adapter
->num_msix_vectors
- NON_Q_VECTORS
;
1183 for (i
= 0; i
< q_vectors
; i
++) {
1184 struct ixgbevf_q_vector
*q_vector
= adapter
->q_vector
[i
];
1185 bitmap_zero(q_vector
->rxr_idx
, MAX_RX_QUEUES
);
1186 bitmap_zero(q_vector
->txr_idx
, MAX_TX_QUEUES
);
1187 q_vector
->rxr_count
= 0;
1188 q_vector
->txr_count
= 0;
1189 q_vector
->eitr
= adapter
->eitr_param
;
1194 * ixgbevf_request_irq - initialize interrupts
1195 * @adapter: board private structure
1197 * Attempts to configure interrupts using the best available
1198 * capabilities of the hardware and kernel.
1200 static int ixgbevf_request_irq(struct ixgbevf_adapter
*adapter
)
1204 err
= ixgbevf_request_msix_irqs(adapter
);
1207 hw_dbg(&adapter
->hw
,
1208 "request_irq failed, Error %d\n", err
);
1213 static void ixgbevf_free_irq(struct ixgbevf_adapter
*adapter
)
1215 struct net_device
*netdev
= adapter
->netdev
;
1218 q_vectors
= adapter
->num_msix_vectors
;
1222 free_irq(adapter
->msix_entries
[i
].vector
, netdev
);
1225 for (; i
>= 0; i
--) {
1226 free_irq(adapter
->msix_entries
[i
].vector
,
1227 adapter
->q_vector
[i
]);
1230 ixgbevf_reset_q_vectors(adapter
);
1234 * ixgbevf_irq_disable - Mask off interrupt generation on the NIC
1235 * @adapter: board private structure
1237 static inline void ixgbevf_irq_disable(struct ixgbevf_adapter
*adapter
)
1240 struct ixgbe_hw
*hw
= &adapter
->hw
;
1242 IXGBE_WRITE_REG(hw
, IXGBE_VTEIMC
, ~0);
1244 IXGBE_WRITE_FLUSH(hw
);
1246 for (i
= 0; i
< adapter
->num_msix_vectors
; i
++)
1247 synchronize_irq(adapter
->msix_entries
[i
].vector
);
1251 * ixgbevf_irq_enable - Enable default interrupt generation settings
1252 * @adapter: board private structure
1254 static inline void ixgbevf_irq_enable(struct ixgbevf_adapter
*adapter
,
1255 bool queues
, bool flush
)
1257 struct ixgbe_hw
*hw
= &adapter
->hw
;
1261 mask
= (IXGBE_EIMS_ENABLE_MASK
& ~IXGBE_EIMS_RTX_QUEUE
);
1264 IXGBE_WRITE_REG(hw
, IXGBE_VTEIMS
, mask
);
1267 ixgbevf_irq_enable_queues(adapter
, qmask
);
1270 IXGBE_WRITE_FLUSH(hw
);
1274 * ixgbevf_configure_tx - Configure 82599 VF Transmit Unit after Reset
1275 * @adapter: board private structure
1277 * Configure the Tx unit of the MAC after a reset.
1279 static void ixgbevf_configure_tx(struct ixgbevf_adapter
*adapter
)
1282 struct ixgbe_hw
*hw
= &adapter
->hw
;
1283 u32 i
, j
, tdlen
, txctrl
;
1285 /* Setup the HW Tx Head and Tail descriptor pointers */
1286 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
1287 struct ixgbevf_ring
*ring
= &adapter
->tx_ring
[i
];
1290 tdlen
= ring
->count
* sizeof(union ixgbe_adv_tx_desc
);
1291 IXGBE_WRITE_REG(hw
, IXGBE_VFTDBAL(j
),
1292 (tdba
& DMA_BIT_MASK(32)));
1293 IXGBE_WRITE_REG(hw
, IXGBE_VFTDBAH(j
), (tdba
>> 32));
1294 IXGBE_WRITE_REG(hw
, IXGBE_VFTDLEN(j
), tdlen
);
1295 IXGBE_WRITE_REG(hw
, IXGBE_VFTDH(j
), 0);
1296 IXGBE_WRITE_REG(hw
, IXGBE_VFTDT(j
), 0);
1297 adapter
->tx_ring
[i
].head
= IXGBE_VFTDH(j
);
1298 adapter
->tx_ring
[i
].tail
= IXGBE_VFTDT(j
);
1299 /* Disable Tx Head Writeback RO bit, since this hoses
1300 * bookkeeping if things aren't delivered in order.
1302 txctrl
= IXGBE_READ_REG(hw
, IXGBE_VFDCA_TXCTRL(j
));
1303 txctrl
&= ~IXGBE_DCA_TXCTRL_TX_WB_RO_EN
;
1304 IXGBE_WRITE_REG(hw
, IXGBE_VFDCA_TXCTRL(j
), txctrl
);
1308 #define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
1310 static void ixgbevf_configure_srrctl(struct ixgbevf_adapter
*adapter
, int index
)
1312 struct ixgbevf_ring
*rx_ring
;
1313 struct ixgbe_hw
*hw
= &adapter
->hw
;
1316 rx_ring
= &adapter
->rx_ring
[index
];
1318 srrctl
= IXGBE_SRRCTL_DROP_EN
;
1320 if (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
) {
1321 u16 bufsz
= IXGBEVF_RXBUFFER_2048
;
1322 /* grow the amount we can receive on large page machines */
1323 if (bufsz
< (PAGE_SIZE
/ 2))
1324 bufsz
= (PAGE_SIZE
/ 2);
1325 /* cap the bufsz at our largest descriptor size */
1326 bufsz
= min((u16
)IXGBEVF_MAX_RXBUFFER
, bufsz
);
1328 srrctl
|= bufsz
>> IXGBE_SRRCTL_BSIZEPKT_SHIFT
;
1329 srrctl
|= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS
;
1330 srrctl
|= ((IXGBEVF_RX_HDR_SIZE
<<
1331 IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT
) &
1332 IXGBE_SRRCTL_BSIZEHDR_MASK
);
1334 srrctl
|= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF
;
1336 if (rx_ring
->rx_buf_len
== MAXIMUM_ETHERNET_VLAN_SIZE
)
1337 srrctl
|= IXGBEVF_RXBUFFER_2048
>>
1338 IXGBE_SRRCTL_BSIZEPKT_SHIFT
;
1340 srrctl
|= rx_ring
->rx_buf_len
>>
1341 IXGBE_SRRCTL_BSIZEPKT_SHIFT
;
1343 IXGBE_WRITE_REG(hw
, IXGBE_VFSRRCTL(index
), srrctl
);
1347 * ixgbevf_configure_rx - Configure 82599 VF Receive Unit after Reset
1348 * @adapter: board private structure
1350 * Configure the Rx unit of the MAC after a reset.
1352 static void ixgbevf_configure_rx(struct ixgbevf_adapter
*adapter
)
1355 struct ixgbe_hw
*hw
= &adapter
->hw
;
1356 struct net_device
*netdev
= adapter
->netdev
;
1357 int max_frame
= netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
1362 /* Decide whether to use packet split mode or not */
1363 if (netdev
->mtu
> ETH_DATA_LEN
) {
1364 if (adapter
->flags
& IXGBE_FLAG_RX_PS_CAPABLE
)
1365 adapter
->flags
|= IXGBE_FLAG_RX_PS_ENABLED
;
1367 adapter
->flags
&= ~IXGBE_FLAG_RX_PS_ENABLED
;
1369 if (adapter
->flags
& IXGBE_FLAG_RX_1BUF_CAPABLE
)
1370 adapter
->flags
&= ~IXGBE_FLAG_RX_PS_ENABLED
;
1372 adapter
->flags
|= IXGBE_FLAG_RX_PS_ENABLED
;
1375 /* Set the RX buffer length according to the mode */
1376 if (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
) {
1377 /* PSRTYPE must be initialized in 82599 */
1378 u32 psrtype
= IXGBE_PSRTYPE_TCPHDR
|
1379 IXGBE_PSRTYPE_UDPHDR
|
1380 IXGBE_PSRTYPE_IPV4HDR
|
1381 IXGBE_PSRTYPE_IPV6HDR
|
1382 IXGBE_PSRTYPE_L2HDR
;
1383 IXGBE_WRITE_REG(hw
, IXGBE_VFPSRTYPE
, psrtype
);
1384 rx_buf_len
= IXGBEVF_RX_HDR_SIZE
;
1386 IXGBE_WRITE_REG(hw
, IXGBE_VFPSRTYPE
, 0);
1387 if (netdev
->mtu
<= ETH_DATA_LEN
)
1388 rx_buf_len
= MAXIMUM_ETHERNET_VLAN_SIZE
;
1390 rx_buf_len
= ALIGN(max_frame
, 1024);
1393 rdlen
= adapter
->rx_ring
[0].count
* sizeof(union ixgbe_adv_rx_desc
);
1394 /* Setup the HW Rx Head and Tail Descriptor Pointers and
1395 * the Base and Length of the Rx Descriptor Ring */
1396 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
1397 rdba
= adapter
->rx_ring
[i
].dma
;
1398 j
= adapter
->rx_ring
[i
].reg_idx
;
1399 IXGBE_WRITE_REG(hw
, IXGBE_VFRDBAL(j
),
1400 (rdba
& DMA_BIT_MASK(32)));
1401 IXGBE_WRITE_REG(hw
, IXGBE_VFRDBAH(j
), (rdba
>> 32));
1402 IXGBE_WRITE_REG(hw
, IXGBE_VFRDLEN(j
), rdlen
);
1403 IXGBE_WRITE_REG(hw
, IXGBE_VFRDH(j
), 0);
1404 IXGBE_WRITE_REG(hw
, IXGBE_VFRDT(j
), 0);
1405 adapter
->rx_ring
[i
].head
= IXGBE_VFRDH(j
);
1406 adapter
->rx_ring
[i
].tail
= IXGBE_VFRDT(j
);
1407 adapter
->rx_ring
[i
].rx_buf_len
= rx_buf_len
;
1409 ixgbevf_configure_srrctl(adapter
, j
);
1413 static int ixgbevf_vlan_rx_add_vid(struct net_device
*netdev
, u16 vid
)
1415 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
1416 struct ixgbe_hw
*hw
= &adapter
->hw
;
1418 /* add VID to filter table */
1419 if (hw
->mac
.ops
.set_vfta
)
1420 hw
->mac
.ops
.set_vfta(hw
, vid
, 0, true);
1421 set_bit(vid
, adapter
->active_vlans
);
1426 static int ixgbevf_vlan_rx_kill_vid(struct net_device
*netdev
, u16 vid
)
1428 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
1429 struct ixgbe_hw
*hw
= &adapter
->hw
;
1431 /* remove VID from filter table */
1432 if (hw
->mac
.ops
.set_vfta
)
1433 hw
->mac
.ops
.set_vfta(hw
, vid
, 0, false);
1434 clear_bit(vid
, adapter
->active_vlans
);
1439 static void ixgbevf_restore_vlan(struct ixgbevf_adapter
*adapter
)
1443 for_each_set_bit(vid
, adapter
->active_vlans
, VLAN_N_VID
)
1444 ixgbevf_vlan_rx_add_vid(adapter
->netdev
, vid
);
1447 static int ixgbevf_write_uc_addr_list(struct net_device
*netdev
)
1449 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
1450 struct ixgbe_hw
*hw
= &adapter
->hw
;
1453 if ((netdev_uc_count(netdev
)) > 10) {
1454 pr_err("Too many unicast filters - No Space\n");
1458 if (!netdev_uc_empty(netdev
)) {
1459 struct netdev_hw_addr
*ha
;
1460 netdev_for_each_uc_addr(ha
, netdev
) {
1461 hw
->mac
.ops
.set_uc_addr(hw
, ++count
, ha
->addr
);
1466 * If the list is empty then send message to PF driver to
1467 * clear all macvlans on this VF.
1469 hw
->mac
.ops
.set_uc_addr(hw
, 0, NULL
);
1476 * ixgbevf_set_rx_mode - Multicast set
1477 * @netdev: network interface device structure
1479 * The set_rx_method entry point is called whenever the multicast address
1480 * list or the network interface flags are updated. This routine is
1481 * responsible for configuring the hardware for proper multicast mode.
1483 static void ixgbevf_set_rx_mode(struct net_device
*netdev
)
1485 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
1486 struct ixgbe_hw
*hw
= &adapter
->hw
;
1488 /* reprogram multicast list */
1489 if (hw
->mac
.ops
.update_mc_addr_list
)
1490 hw
->mac
.ops
.update_mc_addr_list(hw
, netdev
);
1492 ixgbevf_write_uc_addr_list(netdev
);
1495 static void ixgbevf_napi_enable_all(struct ixgbevf_adapter
*adapter
)
1498 struct ixgbevf_q_vector
*q_vector
;
1499 int q_vectors
= adapter
->num_msix_vectors
- NON_Q_VECTORS
;
1501 for (q_idx
= 0; q_idx
< q_vectors
; q_idx
++) {
1502 struct napi_struct
*napi
;
1503 q_vector
= adapter
->q_vector
[q_idx
];
1504 if (!q_vector
->rxr_count
)
1506 napi
= &q_vector
->napi
;
1507 if (q_vector
->rxr_count
> 1)
1508 napi
->poll
= &ixgbevf_clean_rxonly_many
;
1514 static void ixgbevf_napi_disable_all(struct ixgbevf_adapter
*adapter
)
1517 struct ixgbevf_q_vector
*q_vector
;
1518 int q_vectors
= adapter
->num_msix_vectors
- NON_Q_VECTORS
;
1520 for (q_idx
= 0; q_idx
< q_vectors
; q_idx
++) {
1521 q_vector
= adapter
->q_vector
[q_idx
];
1522 if (!q_vector
->rxr_count
)
1524 napi_disable(&q_vector
->napi
);
1528 static void ixgbevf_configure(struct ixgbevf_adapter
*adapter
)
1530 struct net_device
*netdev
= adapter
->netdev
;
1533 ixgbevf_set_rx_mode(netdev
);
1535 ixgbevf_restore_vlan(adapter
);
1537 ixgbevf_configure_tx(adapter
);
1538 ixgbevf_configure_rx(adapter
);
1539 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
1540 struct ixgbevf_ring
*ring
= &adapter
->rx_ring
[i
];
1541 ixgbevf_alloc_rx_buffers(adapter
, ring
, ring
->count
);
1542 ring
->next_to_use
= ring
->count
- 1;
1543 writel(ring
->next_to_use
, adapter
->hw
.hw_addr
+ ring
->tail
);
1547 #define IXGBE_MAX_RX_DESC_POLL 10
1548 static inline void ixgbevf_rx_desc_queue_enable(struct ixgbevf_adapter
*adapter
,
1551 struct ixgbe_hw
*hw
= &adapter
->hw
;
1552 int j
= adapter
->rx_ring
[rxr
].reg_idx
;
1555 for (k
= 0; k
< IXGBE_MAX_RX_DESC_POLL
; k
++) {
1556 if (IXGBE_READ_REG(hw
, IXGBE_VFRXDCTL(j
)) & IXGBE_RXDCTL_ENABLE
)
1561 if (k
>= IXGBE_MAX_RX_DESC_POLL
) {
1562 hw_dbg(hw
, "RXDCTL.ENABLE on Rx queue %d "
1563 "not set within the polling period\n", rxr
);
1566 ixgbevf_release_rx_desc(&adapter
->hw
, &adapter
->rx_ring
[rxr
],
1567 (adapter
->rx_ring
[rxr
].count
- 1));
1570 static void ixgbevf_save_reset_stats(struct ixgbevf_adapter
*adapter
)
1572 /* Only save pre-reset stats if there are some */
1573 if (adapter
->stats
.vfgprc
|| adapter
->stats
.vfgptc
) {
1574 adapter
->stats
.saved_reset_vfgprc
+= adapter
->stats
.vfgprc
-
1575 adapter
->stats
.base_vfgprc
;
1576 adapter
->stats
.saved_reset_vfgptc
+= adapter
->stats
.vfgptc
-
1577 adapter
->stats
.base_vfgptc
;
1578 adapter
->stats
.saved_reset_vfgorc
+= adapter
->stats
.vfgorc
-
1579 adapter
->stats
.base_vfgorc
;
1580 adapter
->stats
.saved_reset_vfgotc
+= adapter
->stats
.vfgotc
-
1581 adapter
->stats
.base_vfgotc
;
1582 adapter
->stats
.saved_reset_vfmprc
+= adapter
->stats
.vfmprc
-
1583 adapter
->stats
.base_vfmprc
;
1587 static void ixgbevf_init_last_counter_stats(struct ixgbevf_adapter
*adapter
)
1589 struct ixgbe_hw
*hw
= &adapter
->hw
;
1591 adapter
->stats
.last_vfgprc
= IXGBE_READ_REG(hw
, IXGBE_VFGPRC
);
1592 adapter
->stats
.last_vfgorc
= IXGBE_READ_REG(hw
, IXGBE_VFGORC_LSB
);
1593 adapter
->stats
.last_vfgorc
|=
1594 (((u64
)(IXGBE_READ_REG(hw
, IXGBE_VFGORC_MSB
))) << 32);
1595 adapter
->stats
.last_vfgptc
= IXGBE_READ_REG(hw
, IXGBE_VFGPTC
);
1596 adapter
->stats
.last_vfgotc
= IXGBE_READ_REG(hw
, IXGBE_VFGOTC_LSB
);
1597 adapter
->stats
.last_vfgotc
|=
1598 (((u64
)(IXGBE_READ_REG(hw
, IXGBE_VFGOTC_MSB
))) << 32);
1599 adapter
->stats
.last_vfmprc
= IXGBE_READ_REG(hw
, IXGBE_VFMPRC
);
1601 adapter
->stats
.base_vfgprc
= adapter
->stats
.last_vfgprc
;
1602 adapter
->stats
.base_vfgorc
= adapter
->stats
.last_vfgorc
;
1603 adapter
->stats
.base_vfgptc
= adapter
->stats
.last_vfgptc
;
1604 adapter
->stats
.base_vfgotc
= adapter
->stats
.last_vfgotc
;
1605 adapter
->stats
.base_vfmprc
= adapter
->stats
.last_vfmprc
;
1608 static int ixgbevf_up_complete(struct ixgbevf_adapter
*adapter
)
1610 struct net_device
*netdev
= adapter
->netdev
;
1611 struct ixgbe_hw
*hw
= &adapter
->hw
;
1613 int num_rx_rings
= adapter
->num_rx_queues
;
1616 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
1617 j
= adapter
->tx_ring
[i
].reg_idx
;
1618 txdctl
= IXGBE_READ_REG(hw
, IXGBE_VFTXDCTL(j
));
1619 /* enable WTHRESH=8 descriptors, to encourage burst writeback */
1620 txdctl
|= (8 << 16);
1621 IXGBE_WRITE_REG(hw
, IXGBE_VFTXDCTL(j
), txdctl
);
1624 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
1625 j
= adapter
->tx_ring
[i
].reg_idx
;
1626 txdctl
= IXGBE_READ_REG(hw
, IXGBE_VFTXDCTL(j
));
1627 txdctl
|= IXGBE_TXDCTL_ENABLE
;
1628 IXGBE_WRITE_REG(hw
, IXGBE_VFTXDCTL(j
), txdctl
);
1631 for (i
= 0; i
< num_rx_rings
; i
++) {
1632 j
= adapter
->rx_ring
[i
].reg_idx
;
1633 rxdctl
= IXGBE_READ_REG(hw
, IXGBE_VFRXDCTL(j
));
1634 rxdctl
|= IXGBE_RXDCTL_ENABLE
| IXGBE_RXDCTL_VME
;
1635 if (hw
->mac
.type
== ixgbe_mac_X540_vf
) {
1636 rxdctl
&= ~IXGBE_RXDCTL_RLPMLMASK
;
1637 rxdctl
|= ((netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
) |
1638 IXGBE_RXDCTL_RLPML_EN
);
1640 IXGBE_WRITE_REG(hw
, IXGBE_VFRXDCTL(j
), rxdctl
);
1641 ixgbevf_rx_desc_queue_enable(adapter
, i
);
1644 ixgbevf_configure_msix(adapter
);
1646 if (hw
->mac
.ops
.set_rar
) {
1647 if (is_valid_ether_addr(hw
->mac
.addr
))
1648 hw
->mac
.ops
.set_rar(hw
, 0, hw
->mac
.addr
, 0);
1650 hw
->mac
.ops
.set_rar(hw
, 0, hw
->mac
.perm_addr
, 0);
1653 clear_bit(__IXGBEVF_DOWN
, &adapter
->state
);
1654 ixgbevf_napi_enable_all(adapter
);
1656 /* enable transmits */
1657 netif_tx_start_all_queues(netdev
);
1659 ixgbevf_save_reset_stats(adapter
);
1660 ixgbevf_init_last_counter_stats(adapter
);
1662 /* bring the link up in the watchdog, this could race with our first
1663 * link up interrupt but shouldn't be a problem */
1664 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_UPDATE
;
1665 adapter
->link_check_timeout
= jiffies
;
1666 mod_timer(&adapter
->watchdog_timer
, jiffies
);
1670 int ixgbevf_up(struct ixgbevf_adapter
*adapter
)
1673 struct ixgbe_hw
*hw
= &adapter
->hw
;
1675 ixgbevf_configure(adapter
);
1677 err
= ixgbevf_up_complete(adapter
);
1679 /* clear any pending interrupts, may auto mask */
1680 IXGBE_READ_REG(hw
, IXGBE_VTEICR
);
1682 ixgbevf_irq_enable(adapter
, true, true);
1688 * ixgbevf_clean_rx_ring - Free Rx Buffers per Queue
1689 * @adapter: board private structure
1690 * @rx_ring: ring to free buffers from
1692 static void ixgbevf_clean_rx_ring(struct ixgbevf_adapter
*adapter
,
1693 struct ixgbevf_ring
*rx_ring
)
1695 struct pci_dev
*pdev
= adapter
->pdev
;
1699 if (!rx_ring
->rx_buffer_info
)
1702 /* Free all the Rx ring sk_buffs */
1703 for (i
= 0; i
< rx_ring
->count
; i
++) {
1704 struct ixgbevf_rx_buffer
*rx_buffer_info
;
1706 rx_buffer_info
= &rx_ring
->rx_buffer_info
[i
];
1707 if (rx_buffer_info
->dma
) {
1708 dma_unmap_single(&pdev
->dev
, rx_buffer_info
->dma
,
1709 rx_ring
->rx_buf_len
,
1711 rx_buffer_info
->dma
= 0;
1713 if (rx_buffer_info
->skb
) {
1714 struct sk_buff
*skb
= rx_buffer_info
->skb
;
1715 rx_buffer_info
->skb
= NULL
;
1717 struct sk_buff
*this = skb
;
1719 dev_kfree_skb(this);
1722 if (!rx_buffer_info
->page
)
1724 dma_unmap_page(&pdev
->dev
, rx_buffer_info
->page_dma
,
1725 PAGE_SIZE
/ 2, DMA_FROM_DEVICE
);
1726 rx_buffer_info
->page_dma
= 0;
1727 put_page(rx_buffer_info
->page
);
1728 rx_buffer_info
->page
= NULL
;
1729 rx_buffer_info
->page_offset
= 0;
1732 size
= sizeof(struct ixgbevf_rx_buffer
) * rx_ring
->count
;
1733 memset(rx_ring
->rx_buffer_info
, 0, size
);
1735 /* Zero out the descriptor ring */
1736 memset(rx_ring
->desc
, 0, rx_ring
->size
);
1738 rx_ring
->next_to_clean
= 0;
1739 rx_ring
->next_to_use
= 0;
1742 writel(0, adapter
->hw
.hw_addr
+ rx_ring
->head
);
1744 writel(0, adapter
->hw
.hw_addr
+ rx_ring
->tail
);
1748 * ixgbevf_clean_tx_ring - Free Tx Buffers
1749 * @adapter: board private structure
1750 * @tx_ring: ring to be cleaned
1752 static void ixgbevf_clean_tx_ring(struct ixgbevf_adapter
*adapter
,
1753 struct ixgbevf_ring
*tx_ring
)
1755 struct ixgbevf_tx_buffer
*tx_buffer_info
;
1759 if (!tx_ring
->tx_buffer_info
)
1762 /* Free all the Tx ring sk_buffs */
1764 for (i
= 0; i
< tx_ring
->count
; i
++) {
1765 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
1766 ixgbevf_unmap_and_free_tx_resource(adapter
, tx_buffer_info
);
1769 size
= sizeof(struct ixgbevf_tx_buffer
) * tx_ring
->count
;
1770 memset(tx_ring
->tx_buffer_info
, 0, size
);
1772 memset(tx_ring
->desc
, 0, tx_ring
->size
);
1774 tx_ring
->next_to_use
= 0;
1775 tx_ring
->next_to_clean
= 0;
1778 writel(0, adapter
->hw
.hw_addr
+ tx_ring
->head
);
1780 writel(0, adapter
->hw
.hw_addr
+ tx_ring
->tail
);
1784 * ixgbevf_clean_all_rx_rings - Free Rx Buffers for all queues
1785 * @adapter: board private structure
1787 static void ixgbevf_clean_all_rx_rings(struct ixgbevf_adapter
*adapter
)
1791 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
1792 ixgbevf_clean_rx_ring(adapter
, &adapter
->rx_ring
[i
]);
1796 * ixgbevf_clean_all_tx_rings - Free Tx Buffers for all queues
1797 * @adapter: board private structure
1799 static void ixgbevf_clean_all_tx_rings(struct ixgbevf_adapter
*adapter
)
1803 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
1804 ixgbevf_clean_tx_ring(adapter
, &adapter
->tx_ring
[i
]);
1807 void ixgbevf_down(struct ixgbevf_adapter
*adapter
)
1809 struct net_device
*netdev
= adapter
->netdev
;
1810 struct ixgbe_hw
*hw
= &adapter
->hw
;
1814 /* signal that we are down to the interrupt handler */
1815 set_bit(__IXGBEVF_DOWN
, &adapter
->state
);
1816 /* disable receives */
1818 netif_tx_disable(netdev
);
1822 netif_tx_stop_all_queues(netdev
);
1824 ixgbevf_irq_disable(adapter
);
1826 ixgbevf_napi_disable_all(adapter
);
1828 del_timer_sync(&adapter
->watchdog_timer
);
1829 /* can't call flush scheduled work here because it can deadlock
1830 * if linkwatch_event tries to acquire the rtnl_lock which we are
1832 while (adapter
->flags
& IXGBE_FLAG_IN_WATCHDOG_TASK
)
1835 /* disable transmits in the hardware now that interrupts are off */
1836 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
1837 j
= adapter
->tx_ring
[i
].reg_idx
;
1838 txdctl
= IXGBE_READ_REG(hw
, IXGBE_VFTXDCTL(j
));
1839 IXGBE_WRITE_REG(hw
, IXGBE_VFTXDCTL(j
),
1840 (txdctl
& ~IXGBE_TXDCTL_ENABLE
));
1843 netif_carrier_off(netdev
);
1845 if (!pci_channel_offline(adapter
->pdev
))
1846 ixgbevf_reset(adapter
);
1848 ixgbevf_clean_all_tx_rings(adapter
);
1849 ixgbevf_clean_all_rx_rings(adapter
);
1852 void ixgbevf_reinit_locked(struct ixgbevf_adapter
*adapter
)
1854 struct ixgbe_hw
*hw
= &adapter
->hw
;
1856 WARN_ON(in_interrupt());
1858 while (test_and_set_bit(__IXGBEVF_RESETTING
, &adapter
->state
))
1862 * Check if PF is up before re-init. If not then skip until
1863 * later when the PF is up and ready to service requests from
1864 * the VF via mailbox. If the VF is up and running then the
1865 * watchdog task will continue to schedule reset tasks until
1866 * the PF is up and running.
1868 if (!hw
->mac
.ops
.reset_hw(hw
)) {
1869 ixgbevf_down(adapter
);
1870 ixgbevf_up(adapter
);
1873 clear_bit(__IXGBEVF_RESETTING
, &adapter
->state
);
1876 void ixgbevf_reset(struct ixgbevf_adapter
*adapter
)
1878 struct ixgbe_hw
*hw
= &adapter
->hw
;
1879 struct net_device
*netdev
= adapter
->netdev
;
1881 if (hw
->mac
.ops
.reset_hw(hw
))
1882 hw_dbg(hw
, "PF still resetting\n");
1884 hw
->mac
.ops
.init_hw(hw
);
1886 if (is_valid_ether_addr(adapter
->hw
.mac
.addr
)) {
1887 memcpy(netdev
->dev_addr
, adapter
->hw
.mac
.addr
,
1889 memcpy(netdev
->perm_addr
, adapter
->hw
.mac
.addr
,
1894 static void ixgbevf_acquire_msix_vectors(struct ixgbevf_adapter
*adapter
,
1897 int err
, vector_threshold
;
1899 /* We'll want at least 3 (vector_threshold):
1902 * 3) Other (Link Status Change, etc.)
1904 vector_threshold
= MIN_MSIX_COUNT
;
1906 /* The more we get, the more we will assign to Tx/Rx Cleanup
1907 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
1908 * Right now, we simply care about how many we'll get; we'll
1909 * set them up later while requesting irq's.
1911 while (vectors
>= vector_threshold
) {
1912 err
= pci_enable_msix(adapter
->pdev
, adapter
->msix_entries
,
1914 if (!err
) /* Success in acquiring all requested vectors. */
1917 vectors
= 0; /* Nasty failure, quit now */
1918 else /* err == number of vectors we should try again with */
1922 if (vectors
< vector_threshold
) {
1923 /* Can't allocate enough MSI-X interrupts? Oh well.
1924 * This just means we'll go with either a single MSI
1925 * vector or fall back to legacy interrupts.
1927 hw_dbg(&adapter
->hw
,
1928 "Unable to allocate MSI-X interrupts\n");
1929 kfree(adapter
->msix_entries
);
1930 adapter
->msix_entries
= NULL
;
1933 * Adjust for only the vectors we'll use, which is minimum
1934 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
1935 * vectors we were allocated.
1937 adapter
->num_msix_vectors
= vectors
;
1942 * ixgbevf_set_num_queues: Allocate queues for device, feature dependent
1943 * @adapter: board private structure to initialize
1945 * This is the top level queue allocation routine. The order here is very
1946 * important, starting with the "most" number of features turned on at once,
1947 * and ending with the smallest set of features. This way large combinations
1948 * can be allocated if they're turned on, and smaller combinations are the
1949 * fallthrough conditions.
1952 static void ixgbevf_set_num_queues(struct ixgbevf_adapter
*adapter
)
1954 /* Start with base case */
1955 adapter
->num_rx_queues
= 1;
1956 adapter
->num_tx_queues
= 1;
1957 adapter
->num_rx_pools
= adapter
->num_rx_queues
;
1958 adapter
->num_rx_queues_per_pool
= 1;
1962 * ixgbevf_alloc_queues - Allocate memory for all rings
1963 * @adapter: board private structure to initialize
1965 * We allocate one ring per queue at run-time since we don't know the
1966 * number of queues at compile-time. The polling_netdev array is
1967 * intended for Multiqueue, but should work fine with a single queue.
1969 static int ixgbevf_alloc_queues(struct ixgbevf_adapter
*adapter
)
1973 adapter
->tx_ring
= kcalloc(adapter
->num_tx_queues
,
1974 sizeof(struct ixgbevf_ring
), GFP_KERNEL
);
1975 if (!adapter
->tx_ring
)
1976 goto err_tx_ring_allocation
;
1978 adapter
->rx_ring
= kcalloc(adapter
->num_rx_queues
,
1979 sizeof(struct ixgbevf_ring
), GFP_KERNEL
);
1980 if (!adapter
->rx_ring
)
1981 goto err_rx_ring_allocation
;
1983 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
1984 adapter
->tx_ring
[i
].count
= adapter
->tx_ring_count
;
1985 adapter
->tx_ring
[i
].queue_index
= i
;
1986 adapter
->tx_ring
[i
].reg_idx
= i
;
1989 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
1990 adapter
->rx_ring
[i
].count
= adapter
->rx_ring_count
;
1991 adapter
->rx_ring
[i
].queue_index
= i
;
1992 adapter
->rx_ring
[i
].reg_idx
= i
;
1997 err_rx_ring_allocation
:
1998 kfree(adapter
->tx_ring
);
1999 err_tx_ring_allocation
:
2004 * ixgbevf_set_interrupt_capability - set MSI-X or FAIL if not supported
2005 * @adapter: board private structure to initialize
2007 * Attempt to configure the interrupts using the best available
2008 * capabilities of the hardware and the kernel.
2010 static int ixgbevf_set_interrupt_capability(struct ixgbevf_adapter
*adapter
)
2013 int vector
, v_budget
;
2016 * It's easy to be greedy for MSI-X vectors, but it really
2017 * doesn't do us much good if we have a lot more vectors
2018 * than CPU's. So let's be conservative and only ask for
2019 * (roughly) twice the number of vectors as there are CPU's.
2021 v_budget
= min(adapter
->num_rx_queues
+ adapter
->num_tx_queues
,
2022 (int)(num_online_cpus() * 2)) + NON_Q_VECTORS
;
2024 /* A failure in MSI-X entry allocation isn't fatal, but it does
2025 * mean we disable MSI-X capabilities of the adapter. */
2026 adapter
->msix_entries
= kcalloc(v_budget
,
2027 sizeof(struct msix_entry
), GFP_KERNEL
);
2028 if (!adapter
->msix_entries
) {
2033 for (vector
= 0; vector
< v_budget
; vector
++)
2034 adapter
->msix_entries
[vector
].entry
= vector
;
2036 ixgbevf_acquire_msix_vectors(adapter
, v_budget
);
2043 * ixgbevf_alloc_q_vectors - Allocate memory for interrupt vectors
2044 * @adapter: board private structure to initialize
2046 * We allocate one q_vector per queue interrupt. If allocation fails we
2049 static int ixgbevf_alloc_q_vectors(struct ixgbevf_adapter
*adapter
)
2051 int q_idx
, num_q_vectors
;
2052 struct ixgbevf_q_vector
*q_vector
;
2054 int (*poll
)(struct napi_struct
*, int);
2056 num_q_vectors
= adapter
->num_msix_vectors
- NON_Q_VECTORS
;
2057 napi_vectors
= adapter
->num_rx_queues
;
2058 poll
= &ixgbevf_clean_rxonly
;
2060 for (q_idx
= 0; q_idx
< num_q_vectors
; q_idx
++) {
2061 q_vector
= kzalloc(sizeof(struct ixgbevf_q_vector
), GFP_KERNEL
);
2064 q_vector
->adapter
= adapter
;
2065 q_vector
->v_idx
= q_idx
;
2066 q_vector
->eitr
= adapter
->eitr_param
;
2067 if (q_idx
< napi_vectors
)
2068 netif_napi_add(adapter
->netdev
, &q_vector
->napi
,
2070 adapter
->q_vector
[q_idx
] = q_vector
;
2078 q_vector
= adapter
->q_vector
[q_idx
];
2079 netif_napi_del(&q_vector
->napi
);
2081 adapter
->q_vector
[q_idx
] = NULL
;
2087 * ixgbevf_free_q_vectors - Free memory allocated for interrupt vectors
2088 * @adapter: board private structure to initialize
2090 * This function frees the memory allocated to the q_vectors. In addition if
2091 * NAPI is enabled it will delete any references to the NAPI struct prior
2092 * to freeing the q_vector.
2094 static void ixgbevf_free_q_vectors(struct ixgbevf_adapter
*adapter
)
2096 int q_idx
, num_q_vectors
;
2099 num_q_vectors
= adapter
->num_msix_vectors
- NON_Q_VECTORS
;
2100 napi_vectors
= adapter
->num_rx_queues
;
2102 for (q_idx
= 0; q_idx
< num_q_vectors
; q_idx
++) {
2103 struct ixgbevf_q_vector
*q_vector
= adapter
->q_vector
[q_idx
];
2105 adapter
->q_vector
[q_idx
] = NULL
;
2106 if (q_idx
< napi_vectors
)
2107 netif_napi_del(&q_vector
->napi
);
2113 * ixgbevf_reset_interrupt_capability - Reset MSIX setup
2114 * @adapter: board private structure
2117 static void ixgbevf_reset_interrupt_capability(struct ixgbevf_adapter
*adapter
)
2119 pci_disable_msix(adapter
->pdev
);
2120 kfree(adapter
->msix_entries
);
2121 adapter
->msix_entries
= NULL
;
2125 * ixgbevf_init_interrupt_scheme - Determine if MSIX is supported and init
2126 * @adapter: board private structure to initialize
2129 static int ixgbevf_init_interrupt_scheme(struct ixgbevf_adapter
*adapter
)
2133 /* Number of supported queues */
2134 ixgbevf_set_num_queues(adapter
);
2136 err
= ixgbevf_set_interrupt_capability(adapter
);
2138 hw_dbg(&adapter
->hw
,
2139 "Unable to setup interrupt capabilities\n");
2140 goto err_set_interrupt
;
2143 err
= ixgbevf_alloc_q_vectors(adapter
);
2145 hw_dbg(&adapter
->hw
, "Unable to allocate memory for queue "
2147 goto err_alloc_q_vectors
;
2150 err
= ixgbevf_alloc_queues(adapter
);
2152 pr_err("Unable to allocate memory for queues\n");
2153 goto err_alloc_queues
;
2156 hw_dbg(&adapter
->hw
, "Multiqueue %s: Rx Queue count = %u, "
2157 "Tx Queue count = %u\n",
2158 (adapter
->num_rx_queues
> 1) ? "Enabled" :
2159 "Disabled", adapter
->num_rx_queues
, adapter
->num_tx_queues
);
2161 set_bit(__IXGBEVF_DOWN
, &adapter
->state
);
2165 ixgbevf_free_q_vectors(adapter
);
2166 err_alloc_q_vectors
:
2167 ixgbevf_reset_interrupt_capability(adapter
);
2173 * ixgbevf_sw_init - Initialize general software structures
2174 * (struct ixgbevf_adapter)
2175 * @adapter: board private structure to initialize
2177 * ixgbevf_sw_init initializes the Adapter private data structure.
2178 * Fields are initialized based on PCI device information and
2179 * OS network device settings (MTU size).
2181 static int __devinit
ixgbevf_sw_init(struct ixgbevf_adapter
*adapter
)
2183 struct ixgbe_hw
*hw
= &adapter
->hw
;
2184 struct pci_dev
*pdev
= adapter
->pdev
;
2187 /* PCI config space info */
2189 hw
->vendor_id
= pdev
->vendor
;
2190 hw
->device_id
= pdev
->device
;
2191 hw
->revision_id
= pdev
->revision
;
2192 hw
->subsystem_vendor_id
= pdev
->subsystem_vendor
;
2193 hw
->subsystem_device_id
= pdev
->subsystem_device
;
2195 hw
->mbx
.ops
.init_params(hw
);
2196 hw
->mac
.max_tx_queues
= MAX_TX_QUEUES
;
2197 hw
->mac
.max_rx_queues
= MAX_RX_QUEUES
;
2198 err
= hw
->mac
.ops
.reset_hw(hw
);
2200 dev_info(&pdev
->dev
,
2201 "PF still in reset state, assigning new address\n");
2202 eth_hw_addr_random(adapter
->netdev
);
2203 memcpy(adapter
->hw
.mac
.addr
, adapter
->netdev
->dev_addr
,
2204 adapter
->netdev
->addr_len
);
2206 err
= hw
->mac
.ops
.init_hw(hw
);
2208 pr_err("init_shared_code failed: %d\n", err
);
2211 memcpy(adapter
->netdev
->dev_addr
, adapter
->hw
.mac
.addr
,
2212 adapter
->netdev
->addr_len
);
2215 /* Enable dynamic interrupt throttling rates */
2216 adapter
->eitr_param
= 20000;
2217 adapter
->itr_setting
= 1;
2219 /* set defaults for eitr in MegaBytes */
2220 adapter
->eitr_low
= 10;
2221 adapter
->eitr_high
= 20;
2223 /* set default ring sizes */
2224 adapter
->tx_ring_count
= IXGBEVF_DEFAULT_TXD
;
2225 adapter
->rx_ring_count
= IXGBEVF_DEFAULT_RXD
;
2227 /* enable rx csum by default */
2228 adapter
->flags
|= IXGBE_FLAG_RX_CSUM_ENABLED
;
2230 set_bit(__IXGBEVF_DOWN
, &adapter
->state
);
2237 #define UPDATE_VF_COUNTER_32bit(reg, last_counter, counter) \
2239 u32 current_counter = IXGBE_READ_REG(hw, reg); \
2240 if (current_counter < last_counter) \
2241 counter += 0x100000000LL; \
2242 last_counter = current_counter; \
2243 counter &= 0xFFFFFFFF00000000LL; \
2244 counter |= current_counter; \
2247 #define UPDATE_VF_COUNTER_36bit(reg_lsb, reg_msb, last_counter, counter) \
2249 u64 current_counter_lsb = IXGBE_READ_REG(hw, reg_lsb); \
2250 u64 current_counter_msb = IXGBE_READ_REG(hw, reg_msb); \
2251 u64 current_counter = (current_counter_msb << 32) | \
2252 current_counter_lsb; \
2253 if (current_counter < last_counter) \
2254 counter += 0x1000000000LL; \
2255 last_counter = current_counter; \
2256 counter &= 0xFFFFFFF000000000LL; \
2257 counter |= current_counter; \
2260 * ixgbevf_update_stats - Update the board statistics counters.
2261 * @adapter: board private structure
2263 void ixgbevf_update_stats(struct ixgbevf_adapter
*adapter
)
2265 struct ixgbe_hw
*hw
= &adapter
->hw
;
2267 UPDATE_VF_COUNTER_32bit(IXGBE_VFGPRC
, adapter
->stats
.last_vfgprc
,
2268 adapter
->stats
.vfgprc
);
2269 UPDATE_VF_COUNTER_32bit(IXGBE_VFGPTC
, adapter
->stats
.last_vfgptc
,
2270 adapter
->stats
.vfgptc
);
2271 UPDATE_VF_COUNTER_36bit(IXGBE_VFGORC_LSB
, IXGBE_VFGORC_MSB
,
2272 adapter
->stats
.last_vfgorc
,
2273 adapter
->stats
.vfgorc
);
2274 UPDATE_VF_COUNTER_36bit(IXGBE_VFGOTC_LSB
, IXGBE_VFGOTC_MSB
,
2275 adapter
->stats
.last_vfgotc
,
2276 adapter
->stats
.vfgotc
);
2277 UPDATE_VF_COUNTER_32bit(IXGBE_VFMPRC
, adapter
->stats
.last_vfmprc
,
2278 adapter
->stats
.vfmprc
);
2282 * ixgbevf_watchdog - Timer Call-back
2283 * @data: pointer to adapter cast into an unsigned long
2285 static void ixgbevf_watchdog(unsigned long data
)
2287 struct ixgbevf_adapter
*adapter
= (struct ixgbevf_adapter
*)data
;
2288 struct ixgbe_hw
*hw
= &adapter
->hw
;
2293 * Do the watchdog outside of interrupt context due to the lovely
2294 * delays that some of the newer hardware requires
2297 if (test_bit(__IXGBEVF_DOWN
, &adapter
->state
))
2298 goto watchdog_short_circuit
;
2300 /* get one bit for every active tx/rx interrupt vector */
2301 for (i
= 0; i
< adapter
->num_msix_vectors
- NON_Q_VECTORS
; i
++) {
2302 struct ixgbevf_q_vector
*qv
= adapter
->q_vector
[i
];
2303 if (qv
->rxr_count
|| qv
->txr_count
)
2307 IXGBE_WRITE_REG(hw
, IXGBE_VTEICS
, (u32
)eics
);
2309 watchdog_short_circuit
:
2310 schedule_work(&adapter
->watchdog_task
);
2314 * ixgbevf_tx_timeout - Respond to a Tx Hang
2315 * @netdev: network interface device structure
2317 static void ixgbevf_tx_timeout(struct net_device
*netdev
)
2319 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
2321 /* Do the reset outside of interrupt context */
2322 schedule_work(&adapter
->reset_task
);
2325 static void ixgbevf_reset_task(struct work_struct
*work
)
2327 struct ixgbevf_adapter
*adapter
;
2328 adapter
= container_of(work
, struct ixgbevf_adapter
, reset_task
);
2330 /* If we're already down or resetting, just bail */
2331 if (test_bit(__IXGBEVF_DOWN
, &adapter
->state
) ||
2332 test_bit(__IXGBEVF_RESETTING
, &adapter
->state
))
2335 adapter
->tx_timeout_count
++;
2337 ixgbevf_reinit_locked(adapter
);
2341 * ixgbevf_watchdog_task - worker thread to bring link up
2342 * @work: pointer to work_struct containing our data
2344 static void ixgbevf_watchdog_task(struct work_struct
*work
)
2346 struct ixgbevf_adapter
*adapter
= container_of(work
,
2347 struct ixgbevf_adapter
,
2349 struct net_device
*netdev
= adapter
->netdev
;
2350 struct ixgbe_hw
*hw
= &adapter
->hw
;
2351 u32 link_speed
= adapter
->link_speed
;
2352 bool link_up
= adapter
->link_up
;
2354 adapter
->flags
|= IXGBE_FLAG_IN_WATCHDOG_TASK
;
2357 * Always check the link on the watchdog because we have
2360 if (hw
->mac
.ops
.check_link
) {
2361 if ((hw
->mac
.ops
.check_link(hw
, &link_speed
,
2362 &link_up
, false)) != 0) {
2363 adapter
->link_up
= link_up
;
2364 adapter
->link_speed
= link_speed
;
2365 netif_carrier_off(netdev
);
2366 netif_tx_stop_all_queues(netdev
);
2367 schedule_work(&adapter
->reset_task
);
2371 /* always assume link is up, if no check link
2373 link_speed
= IXGBE_LINK_SPEED_10GB_FULL
;
2376 adapter
->link_up
= link_up
;
2377 adapter
->link_speed
= link_speed
;
2380 if (!netif_carrier_ok(netdev
)) {
2381 hw_dbg(&adapter
->hw
, "NIC Link is Up, %u Gbps\n",
2382 (link_speed
== IXGBE_LINK_SPEED_10GB_FULL
) ?
2384 netif_carrier_on(netdev
);
2385 netif_tx_wake_all_queues(netdev
);
2388 adapter
->link_up
= false;
2389 adapter
->link_speed
= 0;
2390 if (netif_carrier_ok(netdev
)) {
2391 hw_dbg(&adapter
->hw
, "NIC Link is Down\n");
2392 netif_carrier_off(netdev
);
2393 netif_tx_stop_all_queues(netdev
);
2397 ixgbevf_update_stats(adapter
);
2400 /* Reset the timer */
2401 if (!test_bit(__IXGBEVF_DOWN
, &adapter
->state
))
2402 mod_timer(&adapter
->watchdog_timer
,
2403 round_jiffies(jiffies
+ (2 * HZ
)));
2405 adapter
->flags
&= ~IXGBE_FLAG_IN_WATCHDOG_TASK
;
2409 * ixgbevf_free_tx_resources - Free Tx Resources per Queue
2410 * @adapter: board private structure
2411 * @tx_ring: Tx descriptor ring for a specific queue
2413 * Free all transmit software resources
2415 void ixgbevf_free_tx_resources(struct ixgbevf_adapter
*adapter
,
2416 struct ixgbevf_ring
*tx_ring
)
2418 struct pci_dev
*pdev
= adapter
->pdev
;
2420 ixgbevf_clean_tx_ring(adapter
, tx_ring
);
2422 vfree(tx_ring
->tx_buffer_info
);
2423 tx_ring
->tx_buffer_info
= NULL
;
2425 dma_free_coherent(&pdev
->dev
, tx_ring
->size
, tx_ring
->desc
,
2428 tx_ring
->desc
= NULL
;
2432 * ixgbevf_free_all_tx_resources - Free Tx Resources for All Queues
2433 * @adapter: board private structure
2435 * Free all transmit software resources
2437 static void ixgbevf_free_all_tx_resources(struct ixgbevf_adapter
*adapter
)
2441 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
2442 if (adapter
->tx_ring
[i
].desc
)
2443 ixgbevf_free_tx_resources(adapter
,
2444 &adapter
->tx_ring
[i
]);
2449 * ixgbevf_setup_tx_resources - allocate Tx resources (Descriptors)
2450 * @adapter: board private structure
2451 * @tx_ring: tx descriptor ring (for a specific queue) to setup
2453 * Return 0 on success, negative on failure
2455 int ixgbevf_setup_tx_resources(struct ixgbevf_adapter
*adapter
,
2456 struct ixgbevf_ring
*tx_ring
)
2458 struct pci_dev
*pdev
= adapter
->pdev
;
2461 size
= sizeof(struct ixgbevf_tx_buffer
) * tx_ring
->count
;
2462 tx_ring
->tx_buffer_info
= vzalloc(size
);
2463 if (!tx_ring
->tx_buffer_info
)
2466 /* round up to nearest 4K */
2467 tx_ring
->size
= tx_ring
->count
* sizeof(union ixgbe_adv_tx_desc
);
2468 tx_ring
->size
= ALIGN(tx_ring
->size
, 4096);
2470 tx_ring
->desc
= dma_alloc_coherent(&pdev
->dev
, tx_ring
->size
,
2471 &tx_ring
->dma
, GFP_KERNEL
);
2475 tx_ring
->next_to_use
= 0;
2476 tx_ring
->next_to_clean
= 0;
2477 tx_ring
->work_limit
= tx_ring
->count
;
2481 vfree(tx_ring
->tx_buffer_info
);
2482 tx_ring
->tx_buffer_info
= NULL
;
2483 hw_dbg(&adapter
->hw
, "Unable to allocate memory for the transmit "
2484 "descriptor ring\n");
2489 * ixgbevf_setup_all_tx_resources - allocate all queues Tx resources
2490 * @adapter: board private structure
2492 * If this function returns with an error, then it's possible one or
2493 * more of the rings is populated (while the rest are not). It is the
2494 * callers duty to clean those orphaned rings.
2496 * Return 0 on success, negative on failure
2498 static int ixgbevf_setup_all_tx_resources(struct ixgbevf_adapter
*adapter
)
2502 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
2503 err
= ixgbevf_setup_tx_resources(adapter
, &adapter
->tx_ring
[i
]);
2506 hw_dbg(&adapter
->hw
,
2507 "Allocation for Tx Queue %u failed\n", i
);
2515 * ixgbevf_setup_rx_resources - allocate Rx resources (Descriptors)
2516 * @adapter: board private structure
2517 * @rx_ring: rx descriptor ring (for a specific queue) to setup
2519 * Returns 0 on success, negative on failure
2521 int ixgbevf_setup_rx_resources(struct ixgbevf_adapter
*adapter
,
2522 struct ixgbevf_ring
*rx_ring
)
2524 struct pci_dev
*pdev
= adapter
->pdev
;
2527 size
= sizeof(struct ixgbevf_rx_buffer
) * rx_ring
->count
;
2528 rx_ring
->rx_buffer_info
= vzalloc(size
);
2529 if (!rx_ring
->rx_buffer_info
)
2532 /* Round up to nearest 4K */
2533 rx_ring
->size
= rx_ring
->count
* sizeof(union ixgbe_adv_rx_desc
);
2534 rx_ring
->size
= ALIGN(rx_ring
->size
, 4096);
2536 rx_ring
->desc
= dma_alloc_coherent(&pdev
->dev
, rx_ring
->size
,
2537 &rx_ring
->dma
, GFP_KERNEL
);
2539 if (!rx_ring
->desc
) {
2540 hw_dbg(&adapter
->hw
,
2541 "Unable to allocate memory for "
2542 "the receive descriptor ring\n");
2543 vfree(rx_ring
->rx_buffer_info
);
2544 rx_ring
->rx_buffer_info
= NULL
;
2548 rx_ring
->next_to_clean
= 0;
2549 rx_ring
->next_to_use
= 0;
2557 * ixgbevf_setup_all_rx_resources - allocate all queues Rx resources
2558 * @adapter: board private structure
2560 * If this function returns with an error, then it's possible one or
2561 * more of the rings is populated (while the rest are not). It is the
2562 * callers duty to clean those orphaned rings.
2564 * Return 0 on success, negative on failure
2566 static int ixgbevf_setup_all_rx_resources(struct ixgbevf_adapter
*adapter
)
2570 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
2571 err
= ixgbevf_setup_rx_resources(adapter
, &adapter
->rx_ring
[i
]);
2574 hw_dbg(&adapter
->hw
,
2575 "Allocation for Rx Queue %u failed\n", i
);
2582 * ixgbevf_free_rx_resources - Free Rx Resources
2583 * @adapter: board private structure
2584 * @rx_ring: ring to clean the resources from
2586 * Free all receive software resources
2588 void ixgbevf_free_rx_resources(struct ixgbevf_adapter
*adapter
,
2589 struct ixgbevf_ring
*rx_ring
)
2591 struct pci_dev
*pdev
= adapter
->pdev
;
2593 ixgbevf_clean_rx_ring(adapter
, rx_ring
);
2595 vfree(rx_ring
->rx_buffer_info
);
2596 rx_ring
->rx_buffer_info
= NULL
;
2598 dma_free_coherent(&pdev
->dev
, rx_ring
->size
, rx_ring
->desc
,
2601 rx_ring
->desc
= NULL
;
2605 * ixgbevf_free_all_rx_resources - Free Rx Resources for All Queues
2606 * @adapter: board private structure
2608 * Free all receive software resources
2610 static void ixgbevf_free_all_rx_resources(struct ixgbevf_adapter
*adapter
)
2614 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
2615 if (adapter
->rx_ring
[i
].desc
)
2616 ixgbevf_free_rx_resources(adapter
,
2617 &adapter
->rx_ring
[i
]);
2621 * ixgbevf_open - Called when a network interface is made active
2622 * @netdev: network interface device structure
2624 * Returns 0 on success, negative value on failure
2626 * The open entry point is called when a network interface is made
2627 * active by the system (IFF_UP). At this point all resources needed
2628 * for transmit and receive operations are allocated, the interrupt
2629 * handler is registered with the OS, the watchdog timer is started,
2630 * and the stack is notified that the interface is ready.
2632 static int ixgbevf_open(struct net_device
*netdev
)
2634 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
2635 struct ixgbe_hw
*hw
= &adapter
->hw
;
2638 /* disallow open during test */
2639 if (test_bit(__IXGBEVF_TESTING
, &adapter
->state
))
2642 if (hw
->adapter_stopped
) {
2643 ixgbevf_reset(adapter
);
2644 /* if adapter is still stopped then PF isn't up and
2645 * the vf can't start. */
2646 if (hw
->adapter_stopped
) {
2647 err
= IXGBE_ERR_MBX
;
2648 pr_err("Unable to start - perhaps the PF Driver isn't "
2650 goto err_setup_reset
;
2654 /* allocate transmit descriptors */
2655 err
= ixgbevf_setup_all_tx_resources(adapter
);
2659 /* allocate receive descriptors */
2660 err
= ixgbevf_setup_all_rx_resources(adapter
);
2664 ixgbevf_configure(adapter
);
2667 * Map the Tx/Rx rings to the vectors we were allotted.
2668 * if request_irq will be called in this function map_rings
2669 * must be called *before* up_complete
2671 ixgbevf_map_rings_to_vectors(adapter
);
2673 err
= ixgbevf_up_complete(adapter
);
2677 /* clear any pending interrupts, may auto mask */
2678 IXGBE_READ_REG(hw
, IXGBE_VTEICR
);
2679 err
= ixgbevf_request_irq(adapter
);
2683 ixgbevf_irq_enable(adapter
, true, true);
2688 ixgbevf_down(adapter
);
2690 ixgbevf_free_irq(adapter
);
2692 ixgbevf_free_all_rx_resources(adapter
);
2694 ixgbevf_free_all_tx_resources(adapter
);
2695 ixgbevf_reset(adapter
);
2703 * ixgbevf_close - Disables a network interface
2704 * @netdev: network interface device structure
2706 * Returns 0, this is not allowed to fail
2708 * The close entry point is called when an interface is de-activated
2709 * by the OS. The hardware is still under the drivers control, but
2710 * needs to be disabled. A global MAC reset is issued to stop the
2711 * hardware, and all transmit and receive resources are freed.
2713 static int ixgbevf_close(struct net_device
*netdev
)
2715 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
2717 ixgbevf_down(adapter
);
2718 ixgbevf_free_irq(adapter
);
2720 ixgbevf_free_all_tx_resources(adapter
);
2721 ixgbevf_free_all_rx_resources(adapter
);
2726 static int ixgbevf_tso(struct ixgbevf_adapter
*adapter
,
2727 struct ixgbevf_ring
*tx_ring
,
2728 struct sk_buff
*skb
, u32 tx_flags
, u8
*hdr_len
)
2730 struct ixgbe_adv_tx_context_desc
*context_desc
;
2733 struct ixgbevf_tx_buffer
*tx_buffer_info
;
2734 u32 vlan_macip_lens
= 0, type_tucmd_mlhl
;
2735 u32 mss_l4len_idx
, l4len
;
2737 if (skb_is_gso(skb
)) {
2738 if (skb_header_cloned(skb
)) {
2739 err
= pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
);
2743 l4len
= tcp_hdrlen(skb
);
2746 if (skb
->protocol
== htons(ETH_P_IP
)) {
2747 struct iphdr
*iph
= ip_hdr(skb
);
2750 tcp_hdr(skb
)->check
= ~csum_tcpudp_magic(iph
->saddr
,
2754 adapter
->hw_tso_ctxt
++;
2755 } else if (skb_is_gso_v6(skb
)) {
2756 ipv6_hdr(skb
)->payload_len
= 0;
2757 tcp_hdr(skb
)->check
=
2758 ~csum_ipv6_magic(&ipv6_hdr(skb
)->saddr
,
2759 &ipv6_hdr(skb
)->daddr
,
2761 adapter
->hw_tso6_ctxt
++;
2764 i
= tx_ring
->next_to_use
;
2766 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2767 context_desc
= IXGBE_TX_CTXTDESC_ADV(*tx_ring
, i
);
2769 /* VLAN MACLEN IPLEN */
2770 if (tx_flags
& IXGBE_TX_FLAGS_VLAN
)
2772 (tx_flags
& IXGBE_TX_FLAGS_VLAN_MASK
);
2773 vlan_macip_lens
|= ((skb_network_offset(skb
)) <<
2774 IXGBE_ADVTXD_MACLEN_SHIFT
);
2775 *hdr_len
+= skb_network_offset(skb
);
2777 (skb_transport_header(skb
) - skb_network_header(skb
));
2779 (skb_transport_header(skb
) - skb_network_header(skb
));
2780 context_desc
->vlan_macip_lens
= cpu_to_le32(vlan_macip_lens
);
2781 context_desc
->seqnum_seed
= 0;
2783 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
2784 type_tucmd_mlhl
= (IXGBE_TXD_CMD_DEXT
|
2785 IXGBE_ADVTXD_DTYP_CTXT
);
2787 if (skb
->protocol
== htons(ETH_P_IP
))
2788 type_tucmd_mlhl
|= IXGBE_ADVTXD_TUCMD_IPV4
;
2789 type_tucmd_mlhl
|= IXGBE_ADVTXD_TUCMD_L4T_TCP
;
2790 context_desc
->type_tucmd_mlhl
= cpu_to_le32(type_tucmd_mlhl
);
2794 (skb_shinfo(skb
)->gso_size
<< IXGBE_ADVTXD_MSS_SHIFT
);
2795 mss_l4len_idx
|= (l4len
<< IXGBE_ADVTXD_L4LEN_SHIFT
);
2796 /* use index 1 for TSO */
2797 mss_l4len_idx
|= (1 << IXGBE_ADVTXD_IDX_SHIFT
);
2798 context_desc
->mss_l4len_idx
= cpu_to_le32(mss_l4len_idx
);
2800 tx_buffer_info
->time_stamp
= jiffies
;
2801 tx_buffer_info
->next_to_watch
= i
;
2804 if (i
== tx_ring
->count
)
2806 tx_ring
->next_to_use
= i
;
2814 static bool ixgbevf_tx_csum(struct ixgbevf_adapter
*adapter
,
2815 struct ixgbevf_ring
*tx_ring
,
2816 struct sk_buff
*skb
, u32 tx_flags
)
2818 struct ixgbe_adv_tx_context_desc
*context_desc
;
2820 struct ixgbevf_tx_buffer
*tx_buffer_info
;
2821 u32 vlan_macip_lens
= 0, type_tucmd_mlhl
= 0;
2823 if (skb
->ip_summed
== CHECKSUM_PARTIAL
||
2824 (tx_flags
& IXGBE_TX_FLAGS_VLAN
)) {
2825 i
= tx_ring
->next_to_use
;
2826 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2827 context_desc
= IXGBE_TX_CTXTDESC_ADV(*tx_ring
, i
);
2829 if (tx_flags
& IXGBE_TX_FLAGS_VLAN
)
2830 vlan_macip_lens
|= (tx_flags
&
2831 IXGBE_TX_FLAGS_VLAN_MASK
);
2832 vlan_macip_lens
|= (skb_network_offset(skb
) <<
2833 IXGBE_ADVTXD_MACLEN_SHIFT
);
2834 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
2835 vlan_macip_lens
|= (skb_transport_header(skb
) -
2836 skb_network_header(skb
));
2838 context_desc
->vlan_macip_lens
= cpu_to_le32(vlan_macip_lens
);
2839 context_desc
->seqnum_seed
= 0;
2841 type_tucmd_mlhl
|= (IXGBE_TXD_CMD_DEXT
|
2842 IXGBE_ADVTXD_DTYP_CTXT
);
2844 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
2845 switch (skb
->protocol
) {
2846 case __constant_htons(ETH_P_IP
):
2847 type_tucmd_mlhl
|= IXGBE_ADVTXD_TUCMD_IPV4
;
2848 if (ip_hdr(skb
)->protocol
== IPPROTO_TCP
)
2850 IXGBE_ADVTXD_TUCMD_L4T_TCP
;
2852 case __constant_htons(ETH_P_IPV6
):
2853 /* XXX what about other V6 headers?? */
2854 if (ipv6_hdr(skb
)->nexthdr
== IPPROTO_TCP
)
2856 IXGBE_ADVTXD_TUCMD_L4T_TCP
;
2859 if (unlikely(net_ratelimit())) {
2860 pr_warn("partial checksum but "
2861 "proto=%x!\n", skb
->protocol
);
2867 context_desc
->type_tucmd_mlhl
= cpu_to_le32(type_tucmd_mlhl
);
2868 /* use index zero for tx checksum offload */
2869 context_desc
->mss_l4len_idx
= 0;
2871 tx_buffer_info
->time_stamp
= jiffies
;
2872 tx_buffer_info
->next_to_watch
= i
;
2874 adapter
->hw_csum_tx_good
++;
2876 if (i
== tx_ring
->count
)
2878 tx_ring
->next_to_use
= i
;
2886 static int ixgbevf_tx_map(struct ixgbevf_adapter
*adapter
,
2887 struct ixgbevf_ring
*tx_ring
,
2888 struct sk_buff
*skb
, u32 tx_flags
,
2891 struct pci_dev
*pdev
= adapter
->pdev
;
2892 struct ixgbevf_tx_buffer
*tx_buffer_info
;
2894 unsigned int total
= skb
->len
;
2895 unsigned int offset
= 0, size
;
2897 unsigned int nr_frags
= skb_shinfo(skb
)->nr_frags
;
2901 i
= tx_ring
->next_to_use
;
2903 len
= min(skb_headlen(skb
), total
);
2905 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2906 size
= min(len
, (unsigned int)IXGBE_MAX_DATA_PER_TXD
);
2908 tx_buffer_info
->length
= size
;
2909 tx_buffer_info
->mapped_as_page
= false;
2910 tx_buffer_info
->dma
= dma_map_single(&adapter
->pdev
->dev
,
2912 size
, DMA_TO_DEVICE
);
2913 if (dma_mapping_error(&pdev
->dev
, tx_buffer_info
->dma
))
2915 tx_buffer_info
->time_stamp
= jiffies
;
2916 tx_buffer_info
->next_to_watch
= i
;
2923 if (i
== tx_ring
->count
)
2927 for (f
= 0; f
< nr_frags
; f
++) {
2928 const struct skb_frag_struct
*frag
;
2930 frag
= &skb_shinfo(skb
)->frags
[f
];
2931 len
= min((unsigned int)skb_frag_size(frag
), total
);
2935 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2936 size
= min(len
, (unsigned int)IXGBE_MAX_DATA_PER_TXD
);
2938 tx_buffer_info
->length
= size
;
2939 tx_buffer_info
->dma
=
2940 skb_frag_dma_map(&adapter
->pdev
->dev
, frag
,
2941 offset
, size
, DMA_TO_DEVICE
);
2942 tx_buffer_info
->mapped_as_page
= true;
2943 if (dma_mapping_error(&pdev
->dev
, tx_buffer_info
->dma
))
2945 tx_buffer_info
->time_stamp
= jiffies
;
2946 tx_buffer_info
->next_to_watch
= i
;
2953 if (i
== tx_ring
->count
)
2961 i
= tx_ring
->count
- 1;
2964 tx_ring
->tx_buffer_info
[i
].skb
= skb
;
2965 tx_ring
->tx_buffer_info
[first
].next_to_watch
= i
;
2970 dev_err(&pdev
->dev
, "TX DMA map failed\n");
2972 /* clear timestamp and dma mappings for failed tx_buffer_info map */
2973 tx_buffer_info
->dma
= 0;
2974 tx_buffer_info
->time_stamp
= 0;
2975 tx_buffer_info
->next_to_watch
= 0;
2978 /* clear timestamp and dma mappings for remaining portion of packet */
2979 while (count
>= 0) {
2983 i
+= tx_ring
->count
;
2984 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2985 ixgbevf_unmap_and_free_tx_resource(adapter
, tx_buffer_info
);
2991 static void ixgbevf_tx_queue(struct ixgbevf_adapter
*adapter
,
2992 struct ixgbevf_ring
*tx_ring
, int tx_flags
,
2993 int count
, u32 paylen
, u8 hdr_len
)
2995 union ixgbe_adv_tx_desc
*tx_desc
= NULL
;
2996 struct ixgbevf_tx_buffer
*tx_buffer_info
;
2997 u32 olinfo_status
= 0, cmd_type_len
= 0;
3000 u32 txd_cmd
= IXGBE_TXD_CMD_EOP
| IXGBE_TXD_CMD_RS
| IXGBE_TXD_CMD_IFCS
;
3002 cmd_type_len
|= IXGBE_ADVTXD_DTYP_DATA
;
3004 cmd_type_len
|= IXGBE_ADVTXD_DCMD_IFCS
| IXGBE_ADVTXD_DCMD_DEXT
;
3006 if (tx_flags
& IXGBE_TX_FLAGS_VLAN
)
3007 cmd_type_len
|= IXGBE_ADVTXD_DCMD_VLE
;
3009 if (tx_flags
& IXGBE_TX_FLAGS_TSO
) {
3010 cmd_type_len
|= IXGBE_ADVTXD_DCMD_TSE
;
3012 olinfo_status
|= IXGBE_TXD_POPTS_TXSM
<<
3013 IXGBE_ADVTXD_POPTS_SHIFT
;
3015 /* use index 1 context for tso */
3016 olinfo_status
|= (1 << IXGBE_ADVTXD_IDX_SHIFT
);
3017 if (tx_flags
& IXGBE_TX_FLAGS_IPV4
)
3018 olinfo_status
|= IXGBE_TXD_POPTS_IXSM
<<
3019 IXGBE_ADVTXD_POPTS_SHIFT
;
3021 } else if (tx_flags
& IXGBE_TX_FLAGS_CSUM
)
3022 olinfo_status
|= IXGBE_TXD_POPTS_TXSM
<<
3023 IXGBE_ADVTXD_POPTS_SHIFT
;
3025 olinfo_status
|= ((paylen
- hdr_len
) << IXGBE_ADVTXD_PAYLEN_SHIFT
);
3027 i
= tx_ring
->next_to_use
;
3029 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
3030 tx_desc
= IXGBE_TX_DESC_ADV(*tx_ring
, i
);
3031 tx_desc
->read
.buffer_addr
= cpu_to_le64(tx_buffer_info
->dma
);
3032 tx_desc
->read
.cmd_type_len
=
3033 cpu_to_le32(cmd_type_len
| tx_buffer_info
->length
);
3034 tx_desc
->read
.olinfo_status
= cpu_to_le32(olinfo_status
);
3036 if (i
== tx_ring
->count
)
3040 tx_desc
->read
.cmd_type_len
|= cpu_to_le32(txd_cmd
);
3043 * Force memory writes to complete before letting h/w
3044 * know there are new descriptors to fetch. (Only
3045 * applicable for weak-ordered memory model archs,
3050 tx_ring
->next_to_use
= i
;
3051 writel(i
, adapter
->hw
.hw_addr
+ tx_ring
->tail
);
3054 static int __ixgbevf_maybe_stop_tx(struct net_device
*netdev
,
3055 struct ixgbevf_ring
*tx_ring
, int size
)
3057 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
3059 netif_stop_subqueue(netdev
, tx_ring
->queue_index
);
3060 /* Herbert's original patch had:
3061 * smp_mb__after_netif_stop_queue();
3062 * but since that doesn't exist yet, just open code it. */
3065 /* We need to check again in a case another CPU has just
3066 * made room available. */
3067 if (likely(IXGBE_DESC_UNUSED(tx_ring
) < size
))
3070 /* A reprieve! - use start_queue because it doesn't call schedule */
3071 netif_start_subqueue(netdev
, tx_ring
->queue_index
);
3072 ++adapter
->restart_queue
;
3076 static int ixgbevf_maybe_stop_tx(struct net_device
*netdev
,
3077 struct ixgbevf_ring
*tx_ring
, int size
)
3079 if (likely(IXGBE_DESC_UNUSED(tx_ring
) >= size
))
3081 return __ixgbevf_maybe_stop_tx(netdev
, tx_ring
, size
);
3084 static int ixgbevf_xmit_frame(struct sk_buff
*skb
, struct net_device
*netdev
)
3086 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
3087 struct ixgbevf_ring
*tx_ring
;
3089 unsigned int tx_flags
= 0;
3096 tx_ring
= &adapter
->tx_ring
[r_idx
];
3098 if (vlan_tx_tag_present(skb
)) {
3099 tx_flags
|= vlan_tx_tag_get(skb
);
3100 tx_flags
<<= IXGBE_TX_FLAGS_VLAN_SHIFT
;
3101 tx_flags
|= IXGBE_TX_FLAGS_VLAN
;
3104 /* four things can cause us to need a context descriptor */
3105 if (skb_is_gso(skb
) ||
3106 (skb
->ip_summed
== CHECKSUM_PARTIAL
) ||
3107 (tx_flags
& IXGBE_TX_FLAGS_VLAN
))
3110 count
+= TXD_USE_COUNT(skb_headlen(skb
));
3111 for (f
= 0; f
< skb_shinfo(skb
)->nr_frags
; f
++)
3112 count
+= TXD_USE_COUNT(skb_frag_size(&skb_shinfo(skb
)->frags
[f
]));
3114 if (ixgbevf_maybe_stop_tx(netdev
, tx_ring
, count
)) {
3116 return NETDEV_TX_BUSY
;
3119 first
= tx_ring
->next_to_use
;
3121 if (skb
->protocol
== htons(ETH_P_IP
))
3122 tx_flags
|= IXGBE_TX_FLAGS_IPV4
;
3123 tso
= ixgbevf_tso(adapter
, tx_ring
, skb
, tx_flags
, &hdr_len
);
3125 dev_kfree_skb_any(skb
);
3126 return NETDEV_TX_OK
;
3130 tx_flags
|= IXGBE_TX_FLAGS_TSO
;
3131 else if (ixgbevf_tx_csum(adapter
, tx_ring
, skb
, tx_flags
) &&
3132 (skb
->ip_summed
== CHECKSUM_PARTIAL
))
3133 tx_flags
|= IXGBE_TX_FLAGS_CSUM
;
3135 ixgbevf_tx_queue(adapter
, tx_ring
, tx_flags
,
3136 ixgbevf_tx_map(adapter
, tx_ring
, skb
, tx_flags
, first
),
3139 ixgbevf_maybe_stop_tx(netdev
, tx_ring
, DESC_NEEDED
);
3141 return NETDEV_TX_OK
;
3145 * ixgbevf_set_mac - Change the Ethernet Address of the NIC
3146 * @netdev: network interface device structure
3147 * @p: pointer to an address structure
3149 * Returns 0 on success, negative on failure
3151 static int ixgbevf_set_mac(struct net_device
*netdev
, void *p
)
3153 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
3154 struct ixgbe_hw
*hw
= &adapter
->hw
;
3155 struct sockaddr
*addr
= p
;
3157 if (!is_valid_ether_addr(addr
->sa_data
))
3158 return -EADDRNOTAVAIL
;
3160 memcpy(netdev
->dev_addr
, addr
->sa_data
, netdev
->addr_len
);
3161 memcpy(hw
->mac
.addr
, addr
->sa_data
, netdev
->addr_len
);
3163 if (hw
->mac
.ops
.set_rar
)
3164 hw
->mac
.ops
.set_rar(hw
, 0, hw
->mac
.addr
, 0);
3170 * ixgbevf_change_mtu - Change the Maximum Transfer Unit
3171 * @netdev: network interface device structure
3172 * @new_mtu: new value for maximum frame size
3174 * Returns 0 on success, negative on failure
3176 static int ixgbevf_change_mtu(struct net_device
*netdev
, int new_mtu
)
3178 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
3179 struct ixgbe_hw
*hw
= &adapter
->hw
;
3180 int max_frame
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
3181 int max_possible_frame
= MAXIMUM_ETHERNET_VLAN_SIZE
;
3184 if (adapter
->hw
.mac
.type
== ixgbe_mac_X540_vf
)
3185 max_possible_frame
= IXGBE_MAX_JUMBO_FRAME_SIZE
;
3187 /* MTU < 68 is an error and causes problems on some kernels */
3188 if ((new_mtu
< 68) || (max_frame
> max_possible_frame
))
3191 hw_dbg(&adapter
->hw
, "changing MTU from %d to %d\n",
3192 netdev
->mtu
, new_mtu
);
3193 /* must set new MTU before calling down or up */
3194 netdev
->mtu
= new_mtu
;
3196 msg
[0] = IXGBE_VF_SET_LPE
;
3198 hw
->mbx
.ops
.write_posted(hw
, msg
, 2);
3200 if (netif_running(netdev
))
3201 ixgbevf_reinit_locked(adapter
);
3206 static void ixgbevf_shutdown(struct pci_dev
*pdev
)
3208 struct net_device
*netdev
= pci_get_drvdata(pdev
);
3209 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
3211 netif_device_detach(netdev
);
3213 if (netif_running(netdev
)) {
3214 ixgbevf_down(adapter
);
3215 ixgbevf_free_irq(adapter
);
3216 ixgbevf_free_all_tx_resources(adapter
);
3217 ixgbevf_free_all_rx_resources(adapter
);
3221 pci_save_state(pdev
);
3224 pci_disable_device(pdev
);
3227 static struct rtnl_link_stats64
*ixgbevf_get_stats(struct net_device
*netdev
,
3228 struct rtnl_link_stats64
*stats
)
3230 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
3233 const struct ixgbevf_ring
*ring
;
3236 ixgbevf_update_stats(adapter
);
3238 stats
->multicast
= adapter
->stats
.vfmprc
- adapter
->stats
.base_vfmprc
;
3240 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
3241 ring
= &adapter
->rx_ring
[i
];
3243 start
= u64_stats_fetch_begin_bh(&ring
->syncp
);
3244 bytes
= ring
->total_bytes
;
3245 packets
= ring
->total_packets
;
3246 } while (u64_stats_fetch_retry_bh(&ring
->syncp
, start
));
3247 stats
->rx_bytes
+= bytes
;
3248 stats
->rx_packets
+= packets
;
3251 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
3252 ring
= &adapter
->tx_ring
[i
];
3254 start
= u64_stats_fetch_begin_bh(&ring
->syncp
);
3255 bytes
= ring
->total_bytes
;
3256 packets
= ring
->total_packets
;
3257 } while (u64_stats_fetch_retry_bh(&ring
->syncp
, start
));
3258 stats
->tx_bytes
+= bytes
;
3259 stats
->tx_packets
+= packets
;
3265 static int ixgbevf_set_features(struct net_device
*netdev
,
3266 netdev_features_t features
)
3268 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
3270 if (features
& NETIF_F_RXCSUM
)
3271 adapter
->flags
|= IXGBE_FLAG_RX_CSUM_ENABLED
;
3273 adapter
->flags
&= ~IXGBE_FLAG_RX_CSUM_ENABLED
;
3278 static const struct net_device_ops ixgbe_netdev_ops
= {
3279 .ndo_open
= ixgbevf_open
,
3280 .ndo_stop
= ixgbevf_close
,
3281 .ndo_start_xmit
= ixgbevf_xmit_frame
,
3282 .ndo_set_rx_mode
= ixgbevf_set_rx_mode
,
3283 .ndo_get_stats64
= ixgbevf_get_stats
,
3284 .ndo_validate_addr
= eth_validate_addr
,
3285 .ndo_set_mac_address
= ixgbevf_set_mac
,
3286 .ndo_change_mtu
= ixgbevf_change_mtu
,
3287 .ndo_tx_timeout
= ixgbevf_tx_timeout
,
3288 .ndo_vlan_rx_add_vid
= ixgbevf_vlan_rx_add_vid
,
3289 .ndo_vlan_rx_kill_vid
= ixgbevf_vlan_rx_kill_vid
,
3290 .ndo_set_features
= ixgbevf_set_features
,
3293 static void ixgbevf_assign_netdev_ops(struct net_device
*dev
)
3295 dev
->netdev_ops
= &ixgbe_netdev_ops
;
3296 ixgbevf_set_ethtool_ops(dev
);
3297 dev
->watchdog_timeo
= 5 * HZ
;
3301 * ixgbevf_probe - Device Initialization Routine
3302 * @pdev: PCI device information struct
3303 * @ent: entry in ixgbevf_pci_tbl
3305 * Returns 0 on success, negative on failure
3307 * ixgbevf_probe initializes an adapter identified by a pci_dev structure.
3308 * The OS initialization, configuring of the adapter private structure,
3309 * and a hardware reset occur.
3311 static int __devinit
ixgbevf_probe(struct pci_dev
*pdev
,
3312 const struct pci_device_id
*ent
)
3314 struct net_device
*netdev
;
3315 struct ixgbevf_adapter
*adapter
= NULL
;
3316 struct ixgbe_hw
*hw
= NULL
;
3317 const struct ixgbevf_info
*ii
= ixgbevf_info_tbl
[ent
->driver_data
];
3318 static int cards_found
;
3319 int err
, pci_using_dac
;
3321 err
= pci_enable_device(pdev
);
3325 if (!dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(64)) &&
3326 !dma_set_coherent_mask(&pdev
->dev
, DMA_BIT_MASK(64))) {
3329 err
= dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(32));
3331 err
= dma_set_coherent_mask(&pdev
->dev
,
3334 dev_err(&pdev
->dev
, "No usable DMA "
3335 "configuration, aborting\n");
3342 err
= pci_request_regions(pdev
, ixgbevf_driver_name
);
3344 dev_err(&pdev
->dev
, "pci_request_regions failed 0x%x\n", err
);
3348 pci_set_master(pdev
);
3351 netdev
= alloc_etherdev_mq(sizeof(struct ixgbevf_adapter
),
3354 netdev
= alloc_etherdev(sizeof(struct ixgbevf_adapter
));
3358 goto err_alloc_etherdev
;
3361 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
3363 pci_set_drvdata(pdev
, netdev
);
3364 adapter
= netdev_priv(netdev
);
3366 adapter
->netdev
= netdev
;
3367 adapter
->pdev
= pdev
;
3370 adapter
->msg_enable
= (1 << DEFAULT_DEBUG_LEVEL_SHIFT
) - 1;
3373 * call save state here in standalone driver because it relies on
3374 * adapter struct to exist, and needs to call netdev_priv
3376 pci_save_state(pdev
);
3378 hw
->hw_addr
= ioremap(pci_resource_start(pdev
, 0),
3379 pci_resource_len(pdev
, 0));
3385 ixgbevf_assign_netdev_ops(netdev
);
3387 adapter
->bd_number
= cards_found
;
3390 memcpy(&hw
->mac
.ops
, ii
->mac_ops
, sizeof(hw
->mac
.ops
));
3391 hw
->mac
.type
= ii
->mac
;
3393 memcpy(&hw
->mbx
.ops
, &ixgbevf_mbx_ops
,
3394 sizeof(struct ixgbe_mbx_operations
));
3396 adapter
->flags
&= ~IXGBE_FLAG_RX_PS_CAPABLE
;
3397 adapter
->flags
&= ~IXGBE_FLAG_RX_PS_ENABLED
;
3398 adapter
->flags
|= IXGBE_FLAG_RX_1BUF_CAPABLE
;
3400 /* setup the private structure */
3401 err
= ixgbevf_sw_init(adapter
);
3405 /* The HW MAC address was set and/or determined in sw_init */
3406 memcpy(netdev
->perm_addr
, adapter
->hw
.mac
.addr
, netdev
->addr_len
);
3408 if (!is_valid_ether_addr(netdev
->dev_addr
)) {
3409 pr_err("invalid MAC address\n");
3414 netdev
->hw_features
= NETIF_F_SG
|
3421 netdev
->features
= netdev
->hw_features
|
3422 NETIF_F_HW_VLAN_TX
|
3423 NETIF_F_HW_VLAN_RX
|
3424 NETIF_F_HW_VLAN_FILTER
;
3426 netdev
->vlan_features
|= NETIF_F_TSO
;
3427 netdev
->vlan_features
|= NETIF_F_TSO6
;
3428 netdev
->vlan_features
|= NETIF_F_IP_CSUM
;
3429 netdev
->vlan_features
|= NETIF_F_IPV6_CSUM
;
3430 netdev
->vlan_features
|= NETIF_F_SG
;
3433 netdev
->features
|= NETIF_F_HIGHDMA
;
3435 netdev
->priv_flags
|= IFF_UNICAST_FLT
;
3437 init_timer(&adapter
->watchdog_timer
);
3438 adapter
->watchdog_timer
.function
= ixgbevf_watchdog
;
3439 adapter
->watchdog_timer
.data
= (unsigned long)adapter
;
3441 INIT_WORK(&adapter
->reset_task
, ixgbevf_reset_task
);
3442 INIT_WORK(&adapter
->watchdog_task
, ixgbevf_watchdog_task
);
3444 err
= ixgbevf_init_interrupt_scheme(adapter
);
3448 /* pick up the PCI bus settings for reporting later */
3449 if (hw
->mac
.ops
.get_bus_info
)
3450 hw
->mac
.ops
.get_bus_info(hw
);
3452 strcpy(netdev
->name
, "eth%d");
3454 err
= register_netdev(netdev
);
3458 adapter
->netdev_registered
= true;
3460 netif_carrier_off(netdev
);
3462 ixgbevf_init_last_counter_stats(adapter
);
3464 /* print the MAC address */
3465 hw_dbg(hw
, "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x\n",
3466 netdev
->dev_addr
[0],
3467 netdev
->dev_addr
[1],
3468 netdev
->dev_addr
[2],
3469 netdev
->dev_addr
[3],
3470 netdev
->dev_addr
[4],
3471 netdev
->dev_addr
[5]);
3473 hw_dbg(hw
, "MAC: %d\n", hw
->mac
.type
);
3475 hw_dbg(hw
, "LRO is disabled\n");
3477 hw_dbg(hw
, "Intel(R) 82599 Virtual Function\n");
3483 ixgbevf_reset_interrupt_capability(adapter
);
3484 iounmap(hw
->hw_addr
);
3486 free_netdev(netdev
);
3488 pci_release_regions(pdev
);
3491 pci_disable_device(pdev
);
3496 * ixgbevf_remove - Device Removal Routine
3497 * @pdev: PCI device information struct
3499 * ixgbevf_remove is called by the PCI subsystem to alert the driver
3500 * that it should release a PCI device. The could be caused by a
3501 * Hot-Plug event, or because the driver is going to be removed from
3504 static void __devexit
ixgbevf_remove(struct pci_dev
*pdev
)
3506 struct net_device
*netdev
= pci_get_drvdata(pdev
);
3507 struct ixgbevf_adapter
*adapter
= netdev_priv(netdev
);
3509 set_bit(__IXGBEVF_DOWN
, &adapter
->state
);
3511 del_timer_sync(&adapter
->watchdog_timer
);
3513 cancel_work_sync(&adapter
->reset_task
);
3514 cancel_work_sync(&adapter
->watchdog_task
);
3516 if (adapter
->netdev_registered
) {
3517 unregister_netdev(netdev
);
3518 adapter
->netdev_registered
= false;
3521 ixgbevf_reset_interrupt_capability(adapter
);
3523 iounmap(adapter
->hw
.hw_addr
);
3524 pci_release_regions(pdev
);
3526 hw_dbg(&adapter
->hw
, "Remove complete\n");
3528 kfree(adapter
->tx_ring
);
3529 kfree(adapter
->rx_ring
);
3531 free_netdev(netdev
);
3533 pci_disable_device(pdev
);
3536 static struct pci_driver ixgbevf_driver
= {
3537 .name
= ixgbevf_driver_name
,
3538 .id_table
= ixgbevf_pci_tbl
,
3539 .probe
= ixgbevf_probe
,
3540 .remove
= __devexit_p(ixgbevf_remove
),
3541 .shutdown
= ixgbevf_shutdown
,
3545 * ixgbevf_init_module - Driver Registration Routine
3547 * ixgbevf_init_module is the first routine called when the driver is
3548 * loaded. All it does is register with the PCI subsystem.
3550 static int __init
ixgbevf_init_module(void)
3553 pr_info("%s - version %s\n", ixgbevf_driver_string
,
3554 ixgbevf_driver_version
);
3556 pr_info("%s\n", ixgbevf_copyright
);
3558 ret
= pci_register_driver(&ixgbevf_driver
);
3562 module_init(ixgbevf_init_module
);
3565 * ixgbevf_exit_module - Driver Exit Cleanup Routine
3567 * ixgbevf_exit_module is called just before the driver is removed
3570 static void __exit
ixgbevf_exit_module(void)
3572 pci_unregister_driver(&ixgbevf_driver
);
3577 * ixgbevf_get_hw_dev_name - return device name string
3578 * used by hardware layer to print debugging information
3580 char *ixgbevf_get_hw_dev_name(struct ixgbe_hw
*hw
)
3582 struct ixgbevf_adapter
*adapter
= hw
->back
;
3583 return adapter
->netdev
->name
;
3587 module_exit(ixgbevf_exit_module
);
3589 /* ixgbevf_main.c */