| /******************************************************************************* |
| |
| Intel(R) Gigabit Ethernet Linux driver |
| Copyright(c) 2007-2009 Intel Corporation. |
| |
| This program is free software; you can redistribute it and/or modify it |
| under the terms and conditions of the GNU General Public License, |
| version 2, as published by the Free Software Foundation. |
| |
| This program is distributed in the hope it will be useful, but WITHOUT |
| ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| more details. |
| |
| You should have received a copy of the GNU General Public License along with |
| this program; if not, write to the Free Software Foundation, Inc., |
| 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| |
| The full GNU General Public License is included in this distribution in |
| the file called "COPYING". |
| |
| Contact Information: |
| e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| |
| *******************************************************************************/ |
| |
| #include <linux/module.h> |
| #include <linux/types.h> |
| #include <linux/init.h> |
| #include <linux/vmalloc.h> |
| #include <linux/pagemap.h> |
| #include <linux/netdevice.h> |
| #include <linux/ipv6.h> |
| #include <linux/slab.h> |
| #include <net/checksum.h> |
| #include <net/ip6_checksum.h> |
| #include <linux/net_tstamp.h> |
| #include <linux/mii.h> |
| #include <linux/ethtool.h> |
| #include <linux/if_vlan.h> |
| #include <linux/pci.h> |
| #include <linux/pci-aspm.h> |
| #include <linux/delay.h> |
| #include <linux/interrupt.h> |
| #include <linux/if_ether.h> |
| #include <linux/aer.h> |
| #ifdef CONFIG_IGB_DCA |
| #include <linux/dca.h> |
| #endif |
| #include "igb.h" |
| |
| #define DRV_VERSION "2.1.0-k2" |
| char igb_driver_name[] = "igb"; |
| char igb_driver_version[] = DRV_VERSION; |
| static const char igb_driver_string[] = |
| "Intel(R) Gigabit Ethernet Network Driver"; |
| static const char igb_copyright[] = "Copyright (c) 2007-2009 Intel Corporation."; |
| |
| static const struct e1000_info *igb_info_tbl[] = { |
| [board_82575] = &e1000_82575_info, |
| }; |
| |
| static DEFINE_PCI_DEVICE_TABLE(igb_pci_tbl) = { |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_I350_COPPER), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_I350_FIBER), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_I350_SERDES), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_I350_SGMII), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_COPPER), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_FIBER), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_SERDES), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_SGMII), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_COPPER_DUAL), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_NS), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_NS_SERDES), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_FIBER), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_SERDES), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_SERDES_QUAD), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_QUAD_COPPER_ET2), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_QUAD_COPPER), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_COPPER), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_FIBER_SERDES), board_82575 }, |
| { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575GB_QUAD_COPPER), board_82575 }, |
| /* required last entry */ |
| {0, } |
| }; |
| |
| MODULE_DEVICE_TABLE(pci, igb_pci_tbl); |
| |
| void igb_reset(struct igb_adapter *); |
| static int igb_setup_all_tx_resources(struct igb_adapter *); |
| static int igb_setup_all_rx_resources(struct igb_adapter *); |
| static void igb_free_all_tx_resources(struct igb_adapter *); |
| static void igb_free_all_rx_resources(struct igb_adapter *); |
| static void igb_setup_mrqc(struct igb_adapter *); |
| void igb_update_stats(struct igb_adapter *); |
| static int igb_probe(struct pci_dev *, const struct pci_device_id *); |
| static void __devexit igb_remove(struct pci_dev *pdev); |
| static int igb_sw_init(struct igb_adapter *); |
| static int igb_open(struct net_device *); |
| static int igb_close(struct net_device *); |
| static void igb_configure_tx(struct igb_adapter *); |
| static void igb_configure_rx(struct igb_adapter *); |
| static void igb_clean_all_tx_rings(struct igb_adapter *); |
| static void igb_clean_all_rx_rings(struct igb_adapter *); |
| static void igb_clean_tx_ring(struct igb_ring *); |
| static void igb_clean_rx_ring(struct igb_ring *); |
| static void igb_set_rx_mode(struct net_device *); |
| static void igb_update_phy_info(unsigned long); |
| static void igb_watchdog(unsigned long); |
| static void igb_watchdog_task(struct work_struct *); |
| static netdev_tx_t igb_xmit_frame_adv(struct sk_buff *skb, struct net_device *); |
| static struct net_device_stats *igb_get_stats(struct net_device *); |
| static int igb_change_mtu(struct net_device *, int); |
| static int igb_set_mac(struct net_device *, void *); |
| static void igb_set_uta(struct igb_adapter *adapter); |
| static irqreturn_t igb_intr(int irq, void *); |
| static irqreturn_t igb_intr_msi(int irq, void *); |
| static irqreturn_t igb_msix_other(int irq, void *); |
| static irqreturn_t igb_msix_ring(int irq, void *); |
| #ifdef CONFIG_IGB_DCA |
| static void igb_update_dca(struct igb_q_vector *); |
| static void igb_setup_dca(struct igb_adapter *); |
| #endif /* CONFIG_IGB_DCA */ |
| static bool igb_clean_tx_irq(struct igb_q_vector *); |
| static int igb_poll(struct napi_struct *, int); |
| static bool igb_clean_rx_irq_adv(struct igb_q_vector *, int *, int); |
| static int igb_ioctl(struct net_device *, struct ifreq *, int cmd); |
| static void igb_tx_timeout(struct net_device *); |
| static void igb_reset_task(struct work_struct *); |
| static void igb_vlan_rx_register(struct net_device *, struct vlan_group *); |
| static void igb_vlan_rx_add_vid(struct net_device *, u16); |
| static void igb_vlan_rx_kill_vid(struct net_device *, u16); |
| static void igb_restore_vlan(struct igb_adapter *); |
| static void igb_rar_set_qsel(struct igb_adapter *, u8 *, u32 , u8); |
| static void igb_ping_all_vfs(struct igb_adapter *); |
| static void igb_msg_task(struct igb_adapter *); |
| static void igb_vmm_control(struct igb_adapter *); |
| static int igb_set_vf_mac(struct igb_adapter *, int, unsigned char *); |
| static void igb_restore_vf_multicasts(struct igb_adapter *adapter); |
| static int igb_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac); |
| static int igb_ndo_set_vf_vlan(struct net_device *netdev, |
| int vf, u16 vlan, u8 qos); |
| static int igb_ndo_set_vf_bw(struct net_device *netdev, int vf, int tx_rate); |
| static int igb_ndo_get_vf_config(struct net_device *netdev, int vf, |
| struct ifla_vf_info *ivi); |
| |
| #ifdef CONFIG_PM |
| static int igb_suspend(struct pci_dev *, pm_message_t); |
| static int igb_resume(struct pci_dev *); |
| #endif |
| static void igb_shutdown(struct pci_dev *); |
| #ifdef CONFIG_IGB_DCA |
| static int igb_notify_dca(struct notifier_block *, unsigned long, void *); |
| static struct notifier_block dca_notifier = { |
| .notifier_call = igb_notify_dca, |
| .next = NULL, |
| .priority = 0 |
| }; |
| #endif |
| #ifdef CONFIG_NET_POLL_CONTROLLER |
| /* for netdump / net console */ |
| static void igb_netpoll(struct net_device *); |
| #endif |
| #ifdef CONFIG_PCI_IOV |
| static unsigned int max_vfs = 0; |
| module_param(max_vfs, uint, 0); |
| MODULE_PARM_DESC(max_vfs, "Maximum number of virtual functions to allocate " |
| "per physical function"); |
| #endif /* CONFIG_PCI_IOV */ |
| |
| static pci_ers_result_t igb_io_error_detected(struct pci_dev *, |
| pci_channel_state_t); |
| static pci_ers_result_t igb_io_slot_reset(struct pci_dev *); |
| static void igb_io_resume(struct pci_dev *); |
| |
| static struct pci_error_handlers igb_err_handler = { |
| .error_detected = igb_io_error_detected, |
| .slot_reset = igb_io_slot_reset, |
| .resume = igb_io_resume, |
| }; |
| |
| |
| static struct pci_driver igb_driver = { |
| .name = igb_driver_name, |
| .id_table = igb_pci_tbl, |
| .probe = igb_probe, |
| .remove = __devexit_p(igb_remove), |
| #ifdef CONFIG_PM |
| /* Power Managment Hooks */ |
| .suspend = igb_suspend, |
| .resume = igb_resume, |
| #endif |
| .shutdown = igb_shutdown, |
| .err_handler = &igb_err_handler |
| }; |
| |
| MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>"); |
| MODULE_DESCRIPTION("Intel(R) Gigabit Ethernet Network Driver"); |
| MODULE_LICENSE("GPL"); |
| MODULE_VERSION(DRV_VERSION); |
| |
| struct igb_reg_info { |
| u32 ofs; |
| char *name; |
| }; |
| |
| static const struct igb_reg_info igb_reg_info_tbl[] = { |
| |
| /* General Registers */ |
| {E1000_CTRL, "CTRL"}, |
| {E1000_STATUS, "STATUS"}, |
| {E1000_CTRL_EXT, "CTRL_EXT"}, |
| |
| /* Interrupt Registers */ |
| {E1000_ICR, "ICR"}, |
| |
| /* RX Registers */ |
| {E1000_RCTL, "RCTL"}, |
| {E1000_RDLEN(0), "RDLEN"}, |
| {E1000_RDH(0), "RDH"}, |
| {E1000_RDT(0), "RDT"}, |
| {E1000_RXDCTL(0), "RXDCTL"}, |
| {E1000_RDBAL(0), "RDBAL"}, |
| {E1000_RDBAH(0), "RDBAH"}, |
| |
| /* TX Registers */ |
| {E1000_TCTL, "TCTL"}, |
| {E1000_TDBAL(0), "TDBAL"}, |
| {E1000_TDBAH(0), "TDBAH"}, |
| {E1000_TDLEN(0), "TDLEN"}, |
| {E1000_TDH(0), "TDH"}, |
| {E1000_TDT(0), "TDT"}, |
| {E1000_TXDCTL(0), "TXDCTL"}, |
| {E1000_TDFH, "TDFH"}, |
| {E1000_TDFT, "TDFT"}, |
| {E1000_TDFHS, "TDFHS"}, |
| {E1000_TDFPC, "TDFPC"}, |
| |
| /* List Terminator */ |
| {} |
| }; |
| |
| /* |
| * igb_regdump - register printout routine |
| */ |
| static void igb_regdump(struct e1000_hw *hw, struct igb_reg_info *reginfo) |
| { |
| int n = 0; |
| char rname[16]; |
| u32 regs[8]; |
| |
| switch (reginfo->ofs) { |
| case E1000_RDLEN(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_RDLEN(n)); |
| break; |
| case E1000_RDH(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_RDH(n)); |
| break; |
| case E1000_RDT(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_RDT(n)); |
| break; |
| case E1000_RXDCTL(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_RXDCTL(n)); |
| break; |
| case E1000_RDBAL(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_RDBAL(n)); |
| break; |
| case E1000_RDBAH(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_RDBAH(n)); |
| break; |
| case E1000_TDBAL(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_RDBAL(n)); |
| break; |
| case E1000_TDBAH(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_TDBAH(n)); |
| break; |
| case E1000_TDLEN(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_TDLEN(n)); |
| break; |
| case E1000_TDH(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_TDH(n)); |
| break; |
| case E1000_TDT(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_TDT(n)); |
| break; |
| case E1000_TXDCTL(0): |
| for (n = 0; n < 4; n++) |
| regs[n] = rd32(E1000_TXDCTL(n)); |
| break; |
| default: |
| printk(KERN_INFO "%-15s %08x\n", |
| reginfo->name, rd32(reginfo->ofs)); |
| return; |
| } |
| |
| snprintf(rname, 16, "%s%s", reginfo->name, "[0-3]"); |
| printk(KERN_INFO "%-15s ", rname); |
| for (n = 0; n < 4; n++) |
| printk(KERN_CONT "%08x ", regs[n]); |
| printk(KERN_CONT "\n"); |
| } |
| |
| /* |
| * igb_dump - Print registers, tx-rings and rx-rings |
| */ |
| static void igb_dump(struct igb_adapter *adapter) |
| { |
| struct net_device *netdev = adapter->netdev; |
| struct e1000_hw *hw = &adapter->hw; |
| struct igb_reg_info *reginfo; |
| int n = 0; |
| struct igb_ring *tx_ring; |
| union e1000_adv_tx_desc *tx_desc; |
| struct my_u0 { u64 a; u64 b; } *u0; |
| struct igb_buffer *buffer_info; |
| struct igb_ring *rx_ring; |
| union e1000_adv_rx_desc *rx_desc; |
| u32 staterr; |
| int i = 0; |
| |
| if (!netif_msg_hw(adapter)) |
| return; |
| |
| /* Print netdevice Info */ |
| if (netdev) { |
| dev_info(&adapter->pdev->dev, "Net device Info\n"); |
| printk(KERN_INFO "Device Name state " |
| "trans_start last_rx\n"); |
| printk(KERN_INFO "%-15s %016lX %016lX %016lX\n", |
| netdev->name, |
| netdev->state, |
| netdev->trans_start, |
| netdev->last_rx); |
| } |
| |
| /* Print Registers */ |
| dev_info(&adapter->pdev->dev, "Register Dump\n"); |
| printk(KERN_INFO " Register Name Value\n"); |
| for (reginfo = (struct igb_reg_info *)igb_reg_info_tbl; |
| reginfo->name; reginfo++) { |
| igb_regdump(hw, reginfo); |
| } |
| |
| /* Print TX Ring Summary */ |
| if (!netdev || !netif_running(netdev)) |
| goto exit; |
| |
| dev_info(&adapter->pdev->dev, "TX Rings Summary\n"); |
| printk(KERN_INFO "Queue [NTU] [NTC] [bi(ntc)->dma ]" |
| " leng ntw timestamp\n"); |
| for (n = 0; n < adapter->num_tx_queues; n++) { |
| tx_ring = adapter->tx_ring[n]; |
| buffer_info = &tx_ring->buffer_info[tx_ring->next_to_clean]; |
| printk(KERN_INFO " %5d %5X %5X %016llX %04X %3X %016llX\n", |
| n, tx_ring->next_to_use, tx_ring->next_to_clean, |
| (u64)buffer_info->dma, |
| buffer_info->length, |
| buffer_info->next_to_watch, |
| (u64)buffer_info->time_stamp); |
| } |
| |
| /* Print TX Rings */ |
| if (!netif_msg_tx_done(adapter)) |
| goto rx_ring_summary; |
| |
| dev_info(&adapter->pdev->dev, "TX Rings Dump\n"); |
| |
| /* Transmit Descriptor Formats |
| * |
| * Advanced Transmit Descriptor |
| * +--------------------------------------------------------------+ |
| * 0 | Buffer Address [63:0] | |
| * +--------------------------------------------------------------+ |
| * 8 | PAYLEN | PORTS |CC|IDX | STA | DCMD |DTYP|MAC|RSV| DTALEN | |
| * +--------------------------------------------------------------+ |
| * 63 46 45 40 39 38 36 35 32 31 24 15 0 |
| */ |
| |
| for (n = 0; n < adapter->num_tx_queues; n++) { |
| tx_ring = adapter->tx_ring[n]; |
| printk(KERN_INFO "------------------------------------\n"); |
| printk(KERN_INFO "TX QUEUE INDEX = %d\n", tx_ring->queue_index); |
| printk(KERN_INFO "------------------------------------\n"); |
| printk(KERN_INFO "T [desc] [address 63:0 ] " |
| "[PlPOCIStDDM Ln] [bi->dma ] " |
| "leng ntw timestamp bi->skb\n"); |
| |
| for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) { |
| tx_desc = E1000_TX_DESC_ADV(*tx_ring, i); |
| buffer_info = &tx_ring->buffer_info[i]; |
| u0 = (struct my_u0 *)tx_desc; |
| printk(KERN_INFO "T [0x%03X] %016llX %016llX %016llX" |
| " %04X %3X %016llX %p", i, |
| le64_to_cpu(u0->a), |
| le64_to_cpu(u0->b), |
| (u64)buffer_info->dma, |
| buffer_info->length, |
| buffer_info->next_to_watch, |
| (u64)buffer_info->time_stamp, |
| buffer_info->skb); |
| if (i == tx_ring->next_to_use && |
| i == tx_ring->next_to_clean) |
| printk(KERN_CONT " NTC/U\n"); |
| else if (i == tx_ring->next_to_use) |
| printk(KERN_CONT " NTU\n"); |
| else if (i == tx_ring->next_to_clean) |
| printk(KERN_CONT " NTC\n"); |
| else |
| printk(KERN_CONT "\n"); |
| |
| if (netif_msg_pktdata(adapter) && buffer_info->dma != 0) |
| print_hex_dump(KERN_INFO, "", |
| DUMP_PREFIX_ADDRESS, |
| 16, 1, phys_to_virt(buffer_info->dma), |
| buffer_info->length, true); |
| } |
| } |
| |
| /* Print RX Rings Summary */ |
| rx_ring_summary: |
| dev_info(&adapter->pdev->dev, "RX Rings Summary\n"); |
| printk(KERN_INFO "Queue [NTU] [NTC]\n"); |
| for (n = 0; n < adapter->num_rx_queues; n++) { |
| rx_ring = adapter->rx_ring[n]; |
| printk(KERN_INFO " %5d %5X %5X\n", n, |
| rx_ring->next_to_use, rx_ring->next_to_clean); |
| } |
| |
| /* Print RX Rings */ |
| if (!netif_msg_rx_status(adapter)) |
| goto exit; |
| |
| dev_info(&adapter->pdev->dev, "RX Rings Dump\n"); |
| |
| /* Advanced Receive Descriptor (Read) Format |
| * 63 1 0 |
| * +-----------------------------------------------------+ |
| * 0 | Packet Buffer Address [63:1] |A0/NSE| |
| * +----------------------------------------------+------+ |
| * 8 | Header Buffer Address [63:1] | DD | |
| * +-----------------------------------------------------+ |
| * |
| * |
| * Advanced Receive Descriptor (Write-Back) Format |
| * |
| * 63 48 47 32 31 30 21 20 17 16 4 3 0 |
| * +------------------------------------------------------+ |
| * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS | |
| * | Checksum Ident | | | | Type | Type | |
| * +------------------------------------------------------+ |
| * 8 | VLAN Tag | Length | Extended Error | Extended Status | |
| * +------------------------------------------------------+ |
| * 63 48 47 32 31 20 19 0 |
| */ |
| |
| for (n = 0; n < adapter->num_rx_queues; n++) { |
| rx_ring = adapter->rx_ring[n]; |
| printk(KERN_INFO "------------------------------------\n"); |
| printk(KERN_INFO "RX QUEUE INDEX = %d\n", rx_ring->queue_index); |
| printk(KERN_INFO "------------------------------------\n"); |
| printk(KERN_INFO "R [desc] [ PktBuf A0] " |
| "[ HeadBuf DD] [bi->dma ] [bi->skb] " |
| "<-- Adv Rx Read format\n"); |
| printk(KERN_INFO "RWB[desc] [PcsmIpSHl PtRs] " |
| "[vl er S cks ln] ---------------- [bi->skb] " |
| "<-- Adv Rx Write-Back format\n"); |
| |
| for (i = 0; i < rx_ring->count; i++) { |
| buffer_info = &rx_ring->buffer_info[i]; |
| rx_desc = E1000_RX_DESC_ADV(*rx_ring, i); |
| u0 = (struct my_u0 *)rx_desc; |
| staterr = le32_to_cpu(rx_desc->wb.upper.status_error); |
| if (staterr & E1000_RXD_STAT_DD) { |
| /* Descriptor Done */ |
| printk(KERN_INFO "RWB[0x%03X] %016llX " |
| "%016llX ---------------- %p", i, |
| le64_to_cpu(u0->a), |
| le64_to_cpu(u0->b), |
| buffer_info->skb); |
| } else { |
| printk(KERN_INFO "R [0x%03X] %016llX " |
| "%016llX %016llX %p", i, |
| le64_to_cpu(u0->a), |
| le64_to_cpu(u0->b), |
| (u64)buffer_info->dma, |
| buffer_info->skb); |
| |
| if (netif_msg_pktdata(adapter)) { |
| print_hex_dump(KERN_INFO, "", |
| DUMP_PREFIX_ADDRESS, |
| 16, 1, |
| phys_to_virt(buffer_info->dma), |
| rx_ring->rx_buffer_len, true); |
| if (rx_ring->rx_buffer_len |
| < IGB_RXBUFFER_1024) |
| print_hex_dump(KERN_INFO, "", |
| DUMP_PREFIX_ADDRESS, |
| 16, 1, |
| phys_to_virt( |
| buffer_info->page_dma + |
| buffer_info->page_offset), |
| PAGE_SIZE/2, true); |
| } |
| } |
| |
| if (i == rx_ring->next_to_use) |
| printk(KERN_CONT " NTU\n"); |
| else if (i == rx_ring->next_to_clean) |
| printk(KERN_CONT " NTC\n"); |
| else |
| printk(KERN_CONT "\n"); |
| |
| } |
| } |
| |
| exit: |
| return; |
| } |
| |
| |
| /** |
| * igb_read_clock - read raw cycle counter (to be used by time counter) |
| */ |
| static cycle_t igb_read_clock(const struct cyclecounter *tc) |
| { |
| struct igb_adapter *adapter = |
| container_of(tc, struct igb_adapter, cycles); |
| struct e1000_hw *hw = &adapter->hw; |
| u64 stamp = 0; |
| int shift = 0; |
| |
| /* |
| * The timestamp latches on lowest register read. For the 82580 |
| * the lowest register is SYSTIMR instead of SYSTIML. However we never |
| * adjusted TIMINCA so SYSTIMR will just read as all 0s so ignore it. |
| */ |
| if (hw->mac.type == e1000_82580) { |
| stamp = rd32(E1000_SYSTIMR) >> 8; |
| shift = IGB_82580_TSYNC_SHIFT; |
| } |
| |
| stamp |= (u64)rd32(E1000_SYSTIML) << shift; |
| stamp |= (u64)rd32(E1000_SYSTIMH) << (shift + 32); |
| return stamp; |
| } |
| |
| /** |
| * igb_get_hw_dev - return device |
| * used by hardware layer to print debugging information |
| **/ |
| struct net_device *igb_get_hw_dev(struct e1000_hw *hw) |
| { |
| struct igb_adapter *adapter = hw->back; |
| return adapter->netdev; |
| } |
| |
| /** |
| * igb_init_module - Driver Registration Routine |
| * |
| * igb_init_module is the first routine called when the driver is |
| * loaded. All it does is register with the PCI subsystem. |
| **/ |
| static int __init igb_init_module(void) |
| { |
| int ret; |
| printk(KERN_INFO "%s - version %s\n", |
| igb_driver_string, igb_driver_version); |
| |
| printk(KERN_INFO "%s\n", igb_copyright); |
| |
| #ifdef CONFIG_IGB_DCA |
| dca_register_notify(&dca_notifier); |
| #endif |
| ret = pci_register_driver(&igb_driver); |
| return ret; |
| } |
| |
| module_init(igb_init_module); |
| |
| /** |
| * igb_exit_module - Driver Exit Cleanup Routine |
| * |
| * igb_exit_module is called just before the driver is removed |
| * from memory. |
| **/ |
| static void __exit igb_exit_module(void) |
| { |
| #ifdef CONFIG_IGB_DCA |
| dca_unregister_notify(&dca_notifier); |
| #endif |
| pci_unregister_driver(&igb_driver); |
| } |
| |
| module_exit(igb_exit_module); |
| |
| #define Q_IDX_82576(i) (((i & 0x1) << 3) + (i >> 1)) |
| /** |
| * igb_cache_ring_register - Descriptor ring to register mapping |
| * @adapter: board private structure to initialize |
| * |
| * Once we know the feature-set enabled for the device, we'll cache |
| * the register offset the descriptor ring is assigned to. |
| **/ |
| static void igb_cache_ring_register(struct igb_adapter *adapter) |
| { |
| int i = 0, j = 0; |
| u32 rbase_offset = adapter->vfs_allocated_count; |
| |
| switch (adapter->hw.mac.type) { |
| case e1000_82576: |
| /* The queues are allocated for virtualization such that VF 0 |
| * is allocated queues 0 and 8, VF 1 queues 1 and 9, etc. |
| * In order to avoid collision we start at the first free queue |
| * and continue consuming queues in the same sequence |
| */ |
| if (adapter->vfs_allocated_count) { |
| for (; i < adapter->rss_queues; i++) |
| adapter->rx_ring[i]->reg_idx = rbase_offset + |
| Q_IDX_82576(i); |
| } |
| case e1000_82575: |
| case e1000_82580: |
| case e1000_i350: |
| default: |
| for (; i < adapter->num_rx_queues; i++) |
| adapter->rx_ring[i]->reg_idx = rbase_offset + i; |
| for (; j < adapter->num_tx_queues; j++) |
| adapter->tx_ring[j]->reg_idx = rbase_offset + j; |
| break; |
| } |
| } |
| |
| static void igb_free_queues(struct igb_adapter *adapter) |
| { |
| int i; |
| |
| for (i = 0; i < adapter->num_tx_queues; i++) { |
| kfree(adapter->tx_ring[i]); |
| adapter->tx_ring[i] = NULL; |
| } |
| for (i = 0; i < adapter->num_rx_queues; i++) { |
| kfree(adapter->rx_ring[i]); |
| adapter->rx_ring[i] = NULL; |
| } |
| adapter->num_rx_queues = 0; |
| adapter->num_tx_queues = 0; |
| } |
| |
| /** |
| * igb_alloc_queues - Allocate memory for all rings |
| * @adapter: board private structure to initialize |
| * |
| * We allocate one ring per queue at run-time since we don't know the |
| * number of queues at compile-time. |
| **/ |
| static int igb_alloc_queues(struct igb_adapter *adapter) |
| { |
| struct igb_ring *ring; |
| int i; |
| |
| for (i = 0; i < adapter->num_tx_queues; i++) { |
| ring = kzalloc(sizeof(struct igb_ring), GFP_KERNEL); |
| if (!ring) |
| goto err; |
| ring->count = adapter->tx_ring_count; |
| ring->queue_index = i; |
| ring->dev = &adapter->pdev->dev; |
| ring->netdev = adapter->netdev; |
| /* For 82575, context index must be unique per ring. */ |
| if (adapter->hw.mac.type == e1000_82575) |
| ring->flags = IGB_RING_FLAG_TX_CTX_IDX; |
| adapter->tx_ring[i] = ring; |
| } |
| |
| for (i = 0; i < adapter->num_rx_queues; i++) { |
| ring = kzalloc(sizeof(struct igb_ring), GFP_KERNEL); |
| if (!ring) |
| goto err; |
| ring->count = adapter->rx_ring_count; |
| ring->queue_index = i; |
| ring->dev = &adapter->pdev->dev; |
| ring->netdev = adapter->netdev; |
| ring->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE; |
| ring->flags = IGB_RING_FLAG_RX_CSUM; /* enable rx checksum */ |
| /* set flag indicating ring supports SCTP checksum offload */ |
| if (adapter->hw.mac.type >= e1000_82576) |
| ring->flags |= IGB_RING_FLAG_RX_SCTP_CSUM; |
| adapter->rx_ring[i] = ring; |
| } |
| |
| igb_cache_ring_register(adapter); |
| |
| return 0; |
| |
| err: |
| igb_free_queues(adapter); |
| |
| return -ENOMEM; |
| } |
| |
| #define IGB_N0_QUEUE -1 |
| static void igb_assign_vector(struct igb_q_vector *q_vector, int msix_vector) |
| { |
| u32 msixbm = 0; |
| struct igb_adapter *adapter = q_vector->adapter; |
| struct e1000_hw *hw = &adapter->hw; |
| u32 ivar, index; |
| int rx_queue = IGB_N0_QUEUE; |
| int tx_queue = IGB_N0_QUEUE; |
| |
| if (q_vector->rx_ring) |
| rx_queue = q_vector->rx_ring->reg_idx; |
| if (q_vector->tx_ring) |
| tx_queue = q_vector->tx_ring->reg_idx; |
| |
| switch (hw->mac.type) { |
| case e1000_82575: |
| /* The 82575 assigns vectors using a bitmask, which matches the |
| bitmask for the EICR/EIMS/EIMC registers. To assign one |
| or more queues to a vector, we write the appropriate bits |
| into the MSIXBM register for that vector. */ |
| if (rx_queue > IGB_N0_QUEUE) |
| msixbm = E1000_EICR_RX_QUEUE0 << rx_queue; |
| if (tx_queue > IGB_N0_QUEUE) |
| msixbm |= E1000_EICR_TX_QUEUE0 << tx_queue; |
| if (!adapter->msix_entries && msix_vector == 0) |
| msixbm |= E1000_EIMS_OTHER; |
| array_wr32(E1000_MSIXBM(0), msix_vector, msixbm); |
| q_vector->eims_value = msixbm; |
| break; |
| case e1000_82576: |
| /* 82576 uses a table-based method for assigning vectors. |
| Each queue has a single entry in the table to which we write |
| a vector number along with a "valid" bit. Sadly, the layout |
| of the table is somewhat counterintuitive. */ |
| if (rx_queue > IGB_N0_QUEUE) { |
| index = (rx_queue & 0x7); |
| ivar = array_rd32(E1000_IVAR0, index); |
| if (rx_queue < 8) { |
| /* vector goes into low byte of register */ |
| ivar = ivar & 0xFFFFFF00; |
| ivar |= msix_vector | E1000_IVAR_VALID; |
| } else { |
| /* vector goes into third byte of register */ |
| ivar = ivar & 0xFF00FFFF; |
| ivar |= (msix_vector | E1000_IVAR_VALID) << 16; |
| } |
| array_wr32(E1000_IVAR0, index, ivar); |
| } |
| if (tx_queue > IGB_N0_QUEUE) { |
| index = (tx_queue & 0x7); |
| ivar = array_rd32(E1000_IVAR0, index); |
| if (tx_queue < 8) { |
| /* vector goes into second byte of register */ |
| ivar = ivar & 0xFFFF00FF; |
| ivar |= (msix_vector | E1000_IVAR_VALID) << 8; |
| } else { |
| /* vector goes into high byte of register */ |
| ivar = ivar & 0x00FFFFFF; |
| ivar |= (msix_vector | E1000_IVAR_VALID) << 24; |
| } |
| array_wr32(E1000_IVAR0, index, ivar); |
| } |
| q_vector->eims_value = 1 << msix_vector; |
| break; |
| case e1000_82580: |
| case e1000_i350: |
| /* 82580 uses the same table-based approach as 82576 but has fewer |
| entries as a result we carry over for queues greater than 4. */ |
| if (rx_queue > IGB_N0_QUEUE) { |
| index = (rx_queue >> 1); |
| ivar = array_rd32(E1000_IVAR0, index); |
| if (rx_queue & 0x1) { |
| /* vector goes into third byte of register */ |
| ivar = ivar & 0xFF00FFFF; |
| ivar |= (msix_vector | E1000_IVAR_VALID) << 16; |
| } else { |
| /* vector goes into low byte of register */ |
| ivar = ivar & 0xFFFFFF00; |
| ivar |= msix_vector | E1000_IVAR_VALID; |
| } |
| array_wr32(E1000_IVAR0, index, ivar); |
| } |
| if (tx_queue > IGB_N0_QUEUE) { |
| index = (tx_queue >> 1); |
| ivar = array_rd32(E1000_IVAR0, index); |
| if (tx_queue & 0x1) { |
| /* vector goes into high byte of register */ |
| ivar = ivar & 0x00FFFFFF; |
| ivar |= (msix_vector | E1000_IVAR_VALID) << 24; |
| } else { |
| /* vector goes into second byte of register */ |
| ivar = ivar & 0xFFFF00FF; |
| ivar |= (msix_vector | E1000_IVAR_VALID) << 8; |
| } |
| array_wr32(E1000_IVAR0, index, ivar); |
| } |
| q_vector->eims_value = 1 << msix_vector; |
| break; |
| default: |
| BUG(); |
| break; |
| } |
| |
| /* add q_vector eims value to global eims_enable_mask */ |
| adapter->eims_enable_mask |= q_vector->eims_value; |
| |
| /* configure q_vector to set itr on first interrupt */ |
| q_vector->set_itr = 1; |
| } |
| |
| /** |
| * igb_configure_msix - Configure MSI-X hardware |
| * |
| * igb_configure_msix sets up the hardware to properly |
| * generate MSI-X interrupts. |
| **/ |
| static void igb_configure_msix(struct igb_adapter *adapter) |
| { |
| u32 tmp; |
| int i, vector = 0; |
| struct e1000_hw *hw = &adapter->hw; |
| |
| adapter->eims_enable_mask = 0; |
| |
| /* set vector for other causes, i.e. link changes */ |
| switch (hw->mac.type) { |
| case e1000_82575: |
| tmp = rd32(E1000_CTRL_EXT); |
| /* enable MSI-X PBA support*/ |
| tmp |= E1000_CTRL_EXT_PBA_CLR; |
| |
| /* Auto-Mask interrupts upon ICR read. */ |
| tmp |= E1000_CTRL_EXT_EIAME; |
| tmp |= E1000_CTRL_EXT_IRCA; |
| |
| wr32(E1000_CTRL_EXT, tmp); |
| |
| /* enable msix_other interrupt */ |
| array_wr32(E1000_MSIXBM(0), vector++, |
| E1000_EIMS_OTHER); |
| adapter->eims_other = E1000_EIMS_OTHER; |
| |
| break; |
| |
| case e1000_82576: |
| case e1000_82580: |
| case e1000_i350: |
| /* Turn on MSI-X capability first, or our settings |
| * won't stick. And it will take days to debug. */ |
| wr32(E1000_GPIE, E1000_GPIE_MSIX_MODE | |
| E1000_GPIE_PBA | E1000_GPIE_EIAME | |
| E1000_GPIE_NSICR); |
| |
| /* enable msix_other interrupt */ |
| adapter->eims_other = 1 << vector; |
| tmp = (vector++ | E1000_IVAR_VALID) << 8; |
| |
| wr32(E1000_IVAR_MISC, tmp); |
| break; |
| default: |
| /* do nothing, since nothing else supports MSI-X */ |
| break; |
| } /* switch (hw->mac.type) */ |
| |
| adapter->eims_enable_mask |= adapter->eims_other; |
| |
| for (i = 0; i < adapter->num_q_vectors; i++) |
| igb_assign_vector(adapter->q_vector[i], vector++); |
| |
| wrfl(); |
| } |
| |
| /** |
| * igb_request_msix - Initialize MSI-X interrupts |
| * |
| * igb_request_msix allocates MSI-X vectors and requests interrupts from the |
| * kernel. |
| **/ |
| static int igb_request_msix(struct igb_adapter *adapter) |
| { |
| struct net_device *netdev = adapter->netdev; |
| struct e1000_hw *hw = &adapter->hw; |
| int i, err = 0, vector = 0; |
| |
| err = request_irq(adapter->msix_entries[vector].vector, |
| igb_msix_other, 0, netdev->name, adapter); |
| if (err) |
| goto out; |
| vector++; |
| |
| for (i = 0; i < adapter->num_q_vectors; i++) { |
| struct igb_q_vector *q_vector = adapter->q_vector[i]; |
| |
| q_vector->itr_register = hw->hw_addr + E1000_EITR(vector); |
| |
| if (q_vector->rx_ring && q_vector->tx_ring) |
| sprintf(q_vector->name, "%s-TxRx-%u", netdev->name, |
| q_vector->rx_ring->queue_index); |
| else if (q_vector->tx_ring) |
| sprintf(q_vector->name, "%s-tx-%u", netdev->name, |
| q_vector->tx_ring->queue_index); |
| else if (q_vector->rx_ring) |
| sprintf(q_vector->name, "%s-rx-%u", netdev->name, |
| q_vector->rx_ring->queue_index); |
| else |
| sprintf(q_vector->name, "%s-unused", netdev->name); |
| |
| err = request_irq(adapter->msix_entries[vector].vector, |
| igb_msix_ring, 0, q_vector->name, |
| q_vector); |
| if (err) |
| goto out; |
| vector++; |
| } |
| |
| igb_configure_msix(adapter); |
| return 0; |
| out: |
| return err; |
| } |
| |
| static void igb_reset_interrupt_capability(struct igb_adapter *adapter) |
| { |
| if (adapter->msix_entries) { |
| pci_disable_msix(adapter->pdev); |
| kfree(adapter->msix_entries); |
| adapter->msix_entries = NULL; |
| } else if (adapter->flags & IGB_FLAG_HAS_MSI) { |
| pci_disable_msi(adapter->pdev); |
| } |
| } |
| |
| /** |
| * igb_free_q_vectors - Free memory allocated for interrupt vectors |
| * @adapter: board private structure to initialize |
| * |
| * This function frees the memory allocated to the q_vectors. In addition if |
| * NAPI is enabled it will delete any references to the NAPI struct prior |
| * to freeing the q_vector. |
| **/ |
| static void igb_free_q_vectors(struct igb_adapter *adapter) |
| { |
| int v_idx; |
| |
| for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) { |
| struct igb_q_vector *q_vector = adapter->q_vector[v_idx]; |
| adapter->q_vector[v_idx] = NULL; |
| if (!q_vector) |
| continue; |
| netif_napi_del(&q_vector->napi); |
| kfree(q_vector); |
| } |
| adapter->num_q_vectors = 0; |
| } |
| |
| /** |
| * igb_clear_interrupt_scheme - reset the device to a state of no interrupts |
| * |
| * This function resets the device so that it has 0 rx queues, tx queues, and |
| * MSI-X interrupts allocated. |
| */ |
| static void igb_clear_interrupt_scheme(struct igb_adapter *adapter) |
| { |
| igb_free_queues(adapter); |
| igb_free_q_vectors(adapter); |
| igb_reset_interrupt_capability(adapter); |
| } |
| |
| /** |
| * igb_set_interrupt_capability - set MSI or MSI-X if supported |
| * |
| * Attempt to configure interrupts using the best available |
| * capabilities of the hardware and kernel. |
| **/ |
| static void igb_set_interrupt_capability(struct igb_adapter *adapter) |
| { |
| int err; |
| int numvecs, i; |
| |
| /* Number of supported queues. */ |
| adapter->num_rx_queues = adapter->rss_queues; |
| if (adapter->vfs_allocated_count) |
| adapter->num_tx_queues = 1; |
| else |
| adapter->num_tx_queues = adapter->rss_queues; |
| |
| /* start with one vector for every rx queue */ |
| numvecs = adapter->num_rx_queues; |
| |
| /* if tx handler is separate add 1 for every tx queue */ |
| if (!(adapter->flags & IGB_FLAG_QUEUE_PAIRS)) |
| numvecs += adapter->num_tx_queues; |
| |
| /* store the number of vectors reserved for queues */ |
| adapter->num_q_vectors = numvecs; |
| |
| /* add 1 vector for link status interrupts */ |
| numvecs++; |
| adapter->msix_entries = kcalloc(numvecs, sizeof(struct msix_entry), |
| GFP_KERNEL); |
| if (!adapter->msix_entries) |
| goto msi_only; |
| |
| for (i = 0; i < numvecs; i++) |
| adapter->msix_entries[i].entry = i; |
| |
| err = pci_enable_msix(adapter->pdev, |
| adapter->msix_entries, |
| numvecs); |
| if (err == 0) |
| goto out; |
| |
| igb_reset_interrupt_capability(adapter); |
| |
| /* If we can't do MSI-X, try MSI */ |
| msi_only: |
| #ifdef CONFIG_PCI_IOV |
| /* disable SR-IOV for non MSI-X configurations */ |
| if (adapter->vf_data) { |
| struct e1000_hw *hw = &adapter->hw; |
| /* disable iov and allow time for transactions to clear */ |
| pci_disable_sriov(adapter->pdev); |
| msleep(500); |
| |
| kfree(adapter->vf_data); |
| adapter->vf_data = NULL; |
| wr32(E1000_IOVCTL, E1000_IOVCTL_REUSE_VFQ); |
| msleep(100); |
| dev_info(&adapter->pdev->dev, "IOV Disabled\n"); |
| } |
| #endif |
| adapter->vfs_allocated_count = 0; |
| adapter->rss_queues = 1; |
| adapter->flags |= IGB_FLAG_QUEUE_PAIRS; |
| adapter->num_rx_queues = 1; |
| adapter->num_tx_queues = 1; |
| adapter->num_q_vectors = 1; |
| if (!pci_enable_msi(adapter->pdev)) |
| adapter->flags |= IGB_FLAG_HAS_MSI; |
| out: |
| /* Notify the stack of the (possibly) reduced Tx Queue count. */ |
| adapter->netdev->real_num_tx_queues = adapter->num_tx_queues; |
| } |
| |
| /** |
| * igb_alloc_q_vectors - Allocate memory for interrupt vectors |
| * @adapter: board private structure to initialize |
| * |
| * We allocate one q_vector per queue interrupt. If allocation fails we |
| * return -ENOMEM. |
| **/ |
| static int igb_alloc_q_vectors(struct igb_adapter *adapter) |
| { |
| struct igb_q_vector *q_vector; |
| struct e1000_hw *hw = &adapter->hw; |
| int v_idx; |
| |
| for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) { |
| q_vector = kzalloc(sizeof(struct igb_q_vector), GFP_KERNEL); |
| if (!q_vector) |
| goto err_out; |
| q_vector->adapter = adapter; |
| q_vector->itr_register = hw->hw_addr + E1000_EITR(0); |
| q_vector->itr_val = IGB_START_ITR; |
| netif_napi_add(adapter->netdev, &q_vector->napi, igb_poll, 64); |
| adapter->q_vector[v_idx] = q_vector; |
| } |
| return 0; |
| |
| err_out: |
| igb_free_q_vectors(adapter); |
| return -ENOMEM; |
| } |
| |
| static void igb_map_rx_ring_to_vector(struct igb_adapter *adapter, |
| int ring_idx, int v_idx) |
| { |
| struct igb_q_vector *q_vector = adapter->q_vector[v_idx]; |
| |
| q_vector->rx_ring = adapter->rx_ring[ring_idx]; |
| q_vector->rx_ring->q_vector = q_vector; |
| q_vector->itr_val = adapter->rx_itr_setting; |
| if (q_vector->itr_val && q_vector->itr_val <= 3) |
| q_vector->itr_val = IGB_START_ITR; |
| } |
| |
| static void igb_map_tx_ring_to_vector(struct igb_adapter *adapter, |
| int ring_idx, int v_idx) |
| { |
| struct igb_q_vector *q_vector = adapter->q_vector[v_idx]; |
| |
| q_vector->tx_ring = adapter->tx_ring[ring_idx]; |
| q_vector->tx_ring->q_vector = q_vector; |
| q_vector->itr_val = adapter->tx_itr_setting; |
| if (q_vector->itr_val && q_vector->itr_val <= 3) |
| q_vector->itr_val = IGB_START_ITR; |
| } |
| |
| /** |
| * igb_map_ring_to_vector - maps allocated queues to vectors |
| * |
| * This function maps the recently allocated queues to vectors. |
| **/ |
| static int igb_map_ring_to_vector(struct igb_adapter *adapter) |
| { |
| int i; |
| int v_idx = 0; |
| |
| if ((adapter->num_q_vectors < adapter->num_rx_queues) || |
| (adapter->num_q_vectors < adapter->num_tx_queues)) |
| return -ENOMEM; |
| |
| if (adapter->num_q_vectors >= |
| (adapter->num_rx_queues + adapter->num_tx_queues)) { |
| for (i = 0; i < adapter->num_rx_queues; i++) |
| igb_map_rx_ring_to_vector(adapter, i, v_idx++); |
| for (i = 0; i < adapter->num_tx_queues; i++) |
| igb_map_tx_ring_to_vector(adapter, i, v_idx++); |
| } else { |
| for (i = 0; i < adapter->num_rx_queues; i++) { |
| if (i < adapter->num_tx_queues) |
| igb_map_tx_ring_to_vector(adapter, i, v_idx); |
| igb_map_rx_ring_to_vector(adapter, i, v_idx++); |
| } |
| for (; i < adapter->num_tx_queues; i++) |
| igb_map_tx_ring_to_vector(adapter, i, v_idx++); |
| } |
| return 0; |
| } |
| |
| /** |
| * igb_init_interrupt_scheme - initialize interrupts, allocate queues/vectors |
| * |
| * This function initializes the interrupts and allocates all of the queues. |
| **/ |
| static int igb_init_interrupt_scheme(struct igb_adapter *adapter) |
| { |
| struct pci_dev *pdev = adapter->pdev; |
| int err; |
| |
| igb_set_interrupt_capability(adapter); |
| |
| err = igb_alloc_q_vectors(adapter); |
| if (err) { |
| dev_err(&pdev->dev, "Unable to allocate memory for vectors\n"); |
| goto err_alloc_q_vectors; |
| } |
| |
| err = igb_alloc_queues(adapter); |
| if (err) { |
| dev_err(&pdev->dev, "Unable to allocate memory for queues\n"); |
| goto err_alloc_queues; |
| } |
| |
| err = igb_map_ring_to_vector(adapter); |
| if (err) { |
| dev_err(&pdev->dev, "Invalid q_vector to ring mapping\n"); |
| goto err_map_queues; |
| } |
| |
| |
| return 0; |
| err_map_queues: |
| igb_free_queues(adapter); |
| err_alloc_queues: |
| igb_free_q_vectors(adapter); |
| err_alloc_q_vectors: |
| igb_reset_interrupt_capability(adapter); |
| return err; |
| } |
| |
| /** |
| * igb_request_irq - initialize interrupts |
| * |
| * Attempts to configure interrupts using the best available |
| * capabilities of the hardware and kernel. |
| **/ |
| static int igb_request_irq(struct igb_adapter *adapter) |
| { |
| struct net_device *netdev = adapter->netdev; |
| struct pci_dev *pdev = adapter->pdev; |
| int err = 0; |
| |
| if (adapter->msix_entries) { |
| err = igb_request_msix(adapter); |
| if (!err) |
| goto request_done; |
| /* fall back to MSI */ |
| igb_clear_interrupt_scheme(adapter); |
| if (!pci_enable_msi(adapter->pdev)) |
| adapter->flags |= IGB_FLAG_HAS_MSI; |
| igb_free_all_tx_resources(adapter); |
| igb_free_all_rx_resources(adapter); |
| adapter->num_tx_queues = 1; |
| adapter->num_rx_queues = 1; |
| adapter->num_q_vectors = 1; |
| err = igb_alloc_q_vectors(adapter); |
| if (err) { |
| dev_err(&pdev->dev, |
| "Unable to allocate memory for vectors\n"); |
| goto request_done; |
| } |
| err = igb_alloc_queues(adapter); |
| if (err) { |
| dev_err(&pdev->dev, |
| "Unable to allocate memory for queues\n"); |
| igb_free_q_vectors(adapter); |
| goto request_done; |
| } |
| igb_setup_all_tx_resources(adapter); |
| igb_setup_all_rx_resources(adapter); |
| } else { |
| igb_assign_vector(adapter->q_vector[0], 0); |
| } |
| |
| if (adapter->flags & IGB_FLAG_HAS_MSI) { |
| err = request_irq(adapter->pdev->irq, igb_intr_msi, 0, |
| netdev->name, adapter); |
| if (!err) |
| goto request_done; |
| |
| /* fall back to legacy interrupts */ |
| igb_reset_interrupt_capability(adapter); |
| adapter->flags &= ~IGB_FLAG_HAS_MSI; |
| } |
| |
| err = request_irq(adapter->pdev->irq, igb_intr, IRQF_SHARED, |
| netdev->name, adapter); |
| |
| if (err) |
| dev_err(&adapter->pdev->dev, "Error %d getting interrupt\n", |
| err); |
| |
| request_done: |
| return err; |
| } |
| |
| static void igb_free_irq(struct igb_adapter *adapter) |
| { |
| if (adapter->msix_entries) { |
| int vector = 0, i; |
| |
| free_irq(adapter->msix_entries[vector++].vector, adapter); |
| |
| for (i = 0; i < adapter->num_q_vectors; i++) { |
| struct igb_q_vector *q_vector = adapter->q_vector[i]; |
| free_irq(adapter->msix_entries[vector++].vector, |
| q_vector); |
| } |
| } else { |
| free_irq(adapter->pdev->irq, adapter); |
| } |
| } |
| |
| /** |
| * igb_irq_disable - Mask off interrupt generation on the NIC |
| * @adapter: board private structure |
| **/ |
| static void igb_irq_disable(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| |
| /* |
| * we need to be careful when disabling interrupts. The VFs are also |
| * mapped into these registers and so clearing the bits can cause |
| * issues on the VF drivers so we only need to clear what we set |
| */ |
| if (adapter->msix_entries) { |
| u32 regval = rd32(E1000_EIAM); |
| wr32(E1000_EIAM, regval & ~adapter->eims_enable_mask); |
| wr32(E1000_EIMC, adapter->eims_enable_mask); |
| regval = rd32(E1000_EIAC); |
| wr32(E1000_EIAC, regval & ~adapter->eims_enable_mask); |
| } |
| |
| wr32(E1000_IAM, 0); |
| wr32(E1000_IMC, ~0); |
| wrfl(); |
| synchronize_irq(adapter->pdev->irq); |
| } |
| |
| /** |
| * igb_irq_enable - Enable default interrupt generation settings |
| * @adapter: board private structure |
| **/ |
| static void igb_irq_enable(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| |
| if (adapter->msix_entries) { |
| u32 ims = E1000_IMS_LSC | E1000_IMS_DOUTSYNC; |
| u32 regval = rd32(E1000_EIAC); |
| wr32(E1000_EIAC, regval | adapter->eims_enable_mask); |
| regval = rd32(E1000_EIAM); |
| wr32(E1000_EIAM, regval | adapter->eims_enable_mask); |
| wr32(E1000_EIMS, adapter->eims_enable_mask); |
| if (adapter->vfs_allocated_count) { |
| wr32(E1000_MBVFIMR, 0xFF); |
| ims |= E1000_IMS_VMMB; |
| } |
| if (adapter->hw.mac.type == e1000_82580) |
| ims |= E1000_IMS_DRSTA; |
| |
| wr32(E1000_IMS, ims); |
| } else { |
| wr32(E1000_IMS, IMS_ENABLE_MASK | |
| E1000_IMS_DRSTA); |
| wr32(E1000_IAM, IMS_ENABLE_MASK | |
| E1000_IMS_DRSTA); |
| } |
| } |
| |
| static void igb_update_mng_vlan(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u16 vid = adapter->hw.mng_cookie.vlan_id; |
| u16 old_vid = adapter->mng_vlan_id; |
| |
| if (hw->mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN) { |
| /* add VID to filter table */ |
| igb_vfta_set(hw, vid, true); |
| adapter->mng_vlan_id = vid; |
| } else { |
| adapter->mng_vlan_id = IGB_MNG_VLAN_NONE; |
| } |
| |
| if ((old_vid != (u16)IGB_MNG_VLAN_NONE) && |
| (vid != old_vid) && |
| !vlan_group_get_device(adapter->vlgrp, old_vid)) { |
| /* remove VID from filter table */ |
| igb_vfta_set(hw, old_vid, false); |
| } |
| } |
| |
| /** |
| * igb_release_hw_control - release control of the h/w to f/w |
| * @adapter: address of board private structure |
| * |
| * igb_release_hw_control resets CTRL_EXT:DRV_LOAD bit. |
| * For ASF and Pass Through versions of f/w this means that the |
| * driver is no longer loaded. |
| * |
| **/ |
| static void igb_release_hw_control(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u32 ctrl_ext; |
| |
| /* Let firmware take over control of h/w */ |
| ctrl_ext = rd32(E1000_CTRL_EXT); |
| wr32(E1000_CTRL_EXT, |
| ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD); |
| } |
| |
| /** |
| * igb_get_hw_control - get control of the h/w from f/w |
| * @adapter: address of board private structure |
| * |
| * igb_get_hw_control sets CTRL_EXT:DRV_LOAD bit. |
| * For ASF and Pass Through versions of f/w this means that |
| * the driver is loaded. |
| * |
| **/ |
| static void igb_get_hw_control(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u32 ctrl_ext; |
| |
| /* Let firmware know the driver has taken over */ |
| ctrl_ext = rd32(E1000_CTRL_EXT); |
| wr32(E1000_CTRL_EXT, |
| ctrl_ext | E1000_CTRL_EXT_DRV_LOAD); |
| } |
| |
| /** |
| * igb_configure - configure the hardware for RX and TX |
| * @adapter: private board structure |
| **/ |
| static void igb_configure(struct igb_adapter *adapter) |
| { |
| struct net_device *netdev = adapter->netdev; |
| int i; |
| |
| igb_get_hw_control(adapter); |
| igb_set_rx_mode(netdev); |
| |
| igb_restore_vlan(adapter); |
| |
| igb_setup_tctl(adapter); |
| igb_setup_mrqc(adapter); |
| igb_setup_rctl(adapter); |
| |
| igb_configure_tx(adapter); |
| igb_configure_rx(adapter); |
| |
| igb_rx_fifo_flush_82575(&adapter->hw); |
| |
| /* call igb_desc_unused which always leaves |
| * at least 1 descriptor unused to make sure |
| * next_to_use != next_to_clean */ |
| for (i = 0; i < adapter->num_rx_queues; i++) { |
| struct igb_ring *ring = adapter->rx_ring[i]; |
| igb_alloc_rx_buffers_adv(ring, igb_desc_unused(ring)); |
| } |
| } |
| |
| /** |
| * igb_power_up_link - Power up the phy/serdes link |
| * @adapter: address of board private structure |
| **/ |
| void igb_power_up_link(struct igb_adapter *adapter) |
| { |
| if (adapter->hw.phy.media_type == e1000_media_type_copper) |
| igb_power_up_phy_copper(&adapter->hw); |
| else |
| igb_power_up_serdes_link_82575(&adapter->hw); |
| } |
| |
| /** |
| * igb_power_down_link - Power down the phy/serdes link |
| * @adapter: address of board private structure |
| */ |
| static void igb_power_down_link(struct igb_adapter *adapter) |
| { |
| if (adapter->hw.phy.media_type == e1000_media_type_copper) |
| igb_power_down_phy_copper_82575(&adapter->hw); |
| else |
| igb_shutdown_serdes_link_82575(&adapter->hw); |
| } |
| |
| /** |
| * igb_up - Open the interface and prepare it to handle traffic |
| * @adapter: board private structure |
| **/ |
| int igb_up(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| int i; |
| |
| /* hardware has been reset, we need to reload some things */ |
| igb_configure(adapter); |
| |
| clear_bit(__IGB_DOWN, &adapter->state); |
| |
| for (i = 0; i < adapter->num_q_vectors; i++) { |
| struct igb_q_vector *q_vector = adapter->q_vector[i]; |
| napi_enable(&q_vector->napi); |
| } |
| if (adapter->msix_entries) |
| igb_configure_msix(adapter); |
| else |
| igb_assign_vector(adapter->q_vector[0], 0); |
| |
| /* Clear any pending interrupts. */ |
| rd32(E1000_ICR); |
| igb_irq_enable(adapter); |
| |
| /* notify VFs that reset has been completed */ |
| if (adapter->vfs_allocated_count) { |
| u32 reg_data = rd32(E1000_CTRL_EXT); |
| reg_data |= E1000_CTRL_EXT_PFRSTD; |
| wr32(E1000_CTRL_EXT, reg_data); |
| } |
| |
| netif_tx_start_all_queues(adapter->netdev); |
| |
| /* start the watchdog. */ |
| hw->mac.get_link_status = 1; |
| schedule_work(&adapter->watchdog_task); |
| |
| return 0; |
| } |
| |
| void igb_down(struct igb_adapter *adapter) |
| { |
| struct net_device *netdev = adapter->netdev; |
| struct e1000_hw *hw = &adapter->hw; |
| u32 tctl, rctl; |
| int i; |
| |
| /* signal that we're down so the interrupt handler does not |
| * reschedule our watchdog timer */ |
| set_bit(__IGB_DOWN, &adapter->state); |
| |
| /* disable receives in the hardware */ |
| rctl = rd32(E1000_RCTL); |
| wr32(E1000_RCTL, rctl & ~E1000_RCTL_EN); |
| /* flush and sleep below */ |
| |
| netif_tx_stop_all_queues(netdev); |
| |
| /* disable transmits in the hardware */ |
| tctl = rd32(E1000_TCTL); |
| tctl &= ~E1000_TCTL_EN; |
| wr32(E1000_TCTL, tctl); |
| /* flush both disables and wait for them to finish */ |
| wrfl(); |
| msleep(10); |
| |
| for (i = 0; i < adapter->num_q_vectors; i++) { |
| struct igb_q_vector *q_vector = adapter->q_vector[i]; |
| napi_disable(&q_vector->napi); |
| } |
| |
| igb_irq_disable(adapter); |
| |
| del_timer_sync(&adapter->watchdog_timer); |
| del_timer_sync(&adapter->phy_info_timer); |
| |
| netif_carrier_off(netdev); |
| |
| /* record the stats before reset*/ |
| igb_update_stats(adapter); |
| |
| adapter->link_speed = 0; |
| adapter->link_duplex = 0; |
| |
| if (!pci_channel_offline(adapter->pdev)) |
| igb_reset(adapter); |
| igb_clean_all_tx_rings(adapter); |
| igb_clean_all_rx_rings(adapter); |
| #ifdef CONFIG_IGB_DCA |
| |
| /* since we reset the hardware DCA settings were cleared */ |
| igb_setup_dca(adapter); |
| #endif |
| } |
| |
| void igb_reinit_locked(struct igb_adapter *adapter) |
| { |
| WARN_ON(in_interrupt()); |
| while (test_and_set_bit(__IGB_RESETTING, &adapter->state)) |
| msleep(1); |
| igb_down(adapter); |
| igb_up(adapter); |
| clear_bit(__IGB_RESETTING, &adapter->state); |
| } |
| |
| void igb_reset(struct igb_adapter *adapter) |
| { |
| struct pci_dev *pdev = adapter->pdev; |
| struct e1000_hw *hw = &adapter->hw; |
| struct e1000_mac_info *mac = &hw->mac; |
| struct e1000_fc_info *fc = &hw->fc; |
| u32 pba = 0, tx_space, min_tx_space, min_rx_space; |
| u16 hwm; |
| |
| /* Repartition Pba for greater than 9k mtu |
| * To take effect CTRL.RST is required. |
| */ |
| switch (mac->type) { |
| case e1000_i350: |
| case e1000_82580: |
| pba = rd32(E1000_RXPBS); |
| pba = igb_rxpbs_adjust_82580(pba); |
| break; |
| case e1000_82576: |
| pba = rd32(E1000_RXPBS); |
| pba &= E1000_RXPBS_SIZE_MASK_82576; |
| break; |
| case e1000_82575: |
| default: |
| pba = E1000_PBA_34K; |
| break; |
| } |
| |
| if ((adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) && |
| (mac->type < e1000_82576)) { |
| /* adjust PBA for jumbo frames */ |
| wr32(E1000_PBA, pba); |
| |
| /* To maintain wire speed transmits, the Tx FIFO should be |
| * large enough to accommodate two full transmit packets, |
| * rounded up to the next 1KB and expressed in KB. Likewise, |
| * the Rx FIFO should be large enough to accommodate at least |
| * one full receive packet and is similarly rounded up and |
| * expressed in KB. */ |
| pba = rd32(E1000_PBA); |
| /* upper 16 bits has Tx packet buffer allocation size in KB */ |
| tx_space = pba >> 16; |
| /* lower 16 bits has Rx packet buffer allocation size in KB */ |
| pba &= 0xffff; |
| /* the tx fifo also stores 16 bytes of information about the tx |
| * but don't include ethernet FCS because hardware appends it */ |
| min_tx_space = (adapter->max_frame_size + |
| sizeof(union e1000_adv_tx_desc) - |
| ETH_FCS_LEN) * 2; |
| min_tx_space = ALIGN(min_tx_space, 1024); |
| min_tx_space >>= 10; |
| /* software strips receive CRC, so leave room for it */ |
| min_rx_space = adapter->max_frame_size; |
| min_rx_space = ALIGN(min_rx_space, 1024); |
| min_rx_space >>= 10; |
| |
| /* If current Tx allocation is less than the min Tx FIFO size, |
| * and the min Tx FIFO size is less than the current Rx FIFO |
| * allocation, take space away from current Rx allocation */ |
| if (tx_space < min_tx_space && |
| ((min_tx_space - tx_space) < pba)) { |
| pba = pba - (min_tx_space - tx_space); |
| |
| /* if short on rx space, rx wins and must trump tx |
| * adjustment */ |
| if (pba < min_rx_space) |
| pba = min_rx_space; |
| } |
| wr32(E1000_PBA, pba); |
| } |
| |
| /* flow control settings */ |
| /* The high water mark must be low enough to fit one full frame |
| * (or the size used for early receive) above it in the Rx FIFO. |
| * Set it to the lower of: |
| * - 90% of the Rx FIFO size, or |
| * - the full Rx FIFO size minus one full frame */ |
| hwm = min(((pba << 10) * 9 / 10), |
| ((pba << 10) - 2 * adapter->max_frame_size)); |
| |
| fc->high_water = hwm & 0xFFF0; /* 16-byte granularity */ |
| fc->low_water = fc->high_water - 16; |
| fc->pause_time = 0xFFFF; |
| fc->send_xon = 1; |
| fc->current_mode = fc->requested_mode; |
| |
| /* disable receive for all VFs and wait one second */ |
| if (adapter->vfs_allocated_count) { |
| int i; |
| for (i = 0 ; i < adapter->vfs_allocated_count; i++) |
| adapter->vf_data[i].flags = 0; |
| |
| /* ping all the active vfs to let them know we are going down */ |
| igb_ping_all_vfs(adapter); |
| |
| /* disable transmits and receives */ |
| wr32(E1000_VFRE, 0); |
| wr32(E1000_VFTE, 0); |
| } |
| |
| /* Allow time for pending master requests to run */ |
| hw->mac.ops.reset_hw(hw); |
| wr32(E1000_WUC, 0); |
| |
| if (hw->mac.ops.init_hw(hw)) |
| dev_err(&pdev->dev, "Hardware Error\n"); |
| |
| if (hw->mac.type == e1000_82580) { |
| u32 reg = rd32(E1000_PCIEMISC); |
| wr32(E1000_PCIEMISC, |
| reg & ~E1000_PCIEMISC_LX_DECISION); |
| } |
| if (!netif_running(adapter->netdev)) |
| igb_power_down_link(adapter); |
| |
| igb_update_mng_vlan(adapter); |
| |
| /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */ |
| wr32(E1000_VET, ETHERNET_IEEE_VLAN_TYPE); |
| |
| igb_get_phy_info(hw); |
| } |
| |
| static const struct net_device_ops igb_netdev_ops = { |
| .ndo_open = igb_open, |
| .ndo_stop = igb_close, |
| .ndo_start_xmit = igb_xmit_frame_adv, |
| .ndo_get_stats = igb_get_stats, |
| .ndo_set_rx_mode = igb_set_rx_mode, |
| .ndo_set_multicast_list = igb_set_rx_mode, |
| .ndo_set_mac_address = igb_set_mac, |
| .ndo_change_mtu = igb_change_mtu, |
| .ndo_do_ioctl = igb_ioctl, |
| .ndo_tx_timeout = igb_tx_timeout, |
| .ndo_validate_addr = eth_validate_addr, |
| .ndo_vlan_rx_register = igb_vlan_rx_register, |
| .ndo_vlan_rx_add_vid = igb_vlan_rx_add_vid, |
| .ndo_vlan_rx_kill_vid = igb_vlan_rx_kill_vid, |
| .ndo_set_vf_mac = igb_ndo_set_vf_mac, |
| .ndo_set_vf_vlan = igb_ndo_set_vf_vlan, |
| .ndo_set_vf_tx_rate = igb_ndo_set_vf_bw, |
| .ndo_get_vf_config = igb_ndo_get_vf_config, |
| #ifdef CONFIG_NET_POLL_CONTROLLER |
| .ndo_poll_controller = igb_netpoll, |
| #endif |
| }; |
| |
| /** |
| * igb_probe - Device Initialization Routine |
| * @pdev: PCI device information struct |
| * @ent: entry in igb_pci_tbl |
| * |
| * Returns 0 on success, negative on failure |
| * |
| * igb_probe initializes an adapter identified by a pci_dev structure. |
| * The OS initialization, configuring of the adapter private structure, |
| * and a hardware reset occur. |
| **/ |
| static int __devinit igb_probe(struct pci_dev *pdev, |
| const struct pci_device_id *ent) |
| { |
| struct net_device *netdev; |
| struct igb_adapter *adapter; |
| struct e1000_hw *hw; |
| u16 eeprom_data = 0; |
| static int global_quad_port_a; /* global quad port a indication */ |
| const struct e1000_info *ei = igb_info_tbl[ent->driver_data]; |
| unsigned long mmio_start, mmio_len; |
| int err, pci_using_dac; |
| u16 eeprom_apme_mask = IGB_EEPROM_APME; |
| u32 part_num; |
| |
| /* Catch broken hardware that put the wrong VF device ID in |
| * the PCIe SR-IOV capability. |
| */ |
| if (pdev->is_virtfn) { |
| WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n", |
| pci_name(pdev), pdev->vendor, pdev->device); |
| return -EINVAL; |
| } |
| |
| err = pci_enable_device_mem(pdev); |
| if (err) |
| return err; |
| |
| pci_using_dac = 0; |
| err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)); |
| if (!err) { |
| err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64)); |
| if (!err) |
| pci_using_dac = 1; |
| } else { |
| err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)); |
| if (err) { |
| err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32)); |
| if (err) { |
| dev_err(&pdev->dev, "No usable DMA " |
| "configuration, aborting\n"); |
| goto err_dma; |
| } |
| } |
| } |
| |
| err = pci_request_selected_regions(pdev, pci_select_bars(pdev, |
| IORESOURCE_MEM), |
| igb_driver_name); |
| if (err) |
| goto err_pci_reg; |
| |
| pci_enable_pcie_error_reporting(pdev); |
| |
| pci_set_master(pdev); |
| pci_save_state(pdev); |
| |
| err = -ENOMEM; |
| netdev = alloc_etherdev_mq(sizeof(struct igb_adapter), |
| IGB_ABS_MAX_TX_QUEUES); |
| if (!netdev) |
| goto err_alloc_etherdev; |
| |
| SET_NETDEV_DEV(netdev, &pdev->dev); |
| |
| pci_set_drvdata(pdev, netdev); |
| adapter = netdev_priv(netdev); |
| adapter->netdev = netdev; |
| adapter->pdev = pdev; |
| hw = &adapter->hw; |
| hw->back = adapter; |
| adapter->msg_enable = NETIF_MSG_DRV | NETIF_MSG_PROBE; |
| |
| mmio_start = pci_resource_start(pdev, 0); |
| mmio_len = pci_resource_len(pdev, 0); |
| |
| err = -EIO; |
| hw->hw_addr = ioremap(mmio_start, mmio_len); |
| if (!hw->hw_addr) |
| goto err_ioremap; |
| |
| netdev->netdev_ops = &igb_netdev_ops; |
| igb_set_ethtool_ops(netdev); |
| netdev->watchdog_timeo = 5 * HZ; |
| |
| strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1); |
| |
| netdev->mem_start = mmio_start; |
| netdev->mem_end = mmio_start + mmio_len; |
| |
| /* PCI config space info */ |
| hw->vendor_id = pdev->vendor; |
| hw->device_id = pdev->device; |
| hw->revision_id = pdev->revision; |
| hw->subsystem_vendor_id = pdev->subsystem_vendor; |
| hw->subsystem_device_id = pdev->subsystem_device; |
| |
| /* Copy the default MAC, PHY and NVM function pointers */ |
| memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops)); |
| memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops)); |
| memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops)); |
| /* Initialize skew-specific constants */ |
| err = ei->get_invariants(hw); |
| if (err) |
| goto err_sw_init; |
| |
| /* setup the private structure */ |
| err = igb_sw_init(adapter); |
| if (err) |
| goto err_sw_init; |
| |
| igb_get_bus_info_pcie(hw); |
| |
| hw->phy.autoneg_wait_to_complete = false; |
| |
| /* Copper options */ |
| if (hw->phy.media_type == e1000_media_type_copper) { |
| hw->phy.mdix = AUTO_ALL_MODES; |
| hw->phy.disable_polarity_correction = false; |
| hw->phy.ms_type = e1000_ms_hw_default; |
| } |
| |
| if (igb_check_reset_block(hw)) |
| dev_info(&pdev->dev, |
| "PHY reset is blocked due to SOL/IDER session.\n"); |
| |
| netdev->features = NETIF_F_SG | |
| NETIF_F_IP_CSUM | |
| NETIF_F_HW_VLAN_TX | |
| NETIF_F_HW_VLAN_RX | |
| NETIF_F_HW_VLAN_FILTER; |
| |
| netdev->features |= NETIF_F_IPV6_CSUM; |
| netdev->features |= NETIF_F_TSO; |
| netdev->features |= NETIF_F_TSO6; |
| netdev->features |= NETIF_F_GRO; |
| |
| netdev->vlan_features |= NETIF_F_TSO; |
| netdev->vlan_features |= NETIF_F_TSO6; |
| netdev->vlan_features |= NETIF_F_IP_CSUM; |
| netdev->vlan_features |= NETIF_F_IPV6_CSUM; |
| netdev->vlan_features |= NETIF_F_SG; |
| |
| if (pci_using_dac) |
| netdev->features |= NETIF_F_HIGHDMA; |
| |
| if (hw->mac.type >= e1000_82576) |
| netdev->features |= NETIF_F_SCTP_CSUM; |
| |
| adapter->en_mng_pt = igb_enable_mng_pass_thru(hw); |
| |
| /* before reading the NVM, reset the controller to put the device in a |
| * known good starting state */ |
| hw->mac.ops.reset_hw(hw); |
| |
| /* make sure the NVM is good */ |
| if (igb_validate_nvm_checksum(hw) < 0) { |
| dev_err(&pdev->dev, "The NVM Checksum Is Not Valid\n"); |
| err = -EIO; |
| goto err_eeprom; |
| } |
| |
| /* copy the MAC address out of the NVM */ |
| if (hw->mac.ops.read_mac_addr(hw)) |
| dev_err(&pdev->dev, "NVM Read Error\n"); |
| |
| memcpy(netdev->dev_addr, hw->mac.addr, netdev->addr_len); |
| memcpy(netdev->perm_addr, hw->mac.addr, netdev->addr_len); |
| |
| if (!is_valid_ether_addr(netdev->perm_addr)) { |
| dev_err(&pdev->dev, "Invalid MAC Address\n"); |
| err = -EIO; |
| goto err_eeprom; |
| } |
| |
| setup_timer(&adapter->watchdog_timer, &igb_watchdog, |
| (unsigned long) adapter); |
| setup_timer(&adapter->phy_info_timer, &igb_update_phy_info, |
| (unsigned long) adapter); |
| |
| INIT_WORK(&adapter->reset_task, igb_reset_task); |
| INIT_WORK(&adapter->watchdog_task, igb_watchdog_task); |
| |
| /* Initialize link properties that are user-changeable */ |
| adapter->fc_autoneg = true; |
| hw->mac.autoneg = true; |
| hw->phy.autoneg_advertised = 0x2f; |
| |
| hw->fc.requested_mode = e1000_fc_default; |
| hw->fc.current_mode = e1000_fc_default; |
| |
| igb_validate_mdi_setting(hw); |
| |
| /* Initial Wake on LAN setting If APM wake is enabled in the EEPROM, |
| * enable the ACPI Magic Packet filter |
| */ |
| |
| if (hw->bus.func == 0) |
| hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data); |
| else if (hw->mac.type == e1000_82580) |
| hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A + |
| NVM_82580_LAN_FUNC_OFFSET(hw->bus.func), 1, |
| &eeprom_data); |
| else if (hw->bus.func == 1) |
| hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data); |
| |
| if (eeprom_data & eeprom_apme_mask) |
| adapter->eeprom_wol |= E1000_WUFC_MAG; |
| |
| /* now that we have the eeprom settings, apply the special cases where |
| * the eeprom may be wrong or the board simply won't support wake on |
| * lan on a particular port */ |
| switch (pdev->device) { |
| case E1000_DEV_ID_82575GB_QUAD_COPPER: |
| adapter->eeprom_wol = 0; |
| break; |
| case E1000_DEV_ID_82575EB_FIBER_SERDES: |
| case E1000_DEV_ID_82576_FIBER: |
| case E1000_DEV_ID_82576_SERDES: |
| /* Wake events only supported on port A for dual fiber |
| * regardless of eeprom setting */ |
| if (rd32(E1000_STATUS) & E1000_STATUS_FUNC_1) |
| adapter->eeprom_wol = 0; |
| break; |
| case E1000_DEV_ID_82576_QUAD_COPPER: |
| case E1000_DEV_ID_82576_QUAD_COPPER_ET2: |
| /* if quad port adapter, disable WoL on all but port A */ |
| if (global_quad_port_a != 0) |
| adapter->eeprom_wol = 0; |
| else |
| adapter->flags |= IGB_FLAG_QUAD_PORT_A; |
| /* Reset for multiple quad port adapters */ |
| if (++global_quad_port_a == 4) |
| global_quad_port_a = 0; |
| break; |
| } |
| |
| /* initialize the wol settings based on the eeprom settings */ |
| adapter->wol = adapter->eeprom_wol; |
| device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol); |
| |
| /* reset the hardware with the new settings */ |
| igb_reset(adapter); |
| |
| /* let the f/w know that the h/w is now under the control of the |
| * driver. */ |
| igb_get_hw_control(adapter); |
| |
| strcpy(netdev->name, "eth%d"); |
| err = register_netdev(netdev); |
| if (err) |
| goto err_register; |
| |
| /* carrier off reporting is important to ethtool even BEFORE open */ |
| netif_carrier_off(netdev); |
| |
| #ifdef CONFIG_IGB_DCA |
| if (dca_add_requester(&pdev->dev) == 0) { |
| adapter->flags |= IGB_FLAG_DCA_ENABLED; |
| dev_info(&pdev->dev, "DCA enabled\n"); |
| igb_setup_dca(adapter); |
| } |
| |
| #endif |
| dev_info(&pdev->dev, "Intel(R) Gigabit Ethernet Network Connection\n"); |
| /* print bus type/speed/width info */ |
| dev_info(&pdev->dev, "%s: (PCIe:%s:%s) %pM\n", |
| netdev->name, |
| ((hw->bus.speed == e1000_bus_speed_2500) ? "2.5Gb/s" : |
| (hw->bus.speed == e1000_bus_speed_5000) ? "5.0Gb/s" : |
| "unknown"), |
| ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" : |
| (hw->bus.width == e1000_bus_width_pcie_x2) ? "Width x2" : |
| (hw->bus.width == e1000_bus_width_pcie_x1) ? "Width x1" : |
| "unknown"), |
| netdev->dev_addr); |
| |
| igb_read_part_num(hw, &part_num); |
| dev_info(&pdev->dev, "%s: PBA No: %06x-%03x\n", netdev->name, |
| (part_num >> 8), (part_num & 0xff)); |
| |
| dev_info(&pdev->dev, |
| "Using %s interrupts. %d rx queue(s), %d tx queue(s)\n", |
| adapter->msix_entries ? "MSI-X" : |
| (adapter->flags & IGB_FLAG_HAS_MSI) ? "MSI" : "legacy", |
| adapter->num_rx_queues, adapter->num_tx_queues); |
| |
| return 0; |
| |
| err_register: |
| igb_release_hw_control(adapter); |
| err_eeprom: |
| if (!igb_check_reset_block(hw)) |
| igb_reset_phy(hw); |
| |
| if (hw->flash_address) |
| iounmap(hw->flash_address); |
| err_sw_init: |
| igb_clear_interrupt_scheme(adapter); |
| iounmap(hw->hw_addr); |
| err_ioremap: |
| free_netdev(netdev); |
| err_alloc_etherdev: |
| pci_release_selected_regions(pdev, |
| pci_select_bars(pdev, IORESOURCE_MEM)); |
| err_pci_reg: |
| err_dma: |
| pci_disable_device(pdev); |
| return err; |
| } |
| |
| /** |
| * igb_remove - Device Removal Routine |
| * @pdev: PCI device information struct |
| * |
| * igb_remove is called by the PCI subsystem to alert the driver |
| * that it should release a PCI device. The could be caused by a |
| * Hot-Plug event, or because the driver is going to be removed from |
| * memory. |
| **/ |
| static void __devexit igb_remove(struct pci_dev *pdev) |
| { |
| struct net_device *netdev = pci_get_drvdata(pdev); |
| struct igb_adapter *adapter = netdev_priv(netdev); |
| struct e1000_hw *hw = &adapter->hw; |
| |
| /* flush_scheduled work may reschedule our watchdog task, so |
| * explicitly disable watchdog tasks from being rescheduled */ |
| set_bit(__IGB_DOWN, &adapter->state); |
| del_timer_sync(&adapter->watchdog_timer); |
| del_timer_sync(&adapter->phy_info_timer); |
| |
| flush_scheduled_work(); |
| |
| #ifdef CONFIG_IGB_DCA |
| if (adapter->flags & IGB_FLAG_DCA_ENABLED) { |
| dev_info(&pdev->dev, "DCA disabled\n"); |
| dca_remove_requester(&pdev->dev); |
| adapter->flags &= ~IGB_FLAG_DCA_ENABLED; |
| wr32(E1000_DCA_CTRL, E1000_DCA_CTRL_DCA_MODE_DISABLE); |
| } |
| #endif |
| |
| /* Release control of h/w to f/w. If f/w is AMT enabled, this |
| * would have already happened in close and is redundant. */ |
| igb_release_hw_control(adapter); |
| |
| unregister_netdev(netdev); |
| |
| igb_clear_interrupt_scheme(adapter); |
| |
| #ifdef CONFIG_PCI_IOV |
| /* reclaim resources allocated to VFs */ |
| if (adapter->vf_data) { |
| /* disable iov and allow time for transactions to clear */ |
| pci_disable_sriov(pdev); |
| msleep(500); |
| |
| kfree(adapter->vf_data); |
| adapter->vf_data = NULL; |
| wr32(E1000_IOVCTL, E1000_IOVCTL_REUSE_VFQ); |
| msleep(100); |
| dev_info(&pdev->dev, "IOV Disabled\n"); |
| } |
| #endif |
| |
| iounmap(hw->hw_addr); |
| if (hw->flash_address) |
| iounmap(hw->flash_address); |
| pci_release_selected_regions(pdev, |
| pci_select_bars(pdev, IORESOURCE_MEM)); |
| |
| free_netdev(netdev); |
| |
| pci_disable_pcie_error_reporting(pdev); |
| |
| pci_disable_device(pdev); |
| } |
| |
| /** |
| * igb_probe_vfs - Initialize vf data storage and add VFs to pci config space |
| * @adapter: board private structure to initialize |
| * |
| * This function initializes the vf specific data storage and then attempts to |
| * allocate the VFs. The reason for ordering it this way is because it is much |
| * mor expensive time wise to disable SR-IOV than it is to allocate and free |
| * the memory for the VFs. |
| **/ |
| static void __devinit igb_probe_vfs(struct igb_adapter * adapter) |
| { |
| #ifdef CONFIG_PCI_IOV |
| struct pci_dev *pdev = adapter->pdev; |
| |
| if (adapter->vfs_allocated_count > 7) |
| adapter->vfs_allocated_count = 7; |
| |
| if (adapter->vfs_allocated_count) { |
| adapter->vf_data = kcalloc(adapter->vfs_allocated_count, |
| sizeof(struct vf_data_storage), |
| GFP_KERNEL); |
| /* if allocation failed then we do not support SR-IOV */ |
| if (!adapter->vf_data) { |
| adapter->vfs_allocated_count = 0; |
| dev_err(&pdev->dev, "Unable to allocate memory for VF " |
| "Data Storage\n"); |
| } |
| } |
| |
| if (pci_enable_sriov(pdev, adapter->vfs_allocated_count)) { |
| kfree(adapter->vf_data); |
| adapter->vf_data = NULL; |
| #endif /* CONFIG_PCI_IOV */ |
| adapter->vfs_allocated_count = 0; |
| #ifdef CONFIG_PCI_IOV |
| } else { |
| unsigned char mac_addr[ETH_ALEN]; |
| int i; |
| dev_info(&pdev->dev, "%d vfs allocated\n", |
| adapter->vfs_allocated_count); |
| for (i = 0; i < adapter->vfs_allocated_count; i++) { |
| random_ether_addr(mac_addr); |
| igb_set_vf_mac(adapter, i, mac_addr); |
| } |
| } |
| #endif /* CONFIG_PCI_IOV */ |
| } |
| |
| |
| /** |
| * igb_init_hw_timer - Initialize hardware timer used with IEEE 1588 timestamp |
| * @adapter: board private structure to initialize |
| * |
| * igb_init_hw_timer initializes the function pointer and values for the hw |
| * timer found in hardware. |
| **/ |
| static void igb_init_hw_timer(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| |
| switch (hw->mac.type) { |
| case e1000_i350: |
| case e1000_82580: |
| memset(&adapter->cycles, 0, sizeof(adapter->cycles)); |
| adapter->cycles.read = igb_read_clock; |
| adapter->cycles.mask = CLOCKSOURCE_MASK(64); |
| adapter->cycles.mult = 1; |
| /* |
| * The 82580 timesync updates the system timer every 8ns by 8ns |
| * and the value cannot be shifted. Instead we need to shift |
| * the registers to generate a 64bit timer value. As a result |
| * SYSTIMR/L/H, TXSTMPL/H, RXSTMPL/H all have to be shifted by |
| * 24 in order to generate a larger value for synchronization. |
| */ |
| adapter->cycles.shift = IGB_82580_TSYNC_SHIFT; |
| /* disable system timer temporarily by setting bit 31 */ |
| wr32(E1000_TSAUXC, 0x80000000); |
| wrfl(); |
| |
| /* Set registers so that rollover occurs soon to test this. */ |
| wr32(E1000_SYSTIMR, 0x00000000); |
| wr32(E1000_SYSTIML, 0x80000000); |
| wr32(E1000_SYSTIMH, 0x000000FF); |
| wrfl(); |
| |
| /* enable system timer by clearing bit 31 */ |
| wr32(E1000_TSAUXC, 0x0); |
| wrfl(); |
| |
| timecounter_init(&adapter->clock, |
| &adapter->cycles, |
| ktime_to_ns(ktime_get_real())); |
| /* |
| * Synchronize our NIC clock against system wall clock. NIC |
| * time stamp reading requires ~3us per sample, each sample |
| * was pretty stable even under load => only require 10 |
| * samples for each offset comparison. |
| */ |
| memset(&adapter->compare, 0, sizeof(adapter->compare)); |
| adapter->compare.source = &adapter->clock; |
| adapter->compare.target = ktime_get_real; |
| adapter->compare.num_samples = 10; |
| timecompare_update(&adapter->compare, 0); |
| break; |
| case e1000_82576: |
| /* |
| * Initialize hardware timer: we keep it running just in case |
| * that some program needs it later on. |
| */ |
| memset(&adapter->cycles, 0, sizeof(adapter->cycles)); |
| adapter->cycles.read = igb_read_clock; |
| adapter->cycles.mask = CLOCKSOURCE_MASK(64); |
| adapter->cycles.mult = 1; |
| /** |
| * Scale the NIC clock cycle by a large factor so that |
| * relatively small clock corrections can be added or |
| * substracted at each clock tick. The drawbacks of a large |
| * factor are a) that the clock register overflows more quickly |
| * (not such a big deal) and b) that the increment per tick has |
| * to fit into 24 bits. As a result we need to use a shift of |
| * 19 so we can fit a value of 16 into the TIMINCA register. |
| */ |
| adapter->cycles.shift = IGB_82576_TSYNC_SHIFT; |
| wr32(E1000_TIMINCA, |
| (1 << E1000_TIMINCA_16NS_SHIFT) | |
| (16 << IGB_82576_TSYNC_SHIFT)); |
| |
| /* Set registers so that rollover occurs soon to test this. */ |
| wr32(E1000_SYSTIML, 0x00000000); |
| wr32(E1000_SYSTIMH, 0xFF800000); |
| wrfl(); |
| |
| timecounter_init(&adapter->clock, |
| &adapter->cycles, |
| ktime_to_ns(ktime_get_real())); |
| /* |
| * Synchronize our NIC clock against system wall clock. NIC |
| * time stamp reading requires ~3us per sample, each sample |
| * was pretty stable even under load => only require 10 |
| * samples for each offset comparison. |
| */ |
| memset(&adapter->compare, 0, sizeof(adapter->compare)); |
| adapter->compare.source = &adapter->clock; |
| adapter->compare.target = ktime_get_real; |
| adapter->compare.num_samples = 10; |
| timecompare_update(&adapter->compare, 0); |
| break; |
| case e1000_82575: |
| /* 82575 does not support timesync */ |
| default: |
| break; |
| } |
| |
| } |
| |
| /** |
| * igb_sw_init - Initialize general software structures (struct igb_adapter) |
| * @adapter: board private structure to initialize |
| * |
| * igb_sw_init initializes the Adapter private data structure. |
| * Fields are initialized based on PCI device information and |
| * OS network device settings (MTU size). |
| **/ |
| static int __devinit igb_sw_init(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| struct net_device *netdev = adapter->netdev; |
| struct pci_dev *pdev = adapter->pdev; |
| |
| pci_read_config_word(pdev, PCI_COMMAND, &hw->bus.pci_cmd_word); |
| |
| adapter->tx_ring_count = IGB_DEFAULT_TXD; |
| adapter->rx_ring_count = IGB_DEFAULT_RXD; |
| adapter->rx_itr_setting = IGB_DEFAULT_ITR; |
| adapter->tx_itr_setting = IGB_DEFAULT_ITR; |
| |
| adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN; |
| adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN; |
| |
| #ifdef CONFIG_PCI_IOV |
| if (hw->mac.type == e1000_82576) |
| adapter->vfs_allocated_count = max_vfs; |
| |
| #endif /* CONFIG_PCI_IOV */ |
| adapter->rss_queues = min_t(u32, IGB_MAX_RX_QUEUES, num_online_cpus()); |
| |
| /* |
| * if rss_queues > 4 or vfs are going to be allocated with rss_queues |
| * then we should combine the queues into a queue pair in order to |
| * conserve interrupts due to limited supply |
| */ |
| if ((adapter->rss_queues > 4) || |
| ((adapter->rss_queues > 1) && (adapter->vfs_allocated_count > 6))) |
| adapter->flags |= IGB_FLAG_QUEUE_PAIRS; |
| |
| /* This call may decrease the number of queues */ |
| if (igb_init_interrupt_scheme(adapter)) { |
| dev_err(&pdev->dev, "Unable to allocate memory for queues\n"); |
| return -ENOMEM; |
| } |
| |
| igb_init_hw_timer(adapter); |
| igb_probe_vfs(adapter); |
| |
| /* Explicitly disable IRQ since the NIC can be in any state. */ |
| igb_irq_disable(adapter); |
| |
| set_bit(__IGB_DOWN, &adapter->state); |
| return 0; |
| } |
| |
| /** |
| * igb_open - Called when a network interface is made active |
| * @netdev: network interface device structure |
| * |
| * Returns 0 on success, negative value on failure |
| * |
| * The open entry point is called when a network interface is made |
| * active by the system (IFF_UP). At this point all resources needed |
| * for transmit and receive operations are allocated, the interrupt |
| * handler is registered with the OS, the watchdog timer is started, |
| * and the stack is notified that the interface is ready. |
| **/ |
| static int igb_open(struct net_device *netdev) |
| { |
| struct igb_adapter *adapter = netdev_priv(netdev); |
| struct e1000_hw *hw = &adapter->hw; |
| int err; |
| int i; |
| |
| /* disallow open during test */ |
| if (test_bit(__IGB_TESTING, &adapter->state)) |
| return -EBUSY; |
| |
| netif_carrier_off(netdev); |
| |
| /* allocate transmit descriptors */ |
| err = igb_setup_all_tx_resources(adapter); |
| if (err) |
| goto err_setup_tx; |
| |
| /* allocate receive descriptors */ |
| err = igb_setup_all_rx_resources(adapter); |
| if (err) |
| goto err_setup_rx; |
| |
| igb_power_up_link(adapter); |
| |
| /* before we allocate an interrupt, we must be ready to handle it. |
| * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt |
| * as soon as we call pci_request_irq, so we have to setup our |
| * clean_rx handler before we do so. */ |
| igb_configure(adapter); |
| |
| err = igb_request_irq(adapter); |
| if (err) |
| goto err_req_irq; |
| |
| /* From here on the code is the same as igb_up() */ |
| clear_bit(__IGB_DOWN, &adapter->state); |
| |
| for (i = 0; i < adapter->num_q_vectors; i++) { |
| struct igb_q_vector *q_vector = adapter->q_vector[i]; |
| napi_enable(&q_vector->napi); |
| } |
| |
| /* Clear any pending interrupts. */ |
| rd32(E1000_ICR); |
| |
| igb_irq_enable(adapter); |
| |
| /* notify VFs that reset has been completed */ |
| if (adapter->vfs_allocated_count) { |
| u32 reg_data = rd32(E1000_CTRL_EXT); |
| reg_data |= E1000_CTRL_EXT_PFRSTD; |
| wr32(E1000_CTRL_EXT, reg_data); |
| } |
| |
| netif_tx_start_all_queues(netdev); |
| |
| /* start the watchdog. */ |
| hw->mac.get_link_status = 1; |
| schedule_work(&adapter->watchdog_task); |
| |
| return 0; |
| |
| err_req_irq: |
| igb_release_hw_control(adapter); |
| igb_power_down_link(adapter); |
| igb_free_all_rx_resources(adapter); |
| err_setup_rx: |
| igb_free_all_tx_resources(adapter); |
| err_setup_tx: |
| igb_reset(adapter); |
| |
| return err; |
| } |
| |
| /** |
| * igb_close - Disables a network interface |
| * @netdev: network interface device structure |
| * |
| * Returns 0, this is not allowed to fail |
| * |
| * The close entry point is called when an interface is de-activated |
| * by the OS. The hardware is still under the driver's control, but |
| * needs to be disabled. A global MAC reset is issued to stop the |
| * hardware, and all transmit and receive resources are freed. |
| **/ |
| static int igb_close(struct net_device *netdev) |
| { |
| struct igb_adapter *adapter = netdev_priv(netdev); |
| |
| WARN_ON(test_bit(__IGB_RESETTING, &adapter->state)); |
| igb_down(adapter); |
| |
| igb_free_irq(adapter); |
| |
| igb_free_all_tx_resources(adapter); |
| igb_free_all_rx_resources(adapter); |
| |
| return 0; |
| } |
| |
| /** |
| * igb_setup_tx_resources - allocate Tx resources (Descriptors) |
| * @tx_ring: tx descriptor ring (for a specific queue) to setup |
| * |
| * Return 0 on success, negative on failure |
| **/ |
| int igb_setup_tx_resources(struct igb_ring *tx_ring) |
| { |
| struct device *dev = tx_ring->dev; |
| int size; |
| |
| size = sizeof(struct igb_buffer) * tx_ring->count; |
| tx_ring->buffer_info = vmalloc(size); |
| if (!tx_ring->buffer_info) |
| goto err; |
| memset(tx_ring->buffer_info, 0, size); |
| |
| /* round up to nearest 4K */ |
| tx_ring->size = tx_ring->count * sizeof(union e1000_adv_tx_desc); |
| tx_ring->size = ALIGN(tx_ring->size, 4096); |
| |
| tx_ring->desc = dma_alloc_coherent(dev, |
| tx_ring->size, |
| &tx_ring->dma, |
| GFP_KERNEL); |
| |
| if (!tx_ring->desc) |
| goto err; |
| |
| tx_ring->next_to_use = 0; |
| tx_ring->next_to_clean = 0; |
| return 0; |
| |
| err: |
| vfree(tx_ring->buffer_info); |
| dev_err(dev, |
| "Unable to allocate memory for the transmit descriptor ring\n"); |
| return -ENOMEM; |
| } |
| |
| /** |
| * igb_setup_all_tx_resources - wrapper to allocate Tx resources |
| * (Descriptors) for all queues |
| * @adapter: board private structure |
| * |
| * Return 0 on success, negative on failure |
| **/ |
| static int igb_setup_all_tx_resources(struct igb_adapter *adapter) |
| { |
| struct pci_dev *pdev = adapter->pdev; |
| int i, err = 0; |
| |
| for (i = 0; i < adapter->num_tx_queues; i++) { |
| err = igb_setup_tx_resources(adapter->tx_ring[i]); |
| if (err) { |
| dev_err(&pdev->dev, |
| "Allocation for Tx Queue %u failed\n", i); |
| for (i--; i >= 0; i--) |
| igb_free_tx_resources(adapter->tx_ring[i]); |
| break; |
| } |
| } |
| |
| for (i = 0; i < IGB_ABS_MAX_TX_QUEUES; i++) { |
| int r_idx = i % adapter->num_tx_queues; |
| adapter->multi_tx_table[i] = adapter->tx_ring[r_idx]; |
| } |
| return err; |
| } |
| |
| /** |
| * igb_setup_tctl - configure the transmit control registers |
| * @adapter: Board private structure |
| **/ |
| void igb_setup_tctl(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u32 tctl; |
| |
| /* disable queue 0 which is enabled by default on 82575 and 82576 */ |
| wr32(E1000_TXDCTL(0), 0); |
| |
| /* Program the Transmit Control Register */ |
| tctl = rd32(E1000_TCTL); |
| tctl &= ~E1000_TCTL_CT; |
| tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC | |
| (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT); |
| |
| igb_config_collision_dist(hw); |
| |
| /* Enable transmits */ |
| tctl |= E1000_TCTL_EN; |
| |
| wr32(E1000_TCTL, tctl); |
| } |
| |
| /** |
| * igb_configure_tx_ring - Configure transmit ring after Reset |
| * @adapter: board private structure |
| * @ring: tx ring to configure |
| * |
| * Configure a transmit ring after a reset. |
| **/ |
| void igb_configure_tx_ring(struct igb_adapter *adapter, |
| struct igb_ring *ring) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u32 txdctl; |
| u64 tdba = ring->dma; |
| int reg_idx = ring->reg_idx; |
| |
| /* disable the queue */ |
| txdctl = rd32(E1000_TXDCTL(reg_idx)); |
| wr32(E1000_TXDCTL(reg_idx), |
| txdctl & ~E1000_TXDCTL_QUEUE_ENABLE); |
| wrfl(); |
| mdelay(10); |
| |
| wr32(E1000_TDLEN(reg_idx), |
| ring->count * sizeof(union e1000_adv_tx_desc)); |
| wr32(E1000_TDBAL(reg_idx), |
| tdba & 0x00000000ffffffffULL); |
| wr32(E1000_TDBAH(reg_idx), tdba >> 32); |
| |
| ring->head = hw->hw_addr + E1000_TDH(reg_idx); |
| ring->tail = hw->hw_addr + E1000_TDT(reg_idx); |
| writel(0, ring->head); |
| writel(0, ring->tail); |
| |
| txdctl |= IGB_TX_PTHRESH; |
| txdctl |= IGB_TX_HTHRESH << 8; |
| txdctl |= IGB_TX_WTHRESH << 16; |
| |
| txdctl |= E1000_TXDCTL_QUEUE_ENABLE; |
| wr32(E1000_TXDCTL(reg_idx), txdctl); |
| } |
| |
| /** |
| * igb_configure_tx - Configure transmit Unit after Reset |
| * @adapter: board private structure |
| * |
| * Configure the Tx unit of the MAC after a reset. |
| **/ |
| static void igb_configure_tx(struct igb_adapter *adapter) |
| { |
| int i; |
| |
| for (i = 0; i < adapter->num_tx_queues; i++) |
| igb_configure_tx_ring(adapter, adapter->tx_ring[i]); |
| } |
| |
| /** |
| * igb_setup_rx_resources - allocate Rx resources (Descriptors) |
| * @rx_ring: rx descriptor ring (for a specific queue) to setup |
| * |
| * Returns 0 on success, negative on failure |
| **/ |
| int igb_setup_rx_resources(struct igb_ring *rx_ring) |
| { |
| struct device *dev = rx_ring->dev; |
| int size, desc_len; |
| |
| size = sizeof(struct igb_buffer) * rx_ring->count; |
| rx_ring->buffer_info = vmalloc(size); |
| if (!rx_ring->buffer_info) |
| goto err; |
| memset(rx_ring->buffer_info, 0, size); |
| |
| desc_len = sizeof(union e1000_adv_rx_desc); |
| |
| /* Round up to nearest 4K */ |
| rx_ring->size = rx_ring->count * desc_len; |
| rx_ring->size = ALIGN(rx_ring->size, 4096); |
| |
| rx_ring->desc = dma_alloc_coherent(dev, |
| rx_ring->size, |
| &rx_ring->dma, |
| GFP_KERNEL); |
| |
| if (!rx_ring->desc) |
| goto err; |
| |
| rx_ring->next_to_clean = 0; |
| rx_ring->next_to_use = 0; |
| |
| return 0; |
| |
| err: |
| vfree(rx_ring->buffer_info); |
| rx_ring->buffer_info = NULL; |
| dev_err(dev, "Unable to allocate memory for the receive descriptor" |
| " ring\n"); |
| return -ENOMEM; |
| } |
| |
| /** |
| * igb_setup_all_rx_resources - wrapper to allocate Rx resources |
| * (Descriptors) for all queues |
| * @adapter: board private structure |
| * |
| * Return 0 on success, negative on failure |
| **/ |
| static int igb_setup_all_rx_resources(struct igb_adapter *adapter) |
| { |
| struct pci_dev *pdev = adapter->pdev; |
| int i, err = 0; |
| |
| for (i = 0; i < adapter->num_rx_queues; i++) { |
| err = igb_setup_rx_resources(adapter->rx_ring[i]); |
| if (err) { |
| dev_err(&pdev->dev, |
| "Allocation for Rx Queue %u failed\n", i); |
| for (i--; i >= 0; i--) |
| igb_free_rx_resources(adapter->rx_ring[i]); |
| break; |
| } |
| } |
| |
| return err; |
| } |
| |
| /** |
| * igb_setup_mrqc - configure the multiple receive queue control registers |
| * @adapter: Board private structure |
| **/ |
| static void igb_setup_mrqc(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u32 mrqc, rxcsum; |
| u32 j, num_rx_queues, shift = 0, shift2 = 0; |
| union e1000_reta { |
| u32 dword; |
| u8 bytes[4]; |
| } reta; |
| static const u8 rsshash[40] = { |
| 0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2, 0x41, 0x67, |
| 0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0, 0xd0, 0xca, 0x2b, 0xcb, |
| 0xae, 0x7b, 0x30, 0xb4, 0x77, 0xcb, 0x2d, 0xa3, 0x80, 0x30, |
| 0xf2, 0x0c, 0x6a, 0x42, 0xb7, 0x3b, 0xbe, 0xac, 0x01, 0xfa }; |
| |
| /* Fill out hash function seeds */ |
| for (j = 0; j < 10; j++) { |
| u32 rsskey = rsshash[(j * 4)]; |
| rsskey |= rsshash[(j * 4) + 1] << 8; |
| rsskey |= rsshash[(j * 4) + 2] << 16; |
| rsskey |= rsshash[(j * 4) + 3] << 24; |
| array_wr32(E1000_RSSRK(0), j, rsskey); |
| } |
| |
| num_rx_queues = adapter->rss_queues; |
| |
| if (adapter->vfs_allocated_count) { |
| /* 82575 and 82576 supports 2 RSS queues for VMDq */ |
| switch (hw->mac.type) { |
| case e1000_i350: |
| case e1000_82580: |
| num_rx_queues = 1; |
| shift = 0; |
| break; |
| case e1000_82576: |
| shift = 3; |
| num_rx_queues = 2; |
| break; |
| case e1000_82575: |
| shift = 2; |
| shift2 = 6; |
| default: |
| break; |
| } |
| } else { |
| if (hw->mac.type == e1000_82575) |
| shift = 6; |
| } |
| |
| for (j = 0; j < (32 * 4); j++) { |
| reta.bytes[j & 3] = (j % num_rx_queues) << shift; |
| if (shift2) |
| reta.bytes[j & 3] |= num_rx_queues << shift2; |
| if ((j & 3) == 3) |
| wr32(E1000_RETA(j >> 2), reta.dword); |
| } |
| |
| /* |
| * Disable raw packet checksumming so that RSS hash is placed in |
| * descriptor on writeback. No need to enable TCP/UDP/IP checksum |
| * offloads as they are enabled by default |
| */ |
| rxcsum = rd32(E1000_RXCSUM); |
| rxcsum |= E1000_RXCSUM_PCSD; |
| |
| if (adapter->hw.mac.type >= e1000_82576) |
| /* Enable Receive Checksum Offload for SCTP */ |
| rxcsum |= E1000_RXCSUM_CRCOFL; |
| |
| /* Don't need to set TUOFL or IPOFL, they default to 1 */ |
| wr32(E1000_RXCSUM, rxcsum); |
| |
| /* If VMDq is enabled then we set the appropriate mode for that, else |
| * we default to RSS so that an RSS hash is calculated per packet even |
| * if we are only using one queue */ |
| if (adapter->vfs_allocated_count) { |
| if (hw->mac.type > e1000_82575) { |
| /* Set the default pool for the PF's first queue */ |
| u32 vtctl = rd32(E1000_VT_CTL); |
| vtctl &= ~(E1000_VT_CTL_DEFAULT_POOL_MASK | |
| E1000_VT_CTL_DISABLE_DEF_POOL); |
| vtctl |= adapter->vfs_allocated_count << |
| E1000_VT_CTL_DEFAULT_POOL_SHIFT; |
| wr32(E1000_VT_CTL, vtctl); |
| } |
| if (adapter->rss_queues > 1) |
| mrqc = E1000_MRQC_ENABLE_VMDQ_RSS_2Q; |
| else |
| mrqc = E1000_MRQC_ENABLE_VMDQ; |
| } else { |
| mrqc = E1000_MRQC_ENABLE_RSS_4Q; |
| } |
| igb_vmm_control(adapter); |
| |
| mrqc |= (E1000_MRQC_RSS_FIELD_IPV4 | |
| E1000_MRQC_RSS_FIELD_IPV4_TCP); |
| mrqc |= (E1000_MRQC_RSS_FIELD_IPV6 | |
| E1000_MRQC_RSS_FIELD_IPV6_TCP); |
| mrqc |= (E1000_MRQC_RSS_FIELD_IPV4_UDP | |
| E1000_MRQC_RSS_FIELD_IPV6_UDP); |
| mrqc |= (E1000_MRQC_RSS_FIELD_IPV6_UDP_EX | |
| E1000_MRQC_RSS_FIELD_IPV6_TCP_EX); |
| |
| wr32(E1000_MRQC, mrqc); |
| } |
| |
| /** |
| * igb_setup_rctl - configure the receive control registers |
| * @adapter: Board private structure |
| **/ |
| void igb_setup_rctl(struct igb_adapter *adapter) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u32 rctl; |
| |
| rctl = rd32(E1000_RCTL); |
| |
| rctl &= ~(3 << E1000_RCTL_MO_SHIFT); |
| rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC); |
| |
| rctl |= E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_RDMTS_HALF | |
| (hw->mac.mc_filter_type << E1000_RCTL_MO_SHIFT); |
| |
| /* |
| * enable stripping of CRC. It's unlikely this will break BMC |
| * redirection as it did with e1000. Newer features require |
| * that the HW strips the CRC. |
| */ |
| rctl |= E1000_RCTL_SECRC; |
| |
| /* disable store bad packets and clear size bits. */ |
| rctl &= ~(E1000_RCTL_SBP | E1000_RCTL_SZ_256); |
| |
| /* enable LPE to prevent packets larger than max_frame_size */ |
| rctl |= E1000_RCTL_LPE; |
| |
| /* disable queue 0 to prevent tail write w/o re-config */ |
| wr32(E1000_RXDCTL(0), 0); |
| |
| /* Attention!!! For SR-IOV PF driver operations you must enable |
| * queue drop for all VF and PF queues to prevent head of line blocking |
| * if an un-trusted VF does not provide descriptors to hardware. |
| */ |
| if (adapter->vfs_allocated_count) { |
| /* set all queue drop enable bits */ |
| wr32(E1000_QDE, ALL_QUEUES); |
| } |
| |
| wr32(E1000_RCTL, rctl); |
| } |
| |
| static inline int igb_set_vf_rlpml(struct igb_adapter *adapter, int size, |
| int vfn) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u32 vmolr; |
| |
| /* if it isn't the PF check to see if VFs are enabled and |
| * increase the size to support vlan tags */ |
| if (vfn < adapter->vfs_allocated_count && |
| adapter->vf_data[vfn].vlans_enabled) |
| size += VLAN_TAG_SIZE; |
| |
| vmolr = rd32(E1000_VMOLR(vfn)); |
| vmolr &= ~E1000_VMOLR_RLPML_MASK; |
| vmolr |= size | E1000_VMOLR_LPE; |
| wr32(E1000_VMOLR(vfn), vmolr); |
| |
| return 0; |
| } |
| |
| /** |
| * igb_rlpml_set - set maximum receive packet size |
| * @adapter: board private structure |
| * |
| * Configure maximum receivable packet size. |
| **/ |
| static void igb_rlpml_set(struct igb_adapter *adapter) |
| { |
| u32 max_frame_size = adapter->max_frame_size; |
| struct e1000_hw *hw = &adapter->hw; |
| u16 pf_id = adapter->vfs_allocated_count; |
| |
| if (adapter->vlgrp) |
| max_frame_size += VLAN_TAG_SIZE; |
| |
| /* if vfs are enabled we set RLPML to the largest possible request |
| * size and set the VMOLR RLPML to the size we need */ |
| if (pf_id) { |
| igb_set_vf_rlpml(adapter, max_frame_size, pf_id); |
| max_frame_size = MAX_JUMBO_FRAME_SIZE; |
| } |
| |
| wr32(E1000_RLPML, max_frame_size); |
| } |
| |
| static inline void igb_set_vmolr(struct igb_adapter *adapter, |
| int vfn, bool aupe) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u32 vmolr; |
| |
| /* |
| * This register exists only on 82576 and newer so if we are older then |
| * we should exit and do nothing |
| */ |
| if (hw->mac.type < e1000_82576) |
| return; |
| |
| vmolr = rd32(E1000_VMOLR(vfn)); |
| vmolr |= E1000_VMOLR_STRVLAN; /* Strip vlan tags */ |
| if (aupe) |
| vmolr |= E1000_VMOLR_AUPE; /* Accept untagged packets */ |
| else |
| vmolr &= ~(E1000_VMOLR_AUPE); /* Tagged packets ONLY */ |
| |
| /* clear all bits that might not be set */ |
| vmolr &= ~(E1000_VMOLR_BAM | E1000_VMOLR_RSSE); |
| |
| if (adapter->rss_queues > 1 && vfn == adapter->vfs_allocated_count) |
| vmolr |= E1000_VMOLR_RSSE; /* enable RSS */ |
| /* |
| * for VMDq only allow the VFs and pool 0 to accept broadcast and |
| * multicast packets |
| */ |
| if (vfn <= adapter->vfs_allocated_count) |
| vmolr |= E1000_VMOLR_BAM; /* Accept broadcast */ |
| |
| wr32(E1000_VMOLR(vfn), vmolr); |
| } |
| |
| /** |
| * igb_configure_rx_ring - Configure a receive ring after Reset |
| * @adapter: board private structure |
| * @ring: receive ring to be configured |
| * |
| * Configure the Rx unit of the MAC after a reset. |
| **/ |
| void igb_configure_rx_ring(struct igb_adapter *adapter, |
| struct igb_ring *ring) |
| { |
| struct e1000_hw *hw = &adapter->hw; |
| u64 rdba = ring->dma; |
| int reg_idx = ring->reg_idx; |
| u32 srrctl, rxdctl; |
| |
| /* disable the queue */ |
| rxdctl = rd32(E1000_RXDCTL(reg_idx)); |
| wr32(E1000_RXDCTL(reg_idx), |
| rxdctl & ~E1000_RXDCTL_QUEUE_ENABLE); |
| |
| /* Set DMA base address registers */ |
| wr32(E1000_RDBAL(reg_idx), |
| rdba & 0x00000000ffffffffULL); |
| wr32(E1000_RDBAH(reg_idx), rdba >> 32); |
| wr32(E1000_RDLEN(reg_idx), |
| ring->count * sizeof(union e1000_adv_rx_desc)); |
| |
| /* initialize head and tail */ |
| ring->head = hw->hw_addr + E1000_RDH(reg_idx); |
| ring->tail = hw->hw_addr + E1000_RDT(reg_idx); |
| writel(0, ring->head); |
| writel(0, ring->tail); |
| |
| /* set descriptor configuration */ |
| if (ring->rx_buffer_len < IGB_RXBUFFER_1024) { |
| srrctl = ALIGN(ring->rx_buffer_len, 64) << |
| E1000_SRRCTL_BSIZEHDRSIZE_SHIFT; |
| #if (PAGE_SIZE / 2) > IGB_RXBUFFER_16384 |
| srrctl |= IGB_RXBUFFER_16384 >> |
| E1000_SRRCTL_BSIZEPKT_SHIFT; |
| #else |
| srrctl |= (PAGE_SIZE / 2) >> |
| E1000_SRRCTL_BSIZEPKT_SHIFT; |
| #endif |
| srrctl |= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS; |
| } else { |
| srrctl = ALIGN(ring->rx_buffer_len, 1024) >> |
| E1000_SRRCTL_BSIZEPKT_SHIFT; |
| srrctl |= E1000_SRRCTL_DESCTYPE_ADV_ONEBUF; |
| } |
| if (hw->mac.type == e1000_82580) |
| srrctl |= E1000_SRRCTL_TIMESTAMP; |
| /* Only set Drop Enable if we are supporting multiple queues */ |
| if (adapter->vfs_allocated_count || adapter->num_rx_queues > 1) |
| srrctl |= E1000_SRRCTL_DROP_EN; |
| |
| wr32(E1000_SRRCTL(reg_idx), srrctl); |
| |
| /* set filtering for VMDQ pools */ |
| igb_set_vmolr(adapter, reg_idx & 0x7, true); |
| |
| /* enable receive descriptor fetching */ |
| rxdctl = rd32(E1000_RXDCTL(reg_idx)); |
| rxdctl |= E1000_RXDCTL_QUEUE_ENABLE; |
| rxdctl &= 0xFFF00000; |
| rxdctl |= IGB_RX_PTHRESH; |
| rxdctl |= IGB_RX_HTHRESH << 8; |
| rxdctl |= IGB_RX_WTHRESH << 16; |
| wr32(E1000_RXDCTL(reg_idx), rxdctl); |
| } |
| |
| /** |
| * igb_configure_rx - Configure receive Unit after Reset |
| * @adapter: board private structure |
| * |
| * Configure the Rx unit of the MAC after a reset. |
| **/ |
| static void igb_configure_rx(struct igb_adapter *adapter) |
| { |
| int i; |
| |
| /* set UTA to appropriate mode */ |
| igb_set_uta(adapter); |
| |
| /* set the correct pool for the PF default MAC address in entry 0 */ |
| igb_rar_set_qsel(adapter, adapter->hw.mac.addr, 0, |
| adapter->vfs_allocated_count); |
| |
| /* Setup the HW Rx Head and Tail Descriptor Pointers and |
| * the Base and Length of the Rx Descriptor Ring */ |
| for (i = 0; i < adapter->num_rx_queues; i++) |
| igb_configure_rx_ring(adapter, adapter->rx_ring[i]); |
| } |
| |
| /** |
| * igb_free_tx_resources - Free Tx Resources per Queue |
| * @tx_ring: Tx descriptor ring for a specific queue |
| * |
| * Free all transmit software resources |
| **/ |
| void igb_free_tx_resources(struct igb_ring *tx_ring) |
| { |
| igb_clean_tx_ring(tx_ring); |
| |
| vfree(tx_ring->buffer_info); |
| tx_ring->buffer_info = NULL; |
| |
| /* if not set, then don't free */ |
| if (!tx_ring->desc) |
| return; |
| |
| dma_free_coherent(tx_ring->dev, tx_ring->size, |
| tx_ring->desc, tx_ring->dma); |
| |
| tx_ring->desc = NULL; |
| } |
| |
| /** |
| * igb_free_all_tx_resources - Free Tx Resources for All Queues |
| * @adapter: board private structure |
| * |
| * Free all transmit software resources |
| **/ |
| static void igb_free_all_tx_resources(struct igb_adapter *adapter) |
| { |
| int i; |
| |
| for (i = 0; i < adapter->num_tx_queues; i++) |
| igb_free_tx_resources(adapter->tx_ring[i]); |
| } |
| |
| void igb_unmap_and_free_tx_resource(struct igb_ring *tx_ring, |
| struct igb_buffer *buffer_info) |
| { |
| if (buffer_info->dma) { |
| if (buffer_info->mapped_as_page) |
| dma_unmap_page(tx_ring->dev, |
| buffer_info->dma, |
| buffer_info->length, |
| DMA_TO_DEVICE); |
| else |
| dma_unmap_single(tx_ring->dev, |
| buffer_info->dma, |
| buffer_info->length, |
| DMA_TO_DEVICE); |
| buffer_info->dma = 0; |
| } |
| if (buffer_info->skb) { |
| dev_kfree_skb_any(buffer_info->skb); |
| buffer_info->skb = NULL; |
| } |
| buffer_info->time_stamp = 0; |
| buffer_info->length = 0; |
| buffer_info->next_to_watch = 0; |
| buffer_info->mapped_as_page = false; |
| } |
| |
| /** |
| * igb_clean_tx_ring - Free Tx Buffers |
| * @tx_ring: ring to be cleaned |
| **/ |
| static void igb_clean_tx_ring(struct igb_ring *tx_ring) |
| { |
| struct igb_buffer *buffer_info; |
| unsigned long size; |
| unsigned int i; |
| |
| if (!tx_ring->buffer_info) |
| return; |
| /* Free all the Tx ring sk_buffs */ |
| |
| for (i = 0; i < tx_ring->count; i++) { |
| buffer_info = &tx_ring->buffer_info[i]; |
| igb_unmap_and_free_tx_resource(tx_ring, buffer_info); |
| } |
| |
| size = sizeof(struct igb_buffer) * tx_ring->count; |
| memset(tx_ring->buffer_info, 0, size); |
| |
| /* Zero out the descriptor ring */ |
| memset(tx_ring->desc, 0, tx_ring->size); |
| |
| tx_ring->next_to_use = 0; |
| tx_ring->next_to_clean = 0; |
| } |
| |
| /** |
| * igb_clean_all_tx_rings - Free Tx Buffers for all queues |
| * @adapter: board private structure |
| **/ |
| static void igb_clean_all_tx_rings(struct igb_adapter *adapter) |
| { |
| int i; |
| |
| for (i = 0; i < adapter->num_tx_queues; i++) |
| igb_clean_tx_ring(adapter->tx_ring[i]); |
| } |
| |
| /** |
| * igb_free_rx_resources - Free Rx Resources |
| * @rx_ring: ring to clean the resources from |
| * |
| * Free all receive software resources |
| **/ |
| void igb_free_rx_resources(struct igb_ring *rx_ring) |
| { |
| igb_clean_rx_ring(rx_ring); |
| |
| vfree(rx_ring->buffer_info); |
| rx_ring->buffer_info = NULL; |
| |
| /* if not set, then don't free */ |
| if (!rx_ring->desc) |
| return; |
| |
| dma_free_coherent(rx_ring->dev, rx_ring->size, |
| rx_ring->desc, rx_ring->dma); |
| |
| rx_ring->desc = NULL; |
| } |
| |
| /** |
| * igb_free_all_rx_resources - Free Rx Resources for All Queues |
| * @adapter: board private structure |
| * |
| * Free all receive software resources |
| **/ |
| static void igb_free_all_rx_resources(struct igb_adapter *adapter) |
| { |
| int i; |
| |
| for (i = 0; i < adapter->num_rx_queues; i++) |
| igb_free_rx_resources(adapter->rx_ring[i]); |
| } |
| |
| /** |
| * igb_clean_rx_ring - Free Rx Buffers per Queue |
| * @rx_ring: ring to free buffers from |
| **/ |
| static void igb_clean_rx_ring(struct igb_ring *rx_ring) |
| { |
| struct igb_buffer *buffer_info
|