1 /*******************************************************************************
3 Intel 10 Gigabit PCI Express Linux driver
4 Copyright(c) 1999 - 2007 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 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *******************************************************************************/
29 #include <linux/types.h>
30 #include <linux/module.h>
31 #include <linux/pci.h>
32 #include <linux/netdevice.h>
33 #include <linux/vmalloc.h>
34 #include <linux/string.h>
37 #include <linux/tcp.h>
38 #include <linux/ipv6.h>
39 #include <net/checksum.h>
40 #include <net/ip6_checksum.h>
41 #include <linux/ethtool.h>
42 #include <linux/if_vlan.h>
45 #include "ixgbe_common.h"
47 char ixgbe_driver_name
[] = "ixgbe";
48 static char ixgbe_driver_string
[] =
49 "Intel(R) 10 Gigabit PCI Express Network Driver";
51 #define DRV_VERSION "1.1.18"
52 char ixgbe_driver_version
[] = DRV_VERSION
;
53 static char ixgbe_copyright
[] = "Copyright (c) 1999-2007 Intel Corporation.";
55 static const struct ixgbe_info
*ixgbe_info_tbl
[] = {
56 [board_82598AF
] = &ixgbe_82598AF_info
,
57 [board_82598EB
] = &ixgbe_82598EB_info
,
58 [board_82598AT
] = &ixgbe_82598AT_info
,
61 /* ixgbe_pci_tbl - PCI Device ID Table
63 * Wildcard entries (PCI_ANY_ID) should come last
64 * Last entry must be all 0s
66 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
67 * Class, Class Mask, private data (not used) }
69 static struct pci_device_id ixgbe_pci_tbl
[] = {
70 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AF_DUAL_PORT
),
72 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AF_SINGLE_PORT
),
74 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AT_DUAL_PORT
),
76 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598EB_CX4
),
79 /* required last entry */
82 MODULE_DEVICE_TABLE(pci
, ixgbe_pci_tbl
);
84 MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
85 MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
86 MODULE_LICENSE("GPL");
87 MODULE_VERSION(DRV_VERSION
);
89 #define DEFAULT_DEBUG_LEVEL_SHIFT 3
94 * ixgbe_get_hw_dev_name - return device name string
95 * used by hardware layer to print debugging information
97 char *ixgbe_get_hw_dev_name(struct ixgbe_hw
*hw
)
99 struct ixgbe_adapter
*adapter
= hw
->back
;
100 struct net_device
*netdev
= adapter
->netdev
;
105 static void ixgbe_set_ivar(struct ixgbe_adapter
*adapter
, u16 int_alloc_entry
,
110 msix_vector
|= IXGBE_IVAR_ALLOC_VAL
;
111 index
= (int_alloc_entry
>> 2) & 0x1F;
112 ivar
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_IVAR(index
));
113 ivar
&= ~(0xFF << (8 * (int_alloc_entry
& 0x3)));
114 ivar
|= (msix_vector
<< (8 * (int_alloc_entry
& 0x3)));
115 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_IVAR(index
), ivar
);
118 static void ixgbe_unmap_and_free_tx_resource(struct ixgbe_adapter
*adapter
,
119 struct ixgbe_tx_buffer
122 if (tx_buffer_info
->dma
) {
123 pci_unmap_page(adapter
->pdev
,
125 tx_buffer_info
->length
, PCI_DMA_TODEVICE
);
126 tx_buffer_info
->dma
= 0;
128 if (tx_buffer_info
->skb
) {
129 dev_kfree_skb_any(tx_buffer_info
->skb
);
130 tx_buffer_info
->skb
= NULL
;
132 /* tx_buffer_info must be completely set up in the transmit path */
135 static inline bool ixgbe_check_tx_hang(struct ixgbe_adapter
*adapter
,
136 struct ixgbe_ring
*tx_ring
,
138 union ixgbe_adv_tx_desc
*eop_desc
)
140 /* Detect a transmit hang in hardware, this serializes the
141 * check with the clearing of time_stamp and movement of i */
142 adapter
->detect_tx_hung
= false;
143 if (tx_ring
->tx_buffer_info
[eop
].dma
&&
144 time_after(jiffies
, tx_ring
->tx_buffer_info
[eop
].time_stamp
+ HZ
) &&
145 !(IXGBE_READ_REG(&adapter
->hw
, IXGBE_TFCS
) & IXGBE_TFCS_TXOFF
)) {
146 /* detected Tx unit hang */
147 DPRINTK(DRV
, ERR
, "Detected Tx Unit Hang\n"
150 " next_to_use <%x>\n"
151 " next_to_clean <%x>\n"
152 "tx_buffer_info[next_to_clean]\n"
153 " time_stamp <%lx>\n"
154 " next_to_watch <%x>\n"
156 " next_to_watch.status <%x>\n",
157 readl(adapter
->hw
.hw_addr
+ tx_ring
->head
),
158 readl(adapter
->hw
.hw_addr
+ tx_ring
->tail
),
159 tx_ring
->next_to_use
,
160 tx_ring
->next_to_clean
,
161 tx_ring
->tx_buffer_info
[eop
].time_stamp
,
162 eop
, jiffies
, eop_desc
->wb
.status
);
170 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
171 * @adapter: board private structure
173 static bool ixgbe_clean_tx_irq(struct ixgbe_adapter
*adapter
,
174 struct ixgbe_ring
*tx_ring
)
176 struct net_device
*netdev
= adapter
->netdev
;
177 union ixgbe_adv_tx_desc
*tx_desc
, *eop_desc
;
178 struct ixgbe_tx_buffer
*tx_buffer_info
;
180 bool cleaned
= false;
183 i
= tx_ring
->next_to_clean
;
184 eop
= tx_ring
->tx_buffer_info
[i
].next_to_watch
;
185 eop_desc
= IXGBE_TX_DESC_ADV(*tx_ring
, eop
);
186 while (eop_desc
->wb
.status
& cpu_to_le32(IXGBE_TXD_STAT_DD
)) {
187 for (cleaned
= false; !cleaned
;) {
188 tx_desc
= IXGBE_TX_DESC_ADV(*tx_ring
, i
);
189 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
190 cleaned
= (i
== eop
);
192 tx_ring
->stats
.bytes
+= tx_buffer_info
->length
;
193 ixgbe_unmap_and_free_tx_resource(adapter
,
195 tx_desc
->wb
.status
= 0;
198 if (i
== tx_ring
->count
)
202 tx_ring
->stats
.packets
++;
204 eop
= tx_ring
->tx_buffer_info
[i
].next_to_watch
;
205 eop_desc
= IXGBE_TX_DESC_ADV(*tx_ring
, eop
);
207 /* weight of a sort for tx, avoid endless transmit cleanup */
208 if (count
++ >= tx_ring
->work_limit
)
212 tx_ring
->next_to_clean
= i
;
214 #define TX_WAKE_THRESHOLD 32
215 spin_lock(&tx_ring
->tx_lock
);
217 if (cleaned
&& netif_carrier_ok(netdev
) &&
218 (IXGBE_DESC_UNUSED(tx_ring
) >= TX_WAKE_THRESHOLD
) &&
219 !test_bit(__IXGBE_DOWN
, &adapter
->state
))
220 netif_wake_queue(netdev
);
222 spin_unlock(&tx_ring
->tx_lock
);
224 if (adapter
->detect_tx_hung
)
225 if (ixgbe_check_tx_hang(adapter
, tx_ring
, eop
, eop_desc
))
226 netif_stop_queue(netdev
);
228 if (count
>= tx_ring
->work_limit
)
229 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EICS
, tx_ring
->eims_value
);
235 * ixgbe_receive_skb - Send a completed packet up the stack
236 * @adapter: board private structure
237 * @skb: packet to send up
238 * @is_vlan: packet has a VLAN tag
239 * @tag: VLAN tag from descriptor
241 static void ixgbe_receive_skb(struct ixgbe_adapter
*adapter
,
242 struct sk_buff
*skb
, bool is_vlan
,
245 if (!(adapter
->flags
& IXGBE_FLAG_IN_NETPOLL
)) {
246 if (adapter
->vlgrp
&& is_vlan
)
247 vlan_hwaccel_receive_skb(skb
, adapter
->vlgrp
, tag
);
249 netif_receive_skb(skb
);
252 if (adapter
->vlgrp
&& is_vlan
)
253 vlan_hwaccel_rx(skb
, adapter
->vlgrp
, tag
);
259 static inline void ixgbe_rx_checksum(struct ixgbe_adapter
*adapter
,
263 skb
->ip_summed
= CHECKSUM_NONE
;
265 /* Ignore Checksum bit is set */
266 if ((status_err
& IXGBE_RXD_STAT_IXSM
) ||
267 !(adapter
->flags
& IXGBE_FLAG_RX_CSUM_ENABLED
))
269 /* TCP/UDP checksum error bit is set */
270 if (status_err
& (IXGBE_RXDADV_ERR_TCPE
| IXGBE_RXDADV_ERR_IPE
)) {
271 /* let the stack verify checksum errors */
272 adapter
->hw_csum_rx_error
++;
275 /* It must be a TCP or UDP packet with a valid checksum */
276 if (status_err
& (IXGBE_RXD_STAT_L4CS
| IXGBE_RXD_STAT_UDPCS
))
277 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
278 adapter
->hw_csum_rx_good
++;
282 * ixgbe_alloc_rx_buffers - Replace used receive buffers; packet split
283 * @adapter: address of board private structure
285 static void ixgbe_alloc_rx_buffers(struct ixgbe_adapter
*adapter
,
286 struct ixgbe_ring
*rx_ring
,
289 struct net_device
*netdev
= adapter
->netdev
;
290 struct pci_dev
*pdev
= adapter
->pdev
;
291 union ixgbe_adv_rx_desc
*rx_desc
;
292 struct ixgbe_rx_buffer
*rx_buffer_info
;
295 unsigned int bufsz
= adapter
->rx_buf_len
+ NET_IP_ALIGN
;
297 i
= rx_ring
->next_to_use
;
298 rx_buffer_info
= &rx_ring
->rx_buffer_info
[i
];
300 while (cleaned_count
--) {
301 rx_desc
= IXGBE_RX_DESC_ADV(*rx_ring
, i
);
303 if (!rx_buffer_info
->page
&&
304 (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
)) {
305 rx_buffer_info
->page
= alloc_page(GFP_ATOMIC
);
306 if (!rx_buffer_info
->page
) {
307 adapter
->alloc_rx_page_failed
++;
310 rx_buffer_info
->page_dma
=
311 pci_map_page(pdev
, rx_buffer_info
->page
,
312 0, PAGE_SIZE
, PCI_DMA_FROMDEVICE
);
315 if (!rx_buffer_info
->skb
) {
316 skb
= netdev_alloc_skb(netdev
, bufsz
);
319 adapter
->alloc_rx_buff_failed
++;
324 * Make buffer alignment 2 beyond a 16 byte boundary
325 * this will result in a 16 byte aligned IP header after
326 * the 14 byte MAC header is removed
328 skb_reserve(skb
, NET_IP_ALIGN
);
330 rx_buffer_info
->skb
= skb
;
331 rx_buffer_info
->dma
= pci_map_single(pdev
, skb
->data
,
335 /* Refresh the desc even if buffer_addrs didn't change because
336 * each write-back erases this info. */
337 if (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
) {
338 rx_desc
->read
.pkt_addr
=
339 cpu_to_le64(rx_buffer_info
->page_dma
);
340 rx_desc
->read
.hdr_addr
=
341 cpu_to_le64(rx_buffer_info
->dma
);
343 rx_desc
->read
.pkt_addr
=
344 cpu_to_le64(rx_buffer_info
->dma
);
348 if (i
== rx_ring
->count
)
350 rx_buffer_info
= &rx_ring
->rx_buffer_info
[i
];
353 if (rx_ring
->next_to_use
!= i
) {
354 rx_ring
->next_to_use
= i
;
356 i
= (rx_ring
->count
- 1);
359 * Force memory writes to complete before letting h/w
360 * know there are new descriptors to fetch. (Only
361 * applicable for weak-ordered memory model archs,
365 writel(i
, adapter
->hw
.hw_addr
+ rx_ring
->tail
);
369 static bool ixgbe_clean_rx_irq(struct ixgbe_adapter
*adapter
,
370 struct ixgbe_ring
*rx_ring
,
371 int *work_done
, int work_to_do
)
373 struct net_device
*netdev
= adapter
->netdev
;
374 struct pci_dev
*pdev
= adapter
->pdev
;
375 union ixgbe_adv_rx_desc
*rx_desc
, *next_rxd
;
376 struct ixgbe_rx_buffer
*rx_buffer_info
, *next_buffer
;
379 u32 upper_len
, len
, staterr
;
380 u16 hdr_info
, vlan_tag
;
381 bool is_vlan
, cleaned
= false;
382 int cleaned_count
= 0;
384 i
= rx_ring
->next_to_clean
;
386 rx_desc
= IXGBE_RX_DESC_ADV(*rx_ring
, i
);
387 staterr
= le32_to_cpu(rx_desc
->wb
.upper
.status_error
);
388 rx_buffer_info
= &rx_ring
->rx_buffer_info
[i
];
389 is_vlan
= (staterr
& IXGBE_RXD_STAT_VP
);
390 vlan_tag
= le16_to_cpu(rx_desc
->wb
.upper
.vlan
);
392 while (staterr
& IXGBE_RXD_STAT_DD
) {
393 if (*work_done
>= work_to_do
)
397 if (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
) {
399 le16_to_cpu(rx_desc
->wb
.lower
.lo_dword
.hdr_info
);
401 ((hdr_info
& IXGBE_RXDADV_HDRBUFLEN_MASK
) >>
402 IXGBE_RXDADV_HDRBUFLEN_SHIFT
);
403 if (hdr_info
& IXGBE_RXDADV_SPH
)
404 adapter
->rx_hdr_split
++;
405 if (len
> IXGBE_RX_HDR_SIZE
)
406 len
= IXGBE_RX_HDR_SIZE
;
407 upper_len
= le16_to_cpu(rx_desc
->wb
.upper
.length
);
409 len
= le16_to_cpu(rx_desc
->wb
.upper
.length
);
412 skb
= rx_buffer_info
->skb
;
413 prefetch(skb
->data
- NET_IP_ALIGN
);
414 rx_buffer_info
->skb
= NULL
;
416 if (len
&& !skb_shinfo(skb
)->nr_frags
) {
417 pci_unmap_single(pdev
, rx_buffer_info
->dma
,
418 adapter
->rx_buf_len
+ NET_IP_ALIGN
,
424 pci_unmap_page(pdev
, rx_buffer_info
->page_dma
,
425 PAGE_SIZE
, PCI_DMA_FROMDEVICE
);
426 rx_buffer_info
->page_dma
= 0;
427 skb_fill_page_desc(skb
, skb_shinfo(skb
)->nr_frags
,
428 rx_buffer_info
->page
, 0, upper_len
);
429 rx_buffer_info
->page
= NULL
;
431 skb
->len
+= upper_len
;
432 skb
->data_len
+= upper_len
;
433 skb
->truesize
+= upper_len
;
437 if (i
== rx_ring
->count
)
439 next_buffer
= &rx_ring
->rx_buffer_info
[i
];
441 next_rxd
= IXGBE_RX_DESC_ADV(*rx_ring
, i
);
445 if (staterr
& IXGBE_RXD_STAT_EOP
) {
446 rx_ring
->stats
.packets
++;
447 rx_ring
->stats
.bytes
+= skb
->len
;
449 rx_buffer_info
->skb
= next_buffer
->skb
;
450 rx_buffer_info
->dma
= next_buffer
->dma
;
451 next_buffer
->skb
= skb
;
452 adapter
->non_eop_descs
++;
456 if (staterr
& IXGBE_RXDADV_ERR_FRAME_ERR_MASK
) {
457 dev_kfree_skb_irq(skb
);
461 ixgbe_rx_checksum(adapter
, staterr
, skb
);
462 skb
->protocol
= eth_type_trans(skb
, netdev
);
463 ixgbe_receive_skb(adapter
, skb
, is_vlan
, vlan_tag
);
464 netdev
->last_rx
= jiffies
;
467 rx_desc
->wb
.upper
.status_error
= 0;
469 /* return some buffers to hardware, one at a time is too slow */
470 if (cleaned_count
>= IXGBE_RX_BUFFER_WRITE
) {
471 ixgbe_alloc_rx_buffers(adapter
, rx_ring
, cleaned_count
);
475 /* use prefetched values */
477 rx_buffer_info
= next_buffer
;
479 staterr
= le32_to_cpu(rx_desc
->wb
.upper
.status_error
);
480 is_vlan
= (staterr
& IXGBE_RXD_STAT_VP
);
481 vlan_tag
= le16_to_cpu(rx_desc
->wb
.upper
.vlan
);
484 rx_ring
->next_to_clean
= i
;
485 cleaned_count
= IXGBE_DESC_UNUSED(rx_ring
);
488 ixgbe_alloc_rx_buffers(adapter
, rx_ring
, cleaned_count
);
493 #define IXGBE_MAX_INTR 10
495 * ixgbe_configure_msix - Configure MSI-X hardware
496 * @adapter: board private structure
498 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
501 static void ixgbe_configure_msix(struct ixgbe_adapter
*adapter
)
505 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
506 ixgbe_set_ivar(adapter
, IXGBE_IVAR_TX_QUEUE(i
),
507 IXGBE_MSIX_VECTOR(vector
));
508 writel(EITR_INTS_PER_SEC_TO_REG(adapter
->tx_eitr
),
509 adapter
->hw
.hw_addr
+ adapter
->tx_ring
[i
].itr_register
);
513 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
514 ixgbe_set_ivar(adapter
, IXGBE_IVAR_RX_QUEUE(i
),
515 IXGBE_MSIX_VECTOR(vector
));
516 writel(EITR_INTS_PER_SEC_TO_REG(adapter
->rx_eitr
),
517 adapter
->hw
.hw_addr
+ adapter
->rx_ring
[i
].itr_register
);
521 vector
= adapter
->num_tx_queues
+ adapter
->num_rx_queues
;
522 ixgbe_set_ivar(adapter
, IXGBE_IVAR_OTHER_CAUSES_INDEX
,
523 IXGBE_MSIX_VECTOR(vector
));
524 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EITR(vector
), 1950);
527 static irqreturn_t
ixgbe_msix_lsc(int irq
, void *data
)
529 struct net_device
*netdev
= data
;
530 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
531 struct ixgbe_hw
*hw
= &adapter
->hw
;
532 u32 eicr
= IXGBE_READ_REG(hw
, IXGBE_EICR
);
534 if (eicr
& IXGBE_EICR_LSC
) {
536 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
537 mod_timer(&adapter
->watchdog_timer
, jiffies
);
539 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMS
, IXGBE_EIMS_OTHER
);
544 static irqreturn_t
ixgbe_msix_clean_tx(int irq
, void *data
)
546 struct ixgbe_ring
*txr
= data
;
547 struct ixgbe_adapter
*adapter
= txr
->adapter
;
549 ixgbe_clean_tx_irq(adapter
, txr
);
554 static irqreturn_t
ixgbe_msix_clean_rx(int irq
, void *data
)
556 struct ixgbe_ring
*rxr
= data
;
557 struct ixgbe_adapter
*adapter
= rxr
->adapter
;
559 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC
, rxr
->eims_value
);
560 netif_rx_schedule(adapter
->netdev
, &adapter
->napi
);
564 static int ixgbe_clean_rxonly(struct napi_struct
*napi
, int budget
)
566 struct ixgbe_adapter
*adapter
= container_of(napi
,
567 struct ixgbe_adapter
, napi
);
568 struct net_device
*netdev
= adapter
->netdev
;
570 struct ixgbe_ring
*rxr
= adapter
->rx_ring
;
572 /* Keep link state information with original netdev */
573 if (!netif_carrier_ok(netdev
))
576 ixgbe_clean_rx_irq(adapter
, rxr
, &work_done
, budget
);
578 /* If no Tx and not enough Rx work done, exit the polling mode */
579 if ((work_done
< budget
) || !netif_running(netdev
)) {
581 netif_rx_complete(netdev
, napi
);
582 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
583 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMS
,
591 * ixgbe_setup_msix - Initialize MSI-X interrupts
593 * ixgbe_setup_msix allocates MSI-X vectors and requests
594 * interrutps from the kernel.
596 static int ixgbe_setup_msix(struct ixgbe_adapter
*adapter
)
598 struct net_device
*netdev
= adapter
->netdev
;
599 int i
, int_vector
= 0, err
= 0;
602 /* +1 for the LSC interrupt */
603 max_msix_count
= adapter
->num_rx_queues
+ adapter
->num_tx_queues
+ 1;
604 adapter
->msix_entries
= kcalloc(max_msix_count
,
605 sizeof(struct msix_entry
), GFP_KERNEL
);
606 if (!adapter
->msix_entries
)
609 for (i
= 0; i
< max_msix_count
; i
++)
610 adapter
->msix_entries
[i
].entry
= i
;
612 err
= pci_enable_msix(adapter
->pdev
, adapter
->msix_entries
,
617 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
618 sprintf(adapter
->tx_ring
[i
].name
, "%s-tx%d", netdev
->name
, i
);
619 err
= request_irq(adapter
->msix_entries
[int_vector
].vector
,
620 &ixgbe_msix_clean_tx
,
622 adapter
->tx_ring
[i
].name
,
623 &(adapter
->tx_ring
[i
]));
626 "request_irq failed for MSIX interrupt "
630 adapter
->tx_ring
[i
].eims_value
=
631 (1 << IXGBE_MSIX_VECTOR(int_vector
));
632 adapter
->tx_ring
[i
].itr_register
= IXGBE_EITR(int_vector
);
636 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
637 if (strlen(netdev
->name
) < (IFNAMSIZ
- 5))
638 sprintf(adapter
->rx_ring
[i
].name
,
639 "%s-rx%d", netdev
->name
, i
);
641 memcpy(adapter
->rx_ring
[i
].name
,
642 netdev
->name
, IFNAMSIZ
);
643 err
= request_irq(adapter
->msix_entries
[int_vector
].vector
,
644 &ixgbe_msix_clean_rx
, 0,
645 adapter
->rx_ring
[i
].name
,
646 &(adapter
->rx_ring
[i
]));
649 "request_irq failed for MSIX interrupt "
654 adapter
->rx_ring
[i
].eims_value
=
655 (1 << IXGBE_MSIX_VECTOR(int_vector
));
656 adapter
->rx_ring
[i
].itr_register
= IXGBE_EITR(int_vector
);
660 sprintf(adapter
->lsc_name
, "%s-lsc", netdev
->name
);
661 err
= request_irq(adapter
->msix_entries
[int_vector
].vector
,
662 &ixgbe_msix_lsc
, 0, adapter
->lsc_name
, netdev
);
665 "request_irq for msix_lsc failed: %d\n", err
);
669 /* FIXME: implement netif_napi_remove() instead */
670 adapter
->napi
.poll
= ixgbe_clean_rxonly
;
671 adapter
->flags
|= IXGBE_FLAG_MSIX_ENABLED
;
676 for (; int_vector
>= adapter
->num_tx_queues
; int_vector
--)
677 free_irq(adapter
->msix_entries
[int_vector
].vector
,
678 &(adapter
->rx_ring
[int_vector
-
679 adapter
->num_tx_queues
]));
681 for (; int_vector
>= 0; int_vector
--)
682 free_irq(adapter
->msix_entries
[int_vector
].vector
,
683 &(adapter
->tx_ring
[int_vector
]));
685 kfree(adapter
->msix_entries
);
686 adapter
->msix_entries
= NULL
;
687 adapter
->flags
&= ~IXGBE_FLAG_MSIX_ENABLED
;
692 * ixgbe_intr - Interrupt Handler
693 * @irq: interrupt number
694 * @data: pointer to a network interface device structure
695 * @pt_regs: CPU registers structure
697 static irqreturn_t
ixgbe_intr(int irq
, void *data
)
699 struct net_device
*netdev
= data
;
700 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
701 struct ixgbe_hw
*hw
= &adapter
->hw
;
704 eicr
= IXGBE_READ_REG(hw
, IXGBE_EICR
);
707 return IRQ_NONE
; /* Not our interrupt */
709 if (eicr
& IXGBE_EICR_LSC
) {
711 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
712 mod_timer(&adapter
->watchdog_timer
, jiffies
);
714 if (netif_rx_schedule_prep(netdev
, &adapter
->napi
)) {
715 /* Disable interrupts and register for poll. The flush of the
716 * posted write is intentionally left out. */
717 atomic_inc(&adapter
->irq_sem
);
718 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC
, ~0);
719 __netif_rx_schedule(netdev
, &adapter
->napi
);
726 * ixgbe_request_irq - initialize interrupts
727 * @adapter: board private structure
729 * Attempts to configure interrupts using the best available
730 * capabilities of the hardware and kernel.
732 static int ixgbe_request_irq(struct ixgbe_adapter
*adapter
, u32
*num_rx_queues
)
734 struct net_device
*netdev
= adapter
->netdev
;
736 irqreturn_t(*handler
) (int, void *) = &ixgbe_intr
;
740 err
= ixgbe_setup_msix(adapter
);
745 * if we can't do MSI-X, fall through and try MSI
746 * No need to reallocate memory since we're decreasing the number of
747 * queues. We just won't use the other ones, also it is freed correctly
753 err
= pci_enable_msi(adapter
->pdev
);
755 adapter
->flags
|= IXGBE_FLAG_MSI_ENABLED
;
756 flags
&= ~IRQF_SHARED
;
757 handler
= &ixgbe_intr
;
760 err
= request_irq(adapter
->pdev
->irq
, handler
, flags
,
761 netdev
->name
, netdev
);
763 DPRINTK(PROBE
, ERR
, "request_irq failed, Error %d\n", err
);
769 static void ixgbe_free_irq(struct ixgbe_adapter
*adapter
)
771 struct net_device
*netdev
= adapter
->netdev
;
773 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
) {
776 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
777 free_irq(adapter
->msix_entries
[i
].vector
,
778 &(adapter
->tx_ring
[i
]));
779 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
780 free_irq(adapter
->msix_entries
[i
+
781 adapter
->num_tx_queues
].vector
,
782 &(adapter
->rx_ring
[i
]));
783 i
= adapter
->num_rx_queues
+ adapter
->num_tx_queues
;
784 free_irq(adapter
->msix_entries
[i
].vector
, netdev
);
785 pci_disable_msix(adapter
->pdev
);
786 kfree(adapter
->msix_entries
);
787 adapter
->msix_entries
= NULL
;
788 adapter
->flags
&= ~IXGBE_FLAG_MSIX_ENABLED
;
792 free_irq(adapter
->pdev
->irq
, netdev
);
793 if (adapter
->flags
& IXGBE_FLAG_MSI_ENABLED
) {
794 pci_disable_msi(adapter
->pdev
);
795 adapter
->flags
&= ~IXGBE_FLAG_MSI_ENABLED
;
800 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
801 * @adapter: board private structure
803 static inline void ixgbe_irq_disable(struct ixgbe_adapter
*adapter
)
805 atomic_inc(&adapter
->irq_sem
);
806 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC
, ~0);
807 IXGBE_WRITE_FLUSH(&adapter
->hw
);
808 synchronize_irq(adapter
->pdev
->irq
);
812 * ixgbe_irq_enable - Enable default interrupt generation settings
813 * @adapter: board private structure
815 static inline void ixgbe_irq_enable(struct ixgbe_adapter
*adapter
)
817 if (atomic_dec_and_test(&adapter
->irq_sem
)) {
818 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)
819 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIAC
,
820 (IXGBE_EIMS_ENABLE_MASK
&
821 ~(IXGBE_EIMS_OTHER
| IXGBE_EIMS_LSC
)));
822 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMS
,
823 IXGBE_EIMS_ENABLE_MASK
);
824 IXGBE_WRITE_FLUSH(&adapter
->hw
);
829 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
832 static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter
*adapter
)
835 struct ixgbe_hw
*hw
= &adapter
->hw
;
837 if (adapter
->rx_eitr
)
838 IXGBE_WRITE_REG(hw
, IXGBE_EITR(0),
839 EITR_INTS_PER_SEC_TO_REG(adapter
->rx_eitr
));
841 /* for re-triggering the interrupt in non-NAPI mode */
842 adapter
->rx_ring
[0].eims_value
= (1 << IXGBE_MSIX_VECTOR(0));
843 adapter
->tx_ring
[0].eims_value
= (1 << IXGBE_MSIX_VECTOR(0));
845 ixgbe_set_ivar(adapter
, IXGBE_IVAR_RX_QUEUE(0), 0);
846 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
847 ixgbe_set_ivar(adapter
, IXGBE_IVAR_TX_QUEUE(i
), i
);
851 * ixgbe_configure_tx - Configure 8254x Transmit Unit after Reset
852 * @adapter: board private structure
854 * Configure the Tx unit of the MAC after a reset.
856 static void ixgbe_configure_tx(struct ixgbe_adapter
*adapter
)
859 struct ixgbe_hw
*hw
= &adapter
->hw
;
862 /* Setup the HW Tx Head and Tail descriptor pointers */
863 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
864 tdba
= adapter
->tx_ring
[i
].dma
;
865 tdlen
= adapter
->tx_ring
[i
].count
*
866 sizeof(union ixgbe_adv_tx_desc
);
867 IXGBE_WRITE_REG(hw
, IXGBE_TDBAL(i
), (tdba
& DMA_32BIT_MASK
));
868 IXGBE_WRITE_REG(hw
, IXGBE_TDBAH(i
), (tdba
>> 32));
869 IXGBE_WRITE_REG(hw
, IXGBE_TDLEN(i
), tdlen
);
870 IXGBE_WRITE_REG(hw
, IXGBE_TDH(i
), 0);
871 IXGBE_WRITE_REG(hw
, IXGBE_TDT(i
), 0);
872 adapter
->tx_ring
[i
].head
= IXGBE_TDH(i
);
873 adapter
->tx_ring
[i
].tail
= IXGBE_TDT(i
);
876 IXGBE_WRITE_REG(hw
, IXGBE_TIPG
, IXGBE_TIPG_FIBER_DEFAULT
);
879 #define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
880 (((S) & (PAGE_SIZE - 1)) ? 1 : 0))
882 #define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
884 * ixgbe_configure_rx - Configure 8254x Receive Unit after Reset
885 * @adapter: board private structure
887 * Configure the Rx unit of the MAC after a reset.
889 static void ixgbe_configure_rx(struct ixgbe_adapter
*adapter
)
892 struct ixgbe_hw
*hw
= &adapter
->hw
;
893 struct net_device
*netdev
= adapter
->netdev
;
894 int max_frame
= netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
895 u32 rdlen
, rxctrl
, rxcsum
;
903 /* Decide whether to use packet split mode or not */
904 if (netdev
->mtu
> ETH_DATA_LEN
)
905 adapter
->flags
|= IXGBE_FLAG_RX_PS_ENABLED
;
907 adapter
->flags
&= ~IXGBE_FLAG_RX_PS_ENABLED
;
909 /* Set the RX buffer length according to the mode */
910 if (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
) {
911 adapter
->rx_buf_len
= IXGBE_RX_HDR_SIZE
;
913 if (netdev
->mtu
<= ETH_DATA_LEN
)
914 adapter
->rx_buf_len
= MAXIMUM_ETHERNET_VLAN_SIZE
;
916 adapter
->rx_buf_len
= ALIGN(max_frame
, 1024);
919 fctrl
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_FCTRL
);
920 fctrl
|= IXGBE_FCTRL_BAM
;
921 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_FCTRL
, fctrl
);
923 hlreg0
= IXGBE_READ_REG(hw
, IXGBE_HLREG0
);
924 if (adapter
->netdev
->mtu
<= ETH_DATA_LEN
)
925 hlreg0
&= ~IXGBE_HLREG0_JUMBOEN
;
927 hlreg0
|= IXGBE_HLREG0_JUMBOEN
;
928 IXGBE_WRITE_REG(hw
, IXGBE_HLREG0
, hlreg0
);
930 pages
= PAGE_USE_COUNT(adapter
->netdev
->mtu
);
932 srrctl
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_SRRCTL(0));
933 srrctl
&= ~IXGBE_SRRCTL_BSIZEHDR_MASK
;
934 srrctl
&= ~IXGBE_SRRCTL_BSIZEPKT_MASK
;
936 if (adapter
->flags
& IXGBE_FLAG_RX_PS_ENABLED
) {
937 srrctl
|= PAGE_SIZE
>> IXGBE_SRRCTL_BSIZEPKT_SHIFT
;
938 srrctl
|= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS
;
939 srrctl
|= ((IXGBE_RX_HDR_SIZE
<<
940 IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT
) &
941 IXGBE_SRRCTL_BSIZEHDR_MASK
);
943 srrctl
|= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF
;
945 if (adapter
->rx_buf_len
== MAXIMUM_ETHERNET_VLAN_SIZE
)
947 IXGBE_RXBUFFER_2048
>> IXGBE_SRRCTL_BSIZEPKT_SHIFT
;
950 adapter
->rx_buf_len
>> IXGBE_SRRCTL_BSIZEPKT_SHIFT
;
952 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_SRRCTL(0), srrctl
);
954 rdlen
= adapter
->rx_ring
[0].count
* sizeof(union ixgbe_adv_rx_desc
);
955 /* disable receives while setting up the descriptors */
956 rxctrl
= IXGBE_READ_REG(hw
, IXGBE_RXCTRL
);
957 IXGBE_WRITE_REG(hw
, IXGBE_RXCTRL
, rxctrl
& ~IXGBE_RXCTRL_RXEN
);
959 /* Setup the HW Rx Head and Tail Descriptor Pointers and
960 * the Base and Length of the Rx Descriptor Ring */
961 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
962 rdba
= adapter
->rx_ring
[i
].dma
;
963 IXGBE_WRITE_REG(hw
, IXGBE_RDBAL(i
), (rdba
& DMA_32BIT_MASK
));
964 IXGBE_WRITE_REG(hw
, IXGBE_RDBAH(i
), (rdba
>> 32));
965 IXGBE_WRITE_REG(hw
, IXGBE_RDLEN(i
), rdlen
);
966 IXGBE_WRITE_REG(hw
, IXGBE_RDH(i
), 0);
967 IXGBE_WRITE_REG(hw
, IXGBE_RDT(i
), 0);
968 adapter
->rx_ring
[i
].head
= IXGBE_RDH(i
);
969 adapter
->rx_ring
[i
].tail
= IXGBE_RDT(i
);
972 if (adapter
->num_rx_queues
> 1) {
973 /* Random 40bytes used as random key in RSS hash function */
974 get_random_bytes(&random
[0], 40);
976 switch (adapter
->num_rx_queues
) {
979 /* Bits [3:0] in each byte refers the Rx queue no */
990 /* Fill out redirection table */
991 for (i
= 0; i
< 32; i
++) {
992 IXGBE_WRITE_REG_ARRAY(hw
, IXGBE_RETA(0), i
, reta
);
993 if (adapter
->num_rx_queues
> 4) {
995 IXGBE_WRITE_REG_ARRAY(hw
, IXGBE_RETA(0), i
,
1000 /* Fill out hash function seeds */
1001 for (i
= 0; i
< 10; i
++)
1002 IXGBE_WRITE_REG_ARRAY(hw
, IXGBE_RSSRK(0), i
, random
[i
]);
1004 mrqc
= IXGBE_MRQC_RSSEN
1005 /* Perform hash on these packet types */
1006 | IXGBE_MRQC_RSS_FIELD_IPV4
1007 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
1008 | IXGBE_MRQC_RSS_FIELD_IPV4_UDP
1009 | IXGBE_MRQC_RSS_FIELD_IPV6_EX_TCP
1010 | IXGBE_MRQC_RSS_FIELD_IPV6_EX
1011 | IXGBE_MRQC_RSS_FIELD_IPV6
1012 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP
1013 | IXGBE_MRQC_RSS_FIELD_IPV6_UDP
1014 | IXGBE_MRQC_RSS_FIELD_IPV6_EX_UDP
;
1015 IXGBE_WRITE_REG(hw
, IXGBE_MRQC
, mrqc
);
1017 /* Multiqueue and packet checksumming are mutually exclusive. */
1018 rxcsum
= IXGBE_READ_REG(hw
, IXGBE_RXCSUM
);
1019 rxcsum
|= IXGBE_RXCSUM_PCSD
;
1020 IXGBE_WRITE_REG(hw
, IXGBE_RXCSUM
, rxcsum
);
1022 /* Enable Receive Checksum Offload for TCP and UDP */
1023 rxcsum
= IXGBE_READ_REG(hw
, IXGBE_RXCSUM
);
1024 if (adapter
->flags
& IXGBE_FLAG_RX_CSUM_ENABLED
) {
1025 /* Enable IPv4 payload checksum for UDP fragments
1026 * Must be used in conjunction with packet-split. */
1027 rxcsum
|= IXGBE_RXCSUM_IPPCSE
;
1029 /* don't need to clear IPPCSE as it defaults to 0 */
1031 IXGBE_WRITE_REG(hw
, IXGBE_RXCSUM
, rxcsum
);
1033 /* Enable Receives */
1034 IXGBE_WRITE_REG(hw
, IXGBE_RXCTRL
, rxctrl
);
1035 rxctrl
= IXGBE_READ_REG(hw
, IXGBE_RXCTRL
);
1038 static void ixgbe_vlan_rx_register(struct net_device
*netdev
,
1039 struct vlan_group
*grp
)
1041 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1044 ixgbe_irq_disable(adapter
);
1045 adapter
->vlgrp
= grp
;
1048 /* enable VLAN tag insert/strip */
1049 ctrl
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_VLNCTRL
);
1050 ctrl
|= IXGBE_VLNCTRL_VME
| IXGBE_VLNCTRL_VFE
;
1051 ctrl
&= ~IXGBE_VLNCTRL_CFIEN
;
1052 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_VLNCTRL
, ctrl
);
1055 ixgbe_irq_enable(adapter
);
1058 static void ixgbe_vlan_rx_add_vid(struct net_device
*netdev
, u16 vid
)
1060 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1062 /* add VID to filter table */
1063 ixgbe_set_vfta(&adapter
->hw
, vid
, 0, true);
1066 static void ixgbe_vlan_rx_kill_vid(struct net_device
*netdev
, u16 vid
)
1068 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1070 ixgbe_irq_disable(adapter
);
1071 vlan_group_set_device(adapter
->vlgrp
, vid
, NULL
);
1072 ixgbe_irq_enable(adapter
);
1074 /* remove VID from filter table */
1075 ixgbe_set_vfta(&adapter
->hw
, vid
, 0, false);
1078 static void ixgbe_restore_vlan(struct ixgbe_adapter
*adapter
)
1080 ixgbe_vlan_rx_register(adapter
->netdev
, adapter
->vlgrp
);
1082 if (adapter
->vlgrp
) {
1084 for (vid
= 0; vid
< VLAN_GROUP_ARRAY_LEN
; vid
++) {
1085 if (!vlan_group_get_device(adapter
->vlgrp
, vid
))
1087 ixgbe_vlan_rx_add_vid(adapter
->netdev
, vid
);
1093 * ixgbe_set_multi - Multicast and Promiscuous mode set
1094 * @netdev: network interface device structure
1096 * The set_multi entry point is called whenever the multicast address
1097 * list or the network interface flags are updated. This routine is
1098 * responsible for configuring the hardware for proper multicast,
1099 * promiscuous mode, and all-multi behavior.
1101 static void ixgbe_set_multi(struct net_device
*netdev
)
1103 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1104 struct ixgbe_hw
*hw
= &adapter
->hw
;
1105 struct dev_mc_list
*mc_ptr
;
1110 /* Check for Promiscuous and All Multicast modes */
1112 fctrl
= IXGBE_READ_REG(hw
, IXGBE_FCTRL
);
1114 if (netdev
->flags
& IFF_PROMISC
) {
1115 fctrl
|= (IXGBE_FCTRL_UPE
| IXGBE_FCTRL_MPE
);
1116 } else if (netdev
->flags
& IFF_ALLMULTI
) {
1117 fctrl
|= IXGBE_FCTRL_MPE
;
1118 fctrl
&= ~IXGBE_FCTRL_UPE
;
1120 fctrl
&= ~(IXGBE_FCTRL_UPE
| IXGBE_FCTRL_MPE
);
1123 IXGBE_WRITE_REG(hw
, IXGBE_FCTRL
, fctrl
);
1125 if (netdev
->mc_count
) {
1126 mta_list
= kcalloc(netdev
->mc_count
, ETH_ALEN
, GFP_ATOMIC
);
1130 /* Shared function expects packed array of only addresses. */
1131 mc_ptr
= netdev
->mc_list
;
1133 for (i
= 0; i
< netdev
->mc_count
; i
++) {
1136 memcpy(mta_list
+ (i
* ETH_ALEN
), mc_ptr
->dmi_addr
,
1138 mc_ptr
= mc_ptr
->next
;
1141 ixgbe_update_mc_addr_list(hw
, mta_list
, i
, 0);
1144 ixgbe_update_mc_addr_list(hw
, NULL
, 0, 0);
1149 static void ixgbe_configure(struct ixgbe_adapter
*adapter
)
1151 struct net_device
*netdev
= adapter
->netdev
;
1154 ixgbe_set_multi(netdev
);
1156 ixgbe_restore_vlan(adapter
);
1158 ixgbe_configure_tx(adapter
);
1159 ixgbe_configure_rx(adapter
);
1160 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
1161 ixgbe_alloc_rx_buffers(adapter
, &adapter
->rx_ring
[i
],
1162 (adapter
->rx_ring
[i
].count
- 1));
1165 static int ixgbe_up_complete(struct ixgbe_adapter
*adapter
)
1167 struct net_device
*netdev
= adapter
->netdev
;
1170 struct ixgbe_hw
*hw
= &adapter
->hw
;
1171 u32 txdctl
, rxdctl
, mhadd
;
1172 int max_frame
= netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
1174 if (adapter
->flags
& (IXGBE_FLAG_MSIX_ENABLED
|
1175 IXGBE_FLAG_MSI_ENABLED
)) {
1176 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
) {
1177 gpie
= (IXGBE_GPIE_MSIX_MODE
| IXGBE_GPIE_EIAME
|
1178 IXGBE_GPIE_PBA_SUPPORT
| IXGBE_GPIE_OCD
);
1181 gpie
= (IXGBE_GPIE_EIAME
|
1182 IXGBE_GPIE_PBA_SUPPORT
);
1184 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_GPIE
, gpie
);
1185 gpie
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_GPIE
);
1188 mhadd
= IXGBE_READ_REG(hw
, IXGBE_MHADD
);
1190 if (max_frame
!= (mhadd
>> IXGBE_MHADD_MFS_SHIFT
)) {
1191 mhadd
&= ~IXGBE_MHADD_MFS_MASK
;
1192 mhadd
|= max_frame
<< IXGBE_MHADD_MFS_SHIFT
;
1194 IXGBE_WRITE_REG(hw
, IXGBE_MHADD
, mhadd
);
1197 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
1198 txdctl
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_TXDCTL(i
));
1199 txdctl
|= IXGBE_TXDCTL_ENABLE
;
1200 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_TXDCTL(i
), txdctl
);
1203 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
1204 rxdctl
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_RXDCTL(i
));
1205 rxdctl
|= IXGBE_RXDCTL_ENABLE
;
1206 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_RXDCTL(i
), rxdctl
);
1208 /* enable all receives */
1209 rxdctl
= IXGBE_READ_REG(hw
, IXGBE_RXCTRL
);
1210 rxdctl
|= (IXGBE_RXCTRL_DMBYPS
| IXGBE_RXCTRL_RXEN
);
1211 IXGBE_WRITE_REG(hw
, IXGBE_RXCTRL
, rxdctl
);
1213 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)
1214 ixgbe_configure_msix(adapter
);
1216 ixgbe_configure_msi_and_legacy(adapter
);
1218 clear_bit(__IXGBE_DOWN
, &adapter
->state
);
1219 napi_enable(&adapter
->napi
);
1220 ixgbe_irq_enable(adapter
);
1222 /* bring the link up in the watchdog, this could race with our first
1223 * link up interrupt but shouldn't be a problem */
1224 mod_timer(&adapter
->watchdog_timer
, jiffies
);
1228 int ixgbe_up(struct ixgbe_adapter
*adapter
)
1230 /* hardware has been reset, we need to reload some things */
1231 ixgbe_configure(adapter
);
1233 return ixgbe_up_complete(adapter
);
1236 void ixgbe_reset(struct ixgbe_adapter
*adapter
)
1238 if (ixgbe_init_hw(&adapter
->hw
))
1239 DPRINTK(PROBE
, ERR
, "Hardware Error\n");
1241 /* reprogram the RAR[0] in case user changed it. */
1242 ixgbe_set_rar(&adapter
->hw
, 0, adapter
->hw
.mac
.addr
, 0, IXGBE_RAH_AV
);
1247 static int ixgbe_resume(struct pci_dev
*pdev
)
1249 struct net_device
*netdev
= pci_get_drvdata(pdev
);
1250 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1251 u32 err
, num_rx_queues
= adapter
->num_rx_queues
;
1253 pci_set_power_state(pdev
, PCI_D0
);
1254 pci_restore_state(pdev
);
1255 err
= pci_enable_device(pdev
);
1257 printk(KERN_ERR
"ixgbe: Cannot enable PCI device from " \
1261 pci_set_master(pdev
);
1263 pci_enable_wake(pdev
, PCI_D3hot
, 0);
1264 pci_enable_wake(pdev
, PCI_D3cold
, 0);
1266 if (netif_running(netdev
)) {
1267 err
= ixgbe_request_irq(adapter
, &num_rx_queues
);
1272 ixgbe_reset(adapter
);
1274 if (netif_running(netdev
))
1277 netif_device_attach(netdev
);
1284 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
1285 * @adapter: board private structure
1286 * @rx_ring: ring to free buffers from
1288 static void ixgbe_clean_rx_ring(struct ixgbe_adapter
*adapter
,
1289 struct ixgbe_ring
*rx_ring
)
1291 struct pci_dev
*pdev
= adapter
->pdev
;
1295 /* Free all the Rx ring sk_buffs */
1297 for (i
= 0; i
< rx_ring
->count
; i
++) {
1298 struct ixgbe_rx_buffer
*rx_buffer_info
;
1300 rx_buffer_info
= &rx_ring
->rx_buffer_info
[i
];
1301 if (rx_buffer_info
->dma
) {
1302 pci_unmap_single(pdev
, rx_buffer_info
->dma
,
1303 adapter
->rx_buf_len
,
1304 PCI_DMA_FROMDEVICE
);
1305 rx_buffer_info
->dma
= 0;
1307 if (rx_buffer_info
->skb
) {
1308 dev_kfree_skb(rx_buffer_info
->skb
);
1309 rx_buffer_info
->skb
= NULL
;
1311 if (!rx_buffer_info
->page
)
1313 pci_unmap_page(pdev
, rx_buffer_info
->page_dma
, PAGE_SIZE
,
1314 PCI_DMA_FROMDEVICE
);
1315 rx_buffer_info
->page_dma
= 0;
1317 put_page(rx_buffer_info
->page
);
1318 rx_buffer_info
->page
= NULL
;
1321 size
= sizeof(struct ixgbe_rx_buffer
) * rx_ring
->count
;
1322 memset(rx_ring
->rx_buffer_info
, 0, size
);
1324 /* Zero out the descriptor ring */
1325 memset(rx_ring
->desc
, 0, rx_ring
->size
);
1327 rx_ring
->next_to_clean
= 0;
1328 rx_ring
->next_to_use
= 0;
1330 writel(0, adapter
->hw
.hw_addr
+ rx_ring
->head
);
1331 writel(0, adapter
->hw
.hw_addr
+ rx_ring
->tail
);
1335 * ixgbe_clean_tx_ring - Free Tx Buffers
1336 * @adapter: board private structure
1337 * @tx_ring: ring to be cleaned
1339 static void ixgbe_clean_tx_ring(struct ixgbe_adapter
*adapter
,
1340 struct ixgbe_ring
*tx_ring
)
1342 struct ixgbe_tx_buffer
*tx_buffer_info
;
1346 /* Free all the Tx ring sk_buffs */
1348 for (i
= 0; i
< tx_ring
->count
; i
++) {
1349 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
1350 ixgbe_unmap_and_free_tx_resource(adapter
, tx_buffer_info
);
1353 size
= sizeof(struct ixgbe_tx_buffer
) * tx_ring
->count
;
1354 memset(tx_ring
->tx_buffer_info
, 0, size
);
1356 /* Zero out the descriptor ring */
1357 memset(tx_ring
->desc
, 0, tx_ring
->size
);
1359 tx_ring
->next_to_use
= 0;
1360 tx_ring
->next_to_clean
= 0;
1362 writel(0, adapter
->hw
.hw_addr
+ tx_ring
->head
);
1363 writel(0, adapter
->hw
.hw_addr
+ tx_ring
->tail
);
1367 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
1368 * @adapter: board private structure
1370 static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter
*adapter
)
1374 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
1375 ixgbe_clean_tx_ring(adapter
, &adapter
->tx_ring
[i
]);
1379 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
1380 * @adapter: board private structure
1382 static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter
*adapter
)
1386 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
1387 ixgbe_clean_rx_ring(adapter
, &adapter
->rx_ring
[i
]);
1390 void ixgbe_down(struct ixgbe_adapter
*adapter
)
1392 struct net_device
*netdev
= adapter
->netdev
;
1395 /* signal that we are down to the interrupt handler */
1396 set_bit(__IXGBE_DOWN
, &adapter
->state
);
1398 /* disable receives */
1399 rxctrl
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_RXCTRL
);
1400 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_RXCTRL
,
1401 rxctrl
& ~IXGBE_RXCTRL_RXEN
);
1403 netif_tx_disable(netdev
);
1405 /* disable transmits in the hardware */
1407 /* flush both disables */
1408 IXGBE_WRITE_FLUSH(&adapter
->hw
);
1411 ixgbe_irq_disable(adapter
);
1413 napi_disable(&adapter
->napi
);
1414 del_timer_sync(&adapter
->watchdog_timer
);
1416 netif_carrier_off(netdev
);
1417 netif_stop_queue(netdev
);
1419 ixgbe_reset(adapter
);
1420 ixgbe_clean_all_tx_rings(adapter
);
1421 ixgbe_clean_all_rx_rings(adapter
);
1425 static int ixgbe_suspend(struct pci_dev
*pdev
, pm_message_t state
)
1427 struct net_device
*netdev
= pci_get_drvdata(pdev
);
1428 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1433 netif_device_detach(netdev
);
1435 if (netif_running(netdev
)) {
1436 ixgbe_down(adapter
);
1437 ixgbe_free_irq(adapter
);
1441 retval
= pci_save_state(pdev
);
1446 pci_enable_wake(pdev
, PCI_D3hot
, 0);
1447 pci_enable_wake(pdev
, PCI_D3cold
, 0);
1449 pci_disable_device(pdev
);
1451 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
1456 static void ixgbe_shutdown(struct pci_dev
*pdev
)
1458 ixgbe_suspend(pdev
, PMSG_SUSPEND
);
1462 * ixgbe_clean - NAPI Rx polling callback
1463 * @adapter: board private structure
1465 static int ixgbe_clean(struct napi_struct
*napi
, int budget
)
1467 struct ixgbe_adapter
*adapter
= container_of(napi
,
1468 struct ixgbe_adapter
, napi
);
1469 struct net_device
*netdev
= adapter
->netdev
;
1470 int tx_cleaned
= 0, work_done
= 0;
1472 /* Keep link state information with original netdev */
1473 if (!netif_carrier_ok(adapter
->netdev
))
1476 /* In non-MSIX case, there is no multi-Tx/Rx queue */
1477 tx_cleaned
= ixgbe_clean_tx_irq(adapter
, adapter
->tx_ring
);
1478 ixgbe_clean_rx_irq(adapter
, &adapter
->rx_ring
[0], &work_done
,
1481 /* If no Tx and not enough Rx work done, exit the polling mode */
1482 if ((!tx_cleaned
&& (work_done
< budget
)) ||
1483 !netif_running(adapter
->netdev
)) {
1485 netif_rx_complete(netdev
, napi
);
1486 ixgbe_irq_enable(adapter
);
1493 * ixgbe_tx_timeout - Respond to a Tx Hang
1494 * @netdev: network interface device structure
1496 static void ixgbe_tx_timeout(struct net_device
*netdev
)
1498 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1500 /* Do the reset outside of interrupt context */
1501 schedule_work(&adapter
->reset_task
);
1504 static void ixgbe_reset_task(struct work_struct
*work
)
1506 struct ixgbe_adapter
*adapter
;
1507 adapter
= container_of(work
, struct ixgbe_adapter
, reset_task
);
1509 adapter
->tx_timeout_count
++;
1511 ixgbe_down(adapter
);
1516 * ixgbe_alloc_queues - Allocate memory for all rings
1517 * @adapter: board private structure to initialize
1519 * We allocate one ring per queue at run-time since we don't know the
1520 * number of queues at compile-time. The polling_netdev array is
1521 * intended for Multiqueue, but should work fine with a single queue.
1523 static int __devinit
ixgbe_alloc_queues(struct ixgbe_adapter
*adapter
)
1527 adapter
->tx_ring
= kcalloc(adapter
->num_tx_queues
,
1528 sizeof(struct ixgbe_ring
), GFP_KERNEL
);
1529 if (!adapter
->tx_ring
)
1532 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
1533 adapter
->tx_ring
[i
].count
= IXGBE_DEFAULT_TXD
;
1535 adapter
->rx_ring
= kcalloc(adapter
->num_rx_queues
,
1536 sizeof(struct ixgbe_ring
), GFP_KERNEL
);
1537 if (!adapter
->rx_ring
) {
1538 kfree(adapter
->tx_ring
);
1542 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
1543 adapter
->rx_ring
[i
].adapter
= adapter
;
1544 adapter
->rx_ring
[i
].itr_register
= IXGBE_EITR(i
);
1545 adapter
->rx_ring
[i
].count
= IXGBE_DEFAULT_RXD
;
1552 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
1553 * @adapter: board private structure to initialize
1555 * ixgbe_sw_init initializes the Adapter private data structure.
1556 * Fields are initialized based on PCI device information and
1557 * OS network device settings (MTU size).
1559 static int __devinit
ixgbe_sw_init(struct ixgbe_adapter
*adapter
)
1561 struct ixgbe_hw
*hw
= &adapter
->hw
;
1562 struct pci_dev
*pdev
= adapter
->pdev
;
1564 /* default flow control settings */
1565 hw
->fc
.original_type
= ixgbe_fc_full
;
1566 hw
->fc
.type
= ixgbe_fc_full
;
1568 hw
->mac
.link_mode_select
= IXGBE_AUTOC_LMS_10G_LINK_NO_AN
;
1569 if (hw
->mac
.ops
.reset(hw
)) {
1570 dev_err(&pdev
->dev
, "HW Init failed\n");
1573 if (hw
->phy
.ops
.setup_speed(hw
, IXGBE_LINK_SPEED_10GB_FULL
, true,
1575 dev_err(&pdev
->dev
, "Link Speed setup failed\n");
1579 /* initialize eeprom parameters */
1580 if (ixgbe_init_eeprom(hw
)) {
1581 dev_err(&pdev
->dev
, "EEPROM initialization failed\n");
1585 /* Set the default values */
1586 adapter
->num_rx_queues
= IXGBE_DEFAULT_RXQ
;
1587 adapter
->num_tx_queues
= 1;
1588 adapter
->flags
|= IXGBE_FLAG_RX_CSUM_ENABLED
;
1590 if (ixgbe_alloc_queues(adapter
)) {
1591 dev_err(&pdev
->dev
, "Unable to allocate memory for queues\n");
1595 atomic_set(&adapter
->irq_sem
, 1);
1596 set_bit(__IXGBE_DOWN
, &adapter
->state
);
1602 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
1603 * @adapter: board private structure
1604 * @txdr: tx descriptor ring (for a specific queue) to setup
1606 * Return 0 on success, negative on failure
1608 int ixgbe_setup_tx_resources(struct ixgbe_adapter
*adapter
,
1609 struct ixgbe_ring
*txdr
)
1611 struct pci_dev
*pdev
= adapter
->pdev
;
1614 size
= sizeof(struct ixgbe_tx_buffer
) * txdr
->count
;
1615 txdr
->tx_buffer_info
= vmalloc(size
);
1616 if (!txdr
->tx_buffer_info
) {
1618 "Unable to allocate memory for the transmit descriptor ring\n");
1621 memset(txdr
->tx_buffer_info
, 0, size
);
1623 /* round up to nearest 4K */
1624 txdr
->size
= txdr
->count
* sizeof(union ixgbe_adv_tx_desc
);
1625 txdr
->size
= ALIGN(txdr
->size
, 4096);
1627 txdr
->desc
= pci_alloc_consistent(pdev
, txdr
->size
, &txdr
->dma
);
1629 vfree(txdr
->tx_buffer_info
);
1631 "Memory allocation failed for the tx desc ring\n");
1635 txdr
->adapter
= adapter
;
1636 txdr
->next_to_use
= 0;
1637 txdr
->next_to_clean
= 0;
1638 txdr
->work_limit
= txdr
->count
;
1639 spin_lock_init(&txdr
->tx_lock
);
1645 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
1646 * @adapter: board private structure
1647 * @rxdr: rx descriptor ring (for a specific queue) to setup
1649 * Returns 0 on success, negative on failure
1651 int ixgbe_setup_rx_resources(struct ixgbe_adapter
*adapter
,
1652 struct ixgbe_ring
*rxdr
)
1654 struct pci_dev
*pdev
= adapter
->pdev
;
1657 size
= sizeof(struct ixgbe_rx_buffer
) * rxdr
->count
;
1658 rxdr
->rx_buffer_info
= vmalloc(size
);
1659 if (!rxdr
->rx_buffer_info
) {
1661 "vmalloc allocation failed for the rx desc ring\n");
1664 memset(rxdr
->rx_buffer_info
, 0, size
);
1666 desc_len
= sizeof(union ixgbe_adv_rx_desc
);
1668 /* Round up to nearest 4K */
1669 rxdr
->size
= rxdr
->count
* desc_len
;
1670 rxdr
->size
= ALIGN(rxdr
->size
, 4096);
1672 rxdr
->desc
= pci_alloc_consistent(pdev
, rxdr
->size
, &rxdr
->dma
);
1676 "Memory allocation failed for the rx desc ring\n");
1677 vfree(rxdr
->rx_buffer_info
);
1681 rxdr
->next_to_clean
= 0;
1682 rxdr
->next_to_use
= 0;
1683 rxdr
->adapter
= adapter
;
1689 * ixgbe_free_tx_resources - Free Tx Resources per Queue
1690 * @adapter: board private structure
1691 * @tx_ring: Tx descriptor ring for a specific queue
1693 * Free all transmit software resources
1695 static void ixgbe_free_tx_resources(struct ixgbe_adapter
*adapter
,
1696 struct ixgbe_ring
*tx_ring
)
1698 struct pci_dev
*pdev
= adapter
->pdev
;
1700 ixgbe_clean_tx_ring(adapter
, tx_ring
);
1702 vfree(tx_ring
->tx_buffer_info
);
1703 tx_ring
->tx_buffer_info
= NULL
;
1705 pci_free_consistent(pdev
, tx_ring
->size
, tx_ring
->desc
, tx_ring
->dma
);
1707 tx_ring
->desc
= NULL
;
1711 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
1712 * @adapter: board private structure
1714 * Free all transmit software resources
1716 static void ixgbe_free_all_tx_resources(struct ixgbe_adapter
*adapter
)
1720 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
1721 ixgbe_free_tx_resources(adapter
, &adapter
->tx_ring
[i
]);
1725 * ixgbe_free_rx_resources - Free Rx Resources
1726 * @adapter: board private structure
1727 * @rx_ring: ring to clean the resources from
1729 * Free all receive software resources
1731 static void ixgbe_free_rx_resources(struct ixgbe_adapter
*adapter
,
1732 struct ixgbe_ring
*rx_ring
)
1734 struct pci_dev
*pdev
= adapter
->pdev
;
1736 ixgbe_clean_rx_ring(adapter
, rx_ring
);
1738 vfree(rx_ring
->rx_buffer_info
);
1739 rx_ring
->rx_buffer_info
= NULL
;
1741 pci_free_consistent(pdev
, rx_ring
->size
, rx_ring
->desc
, rx_ring
->dma
);
1743 rx_ring
->desc
= NULL
;
1747 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
1748 * @adapter: board private structure
1750 * Free all receive software resources
1752 static void ixgbe_free_all_rx_resources(struct ixgbe_adapter
*adapter
)
1756 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
1757 ixgbe_free_rx_resources(adapter
, &adapter
->rx_ring
[i
]);
1761 * ixgbe_setup_all_tx_resources - wrapper to allocate Tx resources
1762 * (Descriptors) for all queues
1763 * @adapter: board private structure
1765 * If this function returns with an error, then it's possible one or
1766 * more of the rings is populated (while the rest are not). It is the
1767 * callers duty to clean those orphaned rings.
1769 * Return 0 on success, negative on failure
1771 static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter
*adapter
)
1775 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
1776 err
= ixgbe_setup_tx_resources(adapter
, &adapter
->tx_ring
[i
]);
1779 "Allocation for Tx Queue %u failed\n", i
);
1788 * ixgbe_setup_all_rx_resources - wrapper to allocate Rx resources
1789 * (Descriptors) for all queues
1790 * @adapter: board private structure
1792 * If this function returns with an error, then it's possible one or
1793 * more of the rings is populated (while the rest are not). It is the
1794 * callers duty to clean those orphaned rings.
1796 * Return 0 on success, negative on failure
1799 static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter
*adapter
)
1803 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
1804 err
= ixgbe_setup_rx_resources(adapter
, &adapter
->rx_ring
[i
]);
1807 "Allocation for Rx Queue %u failed\n", i
);
1816 * ixgbe_change_mtu - Change the Maximum Transfer Unit
1817 * @netdev: network interface device structure
1818 * @new_mtu: new value for maximum frame size
1820 * Returns 0 on success, negative on failure
1822 static int ixgbe_change_mtu(struct net_device
*netdev
, int new_mtu
)
1824 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1825 int max_frame
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
1827 if ((max_frame
< (ETH_ZLEN
+ ETH_FCS_LEN
)) ||
1828 (max_frame
> IXGBE_MAX_JUMBO_FRAME_SIZE
))
1831 netdev
->mtu
= new_mtu
;
1833 if (netif_running(netdev
)) {
1834 ixgbe_down(adapter
);
1842 * ixgbe_open - Called when a network interface is made active
1843 * @netdev: network interface device structure
1845 * Returns 0 on success, negative value on failure
1847 * The open entry point is called when a network interface is made
1848 * active by the system (IFF_UP). At this point all resources needed
1849 * for transmit and receive operations are allocated, the interrupt
1850 * handler is registered with the OS, the watchdog timer is started,
1851 * and the stack is notified that the interface is ready.
1853 static int ixgbe_open(struct net_device
*netdev
)
1855 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1858 u32 num_rx_queues
= adapter
->num_rx_queues
;
1860 /* Let firmware know the driver has taken over */
1861 ctrl_ext
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_CTRL_EXT
);
1862 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_CTRL_EXT
,
1863 ctrl_ext
| IXGBE_CTRL_EXT_DRV_LOAD
);
1866 /* allocate transmit descriptors */
1867 err
= ixgbe_setup_all_tx_resources(adapter
);
1871 if (!(adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)) {
1873 adapter
->num_rx_queues
= num_rx_queues
;
1876 /* allocate receive descriptors */
1877 err
= ixgbe_setup_all_rx_resources(adapter
);
1881 ixgbe_configure(adapter
);
1883 err
= ixgbe_request_irq(adapter
, &num_rx_queues
);
1887 /* ixgbe_request might have reduced num_rx_queues */
1888 if (num_rx_queues
< adapter
->num_rx_queues
) {
1889 /* We didn't get MSI-X, so we need to release everything,
1890 * set our Rx queue count to num_rx_queues, and redo the
1891 * whole init process.
1893 ixgbe_free_irq(adapter
);
1894 if (adapter
->flags
& IXGBE_FLAG_MSI_ENABLED
) {
1895 pci_disable_msi(adapter
->pdev
);
1896 adapter
->flags
&= ~IXGBE_FLAG_MSI_ENABLED
;
1898 ixgbe_free_all_rx_resources(adapter
);
1899 ixgbe_free_all_tx_resources(adapter
);
1900 adapter
->num_rx_queues
= num_rx_queues
;
1902 /* Reset the hardware, and start over. */
1903 ixgbe_reset(adapter
);
1905 goto try_intr_reinit
;
1908 err
= ixgbe_up_complete(adapter
);
1915 ixgbe_free_irq(adapter
);
1917 ixgbe_free_all_rx_resources(adapter
);
1919 ixgbe_free_all_tx_resources(adapter
);
1921 ixgbe_reset(adapter
);
1927 * ixgbe_close - Disables a network interface
1928 * @netdev: network interface device structure
1930 * Returns 0, this is not allowed to fail
1932 * The close entry point is called when an interface is de-activated
1933 * by the OS. The hardware is still under the drivers control, but
1934 * needs to be disabled. A global MAC reset is issued to stop the
1935 * hardware, and all transmit and receive resources are freed.
1937 static int ixgbe_close(struct net_device
*netdev
)
1939 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
1942 ixgbe_down(adapter
);
1943 ixgbe_free_irq(adapter
);
1945 ixgbe_free_all_tx_resources(adapter
);
1946 ixgbe_free_all_rx_resources(adapter
);
1948 ctrl_ext
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_CTRL_EXT
);
1949 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_CTRL_EXT
,
1950 ctrl_ext
& ~IXGBE_CTRL_EXT_DRV_LOAD
);
1956 * ixgbe_update_stats - Update the board statistics counters.
1957 * @adapter: board private structure
1959 void ixgbe_update_stats(struct ixgbe_adapter
*adapter
)
1961 struct ixgbe_hw
*hw
= &adapter
->hw
;
1962 u64 good_rx
, missed_rx
, bprc
;
1964 adapter
->stats
.crcerrs
+= IXGBE_READ_REG(hw
, IXGBE_CRCERRS
);
1965 good_rx
= IXGBE_READ_REG(hw
, IXGBE_GPRC
);
1966 missed_rx
= IXGBE_READ_REG(hw
, IXGBE_MPC(0));
1967 missed_rx
+= IXGBE_READ_REG(hw
, IXGBE_MPC(1));
1968 missed_rx
+= IXGBE_READ_REG(hw
, IXGBE_MPC(2));
1969 missed_rx
+= IXGBE_READ_REG(hw
, IXGBE_MPC(3));
1970 missed_rx
+= IXGBE_READ_REG(hw
, IXGBE_MPC(4));
1971 missed_rx
+= IXGBE_READ_REG(hw
, IXGBE_MPC(5));
1972 missed_rx
+= IXGBE_READ_REG(hw
, IXGBE_MPC(6));
1973 missed_rx
+= IXGBE_READ_REG(hw
, IXGBE_MPC(7));
1974 adapter
->stats
.gprc
+= (good_rx
- missed_rx
);
1976 adapter
->stats
.mpc
[0] += missed_rx
;
1977 adapter
->stats
.gorc
+= IXGBE_READ_REG(hw
, IXGBE_GORCH
);
1978 bprc
= IXGBE_READ_REG(hw
, IXGBE_BPRC
);
1979 adapter
->stats
.bprc
+= bprc
;
1980 adapter
->stats
.mprc
+= IXGBE_READ_REG(hw
, IXGBE_MPRC
);
1981 adapter
->stats
.mprc
-= bprc
;
1982 adapter
->stats
.roc
+= IXGBE_READ_REG(hw
, IXGBE_ROC
);
1983 adapter
->stats
.prc64
+= IXGBE_READ_REG(hw
, IXGBE_PRC64
);
1984 adapter
->stats
.prc127
+= IXGBE_READ_REG(hw
, IXGBE_PRC127
);
1985 adapter
->stats
.prc255
+= IXGBE_READ_REG(hw
, IXGBE_PRC255
);
1986 adapter
->stats
.prc511
+= IXGBE_READ_REG(hw
, IXGBE_PRC511
);
1987 adapter
->stats
.prc1023
+= IXGBE_READ_REG(hw
, IXGBE_PRC1023
);
1988 adapter
->stats
.prc1522
+= IXGBE_READ_REG(hw
, IXGBE_PRC1522
);
1990 adapter
->stats
.rlec
+= IXGBE_READ_REG(hw
, IXGBE_RLEC
);
1991 adapter
->stats
.lxonrxc
+= IXGBE_READ_REG(hw
, IXGBE_LXONRXC
);
1992 adapter
->stats
.lxontxc
+= IXGBE_READ_REG(hw
, IXGBE_LXONTXC
);
1993 adapter
->stats
.lxoffrxc
+= IXGBE_READ_REG(hw
, IXGBE_LXOFFRXC
);
1994 adapter
->stats
.lxofftxc
+= IXGBE_READ_REG(hw
, IXGBE_LXOFFTXC
);
1995 adapter
->stats
.ruc
+= IXGBE_READ_REG(hw
, IXGBE_RUC
);
1996 adapter
->stats
.gptc
+= IXGBE_READ_REG(hw
, IXGBE_GPTC
);
1997 adapter
->stats
.gotc
+= IXGBE_READ_REG(hw
, IXGBE_GOTCH
);
1998 adapter
->stats
.rnbc
[0] += IXGBE_READ_REG(hw
, IXGBE_RNBC(0));
1999 adapter
->stats
.ruc
+= IXGBE_READ_REG(hw
, IXGBE_RUC
);
2000 adapter
->stats
.rfc
+= IXGBE_READ_REG(hw
, IXGBE_RFC
);
2001 adapter
->stats
.rjc
+= IXGBE_READ_REG(hw
, IXGBE_RJC
);
2002 adapter
->stats
.tor
+= IXGBE_READ_REG(hw
, IXGBE_TORH
);
2003 adapter
->stats
.tpr
+= IXGBE_READ_REG(hw
, IXGBE_TPR
);
2004 adapter
->stats
.ptc64
+= IXGBE_READ_REG(hw
, IXGBE_PTC64
);
2005 adapter
->stats
.ptc127
+= IXGBE_READ_REG(hw
, IXGBE_PTC127
);
2006 adapter
->stats
.ptc255
+= IXGBE_READ_REG(hw
, IXGBE_PTC255
);
2007 adapter
->stats
.ptc511
+= IXGBE_READ_REG(hw
, IXGBE_PTC511
);
2008 adapter
->stats
.ptc1023
+= IXGBE_READ_REG(hw
, IXGBE_PTC1023
);
2009 adapter
->stats
.ptc1522
+= IXGBE_READ_REG(hw
, IXGBE_PTC1522
);
2010 adapter
->stats
.mptc
+= IXGBE_READ_REG(hw
, IXGBE_MPTC
);
2011 adapter
->stats
.bptc
+= IXGBE_READ_REG(hw
, IXGBE_BPTC
);
2013 /* Fill out the OS statistics structure */
2014 adapter
->net_stats
.rx_packets
= adapter
->stats
.gprc
;
2015 adapter
->net_stats
.tx_packets
= adapter
->stats
.gptc
;
2016 adapter
->net_stats
.rx_bytes
= adapter
->stats
.gorc
;
2017 adapter
->net_stats
.tx_bytes
= adapter
->stats
.gotc
;
2018 adapter
->net_stats
.multicast
= adapter
->stats
.mprc
;
2021 adapter
->net_stats
.rx_errors
= adapter
->stats
.crcerrs
+
2022 adapter
->stats
.rlec
;
2023 adapter
->net_stats
.rx_dropped
= 0;
2024 adapter
->net_stats
.rx_length_errors
= adapter
->stats
.rlec
;
2025 adapter
->net_stats
.rx_crc_errors
= adapter
->stats
.crcerrs
;
2026 adapter
->net_stats
.rx_missed_errors
= adapter
->stats
.mpc
[0];
2031 * ixgbe_watchdog - Timer Call-back
2032 * @data: pointer to adapter cast into an unsigned long
2034 static void ixgbe_watchdog(unsigned long data
)
2036 struct ixgbe_adapter
*adapter
= (struct ixgbe_adapter
*)data
;
2037 struct net_device
*netdev
= adapter
->netdev
;
2041 adapter
->hw
.phy
.ops
.check(&adapter
->hw
, &(link_speed
), &link_up
);
2044 if (!netif_carrier_ok(netdev
)) {
2045 u32 frctl
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_FCTRL
);
2046 u32 rmcs
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_RMCS
);
2047 #define FLOW_RX (frctl & IXGBE_FCTRL_RFCE)
2048 #define FLOW_TX (rmcs & IXGBE_RMCS_TFCE_802_3X)
2049 DPRINTK(LINK
, INFO
, "NIC Link is Up %s, "
2050 "Flow Control: %s\n",
2051 (link_speed
== IXGBE_LINK_SPEED_10GB_FULL
?
2053 (link_speed
== IXGBE_LINK_SPEED_1GB_FULL
?
2054 "1 Gpbs" : "unknown speed")),
2055 ((FLOW_RX
&& FLOW_TX
) ? "RX/TX" :
2057 (FLOW_TX
? "TX" : "None"))));
2059 netif_carrier_on(netdev
);
2060 netif_wake_queue(netdev
);
2062 /* Force detection of hung controller */
2063 adapter
->detect_tx_hung
= true;
2066 if (netif_carrier_ok(netdev
)) {
2067 DPRINTK(LINK
, INFO
, "NIC Link is Down\n");
2068 netif_carrier_off(netdev
);
2069 netif_stop_queue(netdev
);
2073 ixgbe_update_stats(adapter
);
2075 /* Reset the timer */
2076 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
2077 mod_timer(&adapter
->watchdog_timer
,
2078 round_jiffies(jiffies
+ 2 * HZ
));
2081 #define IXGBE_MAX_TXD_PWR 14
2082 #define IXGBE_MAX_DATA_PER_TXD (1 << IXGBE_MAX_TXD_PWR)
2084 /* Tx Descriptors needed, worst case */
2085 #define TXD_USE_COUNT(S) (((S) >> IXGBE_MAX_TXD_PWR) + \
2086 (((S) & (IXGBE_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
2087 #define DESC_NEEDED (TXD_USE_COUNT(IXGBE_MAX_DATA_PER_TXD) /* skb->data */ + \
2088 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1) /* for context */
2090 static int ixgbe_tso(struct ixgbe_adapter
*adapter
,
2091 struct ixgbe_ring
*tx_ring
, struct sk_buff
*skb
,
2092 u32 tx_flags
, u8
*hdr_len
)
2094 struct ixgbe_adv_tx_context_desc
*context_desc
;
2097 struct ixgbe_tx_buffer
*tx_buffer_info
;
2098 u32 vlan_macip_lens
= 0, type_tucmd_mlhl
= 0;
2099 u32 mss_l4len_idx
= 0, l4len
;
2102 if (skb_is_gso(skb
)) {
2103 if (skb_header_cloned(skb
)) {
2104 err
= pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
);
2108 l4len
= tcp_hdrlen(skb
);
2111 if (skb
->protocol
== ntohs(ETH_P_IP
)) {
2112 struct iphdr
*iph
= ip_hdr(skb
);
2115 tcp_hdr(skb
)->check
= ~csum_tcpudp_magic(iph
->saddr
,
2119 adapter
->hw_tso_ctxt
++;
2120 } else if (skb_shinfo(skb
)->gso_type
== SKB_GSO_TCPV6
) {
2121 ipv6_hdr(skb
)->payload_len
= 0;
2122 tcp_hdr(skb
)->check
=
2123 ~csum_ipv6_magic(&ipv6_hdr(skb
)->saddr
,
2124 &ipv6_hdr(skb
)->daddr
,
2126 adapter
->hw_tso6_ctxt
++;
2129 i
= tx_ring
->next_to_use
;
2131 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2132 context_desc
= IXGBE_TX_CTXTDESC_ADV(*tx_ring
, i
);
2134 /* VLAN MACLEN IPLEN */
2135 if (tx_flags
& IXGBE_TX_FLAGS_VLAN
)
2137 (tx_flags
& IXGBE_TX_FLAGS_VLAN_MASK
);
2138 vlan_macip_lens
|= ((skb_network_offset(skb
)) <<
2139 IXGBE_ADVTXD_MACLEN_SHIFT
);
2140 *hdr_len
+= skb_network_offset(skb
);
2142 (skb_transport_header(skb
) - skb_network_header(skb
));
2144 (skb_transport_header(skb
) - skb_network_header(skb
));
2145 context_desc
->vlan_macip_lens
= cpu_to_le32(vlan_macip_lens
);
2146 context_desc
->seqnum_seed
= 0;
2148 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
2149 type_tucmd_mlhl
|= (IXGBE_TXD_CMD_DEXT
|
2150 IXGBE_ADVTXD_DTYP_CTXT
);
2152 if (skb
->protocol
== ntohs(ETH_P_IP
))
2153 type_tucmd_mlhl
|= IXGBE_ADVTXD_TUCMD_IPV4
;
2154 type_tucmd_mlhl
|= IXGBE_ADVTXD_TUCMD_L4T_TCP
;
2155 context_desc
->type_tucmd_mlhl
= cpu_to_le32(type_tucmd_mlhl
);
2159 (skb_shinfo(skb
)->gso_size
<< IXGBE_ADVTXD_MSS_SHIFT
);
2160 mss_l4len_idx
|= (l4len
<< IXGBE_ADVTXD_L4LEN_SHIFT
);
2161 context_desc
->mss_l4len_idx
= cpu_to_le32(mss_l4len_idx
);
2163 tx_buffer_info
->time_stamp
= jiffies
;
2164 tx_buffer_info
->next_to_watch
= i
;
2167 if (i
== tx_ring
->count
)
2169 tx_ring
->next_to_use
= i
;
2176 static bool ixgbe_tx_csum(struct ixgbe_adapter
*adapter
,
2177 struct ixgbe_ring
*tx_ring
,
2178 struct sk_buff
*skb
, u32 tx_flags
)
2180 struct ixgbe_adv_tx_context_desc
*context_desc
;
2182 struct ixgbe_tx_buffer
*tx_buffer_info
;
2183 u32 vlan_macip_lens
= 0, type_tucmd_mlhl
= 0;
2185 if (skb
->ip_summed
== CHECKSUM_PARTIAL
||
2186 (tx_flags
& IXGBE_TX_FLAGS_VLAN
)) {
2187 i
= tx_ring
->next_to_use
;
2188 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2189 context_desc
= IXGBE_TX_CTXTDESC_ADV(*tx_ring
, i
);
2191 if (tx_flags
& IXGBE_TX_FLAGS_VLAN
)
2193 (tx_flags
& IXGBE_TX_FLAGS_VLAN_MASK
);
2194 vlan_macip_lens
|= (skb_network_offset(skb
) <<
2195 IXGBE_ADVTXD_MACLEN_SHIFT
);
2196 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
2197 vlan_macip_lens
|= (skb_transport_header(skb
) -
2198 skb_network_header(skb
));
2200 context_desc
->vlan_macip_lens
= cpu_to_le32(vlan_macip_lens
);
2201 context_desc
->seqnum_seed
= 0;
2203 type_tucmd_mlhl
|= (IXGBE_TXD_CMD_DEXT
|
2204 IXGBE_ADVTXD_DTYP_CTXT
);
2206 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
2207 if (skb
->protocol
== ntohs(ETH_P_IP
))
2208 type_tucmd_mlhl
|= IXGBE_ADVTXD_TUCMD_IPV4
;
2210 if (skb
->sk
->sk_protocol
== IPPROTO_TCP
)
2211 type_tucmd_mlhl
|= IXGBE_ADVTXD_TUCMD_L4T_TCP
;
2214 context_desc
->type_tucmd_mlhl
= cpu_to_le32(type_tucmd_mlhl
);
2215 context_desc
->mss_l4len_idx
= 0;
2217 tx_buffer_info
->time_stamp
= jiffies
;
2218 tx_buffer_info
->next_to_watch
= i
;
2219 adapter
->hw_csum_tx_good
++;
2221 if (i
== tx_ring
->count
)
2223 tx_ring
->next_to_use
= i
;
2230 static int ixgbe_tx_map(struct ixgbe_adapter
*adapter
,
2231 struct ixgbe_ring
*tx_ring
,
2232 struct sk_buff
*skb
, unsigned int first
)
2234 struct ixgbe_tx_buffer
*tx_buffer_info
;
2235 unsigned int len
= skb
->len
;
2236 unsigned int offset
= 0, size
, count
= 0, i
;
2237 unsigned int nr_frags
= skb_shinfo(skb
)->nr_frags
;
2240 len
-= skb
->data_len
;
2242 i
= tx_ring
->next_to_use
;
2245 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2246 size
= min(len
, (uint
)IXGBE_MAX_DATA_PER_TXD
);
2248 tx_buffer_info
->length
= size
;
2249 tx_buffer_info
->dma
= pci_map_single(adapter
->pdev
,
2251 size
, PCI_DMA_TODEVICE
);
2252 tx_buffer_info
->time_stamp
= jiffies
;
2253 tx_buffer_info
->next_to_watch
= i
;
2259 if (i
== tx_ring
->count
)
2263 for (f
= 0; f
< nr_frags
; f
++) {
2264 struct skb_frag_struct
*frag
;
2266 frag
= &skb_shinfo(skb
)->frags
[f
];
2268 offset
= frag
->page_offset
;
2271 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2272 size
= min(len
, (uint
)IXGBE_MAX_DATA_PER_TXD
);
2274 tx_buffer_info
->length
= size
;
2275 tx_buffer_info
->dma
= pci_map_page(adapter
->pdev
,
2278 size
, PCI_DMA_TODEVICE
);
2279 tx_buffer_info
->time_stamp
= jiffies
;
2280 tx_buffer_info
->next_to_watch
= i
;
2286 if (i
== tx_ring
->count
)
2291 i
= tx_ring
->count
- 1;
2294 tx_ring
->tx_buffer_info
[i
].skb
= skb
;
2295 tx_ring
->tx_buffer_info
[first
].next_to_watch
= i
;
2300 static void ixgbe_tx_queue(struct ixgbe_adapter
*adapter
,
2301 struct ixgbe_ring
*tx_ring
,
2302 int tx_flags
, int count
, u32 paylen
, u8 hdr_len
)
2304 union ixgbe_adv_tx_desc
*tx_desc
= NULL
;
2305 struct ixgbe_tx_buffer
*tx_buffer_info
;
2306 u32 olinfo_status
= 0, cmd_type_len
= 0;
2308 u32 txd_cmd
= IXGBE_TXD_CMD_EOP
| IXGBE_TXD_CMD_RS
| IXGBE_TXD_CMD_IFCS
;
2310 cmd_type_len
|= IXGBE_ADVTXD_DTYP_DATA
;
2312 cmd_type_len
|= IXGBE_ADVTXD_DCMD_IFCS
| IXGBE_ADVTXD_DCMD_DEXT
;
2314 if (tx_flags
& IXGBE_TX_FLAGS_VLAN
)
2315 cmd_type_len
|= IXGBE_ADVTXD_DCMD_VLE
;
2317 if (tx_flags
& IXGBE_TX_FLAGS_TSO
) {
2318 cmd_type_len
|= IXGBE_ADVTXD_DCMD_TSE
;
2320 olinfo_status
|= IXGBE_TXD_POPTS_TXSM
<<
2321 IXGBE_ADVTXD_POPTS_SHIFT
;
2323 if (tx_flags
& IXGBE_TX_FLAGS_IPV4
)
2324 olinfo_status
|= IXGBE_TXD_POPTS_IXSM
<<
2325 IXGBE_ADVTXD_POPTS_SHIFT
;
2327 } else if (tx_flags
& IXGBE_TX_FLAGS_CSUM
)
2328 olinfo_status
|= IXGBE_TXD_POPTS_TXSM
<<
2329 IXGBE_ADVTXD_POPTS_SHIFT
;
2331 olinfo_status
|= ((paylen
- hdr_len
) << IXGBE_ADVTXD_PAYLEN_SHIFT
);
2333 i
= tx_ring
->next_to_use
;
2335 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
2336 tx_desc
= IXGBE_TX_DESC_ADV(*tx_ring
, i
);
2337 tx_desc
->read
.buffer_addr
= cpu_to_le64(tx_buffer_info
->dma
);
2338 tx_desc
->read
.cmd_type_len
=
2339 cpu_to_le32(cmd_type_len
| tx_buffer_info
->length
);
2340 tx_desc
->read
.olinfo_status
= cpu_to_le32(olinfo_status
);
2343 if (i
== tx_ring
->count
)
2347 tx_desc
->read
.cmd_type_len
|= cpu_to_le32(txd_cmd
);
2350 * Force memory writes to complete before letting h/w
2351 * know there are new descriptors to fetch. (Only
2352 * applicable for weak-ordered memory model archs,
2357 tx_ring
->next_to_use
= i
;
2358 writel(i
, adapter
->hw
.hw_addr
+ tx_ring
->tail
);
2361 static int ixgbe_xmit_frame(struct sk_buff
*skb
, struct net_device
*netdev
)
2363 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
2364 struct ixgbe_ring
*tx_ring
;
2365 unsigned int len
= skb
->len
;
2367 unsigned int tx_flags
= 0;
2368 unsigned long flags
= 0;
2371 unsigned int mss
= 0;
2374 unsigned int nr_frags
= skb_shinfo(skb
)->nr_frags
;
2375 len
-= skb
->data_len
;
2377 tx_ring
= adapter
->tx_ring
;
2379 if (skb
->len
<= 0) {
2381 return NETDEV_TX_OK
;
2383 mss
= skb_shinfo(skb
)->gso_size
;
2387 else if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
2390 count
+= TXD_USE_COUNT(len
);
2391 for (f
= 0; f
< nr_frags
; f
++)
2392 count
+= TXD_USE_COUNT(skb_shinfo(skb
)->frags
[f
].size
);
2394 spin_lock_irqsave(&tx_ring
->tx_lock
, flags
);
2395 if (IXGBE_DESC_UNUSED(tx_ring
) < (count
+ 2)) {
2397 netif_stop_queue(netdev
);
2398 spin_unlock_irqrestore(&tx_ring
->tx_lock
, flags
);
2399 return NETDEV_TX_BUSY
;
2401 spin_unlock_irqrestore(&tx_ring
->tx_lock
, flags
);
2402 if (adapter
->vlgrp
&& vlan_tx_tag_present(skb
)) {
2403 tx_flags
|= IXGBE_TX_FLAGS_VLAN
;
2404 tx_flags
|= (vlan_tx_tag_get(skb
) << IXGBE_TX_FLAGS_VLAN_SHIFT
);
2407 if (skb
->protocol
== ntohs(ETH_P_IP
))
2408 tx_flags
|= IXGBE_TX_FLAGS_IPV4
;
2409 first
= tx_ring
->next_to_use
;
2410 tso
= ixgbe_tso(adapter
, tx_ring
, skb
, tx_flags
, &hdr_len
);
2412 dev_kfree_skb_any(skb
);
2413 return NETDEV_TX_OK
;
2417 tx_flags
|= IXGBE_TX_FLAGS_TSO
;
2418 else if (ixgbe_tx_csum(adapter
, tx_ring
, skb
, tx_flags
) &&
2419 (skb
->ip_summed
== CHECKSUM_PARTIAL
))
2420 tx_flags
|= IXGBE_TX_FLAGS_CSUM
;
2422 ixgbe_tx_queue(adapter
, tx_ring
, tx_flags
,
2423 ixgbe_tx_map(adapter
, tx_ring
, skb
, first
),
2426 netdev
->trans_start
= jiffies
;
2428 spin_lock_irqsave(&tx_ring
->tx_lock
, flags
);
2429 /* Make sure there is space in the ring for the next send. */
2430 if (IXGBE_DESC_UNUSED(tx_ring
) < DESC_NEEDED
)
2431 netif_stop_queue(netdev
);
2432 spin_unlock_irqrestore(&tx_ring
->tx_lock
, flags
);
2434 return NETDEV_TX_OK
;
2438 * ixgbe_get_stats - Get System Network Statistics
2439 * @netdev: network interface device structure
2441 * Returns the address of the device statistics structure.
2442 * The statistics are actually updated from the timer callback.
2444 static struct net_device_stats
*ixgbe_get_stats(struct net_device
*netdev
)
2446 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
2448 /* only return the current stats */
2449 return &adapter
->net_stats
;
2453 * ixgbe_set_mac - Change the Ethernet Address of the NIC
2454 * @netdev: network interface device structure
2455 * @p: pointer to an address structure
2457 * Returns 0 on success, negative on failure
2459 static int ixgbe_set_mac(struct net_device
*netdev
, void *p
)
2461 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
2462 struct sockaddr
*addr
= p
;
2464 if (!is_valid_ether_addr(addr
->sa_data
))
2465 return -EADDRNOTAVAIL
;
2467 memcpy(netdev
->dev_addr
, addr
->sa_data
, netdev
->addr_len
);
2468 memcpy(adapter
->hw
.mac
.addr
, addr
->sa_data
, netdev
->addr_len
);
2470 ixgbe_set_rar(&adapter
->hw
, 0, adapter
->hw
.mac
.addr
, 0, IXGBE_RAH_AV
);
2475 #ifdef CONFIG_NET_POLL_CONTROLLER
2477 * Polling 'interrupt' - used by things like netconsole to send skbs
2478 * without having to re-enable interrupts. It's not called while
2479 * the interrupt routine is executing.
2481 static void ixgbe_netpoll(struct net_device
*netdev
)
2483 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
2485 disable_irq(adapter
->pdev
->irq
);
2486 adapter
->flags
|= IXGBE_FLAG_IN_NETPOLL
;
2487 ixgbe_intr(adapter
->pdev
->irq
, netdev
);
2488 adapter
->flags
&= ~IXGBE_FLAG_IN_NETPOLL
;
2489 enable_irq(adapter
->pdev
->irq
);
2494 * ixgbe_probe - Device Initialization Routine
2495 * @pdev: PCI device information struct
2496 * @ent: entry in ixgbe_pci_tbl
2498 * Returns 0 on success, negative on failure
2500 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
2501 * The OS initialization, configuring of the adapter private structure,
2502 * and a hardware reset occur.
2504 static int __devinit
ixgbe_probe(struct pci_dev
*pdev
,
2505 const struct pci_device_id
*ent
)
2507 struct net_device
*netdev
;
2508 struct ixgbe_adapter
*adapter
= NULL
;
2509 struct ixgbe_hw
*hw
;
2510 const struct ixgbe_info
*ii
= ixgbe_info_tbl
[ent
->driver_data
];
2511 unsigned long mmio_start
, mmio_len
;
2512 static int cards_found
;
2513 int i
, err
, pci_using_dac
;
2514 u16 link_status
, link_speed
, link_width
;
2517 err
= pci_enable_device(pdev
);
2521 if (!pci_set_dma_mask(pdev
, DMA_64BIT_MASK
) &&
2522 !pci_set_consistent_dma_mask(pdev
, DMA_64BIT_MASK
)) {
2525 err
= pci_set_dma_mask(pdev
, DMA_32BIT_MASK
);
2527 err
= pci_set_consistent_dma_mask(pdev
, DMA_32BIT_MASK
);
2529 dev_err(&pdev
->dev
, "No usable DMA "
2530 "configuration, aborting\n");
2537 err
= pci_request_regions(pdev
, ixgbe_driver_name
);
2539 dev_err(&pdev
->dev
, "pci_request_regions failed 0x%x\n", err
);
2543 pci_set_master(pdev
);
2545 netdev
= alloc_etherdev(sizeof(struct ixgbe_adapter
));
2548 goto err_alloc_etherdev
;
2551 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
2553 pci_set_drvdata(pdev
, netdev
);
2554 adapter
= netdev_priv(netdev
);
2556 adapter
->netdev
= netdev
;
2557 adapter
->pdev
= pdev
;
2560 adapter
->msg_enable
= (1 << DEFAULT_DEBUG_LEVEL_SHIFT
) - 1;
2562 mmio_start
= pci_resource_start(pdev
, 0);
2563 mmio_len
= pci_resource_len(pdev
, 0);
2565 hw
->hw_addr
= ioremap(mmio_start
, mmio_len
);
2571 for (i
= 1; i
<= 5; i
++) {
2572 if (pci_resource_len(pdev
, i
) == 0)
2576 netdev
->open
= &ixgbe_open
;
2577 netdev
->stop
= &ixgbe_close
;
2578 netdev
->hard_start_xmit
= &ixgbe_xmit_frame
;
2579 netdev
->get_stats
= &ixgbe_get_stats
;
2580 netdev
->set_multicast_list
= &ixgbe_set_multi
;
2581 netdev
->set_mac_address
= &ixgbe_set_mac
;
2582 netdev
->change_mtu
= &ixgbe_change_mtu
;
2583 ixgbe_set_ethtool_ops(netdev
);
2584 netdev
->tx_timeout
= &ixgbe_tx_timeout
;
2585 netdev
->watchdog_timeo
= 5 * HZ
;
2586 netif_napi_add(netdev
, &adapter
->napi
, ixgbe_clean
, 64);
2587 netdev
->vlan_rx_register
= ixgbe_vlan_rx_register
;
2588 netdev
->vlan_rx_add_vid
= ixgbe_vlan_rx_add_vid
;
2589 netdev
->vlan_rx_kill_vid
= ixgbe_vlan_rx_kill_vid
;
2590 #ifdef CONFIG_NET_POLL_CONTROLLER
2591 netdev
->poll_controller
= ixgbe_netpoll
;
2593 strcpy(netdev
->name
, pci_name(pdev
));
2595 netdev
->mem_start
= mmio_start
;
2596 netdev
->mem_end
= mmio_start
+ mmio_len
;
2598 adapter
->bd_number
= cards_found
;
2600 /* PCI config space info */
2601 hw
->vendor_id
= pdev
->vendor
;
2602 hw
->device_id
= pdev
->device
;
2603 hw
->revision_id
= pdev
->revision
;
2604 hw
->subsystem_vendor_id
= pdev
->subsystem_vendor
;
2605 hw
->subsystem_device_id
= pdev
->subsystem_device
;
2608 memcpy(&hw
->mac
.ops
, ii
->mac_ops
, sizeof(hw
->mac
.ops
));
2609 memcpy(&hw
->phy
.ops
, ii
->phy_ops
, sizeof(hw
->phy
.ops
));
2611 err
= ii
->get_invariants(hw
);
2615 /* setup the private structure */
2616 err
= ixgbe_sw_init(adapter
);
2620 netdev
->features
= NETIF_F_SG
|
2622 NETIF_F_HW_VLAN_TX
|
2623 NETIF_F_HW_VLAN_RX
|
2624 NETIF_F_HW_VLAN_FILTER
;
2626 netdev
->features
|= NETIF_F_TSO
;
2628 netdev
->features
|= NETIF_F_TSO6
;
2630 netdev
->features
|= NETIF_F_HIGHDMA
;
2633 /* make sure the EEPROM is good */
2634 if (ixgbe_validate_eeprom_checksum(hw
, NULL
) < 0) {
2635 dev_err(&pdev
->dev
, "The EEPROM Checksum Is Not Valid\n");
2640 memcpy(netdev
->dev_addr
, hw
->mac
.perm_addr
, netdev
->addr_len
);
2641 memcpy(netdev
->perm_addr
, hw
->mac
.perm_addr
, netdev
->addr_len
);
2643 if (ixgbe_validate_mac_addr(netdev
->dev_addr
)) {
2648 init_timer(&adapter
->watchdog_timer
);
2649 adapter
->watchdog_timer
.function
= &ixgbe_watchdog
;
2650 adapter
->watchdog_timer
.data
= (unsigned long)adapter
;
2652 INIT_WORK(&adapter
->reset_task
, ixgbe_reset_task
);
2654 /* initialize default flow control settings */
2655 hw
->fc
.original_type
= ixgbe_fc_full
;
2656 hw
->fc
.type
= ixgbe_fc_full
;
2657 hw
->fc
.high_water
= IXGBE_DEFAULT_FCRTH
;
2658 hw
->fc
.low_water
= IXGBE_DEFAULT_FCRTL
;
2659 hw
->fc
.pause_time
= IXGBE_DEFAULT_FCPAUSE
;
2661 /* Interrupt Throttle Rate */
2662 adapter
->rx_eitr
= (1000000 / IXGBE_DEFAULT_ITR_RX_USECS
);
2663 adapter
->tx_eitr
= (1000000 / IXGBE_DEFAULT_ITR_TX_USECS
);
2665 /* print bus type/speed/width info */
2666 pci_read_config_word(pdev
, IXGBE_PCI_LINK_STATUS
, &link_status
);
2667 link_speed
= link_status
& IXGBE_PCI_LINK_SPEED
;
2668 link_width
= link_status
& IXGBE_PCI_LINK_WIDTH
;
2669 dev_info(&pdev
->dev
, "(PCI Express:%s:%s) "
2670 "%02x:%02x:%02x:%02x:%02x:%02x\n",
2671 ((link_speed
== IXGBE_PCI_LINK_SPEED_5000
) ? "5.0Gb/s" :
2672 (link_speed
== IXGBE_PCI_LINK_SPEED_2500
) ? "2.5Gb/s" :
2674 ((link_width
== IXGBE_PCI_LINK_WIDTH_8
) ? "Width x8" :
2675 (link_width
== IXGBE_PCI_LINK_WIDTH_4
) ? "Width x4" :
2676 (link_width
== IXGBE_PCI_LINK_WIDTH_2
) ? "Width x2" :
2677 (link_width
== IXGBE_PCI_LINK_WIDTH_1
) ? "Width x1" :
2679 netdev
->dev_addr
[0], netdev
->dev_addr
[1], netdev
->dev_addr
[2],
2680 netdev
->dev_addr
[3], netdev
->dev_addr
[4], netdev
->dev_addr
[5]);
2681 ixgbe_read_part_num(hw
, &part_num
);
2682 dev_info(&pdev
->dev
, "MAC: %d, PHY: %d, PBA No: %06x-%03x\n",
2683 hw
->mac
.type
, hw
->phy
.type
,
2684 (part_num
>> 8), (part_num
& 0xff));
2686 /* reset the hardware with the new settings */
2689 netif_carrier_off(netdev
);
2690 netif_stop_queue(netdev
);
2692 strcpy(netdev
->name
, "eth%d");
2693 err
= register_netdev(netdev
);
2698 dev_info(&pdev
->dev
, "Intel(R) 10 Gigabit Network Connection\n");
2706 iounmap(hw
->hw_addr
);
2708 free_netdev(netdev
);
2710 pci_release_regions(pdev
);
2713 pci_disable_device(pdev
);
2718 * ixgbe_remove - Device Removal Routine
2719 * @pdev: PCI device information struct
2721 * ixgbe_remove is called by the PCI subsystem to alert the driver
2722 * that it should release a PCI device. The could be caused by a
2723 * Hot-Plug event, or because the driver is going to be removed from
2726 static void __devexit
ixgbe_remove(struct pci_dev
*pdev
)
2728 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2729 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
2731 set_bit(__IXGBE_DOWN
, &adapter
->state
);
2732 del_timer_sync(&adapter
->watchdog_timer
);
2734 flush_scheduled_work();
2736 unregister_netdev(netdev
);
2738 kfree(adapter
->tx_ring
);
2739 kfree(adapter
->rx_ring
);
2741 iounmap(adapter
->hw
.hw_addr
);
2742 pci_release_regions(pdev
);
2744 free_netdev(netdev
);
2746 pci_disable_device(pdev
);
2750 * ixgbe_io_error_detected - called when PCI error is detected
2751 * @pdev: Pointer to PCI device
2752 * @state: The current pci connection state
2754 * This function is called after a PCI bus error affecting
2755 * this device has been detected.
2757 static pci_ers_result_t
ixgbe_io_error_detected(struct pci_dev
*pdev
,
2758 pci_channel_state_t state
)
2760 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2761 struct ixgbe_adapter
*adapter
= netdev
->priv
;
2763 netif_device_detach(netdev
);
2765 if (netif_running(netdev
))
2766 ixgbe_down(adapter
);
2767 pci_disable_device(pdev
);
2769 /* Request a slot slot reset. */
2770 return PCI_ERS_RESULT_NEED_RESET
;
2774 * ixgbe_io_slot_reset - called after the pci bus has been reset.
2775 * @pdev: Pointer to PCI device
2777 * Restart the card from scratch, as if from a cold-boot.
2779 static pci_ers_result_t
ixgbe_io_slot_reset(struct pci_dev
*pdev
)
2781 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2782 struct ixgbe_adapter
*adapter
= netdev
->priv
;
2784 if (pci_enable_device(pdev
)) {
2786 "Cannot re-enable PCI device after reset.\n");
2787 return PCI_ERS_RESULT_DISCONNECT
;
2789 pci_set_master(pdev
);
2791 pci_enable_wake(pdev
, PCI_D3hot
, 0);
2792 pci_enable_wake(pdev
, PCI_D3cold
, 0);
2794 ixgbe_reset(adapter
);
2796 return PCI_ERS_RESULT_RECOVERED
;
2800 * ixgbe_io_resume - called when traffic can start flowing again.
2801 * @pdev: Pointer to PCI device
2803 * This callback is called when the error recovery driver tells us that
2804 * its OK to resume normal operation.
2806 static void ixgbe_io_resume(struct pci_dev
*pdev
)
2808 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2809 struct ixgbe_adapter
*adapter
= netdev
->priv
;
2811 if (netif_running(netdev
)) {
2812 if (ixgbe_up(adapter
)) {
2813 DPRINTK(PROBE
, INFO
, "ixgbe_up failed after reset\n");
2818 netif_device_attach(netdev
);
2822 static struct pci_error_handlers ixgbe_err_handler
= {
2823 .error_detected
= ixgbe_io_error_detected
,
2824 .slot_reset
= ixgbe_io_slot_reset
,
2825 .resume
= ixgbe_io_resume
,
2828 static struct pci_driver ixgbe_driver
= {
2829 .name
= ixgbe_driver_name
,
2830 .id_table
= ixgbe_pci_tbl
,
2831 .probe
= ixgbe_probe
,
2832 .remove
= __devexit_p(ixgbe_remove
),
2834 .suspend
= ixgbe_suspend
,
2835 .resume
= ixgbe_resume
,
2837 .shutdown
= ixgbe_shutdown
,
2838 .err_handler
= &ixgbe_err_handler
2842 * ixgbe_init_module - Driver Registration Routine
2844 * ixgbe_init_module is the first routine called when the driver is
2845 * loaded. All it does is register with the PCI subsystem.
2847 static int __init
ixgbe_init_module(void)
2850 printk(KERN_INFO
"%s: %s - version %s\n", ixgbe_driver_name
,
2851 ixgbe_driver_string
, ixgbe_driver_version
);
2853 printk(KERN_INFO
"%s: %s\n", ixgbe_driver_name
, ixgbe_copyright
);
2855 ret
= pci_register_driver(&ixgbe_driver
);
2858 module_init(ixgbe_init_module
);
2861 * ixgbe_exit_module - Driver Exit Cleanup Routine
2863 * ixgbe_exit_module is called just before the driver is removed
2866 static void __exit
ixgbe_exit_module(void)
2868 pci_unregister_driver(&ixgbe_driver
);
2870 module_exit(ixgbe_exit_module
);