diff options
author | David S. Miller <davem@davemloft.net> | 2009-04-16 20:35:26 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-04-16 20:35:26 -0400 |
commit | a54bfa40fd16aeb90bc556189221576f746f8567 (patch) | |
tree | 176bb7a99ffab5f42f0dd4e9671f335be3f3efa0 /drivers/net | |
parent | fe957c40ec5e2763b9977c565beab3bde3aaf85b (diff) | |
parent | 134ffb4cad92a6aa534e55a9be145bca780a32c1 (diff) |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Diffstat (limited to 'drivers/net')
75 files changed, 5931 insertions, 501 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 9e7baec45720..9e921544ba20 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -977,6 +977,8 @@ config ETHOC | |||
977 | depends on NET_ETHERNET && HAS_IOMEM | 977 | depends on NET_ETHERNET && HAS_IOMEM |
978 | select MII | 978 | select MII |
979 | select PHYLIB | 979 | select PHYLIB |
980 | select CRC32 | ||
981 | select BITREVERSE | ||
980 | help | 982 | help |
981 | Say Y here if you want to use the OpenCores 10/100 Mbps Ethernet MAC. | 983 | Say Y here if you want to use the OpenCores 10/100 Mbps Ethernet MAC. |
982 | 984 | ||
@@ -2056,6 +2058,27 @@ config IGB_DCA | |||
2056 | driver. DCA is a method for warming the CPU cache before data | 2058 | driver. DCA is a method for warming the CPU cache before data |
2057 | is used, with the intent of lessening the impact of cache misses. | 2059 | is used, with the intent of lessening the impact of cache misses. |
2058 | 2060 | ||
2061 | config IGBVF | ||
2062 | tristate "Intel(R) 82576 Virtual Function Ethernet support" | ||
2063 | depends on PCI | ||
2064 | ---help--- | ||
2065 | This driver supports Intel(R) 82576 virtual functions. For more | ||
2066 | information on how to identify your adapter, go to the Adapter & | ||
2067 | Driver ID Guide at: | ||
2068 | |||
2069 | <http://support.intel.com/support/network/adapter/pro100/21397.htm> | ||
2070 | |||
2071 | For general information and support, go to the Intel support | ||
2072 | website at: | ||
2073 | |||
2074 | <http://support.intel.com> | ||
2075 | |||
2076 | More specific information on configuring the driver is in | ||
2077 | <file:Documentation/networking/e1000.txt>. | ||
2078 | |||
2079 | To compile this driver as a module, choose M here. The module | ||
2080 | will be called igbvf. | ||
2081 | |||
2059 | source "drivers/net/ixp2000/Kconfig" | 2082 | source "drivers/net/ixp2000/Kconfig" |
2060 | 2083 | ||
2061 | config MYRI_SBUS | 2084 | config MYRI_SBUS |
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index edc9a0d6171d..1fc4602a6ff2 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile | |||
@@ -6,6 +6,7 @@ obj-$(CONFIG_E1000) += e1000/ | |||
6 | obj-$(CONFIG_E1000E) += e1000e/ | 6 | obj-$(CONFIG_E1000E) += e1000e/ |
7 | obj-$(CONFIG_IBM_NEW_EMAC) += ibm_newemac/ | 7 | obj-$(CONFIG_IBM_NEW_EMAC) += ibm_newemac/ |
8 | obj-$(CONFIG_IGB) += igb/ | 8 | obj-$(CONFIG_IGB) += igb/ |
9 | obj-$(CONFIG_IGBVF) += igbvf/ | ||
9 | obj-$(CONFIG_IXGBE) += ixgbe/ | 10 | obj-$(CONFIG_IXGBE) += ixgbe/ |
10 | obj-$(CONFIG_IXGB) += ixgb/ | 11 | obj-$(CONFIG_IXGB) += ixgb/ |
11 | obj-$(CONFIG_IP1000) += ipg.o | 12 | obj-$(CONFIG_IP1000) += ipg.o |
diff --git a/drivers/net/a2065.c b/drivers/net/a2065.c index d0d0c2fee054..02f64d578641 100644 --- a/drivers/net/a2065.c +++ b/drivers/net/a2065.c | |||
@@ -692,6 +692,17 @@ static struct zorro_driver a2065_driver = { | |||
692 | .remove = __devexit_p(a2065_remove_one), | 692 | .remove = __devexit_p(a2065_remove_one), |
693 | }; | 693 | }; |
694 | 694 | ||
695 | static const struct net_device_ops lance_netdev_ops = { | ||
696 | .ndo_open = lance_open, | ||
697 | .ndo_stop = lance_close, | ||
698 | .ndo_start_xmit = lance_start_xmit, | ||
699 | .ndo_tx_timeout = lance_tx_timeout, | ||
700 | .ndo_set_multicast_list = lance_set_multicast, | ||
701 | .ndo_validate_addr = eth_validate_addr, | ||
702 | .ndo_change_mtu = eth_change_mtu, | ||
703 | .ndo_set_mac_address = eth_mac_addr, | ||
704 | }; | ||
705 | |||
695 | static int __devinit a2065_init_one(struct zorro_dev *z, | 706 | static int __devinit a2065_init_one(struct zorro_dev *z, |
696 | const struct zorro_device_id *ent) | 707 | const struct zorro_device_id *ent) |
697 | { | 708 | { |
@@ -753,12 +764,8 @@ static int __devinit a2065_init_one(struct zorro_dev *z, | |||
753 | priv->rx_ring_mod_mask = RX_RING_MOD_MASK; | 764 | priv->rx_ring_mod_mask = RX_RING_MOD_MASK; |
754 | priv->tx_ring_mod_mask = TX_RING_MOD_MASK; | 765 | priv->tx_ring_mod_mask = TX_RING_MOD_MASK; |
755 | 766 | ||
756 | dev->open = &lance_open; | 767 | dev->netdev_ops = &lance_netdev_ops; |
757 | dev->stop = &lance_close; | ||
758 | dev->hard_start_xmit = &lance_start_xmit; | ||
759 | dev->tx_timeout = &lance_tx_timeout; | ||
760 | dev->watchdog_timeo = 5*HZ; | 768 | dev->watchdog_timeo = 5*HZ; |
761 | dev->set_multicast_list = &lance_set_multicast; | ||
762 | dev->dma = 0; | 769 | dev->dma = 0; |
763 | 770 | ||
764 | init_timer(&priv->multicast_timer); | 771 | init_timer(&priv->multicast_timer); |
diff --git a/drivers/net/ariadne.c b/drivers/net/ariadne.c index e1d72e06f3e1..58e8d522e5bc 100644 --- a/drivers/net/ariadne.c +++ b/drivers/net/ariadne.c | |||
@@ -155,6 +155,18 @@ static struct zorro_driver ariadne_driver = { | |||
155 | .remove = __devexit_p(ariadne_remove_one), | 155 | .remove = __devexit_p(ariadne_remove_one), |
156 | }; | 156 | }; |
157 | 157 | ||
158 | static const struct net_device_ops ariadne_netdev_ops = { | ||
159 | .ndo_open = ariadne_open, | ||
160 | .ndo_stop = ariadne_close, | ||
161 | .ndo_start_xmit = ariadne_start_xmit, | ||
162 | .ndo_tx_timeout = ariadne_tx_timeout, | ||
163 | .ndo_get_stats = ariadne_get_stats, | ||
164 | .ndo_set_multicast_list = set_multicast_list, | ||
165 | .ndo_validate_addr = eth_validate_addr, | ||
166 | .ndo_change_mtu = eth_change_mtu, | ||
167 | .ndo_set_mac_address = eth_mac_addr, | ||
168 | }; | ||
169 | |||
158 | static int __devinit ariadne_init_one(struct zorro_dev *z, | 170 | static int __devinit ariadne_init_one(struct zorro_dev *z, |
159 | const struct zorro_device_id *ent) | 171 | const struct zorro_device_id *ent) |
160 | { | 172 | { |
@@ -197,13 +209,8 @@ static int __devinit ariadne_init_one(struct zorro_dev *z, | |||
197 | dev->mem_start = ZTWO_VADDR(mem_start); | 209 | dev->mem_start = ZTWO_VADDR(mem_start); |
198 | dev->mem_end = dev->mem_start+ARIADNE_RAM_SIZE; | 210 | dev->mem_end = dev->mem_start+ARIADNE_RAM_SIZE; |
199 | 211 | ||
200 | dev->open = &ariadne_open; | 212 | dev->netdev_ops = &ariadne_netdev_ops; |
201 | dev->stop = &ariadne_close; | ||
202 | dev->hard_start_xmit = &ariadne_start_xmit; | ||
203 | dev->tx_timeout = &ariadne_tx_timeout; | ||
204 | dev->watchdog_timeo = 5*HZ; | 213 | dev->watchdog_timeo = 5*HZ; |
205 | dev->get_stats = &ariadne_get_stats; | ||
206 | dev->set_multicast_list = &set_multicast_list; | ||
207 | 214 | ||
208 | err = register_netdev(dev); | 215 | err = register_netdev(dev); |
209 | if (err) { | 216 | if (err) { |
diff --git a/drivers/net/arm/am79c961a.c b/drivers/net/arm/am79c961a.c index 4bc6901b3819..627bc75da17d 100644 --- a/drivers/net/arm/am79c961a.c +++ b/drivers/net/arm/am79c961a.c | |||
@@ -665,6 +665,20 @@ static void __init am79c961_banner(void) | |||
665 | if (net_debug && version_printed++ == 0) | 665 | if (net_debug && version_printed++ == 0) |
666 | printk(KERN_INFO "%s", version); | 666 | printk(KERN_INFO "%s", version); |
667 | } | 667 | } |
668 | static const struct net_device_ops am79c961_netdev_ops = { | ||
669 | .ndo_open = am79c961_open, | ||
670 | .ndo_stop = am79c961_close, | ||
671 | .ndo_start_xmit = am79c961_sendpacket, | ||
672 | .ndo_get_stats = am79c961_getstats, | ||
673 | .ndo_set_multicast_list = am79c961_setmulticastlist, | ||
674 | .ndo_tx_timeout = am79c961_timeout, | ||
675 | .ndo_validate_addr = eth_validate_addr, | ||
676 | .ndo_change_mtu = eth_change_mtu, | ||
677 | .ndo_set_mac_address = eth_mac_addr, | ||
678 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
679 | .ndo_poll_controller = am79c961_poll_controller, | ||
680 | #endif | ||
681 | }; | ||
668 | 682 | ||
669 | static int __init am79c961_probe(struct platform_device *pdev) | 683 | static int __init am79c961_probe(struct platform_device *pdev) |
670 | { | 684 | { |
@@ -732,15 +746,7 @@ static int __init am79c961_probe(struct platform_device *pdev) | |||
732 | if (am79c961_hw_init(dev)) | 746 | if (am79c961_hw_init(dev)) |
733 | goto release; | 747 | goto release; |
734 | 748 | ||
735 | dev->open = am79c961_open; | 749 | dev->netdev_ops = &am79c961_netdev_ops; |
736 | dev->stop = am79c961_close; | ||
737 | dev->hard_start_xmit = am79c961_sendpacket; | ||
738 | dev->get_stats = am79c961_getstats; | ||
739 | dev->set_multicast_list = am79c961_setmulticastlist; | ||
740 | dev->tx_timeout = am79c961_timeout; | ||
741 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
742 | dev->poll_controller = am79c961_poll_controller; | ||
743 | #endif | ||
744 | 750 | ||
745 | ret = register_netdev(dev); | 751 | ret = register_netdev(dev); |
746 | if (ret == 0) { | 752 | if (ret == 0) { |
diff --git a/drivers/net/arm/at91_ether.c b/drivers/net/arm/at91_ether.c index 442938d50380..7f4bc8ae5462 100644 --- a/drivers/net/arm/at91_ether.c +++ b/drivers/net/arm/at91_ether.c | |||
@@ -577,7 +577,7 @@ static void at91ether_sethashtable(struct net_device *dev) | |||
577 | /* | 577 | /* |
578 | * Enable/Disable promiscuous and multicast modes. | 578 | * Enable/Disable promiscuous and multicast modes. |
579 | */ | 579 | */ |
580 | static void at91ether_set_rx_mode(struct net_device *dev) | 580 | static void at91ether_set_multicast_list(struct net_device *dev) |
581 | { | 581 | { |
582 | unsigned long cfg; | 582 | unsigned long cfg; |
583 | 583 | ||
@@ -808,7 +808,7 @@ static int at91ether_close(struct net_device *dev) | |||
808 | /* | 808 | /* |
809 | * Transmit packet. | 809 | * Transmit packet. |
810 | */ | 810 | */ |
811 | static int at91ether_tx(struct sk_buff *skb, struct net_device *dev) | 811 | static int at91ether_start_xmit(struct sk_buff *skb, struct net_device *dev) |
812 | { | 812 | { |
813 | struct at91_private *lp = netdev_priv(dev); | 813 | struct at91_private *lp = netdev_priv(dev); |
814 | 814 | ||
@@ -828,7 +828,7 @@ static int at91ether_tx(struct sk_buff *skb, struct net_device *dev) | |||
828 | 828 | ||
829 | dev->trans_start = jiffies; | 829 | dev->trans_start = jiffies; |
830 | } else { | 830 | } else { |
831 | printk(KERN_ERR "at91_ether.c: at91ether_tx() called, but device is busy!\n"); | 831 | printk(KERN_ERR "at91_ether.c: at91ether_start_xmit() called, but device is busy!\n"); |
832 | return 1; /* if we return anything but zero, dev.c:1055 calls kfree_skb(skb) | 832 | return 1; /* if we return anything but zero, dev.c:1055 calls kfree_skb(skb) |
833 | on this skb, he also reports -ENETDOWN and printk's, so either | 833 | on this skb, he also reports -ENETDOWN and printk's, so either |
834 | we free and return(0) or don't free and return 1 */ | 834 | we free and return(0) or don't free and return 1 */ |
@@ -965,6 +965,21 @@ static void at91ether_poll_controller(struct net_device *dev) | |||
965 | } | 965 | } |
966 | #endif | 966 | #endif |
967 | 967 | ||
968 | static const struct net_device_ops at91ether_netdev_ops = { | ||
969 | .ndo_open = at91ether_open, | ||
970 | .ndo_stop = at91ether_close, | ||
971 | .ndo_start_xmit = at91ether_start_xmit, | ||
972 | .ndo_get_stats = at91ether_stats, | ||
973 | .ndo_set_multicast_list = at91ether_set_multicast_list, | ||
974 | .ndo_set_mac_address = set_mac_address, | ||
975 | .ndo_do_ioctl = at91ether_ioctl, | ||
976 | .ndo_validate_addr = eth_validate_addr, | ||
977 | .ndo_change_mtu = eth_change_mtu, | ||
978 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
979 | .ndo_poll_controller = at91ether_poll_controller, | ||
980 | #endif | ||
981 | }; | ||
982 | |||
968 | /* | 983 | /* |
969 | * Initialize the ethernet interface | 984 | * Initialize the ethernet interface |
970 | */ | 985 | */ |
@@ -1005,17 +1020,8 @@ static int __init at91ether_setup(unsigned long phy_type, unsigned short phy_add | |||
1005 | spin_lock_init(&lp->lock); | 1020 | spin_lock_init(&lp->lock); |
1006 | 1021 | ||
1007 | ether_setup(dev); | 1022 | ether_setup(dev); |
1008 | dev->open = at91ether_open; | 1023 | dev->netdev_ops = &at91ether_netdev_ops; |
1009 | dev->stop = at91ether_close; | ||
1010 | dev->hard_start_xmit = at91ether_tx; | ||
1011 | dev->get_stats = at91ether_stats; | ||
1012 | dev->set_multicast_list = at91ether_set_rx_mode; | ||
1013 | dev->set_mac_address = set_mac_address; | ||
1014 | dev->ethtool_ops = &at91ether_ethtool_ops; | 1024 | dev->ethtool_ops = &at91ether_ethtool_ops; |
1015 | dev->do_ioctl = at91ether_ioctl; | ||
1016 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
1017 | dev->poll_controller = at91ether_poll_controller; | ||
1018 | #endif | ||
1019 | 1025 | ||
1020 | SET_NETDEV_DEV(dev, &pdev->dev); | 1026 | SET_NETDEV_DEV(dev, &pdev->dev); |
1021 | 1027 | ||
diff --git a/drivers/net/arm/ep93xx_eth.c b/drivers/net/arm/ep93xx_eth.c index cc7708775da0..41736772c1dd 100644 --- a/drivers/net/arm/ep93xx_eth.c +++ b/drivers/net/arm/ep93xx_eth.c | |||
@@ -770,7 +770,18 @@ static struct ethtool_ops ep93xx_ethtool_ops = { | |||
770 | .get_link = ep93xx_get_link, | 770 | .get_link = ep93xx_get_link, |
771 | }; | 771 | }; |
772 | 772 | ||
773 | struct net_device *ep93xx_dev_alloc(struct ep93xx_eth_data *data) | 773 | static const struct net_device_ops ep93xx_netdev_ops = { |
774 | .ndo_open = ep93xx_open, | ||
775 | .ndo_stop = ep93xx_close, | ||
776 | .ndo_start_xmit = ep93xx_xmit, | ||
777 | .ndo_get_stats = ep93xx_get_stats, | ||
778 | .ndo_do_ioctl = ep93xx_ioctl, | ||
779 | .ndo_validate_addr = eth_validate_addr, | ||
780 | .ndo_change_mtu = eth_change_mtu, | ||
781 | .ndo_set_mac_address = eth_mac_addr, | ||
782 | }; | ||
783 | |||
784 | static struct net_device *ep93xx_dev_alloc(struct ep93xx_eth_data *data) | ||
774 | { | 785 | { |
775 | struct net_device *dev; | 786 | struct net_device *dev; |
776 | 787 | ||
@@ -780,12 +791,8 @@ struct net_device *ep93xx_dev_alloc(struct ep93xx_eth_data *data) | |||
780 | 791 | ||
781 | memcpy(dev->dev_addr, data->dev_addr, ETH_ALEN); | 792 | memcpy(dev->dev_addr, data->dev_addr, ETH_ALEN); |
782 | 793 | ||
783 | dev->get_stats = ep93xx_get_stats; | ||
784 | dev->ethtool_ops = &ep93xx_ethtool_ops; | 794 | dev->ethtool_ops = &ep93xx_ethtool_ops; |
785 | dev->hard_start_xmit = ep93xx_xmit; | 795 | dev->netdev_ops = &ep93xx_netdev_ops; |
786 | dev->open = ep93xx_open; | ||
787 | dev->stop = ep93xx_close; | ||
788 | dev->do_ioctl = ep93xx_ioctl; | ||
789 | 796 | ||
790 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; | 797 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; |
791 | 798 | ||
diff --git a/drivers/net/arm/ether1.c b/drivers/net/arm/ether1.c index e380de454463..edf770f639fa 100644 --- a/drivers/net/arm/ether1.c +++ b/drivers/net/arm/ether1.c | |||
@@ -991,6 +991,18 @@ static void __devinit ether1_banner(void) | |||
991 | printk(KERN_INFO "%s", version); | 991 | printk(KERN_INFO "%s", version); |
992 | } | 992 | } |
993 | 993 | ||
994 | static const struct net_device_ops ether1_netdev_ops = { | ||
995 | .ndo_open = ether1_open, | ||
996 | .ndo_stop = ether1_close, | ||
997 | .ndo_start_xmit = ether1_sendpacket, | ||
998 | .ndo_get_stats = ether1_getstats, | ||
999 | .ndo_set_multicast_list = ether1_setmulticastlist, | ||
1000 | .ndo_tx_timeout = ether1_timeout, | ||
1001 | .ndo_validate_addr = eth_validate_addr, | ||
1002 | .ndo_change_mtu = eth_change_mtu, | ||
1003 | .ndo_set_mac_address = eth_mac_addr, | ||
1004 | }; | ||
1005 | |||
994 | static int __devinit | 1006 | static int __devinit |
995 | ether1_probe(struct expansion_card *ec, const struct ecard_id *id) | 1007 | ether1_probe(struct expansion_card *ec, const struct ecard_id *id) |
996 | { | 1008 | { |
@@ -1031,12 +1043,7 @@ ether1_probe(struct expansion_card *ec, const struct ecard_id *id) | |||
1031 | goto free; | 1043 | goto free; |
1032 | } | 1044 | } |
1033 | 1045 | ||
1034 | dev->open = ether1_open; | 1046 | dev->netdev_ops = ðer1_netdev_ops; |
1035 | dev->stop = ether1_close; | ||
1036 | dev->hard_start_xmit = ether1_sendpacket; | ||
1037 | dev->get_stats = ether1_getstats; | ||
1038 | dev->set_multicast_list = ether1_setmulticastlist; | ||
1039 | dev->tx_timeout = ether1_timeout; | ||
1040 | dev->watchdog_timeo = 5 * HZ / 100; | 1047 | dev->watchdog_timeo = 5 * HZ / 100; |
1041 | 1048 | ||
1042 | ret = register_netdev(dev); | 1049 | ret = register_netdev(dev); |
diff --git a/drivers/net/arm/ether3.c b/drivers/net/arm/ether3.c index 21a7bef12d3b..ec8a1ae1e887 100644 --- a/drivers/net/arm/ether3.c +++ b/drivers/net/arm/ether3.c | |||
@@ -770,6 +770,18 @@ static void __devinit ether3_banner(void) | |||
770 | printk(KERN_INFO "%s", version); | 770 | printk(KERN_INFO "%s", version); |
771 | } | 771 | } |
772 | 772 | ||
773 | static const struct net_device_ops ether3_netdev_ops = { | ||
774 | .ndo_open = ether3_open, | ||
775 | .ndo_stop = ether3_close, | ||
776 | .ndo_start_xmit = ether3_sendpacket, | ||
777 | .ndo_get_stats = ether3_getstats, | ||
778 | .ndo_set_multicast_list = ether3_setmulticastlist, | ||
779 | .ndo_tx_timeout = ether3_timeout, | ||
780 | .ndo_validate_addr = eth_validate_addr, | ||
781 | .ndo_change_mtu = eth_change_mtu, | ||
782 | .ndo_set_mac_address = eth_mac_addr, | ||
783 | }; | ||
784 | |||
773 | static int __devinit | 785 | static int __devinit |
774 | ether3_probe(struct expansion_card *ec, const struct ecard_id *id) | 786 | ether3_probe(struct expansion_card *ec, const struct ecard_id *id) |
775 | { | 787 | { |
@@ -846,12 +858,7 @@ ether3_probe(struct expansion_card *ec, const struct ecard_id *id) | |||
846 | goto free; | 858 | goto free; |
847 | } | 859 | } |
848 | 860 | ||
849 | dev->open = ether3_open; | 861 | dev->netdev_ops = ðer3_netdev_ops; |
850 | dev->stop = ether3_close; | ||
851 | dev->hard_start_xmit = ether3_sendpacket; | ||
852 | dev->get_stats = ether3_getstats; | ||
853 | dev->set_multicast_list = ether3_setmulticastlist; | ||
854 | dev->tx_timeout = ether3_timeout; | ||
855 | dev->watchdog_timeo = 5 * HZ / 100; | 862 | dev->watchdog_timeo = 5 * HZ / 100; |
856 | 863 | ||
857 | ret = register_netdev(dev); | 864 | ret = register_netdev(dev); |
diff --git a/drivers/net/atarilance.c b/drivers/net/atarilance.c index 2d81f6afcb58..5425ab0c38c0 100644 --- a/drivers/net/atarilance.c +++ b/drivers/net/atarilance.c | |||
@@ -453,6 +453,16 @@ static noinline int __init addr_accessible(volatile void *regp, int wordflag, | |||
453 | return( ret ); | 453 | return( ret ); |
454 | } | 454 | } |
455 | 455 | ||
456 | static const struct net_device_ops lance_netdev_ops = { | ||
457 | .ndo_open = lance_open, | ||
458 | .ndo_stop = lance_close, | ||
459 | .ndo_start_xmit = lance_start_xmit, | ||
460 | .ndo_set_multicast_list = set_multicast_list, | ||
461 | .ndo_set_mac_address = lance_set_mac_address, | ||
462 | .ndo_tx_timeout = lance_tx_timeout, | ||
463 | .ndo_validate_addr = eth_validate_addr, | ||
464 | .ndo_change_mtu = eth_change_mtu, | ||
465 | }; | ||
456 | 466 | ||
457 | static unsigned long __init lance_probe1( struct net_device *dev, | 467 | static unsigned long __init lance_probe1( struct net_device *dev, |
458 | struct lance_addr *init_rec ) | 468 | struct lance_addr *init_rec ) |
@@ -623,15 +633,9 @@ static unsigned long __init lance_probe1( struct net_device *dev, | |||
623 | if (did_version++ == 0) | 633 | if (did_version++ == 0) |
624 | DPRINTK( 1, ( version )); | 634 | DPRINTK( 1, ( version )); |
625 | 635 | ||
626 | /* The LANCE-specific entries in the device structure. */ | 636 | dev->netdev_ops = &lance_netdev_ops; |
627 | dev->open = &lance_open; | ||
628 | dev->hard_start_xmit = &lance_start_xmit; | ||
629 | dev->stop = &lance_close; | ||
630 | dev->set_multicast_list = &set_multicast_list; | ||
631 | dev->set_mac_address = &lance_set_mac_address; | ||
632 | 637 | ||
633 | /* XXX MSch */ | 638 | /* XXX MSch */ |
634 | dev->tx_timeout = lance_tx_timeout; | ||
635 | dev->watchdog_timeo = TX_TIMEOUT; | 639 | dev->watchdog_timeo = TX_TIMEOUT; |
636 | 640 | ||
637 | return( 1 ); | 641 | return( 1 ); |
diff --git a/drivers/net/au1000_eth.c b/drivers/net/au1000_eth.c index 4274e4ac963b..d58c105fc779 100644 --- a/drivers/net/au1000_eth.c +++ b/drivers/net/au1000_eth.c | |||
@@ -1004,12 +1004,12 @@ static void au1000_tx_timeout(struct net_device *dev) | |||
1004 | netif_wake_queue(dev); | 1004 | netif_wake_queue(dev); |
1005 | } | 1005 | } |
1006 | 1006 | ||
1007 | static void set_rx_mode(struct net_device *dev) | 1007 | static void au1000_multicast_list(struct net_device *dev) |
1008 | { | 1008 | { |
1009 | struct au1000_private *aup = netdev_priv(dev); | 1009 | struct au1000_private *aup = netdev_priv(dev); |
1010 | 1010 | ||
1011 | if (au1000_debug > 4) | 1011 | if (au1000_debug > 4) |
1012 | printk("%s: set_rx_mode: flags=%x\n", dev->name, dev->flags); | 1012 | printk("%s: au1000_multicast_list: flags=%x\n", dev->name, dev->flags); |
1013 | 1013 | ||
1014 | if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */ | 1014 | if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */ |
1015 | aup->mac->control |= MAC_PROMISCUOUS; | 1015 | aup->mac->control |= MAC_PROMISCUOUS; |
@@ -1047,6 +1047,18 @@ static int au1000_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) | |||
1047 | return phy_mii_ioctl(aup->phy_dev, if_mii(rq), cmd); | 1047 | return phy_mii_ioctl(aup->phy_dev, if_mii(rq), cmd); |
1048 | } | 1048 | } |
1049 | 1049 | ||
1050 | static const struct net_device_ops au1000_netdev_ops = { | ||
1051 | .ndo_open = au1000_open, | ||
1052 | .ndo_stop = au1000_close, | ||
1053 | .ndo_start_xmit = au1000_tx, | ||
1054 | .ndo_set_multicast_list = au1000_multicast_list, | ||
1055 | .ndo_do_ioctl = au1000_ioctl, | ||
1056 | .ndo_tx_timeout = au1000_tx_timeout, | ||
1057 | .ndo_set_mac_address = eth_mac_addr, | ||
1058 | .ndo_validate_addr = eth_validate_addr, | ||
1059 | .ndo_change_mtu = eth_change_mtu, | ||
1060 | }; | ||
1061 | |||
1050 | static struct net_device * au1000_probe(int port_num) | 1062 | static struct net_device * au1000_probe(int port_num) |
1051 | { | 1063 | { |
1052 | static unsigned version_printed = 0; | 1064 | static unsigned version_printed = 0; |
@@ -1197,13 +1209,8 @@ static struct net_device * au1000_probe(int port_num) | |||
1197 | 1209 | ||
1198 | dev->base_addr = base; | 1210 | dev->base_addr = base; |
1199 | dev->irq = irq; | 1211 | dev->irq = irq; |
1200 | dev->open = au1000_open; | 1212 | dev->netdev_ops = &au1000_netdev_ops; |
1201 | dev->hard_start_xmit = au1000_tx; | ||
1202 | dev->stop = au1000_close; | ||
1203 | dev->set_multicast_list = &set_rx_mode; | ||
1204 | dev->do_ioctl = &au1000_ioctl; | ||
1205 | SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops); | 1213 | SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops); |
1206 | dev->tx_timeout = au1000_tx_timeout; | ||
1207 | dev->watchdog_timeo = ETH_TX_TIMEOUT; | 1214 | dev->watchdog_timeo = ETH_TX_TIMEOUT; |
1208 | 1215 | ||
1209 | /* | 1216 | /* |
diff --git a/drivers/net/benet/be_ethtool.c b/drivers/net/benet/be_ethtool.c index 04f4b73fa8d8..9592f22e4c8c 100644 --- a/drivers/net/benet/be_ethtool.c +++ b/drivers/net/benet/be_ethtool.c | |||
@@ -319,7 +319,7 @@ be_get_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *ecmd) | |||
319 | 319 | ||
320 | be_cmd_get_flow_control(&adapter->ctrl, &ecmd->tx_pause, | 320 | be_cmd_get_flow_control(&adapter->ctrl, &ecmd->tx_pause, |
321 | &ecmd->rx_pause); | 321 | &ecmd->rx_pause); |
322 | ecmd->autoneg = AUTONEG_ENABLE; | 322 | ecmd->autoneg = 0; |
323 | } | 323 | } |
324 | 324 | ||
325 | static int | 325 | static int |
@@ -328,7 +328,7 @@ be_set_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *ecmd) | |||
328 | struct be_adapter *adapter = netdev_priv(netdev); | 328 | struct be_adapter *adapter = netdev_priv(netdev); |
329 | int status; | 329 | int status; |
330 | 330 | ||
331 | if (ecmd->autoneg != AUTONEG_ENABLE) | 331 | if (ecmd->autoneg != 0) |
332 | return -EINVAL; | 332 | return -EINVAL; |
333 | 333 | ||
334 | status = be_cmd_set_flow_control(&adapter->ctrl, ecmd->tx_pause, | 334 | status = be_cmd_set_flow_control(&adapter->ctrl, ecmd->tx_pause, |
diff --git a/drivers/net/bfin_mac.c b/drivers/net/bfin_mac.c index 9afe8092dfc4..9f971ed6b58d 100644 --- a/drivers/net/bfin_mac.c +++ b/drivers/net/bfin_mac.c | |||
@@ -979,6 +979,20 @@ static int bfin_mac_open(struct net_device *dev) | |||
979 | return 0; | 979 | return 0; |
980 | } | 980 | } |
981 | 981 | ||
982 | static const struct net_device_ops bfin_mac_netdev_ops = { | ||
983 | .ndo_open = bfin_mac_open, | ||
984 | .ndo_stop = bfin_mac_close, | ||
985 | .ndo_start_xmit = bfin_mac_hard_start_xmit, | ||
986 | .ndo_set_mac_address = bfin_mac_set_mac_address, | ||
987 | .ndo_tx_timeout = bfin_mac_timeout, | ||
988 | .ndo_set_multicast_list = bfin_mac_set_multicast_list, | ||
989 | .ndo_validate_addr = eth_validate_addr, | ||
990 | .ndo_change_mtu = eth_change_mtu, | ||
991 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
992 | .ndo_poll_controller = bfin_mac_poll, | ||
993 | #endif | ||
994 | }; | ||
995 | |||
982 | /* | 996 | /* |
983 | * | 997 | * |
984 | * this makes the board clean up everything that it can | 998 | * this makes the board clean up everything that it can |
@@ -1086,15 +1100,7 @@ static int __devinit bfin_mac_probe(struct platform_device *pdev) | |||
1086 | /* Fill in the fields of the device structure with ethernet values. */ | 1100 | /* Fill in the fields of the device structure with ethernet values. */ |
1087 | ether_setup(ndev); | 1101 | ether_setup(ndev); |
1088 | 1102 | ||
1089 | ndev->open = bfin_mac_open; | 1103 | ndev->netdev_ops = &bfin_mac_netdev_ops; |
1090 | ndev->stop = bfin_mac_close; | ||
1091 | ndev->hard_start_xmit = bfin_mac_hard_start_xmit; | ||
1092 | ndev->set_mac_address = bfin_mac_set_mac_address; | ||
1093 | ndev->tx_timeout = bfin_mac_timeout; | ||
1094 | ndev->set_multicast_list = bfin_mac_set_multicast_list; | ||
1095 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
1096 | ndev->poll_controller = bfin_mac_poll; | ||
1097 | #endif | ||
1098 | ndev->ethtool_ops = &bfin_mac_ethtool_ops; | 1104 | ndev->ethtool_ops = &bfin_mac_ethtool_ops; |
1099 | 1105 | ||
1100 | spin_lock_init(&lp->lock); | 1106 | spin_lock_init(&lp->lock); |
diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c index 9d268be0b670..d47839184a06 100644 --- a/drivers/net/bnx2.c +++ b/drivers/net/bnx2.c | |||
@@ -3427,8 +3427,8 @@ static int __devinit | |||
3427 | bnx2_request_firmware(struct bnx2 *bp) | 3427 | bnx2_request_firmware(struct bnx2 *bp) |
3428 | { | 3428 | { |
3429 | const char *mips_fw_file, *rv2p_fw_file; | 3429 | const char *mips_fw_file, *rv2p_fw_file; |
3430 | const struct bnx2_mips_fw_file *mips; | 3430 | const struct bnx2_mips_fw_file *mips_fw; |
3431 | const struct bnx2_rv2p_fw_file *rv2p; | 3431 | const struct bnx2_rv2p_fw_file *rv2p_fw; |
3432 | int rc; | 3432 | int rc; |
3433 | 3433 | ||
3434 | if (CHIP_NUM(bp) == CHIP_NUM_5709) { | 3434 | if (CHIP_NUM(bp) == CHIP_NUM_5709) { |
@@ -3452,21 +3452,21 @@ bnx2_request_firmware(struct bnx2 *bp) | |||
3452 | rv2p_fw_file); | 3452 | rv2p_fw_file); |
3453 | return rc; | 3453 | return rc; |
3454 | } | 3454 | } |
3455 | mips = (const struct bnx2_mips_fw_file *) bp->mips_firmware->data; | 3455 | mips_fw = (const struct bnx2_mips_fw_file *) bp->mips_firmware->data; |
3456 | rv2p = (const struct bnx2_rv2p_fw_file *) bp->rv2p_firmware->data; | 3456 | rv2p_fw = (const struct bnx2_rv2p_fw_file *) bp->rv2p_firmware->data; |
3457 | if (bp->mips_firmware->size < sizeof(*mips) || | 3457 | if (bp->mips_firmware->size < sizeof(*mips_fw) || |
3458 | check_mips_fw_entry(bp->mips_firmware, &mips->com) || | 3458 | check_mips_fw_entry(bp->mips_firmware, &mips_fw->com) || |
3459 | check_mips_fw_entry(bp->mips_firmware, &mips->cp) || | 3459 | check_mips_fw_entry(bp->mips_firmware, &mips_fw->cp) || |
3460 | check_mips_fw_entry(bp->mips_firmware, &mips->rxp) || | 3460 | check_mips_fw_entry(bp->mips_firmware, &mips_fw->rxp) || |
3461 | check_mips_fw_entry(bp->mips_firmware, &mips->tpat) || | 3461 | check_mips_fw_entry(bp->mips_firmware, &mips_fw->tpat) || |
3462 | check_mips_fw_entry(bp->mips_firmware, &mips->txp)) { | 3462 | check_mips_fw_entry(bp->mips_firmware, &mips_fw->txp)) { |
3463 | printk(KERN_ERR PFX "Firmware file \"%s\" is invalid\n", | 3463 | printk(KERN_ERR PFX "Firmware file \"%s\" is invalid\n", |
3464 | mips_fw_file); | 3464 | mips_fw_file); |
3465 | return -EINVAL; | 3465 | return -EINVAL; |
3466 | } | 3466 | } |
3467 | if (bp->rv2p_firmware->size < sizeof(*rv2p) || | 3467 | if (bp->rv2p_firmware->size < sizeof(*rv2p_fw) || |
3468 | check_fw_section(bp->rv2p_firmware, &rv2p->proc1.rv2p, 8, true) || | 3468 | check_fw_section(bp->rv2p_firmware, &rv2p_fw->proc1.rv2p, 8, true) || |
3469 | check_fw_section(bp->rv2p_firmware, &rv2p->proc2.rv2p, 8, true)) { | 3469 | check_fw_section(bp->rv2p_firmware, &rv2p_fw->proc2.rv2p, 8, true)) { |
3470 | printk(KERN_ERR PFX "Firmware file \"%s\" is invalid\n", | 3470 | printk(KERN_ERR PFX "Firmware file \"%s\" is invalid\n", |
3471 | rv2p_fw_file); | 3471 | rv2p_fw_file); |
3472 | return -EINVAL; | 3472 | return -EINVAL; |
diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond_alb.c index 8dc6fbb9a41e..553a89919778 100644 --- a/drivers/net/bonding/bond_alb.c +++ b/drivers/net/bonding/bond_alb.c | |||
@@ -370,8 +370,6 @@ static int rlb_arp_recv(struct sk_buff *skb, struct net_device *bond_dev, struct | |||
370 | 370 | ||
371 | if (arp->op_code == htons(ARPOP_REPLY)) { | 371 | if (arp->op_code == htons(ARPOP_REPLY)) { |
372 | /* update rx hash table for this ARP */ | 372 | /* update rx hash table for this ARP */ |
373 | printk("rar: update orig %s bond_dev %s\n", orig_dev->name, | ||
374 | bond_dev->name); | ||
375 | bond = netdev_priv(bond_dev); | 373 | bond = netdev_priv(bond_dev); |
376 | rlb_update_entry_from_arp(bond, arp); | 374 | rlb_update_entry_from_arp(bond, arp); |
377 | pr_debug("Server received an ARP Reply from client\n"); | 375 | pr_debug("Server received an ARP Reply from client\n"); |
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 99610f358c40..63369b6b14d4 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
@@ -2570,7 +2570,7 @@ static void bond_arp_send_all(struct bonding *bond, struct slave *slave) | |||
2570 | 2570 | ||
2571 | for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { | 2571 | for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { |
2572 | if (!targets[i]) | 2572 | if (!targets[i]) |
2573 | continue; | 2573 | break; |
2574 | pr_debug("basa: target %x\n", targets[i]); | 2574 | pr_debug("basa: target %x\n", targets[i]); |
2575 | if (list_empty(&bond->vlan_list)) { | 2575 | if (list_empty(&bond->vlan_list)) { |
2576 | pr_debug("basa: empty vlan: arp_send\n"); | 2576 | pr_debug("basa: empty vlan: arp_send\n"); |
@@ -2677,7 +2677,6 @@ static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 | |||
2677 | int i; | 2677 | int i; |
2678 | __be32 *targets = bond->params.arp_targets; | 2678 | __be32 *targets = bond->params.arp_targets; |
2679 | 2679 | ||
2680 | targets = bond->params.arp_targets; | ||
2681 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) { | 2680 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) { |
2682 | pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n", | 2681 | pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n", |
2683 | &sip, &tip, i, &targets[i], bond_has_this_ip(bond, tip)); | 2682 | &sip, &tip, i, &targets[i], bond_has_this_ip(bond, tip)); |
@@ -3303,7 +3302,7 @@ static void bond_info_show_master(struct seq_file *seq) | |||
3303 | 3302 | ||
3304 | for(i = 0; (i < BOND_MAX_ARP_TARGETS) ;i++) { | 3303 | for(i = 0; (i < BOND_MAX_ARP_TARGETS) ;i++) { |
3305 | if (!bond->params.arp_targets[i]) | 3304 | if (!bond->params.arp_targets[i]) |
3306 | continue; | 3305 | break; |
3307 | if (printed) | 3306 | if (printed) |
3308 | seq_printf(seq, ","); | 3307 | seq_printf(seq, ","); |
3309 | seq_printf(seq, " %pI4", &bond->params.arp_targets[i]); | 3308 | seq_printf(seq, " %pI4", &bond->params.arp_targets[i]); |
diff --git a/drivers/net/bonding/bond_sysfs.c b/drivers/net/bonding/bond_sysfs.c index 18cf4787874c..d28731535226 100644 --- a/drivers/net/bonding/bond_sysfs.c +++ b/drivers/net/bonding/bond_sysfs.c | |||
@@ -684,17 +684,15 @@ static ssize_t bonding_store_arp_targets(struct device *d, | |||
684 | goto out; | 684 | goto out; |
685 | } | 685 | } |
686 | /* look for an empty slot to put the target in, and check for dupes */ | 686 | /* look for an empty slot to put the target in, and check for dupes */ |
687 | for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { | 687 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) { |
688 | if (targets[i] == newtarget) { /* duplicate */ | 688 | if (targets[i] == newtarget) { /* duplicate */ |
689 | printk(KERN_ERR DRV_NAME | 689 | printk(KERN_ERR DRV_NAME |
690 | ": %s: ARP target %pI4 is already present\n", | 690 | ": %s: ARP target %pI4 is already present\n", |
691 | bond->dev->name, &newtarget); | 691 | bond->dev->name, &newtarget); |
692 | if (done) | ||
693 | targets[i] = 0; | ||
694 | ret = -EINVAL; | 692 | ret = -EINVAL; |
695 | goto out; | 693 | goto out; |
696 | } | 694 | } |
697 | if (targets[i] == 0 && !done) { | 695 | if (targets[i] == 0) { |
698 | printk(KERN_INFO DRV_NAME | 696 | printk(KERN_INFO DRV_NAME |
699 | ": %s: adding ARP target %pI4.\n", | 697 | ": %s: adding ARP target %pI4.\n", |
700 | bond->dev->name, &newtarget); | 698 | bond->dev->name, &newtarget); |
@@ -720,12 +718,16 @@ static ssize_t bonding_store_arp_targets(struct device *d, | |||
720 | goto out; | 718 | goto out; |
721 | } | 719 | } |
722 | 720 | ||
723 | for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) { | 721 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) { |
724 | if (targets[i] == newtarget) { | 722 | if (targets[i] == newtarget) { |
723 | int j; | ||
725 | printk(KERN_INFO DRV_NAME | 724 | printk(KERN_INFO DRV_NAME |
726 | ": %s: removing ARP target %pI4.\n", | 725 | ": %s: removing ARP target %pI4.\n", |
727 | bond->dev->name, &newtarget); | 726 | bond->dev->name, &newtarget); |
728 | targets[i] = 0; | 727 | for (j = i; (j < (BOND_MAX_ARP_TARGETS-1)) && targets[j+1]; j++) |
728 | targets[j] = targets[j+1]; | ||
729 | |||
730 | targets[j] = 0; | ||
729 | done = 1; | 731 | done = 1; |
730 | } | 732 | } |
731 | } | 733 | } |
diff --git a/drivers/net/cris/eth_v10.c b/drivers/net/cris/eth_v10.c index c9806c58b2fd..7a18dc7e5c7f 100644 --- a/drivers/net/cris/eth_v10.c +++ b/drivers/net/cris/eth_v10.c | |||
@@ -257,6 +257,23 @@ struct transceiver_ops transceivers[] = | |||
257 | 257 | ||
258 | struct transceiver_ops* transceiver = &transceivers[0]; | 258 | struct transceiver_ops* transceiver = &transceivers[0]; |
259 | 259 | ||
260 | static const struct net_device_ops e100_netdev_ops = { | ||
261 | .ndo_open = e100_open, | ||
262 | .ndo_stop = e100_close, | ||
263 | .ndo_start_xmit = e100_send_packet, | ||
264 | .ndo_tx_timeout = e100_tx_timeout, | ||
265 | .ndo_get_stats = e100_get_stats, | ||
266 | .ndo_set_multicast_list = set_multicast_list, | ||
267 | .ndo_do_ioctl = e100_ioctl, | ||
268 | .ndo_set_mac_address = e100_set_mac_address, | ||
269 | .ndo_validate_addr = eth_validate_addr, | ||
270 | .ndo_change_mtu = eth_change_mtu, | ||
271 | .ndo_set_config = e100_set_config, | ||
272 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
273 | .ndo_poll_controller = e100_netpoll, | ||
274 | #endif | ||
275 | }; | ||
276 | |||
260 | #define tx_done(dev) (*R_DMA_CH0_CMD == 0) | 277 | #define tx_done(dev) (*R_DMA_CH0_CMD == 0) |
261 | 278 | ||
262 | /* | 279 | /* |
@@ -300,19 +317,8 @@ etrax_ethernet_init(void) | |||
300 | 317 | ||
301 | /* fill in our handlers so the network layer can talk to us in the future */ | 318 | /* fill in our handlers so the network layer can talk to us in the future */ |
302 | 319 | ||
303 | dev->open = e100_open; | ||
304 | dev->hard_start_xmit = e100_send_packet; | ||
305 | dev->stop = e100_close; | ||
306 | dev->get_stats = e100_get_stats; | ||
307 | dev->set_multicast_list = set_multicast_list; | ||
308 | dev->set_mac_address = e100_set_mac_address; | ||
309 | dev->ethtool_ops = &e100_ethtool_ops; | 320 | dev->ethtool_ops = &e100_ethtool_ops; |
310 | dev->do_ioctl = e100_ioctl; | 321 | dev->netdev_ops = &e100_netdev_ops; |
311 | dev->set_config = e100_set_config; | ||
312 | dev->tx_timeout = e100_tx_timeout; | ||
313 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
314 | dev->poll_controller = e100_netpoll; | ||
315 | #endif | ||
316 | 322 | ||
317 | spin_lock_init(&np->lock); | 323 | spin_lock_init(&np->lock); |
318 | spin_lock_init(&np->led_lock); | 324 | spin_lock_init(&np->led_lock); |
diff --git a/drivers/net/declance.c b/drivers/net/declance.c index 861c867fca87..b62405a69180 100644 --- a/drivers/net/declance.c +++ b/drivers/net/declance.c | |||
@@ -1010,6 +1010,17 @@ static void lance_set_multicast_retry(unsigned long _opaque) | |||
1010 | lance_set_multicast(dev); | 1010 | lance_set_multicast(dev); |
1011 | } | 1011 | } |
1012 | 1012 | ||
1013 | static const struct net_device_ops lance_netdev_ops = { | ||
1014 | .ndo_open = lance_open, | ||
1015 | .ndo_stop = lance_close, | ||
1016 | .ndo_start_xmit = lance_start_xmit, | ||
1017 | .ndo_tx_timeout = lance_tx_timeout, | ||
1018 | .ndo_set_multicast_list = lance_set_multicast, | ||
1019 | .ndo_change_mtu = eth_change_mtu, | ||
1020 | .ndo_validate_addr = eth_validate_addr, | ||
1021 | .ndo_set_mac_address = eth_mac_addr, | ||
1022 | }; | ||
1023 | |||
1013 | static int __init dec_lance_probe(struct device *bdev, const int type) | 1024 | static int __init dec_lance_probe(struct device *bdev, const int type) |
1014 | { | 1025 | { |
1015 | static unsigned version_printed; | 1026 | static unsigned version_printed; |
@@ -1223,12 +1234,8 @@ static int __init dec_lance_probe(struct device *bdev, const int type) | |||
1223 | 1234 | ||
1224 | printk(", addr = %pM, irq = %d\n", dev->dev_addr, dev->irq); | 1235 | printk(", addr = %pM, irq = %d\n", dev->dev_addr, dev->irq); |
1225 | 1236 | ||
1226 | dev->open = &lance_open; | 1237 | dev->netdev_ops = &lance_netdev_ops; |
1227 | dev->stop = &lance_close; | ||
1228 | dev->hard_start_xmit = &lance_start_xmit; | ||
1229 | dev->tx_timeout = &lance_tx_timeout; | ||
1230 | dev->watchdog_timeo = 5*HZ; | 1238 | dev->watchdog_timeo = 5*HZ; |
1231 | dev->set_multicast_list = &lance_set_multicast; | ||
1232 | 1239 | ||
1233 | /* lp->ll is the location of the registers for lance card */ | 1240 | /* lp->ll is the location of the registers for lance card */ |
1234 | lp->ll = ll; | 1241 | lp->ll = ll; |
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index ddc5c533e89c..ef12931d302a 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c | |||
@@ -156,8 +156,8 @@ static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid); | |||
156 | static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid); | 156 | static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid); |
157 | static void e1000_restore_vlan(struct e1000_adapter *adapter); | 157 | static void e1000_restore_vlan(struct e1000_adapter *adapter); |
158 | 158 | ||
159 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state); | ||
160 | #ifdef CONFIG_PM | 159 | #ifdef CONFIG_PM |
160 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state); | ||
161 | static int e1000_resume(struct pci_dev *pdev); | 161 | static int e1000_resume(struct pci_dev *pdev); |
162 | #endif | 162 | #endif |
163 | static void e1000_shutdown(struct pci_dev *pdev); | 163 | static void e1000_shutdown(struct pci_dev *pdev); |
@@ -3834,7 +3834,7 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter, | |||
3834 | struct e1000_buffer *buffer_info; | 3834 | struct e1000_buffer *buffer_info; |
3835 | unsigned int i, eop; | 3835 | unsigned int i, eop; |
3836 | unsigned int count = 0; | 3836 | unsigned int count = 0; |
3837 | bool cleaned; | 3837 | bool cleaned = false; |
3838 | unsigned int total_tx_bytes=0, total_tx_packets=0; | 3838 | unsigned int total_tx_bytes=0, total_tx_packets=0; |
3839 | 3839 | ||
3840 | i = tx_ring->next_to_clean; | 3840 | i = tx_ring->next_to_clean; |
@@ -4601,7 +4601,7 @@ int e1000_set_spd_dplx(struct e1000_adapter *adapter, u16 spddplx) | |||
4601 | return 0; | 4601 | return 0; |
4602 | } | 4602 | } |
4603 | 4603 | ||
4604 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | 4604 | static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake) |
4605 | { | 4605 | { |
4606 | struct net_device *netdev = pci_get_drvdata(pdev); | 4606 | struct net_device *netdev = pci_get_drvdata(pdev); |
4607 | struct e1000_adapter *adapter = netdev_priv(netdev); | 4607 | struct e1000_adapter *adapter = netdev_priv(netdev); |
@@ -4664,22 +4664,18 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
4664 | 4664 | ||
4665 | ew32(WUC, E1000_WUC_PME_EN); | 4665 | ew32(WUC, E1000_WUC_PME_EN); |
4666 | ew32(WUFC, wufc); | 4666 | ew32(WUFC, wufc); |
4667 | pci_enable_wake(pdev, PCI_D3hot, 1); | ||
4668 | pci_enable_wake(pdev, PCI_D3cold, 1); | ||
4669 | } else { | 4667 | } else { |
4670 | ew32(WUC, 0); | 4668 | ew32(WUC, 0); |
4671 | ew32(WUFC, 0); | 4669 | ew32(WUFC, 0); |
4672 | pci_enable_wake(pdev, PCI_D3hot, 0); | ||
4673 | pci_enable_wake(pdev, PCI_D3cold, 0); | ||
4674 | } | 4670 | } |
4675 | 4671 | ||
4676 | e1000_release_manageability(adapter); | 4672 | e1000_release_manageability(adapter); |
4677 | 4673 | ||
4674 | *enable_wake = !!wufc; | ||
4675 | |||
4678 | /* make sure adapter isn't asleep if manageability is enabled */ | 4676 | /* make sure adapter isn't asleep if manageability is enabled */ |
4679 | if (adapter->en_mng_pt) { | 4677 | if (adapter->en_mng_pt) |
4680 | pci_enable_wake(pdev, PCI_D3hot, 1); | 4678 | *enable_wake = true; |
4681 | pci_enable_wake(pdev, PCI_D3cold, 1); | ||
4682 | } | ||
4683 | 4679 | ||
4684 | if (hw->phy_type == e1000_phy_igp_3) | 4680 | if (hw->phy_type == e1000_phy_igp_3) |
4685 | e1000_phy_powerdown_workaround(hw); | 4681 | e1000_phy_powerdown_workaround(hw); |
@@ -4693,12 +4689,29 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
4693 | 4689 | ||
4694 | pci_disable_device(pdev); | 4690 | pci_disable_device(pdev); |
4695 | 4691 | ||
4696 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | ||
4697 | |||
4698 | return 0; | 4692 | return 0; |
4699 | } | 4693 | } |
4700 | 4694 | ||
4701 | #ifdef CONFIG_PM | 4695 | #ifdef CONFIG_PM |
4696 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | ||
4697 | { | ||
4698 | int retval; | ||
4699 | bool wake; | ||
4700 | |||
4701 | retval = __e1000_shutdown(pdev, &wake); | ||
4702 | if (retval) | ||
4703 | return retval; | ||
4704 | |||
4705 | if (wake) { | ||
4706 | pci_prepare_to_sleep(pdev); | ||
4707 | } else { | ||
4708 | pci_wake_from_d3(pdev, false); | ||
4709 | pci_set_power_state(pdev, PCI_D3hot); | ||
4710 | } | ||
4711 | |||
4712 | return 0; | ||
4713 | } | ||
4714 | |||
4702 | static int e1000_resume(struct pci_dev *pdev) | 4715 | static int e1000_resume(struct pci_dev *pdev) |
4703 | { | 4716 | { |
4704 | struct net_device *netdev = pci_get_drvdata(pdev); | 4717 | struct net_device *netdev = pci_get_drvdata(pdev); |
@@ -4753,7 +4766,14 @@ static int e1000_resume(struct pci_dev *pdev) | |||
4753 | 4766 | ||
4754 | static void e1000_shutdown(struct pci_dev *pdev) | 4767 | static void e1000_shutdown(struct pci_dev *pdev) |
4755 | { | 4768 | { |
4756 | e1000_suspend(pdev, PMSG_SUSPEND); | 4769 | bool wake; |
4770 | |||
4771 | __e1000_shutdown(pdev, &wake); | ||
4772 | |||
4773 | if (system_state == SYSTEM_POWER_OFF) { | ||
4774 | pci_wake_from_d3(pdev, wake); | ||
4775 | pci_set_power_state(pdev, PCI_D3hot); | ||
4776 | } | ||
4757 | } | 4777 | } |
4758 | 4778 | ||
4759 | #ifdef CONFIG_NET_POLL_CONTROLLER | 4779 | #ifdef CONFIG_NET_POLL_CONTROLLER |
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c index 409b58cad0e5..1693ed116b16 100644 --- a/drivers/net/e1000e/netdev.c +++ b/drivers/net/e1000e/netdev.c | |||
@@ -621,7 +621,7 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter) | |||
621 | struct e1000_buffer *buffer_info; | 621 | struct e1000_buffer *buffer_info; |
622 | unsigned int i, eop; | 622 | unsigned int i, eop; |
623 | unsigned int count = 0; | 623 | unsigned int count = 0; |
624 | bool cleaned; | 624 | bool cleaned = false; |
625 | unsigned int total_tx_bytes = 0, total_tx_packets = 0; | 625 | unsigned int total_tx_bytes = 0, total_tx_packets = 0; |
626 | 626 | ||
627 | i = tx_ring->next_to_clean; | 627 | i = tx_ring->next_to_clean; |
@@ -4346,7 +4346,7 @@ static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) | |||
4346 | } | 4346 | } |
4347 | } | 4347 | } |
4348 | 4348 | ||
4349 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | 4349 | static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake) |
4350 | { | 4350 | { |
4351 | struct net_device *netdev = pci_get_drvdata(pdev); | 4351 | struct net_device *netdev = pci_get_drvdata(pdev); |
4352 | struct e1000_adapter *adapter = netdev_priv(netdev); | 4352 | struct e1000_adapter *adapter = netdev_priv(netdev); |
@@ -4409,20 +4409,16 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
4409 | 4409 | ||
4410 | ew32(WUC, E1000_WUC_PME_EN); | 4410 | ew32(WUC, E1000_WUC_PME_EN); |
4411 | ew32(WUFC, wufc); | 4411 | ew32(WUFC, wufc); |
4412 | pci_enable_wake(pdev, PCI_D3hot, 1); | ||
4413 | pci_enable_wake(pdev, PCI_D3cold, 1); | ||
4414 | } else { | 4412 | } else { |
4415 | ew32(WUC, 0); | 4413 | ew32(WUC, 0); |
4416 | ew32(WUFC, 0); | 4414 | ew32(WUFC, 0); |
4417 | pci_enable_wake(pdev, PCI_D3hot, 0); | ||
4418 | pci_enable_wake(pdev, PCI_D3cold, 0); | ||
4419 | } | 4415 | } |
4420 | 4416 | ||
4417 | *enable_wake = !!wufc; | ||
4418 | |||
4421 | /* make sure adapter isn't asleep if manageability is enabled */ | 4419 | /* make sure adapter isn't asleep if manageability is enabled */ |
4422 | if (adapter->flags & FLAG_MNG_PT_ENABLED) { | 4420 | if (adapter->flags & FLAG_MNG_PT_ENABLED) |
4423 | pci_enable_wake(pdev, PCI_D3hot, 1); | 4421 | *enable_wake = true; |
4424 | pci_enable_wake(pdev, PCI_D3cold, 1); | ||
4425 | } | ||
4426 | 4422 | ||
4427 | if (adapter->hw.phy.type == e1000_phy_igp_3) | 4423 | if (adapter->hw.phy.type == e1000_phy_igp_3) |
4428 | e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw); | 4424 | e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw); |
@@ -4435,6 +4431,26 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
4435 | 4431 | ||
4436 | pci_disable_device(pdev); | 4432 | pci_disable_device(pdev); |
4437 | 4433 | ||
4434 | return 0; | ||
4435 | } | ||
4436 | |||
4437 | static void e1000_power_off(struct pci_dev *pdev, bool sleep, bool wake) | ||
4438 | { | ||
4439 | if (sleep && wake) { | ||
4440 | pci_prepare_to_sleep(pdev); | ||
4441 | return; | ||
4442 | } | ||
4443 | |||
4444 | pci_wake_from_d3(pdev, wake); | ||
4445 | pci_set_power_state(pdev, PCI_D3hot); | ||
4446 | } | ||
4447 | |||
4448 | static void e1000_complete_shutdown(struct pci_dev *pdev, bool sleep, | ||
4449 | bool wake) | ||
4450 | { | ||
4451 | struct net_device *netdev = pci_get_drvdata(pdev); | ||
4452 | struct e1000_adapter *adapter = netdev_priv(netdev); | ||
4453 | |||
4438 | /* | 4454 | /* |
4439 | * The pci-e switch on some quad port adapters will report a | 4455 | * The pci-e switch on some quad port adapters will report a |
4440 | * correctable error when the MAC transitions from D0 to D3. To | 4456 | * correctable error when the MAC transitions from D0 to D3. To |
@@ -4450,14 +4466,12 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | |||
4450 | pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, | 4466 | pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, |
4451 | (devctl & ~PCI_EXP_DEVCTL_CERE)); | 4467 | (devctl & ~PCI_EXP_DEVCTL_CERE)); |
4452 | 4468 | ||
4453 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | 4469 | e1000_power_off(pdev, sleep, wake); |
4454 | 4470 | ||
4455 | pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, devctl); | 4471 | pci_write_config_word(us_dev, pos + PCI_EXP_DEVCTL, devctl); |
4456 | } else { | 4472 | } else { |
4457 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | 4473 | e1000_power_off(pdev, sleep, wake); |
4458 | } | 4474 | } |
4459 | |||
4460 | return 0; | ||
4461 | } | 4475 | } |
4462 | 4476 | ||
4463 | static void e1000e_disable_l1aspm(struct pci_dev *pdev) | 4477 | static void e1000e_disable_l1aspm(struct pci_dev *pdev) |
@@ -4486,6 +4500,18 @@ static void e1000e_disable_l1aspm(struct pci_dev *pdev) | |||
4486 | } | 4500 | } |
4487 | 4501 | ||
4488 | #ifdef CONFIG_PM | 4502 | #ifdef CONFIG_PM |
4503 | static int e1000_suspend(struct pci_dev *pdev, pm_message_t state) | ||
4504 | { | ||
4505 | int retval; | ||
4506 | bool wake; | ||
4507 | |||
4508 | retval = __e1000_shutdown(pdev, &wake); | ||
4509 | if (!retval) | ||
4510 | e1000_complete_shutdown(pdev, true, wake); | ||
4511 | |||
4512 | return retval; | ||
4513 | } | ||
4514 | |||
4489 | static int e1000_resume(struct pci_dev *pdev) | 4515 | static int e1000_resume(struct pci_dev *pdev) |
4490 | { | 4516 | { |
4491 | struct net_device *netdev = pci_get_drvdata(pdev); | 4517 | struct net_device *netdev = pci_get_drvdata(pdev); |
@@ -4549,7 +4575,12 @@ static int e1000_resume(struct pci_dev *pdev) | |||
4549 | 4575 | ||
4550 | static void e1000_shutdown(struct pci_dev *pdev) | 4576 | static void e1000_shutdown(struct pci_dev *pdev) |
4551 | { | 4577 | { |
4552 | e1000_suspend(pdev, PMSG_SUSPEND); | 4578 | bool wake = false; |
4579 | |||
4580 | __e1000_shutdown(pdev, &wake); | ||
4581 | |||
4582 | if (system_state == SYSTEM_POWER_OFF) | ||
4583 | e1000_complete_shutdown(pdev, false, wake); | ||
4553 | } | 4584 | } |
4554 | 4585 | ||
4555 | #ifdef CONFIG_NET_POLL_CONTROLLER | 4586 | #ifdef CONFIG_NET_POLL_CONTROLLER |
diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c index ac0c5b438e0a..604c844d0769 100644 --- a/drivers/net/ehea/ehea_main.c +++ b/drivers/net/ehea/ehea_main.c | |||
@@ -3080,7 +3080,8 @@ static const struct net_device_ops ehea_netdev_ops = { | |||
3080 | .ndo_change_mtu = ehea_change_mtu, | 3080 | .ndo_change_mtu = ehea_change_mtu, |
3081 | .ndo_vlan_rx_register = ehea_vlan_rx_register, | 3081 | .ndo_vlan_rx_register = ehea_vlan_rx_register, |
3082 | .ndo_vlan_rx_add_vid = ehea_vlan_rx_add_vid, | 3082 | .ndo_vlan_rx_add_vid = ehea_vlan_rx_add_vid, |
3083 | .ndo_vlan_rx_kill_vid = ehea_vlan_rx_kill_vid | 3083 | .ndo_vlan_rx_kill_vid = ehea_vlan_rx_kill_vid, |
3084 | .ndo_tx_timeout = ehea_tx_watchdog, | ||
3084 | }; | 3085 | }; |
3085 | 3086 | ||
3086 | struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter, | 3087 | struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter, |
@@ -3142,7 +3143,6 @@ struct ehea_port *ehea_setup_single_port(struct ehea_adapter *adapter, | |||
3142 | | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX | 3143 | | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX |
3143 | | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER | 3144 | | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER |
3144 | | NETIF_F_LLTX; | 3145 | | NETIF_F_LLTX; |
3145 | dev->tx_timeout = &ehea_tx_watchdog; | ||
3146 | dev->watchdog_timeo = EHEA_WATCH_DOG_TIMEOUT; | 3146 | dev->watchdog_timeo = EHEA_WATCH_DOG_TIMEOUT; |
3147 | 3147 | ||
3148 | INIT_WORK(&port->reset_task, ehea_reset_port); | 3148 | INIT_WORK(&port->reset_task, ehea_reset_port); |
diff --git a/drivers/net/eql.c b/drivers/net/eql.c index 51ead7941f83..5210bb1027cc 100644 --- a/drivers/net/eql.c +++ b/drivers/net/eql.c | |||
@@ -542,6 +542,8 @@ static int eql_s_slave_cfg(struct net_device *dev, slave_config_t __user *scp) | |||
542 | } | 542 | } |
543 | spin_unlock_bh(&eql->queue.lock); | 543 | spin_unlock_bh(&eql->queue.lock); |
544 | 544 | ||
545 | dev_put(slave_dev); | ||
546 | |||
545 | return ret; | 547 | return ret; |
546 | } | 548 | } |
547 | 549 | ||
diff --git a/drivers/net/fec.c b/drivers/net/fec.c index 63eaf5de2300..28db6919c526 100644 --- a/drivers/net/fec.c +++ b/drivers/net/fec.c | |||
@@ -1155,6 +1155,7 @@ static void __inline__ fec_phy_ack_intr(void) | |||
1155 | icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1); | 1155 | icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1); |
1156 | *icrp = 0x0d000000; | 1156 | *icrp = 0x0d000000; |
1157 | } | 1157 | } |
1158 | #endif | ||
1158 | 1159 | ||
1159 | #ifdef CONFIG_M5272 | 1160 | #ifdef CONFIG_M5272 |
1160 | static void __inline__ fec_get_mac(struct net_device *dev) | 1161 | static void __inline__ fec_get_mac(struct net_device *dev) |
diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c index d37465020bcc..11d5db16ed9c 100644 --- a/drivers/net/forcedeth.c +++ b/drivers/net/forcedeth.c | |||
@@ -3745,14 +3745,14 @@ static int nv_napi_poll(struct napi_struct *napi, int budget) | |||
3745 | mod_timer(&np->nic_poll, jiffies + POLL_WAIT); | 3745 | mod_timer(&np->nic_poll, jiffies + POLL_WAIT); |
3746 | } | 3746 | } |
3747 | spin_unlock_irqrestore(&np->lock, flags); | 3747 | spin_unlock_irqrestore(&np->lock, flags); |
3748 | __napi_complete(napi); | 3748 | napi_complete(napi); |
3749 | return rx_work; | 3749 | return rx_work; |
3750 | } | 3750 | } |
3751 | 3751 | ||
3752 | if (rx_work < budget) { | 3752 | if (rx_work < budget) { |
3753 | /* re-enable interrupts | 3753 | /* re-enable interrupts |
3754 | (msix not enabled in napi) */ | 3754 | (msix not enabled in napi) */ |
3755 | __napi_complete(napi); | 3755 | napi_complete(napi); |
3756 | 3756 | ||
3757 | writel(np->irqmask, base + NvRegIrqMask); | 3757 | writel(np->irqmask, base + NvRegIrqMask); |
3758 | } | 3758 | } |
diff --git a/drivers/net/fs_enet/fs_enet-main.c b/drivers/net/fs_enet/fs_enet-main.c index b037ce9857bf..a9cbc3191a2a 100644 --- a/drivers/net/fs_enet/fs_enet-main.c +++ b/drivers/net/fs_enet/fs_enet-main.c | |||
@@ -1019,6 +1019,22 @@ out_put_phy: | |||
1019 | #define IS_FEC(match) 0 | 1019 | #define IS_FEC(match) 0 |
1020 | #endif | 1020 | #endif |
1021 | 1021 | ||
1022 | static const struct net_device_ops fs_enet_netdev_ops = { | ||
1023 | .ndo_open = fs_enet_open, | ||
1024 | .ndo_stop = fs_enet_close, | ||
1025 | .ndo_get_stats = fs_enet_get_stats, | ||
1026 | .ndo_start_xmit = fs_enet_start_xmit, | ||
1027 | .ndo_tx_timeout = fs_timeout, | ||
1028 | .ndo_set_multicast_list = fs_set_multicast_list, | ||
1029 | .ndo_do_ioctl = fs_ioctl, | ||
1030 | .ndo_validate_addr = eth_validate_addr, | ||
1031 | .ndo_set_mac_address = eth_mac_addr, | ||
1032 | .ndo_change_mtu = eth_change_mtu, | ||
1033 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
1034 | .ndo_poll_controller = fs_enet_netpoll, | ||
1035 | #endif | ||
1036 | }; | ||
1037 | |||
1022 | static int __devinit fs_enet_probe(struct of_device *ofdev, | 1038 | static int __devinit fs_enet_probe(struct of_device *ofdev, |
1023 | const struct of_device_id *match) | 1039 | const struct of_device_id *match) |
1024 | { | 1040 | { |
@@ -1093,22 +1109,13 @@ static int __devinit fs_enet_probe(struct of_device *ofdev, | |||
1093 | fep->tx_ring = fpi->tx_ring; | 1109 | fep->tx_ring = fpi->tx_ring; |
1094 | fep->rx_ring = fpi->rx_ring; | 1110 | fep->rx_ring = fpi->rx_ring; |
1095 | 1111 | ||
1096 | ndev->open = fs_enet_open; | 1112 | ndev->netdev_ops = &fs_enet_netdev_ops; |
1097 | ndev->hard_start_xmit = fs_enet_start_xmit; | ||
1098 | ndev->tx_timeout = fs_timeout; | ||
1099 | ndev->watchdog_timeo = 2 * HZ; | 1113 | ndev->watchdog_timeo = 2 * HZ; |
1100 | ndev->stop = fs_enet_close; | ||
1101 | ndev->get_stats = fs_enet_get_stats; | ||
1102 | ndev->set_multicast_list = fs_set_multicast_list; | ||
1103 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
1104 | ndev->poll_controller = fs_enet_netpoll; | ||
1105 | #endif | ||
1106 | if (fpi->use_napi) | 1114 | if (fpi->use_napi) |
1107 | netif_napi_add(ndev, &fep->napi, fs_enet_rx_napi, | 1115 | netif_napi_add(ndev, &fep->napi, fs_enet_rx_napi, |
1108 | fpi->napi_weight); | 1116 | fpi->napi_weight); |
1109 | 1117 | ||
1110 | ndev->ethtool_ops = &fs_ethtool_ops; | 1118 | ndev->ethtool_ops = &fs_ethtool_ops; |
1111 | ndev->do_ioctl = fs_ioctl; | ||
1112 | 1119 | ||
1113 | init_timer(&fep->phy_timer_list); | 1120 | init_timer(&fep->phy_timer_list); |
1114 | 1121 | ||
diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c index 65f55877be95..b2c49679bba7 100644 --- a/drivers/net/gianfar.c +++ b/drivers/net/gianfar.c | |||
@@ -1583,8 +1583,10 @@ static void gfar_reset_task(struct work_struct *work) | |||
1583 | struct net_device *dev = priv->ndev; | 1583 | struct net_device *dev = priv->ndev; |
1584 | 1584 | ||
1585 | if (dev->flags & IFF_UP) { | 1585 | if (dev->flags & IFF_UP) { |
1586 | netif_stop_queue(dev); | ||
1586 | stop_gfar(dev); | 1587 | stop_gfar(dev); |
1587 | startup_gfar(dev); | 1588 | startup_gfar(dev); |
1589 | netif_start_queue(dev); | ||
1588 | } | 1590 | } |
1589 | 1591 | ||
1590 | netif_tx_schedule_all(dev); | 1592 | netif_tx_schedule_all(dev); |
diff --git a/drivers/net/ibm_newemac/core.c b/drivers/net/ibm_newemac/core.c index 77e4b5b52fc8..806533c831c7 100644 --- a/drivers/net/ibm_newemac/core.c +++ b/drivers/net/ibm_newemac/core.c | |||
@@ -2686,6 +2686,32 @@ static int __devinit emac_init_config(struct emac_instance *dev) | |||
2686 | return 0; | 2686 | return 0; |
2687 | } | 2687 | } |
2688 | 2688 | ||
2689 | static const struct net_device_ops emac_netdev_ops = { | ||
2690 | .ndo_open = emac_open, | ||
2691 | .ndo_stop = emac_close, | ||
2692 | .ndo_get_stats = emac_stats, | ||
2693 | .ndo_set_multicast_list = emac_set_multicast_list, | ||
2694 | .ndo_do_ioctl = emac_ioctl, | ||
2695 | .ndo_tx_timeout = emac_tx_timeout, | ||
2696 | .ndo_validate_addr = eth_validate_addr, | ||
2697 | .ndo_set_mac_address = eth_mac_addr, | ||
2698 | .ndo_start_xmit = emac_start_xmit, | ||
2699 | .ndo_change_mtu = eth_change_mtu, | ||
2700 | }; | ||
2701 | |||
2702 | static const struct net_device_ops emac_gige_netdev_ops = { | ||
2703 | .ndo_open = emac_open, | ||
2704 | .ndo_stop = emac_close, | ||
2705 | .ndo_get_stats = emac_stats, | ||
2706 | .ndo_set_multicast_list = emac_set_multicast_list, | ||
2707 | .ndo_do_ioctl = emac_ioctl, | ||
2708 | .ndo_tx_timeout = emac_tx_timeout, | ||
2709 | .ndo_validate_addr = eth_validate_addr, | ||
2710 | .ndo_set_mac_address = eth_mac_addr, | ||
2711 | .ndo_start_xmit = emac_start_xmit_sg, | ||
2712 | .ndo_change_mtu = emac_change_mtu, | ||
2713 | }; | ||
2714 | |||
2689 | static int __devinit emac_probe(struct of_device *ofdev, | 2715 | static int __devinit emac_probe(struct of_device *ofdev, |
2690 | const struct of_device_id *match) | 2716 | const struct of_device_id *match) |
2691 | { | 2717 | { |
@@ -2827,23 +2853,14 @@ static int __devinit emac_probe(struct of_device *ofdev, | |||
2827 | if (err != 0) | 2853 | if (err != 0) |
2828 | goto err_detach_tah; | 2854 | goto err_detach_tah; |
2829 | 2855 | ||
2830 | /* Fill in the driver function table */ | ||
2831 | ndev->open = &emac_open; | ||
2832 | if (dev->tah_dev) | 2856 | if (dev->tah_dev) |
2833 | ndev->features |= NETIF_F_IP_CSUM | NETIF_F_SG; | 2857 | ndev->features |= NETIF_F_IP_CSUM | NETIF_F_SG; |
2834 | ndev->tx_timeout = &emac_tx_timeout; | ||
2835 | ndev->watchdog_timeo = 5 * HZ; | 2858 | ndev->watchdog_timeo = 5 * HZ; |
2836 | ndev->stop = &emac_close; | ||
2837 | ndev->get_stats = &emac_stats; | ||
2838 | ndev->set_multicast_list = &emac_set_multicast_list; | ||
2839 | ndev->do_ioctl = &emac_ioctl; | ||
2840 | if (emac_phy_supports_gige(dev->phy_mode)) { | 2859 | if (emac_phy_supports_gige(dev->phy_mode)) { |
2841 | ndev->hard_start_xmit = &emac_start_xmit_sg; | 2860 | ndev->netdev_ops = &emac_gige_netdev_ops; |
2842 | ndev->change_mtu = &emac_change_mtu; | ||
2843 | dev->commac.ops = &emac_commac_sg_ops; | 2861 | dev->commac.ops = &emac_commac_sg_ops; |
2844 | } else { | 2862 | } else |
2845 | ndev->hard_start_xmit = &emac_start_xmit; | 2863 | ndev->netdev_ops = &emac_netdev_ops; |
2846 | } | ||
2847 | SET_ETHTOOL_OPS(ndev, &emac_ethtool_ops); | 2864 | SET_ETHTOOL_OPS(ndev, &emac_ethtool_ops); |
2848 | 2865 | ||
2849 | netif_carrier_off(ndev); | 2866 | netif_carrier_off(ndev); |
diff --git a/drivers/net/igb/e1000_mac.c b/drivers/net/igb/e1000_mac.c index f4c315b5a900..472f3f124840 100644 --- a/drivers/net/igb/e1000_mac.c +++ b/drivers/net/igb/e1000_mac.c | |||
@@ -111,7 +111,7 @@ void igb_clear_vfta(struct e1000_hw *hw) | |||
111 | * Writes value at the given offset in the register array which stores | 111 | * Writes value at the given offset in the register array which stores |
112 | * the VLAN filter table. | 112 | * the VLAN filter table. |
113 | **/ | 113 | **/ |
114 | void igb_write_vfta(struct e1000_hw *hw, u32 offset, u32 value) | 114 | static void igb_write_vfta(struct e1000_hw *hw, u32 offset, u32 value) |
115 | { | 115 | { |
116 | array_wr32(E1000_VFTA, offset, value); | 116 | array_wr32(E1000_VFTA, offset, value); |
117 | wrfl(); | 117 | wrfl(); |
diff --git a/drivers/net/igb/e1000_mac.h b/drivers/net/igb/e1000_mac.h index a34de5269637..1d690b4c9ae4 100644 --- a/drivers/net/igb/e1000_mac.h +++ b/drivers/net/igb/e1000_mac.h | |||
@@ -66,7 +66,6 @@ void igb_rar_set(struct e1000_hw *hw, u8 *addr, u32 index); | |||
66 | s32 igb_check_alt_mac_addr(struct e1000_hw *hw); | 66 | s32 igb_check_alt_mac_addr(struct e1000_hw *hw); |
67 | void igb_reset_adaptive(struct e1000_hw *hw); | 67 | void igb_reset_adaptive(struct e1000_hw *hw); |
68 | void igb_update_adaptive(struct e1000_hw *hw); | 68 | void igb_update_adaptive(struct e1000_hw *hw); |
69 | void igb_write_vfta(struct e1000_hw *hw, u32 offset, u32 value); | ||
70 | 69 | ||
71 | bool igb_enable_mng_pass_thru(struct e1000_hw *hw); | 70 | bool igb_enable_mng_pass_thru(struct e1000_hw *hw); |
72 | 71 | ||
diff --git a/drivers/net/igb/e1000_mbx.c b/drivers/net/igb/e1000_mbx.c index fe71c7ddaa05..840782fb5736 100644 --- a/drivers/net/igb/e1000_mbx.c +++ b/drivers/net/igb/e1000_mbx.c | |||
@@ -188,7 +188,7 @@ out: | |||
188 | * returns SUCCESS if it successfully received a message notification and | 188 | * returns SUCCESS if it successfully received a message notification and |
189 | * copied it into the receive buffer. | 189 | * copied it into the receive buffer. |
190 | **/ | 190 | **/ |
191 | s32 igb_read_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) | 191 | static s32 igb_read_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) |
192 | { | 192 | { |
193 | struct e1000_mbx_info *mbx = &hw->mbx; | 193 | struct e1000_mbx_info *mbx = &hw->mbx; |
194 | s32 ret_val = -E1000_ERR_MBX; | 194 | s32 ret_val = -E1000_ERR_MBX; |
@@ -214,7 +214,7 @@ out: | |||
214 | * returns SUCCESS if it successfully copied message into the buffer and | 214 | * returns SUCCESS if it successfully copied message into the buffer and |
215 | * received an ack to that message within delay * timeout period | 215 | * received an ack to that message within delay * timeout period |
216 | **/ | 216 | **/ |
217 | s32 igb_write_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) | 217 | static s32 igb_write_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) |
218 | { | 218 | { |
219 | struct e1000_mbx_info *mbx = &hw->mbx; | 219 | struct e1000_mbx_info *mbx = &hw->mbx; |
220 | s32 ret_val = 0; | 220 | s32 ret_val = 0; |
@@ -232,19 +232,6 @@ out: | |||
232 | return ret_val; | 232 | return ret_val; |
233 | } | 233 | } |
234 | 234 | ||
235 | /** | ||
236 | * e1000_init_mbx_ops_generic - Initialize NVM function pointers | ||
237 | * @hw: pointer to the HW structure | ||
238 | * | ||
239 | * Setups up the function pointers to no-op functions | ||
240 | **/ | ||
241 | void e1000_init_mbx_ops_generic(struct e1000_hw *hw) | ||
242 | { | ||
243 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
244 | mbx->ops.read_posted = igb_read_posted_mbx; | ||
245 | mbx->ops.write_posted = igb_write_posted_mbx; | ||
246 | } | ||
247 | |||
248 | static s32 igb_check_for_bit_pf(struct e1000_hw *hw, u32 mask) | 235 | static s32 igb_check_for_bit_pf(struct e1000_hw *hw, u32 mask) |
249 | { | 236 | { |
250 | u32 mbvficr = rd32(E1000_MBVFICR); | 237 | u32 mbvficr = rd32(E1000_MBVFICR); |
diff --git a/drivers/net/igb/e1000_mbx.h b/drivers/net/igb/e1000_mbx.h index 6ec9890a8f7a..ebc02ea3f198 100644 --- a/drivers/net/igb/e1000_mbx.h +++ b/drivers/net/igb/e1000_mbx.h | |||
@@ -67,8 +67,6 @@ | |||
67 | 67 | ||
68 | s32 igb_read_mbx(struct e1000_hw *, u32 *, u16, u16); | 68 | s32 igb_read_mbx(struct e1000_hw *, u32 *, u16, u16); |
69 | s32 igb_write_mbx(struct e1000_hw *, u32 *, u16, u16); | 69 | s32 igb_write_mbx(struct e1000_hw *, u32 *, u16, u16); |
70 | s32 igb_read_posted_mbx(struct e1000_hw *, u32 *, u16, u16); | ||
71 | s32 igb_write_posted_mbx(struct e1000_hw *, u32 *, u16, u16); | ||
72 | s32 igb_check_for_msg(struct e1000_hw *, u16); | 70 | s32 igb_check_for_msg(struct e1000_hw *, u16); |
73 | s32 igb_check_for_ack(struct e1000_hw *, u16); | 71 | s32 igb_check_for_ack(struct e1000_hw *, u16); |
74 | s32 igb_check_for_rst(struct e1000_hw *, u16); | 72 | s32 igb_check_for_rst(struct e1000_hw *, u16); |
diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c index 6b0697c565b9..08c801490c72 100644 --- a/drivers/net/igb/igb_main.c +++ b/drivers/net/igb/igb_main.c | |||
@@ -152,14 +152,13 @@ static struct notifier_block dca_notifier = { | |||
152 | /* for netdump / net console */ | 152 | /* for netdump / net console */ |
153 | static void igb_netpoll(struct net_device *); | 153 | static void igb_netpoll(struct net_device *); |
154 | #endif | 154 | #endif |
155 | |||
156 | #ifdef CONFIG_PCI_IOV | 155 | #ifdef CONFIG_PCI_IOV |
157 | static ssize_t igb_set_num_vfs(struct device *, struct device_attribute *, | 156 | static unsigned int max_vfs = 0; |
158 | const char *, size_t); | 157 | module_param(max_vfs, uint, 0); |
159 | static ssize_t igb_show_num_vfs(struct device *, struct device_attribute *, | 158 | MODULE_PARM_DESC(max_vfs, "Maximum number of virtual functions to allocate " |
160 | char *); | 159 | "per physical function"); |
161 | DEVICE_ATTR(num_vfs, S_IRUGO | S_IWUSR, igb_show_num_vfs, igb_set_num_vfs); | 160 | #endif /* CONFIG_PCI_IOV */ |
162 | #endif | 161 | |
163 | static pci_ers_result_t igb_io_error_detected(struct pci_dev *, | 162 | static pci_ers_result_t igb_io_error_detected(struct pci_dev *, |
164 | pci_channel_state_t); | 163 | pci_channel_state_t); |
165 | static pci_ers_result_t igb_io_slot_reset(struct pci_dev *); | 164 | static pci_ers_result_t igb_io_slot_reset(struct pci_dev *); |
@@ -671,6 +670,21 @@ static void igb_set_interrupt_capability(struct igb_adapter *adapter) | |||
671 | 670 | ||
672 | /* If we can't do MSI-X, try MSI */ | 671 | /* If we can't do MSI-X, try MSI */ |
673 | msi_only: | 672 | msi_only: |
673 | #ifdef CONFIG_PCI_IOV | ||
674 | /* disable SR-IOV for non MSI-X configurations */ | ||
675 | if (adapter->vf_data) { | ||
676 | struct e1000_hw *hw = &adapter->hw; | ||
677 | /* disable iov and allow time for transactions to clear */ | ||
678 | pci_disable_sriov(adapter->pdev); | ||
679 | msleep(500); | ||
680 | |||
681 | kfree(adapter->vf_data); | ||
682 | adapter->vf_data = NULL; | ||
683 | wr32(E1000_IOVCTL, E1000_IOVCTL_REUSE_VFQ); | ||
684 | msleep(100); | ||
685 | dev_info(&adapter->pdev->dev, "IOV Disabled\n"); | ||
686 | } | ||
687 | #endif | ||
674 | adapter->num_rx_queues = 1; | 688 | adapter->num_rx_queues = 1; |
675 | adapter->num_tx_queues = 1; | 689 | adapter->num_tx_queues = 1; |
676 | if (!pci_enable_msi(adapter->pdev)) | 690 | if (!pci_enable_msi(adapter->pdev)) |
@@ -1238,6 +1252,46 @@ static int __devinit igb_probe(struct pci_dev *pdev, | |||
1238 | if (err) | 1252 | if (err) |
1239 | goto err_sw_init; | 1253 | goto err_sw_init; |
1240 | 1254 | ||
1255 | #ifdef CONFIG_PCI_IOV | ||
1256 | /* since iov functionality isn't critical to base device function we | ||
1257 | * can accept failure. If it fails we don't allow iov to be enabled */ | ||
1258 | if (hw->mac.type == e1000_82576) { | ||
1259 | /* 82576 supports a maximum of 7 VFs in addition to the PF */ | ||
1260 | unsigned int num_vfs = (max_vfs > 7) ? 7 : max_vfs; | ||
1261 | int i; | ||
1262 | unsigned char mac_addr[ETH_ALEN]; | ||
1263 | |||
1264 | if (num_vfs) { | ||
1265 | adapter->vf_data = kcalloc(num_vfs, | ||
1266 | sizeof(struct vf_data_storage), | ||
1267 | GFP_KERNEL); | ||
1268 | if (!adapter->vf_data) { | ||
1269 | dev_err(&pdev->dev, | ||
1270 | "Could not allocate VF private data - " | ||
1271 | "IOV enable failed\n"); | ||
1272 | } else { | ||
1273 | err = pci_enable_sriov(pdev, num_vfs); | ||
1274 | if (!err) { | ||
1275 | adapter->vfs_allocated_count = num_vfs; | ||
1276 | dev_info(&pdev->dev, | ||
1277 | "%d vfs allocated\n", | ||
1278 | num_vfs); | ||
1279 | for (i = 0; | ||
1280 | i < adapter->vfs_allocated_count; | ||
1281 | i++) { | ||
1282 | random_ether_addr(mac_addr); | ||
1283 | igb_set_vf_mac(adapter, i, | ||
1284 | mac_addr); | ||
1285 | } | ||
1286 | } else { | ||
1287 | kfree(adapter->vf_data); | ||
1288 | adapter->vf_data = NULL; | ||
1289 | } | ||
1290 | } | ||
1291 | } | ||
1292 | } | ||
1293 | |||
1294 | #endif | ||
1241 | /* setup the private structure */ | 1295 | /* setup the private structure */ |
1242 | err = igb_sw_init(adapter); | 1296 | err = igb_sw_init(adapter); |
1243 | if (err) | 1297 | if (err) |
@@ -1397,19 +1451,6 @@ static int __devinit igb_probe(struct pci_dev *pdev, | |||
1397 | if (err) | 1451 | if (err) |
1398 | goto err_register; | 1452 | goto err_register; |
1399 | 1453 | ||
1400 | #ifdef CONFIG_PCI_IOV | ||
1401 | /* since iov functionality isn't critical to base device function we | ||
1402 | * can accept failure. If it fails we don't allow iov to be enabled */ | ||
1403 | if (hw->mac.type == e1000_82576) { | ||
1404 | err = pci_enable_sriov(pdev, 0); | ||
1405 | if (!err) | ||
1406 | err = device_create_file(&netdev->dev, | ||
1407 | &dev_attr_num_vfs); | ||
1408 | if (err) | ||
1409 | dev_err(&pdev->dev, "Failed to initialize IOV\n"); | ||
1410 | } | ||
1411 | |||
1412 | #endif | ||
1413 | #ifdef CONFIG_IGB_DCA | 1454 | #ifdef CONFIG_IGB_DCA |
1414 | if (dca_add_requester(&pdev->dev) == 0) { | 1455 | if (dca_add_requester(&pdev->dev) == 0) { |
1415 | adapter->flags |= IGB_FLAG_DCA_ENABLED; | 1456 | adapter->flags |= IGB_FLAG_DCA_ENABLED; |
@@ -5422,89 +5463,4 @@ static void igb_vmm_control(struct igb_adapter *adapter) | |||
5422 | igb_vmdq_set_replication_pf(hw, true); | 5463 | igb_vmdq_set_replication_pf(hw, true); |
5423 | } | 5464 | } |
5424 | 5465 | ||
5425 | #ifdef CONFIG_PCI_IOV | ||
5426 | static ssize_t igb_show_num_vfs(struct device *dev, | ||
5427 | struct device_attribute *attr, char *buf) | ||
5428 | { | ||
5429 | struct igb_adapter *adapter = netdev_priv(to_net_dev(dev)); | ||
5430 | |||
5431 | return sprintf(buf, "%d\n", adapter->vfs_allocated_count); | ||
5432 | } | ||
5433 | |||
5434 | static ssize_t igb_set_num_vfs(struct device *dev, | ||
5435 | struct device_attribute *attr, | ||
5436 | const char *buf, size_t count) | ||
5437 | { | ||
5438 | struct net_device *netdev = to_net_dev(dev); | ||
5439 | struct igb_adapter *adapter = netdev_priv(netdev); | ||
5440 | struct e1000_hw *hw = &adapter->hw; | ||
5441 | struct pci_dev *pdev = adapter->pdev; | ||
5442 | unsigned int num_vfs, i; | ||
5443 | unsigned char mac_addr[ETH_ALEN]; | ||
5444 | int err; | ||
5445 | |||
5446 | sscanf(buf, "%u", &num_vfs); | ||
5447 | |||
5448 | if (num_vfs > 7) | ||
5449 | num_vfs = 7; | ||
5450 | |||
5451 | /* value unchanged do nothing */ | ||
5452 | if (num_vfs == adapter->vfs_allocated_count) | ||
5453 | return count; | ||
5454 | |||
5455 | if (netdev->flags & IFF_UP) | ||
5456 | igb_close(netdev); | ||
5457 | |||
5458 | igb_reset_interrupt_capability(adapter); | ||
5459 | igb_free_queues(adapter); | ||
5460 | adapter->tx_ring = NULL; | ||
5461 | adapter->rx_ring = NULL; | ||
5462 | adapter->vfs_allocated_count = 0; | ||
5463 | |||
5464 | /* reclaim resources allocated to VFs since we are changing count */ | ||
5465 | if (adapter->vf_data) { | ||
5466 | /* disable iov and allow time for transactions to clear */ | ||
5467 | pci_disable_sriov(pdev); | ||
5468 | msleep(500); | ||
5469 | |||
5470 | kfree(adapter->vf_data); | ||
5471 | adapter->vf_data = NULL; | ||
5472 | wr32(E1000_IOVCTL, E1000_IOVCTL_REUSE_VFQ); | ||
5473 | msleep(100); | ||
5474 | dev_info(&pdev->dev, "IOV Disabled\n"); | ||
5475 | } | ||
5476 | |||
5477 | if (num_vfs) { | ||
5478 | adapter->vf_data = kcalloc(num_vfs, | ||
5479 | sizeof(struct vf_data_storage), | ||
5480 | GFP_KERNEL); | ||
5481 | if (!adapter->vf_data) { | ||
5482 | dev_err(&pdev->dev, "Could not allocate VF private " | ||
5483 | "data - IOV enable failed\n"); | ||
5484 | } else { | ||
5485 | err = pci_enable_sriov(pdev, num_vfs); | ||
5486 | if (!err) { | ||
5487 | adapter->vfs_allocated_count = num_vfs; | ||
5488 | dev_info(&pdev->dev, "%d vfs allocated\n", num_vfs); | ||
5489 | for (i = 0; i < adapter->vfs_allocated_count; i++) { | ||
5490 | random_ether_addr(mac_addr); | ||
5491 | igb_set_vf_mac(adapter, i, mac_addr); | ||
5492 | } | ||
5493 | } else { | ||
5494 | kfree(adapter->vf_data); | ||
5495 | adapter->vf_data = NULL; | ||
5496 | } | ||
5497 | } | ||
5498 | } | ||
5499 | |||
5500 | igb_set_interrupt_capability(adapter); | ||
5501 | igb_alloc_queues(adapter); | ||
5502 | igb_reset(adapter); | ||
5503 | |||
5504 | if (netdev->flags & IFF_UP) | ||
5505 | igb_open(netdev); | ||
5506 | |||
5507 | return count; | ||
5508 | } | ||
5509 | #endif /* CONFIG_PCI_IOV */ | ||
5510 | /* igb_main.c */ | 5466 | /* igb_main.c */ |
diff --git a/drivers/net/igbvf/Makefile b/drivers/net/igbvf/Makefile new file mode 100644 index 000000000000..c2f150d8f2d9 --- /dev/null +++ b/drivers/net/igbvf/Makefile | |||
@@ -0,0 +1,38 @@ | |||
1 | ################################################################################ | ||
2 | # | ||
3 | # Intel(R) 82576 Virtual Function Linux driver | ||
4 | # Copyright(c) 2009 Intel Corporation. | ||
5 | # | ||
6 | # This program is free software; you can redistribute it and/or modify it | ||
7 | # under the terms and conditions of the GNU General Public License, | ||
8 | # version 2, as published by the Free Software Foundation. | ||
9 | # | ||
10 | # This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | # more details. | ||
14 | # | ||
15 | # You should have received a copy of the GNU General Public License along with | ||
16 | # this program; if not, write to the Free Software Foundation, Inc., | ||
17 | # 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | # | ||
19 | # The full GNU General Public License is included in this distribution in | ||
20 | # the file called "COPYING". | ||
21 | # | ||
22 | # Contact Information: | ||
23 | # e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | # Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | # | ||
26 | ################################################################################ | ||
27 | |||
28 | # | ||
29 | # Makefile for the Intel(R) 82576 VF ethernet driver | ||
30 | # | ||
31 | |||
32 | obj-$(CONFIG_IGBVF) += igbvf.o | ||
33 | |||
34 | igbvf-objs := vf.o \ | ||
35 | mbx.o \ | ||
36 | ethtool.o \ | ||
37 | netdev.o | ||
38 | |||
diff --git a/drivers/net/igbvf/defines.h b/drivers/net/igbvf/defines.h new file mode 100644 index 000000000000..88a47537518a --- /dev/null +++ b/drivers/net/igbvf/defines.h | |||
@@ -0,0 +1,125 @@ | |||
1 | /******************************************************************************* | ||
2 | |||
3 | Intel(R) 82576 Virtual Function Linux driver | ||
4 | Copyright(c) 1999 - 2009 Intel Corporation. | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify it | ||
7 | under the terms and conditions of the GNU General Public License, | ||
8 | version 2, as published by the Free Software Foundation. | ||
9 | |||
10 | This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along with | ||
16 | this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | |||
19 | The full GNU General Public License is included in this distribution in | ||
20 | the file called "COPYING". | ||
21 | |||
22 | Contact Information: | ||
23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | |||
26 | *******************************************************************************/ | ||
27 | |||
28 | #ifndef _E1000_DEFINES_H_ | ||
29 | #define _E1000_DEFINES_H_ | ||
30 | |||
31 | /* Number of Transmit and Receive Descriptors must be a multiple of 8 */ | ||
32 | #define REQ_TX_DESCRIPTOR_MULTIPLE 8 | ||
33 | #define REQ_RX_DESCRIPTOR_MULTIPLE 8 | ||
34 | |||
35 | /* IVAR valid bit */ | ||
36 | #define E1000_IVAR_VALID 0x80 | ||
37 | |||
38 | /* Receive Descriptor bit definitions */ | ||
39 | #define E1000_RXD_STAT_DD 0x01 /* Descriptor Done */ | ||
40 | #define E1000_RXD_STAT_EOP 0x02 /* End of Packet */ | ||
41 | #define E1000_RXD_STAT_IXSM 0x04 /* Ignore checksum */ | ||
42 | #define E1000_RXD_STAT_VP 0x08 /* IEEE VLAN Packet */ | ||
43 | #define E1000_RXD_STAT_UDPCS 0x10 /* UDP xsum calculated */ | ||
44 | #define E1000_RXD_STAT_TCPCS 0x20 /* TCP xsum calculated */ | ||
45 | #define E1000_RXD_STAT_IPCS 0x40 /* IP xsum calculated */ | ||
46 | #define E1000_RXD_ERR_SE 0x02 /* Symbol Error */ | ||
47 | #define E1000_RXD_SPC_VLAN_MASK 0x0FFF /* VLAN ID is in lower 12 bits */ | ||
48 | |||
49 | #define E1000_RXDEXT_STATERR_CE 0x01000000 | ||
50 | #define E1000_RXDEXT_STATERR_SE 0x02000000 | ||
51 | #define E1000_RXDEXT_STATERR_SEQ 0x04000000 | ||
52 | #define E1000_RXDEXT_STATERR_CXE 0x10000000 | ||
53 | #define E1000_RXDEXT_STATERR_TCPE 0x20000000 | ||
54 | #define E1000_RXDEXT_STATERR_IPE 0x40000000 | ||
55 | #define E1000_RXDEXT_STATERR_RXE 0x80000000 | ||
56 | |||
57 | |||
58 | /* Same mask, but for extended and packet split descriptors */ | ||
59 | #define E1000_RXDEXT_ERR_FRAME_ERR_MASK ( \ | ||
60 | E1000_RXDEXT_STATERR_CE | \ | ||
61 | E1000_RXDEXT_STATERR_SE | \ | ||
62 | E1000_RXDEXT_STATERR_SEQ | \ | ||
63 | E1000_RXDEXT_STATERR_CXE | \ | ||
64 | E1000_RXDEXT_STATERR_RXE) | ||
65 | |||
66 | /* Device Control */ | ||
67 | #define E1000_CTRL_RST 0x04000000 /* Global reset */ | ||
68 | |||
69 | /* Device Status */ | ||
70 | #define E1000_STATUS_FD 0x00000001 /* Full duplex.0=half,1=full */ | ||
71 | #define E1000_STATUS_LU 0x00000002 /* Link up.0=no,1=link */ | ||
72 | #define E1000_STATUS_TXOFF 0x00000010 /* transmission paused */ | ||
73 | #define E1000_STATUS_SPEED_10 0x00000000 /* Speed 10Mb/s */ | ||
74 | #define E1000_STATUS_SPEED_100 0x00000040 /* Speed 100Mb/s */ | ||
75 | #define E1000_STATUS_SPEED_1000 0x00000080 /* Speed 1000Mb/s */ | ||
76 | |||
77 | #define SPEED_10 10 | ||
78 | #define SPEED_100 100 | ||
79 | #define SPEED_1000 1000 | ||
80 | #define HALF_DUPLEX 1 | ||
81 | #define FULL_DUPLEX 2 | ||
82 | |||
83 | /* Transmit Descriptor bit definitions */ | ||
84 | #define E1000_TXD_POPTS_IXSM 0x01 /* Insert IP checksum */ | ||
85 | #define E1000_TXD_POPTS_TXSM 0x02 /* Insert TCP/UDP checksum */ | ||
86 | #define E1000_TXD_CMD_DEXT 0x20000000 /* Descriptor extension (0 = legacy) */ | ||
87 | #define E1000_TXD_STAT_DD 0x00000001 /* Descriptor Done */ | ||
88 | |||
89 | #define MAX_JUMBO_FRAME_SIZE 0x3F00 | ||
90 | |||
91 | /* 802.1q VLAN Packet Size */ | ||
92 | #define VLAN_TAG_SIZE 4 /* 802.3ac tag (not DMA'd) */ | ||
93 | |||
94 | /* Error Codes */ | ||
95 | #define E1000_SUCCESS 0 | ||
96 | #define E1000_ERR_CONFIG 3 | ||
97 | #define E1000_ERR_MAC_INIT 5 | ||
98 | #define E1000_ERR_MBX 15 | ||
99 | |||
100 | #ifndef ETH_ADDR_LEN | ||
101 | #define ETH_ADDR_LEN 6 | ||
102 | #endif | ||
103 | |||
104 | /* SRRCTL bit definitions */ | ||
105 | #define E1000_SRRCTL_BSIZEPKT_SHIFT 10 /* Shift _right_ */ | ||
106 | #define E1000_SRRCTL_BSIZEHDRSIZE_MASK 0x00000F00 | ||
107 | #define E1000_SRRCTL_BSIZEHDRSIZE_SHIFT 2 /* Shift _left_ */ | ||
108 | #define E1000_SRRCTL_DESCTYPE_ADV_ONEBUF 0x02000000 | ||
109 | #define E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS 0x0A000000 | ||
110 | #define E1000_SRRCTL_DESCTYPE_MASK 0x0E000000 | ||
111 | #define E1000_SRRCTL_DROP_EN 0x80000000 | ||
112 | |||
113 | #define E1000_SRRCTL_BSIZEPKT_MASK 0x0000007F | ||
114 | #define E1000_SRRCTL_BSIZEHDR_MASK 0x00003F00 | ||
115 | |||
116 | /* Additional Descriptor Control definitions */ | ||
117 | #define E1000_TXDCTL_QUEUE_ENABLE 0x02000000 /* Enable specific Tx Queue */ | ||
118 | #define E1000_RXDCTL_QUEUE_ENABLE 0x02000000 /* Enable specific Rx Queue */ | ||
119 | |||
120 | /* Direct Cache Access (DCA) definitions */ | ||
121 | #define E1000_DCA_TXCTRL_TX_WB_RO_EN (1 << 11) /* Tx Desc writeback RO bit */ | ||
122 | |||
123 | #define E1000_VF_INIT_TIMEOUT 200 /* Number of retries to clear RSTI */ | ||
124 | |||
125 | #endif /* _E1000_DEFINES_H_ */ | ||
diff --git a/drivers/net/igbvf/ethtool.c b/drivers/net/igbvf/ethtool.c new file mode 100644 index 000000000000..1dcaa6905312 --- /dev/null +++ b/drivers/net/igbvf/ethtool.c | |||
@@ -0,0 +1,540 @@ | |||
1 | /******************************************************************************* | ||
2 | |||
3 | Intel(R) 82576 Virtual Function Linux driver | ||
4 | Copyright(c) 2009 Intel Corporation. | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify it | ||
7 | under the terms and conditions of the GNU General Public License, | ||
8 | version 2, as published by the Free Software Foundation. | ||
9 | |||
10 | This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along with | ||
16 | this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | |||
19 | The full GNU General Public License is included in this distribution in | ||
20 | the file called "COPYING". | ||
21 | |||
22 | Contact Information: | ||
23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | |||
26 | *******************************************************************************/ | ||
27 | |||
28 | /* ethtool support for igbvf */ | ||
29 | |||
30 | #include <linux/netdevice.h> | ||
31 | #include <linux/ethtool.h> | ||
32 | #include <linux/pci.h> | ||
33 | #include <linux/vmalloc.h> | ||
34 | #include <linux/delay.h> | ||
35 | |||
36 | #include "igbvf.h" | ||
37 | #include <linux/if_vlan.h> | ||
38 | |||
39 | |||
40 | struct igbvf_stats { | ||
41 | char stat_string[ETH_GSTRING_LEN]; | ||
42 | int sizeof_stat; | ||
43 | int stat_offset; | ||
44 | int base_stat_offset; | ||
45 | }; | ||
46 | |||
47 | #define IGBVF_STAT(current, base) \ | ||
48 | sizeof(((struct igbvf_adapter *)0)->current), \ | ||
49 | offsetof(struct igbvf_adapter, current), \ | ||
50 | offsetof(struct igbvf_adapter, base) | ||
51 | |||
52 | static const struct igbvf_stats igbvf_gstrings_stats[] = { | ||
53 | { "rx_packets", IGBVF_STAT(stats.gprc, stats.base_gprc) }, | ||
54 | { "tx_packets", IGBVF_STAT(stats.gptc, stats.base_gptc) }, | ||
55 | { "rx_bytes", IGBVF_STAT(stats.gorc, stats.base_gorc) }, | ||
56 | { "tx_bytes", IGBVF_STAT(stats.gotc, stats.base_gotc) }, | ||
57 | { "multicast", IGBVF_STAT(stats.mprc, stats.base_mprc) }, | ||
58 | { "lbrx_bytes", IGBVF_STAT(stats.gorlbc, stats.base_gorlbc) }, | ||
59 | { "lbrx_packets", IGBVF_STAT(stats.gprlbc, stats.base_gprlbc) }, | ||
60 | { "tx_restart_queue", IGBVF_STAT(restart_queue, zero_base) }, | ||
61 | { "rx_long_byte_count", IGBVF_STAT(stats.gorc, stats.base_gorc) }, | ||
62 | { "rx_csum_offload_good", IGBVF_STAT(hw_csum_good, zero_base) }, | ||
63 | { "rx_csum_offload_errors", IGBVF_STAT(hw_csum_err, zero_base) }, | ||
64 | { "rx_header_split", IGBVF_STAT(rx_hdr_split, zero_base) }, | ||
65 | { "alloc_rx_buff_failed", IGBVF_STAT(alloc_rx_buff_failed, zero_base) }, | ||
66 | }; | ||
67 | |||
68 | #define IGBVF_GLOBAL_STATS_LEN ARRAY_SIZE(igbvf_gstrings_stats) | ||
69 | |||
70 | static const char igbvf_gstrings_test[][ETH_GSTRING_LEN] = { | ||
71 | "Link test (on/offline)" | ||
72 | }; | ||
73 | |||
74 | #define IGBVF_TEST_LEN ARRAY_SIZE(igbvf_gstrings_test) | ||
75 | |||
76 | static int igbvf_get_settings(struct net_device *netdev, | ||
77 | struct ethtool_cmd *ecmd) | ||
78 | { | ||
79 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
80 | struct e1000_hw *hw = &adapter->hw; | ||
81 | u32 status; | ||
82 | |||
83 | ecmd->supported = SUPPORTED_1000baseT_Full; | ||
84 | |||
85 | ecmd->advertising = ADVERTISED_1000baseT_Full; | ||
86 | |||
87 | ecmd->port = -1; | ||
88 | ecmd->transceiver = XCVR_DUMMY1; | ||
89 | |||
90 | status = er32(STATUS); | ||
91 | if (status & E1000_STATUS_LU) { | ||
92 | if (status & E1000_STATUS_SPEED_1000) | ||
93 | ecmd->speed = 1000; | ||
94 | else if (status & E1000_STATUS_SPEED_100) | ||
95 | ecmd->speed = 100; | ||
96 | else | ||
97 | ecmd->speed = 10; | ||
98 | |||
99 | if (status & E1000_STATUS_FD) | ||
100 | ecmd->duplex = DUPLEX_FULL; | ||
101 | else | ||
102 | ecmd->duplex = DUPLEX_HALF; | ||
103 | } else { | ||
104 | ecmd->speed = -1; | ||
105 | ecmd->duplex = -1; | ||
106 | } | ||
107 | |||
108 | ecmd->autoneg = AUTONEG_DISABLE; | ||
109 | |||
110 | return 0; | ||
111 | } | ||
112 | |||
113 | static u32 igbvf_get_link(struct net_device *netdev) | ||
114 | { | ||
115 | return netif_carrier_ok(netdev); | ||
116 | } | ||
117 | |||
118 | static int igbvf_set_settings(struct net_device *netdev, | ||
119 | struct ethtool_cmd *ecmd) | ||
120 | { | ||
121 | return -EOPNOTSUPP; | ||
122 | } | ||
123 | |||
124 | static void igbvf_get_pauseparam(struct net_device *netdev, | ||
125 | struct ethtool_pauseparam *pause) | ||
126 | { | ||
127 | return; | ||
128 | } | ||
129 | |||
130 | static int igbvf_set_pauseparam(struct net_device *netdev, | ||
131 | struct ethtool_pauseparam *pause) | ||
132 | { | ||
133 | return -EOPNOTSUPP; | ||
134 | } | ||
135 | |||
136 | static u32 igbvf_get_tx_csum(struct net_device *netdev) | ||
137 | { | ||
138 | return ((netdev->features & NETIF_F_IP_CSUM) != 0); | ||
139 | } | ||
140 | |||
141 | static int igbvf_set_tx_csum(struct net_device *netdev, u32 data) | ||
142 | { | ||
143 | if (data) | ||
144 | netdev->features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM); | ||
145 | else | ||
146 | netdev->features &= ~(NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM); | ||
147 | return 0; | ||
148 | } | ||
149 | |||
150 | static int igbvf_set_tso(struct net_device *netdev, u32 data) | ||
151 | { | ||
152 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
153 | int i; | ||
154 | struct net_device *v_netdev; | ||
155 | |||
156 | if (data) { | ||
157 | netdev->features |= NETIF_F_TSO; | ||
158 | netdev->features |= NETIF_F_TSO6; | ||
159 | } else { | ||
160 | netdev->features &= ~NETIF_F_TSO; | ||
161 | netdev->features &= ~NETIF_F_TSO6; | ||
162 | /* disable TSO on all VLANs if they're present */ | ||
163 | if (!adapter->vlgrp) | ||
164 | goto tso_out; | ||
165 | for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) { | ||
166 | v_netdev = vlan_group_get_device(adapter->vlgrp, i); | ||
167 | if (!v_netdev) | ||
168 | continue; | ||
169 | |||
170 | v_netdev->features &= ~NETIF_F_TSO; | ||
171 | v_netdev->features &= ~NETIF_F_TSO6; | ||
172 | vlan_group_set_device(adapter->vlgrp, i, v_netdev); | ||
173 | } | ||
174 | } | ||
175 | |||
176 | tso_out: | ||
177 | dev_info(&adapter->pdev->dev, "TSO is %s\n", | ||
178 | data ? "Enabled" : "Disabled"); | ||
179 | adapter->flags |= FLAG_TSO_FORCE; | ||
180 | return 0; | ||
181 | } | ||
182 | |||
183 | static u32 igbvf_get_msglevel(struct net_device *netdev) | ||
184 | { | ||
185 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
186 | return adapter->msg_enable; | ||
187 | } | ||
188 | |||
189 | static void igbvf_set_msglevel(struct net_device *netdev, u32 data) | ||
190 | { | ||
191 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
192 | adapter->msg_enable = data; | ||
193 | } | ||
194 | |||
195 | static int igbvf_get_regs_len(struct net_device *netdev) | ||
196 | { | ||
197 | #define IGBVF_REGS_LEN 8 | ||
198 | return IGBVF_REGS_LEN * sizeof(u32); | ||
199 | } | ||
200 | |||
201 | static void igbvf_get_regs(struct net_device *netdev, | ||
202 | struct ethtool_regs *regs, void *p) | ||
203 | { | ||
204 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
205 | struct e1000_hw *hw = &adapter->hw; | ||
206 | u32 *regs_buff = p; | ||
207 | u8 revision_id; | ||
208 | |||
209 | memset(p, 0, IGBVF_REGS_LEN * sizeof(u32)); | ||
210 | |||
211 | pci_read_config_byte(adapter->pdev, PCI_REVISION_ID, &revision_id); | ||
212 | |||
213 | regs->version = (1 << 24) | (revision_id << 16) | adapter->pdev->device; | ||
214 | |||
215 | regs_buff[0] = er32(CTRL); | ||
216 | regs_buff[1] = er32(STATUS); | ||
217 | |||
218 | regs_buff[2] = er32(RDLEN(0)); | ||
219 | regs_buff[3] = er32(RDH(0)); | ||
220 | regs_buff[4] = er32(RDT(0)); | ||
221 | |||
222 | regs_buff[5] = er32(TDLEN(0)); | ||
223 | regs_buff[6] = er32(TDH(0)); | ||
224 | regs_buff[7] = er32(TDT(0)); | ||
225 | } | ||
226 | |||
227 | static int igbvf_get_eeprom_len(struct net_device *netdev) | ||
228 | { | ||
229 | return 0; | ||
230 | } | ||
231 | |||
232 | static int igbvf_get_eeprom(struct net_device *netdev, | ||
233 | struct ethtool_eeprom *eeprom, u8 *bytes) | ||
234 | { | ||
235 | return -EOPNOTSUPP; | ||
236 | } | ||
237 | |||
238 | static int igbvf_set_eeprom(struct net_device *netdev, | ||
239 | struct ethtool_eeprom *eeprom, u8 *bytes) | ||
240 | { | ||
241 | return -EOPNOTSUPP; | ||
242 | } | ||
243 | |||
244 | static void igbvf_get_drvinfo(struct net_device *netdev, | ||
245 | struct ethtool_drvinfo *drvinfo) | ||
246 | { | ||
247 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
248 | char firmware_version[32] = "N/A"; | ||
249 | |||
250 | strncpy(drvinfo->driver, igbvf_driver_name, 32); | ||
251 | strncpy(drvinfo->version, igbvf_driver_version, 32); | ||
252 | strncpy(drvinfo->fw_version, firmware_version, 32); | ||
253 | strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32); | ||
254 | drvinfo->regdump_len = igbvf_get_regs_len(netdev); | ||
255 | drvinfo->eedump_len = igbvf_get_eeprom_len(netdev); | ||
256 | } | ||
257 | |||
258 | static void igbvf_get_ringparam(struct net_device *netdev, | ||
259 | struct ethtool_ringparam *ring) | ||
260 | { | ||
261 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
262 | struct igbvf_ring *tx_ring = adapter->tx_ring; | ||
263 | struct igbvf_ring *rx_ring = adapter->rx_ring; | ||
264 | |||
265 | ring->rx_max_pending = IGBVF_MAX_RXD; | ||
266 | ring->tx_max_pending = IGBVF_MAX_TXD; | ||
267 | ring->rx_mini_max_pending = 0; | ||
268 | ring->rx_jumbo_max_pending = 0; | ||
269 | ring->rx_pending = rx_ring->count; | ||
270 | ring->tx_pending = tx_ring->count; | ||
271 | ring->rx_mini_pending = 0; | ||
272 | ring->rx_jumbo_pending = 0; | ||
273 | } | ||
274 | |||
275 | static int igbvf_set_ringparam(struct net_device *netdev, | ||
276 | struct ethtool_ringparam *ring) | ||
277 | { | ||
278 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
279 | struct igbvf_ring *temp_ring; | ||
280 | int err; | ||
281 | u32 new_rx_count, new_tx_count; | ||
282 | |||
283 | if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending)) | ||
284 | return -EINVAL; | ||
285 | |||
286 | new_rx_count = max(ring->rx_pending, (u32)IGBVF_MIN_RXD); | ||
287 | new_rx_count = min(new_rx_count, (u32)IGBVF_MAX_RXD); | ||
288 | new_rx_count = ALIGN(new_rx_count, REQ_RX_DESCRIPTOR_MULTIPLE); | ||
289 | |||
290 | new_tx_count = max(ring->tx_pending, (u32)IGBVF_MIN_TXD); | ||
291 | new_tx_count = min(new_tx_count, (u32)IGBVF_MAX_TXD); | ||
292 | new_tx_count = ALIGN(new_tx_count, REQ_TX_DESCRIPTOR_MULTIPLE); | ||
293 | |||
294 | if ((new_tx_count == adapter->tx_ring->count) && | ||
295 | (new_rx_count == adapter->rx_ring->count)) { | ||
296 | /* nothing to do */ | ||
297 | return 0; | ||
298 | } | ||
299 | |||
300 | temp_ring = vmalloc(sizeof(struct igbvf_ring)); | ||
301 | if (!temp_ring) | ||
302 | return -ENOMEM; | ||
303 | |||
304 | while (test_and_set_bit(__IGBVF_RESETTING, &adapter->state)) | ||
305 | msleep(1); | ||
306 | |||
307 | if (netif_running(adapter->netdev)) | ||
308 | igbvf_down(adapter); | ||
309 | |||
310 | /* | ||
311 | * We can't just free everything and then setup again, | ||
312 | * because the ISRs in MSI-X mode get passed pointers | ||
313 | * to the tx and rx ring structs. | ||
314 | */ | ||
315 | if (new_tx_count != adapter->tx_ring->count) { | ||
316 | memcpy(temp_ring, adapter->tx_ring, sizeof(struct igbvf_ring)); | ||
317 | |||
318 | temp_ring->count = new_tx_count; | ||
319 | err = igbvf_setup_tx_resources(adapter, temp_ring); | ||
320 | if (err) | ||
321 | goto err_setup; | ||
322 | |||
323 | igbvf_free_tx_resources(adapter->tx_ring); | ||
324 | |||
325 | memcpy(adapter->tx_ring, temp_ring, sizeof(struct igbvf_ring)); | ||
326 | } | ||
327 | |||
328 | if (new_rx_count != adapter->rx_ring->count) { | ||
329 | memcpy(temp_ring, adapter->rx_ring, sizeof(struct igbvf_ring)); | ||
330 | |||
331 | temp_ring->count = new_rx_count; | ||
332 | err = igbvf_setup_rx_resources(adapter, temp_ring); | ||
333 | if (err) | ||
334 | goto err_setup; | ||
335 | |||
336 | igbvf_free_rx_resources(adapter->rx_ring); | ||
337 | |||
338 | memcpy(adapter->rx_ring, temp_ring,sizeof(struct igbvf_ring)); | ||
339 | } | ||
340 | |||
341 | err = 0; | ||
342 | err_setup: | ||
343 | if (netif_running(adapter->netdev)) | ||
344 | igbvf_up(adapter); | ||
345 | |||
346 | clear_bit(__IGBVF_RESETTING, &adapter->state); | ||
347 | vfree(temp_ring); | ||
348 | return err; | ||
349 | } | ||
350 | |||
351 | static int igbvf_link_test(struct igbvf_adapter *adapter, u64 *data) | ||
352 | { | ||
353 | struct e1000_hw *hw = &adapter->hw; | ||
354 | *data = 0; | ||
355 | |||
356 | hw->mac.ops.check_for_link(hw); | ||
357 | |||
358 | if (!(er32(STATUS) & E1000_STATUS_LU)) | ||
359 | *data = 1; | ||
360 | |||
361 | return *data; | ||
362 | } | ||
363 | |||
364 | static int igbvf_get_self_test_count(struct net_device *netdev) | ||
365 | { | ||
366 | return IGBVF_TEST_LEN; | ||
367 | } | ||
368 | |||
369 | static int igbvf_get_stats_count(struct net_device *netdev) | ||
370 | { | ||
371 | return IGBVF_GLOBAL_STATS_LEN; | ||
372 | } | ||
373 | |||
374 | static void igbvf_diag_test(struct net_device *netdev, | ||
375 | struct ethtool_test *eth_test, u64 *data) | ||
376 | { | ||
377 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
378 | |||
379 | set_bit(__IGBVF_TESTING, &adapter->state); | ||
380 | |||
381 | /* | ||
382 | * Link test performed before hardware reset so autoneg doesn't | ||
383 | * interfere with test result | ||
384 | */ | ||
385 | if (igbvf_link_test(adapter, &data[0])) | ||
386 | eth_test->flags |= ETH_TEST_FL_FAILED; | ||
387 | |||
388 | clear_bit(__IGBVF_TESTING, &adapter->state); | ||
389 | msleep_interruptible(4 * 1000); | ||
390 | } | ||
391 | |||
392 | static void igbvf_get_wol(struct net_device *netdev, | ||
393 | struct ethtool_wolinfo *wol) | ||
394 | { | ||
395 | wol->supported = 0; | ||
396 | wol->wolopts = 0; | ||
397 | |||
398 | return; | ||
399 | } | ||
400 | |||
401 | static int igbvf_set_wol(struct net_device *netdev, | ||
402 | struct ethtool_wolinfo *wol) | ||
403 | { | ||
404 | return -EOPNOTSUPP; | ||
405 | } | ||
406 | |||
407 | static int igbvf_phys_id(struct net_device *netdev, u32 data) | ||
408 | { | ||
409 | return 0; | ||
410 | } | ||
411 | |||
412 | static int igbvf_get_coalesce(struct net_device *netdev, | ||
413 | struct ethtool_coalesce *ec) | ||
414 | { | ||
415 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
416 | |||
417 | if (adapter->itr_setting <= 3) | ||
418 | ec->rx_coalesce_usecs = adapter->itr_setting; | ||
419 | else | ||
420 | ec->rx_coalesce_usecs = adapter->itr_setting >> 2; | ||
421 | |||
422 | return 0; | ||
423 | } | ||
424 | |||
425 | static int igbvf_set_coalesce(struct net_device *netdev, | ||
426 | struct ethtool_coalesce *ec) | ||
427 | { | ||
428 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
429 | struct e1000_hw *hw = &adapter->hw; | ||
430 | |||
431 | if ((ec->rx_coalesce_usecs > IGBVF_MAX_ITR_USECS) || | ||
432 | ((ec->rx_coalesce_usecs > 3) && | ||
433 | (ec->rx_coalesce_usecs < IGBVF_MIN_ITR_USECS)) || | ||
434 | (ec->rx_coalesce_usecs == 2)) | ||
435 | return -EINVAL; | ||
436 | |||
437 | /* convert to rate of irq's per second */ | ||
438 | if (ec->rx_coalesce_usecs && ec->rx_coalesce_usecs <= 3) { | ||
439 | adapter->itr = IGBVF_START_ITR; | ||
440 | adapter->itr_setting = ec->rx_coalesce_usecs; | ||
441 | } else { | ||
442 | adapter->itr = ec->rx_coalesce_usecs << 2; | ||
443 | adapter->itr_setting = adapter->itr; | ||
444 | } | ||
445 | |||
446 | writel(adapter->itr, | ||
447 | hw->hw_addr + adapter->rx_ring[0].itr_register); | ||
448 | |||
449 | return 0; | ||
450 | } | ||
451 | |||
452 | static int igbvf_nway_reset(struct net_device *netdev) | ||
453 | { | ||
454 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
455 | if (netif_running(netdev)) | ||
456 | igbvf_reinit_locked(adapter); | ||
457 | return 0; | ||
458 | } | ||
459 | |||
460 | |||
461 | static void igbvf_get_ethtool_stats(struct net_device *netdev, | ||
462 | struct ethtool_stats *stats, | ||
463 | u64 *data) | ||
464 | { | ||
465 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
466 | int i; | ||
467 | |||
468 | igbvf_update_stats(adapter); | ||
469 | for (i = 0; i < IGBVF_GLOBAL_STATS_LEN; i++) { | ||
470 | char *p = (char *)adapter + | ||
471 | igbvf_gstrings_stats[i].stat_offset; | ||
472 | char *b = (char *)adapter + | ||
473 | igbvf_gstrings_stats[i].base_stat_offset; | ||
474 | data[i] = ((igbvf_gstrings_stats[i].sizeof_stat == | ||
475 | sizeof(u64)) ? (*(u64 *)p - *(u64 *)b) : | ||
476 | (*(u32 *)p - *(u32 *)b)); | ||
477 | } | ||
478 | |||
479 | } | ||
480 | |||
481 | static void igbvf_get_strings(struct net_device *netdev, u32 stringset, | ||
482 | u8 *data) | ||
483 | { | ||
484 | u8 *p = data; | ||
485 | int i; | ||
486 | |||
487 | switch (stringset) { | ||
488 | case ETH_SS_TEST: | ||
489 | memcpy(data, *igbvf_gstrings_test, sizeof(igbvf_gstrings_test)); | ||
490 | break; | ||
491 | case ETH_SS_STATS: | ||
492 | for (i = 0; i < IGBVF_GLOBAL_STATS_LEN; i++) { | ||
493 | memcpy(p, igbvf_gstrings_stats[i].stat_string, | ||
494 | ETH_GSTRING_LEN); | ||
495 | p += ETH_GSTRING_LEN; | ||
496 | } | ||
497 | break; | ||
498 | } | ||
499 | } | ||
500 | |||
501 | static const struct ethtool_ops igbvf_ethtool_ops = { | ||
502 | .get_settings = igbvf_get_settings, | ||
503 | .set_settings = igbvf_set_settings, | ||
504 | .get_drvinfo = igbvf_get_drvinfo, | ||
505 | .get_regs_len = igbvf_get_regs_len, | ||
506 | .get_regs = igbvf_get_regs, | ||
507 | .get_wol = igbvf_get_wol, | ||
508 | .set_wol = igbvf_set_wol, | ||
509 | .get_msglevel = igbvf_get_msglevel, | ||
510 | .set_msglevel = igbvf_set_msglevel, | ||
511 | .nway_reset = igbvf_nway_reset, | ||
512 | .get_link = igbvf_get_link, | ||
513 | .get_eeprom_len = igbvf_get_eeprom_len, | ||
514 | .get_eeprom = igbvf_get_eeprom, | ||
515 | .set_eeprom = igbvf_set_eeprom, | ||
516 | .get_ringparam = igbvf_get_ringparam, | ||
517 | .set_ringparam = igbvf_set_ringparam, | ||
518 | .get_pauseparam = igbvf_get_pauseparam, | ||
519 | .set_pauseparam = igbvf_set_pauseparam, | ||
520 | .get_tx_csum = igbvf_get_tx_csum, | ||
521 | .set_tx_csum = igbvf_set_tx_csum, | ||
522 | .get_sg = ethtool_op_get_sg, | ||
523 | .set_sg = ethtool_op_set_sg, | ||
524 | .get_tso = ethtool_op_get_tso, | ||
525 | .set_tso = igbvf_set_tso, | ||
526 | .self_test = igbvf_diag_test, | ||
527 | .get_strings = igbvf_get_strings, | ||
528 | .phys_id = igbvf_phys_id, | ||
529 | .get_ethtool_stats = igbvf_get_ethtool_stats, | ||
530 | .self_test_count = igbvf_get_self_test_count, | ||
531 | .get_stats_count = igbvf_get_stats_count, | ||
532 | .get_coalesce = igbvf_get_coalesce, | ||
533 | .set_coalesce = igbvf_set_coalesce, | ||
534 | }; | ||
535 | |||
536 | void igbvf_set_ethtool_ops(struct net_device *netdev) | ||
537 | { | ||
538 | /* have to "undeclare" const on this struct to remove warnings */ | ||
539 | SET_ETHTOOL_OPS(netdev, (struct ethtool_ops *)&igbvf_ethtool_ops); | ||
540 | } | ||
diff --git a/drivers/net/igbvf/igbvf.h b/drivers/net/igbvf/igbvf.h new file mode 100644 index 000000000000..4bff35e46871 --- /dev/null +++ b/drivers/net/igbvf/igbvf.h | |||
@@ -0,0 +1,332 @@ | |||
1 | /******************************************************************************* | ||
2 | |||
3 | Intel(R) 82576 Virtual Function Linux driver | ||
4 | Copyright(c) 2009 Intel Corporation. | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify it | ||
7 | under the terms and conditions of the GNU General Public License, | ||
8 | version 2, as published by the Free Software Foundation. | ||
9 | |||
10 | This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along with | ||
16 | this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | |||
19 | The full GNU General Public License is included in this distribution in | ||
20 | the file called "COPYING". | ||
21 | |||
22 | Contact Information: | ||
23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | |||
26 | *******************************************************************************/ | ||
27 | |||
28 | /* Linux PRO/1000 Ethernet Driver main header file */ | ||
29 | |||
30 | #ifndef _IGBVF_H_ | ||
31 | #define _IGBVF_H_ | ||
32 | |||
33 | #include <linux/types.h> | ||
34 | #include <linux/timer.h> | ||
35 | #include <linux/io.h> | ||
36 | #include <linux/netdevice.h> | ||
37 | |||
38 | |||
39 | #include "vf.h" | ||
40 | |||
41 | /* Forward declarations */ | ||
42 | struct igbvf_info; | ||
43 | struct igbvf_adapter; | ||
44 | |||
45 | /* Interrupt defines */ | ||
46 | #define IGBVF_START_ITR 648 /* ~6000 ints/sec */ | ||
47 | |||
48 | /* Interrupt modes, as used by the IntMode paramter */ | ||
49 | #define IGBVF_INT_MODE_LEGACY 0 | ||
50 | #define IGBVF_INT_MODE_MSI 1 | ||
51 | #define IGBVF_INT_MODE_MSIX 2 | ||
52 | |||
53 | /* Tx/Rx descriptor defines */ | ||
54 | #define IGBVF_DEFAULT_TXD 256 | ||
55 | #define IGBVF_MAX_TXD 4096 | ||
56 | #define IGBVF_MIN_TXD 80 | ||
57 | |||
58 | #define IGBVF_DEFAULT_RXD 256 | ||
59 | #define IGBVF_MAX_RXD 4096 | ||
60 | #define IGBVF_MIN_RXD 80 | ||
61 | |||
62 | #define IGBVF_MIN_ITR_USECS 10 /* 100000 irq/sec */ | ||
63 | #define IGBVF_MAX_ITR_USECS 10000 /* 100 irq/sec */ | ||
64 | |||
65 | /* RX descriptor control thresholds. | ||
66 | * PTHRESH - MAC will consider prefetch if it has fewer than this number of | ||
67 | * descriptors available in its onboard memory. | ||
68 | * Setting this to 0 disables RX descriptor prefetch. | ||
69 | * HTHRESH - MAC will only prefetch if there are at least this many descriptors | ||
70 | * available in host memory. | ||
71 | * If PTHRESH is 0, this should also be 0. | ||
72 | * WTHRESH - RX descriptor writeback threshold - MAC will delay writing back | ||
73 | * descriptors until either it has this many to write back, or the | ||
74 | * ITR timer expires. | ||
75 | */ | ||
76 | #define IGBVF_RX_PTHRESH 16 | ||
77 | #define IGBVF_RX_HTHRESH 8 | ||
78 | #define IGBVF_RX_WTHRESH 1 | ||
79 | |||
80 | /* this is the size past which hardware will drop packets when setting LPE=0 */ | ||
81 | #define MAXIMUM_ETHERNET_VLAN_SIZE 1522 | ||
82 | |||
83 | #define IGBVF_FC_PAUSE_TIME 0x0680 /* 858 usec */ | ||
84 | |||
85 | /* How many Tx Descriptors do we need to call netif_wake_queue ? */ | ||
86 | #define IGBVF_TX_QUEUE_WAKE 32 | ||
87 | /* How many Rx Buffers do we bundle into one write to the hardware ? */ | ||
88 | #define IGBVF_RX_BUFFER_WRITE 16 /* Must be power of 2 */ | ||
89 | |||
90 | #define AUTO_ALL_MODES 0 | ||
91 | #define IGBVF_EEPROM_APME 0x0400 | ||
92 | |||
93 | #define IGBVF_MNG_VLAN_NONE (-1) | ||
94 | |||
95 | /* Number of packet split data buffers (not including the header buffer) */ | ||
96 | #define PS_PAGE_BUFFERS (MAX_PS_BUFFERS - 1) | ||
97 | |||
98 | enum igbvf_boards { | ||
99 | board_vf, | ||
100 | }; | ||
101 | |||
102 | struct igbvf_queue_stats { | ||
103 | u64 packets; | ||
104 | u64 bytes; | ||
105 | }; | ||
106 | |||
107 | /* | ||
108 | * wrappers around a pointer to a socket buffer, | ||
109 | * so a DMA handle can be stored along with the buffer | ||
110 | */ | ||
111 | struct igbvf_buffer { | ||
112 | dma_addr_t dma; | ||
113 | struct sk_buff *skb; | ||
114 | union { | ||
115 | /* Tx */ | ||
116 | struct { | ||
117 | unsigned long time_stamp; | ||
118 | u16 length; | ||
119 | u16 next_to_watch; | ||
120 | }; | ||
121 | /* Rx */ | ||
122 | struct { | ||
123 | struct page *page; | ||
124 | u64 page_dma; | ||
125 | unsigned int page_offset; | ||
126 | }; | ||
127 | }; | ||
128 | struct page *page; | ||
129 | }; | ||
130 | |||
131 | union igbvf_desc { | ||
132 | union e1000_adv_rx_desc rx_desc; | ||
133 | union e1000_adv_tx_desc tx_desc; | ||
134 | struct e1000_adv_tx_context_desc tx_context_desc; | ||
135 | }; | ||
136 | |||
137 | struct igbvf_ring { | ||
138 | struct igbvf_adapter *adapter; /* backlink */ | ||
139 | union igbvf_desc *desc; /* pointer to ring memory */ | ||
140 | dma_addr_t dma; /* phys address of ring */ | ||
141 | unsigned int size; /* length of ring in bytes */ | ||
142 | unsigned int count; /* number of desc. in ring */ | ||
143 | |||
144 | u16 next_to_use; | ||
145 | u16 next_to_clean; | ||
146 | |||
147 | u16 head; | ||
148 | u16 tail; | ||
149 | |||
150 | /* array of buffer information structs */ | ||
151 | struct igbvf_buffer *buffer_info; | ||
152 | struct napi_struct napi; | ||
153 | |||
154 | char name[IFNAMSIZ + 5]; | ||
155 | u32 eims_value; | ||
156 | u32 itr_val; | ||
157 | u16 itr_register; | ||
158 | int set_itr; | ||
159 | |||
160 | struct sk_buff *rx_skb_top; | ||
161 | |||
162 | struct igbvf_queue_stats stats; | ||
163 | }; | ||
164 | |||
165 | /* board specific private data structure */ | ||
166 | struct igbvf_adapter { | ||
167 | struct timer_list watchdog_timer; | ||
168 | struct timer_list blink_timer; | ||
169 | |||
170 | struct work_struct reset_task; | ||
171 | struct work_struct watchdog_task; | ||
172 | |||
173 | const struct igbvf_info *ei; | ||
174 | |||
175 | struct vlan_group *vlgrp; | ||
176 | u32 bd_number; | ||
177 | u32 rx_buffer_len; | ||
178 | u32 polling_interval; | ||
179 | u16 mng_vlan_id; | ||
180 | u16 link_speed; | ||
181 | u16 link_duplex; | ||
182 | |||
183 | spinlock_t tx_queue_lock; /* prevent concurrent tail updates */ | ||
184 | |||
185 | /* track device up/down/testing state */ | ||
186 | unsigned long state; | ||
187 | |||
188 | /* Interrupt Throttle Rate */ | ||
189 | u32 itr; | ||
190 | u32 itr_setting; | ||
191 | u16 tx_itr; | ||
192 | u16 rx_itr; | ||
193 | |||
194 | /* | ||
195 | * Tx | ||
196 | */ | ||
197 | struct igbvf_ring *tx_ring /* One per active queue */ | ||
198 | ____cacheline_aligned_in_smp; | ||
199 | |||
200 | unsigned long tx_queue_len; | ||
201 | unsigned int restart_queue; | ||
202 | u32 txd_cmd; | ||
203 | |||
204 | bool detect_tx_hung; | ||
205 | u8 tx_timeout_factor; | ||
206 | |||
207 | u32 tx_int_delay; | ||
208 | u32 tx_abs_int_delay; | ||
209 | |||
210 | unsigned int total_tx_bytes; | ||
211 | unsigned int total_tx_packets; | ||
212 | unsigned int total_rx_bytes; | ||
213 | unsigned int total_rx_packets; | ||
214 | |||
215 | /* Tx stats */ | ||
216 | u32 tx_timeout_count; | ||
217 | u32 tx_fifo_head; | ||
218 | u32 tx_head_addr; | ||
219 | u32 tx_fifo_size; | ||
220 | u32 tx_dma_failed; | ||
221 | |||
222 | /* | ||
223 | * Rx | ||
224 | */ | ||
225 | struct igbvf_ring *rx_ring; | ||
226 | |||
227 | u32 rx_int_delay; | ||
228 | u32 rx_abs_int_delay; | ||
229 | |||
230 | /* Rx stats */ | ||
231 | u64 hw_csum_err; | ||
232 | u64 hw_csum_good; | ||
233 | u64 rx_hdr_split; | ||
234 | u32 alloc_rx_buff_failed; | ||
235 | u32 rx_dma_failed; | ||
236 | |||
237 | unsigned int rx_ps_hdr_size; | ||
238 | u32 max_frame_size; | ||
239 | u32 min_frame_size; | ||
240 | |||
241 | /* OS defined structs */ | ||
242 | struct net_device *netdev; | ||
243 | struct pci_dev *pdev; | ||
244 | struct net_device_stats net_stats; | ||
245 | spinlock_t stats_lock; /* prevent concurrent stats updates */ | ||
246 | |||
247 | /* structs defined in e1000_hw.h */ | ||
248 | struct e1000_hw hw; | ||
249 | |||
250 | /* The VF counters don't clear on read so we have to get a base | ||
251 | * count on driver start up and always subtract that base on | ||
252 | * on the first update, thus the flag.. | ||
253 | */ | ||
254 | struct e1000_vf_stats stats; | ||
255 | u64 zero_base; | ||
256 | |||
257 | struct igbvf_ring test_tx_ring; | ||
258 | struct igbvf_ring test_rx_ring; | ||
259 | u32 test_icr; | ||
260 | |||
261 | u32 msg_enable; | ||
262 | struct msix_entry *msix_entries; | ||
263 | int int_mode; | ||
264 | u32 eims_enable_mask; | ||
265 | u32 eims_other; | ||
266 | u32 int_counter0; | ||
267 | u32 int_counter1; | ||
268 | |||
269 | u32 eeprom_wol; | ||
270 | u32 wol; | ||
271 | u32 pba; | ||
272 | |||
273 | bool fc_autoneg; | ||
274 | |||
275 | unsigned long led_status; | ||
276 | |||
277 | unsigned int flags; | ||
278 | }; | ||
279 | |||
280 | struct igbvf_info { | ||
281 | enum e1000_mac_type mac; | ||
282 | unsigned int flags; | ||
283 | u32 pba; | ||
284 | void (*init_ops)(struct e1000_hw *); | ||
285 | s32 (*get_variants)(struct igbvf_adapter *); | ||
286 | }; | ||
287 | |||
288 | /* hardware capability, feature, and workaround flags */ | ||
289 | #define FLAG_HAS_HW_VLAN_FILTER (1 << 0) | ||
290 | #define FLAG_HAS_JUMBO_FRAMES (1 << 1) | ||
291 | #define FLAG_MSI_ENABLED (1 << 2) | ||
292 | #define FLAG_RX_CSUM_ENABLED (1 << 3) | ||
293 | #define FLAG_TSO_FORCE (1 << 4) | ||
294 | |||
295 | #define IGBVF_RX_DESC_ADV(R, i) \ | ||
296 | (&((((R).desc))[i].rx_desc)) | ||
297 | #define IGBVF_TX_DESC_ADV(R, i) \ | ||
298 | (&((((R).desc))[i].tx_desc)) | ||
299 | #define IGBVF_TX_CTXTDESC_ADV(R, i) \ | ||
300 | (&((((R).desc))[i].tx_context_desc)) | ||
301 | |||
302 | enum igbvf_state_t { | ||
303 | __IGBVF_TESTING, | ||
304 | __IGBVF_RESETTING, | ||
305 | __IGBVF_DOWN | ||
306 | }; | ||
307 | |||
308 | enum latency_range { | ||
309 | lowest_latency = 0, | ||
310 | low_latency = 1, | ||
311 | bulk_latency = 2, | ||
312 | latency_invalid = 255 | ||
313 | }; | ||
314 | |||
315 | extern char igbvf_driver_name[]; | ||
316 | extern const char igbvf_driver_version[]; | ||
317 | |||
318 | extern void igbvf_check_options(struct igbvf_adapter *); | ||
319 | extern void igbvf_set_ethtool_ops(struct net_device *); | ||
320 | |||
321 | extern int igbvf_up(struct igbvf_adapter *); | ||
322 | extern void igbvf_down(struct igbvf_adapter *); | ||
323 | extern void igbvf_reinit_locked(struct igbvf_adapter *); | ||
324 | extern int igbvf_setup_rx_resources(struct igbvf_adapter *, struct igbvf_ring *); | ||
325 | extern int igbvf_setup_tx_resources(struct igbvf_adapter *, struct igbvf_ring *); | ||
326 | extern void igbvf_free_rx_resources(struct igbvf_ring *); | ||
327 | extern void igbvf_free_tx_resources(struct igbvf_ring *); | ||
328 | extern void igbvf_update_stats(struct igbvf_adapter *); | ||
329 | |||
330 | extern unsigned int copybreak; | ||
331 | |||
332 | #endif /* _IGBVF_H_ */ | ||
diff --git a/drivers/net/igbvf/mbx.c b/drivers/net/igbvf/mbx.c new file mode 100644 index 000000000000..819a8ec901dc --- /dev/null +++ b/drivers/net/igbvf/mbx.c | |||
@@ -0,0 +1,350 @@ | |||
1 | /******************************************************************************* | ||
2 | |||
3 | Intel(R) 82576 Virtual Function Linux driver | ||
4 | Copyright(c) 2009 Intel Corporation. | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify it | ||
7 | under the terms and conditions of the GNU General Public License, | ||
8 | version 2, as published by the Free Software Foundation. | ||
9 | |||
10 | This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along with | ||
16 | this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | |||
19 | The full GNU General Public License is included in this distribution in | ||
20 | the file called "COPYING". | ||
21 | |||
22 | Contact Information: | ||
23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | |||
26 | *******************************************************************************/ | ||
27 | |||
28 | #include "mbx.h" | ||
29 | |||
30 | /** | ||
31 | * e1000_poll_for_msg - Wait for message notification | ||
32 | * @hw: pointer to the HW structure | ||
33 | * | ||
34 | * returns SUCCESS if it successfully received a message notification | ||
35 | **/ | ||
36 | static s32 e1000_poll_for_msg(struct e1000_hw *hw) | ||
37 | { | ||
38 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
39 | int countdown = mbx->timeout; | ||
40 | |||
41 | if (!mbx->ops.check_for_msg) | ||
42 | goto out; | ||
43 | |||
44 | while (countdown && mbx->ops.check_for_msg(hw)) { | ||
45 | countdown--; | ||
46 | udelay(mbx->usec_delay); | ||
47 | } | ||
48 | |||
49 | /* if we failed, all future posted messages fail until reset */ | ||
50 | if (!countdown) | ||
51 | mbx->timeout = 0; | ||
52 | out: | ||
53 | return countdown ? E1000_SUCCESS : -E1000_ERR_MBX; | ||
54 | } | ||
55 | |||
56 | /** | ||
57 | * e1000_poll_for_ack - Wait for message acknowledgement | ||
58 | * @hw: pointer to the HW structure | ||
59 | * | ||
60 | * returns SUCCESS if it successfully received a message acknowledgement | ||
61 | **/ | ||
62 | static s32 e1000_poll_for_ack(struct e1000_hw *hw) | ||
63 | { | ||
64 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
65 | int countdown = mbx->timeout; | ||
66 | |||
67 | if (!mbx->ops.check_for_ack) | ||
68 | goto out; | ||
69 | |||
70 | while (countdown && mbx->ops.check_for_ack(hw)) { | ||
71 | countdown--; | ||
72 | udelay(mbx->usec_delay); | ||
73 | } | ||
74 | |||
75 | /* if we failed, all future posted messages fail until reset */ | ||
76 | if (!countdown) | ||
77 | mbx->timeout = 0; | ||
78 | out: | ||
79 | return countdown ? E1000_SUCCESS : -E1000_ERR_MBX; | ||
80 | } | ||
81 | |||
82 | /** | ||
83 | * e1000_read_posted_mbx - Wait for message notification and receive message | ||
84 | * @hw: pointer to the HW structure | ||
85 | * @msg: The message buffer | ||
86 | * @size: Length of buffer | ||
87 | * | ||
88 | * returns SUCCESS if it successfully received a message notification and | ||
89 | * copied it into the receive buffer. | ||
90 | **/ | ||
91 | static s32 e1000_read_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size) | ||
92 | { | ||
93 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
94 | s32 ret_val = -E1000_ERR_MBX; | ||
95 | |||
96 | if (!mbx->ops.read) | ||
97 | goto out; | ||
98 | |||
99 | ret_val = e1000_poll_for_msg(hw); | ||
100 | |||
101 | /* if ack received read message, otherwise we timed out */ | ||
102 | if (!ret_val) | ||
103 | ret_val = mbx->ops.read(hw, msg, size); | ||
104 | out: | ||
105 | return ret_val; | ||
106 | } | ||
107 | |||
108 | /** | ||
109 | * e1000_write_posted_mbx - Write a message to the mailbox, wait for ack | ||
110 | * @hw: pointer to the HW structure | ||
111 | * @msg: The message buffer | ||
112 | * @size: Length of buffer | ||
113 | * | ||
114 | * returns SUCCESS if it successfully copied message into the buffer and | ||
115 | * received an ack to that message within delay * timeout period | ||
116 | **/ | ||
117 | static s32 e1000_write_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size) | ||
118 | { | ||
119 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
120 | s32 ret_val = -E1000_ERR_MBX; | ||
121 | |||
122 | /* exit if we either can't write or there isn't a defined timeout */ | ||
123 | if (!mbx->ops.write || !mbx->timeout) | ||
124 | goto out; | ||
125 | |||
126 | /* send msg*/ | ||
127 | ret_val = mbx->ops.write(hw, msg, size); | ||
128 | |||
129 | /* if msg sent wait until we receive an ack */ | ||
130 | if (!ret_val) | ||
131 | ret_val = e1000_poll_for_ack(hw); | ||
132 | out: | ||
133 | return ret_val; | ||
134 | } | ||
135 | |||
136 | /** | ||
137 | * e1000_read_v2p_mailbox - read v2p mailbox | ||
138 | * @hw: pointer to the HW structure | ||
139 | * | ||
140 | * This function is used to read the v2p mailbox without losing the read to | ||
141 | * clear status bits. | ||
142 | **/ | ||
143 | static u32 e1000_read_v2p_mailbox(struct e1000_hw *hw) | ||
144 | { | ||
145 | u32 v2p_mailbox = er32(V2PMAILBOX(0)); | ||
146 | |||
147 | v2p_mailbox |= hw->dev_spec.vf.v2p_mailbox; | ||
148 | hw->dev_spec.vf.v2p_mailbox |= v2p_mailbox & E1000_V2PMAILBOX_R2C_BITS; | ||
149 | |||
150 | return v2p_mailbox; | ||
151 | } | ||
152 | |||
153 | /** | ||
154 | * e1000_check_for_bit_vf - Determine if a status bit was set | ||
155 | * @hw: pointer to the HW structure | ||
156 | * @mask: bitmask for bits to be tested and cleared | ||
157 | * | ||
158 | * This function is used to check for the read to clear bits within | ||
159 | * the V2P mailbox. | ||
160 | **/ | ||
161 | static s32 e1000_check_for_bit_vf(struct e1000_hw *hw, u32 mask) | ||
162 | { | ||
163 | u32 v2p_mailbox = e1000_read_v2p_mailbox(hw); | ||
164 | s32 ret_val = -E1000_ERR_MBX; | ||
165 | |||
166 | if (v2p_mailbox & mask) | ||
167 | ret_val = E1000_SUCCESS; | ||
168 | |||
169 | hw->dev_spec.vf.v2p_mailbox &= ~mask; | ||
170 | |||
171 | return ret_val; | ||
172 | } | ||
173 | |||
174 | /** | ||
175 | * e1000_check_for_msg_vf - checks to see if the PF has sent mail | ||
176 | * @hw: pointer to the HW structure | ||
177 | * | ||
178 | * returns SUCCESS if the PF has set the Status bit or else ERR_MBX | ||
179 | **/ | ||
180 | static s32 e1000_check_for_msg_vf(struct e1000_hw *hw) | ||
181 | { | ||
182 | s32 ret_val = -E1000_ERR_MBX; | ||
183 | |||
184 | if (!e1000_check_for_bit_vf(hw, E1000_V2PMAILBOX_PFSTS)) { | ||
185 | ret_val = E1000_SUCCESS; | ||
186 | hw->mbx.stats.reqs++; | ||
187 | } | ||
188 | |||
189 | return ret_val; | ||
190 | } | ||
191 | |||
192 | /** | ||
193 | * e1000_check_for_ack_vf - checks to see if the PF has ACK'd | ||
194 | * @hw: pointer to the HW structure | ||
195 | * | ||
196 | * returns SUCCESS if the PF has set the ACK bit or else ERR_MBX | ||
197 | **/ | ||
198 | static s32 e1000_check_for_ack_vf(struct e1000_hw *hw) | ||
199 | { | ||
200 | s32 ret_val = -E1000_ERR_MBX; | ||
201 | |||
202 | if (!e1000_check_for_bit_vf(hw, E1000_V2PMAILBOX_PFACK)) { | ||
203 | ret_val = E1000_SUCCESS; | ||
204 | hw->mbx.stats.acks++; | ||
205 | } | ||
206 | |||
207 | return ret_val; | ||
208 | } | ||
209 | |||
210 | /** | ||
211 | * e1000_check_for_rst_vf - checks to see if the PF has reset | ||
212 | * @hw: pointer to the HW structure | ||
213 | * | ||
214 | * returns true if the PF has set the reset done bit or else false | ||
215 | **/ | ||
216 | static s32 e1000_check_for_rst_vf(struct e1000_hw *hw) | ||
217 | { | ||
218 | s32 ret_val = -E1000_ERR_MBX; | ||
219 | |||
220 | if (!e1000_check_for_bit_vf(hw, (E1000_V2PMAILBOX_RSTD | | ||
221 | E1000_V2PMAILBOX_RSTI))) { | ||
222 | ret_val = E1000_SUCCESS; | ||
223 | hw->mbx.stats.rsts++; | ||
224 | } | ||
225 | |||
226 | return ret_val; | ||
227 | } | ||
228 | |||
229 | /** | ||
230 | * e1000_obtain_mbx_lock_vf - obtain mailbox lock | ||
231 | * @hw: pointer to the HW structure | ||
232 | * | ||
233 | * return SUCCESS if we obtained the mailbox lock | ||
234 | **/ | ||
235 | static s32 e1000_obtain_mbx_lock_vf(struct e1000_hw *hw) | ||
236 | { | ||
237 | s32 ret_val = -E1000_ERR_MBX; | ||
238 | |||
239 | /* Take ownership of the buffer */ | ||
240 | ew32(V2PMAILBOX(0), E1000_V2PMAILBOX_VFU); | ||
241 | |||
242 | /* reserve mailbox for vf use */ | ||
243 | if (e1000_read_v2p_mailbox(hw) & E1000_V2PMAILBOX_VFU) | ||
244 | ret_val = E1000_SUCCESS; | ||
245 | |||
246 | return ret_val; | ||
247 | } | ||
248 | |||
249 | /** | ||
250 | * e1000_write_mbx_vf - Write a message to the mailbox | ||
251 | * @hw: pointer to the HW structure | ||
252 | * @msg: The message buffer | ||
253 | * @size: Length of buffer | ||
254 | * | ||
255 | * returns SUCCESS if it successfully copied message into the buffer | ||
256 | **/ | ||
257 | static s32 e1000_write_mbx_vf(struct e1000_hw *hw, u32 *msg, u16 size) | ||
258 | { | ||
259 | s32 err; | ||
260 | u16 i; | ||
261 | |||
262 | /* lock the mailbox to prevent pf/vf race condition */ | ||
263 | err = e1000_obtain_mbx_lock_vf(hw); | ||
264 | if (err) | ||
265 | goto out_no_write; | ||
266 | |||
267 | /* flush any ack or msg as we are going to overwrite mailbox */ | ||
268 | e1000_check_for_ack_vf(hw); | ||
269 | e1000_check_for_msg_vf(hw); | ||
270 | |||
271 | /* copy the caller specified message to the mailbox memory buffer */ | ||
272 | for (i = 0; i < size; i++) | ||
273 | array_ew32(VMBMEM(0), i, msg[i]); | ||
274 | |||
275 | /* update stats */ | ||
276 | hw->mbx.stats.msgs_tx++; | ||
277 | |||
278 | /* Drop VFU and interrupt the PF to tell it a message has been sent */ | ||
279 | ew32(V2PMAILBOX(0), E1000_V2PMAILBOX_REQ); | ||
280 | |||
281 | out_no_write: | ||
282 | return err; | ||
283 | } | ||
284 | |||
285 | /** | ||
286 | * e1000_read_mbx_vf - Reads a message from the inbox intended for vf | ||
287 | * @hw: pointer to the HW structure | ||
288 | * @msg: The message buffer | ||
289 | * @size: Length of buffer | ||
290 | * | ||
291 | * returns SUCCESS if it successfuly read message from buffer | ||
292 | **/ | ||
293 | static s32 e1000_read_mbx_vf(struct e1000_hw *hw, u32 *msg, u16 size) | ||
294 | { | ||
295 | s32 err; | ||
296 | u16 i; | ||
297 | |||
298 | /* lock the mailbox to prevent pf/vf race condition */ | ||
299 | err = e1000_obtain_mbx_lock_vf(hw); | ||
300 | if (err) | ||
301 | goto out_no_read; | ||
302 | |||
303 | /* copy the message from the mailbox memory buffer */ | ||
304 | for (i = 0; i < size; i++) | ||
305 | msg[i] = array_er32(VMBMEM(0), i); | ||
306 | |||
307 | /* Acknowledge receipt and release mailbox, then we're done */ | ||
308 | ew32(V2PMAILBOX(0), E1000_V2PMAILBOX_ACK); | ||
309 | |||
310 | /* update stats */ | ||
311 | hw->mbx.stats.msgs_rx++; | ||
312 | |||
313 | out_no_read: | ||
314 | return err; | ||
315 | } | ||
316 | |||
317 | /** | ||
318 | * e1000_init_mbx_params_vf - set initial values for vf mailbox | ||
319 | * @hw: pointer to the HW structure | ||
320 | * | ||
321 | * Initializes the hw->mbx struct to correct values for vf mailbox | ||
322 | */ | ||
323 | s32 e1000_init_mbx_params_vf(struct e1000_hw *hw) | ||
324 | { | ||
325 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
326 | |||
327 | /* start mailbox as timed out and let the reset_hw call set the timeout | ||
328 | * value to being communications */ | ||
329 | mbx->timeout = 0; | ||
330 | mbx->usec_delay = E1000_VF_MBX_INIT_DELAY; | ||
331 | |||
332 | mbx->size = E1000_VFMAILBOX_SIZE; | ||
333 | |||
334 | mbx->ops.read = e1000_read_mbx_vf; | ||
335 | mbx->ops.write = e1000_write_mbx_vf; | ||
336 | mbx->ops.read_posted = e1000_read_posted_mbx; | ||
337 | mbx->ops.write_posted = e1000_write_posted_mbx; | ||
338 | mbx->ops.check_for_msg = e1000_check_for_msg_vf; | ||
339 | mbx->ops.check_for_ack = e1000_check_for_ack_vf; | ||
340 | mbx->ops.check_for_rst = e1000_check_for_rst_vf; | ||
341 | |||
342 | mbx->stats.msgs_tx = 0; | ||
343 | mbx->stats.msgs_rx = 0; | ||
344 | mbx->stats.reqs = 0; | ||
345 | mbx->stats.acks = 0; | ||
346 | mbx->stats.rsts = 0; | ||
347 | |||
348 | return E1000_SUCCESS; | ||
349 | } | ||
350 | |||
diff --git a/drivers/net/igbvf/mbx.h b/drivers/net/igbvf/mbx.h new file mode 100644 index 000000000000..4938609dbfb5 --- /dev/null +++ b/drivers/net/igbvf/mbx.h | |||
@@ -0,0 +1,75 @@ | |||
1 | /******************************************************************************* | ||
2 | |||
3 | Intel(R) 82576 Virtual Function Linux driver | ||
4 | Copyright(c) 1999 - 2009 Intel Corporation. | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify it | ||
7 | under the terms and conditions of the GNU General Public License, | ||
8 | version 2, as published by the Free Software Foundation. | ||
9 | |||
10 | This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along with | ||
16 | this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | |||
19 | The full GNU General Public License is included in this distribution in | ||
20 | the file called "COPYING". | ||
21 | |||
22 | Contact Information: | ||
23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | |||
26 | *******************************************************************************/ | ||
27 | |||
28 | #ifndef _E1000_MBX_H_ | ||
29 | #define _E1000_MBX_H_ | ||
30 | |||
31 | #include "vf.h" | ||
32 | |||
33 | #define E1000_V2PMAILBOX_REQ 0x00000001 /* Request for PF Ready bit */ | ||
34 | #define E1000_V2PMAILBOX_ACK 0x00000002 /* Ack PF message received */ | ||
35 | #define E1000_V2PMAILBOX_VFU 0x00000004 /* VF owns the mailbox buffer */ | ||
36 | #define E1000_V2PMAILBOX_PFU 0x00000008 /* PF owns the mailbox buffer */ | ||
37 | #define E1000_V2PMAILBOX_PFSTS 0x00000010 /* PF wrote a message in the MB */ | ||
38 | #define E1000_V2PMAILBOX_PFACK 0x00000020 /* PF ack the previous VF msg */ | ||
39 | #define E1000_V2PMAILBOX_RSTI 0x00000040 /* PF has reset indication */ | ||
40 | #define E1000_V2PMAILBOX_RSTD 0x00000080 /* PF has indicated reset done */ | ||
41 | #define E1000_V2PMAILBOX_R2C_BITS 0x000000B0 /* All read to clear bits */ | ||
42 | |||
43 | #define E1000_VFMAILBOX_SIZE 16 /* 16 32 bit words - 64 bytes */ | ||
44 | |||
45 | /* If it's a E1000_VF_* msg then it originates in the VF and is sent to the | ||
46 | * PF. The reverse is true if it is E1000_PF_*. | ||
47 | * Message ACK's are the value or'd with 0xF0000000 | ||
48 | */ | ||
49 | #define E1000_VT_MSGTYPE_ACK 0x80000000 /* Messages below or'd with | ||
50 | * this are the ACK */ | ||
51 | #define E1000_VT_MSGTYPE_NACK 0x40000000 /* Messages below or'd with | ||
52 | * this are the NACK */ | ||
53 | #define E1000_VT_MSGTYPE_CTS 0x20000000 /* Indicates that VF is still | ||
54 | clear to send requests */ | ||
55 | |||
56 | /* We have a total wait time of 1s for vf mailbox posted messages */ | ||
57 | #define E1000_VF_MBX_INIT_TIMEOUT 2000 /* retry count for mailbox timeout */ | ||
58 | #define E1000_VF_MBX_INIT_DELAY 500 /* usec delay between retries */ | ||
59 | |||
60 | #define E1000_VT_MSGINFO_SHIFT 16 | ||
61 | /* bits 23:16 are used for exra info for certain messages */ | ||
62 | #define E1000_VT_MSGINFO_MASK (0xFF << E1000_VT_MSGINFO_SHIFT) | ||
63 | |||
64 | #define E1000_VF_RESET 0x01 /* VF requests reset */ | ||
65 | #define E1000_VF_SET_MAC_ADDR 0x02 /* VF requests PF to set MAC addr */ | ||
66 | #define E1000_VF_SET_MULTICAST 0x03 /* VF requests PF to set MC addr */ | ||
67 | #define E1000_VF_SET_VLAN 0x04 /* VF requests PF to set VLAN */ | ||
68 | #define E1000_VF_SET_LPE 0x05 /* VF requests PF to set VMOLR.LPE */ | ||
69 | |||
70 | #define E1000_PF_CONTROL_MSG 0x0100 /* PF control message */ | ||
71 | |||
72 | void e1000_init_mbx_ops_generic(struct e1000_hw *hw); | ||
73 | s32 e1000_init_mbx_params_vf(struct e1000_hw *); | ||
74 | |||
75 | #endif /* _E1000_MBX_H_ */ | ||
diff --git a/drivers/net/igbvf/netdev.c b/drivers/net/igbvf/netdev.c new file mode 100644 index 000000000000..b774666ad3cf --- /dev/null +++ b/drivers/net/igbvf/netdev.c | |||
@@ -0,0 +1,2922 @@ | |||
1 | /******************************************************************************* | ||
2 | |||
3 | Intel(R) 82576 Virtual Function Linux driver | ||
4 | Copyright(c) 2009 Intel Corporation. | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify it | ||
7 | under the terms and conditions of the GNU General Public License, | ||
8 | version 2, as published by the Free Software Foundation. | ||
9 | |||
10 | This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along with | ||
16 | this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | |||
19 | The full GNU General Public License is included in this distribution in | ||
20 | the file called "COPYING". | ||
21 | |||
22 | Contact Information: | ||
23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | |||
26 | *******************************************************************************/ | ||
27 | |||
28 | #include <linux/module.h> | ||
29 | #include <linux/types.h> | ||
30 | #include <linux/init.h> | ||
31 | #include <linux/pci.h> | ||
32 | #include <linux/vmalloc.h> | ||
33 | #include <linux/pagemap.h> | ||
34 | #include <linux/delay.h> | ||
35 | #include <linux/netdevice.h> | ||
36 | #include <linux/tcp.h> | ||
37 | #include <linux/ipv6.h> | ||
38 | #include <net/checksum.h> | ||
39 | #include <net/ip6_checksum.h> | ||
40 | #include <linux/mii.h> | ||
41 | #include <linux/ethtool.h> | ||
42 | #include <linux/if_vlan.h> | ||
43 | #include <linux/pm_qos_params.h> | ||
44 | |||
45 | #include "igbvf.h" | ||
46 | |||
47 | #define DRV_VERSION "1.0.0-k0" | ||
48 | char igbvf_driver_name[] = "igbvf"; | ||
49 | const char igbvf_driver_version[] = DRV_VERSION; | ||
50 | static const char igbvf_driver_string[] = | ||
51 | "Intel(R) Virtual Function Network Driver"; | ||
52 | static const char igbvf_copyright[] = "Copyright (c) 2009 Intel Corporation."; | ||
53 | |||
54 | static int igbvf_poll(struct napi_struct *napi, int budget); | ||
55 | static void igbvf_reset(struct igbvf_adapter *); | ||
56 | static void igbvf_set_interrupt_capability(struct igbvf_adapter *); | ||
57 | static void igbvf_reset_interrupt_capability(struct igbvf_adapter *); | ||
58 | |||
59 | static struct igbvf_info igbvf_vf_info = { | ||
60 | .mac = e1000_vfadapt, | ||
61 | .flags = FLAG_HAS_JUMBO_FRAMES | ||
62 | | FLAG_RX_CSUM_ENABLED, | ||
63 | .pba = 10, | ||
64 | .init_ops = e1000_init_function_pointers_vf, | ||
65 | }; | ||
66 | |||
67 | static const struct igbvf_info *igbvf_info_tbl[] = { | ||
68 | [board_vf] = &igbvf_vf_info, | ||
69 | }; | ||
70 | |||
71 | /** | ||
72 | * igbvf_desc_unused - calculate if we have unused descriptors | ||
73 | **/ | ||
74 | static int igbvf_desc_unused(struct igbvf_ring *ring) | ||
75 | { | ||
76 | if (ring->next_to_clean > ring->next_to_use) | ||
77 | return ring->next_to_clean - ring->next_to_use - 1; | ||
78 | |||
79 | return ring->count + ring->next_to_clean - ring->next_to_use - 1; | ||
80 | } | ||
81 | |||
82 | /** | ||
83 | * igbvf_receive_skb - helper function to handle Rx indications | ||
84 | * @adapter: board private structure | ||
85 | * @status: descriptor status field as written by hardware | ||
86 | * @vlan: descriptor vlan field as written by hardware (no le/be conversion) | ||
87 | * @skb: pointer to sk_buff to be indicated to stack | ||
88 | **/ | ||
89 | static void igbvf_receive_skb(struct igbvf_adapter *adapter, | ||
90 | struct net_device *netdev, | ||
91 | struct sk_buff *skb, | ||
92 | u32 status, u16 vlan) | ||
93 | { | ||
94 | if (adapter->vlgrp && (status & E1000_RXD_STAT_VP)) | ||
95 | vlan_hwaccel_receive_skb(skb, adapter->vlgrp, | ||
96 | le16_to_cpu(vlan) & | ||
97 | E1000_RXD_SPC_VLAN_MASK); | ||
98 | else | ||
99 | netif_receive_skb(skb); | ||
100 | |||
101 | netdev->last_rx = jiffies; | ||
102 | } | ||
103 | |||
104 | static inline void igbvf_rx_checksum_adv(struct igbvf_adapter *adapter, | ||
105 | u32 status_err, struct sk_buff *skb) | ||
106 | { | ||
107 | skb->ip_summed = CHECKSUM_NONE; | ||
108 | |||
109 | /* Ignore Checksum bit is set or checksum is disabled through ethtool */ | ||
110 | if ((status_err & E1000_RXD_STAT_IXSM)) | ||
111 | return; | ||
112 | /* TCP/UDP checksum error bit is set */ | ||
113 | if (status_err & | ||
114 | (E1000_RXDEXT_STATERR_TCPE | E1000_RXDEXT_STATERR_IPE)) { | ||
115 | /* let the stack verify checksum errors */ | ||
116 | adapter->hw_csum_err++; | ||
117 | return; | ||
118 | } | ||
119 | /* It must be a TCP or UDP packet with a valid checksum */ | ||
120 | if (status_err & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)) | ||
121 | skb->ip_summed = CHECKSUM_UNNECESSARY; | ||
122 | |||
123 | adapter->hw_csum_good++; | ||
124 | } | ||
125 | |||
126 | /** | ||
127 | * igbvf_alloc_rx_buffers - Replace used receive buffers; packet split | ||
128 | * @rx_ring: address of ring structure to repopulate | ||
129 | * @cleaned_count: number of buffers to repopulate | ||
130 | **/ | ||
131 | static void igbvf_alloc_rx_buffers(struct igbvf_ring *rx_ring, | ||
132 | int cleaned_count) | ||
133 | { | ||
134 | struct igbvf_adapter *adapter = rx_ring->adapter; | ||
135 | struct net_device *netdev = adapter->netdev; | ||
136 | struct pci_dev *pdev = adapter->pdev; | ||
137 | union e1000_adv_rx_desc *rx_desc; | ||
138 | struct igbvf_buffer *buffer_info; | ||
139 | struct sk_buff *skb; | ||
140 | unsigned int i; | ||
141 | int bufsz; | ||
142 | |||
143 | i = rx_ring->next_to_use; | ||
144 | buffer_info = &rx_ring->buffer_info[i]; | ||
145 | |||
146 | if (adapter->rx_ps_hdr_size) | ||
147 | bufsz = adapter->rx_ps_hdr_size; | ||
148 | else | ||
149 | bufsz = adapter->rx_buffer_len; | ||
150 | bufsz += NET_IP_ALIGN; | ||
151 | |||
152 | while (cleaned_count--) { | ||
153 | rx_desc = IGBVF_RX_DESC_ADV(*rx_ring, i); | ||
154 | |||
155 | if (adapter->rx_ps_hdr_size && !buffer_info->page_dma) { | ||
156 | if (!buffer_info->page) { | ||
157 | buffer_info->page = alloc_page(GFP_ATOMIC); | ||
158 | if (!buffer_info->page) { | ||
159 | adapter->alloc_rx_buff_failed++; | ||
160 | goto no_buffers; | ||
161 | } | ||
162 | buffer_info->page_offset = 0; | ||
163 | } else { | ||
164 | buffer_info->page_offset ^= PAGE_SIZE / 2; | ||
165 | } | ||
166 | buffer_info->page_dma = | ||
167 | pci_map_page(pdev, buffer_info->page, | ||
168 | buffer_info->page_offset, | ||
169 | PAGE_SIZE / 2, | ||
170 | PCI_DMA_FROMDEVICE); | ||
171 | } | ||
172 | |||
173 | if (!buffer_info->skb) { | ||
174 | skb = netdev_alloc_skb(netdev, bufsz); | ||
175 | if (!skb) { | ||
176 | adapter->alloc_rx_buff_failed++; | ||
177 | goto no_buffers; | ||
178 | } | ||
179 | |||
180 | /* Make buffer alignment 2 beyond a 16 byte boundary | ||
181 | * this will result in a 16 byte aligned IP header after | ||
182 | * the 14 byte MAC header is removed | ||
183 | */ | ||
184 | skb_reserve(skb, NET_IP_ALIGN); | ||
185 | |||
186 | buffer_info->skb = skb; | ||
187 | buffer_info->dma = pci_map_single(pdev, skb->data, | ||
188 | bufsz, | ||
189 | PCI_DMA_FROMDEVICE); | ||
190 | } | ||
191 | /* Refresh the desc even if buffer_addrs didn't change because | ||
192 | * each write-back erases this info. */ | ||
193 | if (adapter->rx_ps_hdr_size) { | ||
194 | rx_desc->read.pkt_addr = | ||
195 | cpu_to_le64(buffer_info->page_dma); | ||
196 | rx_desc->read.hdr_addr = cpu_to_le64(buffer_info->dma); | ||
197 | } else { | ||
198 | rx_desc->read.pkt_addr = | ||
199 | cpu_to_le64(buffer_info->dma); | ||
200 | rx_desc->read.hdr_addr = 0; | ||
201 | } | ||
202 | |||
203 | i++; | ||
204 | if (i == rx_ring->count) | ||
205 | i = 0; | ||
206 | buffer_info = &rx_ring->buffer_info[i]; | ||
207 | } | ||
208 | |||
209 | no_buffers: | ||
210 | if (rx_ring->next_to_use != i) { | ||
211 | rx_ring->next_to_use = i; | ||
212 | if (i == 0) | ||
213 | i = (rx_ring->count - 1); | ||
214 | else | ||
215 | i--; | ||
216 | |||
217 | /* Force memory writes to complete before letting h/w | ||
218 | * know there are new descriptors to fetch. (Only | ||
219 | * applicable for weak-ordered memory model archs, | ||
220 | * such as IA-64). */ | ||
221 | wmb(); | ||
222 | writel(i, adapter->hw.hw_addr + rx_ring->tail); | ||
223 | } | ||
224 | } | ||
225 | |||
226 | /** | ||
227 | * igbvf_clean_rx_irq - Send received data up the network stack; legacy | ||
228 | * @adapter: board private structure | ||
229 | * | ||
230 | * the return value indicates whether actual cleaning was done, there | ||
231 | * is no guarantee that everything was cleaned | ||
232 | **/ | ||
233 | static bool igbvf_clean_rx_irq(struct igbvf_adapter *adapter, | ||
234 | int *work_done, int work_to_do) | ||
235 | { | ||
236 | struct igbvf_ring *rx_ring = adapter->rx_ring; | ||
237 | struct net_device *netdev = adapter->netdev; | ||
238 | struct pci_dev *pdev = adapter->pdev; | ||
239 | union e1000_adv_rx_desc *rx_desc, *next_rxd; | ||
240 | struct igbvf_buffer *buffer_info, *next_buffer; | ||
241 | struct sk_buff *skb; | ||
242 | bool cleaned = false; | ||
243 | int cleaned_count = 0; | ||
244 | unsigned int total_bytes = 0, total_packets = 0; | ||
245 | unsigned int i; | ||
246 | u32 length, hlen, staterr; | ||
247 | |||
248 | i = rx_ring->next_to_clean; | ||
249 | rx_desc = IGBVF_RX_DESC_ADV(*rx_ring, i); | ||
250 | staterr = le32_to_cpu(rx_desc->wb.upper.status_error); | ||
251 | |||
252 | while (staterr & E1000_RXD_STAT_DD) { | ||
253 | if (*work_done >= work_to_do) | ||
254 | break; | ||
255 | (*work_done)++; | ||
256 | |||
257 | buffer_info = &rx_ring->buffer_info[i]; | ||
258 | |||
259 | /* HW will not DMA in data larger than the given buffer, even | ||
260 | * if it parses the (NFS, of course) header to be larger. In | ||
261 | * that case, it fills the header buffer and spills the rest | ||
262 | * into the page. | ||
263 | */ | ||
264 | hlen = (le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info) & | ||
265 | E1000_RXDADV_HDRBUFLEN_MASK) >> E1000_RXDADV_HDRBUFLEN_SHIFT; | ||
266 | if (hlen > adapter->rx_ps_hdr_size) | ||
267 | hlen = adapter->rx_ps_hdr_size; | ||
268 | |||
269 | length = le16_to_cpu(rx_desc->wb.upper.length); | ||
270 | cleaned = true; | ||
271 | cleaned_count++; | ||
272 | |||
273 | skb = buffer_info->skb; | ||
274 | prefetch(skb->data - NET_IP_ALIGN); | ||
275 | buffer_info->skb = NULL; | ||
276 | if (!adapter->rx_ps_hdr_size) { | ||
277 | pci_unmap_single(pdev, buffer_info->dma, | ||
278 | adapter->rx_buffer_len, | ||
279 | PCI_DMA_FROMDEVICE); | ||
280 | buffer_info->dma = 0; | ||
281 | skb_put(skb, length); | ||
282 | goto send_up; | ||
283 | } | ||
284 | |||
285 | if (!skb_shinfo(skb)->nr_frags) { | ||
286 | pci_unmap_single(pdev, buffer_info->dma, | ||
287 | adapter->rx_ps_hdr_size + NET_IP_ALIGN, | ||
288 | PCI_DMA_FROMDEVICE); | ||
289 | skb_put(skb, hlen); | ||
290 | } | ||
291 | |||
292 | if (length) { | ||
293 | pci_unmap_page(pdev, buffer_info->page_dma, | ||
294 | PAGE_SIZE / 2, | ||
295 | PCI_DMA_FROMDEVICE); | ||
296 | buffer_info->page_dma = 0; | ||
297 | |||
298 | skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags++, | ||
299 | buffer_info->page, | ||
300 | buffer_info->page_offset, | ||
301 | length); | ||
302 | |||
303 | if ((adapter->rx_buffer_len > (PAGE_SIZE / 2)) || | ||
304 | (page_count(buffer_info->page) != 1)) | ||
305 | buffer_info->page = NULL; | ||
306 | else | ||
307 | get_page(buffer_info->page); | ||
308 | |||
309 | skb->len += length; | ||
310 | skb->data_len += length; | ||
311 | skb->truesize += length; | ||
312 | } | ||
313 | send_up: | ||
314 | i++; | ||
315 | if (i == rx_ring->count) | ||
316 | i = 0; | ||
317 | next_rxd = IGBVF_RX_DESC_ADV(*rx_ring, i); | ||
318 | prefetch(next_rxd); | ||
319 | next_buffer = &rx_ring->buffer_info[i]; | ||
320 | |||
321 | if (!(staterr & E1000_RXD_STAT_EOP)) { | ||
322 | buffer_info->skb = next_buffer->skb; | ||
323 | buffer_info->dma = next_buffer->dma; | ||
324 | next_buffer->skb = skb; | ||
325 | next_buffer->dma = 0; | ||
326 | goto next_desc; | ||
327 | } | ||
328 | |||
329 | if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) { | ||
330 | dev_kfree_skb_irq(skb); | ||
331 | goto next_desc; | ||
332 | } | ||
333 | |||
334 | total_bytes += skb->len; | ||
335 | total_packets++; | ||
336 | |||
337 | igbvf_rx_checksum_adv(adapter, staterr, skb); | ||
338 | |||
339 | skb->protocol = eth_type_trans(skb, netdev); | ||
340 | |||
341 | igbvf_receive_skb(adapter, netdev, skb, staterr, | ||
342 | rx_desc->wb.upper.vlan); | ||
343 | |||
344 | netdev->last_rx = jiffies; | ||
345 | |||
346 | next_desc: | ||
347 | rx_desc->wb.upper.status_error = 0; | ||
348 | |||
349 | /* return some buffers to hardware, one at a time is too slow */ | ||
350 | if (cleaned_count >= IGBVF_RX_BUFFER_WRITE) { | ||
351 | igbvf_alloc_rx_buffers(rx_ring, cleaned_count); | ||
352 | cleaned_count = 0; | ||
353 | } | ||
354 | |||
355 | /* use prefetched values */ | ||
356 | rx_desc = next_rxd; | ||
357 | buffer_info = next_buffer; | ||
358 | |||
359 | staterr = le32_to_cpu(rx_desc->wb.upper.status_error); | ||
360 | } | ||
361 | |||
362 | rx_ring->next_to_clean = i; | ||
363 | cleaned_count = igbvf_desc_unused(rx_ring); | ||
364 | |||
365 | if (cleaned_count) | ||
366 | igbvf_alloc_rx_buffers(rx_ring, cleaned_count); | ||
367 | |||
368 | adapter->total_rx_packets += total_packets; | ||
369 | adapter->total_rx_bytes += total_bytes; | ||
370 | adapter->net_stats.rx_bytes += total_bytes; | ||
371 | adapter->net_stats.rx_packets += total_packets; | ||
372 | return cleaned; | ||
373 | } | ||
374 | |||
375 | static void igbvf_put_txbuf(struct igbvf_adapter *adapter, | ||
376 | struct igbvf_buffer *buffer_info) | ||
377 | { | ||
378 | buffer_info->dma = 0; | ||
379 | if (buffer_info->skb) { | ||
380 | skb_dma_unmap(&adapter->pdev->dev, buffer_info->skb, | ||
381 | DMA_TO_DEVICE); | ||
382 | dev_kfree_skb_any(buffer_info->skb); | ||
383 | buffer_info->skb = NULL; | ||
384 | } | ||
385 | buffer_info->time_stamp = 0; | ||
386 | } | ||
387 | |||
388 | static void igbvf_print_tx_hang(struct igbvf_adapter *adapter) | ||
389 | { | ||
390 | struct igbvf_ring *tx_ring = adapter->tx_ring; | ||
391 | unsigned int i = tx_ring->next_to_clean; | ||
392 | unsigned int eop = tx_ring->buffer_info[i].next_to_watch; | ||
393 | union e1000_adv_tx_desc *eop_desc = IGBVF_TX_DESC_ADV(*tx_ring, eop); | ||
394 | |||
395 | /* detected Tx unit hang */ | ||
396 | dev_err(&adapter->pdev->dev, | ||
397 | "Detected Tx Unit Hang:\n" | ||
398 | " TDH <%x>\n" | ||
399 | " TDT <%x>\n" | ||
400 | " next_to_use <%x>\n" | ||
401 | " next_to_clean <%x>\n" | ||
402 | "buffer_info[next_to_clean]:\n" | ||
403 | " time_stamp <%lx>\n" | ||
404 | " next_to_watch <%x>\n" | ||
405 | " jiffies <%lx>\n" | ||
406 | " next_to_watch.status <%x>\n", | ||
407 | readl(adapter->hw.hw_addr + tx_ring->head), | ||
408 | readl(adapter->hw.hw_addr + tx_ring->tail), | ||
409 | tx_ring->next_to_use, | ||
410 | tx_ring->next_to_clean, | ||
411 | tx_ring->buffer_info[eop].time_stamp, | ||
412 | eop, | ||
413 | jiffies, | ||
414 | eop_desc->wb.status); | ||
415 | } | ||
416 | |||
417 | /** | ||
418 | * igbvf_setup_tx_resources - allocate Tx resources (Descriptors) | ||
419 | * @adapter: board private structure | ||
420 | * | ||
421 | * Return 0 on success, negative on failure | ||
422 | **/ | ||
423 | int igbvf_setup_tx_resources(struct igbvf_adapter *adapter, | ||
424 | struct igbvf_ring *tx_ring) | ||
425 | { | ||
426 | struct pci_dev *pdev = adapter->pdev; | ||
427 | int size; | ||
428 | |||
429 | size = sizeof(struct igbvf_buffer) * tx_ring->count; | ||
430 | tx_ring->buffer_info = vmalloc(size); | ||
431 | if (!tx_ring->buffer_info) | ||
432 | goto err; | ||
433 | memset(tx_ring->buffer_info, 0, size); | ||
434 | |||
435 | /* round up to nearest 4K */ | ||
436 | tx_ring->size = tx_ring->count * sizeof(union e1000_adv_tx_desc); | ||
437 | tx_ring->size = ALIGN(tx_ring->size, 4096); | ||
438 | |||
439 | tx_ring->desc = pci_alloc_consistent(pdev, tx_ring->size, | ||
440 | &tx_ring->dma); | ||
441 | |||
442 | if (!tx_ring->desc) | ||
443 | goto err; | ||
444 | |||
445 | tx_ring->adapter = adapter; | ||
446 | tx_ring->next_to_use = 0; | ||
447 | tx_ring->next_to_clean = 0; | ||
448 | |||
449 | return 0; | ||
450 | err: | ||
451 | vfree(tx_ring->buffer_info); | ||
452 | dev_err(&adapter->pdev->dev, | ||
453 | "Unable to allocate memory for the transmit descriptor ring\n"); | ||
454 | return -ENOMEM; | ||
455 | } | ||
456 | |||
457 | /** | ||
458 | * igbvf_setup_rx_resources - allocate Rx resources (Descriptors) | ||
459 | * @adapter: board private structure | ||
460 | * | ||
461 | * Returns 0 on success, negative on failure | ||
462 | **/ | ||
463 | int igbvf_setup_rx_resources(struct igbvf_adapter *adapter, | ||
464 | struct igbvf_ring *rx_ring) | ||
465 | { | ||
466 | struct pci_dev *pdev = adapter->pdev; | ||
467 | int size, desc_len; | ||
468 | |||
469 | size = sizeof(struct igbvf_buffer) * rx_ring->count; | ||
470 | rx_ring->buffer_info = vmalloc(size); | ||
471 | if (!rx_ring->buffer_info) | ||
472 | goto err; | ||
473 | memset(rx_ring->buffer_info, 0, size); | ||
474 | |||
475 | desc_len = sizeof(union e1000_adv_rx_desc); | ||
476 | |||
477 | /* Round up to nearest 4K */ | ||
478 | rx_ring->size = rx_ring->count * desc_len; | ||
479 | rx_ring->size = ALIGN(rx_ring->size, 4096); | ||
480 | |||
481 | rx_ring->desc = pci_alloc_consistent(pdev, rx_ring->size, | ||
482 | &rx_ring->dma); | ||
483 | |||
484 | if (!rx_ring->desc) | ||
485 | goto err; | ||
486 | |||
487 | rx_ring->next_to_clean = 0; | ||
488 | rx_ring->next_to_use = 0; | ||
489 | |||
490 | rx_ring->adapter = adapter; | ||
491 | |||
492 | return 0; | ||
493 | |||
494 | err: | ||
495 | vfree(rx_ring->buffer_info); | ||
496 | rx_ring->buffer_info = NULL; | ||
497 | dev_err(&adapter->pdev->dev, | ||
498 | "Unable to allocate memory for the receive descriptor ring\n"); | ||
499 | return -ENOMEM; | ||
500 | } | ||
501 | |||
502 | /** | ||
503 | * igbvf_clean_tx_ring - Free Tx Buffers | ||
504 | * @tx_ring: ring to be cleaned | ||
505 | **/ | ||
506 | static void igbvf_clean_tx_ring(struct igbvf_ring *tx_ring) | ||
507 | { | ||
508 | struct igbvf_adapter *adapter = tx_ring->adapter; | ||
509 | struct igbvf_buffer *buffer_info; | ||
510 | unsigned long size; | ||
511 | unsigned int i; | ||
512 | |||
513 | if (!tx_ring->buffer_info) | ||
514 | return; | ||
515 | |||
516 | /* Free all the Tx ring sk_buffs */ | ||
517 | for (i = 0; i < tx_ring->count; i++) { | ||
518 | buffer_info = &tx_ring->buffer_info[i]; | ||
519 | igbvf_put_txbuf(adapter, buffer_info); | ||
520 | } | ||
521 | |||
522 | size = sizeof(struct igbvf_buffer) * tx_ring->count; | ||
523 | memset(tx_ring->buffer_info, 0, size); | ||
524 | |||
525 | /* Zero out the descriptor ring */ | ||
526 | memset(tx_ring->desc, 0, tx_ring->size); | ||
527 | |||
528 | tx_ring->next_to_use = 0; | ||
529 | tx_ring->next_to_clean = 0; | ||
530 | |||
531 | writel(0, adapter->hw.hw_addr + tx_ring->head); | ||
532 | writel(0, adapter->hw.hw_addr + tx_ring->tail); | ||
533 | } | ||
534 | |||
535 | /** | ||
536 | * igbvf_free_tx_resources - Free Tx Resources per Queue | ||
537 | * @tx_ring: ring to free resources from | ||
538 | * | ||
539 | * Free all transmit software resources | ||
540 | **/ | ||
541 | void igbvf_free_tx_resources(struct igbvf_ring *tx_ring) | ||
542 | { | ||
543 | struct pci_dev *pdev = tx_ring->adapter->pdev; | ||
544 | |||
545 | igbvf_clean_tx_ring(tx_ring); | ||
546 | |||
547 | vfree(tx_ring->buffer_info); | ||
548 | tx_ring->buffer_info = NULL; | ||
549 | |||
550 | pci_free_consistent(pdev, tx_ring->size, tx_ring->desc, tx_ring->dma); | ||
551 | |||
552 | tx_ring->desc = NULL; | ||
553 | } | ||
554 | |||
555 | /** | ||
556 | * igbvf_clean_rx_ring - Free Rx Buffers per Queue | ||
557 | * @adapter: board private structure | ||
558 | **/ | ||
559 | static void igbvf_clean_rx_ring(struct igbvf_ring *rx_ring) | ||
560 | { | ||
561 | struct igbvf_adapter *adapter = rx_ring->adapter; | ||
562 | struct igbvf_buffer *buffer_info; | ||
563 | struct pci_dev *pdev = adapter->pdev; | ||
564 | unsigned long size; | ||
565 | unsigned int i; | ||
566 | |||
567 | if (!rx_ring->buffer_info) | ||
568 | return; | ||
569 | |||
570 | /* Free all the Rx ring sk_buffs */ | ||
571 | for (i = 0; i < rx_ring->count; i++) { | ||
572 | buffer_info = &rx_ring->buffer_info[i]; | ||
573 | if (buffer_info->dma) { | ||
574 | if (adapter->rx_ps_hdr_size){ | ||
575 | pci_unmap_single(pdev, buffer_info->dma, | ||
576 | adapter->rx_ps_hdr_size, | ||
577 | PCI_DMA_FROMDEVICE); | ||
578 | } else { | ||
579 | pci_unmap_single(pdev, buffer_info->dma, | ||
580 | adapter->rx_buffer_len, | ||
581 | PCI_DMA_FROMDEVICE); | ||
582 | } | ||
583 | buffer_info->dma = 0; | ||
584 | } | ||
585 | |||
586 | if (buffer_info->skb) { | ||
587 | dev_kfree_skb(buffer_info->skb); | ||
588 | buffer_info->skb = NULL; | ||
589 | } | ||
590 | |||
591 | if (buffer_info->page) { | ||
592 | if (buffer_info->page_dma) | ||
593 | pci_unmap_page(pdev, buffer_info->page_dma, | ||
594 | PAGE_SIZE / 2, | ||
595 | PCI_DMA_FROMDEVICE); | ||
596 | put_page(buffer_info->page); | ||
597 | buffer_info->page = NULL; | ||
598 | buffer_info->page_dma = 0; | ||
599 | buffer_info->page_offset = 0; | ||
600 | } | ||
601 | } | ||
602 | |||
603 | size = sizeof(struct igbvf_buffer) * rx_ring->count; | ||
604 | memset(rx_ring->buffer_info, 0, size); | ||
605 | |||
606 | /* Zero out the descriptor ring */ | ||
607 | memset(rx_ring->desc, 0, rx_ring->size); | ||
608 | |||
609 | rx_ring->next_to_clean = 0; | ||
610 | rx_ring->next_to_use = 0; | ||
611 | |||
612 | writel(0, adapter->hw.hw_addr + rx_ring->head); | ||
613 | writel(0, adapter->hw.hw_addr + rx_ring->tail); | ||
614 | } | ||
615 | |||
616 | /** | ||
617 | * igbvf_free_rx_resources - Free Rx Resources | ||
618 | * @rx_ring: ring to clean the resources from | ||
619 | * | ||
620 | * Free all receive software resources | ||
621 | **/ | ||
622 | |||
623 | void igbvf_free_rx_resources(struct igbvf_ring *rx_ring) | ||
624 | { | ||
625 | struct pci_dev *pdev = rx_ring->adapter->pdev; | ||
626 | |||
627 | igbvf_clean_rx_ring(rx_ring); | ||
628 | |||
629 | vfree(rx_ring->buffer_info); | ||
630 | rx_ring->buffer_info = NULL; | ||
631 | |||
632 | dma_free_coherent(&pdev->dev, rx_ring->size, rx_ring->desc, | ||
633 | rx_ring->dma); | ||
634 | rx_ring->desc = NULL; | ||
635 | } | ||
636 | |||
637 | /** | ||
638 | * igbvf_update_itr - update the dynamic ITR value based on statistics | ||
639 | * @adapter: pointer to adapter | ||
640 | * @itr_setting: current adapter->itr | ||
641 | * @packets: the number of packets during this measurement interval | ||
642 | * @bytes: the number of bytes during this measurement interval | ||
643 | * | ||
644 | * Stores a new ITR value based on packets and byte | ||
645 | * counts during the last interrupt. The advantage of per interrupt | ||
646 | * computation is faster updates and more accurate ITR for the current | ||
647 | * traffic pattern. Constants in this function were computed | ||
648 | * based on theoretical maximum wire speed and thresholds were set based | ||
649 | * on testing data as well as attempting to minimize response time | ||
650 | * while increasing bulk throughput. This functionality is controlled | ||
651 | * by the InterruptThrottleRate module parameter. | ||
652 | **/ | ||
653 | static unsigned int igbvf_update_itr(struct igbvf_adapter *adapter, | ||
654 | u16 itr_setting, int packets, | ||
655 | int bytes) | ||
656 | { | ||
657 | unsigned int retval = itr_setting; | ||
658 | |||
659 | if (packets == 0) | ||
660 | goto update_itr_done; | ||
661 | |||
662 | switch (itr_setting) { | ||
663 | case lowest_latency: | ||
664 | /* handle TSO and jumbo frames */ | ||
665 | if (bytes/packets > 8000) | ||
666 | retval = bulk_latency; | ||
667 | else if ((packets < 5) && (bytes > 512)) | ||
668 | retval = low_latency; | ||
669 | break; | ||
670 | case low_latency: /* 50 usec aka 20000 ints/s */ | ||
671 | if (bytes > 10000) { | ||
672 | /* this if handles the TSO accounting */ | ||
673 | if (bytes/packets > 8000) | ||
674 | retval = bulk_latency; | ||
675 | else if ((packets < 10) || ((bytes/packets) > 1200)) | ||
676 | retval = bulk_latency; | ||
677 | else if ((packets > 35)) | ||
678 | retval = lowest_latency; | ||
679 | } else if (bytes/packets > 2000) { | ||
680 | retval = bulk_latency; | ||
681 | } else if (packets <= 2 && bytes < 512) { | ||
682 | retval = lowest_latency; | ||
683 | } | ||
684 | break; | ||
685 | case bulk_latency: /* 250 usec aka 4000 ints/s */ | ||
686 | if (bytes > 25000) { | ||
687 | if (packets > 35) | ||
688 | retval = low_latency; | ||
689 | } else if (bytes < 6000) { | ||
690 | retval = low_latency; | ||
691 | } | ||
692 | break; | ||
693 | } | ||
694 | |||
695 | update_itr_done: | ||
696 | return retval; | ||
697 | } | ||
698 | |||
699 | static void igbvf_set_itr(struct igbvf_adapter *adapter) | ||
700 | { | ||
701 | struct e1000_hw *hw = &adapter->hw; | ||
702 | u16 current_itr; | ||
703 | u32 new_itr = adapter->itr; | ||
704 | |||
705 | adapter->tx_itr = igbvf_update_itr(adapter, adapter->tx_itr, | ||
706 | adapter->total_tx_packets, | ||
707 | adapter->total_tx_bytes); | ||
708 | /* conservative mode (itr 3) eliminates the lowest_latency setting */ | ||
709 | if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency) | ||
710 | adapter->tx_itr = low_latency; | ||
711 | |||
712 | adapter->rx_itr = igbvf_update_itr(adapter, adapter->rx_itr, | ||
713 | adapter->total_rx_packets, | ||
714 | adapter->total_rx_bytes); | ||
715 | /* conservative mode (itr 3) eliminates the lowest_latency setting */ | ||
716 | if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency) | ||
717 | adapter->rx_itr = low_latency; | ||
718 | |||
719 | current_itr = max(adapter->rx_itr, adapter->tx_itr); | ||
720 | |||
721 | switch (current_itr) { | ||
722 | /* counts and packets in update_itr are dependent on these numbers */ | ||
723 | case lowest_latency: | ||
724 | new_itr = 70000; | ||
725 | break; | ||
726 | case low_latency: | ||
727 | new_itr = 20000; /* aka hwitr = ~200 */ | ||
728 | break; | ||
729 | case bulk_latency: | ||
730 | new_itr = 4000; | ||
731 | break; | ||
732 | default: | ||
733 | break; | ||
734 | } | ||
735 | |||
736 | if (new_itr != adapter->itr) { | ||
737 | /* | ||
738 | * this attempts to bias the interrupt rate towards Bulk | ||
739 | * by adding intermediate steps when interrupt rate is | ||
740 | * increasing | ||
741 | */ | ||
742 | new_itr = new_itr > adapter->itr ? | ||
743 | min(adapter->itr + (new_itr >> 2), new_itr) : | ||
744 | new_itr; | ||
745 | adapter->itr = new_itr; | ||
746 | adapter->rx_ring->itr_val = 1952; | ||
747 | |||
748 | if (adapter->msix_entries) | ||
749 | adapter->rx_ring->set_itr = 1; | ||
750 | else | ||
751 | ew32(ITR, 1952); | ||
752 | } | ||
753 | } | ||
754 | |||
755 | /** | ||
756 | * igbvf_clean_tx_irq - Reclaim resources after transmit completes | ||
757 | * @adapter: board private structure | ||
758 | * returns true if ring is completely cleaned | ||
759 | **/ | ||
760 | static bool igbvf_clean_tx_irq(struct igbvf_ring *tx_ring) | ||
761 | { | ||
762 | struct igbvf_adapter *adapter = tx_ring->adapter; | ||
763 | struct e1000_hw *hw = &adapter->hw; | ||
764 | struct net_device *netdev = adapter->netdev; | ||
765 | struct igbvf_buffer *buffer_info; | ||
766 | struct sk_buff *skb; | ||
767 | union e1000_adv_tx_desc *tx_desc, *eop_desc; | ||
768 | unsigned int total_bytes = 0, total_packets = 0; | ||
769 | unsigned int i, eop, count = 0; | ||
770 | bool cleaned = false; | ||
771 | |||
772 | i = tx_ring->next_to_clean; | ||
773 | eop = tx_ring->buffer_info[i].next_to_watch; | ||
774 | eop_desc = IGBVF_TX_DESC_ADV(*tx_ring, eop); | ||
775 | |||
776 | while ((eop_desc->wb.status & cpu_to_le32(E1000_TXD_STAT_DD)) && | ||
777 | (count < tx_ring->count)) { | ||
778 | for (cleaned = false; !cleaned; count++) { | ||
779 | tx_desc = IGBVF_TX_DESC_ADV(*tx_ring, i); | ||
780 | buffer_info = &tx_ring->buffer_info[i]; | ||
781 | cleaned = (i == eop); | ||
782 | skb = buffer_info->skb; | ||
783 | |||
784 | if (skb) { | ||
785 | unsigned int segs, bytecount; | ||
786 | |||
787 | /* gso_segs is currently only valid for tcp */ | ||
788 | segs = skb_shinfo(skb)->gso_segs ?: 1; | ||
789 | /* multiply data chunks by size of headers */ | ||
790 | bytecount = ((segs - 1) * skb_headlen(skb)) + | ||
791 | skb->len; | ||
792 | total_packets += segs; | ||
793 | total_bytes += bytecount; | ||
794 | } | ||
795 | |||
796 | igbvf_put_txbuf(adapter, buffer_info); | ||
797 | tx_desc->wb.status = 0; | ||
798 | |||
799 | i++; | ||
800 | if (i == tx_ring->count) | ||
801 | i = 0; | ||
802 | } | ||
803 | eop = tx_ring->buffer_info[i].next_to_watch; | ||
804 | eop_desc = IGBVF_TX_DESC_ADV(*tx_ring, eop); | ||
805 | } | ||
806 | |||
807 | tx_ring->next_to_clean = i; | ||
808 | |||
809 | if (unlikely(count && | ||
810 | netif_carrier_ok(netdev) && | ||
811 | igbvf_desc_unused(tx_ring) >= IGBVF_TX_QUEUE_WAKE)) { | ||
812 | /* Make sure that anybody stopping the queue after this | ||
813 | * sees the new next_to_clean. | ||
814 | */ | ||
815 | smp_mb(); | ||
816 | if (netif_queue_stopped(netdev) && | ||
817 | !(test_bit(__IGBVF_DOWN, &adapter->state))) { | ||
818 | netif_wake_queue(netdev); | ||
819 | ++adapter->restart_queue; | ||
820 | } | ||
821 | } | ||
822 | |||
823 | if (adapter->detect_tx_hung) { | ||
824 | /* Detect a transmit hang in hardware, this serializes the | ||
825 | * check with the clearing of time_stamp and movement of i */ | ||
826 | adapter->detect_tx_hung = false; | ||
827 | if (tx_ring->buffer_info[i].time_stamp && | ||
828 | time_after(jiffies, tx_ring->buffer_info[i].time_stamp + | ||
829 | (adapter->tx_timeout_factor * HZ)) | ||
830 | && !(er32(STATUS) & E1000_STATUS_TXOFF)) { | ||
831 | |||
832 | tx_desc = IGBVF_TX_DESC_ADV(*tx_ring, i); | ||
833 | /* detected Tx unit hang */ | ||
834 | igbvf_print_tx_hang(adapter); | ||
835 | |||
836 | netif_stop_queue(netdev); | ||
837 | } | ||
838 | } | ||
839 | adapter->net_stats.tx_bytes += total_bytes; | ||
840 | adapter->net_stats.tx_packets += total_packets; | ||
841 | return (count < tx_ring->count); | ||
842 | } | ||
843 | |||
844 | static irqreturn_t igbvf_msix_other(int irq, void *data) | ||
845 | { | ||
846 | struct net_device *netdev = data; | ||
847 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
848 | struct e1000_hw *hw = &adapter->hw; | ||
849 | |||
850 | adapter->int_counter1++; | ||
851 | |||
852 | netif_carrier_off(netdev); | ||
853 | hw->mac.get_link_status = 1; | ||
854 | if (!test_bit(__IGBVF_DOWN, &adapter->state)) | ||
855 | mod_timer(&adapter->watchdog_timer, jiffies + 1); | ||
856 | |||
857 | ew32(EIMS, adapter->eims_other); | ||
858 | |||
859 | return IRQ_HANDLED; | ||
860 | } | ||
861 | |||
862 | static irqreturn_t igbvf_intr_msix_tx(int irq, void *data) | ||
863 | { | ||
864 | struct net_device *netdev = data; | ||
865 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
866 | struct e1000_hw *hw = &adapter->hw; | ||
867 | struct igbvf_ring *tx_ring = adapter->tx_ring; | ||
868 | |||
869 | |||
870 | adapter->total_tx_bytes = 0; | ||
871 | adapter->total_tx_packets = 0; | ||
872 | |||
873 | /* auto mask will automatically reenable the interrupt when we write | ||
874 | * EICS */ | ||
875 | if (!igbvf_clean_tx_irq(tx_ring)) | ||
876 | /* Ring was not completely cleaned, so fire another interrupt */ | ||
877 | ew32(EICS, tx_ring->eims_value); | ||
878 | else | ||
879 | ew32(EIMS, tx_ring->eims_value); | ||
880 | |||
881 | return IRQ_HANDLED; | ||
882 | } | ||
883 | |||
884 | static irqreturn_t igbvf_intr_msix_rx(int irq, void *data) | ||
885 | { | ||
886 | struct net_device *netdev = data; | ||
887 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
888 | |||
889 | adapter->int_counter0++; | ||
890 | |||
891 | /* Write the ITR value calculated at the end of the | ||
892 | * previous interrupt. | ||
893 | */ | ||
894 | if (adapter->rx_ring->set_itr) { | ||
895 | writel(adapter->rx_ring->itr_val, | ||
896 | adapter->hw.hw_addr + adapter->rx_ring->itr_register); | ||
897 | adapter->rx_ring->set_itr = 0; | ||
898 | } | ||
899 | |||
900 | if (napi_schedule_prep(&adapter->rx_ring->napi)) { | ||
901 | adapter->total_rx_bytes = 0; | ||
902 | adapter->total_rx_packets = 0; | ||
903 | __napi_schedule(&adapter->rx_ring->napi); | ||
904 | } | ||
905 | |||
906 | return IRQ_HANDLED; | ||
907 | } | ||
908 | |||
909 | #define IGBVF_NO_QUEUE -1 | ||
910 | |||
911 | static void igbvf_assign_vector(struct igbvf_adapter *adapter, int rx_queue, | ||
912 | int tx_queue, int msix_vector) | ||
913 | { | ||
914 | struct e1000_hw *hw = &adapter->hw; | ||
915 | u32 ivar, index; | ||
916 | |||
917 | /* 82576 uses a table-based method for assigning vectors. | ||
918 | Each queue has a single entry in the table to which we write | ||
919 | a vector number along with a "valid" bit. Sadly, the layout | ||
920 | of the table is somewhat counterintuitive. */ | ||
921 | if (rx_queue > IGBVF_NO_QUEUE) { | ||
922 | index = (rx_queue >> 1); | ||
923 | ivar = array_er32(IVAR0, index); | ||
924 | if (rx_queue & 0x1) { | ||
925 | /* vector goes into third byte of register */ | ||
926 | ivar = ivar & 0xFF00FFFF; | ||
927 | ivar |= (msix_vector | E1000_IVAR_VALID) << 16; | ||
928 | } else { | ||
929 | /* vector goes into low byte of register */ | ||
930 | ivar = ivar & 0xFFFFFF00; | ||
931 | ivar |= msix_vector | E1000_IVAR_VALID; | ||
932 | } | ||
933 | adapter->rx_ring[rx_queue].eims_value = 1 << msix_vector; | ||
934 | array_ew32(IVAR0, index, ivar); | ||
935 | } | ||
936 | if (tx_queue > IGBVF_NO_QUEUE) { | ||
937 | index = (tx_queue >> 1); | ||
938 | ivar = array_er32(IVAR0, index); | ||
939 | if (tx_queue & 0x1) { | ||
940 | /* vector goes into high byte of register */ | ||
941 | ivar = ivar & 0x00FFFFFF; | ||
942 | ivar |= (msix_vector | E1000_IVAR_VALID) << 24; | ||
943 | } else { | ||
944 | /* vector goes into second byte of register */ | ||
945 | ivar = ivar & 0xFFFF00FF; | ||
946 | ivar |= (msix_vector | E1000_IVAR_VALID) << 8; | ||
947 | } | ||
948 | adapter->tx_ring[tx_queue].eims_value = 1 << msix_vector; | ||
949 | array_ew32(IVAR0, index, ivar); | ||
950 | } | ||
951 | } | ||
952 | |||
953 | /** | ||
954 | * igbvf_configure_msix - Configure MSI-X hardware | ||
955 | * | ||
956 | * igbvf_configure_msix sets up the hardware to properly | ||
957 | * generate MSI-X interrupts. | ||
958 | **/ | ||
959 | static void igbvf_configure_msix(struct igbvf_adapter *adapter) | ||
960 | { | ||
961 | u32 tmp; | ||
962 | struct e1000_hw *hw = &adapter->hw; | ||
963 | struct igbvf_ring *tx_ring = adapter->tx_ring; | ||
964 | struct igbvf_ring *rx_ring = adapter->rx_ring; | ||
965 | int vector = 0; | ||
966 | |||
967 | adapter->eims_enable_mask = 0; | ||
968 | |||
969 | igbvf_assign_vector(adapter, IGBVF_NO_QUEUE, 0, vector++); | ||
970 | adapter->eims_enable_mask |= tx_ring->eims_value; | ||
971 | if (tx_ring->itr_val) | ||
972 | writel(tx_ring->itr_val, | ||
973 | hw->hw_addr + tx_ring->itr_register); | ||
974 | else | ||
975 | writel(1952, hw->hw_addr + tx_ring->itr_register); | ||
976 | |||
977 | igbvf_assign_vector(adapter, 0, IGBVF_NO_QUEUE, vector++); | ||
978 | adapter->eims_enable_mask |= rx_ring->eims_value; | ||
979 | if (rx_ring->itr_val) | ||
980 | writel(rx_ring->itr_val, | ||
981 | hw->hw_addr + rx_ring->itr_register); | ||
982 | else | ||
983 | writel(1952, hw->hw_addr + rx_ring->itr_register); | ||
984 | |||
985 | /* set vector for other causes, i.e. link changes */ | ||
986 | |||
987 | tmp = (vector++ | E1000_IVAR_VALID); | ||
988 | |||
989 | ew32(IVAR_MISC, tmp); | ||
990 | |||
991 | adapter->eims_enable_mask = (1 << (vector)) - 1; | ||
992 | adapter->eims_other = 1 << (vector - 1); | ||
993 | e1e_flush(); | ||
994 | } | ||
995 | |||
996 | static void igbvf_reset_interrupt_capability(struct igbvf_adapter *adapter) | ||
997 | { | ||
998 | if (adapter->msix_entries) { | ||
999 | pci_disable_msix(adapter->pdev); | ||
1000 | kfree(adapter->msix_entries); | ||
1001 | adapter->msix_entries = NULL; | ||
1002 | } | ||
1003 | } | ||
1004 | |||
1005 | /** | ||
1006 | * igbvf_set_interrupt_capability - set MSI or MSI-X if supported | ||
1007 | * | ||
1008 | * Attempt to configure interrupts using the best available | ||
1009 | * capabilities of the hardware and kernel. | ||
1010 | **/ | ||
1011 | static void igbvf_set_interrupt_capability(struct igbvf_adapter *adapter) | ||
1012 | { | ||
1013 | int err = -ENOMEM; | ||
1014 | int i; | ||
1015 | |||
1016 | /* we allocate 3 vectors, 1 for tx, 1 for rx, one for pf messages */ | ||
1017 | adapter->msix_entries = kcalloc(3, sizeof(struct msix_entry), | ||
1018 | GFP_KERNEL); | ||
1019 | if (adapter->msix_entries) { | ||
1020 | for (i = 0; i < 3; i++) | ||
1021 | adapter->msix_entries[i].entry = i; | ||
1022 | |||
1023 | err = pci_enable_msix(adapter->pdev, | ||
1024 | adapter->msix_entries, 3); | ||
1025 | } | ||
1026 | |||
1027 | if (err) { | ||
1028 | /* MSI-X failed */ | ||
1029 | dev_err(&adapter->pdev->dev, | ||
1030 | "Failed to initialize MSI-X interrupts.\n"); | ||
1031 | igbvf_reset_interrupt_capability(adapter); | ||
1032 | } | ||
1033 | } | ||
1034 | |||
1035 | /** | ||
1036 | * igbvf_request_msix - Initialize MSI-X interrupts | ||
1037 | * | ||
1038 | * igbvf_request_msix allocates MSI-X vectors and requests interrupts from the | ||
1039 | * kernel. | ||
1040 | **/ | ||
1041 | static int igbvf_request_msix(struct igbvf_adapter *adapter) | ||
1042 | { | ||
1043 | struct net_device *netdev = adapter->netdev; | ||
1044 | int err = 0, vector = 0; | ||
1045 | |||
1046 | if (strlen(netdev->name) < (IFNAMSIZ - 5)) { | ||
1047 | sprintf(adapter->tx_ring->name, "%s-tx-0", netdev->name); | ||
1048 | sprintf(adapter->rx_ring->name, "%s-rx-0", netdev->name); | ||
1049 | } else { | ||
1050 | memcpy(adapter->tx_ring->name, netdev->name, IFNAMSIZ); | ||
1051 | memcpy(adapter->rx_ring->name, netdev->name, IFNAMSIZ); | ||
1052 | } | ||
1053 | |||
1054 | err = request_irq(adapter->msix_entries[vector].vector, | ||
1055 | &igbvf_intr_msix_tx, 0, adapter->tx_ring->name, | ||
1056 | netdev); | ||
1057 | if (err) | ||
1058 | goto out; | ||
1059 | |||
1060 | adapter->tx_ring->itr_register = E1000_EITR(vector); | ||
1061 | adapter->tx_ring->itr_val = 1952; | ||
1062 | vector++; | ||
1063 | |||
1064 | err = request_irq(adapter->msix_entries[vector].vector, | ||
1065 | &igbvf_intr_msix_rx, 0, adapter->rx_ring->name, | ||
1066 | netdev); | ||
1067 | if (err) | ||
1068 | goto out; | ||
1069 | |||
1070 | adapter->rx_ring->itr_register = E1000_EITR(vector); | ||
1071 | adapter->rx_ring->itr_val = 1952; | ||
1072 | vector++; | ||
1073 | |||
1074 | err = request_irq(adapter->msix_entries[vector].vector, | ||
1075 | &igbvf_msix_other, 0, netdev->name, netdev); | ||
1076 | if (err) | ||
1077 | goto out; | ||
1078 | |||
1079 | igbvf_configure_msix(adapter); | ||
1080 | return 0; | ||
1081 | out: | ||
1082 | return err; | ||
1083 | } | ||
1084 | |||
1085 | /** | ||
1086 | * igbvf_alloc_queues - Allocate memory for all rings | ||
1087 | * @adapter: board private structure to initialize | ||
1088 | **/ | ||
1089 | static int __devinit igbvf_alloc_queues(struct igbvf_adapter *adapter) | ||
1090 | { | ||
1091 | struct net_device *netdev = adapter->netdev; | ||
1092 | |||
1093 | adapter->tx_ring = kzalloc(sizeof(struct igbvf_ring), GFP_KERNEL); | ||
1094 | if (!adapter->tx_ring) | ||
1095 | return -ENOMEM; | ||
1096 | |||
1097 | adapter->rx_ring = kzalloc(sizeof(struct igbvf_ring), GFP_KERNEL); | ||
1098 | if (!adapter->rx_ring) { | ||
1099 | kfree(adapter->tx_ring); | ||
1100 | return -ENOMEM; | ||
1101 | } | ||
1102 | |||
1103 | netif_napi_add(netdev, &adapter->rx_ring->napi, igbvf_poll, 64); | ||
1104 | |||
1105 | return 0; | ||
1106 | } | ||
1107 | |||
1108 | /** | ||
1109 | * igbvf_request_irq - initialize interrupts | ||
1110 | * | ||
1111 | * Attempts to configure interrupts using the best available | ||
1112 | * capabilities of the hardware and kernel. | ||
1113 | **/ | ||
1114 | static int igbvf_request_irq(struct igbvf_adapter *adapter) | ||
1115 | { | ||
1116 | int err = -1; | ||
1117 | |||
1118 | /* igbvf supports msi-x only */ | ||
1119 | if (adapter->msix_entries) | ||
1120 | err = igbvf_request_msix(adapter); | ||
1121 | |||
1122 | if (!err) | ||
1123 | return err; | ||
1124 | |||
1125 | dev_err(&adapter->pdev->dev, | ||
1126 | "Unable to allocate interrupt, Error: %d\n", err); | ||
1127 | |||
1128 | return err; | ||
1129 | } | ||
1130 | |||
1131 | static void igbvf_free_irq(struct igbvf_adapter *adapter) | ||
1132 | { | ||
1133 | struct net_device *netdev = adapter->netdev; | ||
1134 | int vector; | ||
1135 | |||
1136 | if (adapter->msix_entries) { | ||
1137 | for (vector = 0; vector < 3; vector++) | ||
1138 | free_irq(adapter->msix_entries[vector].vector, netdev); | ||
1139 | } | ||
1140 | } | ||
1141 | |||
1142 | /** | ||
1143 | * igbvf_irq_disable - Mask off interrupt generation on the NIC | ||
1144 | **/ | ||
1145 | static void igbvf_irq_disable(struct igbvf_adapter *adapter) | ||
1146 | { | ||
1147 | struct e1000_hw *hw = &adapter->hw; | ||
1148 | |||
1149 | ew32(EIMC, ~0); | ||
1150 | |||
1151 | if (adapter->msix_entries) | ||
1152 | ew32(EIAC, 0); | ||
1153 | } | ||
1154 | |||
1155 | /** | ||
1156 | * igbvf_irq_enable - Enable default interrupt generation settings | ||
1157 | **/ | ||
1158 | static void igbvf_irq_enable(struct igbvf_adapter *adapter) | ||
1159 | { | ||
1160 | struct e1000_hw *hw = &adapter->hw; | ||
1161 | |||
1162 | ew32(EIAC, adapter->eims_enable_mask); | ||
1163 | ew32(EIAM, adapter->eims_enable_mask); | ||
1164 | ew32(EIMS, adapter->eims_enable_mask); | ||
1165 | } | ||
1166 | |||
1167 | /** | ||
1168 | * igbvf_poll - NAPI Rx polling callback | ||
1169 | * @napi: struct associated with this polling callback | ||
1170 | * @budget: amount of packets driver is allowed to process this poll | ||
1171 | **/ | ||
1172 | static int igbvf_poll(struct napi_struct *napi, int budget) | ||
1173 | { | ||
1174 | struct igbvf_ring *rx_ring = container_of(napi, struct igbvf_ring, napi); | ||
1175 | struct igbvf_adapter *adapter = rx_ring->adapter; | ||
1176 | struct e1000_hw *hw = &adapter->hw; | ||
1177 | int work_done = 0; | ||
1178 | |||
1179 | igbvf_clean_rx_irq(adapter, &work_done, budget); | ||
1180 | |||
1181 | /* If not enough Rx work done, exit the polling mode */ | ||
1182 | if (work_done < budget) { | ||
1183 | napi_complete(napi); | ||
1184 | |||
1185 | if (adapter->itr_setting & 3) | ||
1186 | igbvf_set_itr(adapter); | ||
1187 | |||
1188 | if (!test_bit(__IGBVF_DOWN, &adapter->state)) | ||
1189 | ew32(EIMS, adapter->rx_ring->eims_value); | ||
1190 | } | ||
1191 | |||
1192 | return work_done; | ||
1193 | } | ||
1194 | |||
1195 | /** | ||
1196 | * igbvf_set_rlpml - set receive large packet maximum length | ||
1197 | * @adapter: board private structure | ||
1198 | * | ||
1199 | * Configure the maximum size of packets that will be received | ||
1200 | */ | ||
1201 | static void igbvf_set_rlpml(struct igbvf_adapter *adapter) | ||
1202 | { | ||
1203 | int max_frame_size = adapter->max_frame_size; | ||
1204 | struct e1000_hw *hw = &adapter->hw; | ||
1205 | |||
1206 | if (adapter->vlgrp) | ||
1207 | max_frame_size += VLAN_TAG_SIZE; | ||
1208 | |||
1209 | e1000_rlpml_set_vf(hw, max_frame_size); | ||
1210 | } | ||
1211 | |||
1212 | static void igbvf_vlan_rx_add_vid(struct net_device *netdev, u16 vid) | ||
1213 | { | ||
1214 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
1215 | struct e1000_hw *hw = &adapter->hw; | ||
1216 | |||
1217 | if (hw->mac.ops.set_vfta(hw, vid, true)) | ||
1218 | dev_err(&adapter->pdev->dev, "Failed to add vlan id %d\n", vid); | ||
1219 | } | ||
1220 | |||
1221 | static void igbvf_vlan_rx_kill_vid(struct net_device *netdev, u16 vid) | ||
1222 | { | ||
1223 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
1224 | struct e1000_hw *hw = &adapter->hw; | ||
1225 | |||
1226 | igbvf_irq_disable(adapter); | ||
1227 | vlan_group_set_device(adapter->vlgrp, vid, NULL); | ||
1228 | |||
1229 | if (!test_bit(__IGBVF_DOWN, &adapter->state)) | ||
1230 | igbvf_irq_enable(adapter); | ||
1231 | |||
1232 | if (hw->mac.ops.set_vfta(hw, vid, false)) | ||
1233 | dev_err(&adapter->pdev->dev, | ||
1234 | "Failed to remove vlan id %d\n", vid); | ||
1235 | } | ||
1236 | |||
1237 | static void igbvf_vlan_rx_register(struct net_device *netdev, | ||
1238 | struct vlan_group *grp) | ||
1239 | { | ||
1240 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
1241 | |||
1242 | adapter->vlgrp = grp; | ||
1243 | } | ||
1244 | |||
1245 | static void igbvf_restore_vlan(struct igbvf_adapter *adapter) | ||
1246 | { | ||
1247 | u16 vid; | ||
1248 | |||
1249 | if (!adapter->vlgrp) | ||
1250 | return; | ||
1251 | |||
1252 | for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) { | ||
1253 | if (!vlan_group_get_device(adapter->vlgrp, vid)) | ||
1254 | continue; | ||
1255 | igbvf_vlan_rx_add_vid(adapter->netdev, vid); | ||
1256 | } | ||
1257 | |||
1258 | igbvf_set_rlpml(adapter); | ||
1259 | } | ||
1260 | |||
1261 | /** | ||
1262 | * igbvf_configure_tx - Configure Transmit Unit after Reset | ||
1263 | * @adapter: board private structure | ||
1264 | * | ||
1265 | * Configure the Tx unit of the MAC after a reset. | ||
1266 | **/ | ||
1267 | static void igbvf_configure_tx(struct igbvf_adapter *adapter) | ||
1268 | { | ||
1269 | struct e1000_hw *hw = &adapter->hw; | ||
1270 | struct igbvf_ring *tx_ring = adapter->tx_ring; | ||
1271 | u64 tdba; | ||
1272 | u32 txdctl, dca_txctrl; | ||
1273 | |||
1274 | /* disable transmits */ | ||
1275 | txdctl = er32(TXDCTL(0)); | ||
1276 | ew32(TXDCTL(0), txdctl & ~E1000_TXDCTL_QUEUE_ENABLE); | ||
1277 | msleep(10); | ||
1278 | |||
1279 | /* Setup the HW Tx Head and Tail descriptor pointers */ | ||
1280 | ew32(TDLEN(0), tx_ring->count * sizeof(union e1000_adv_tx_desc)); | ||
1281 | tdba = tx_ring->dma; | ||
1282 | ew32(TDBAL(0), (tdba & DMA_32BIT_MASK)); | ||
1283 | ew32(TDBAH(0), (tdba >> 32)); | ||
1284 | ew32(TDH(0), 0); | ||
1285 | ew32(TDT(0), 0); | ||
1286 | tx_ring->head = E1000_TDH(0); | ||
1287 | tx_ring->tail = E1000_TDT(0); | ||
1288 | |||
1289 | /* Turn off Relaxed Ordering on head write-backs. The writebacks | ||
1290 | * MUST be delivered in order or it will completely screw up | ||
1291 | * our bookeeping. | ||
1292 | */ | ||
1293 | dca_txctrl = er32(DCA_TXCTRL(0)); | ||
1294 | dca_txctrl &= ~E1000_DCA_TXCTRL_TX_WB_RO_EN; | ||
1295 | ew32(DCA_TXCTRL(0), dca_txctrl); | ||
1296 | |||
1297 | /* enable transmits */ | ||
1298 | txdctl |= E1000_TXDCTL_QUEUE_ENABLE; | ||
1299 | ew32(TXDCTL(0), txdctl); | ||
1300 | |||
1301 | /* Setup Transmit Descriptor Settings for eop descriptor */ | ||
1302 | adapter->txd_cmd = E1000_ADVTXD_DCMD_EOP | E1000_ADVTXD_DCMD_IFCS; | ||
1303 | |||
1304 | /* enable Report Status bit */ | ||
1305 | adapter->txd_cmd |= E1000_ADVTXD_DCMD_RS; | ||
1306 | |||
1307 | adapter->tx_queue_len = adapter->netdev->tx_queue_len; | ||
1308 | } | ||
1309 | |||
1310 | /** | ||
1311 | * igbvf_setup_srrctl - configure the receive control registers | ||
1312 | * @adapter: Board private structure | ||
1313 | **/ | ||
1314 | static void igbvf_setup_srrctl(struct igbvf_adapter *adapter) | ||
1315 | { | ||
1316 | struct e1000_hw *hw = &adapter->hw; | ||
1317 | u32 srrctl = 0; | ||
1318 | |||
1319 | srrctl &= ~(E1000_SRRCTL_DESCTYPE_MASK | | ||
1320 | E1000_SRRCTL_BSIZEHDR_MASK | | ||
1321 | E1000_SRRCTL_BSIZEPKT_MASK); | ||
1322 | |||
1323 | /* Enable queue drop to avoid head of line blocking */ | ||
1324 | srrctl |= E1000_SRRCTL_DROP_EN; | ||
1325 | |||
1326 | /* Setup buffer sizes */ | ||
1327 | srrctl |= ALIGN(adapter->rx_buffer_len, 1024) >> | ||
1328 | E1000_SRRCTL_BSIZEPKT_SHIFT; | ||
1329 | |||
1330 | if (adapter->rx_buffer_len < 2048) { | ||
1331 | adapter->rx_ps_hdr_size = 0; | ||
1332 | srrctl |= E1000_SRRCTL_DESCTYPE_ADV_ONEBUF; | ||
1333 | } else { | ||
1334 | adapter->rx_ps_hdr_size = 128; | ||
1335 | srrctl |= adapter->rx_ps_hdr_size << | ||
1336 | E1000_SRRCTL_BSIZEHDRSIZE_SHIFT; | ||
1337 | srrctl |= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS; | ||
1338 | } | ||
1339 | |||
1340 | ew32(SRRCTL(0), srrctl); | ||
1341 | } | ||
1342 | |||
1343 | /** | ||
1344 | * igbvf_configure_rx - Configure Receive Unit after Reset | ||
1345 | * @adapter: board private structure | ||
1346 | * | ||
1347 | * Configure the Rx unit of the MAC after a reset. | ||
1348 | **/ | ||
1349 | static void igbvf_configure_rx(struct igbvf_adapter *adapter) | ||
1350 | { | ||
1351 | struct e1000_hw *hw = &adapter->hw; | ||
1352 | struct igbvf_ring *rx_ring = adapter->rx_ring; | ||
1353 | u64 rdba; | ||
1354 | u32 rdlen, rxdctl; | ||
1355 | |||
1356 | /* disable receives */ | ||
1357 | rxdctl = er32(RXDCTL(0)); | ||
1358 | ew32(RXDCTL(0), rxdctl & ~E1000_RXDCTL_QUEUE_ENABLE); | ||
1359 | msleep(10); | ||
1360 | |||
1361 | rdlen = rx_ring->count * sizeof(union e1000_adv_rx_desc); | ||
1362 | |||
1363 | /* | ||
1364 | * Setup the HW Rx Head and Tail Descriptor Pointers and | ||
1365 | * the Base and Length of the Rx Descriptor Ring | ||
1366 | */ | ||
1367 | rdba = rx_ring->dma; | ||
1368 | ew32(RDBAL(0), (rdba & DMA_32BIT_MASK)); | ||
1369 | ew32(RDBAH(0), (rdba >> 32)); | ||
1370 | ew32(RDLEN(0), rx_ring->count * sizeof(union e1000_adv_rx_desc)); | ||
1371 | rx_ring->head = E1000_RDH(0); | ||
1372 | rx_ring->tail = E1000_RDT(0); | ||
1373 | ew32(RDH(0), 0); | ||
1374 | ew32(RDT(0), 0); | ||
1375 | |||
1376 | rxdctl |= E1000_RXDCTL_QUEUE_ENABLE; | ||
1377 | rxdctl &= 0xFFF00000; | ||
1378 | rxdctl |= IGBVF_RX_PTHRESH; | ||
1379 | rxdctl |= IGBVF_RX_HTHRESH << 8; | ||
1380 | rxdctl |= IGBVF_RX_WTHRESH << 16; | ||
1381 | |||
1382 | igbvf_set_rlpml(adapter); | ||
1383 | |||
1384 | /* enable receives */ | ||
1385 | ew32(RXDCTL(0), rxdctl); | ||
1386 | } | ||
1387 | |||
1388 | /** | ||
1389 | * igbvf_set_multi - Multicast and Promiscuous mode set | ||
1390 | * @netdev: network interface device structure | ||
1391 | * | ||
1392 | * The set_multi entry point is called whenever the multicast address | ||
1393 | * list or the network interface flags are updated. This routine is | ||
1394 | * responsible for configuring the hardware for proper multicast, | ||
1395 | * promiscuous mode, and all-multi behavior. | ||
1396 | **/ | ||
1397 | static void igbvf_set_multi(struct net_device *netdev) | ||
1398 | { | ||
1399 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
1400 | struct e1000_hw *hw = &adapter->hw; | ||
1401 | struct dev_mc_list *mc_ptr; | ||
1402 | u8 *mta_list = NULL; | ||
1403 | int i; | ||
1404 | |||
1405 | if (netdev->mc_count) { | ||
1406 | mta_list = kmalloc(netdev->mc_count * 6, GFP_ATOMIC); | ||
1407 | if (!mta_list) { | ||
1408 | dev_err(&adapter->pdev->dev, | ||
1409 | "failed to allocate multicast filter list\n"); | ||
1410 | return; | ||
1411 | } | ||
1412 | } | ||
1413 | |||
1414 | /* prepare a packed array of only addresses. */ | ||
1415 | mc_ptr = netdev->mc_list; | ||
1416 | |||
1417 | for (i = 0; i < netdev->mc_count; i++) { | ||
1418 | if (!mc_ptr) | ||
1419 | break; | ||
1420 | memcpy(mta_list + (i*ETH_ALEN), mc_ptr->dmi_addr, | ||
1421 | ETH_ALEN); | ||
1422 | mc_ptr = mc_ptr->next; | ||
1423 | } | ||
1424 | |||
1425 | hw->mac.ops.update_mc_addr_list(hw, mta_list, i, 0, 0); | ||
1426 | kfree(mta_list); | ||
1427 | } | ||
1428 | |||
1429 | /** | ||
1430 | * igbvf_configure - configure the hardware for Rx and Tx | ||
1431 | * @adapter: private board structure | ||
1432 | **/ | ||
1433 | static void igbvf_configure(struct igbvf_adapter *adapter) | ||
1434 | { | ||
1435 | igbvf_set_multi(adapter->netdev); | ||
1436 | |||
1437 | igbvf_restore_vlan(adapter); | ||
1438 | |||
1439 | igbvf_configure_tx(adapter); | ||
1440 | igbvf_setup_srrctl(adapter); | ||
1441 | igbvf_configure_rx(adapter); | ||
1442 | igbvf_alloc_rx_buffers(adapter->rx_ring, | ||
1443 | igbvf_desc_unused(adapter->rx_ring)); | ||
1444 | } | ||
1445 | |||
1446 | /* igbvf_reset - bring the hardware into a known good state | ||
1447 | * | ||
1448 | * This function boots the hardware and enables some settings that | ||
1449 | * require a configuration cycle of the hardware - those cannot be | ||
1450 | * set/changed during runtime. After reset the device needs to be | ||
1451 | * properly configured for Rx, Tx etc. | ||
1452 | */ | ||
1453 | static void igbvf_reset(struct igbvf_adapter *adapter) | ||
1454 | { | ||
1455 | struct e1000_mac_info *mac = &adapter->hw.mac; | ||
1456 | struct net_device *netdev = adapter->netdev; | ||
1457 | struct e1000_hw *hw = &adapter->hw; | ||
1458 | |||
1459 | /* Allow time for pending master requests to run */ | ||
1460 | if (mac->ops.reset_hw(hw)) | ||
1461 | dev_err(&adapter->pdev->dev, "PF still resetting\n"); | ||
1462 | |||
1463 | mac->ops.init_hw(hw); | ||
1464 | |||
1465 | if (is_valid_ether_addr(adapter->hw.mac.addr)) { | ||
1466 | memcpy(netdev->dev_addr, adapter->hw.mac.addr, | ||
1467 | netdev->addr_len); | ||
1468 | memcpy(netdev->perm_addr, adapter->hw.mac.addr, | ||
1469 | netdev->addr_len); | ||
1470 | } | ||
1471 | } | ||
1472 | |||
1473 | int igbvf_up(struct igbvf_adapter *adapter) | ||
1474 | { | ||
1475 | struct e1000_hw *hw = &adapter->hw; | ||
1476 | |||
1477 | /* hardware has been reset, we need to reload some things */ | ||
1478 | igbvf_configure(adapter); | ||
1479 | |||
1480 | clear_bit(__IGBVF_DOWN, &adapter->state); | ||
1481 | |||
1482 | napi_enable(&adapter->rx_ring->napi); | ||
1483 | if (adapter->msix_entries) | ||
1484 | igbvf_configure_msix(adapter); | ||
1485 | |||
1486 | /* Clear any pending interrupts. */ | ||
1487 | er32(EICR); | ||
1488 | igbvf_irq_enable(adapter); | ||
1489 | |||
1490 | /* start the watchdog */ | ||
1491 | hw->mac.get_link_status = 1; | ||
1492 | mod_timer(&adapter->watchdog_timer, jiffies + 1); | ||
1493 | |||
1494 | |||
1495 | return 0; | ||
1496 | } | ||
1497 | |||
1498 | void igbvf_down(struct igbvf_adapter *adapter) | ||
1499 | { | ||
1500 | struct net_device *netdev = adapter->netdev; | ||
1501 | struct e1000_hw *hw = &adapter->hw; | ||
1502 | u32 rxdctl, txdctl; | ||
1503 | |||
1504 | /* | ||
1505 | * signal that we're down so the interrupt handler does not | ||
1506 | * reschedule our watchdog timer | ||
1507 | */ | ||
1508 | set_bit(__IGBVF_DOWN, &adapter->state); | ||
1509 | |||
1510 | /* disable receives in the hardware */ | ||
1511 | rxdctl = er32(RXDCTL(0)); | ||
1512 | ew32(RXDCTL(0), rxdctl & ~E1000_RXDCTL_QUEUE_ENABLE); | ||
1513 | |||
1514 | netif_stop_queue(netdev); | ||
1515 | |||
1516 | /* disable transmits in the hardware */ | ||
1517 | txdctl = er32(TXDCTL(0)); | ||
1518 | ew32(TXDCTL(0), txdctl & ~E1000_TXDCTL_QUEUE_ENABLE); | ||
1519 | |||
1520 | /* flush both disables and wait for them to finish */ | ||
1521 | e1e_flush(); | ||
1522 | msleep(10); | ||
1523 | |||
1524 | napi_disable(&adapter->rx_ring->napi); | ||
1525 | |||
1526 | igbvf_irq_disable(adapter); | ||
1527 | |||
1528 | del_timer_sync(&adapter->watchdog_timer); | ||
1529 | |||
1530 | netdev->tx_queue_len = adapter->tx_queue_len; | ||
1531 | netif_carrier_off(netdev); | ||
1532 | |||
1533 | /* record the stats before reset*/ | ||
1534 | igbvf_update_stats(adapter); | ||
1535 | |||
1536 | adapter->link_speed = 0; | ||
1537 | adapter->link_duplex = 0; | ||
1538 | |||
1539 | igbvf_reset(adapter); | ||
1540 | igbvf_clean_tx_ring(adapter->tx_ring); | ||
1541 | igbvf_clean_rx_ring(adapter->rx_ring); | ||
1542 | } | ||
1543 | |||
1544 | void igbvf_reinit_locked(struct igbvf_adapter *adapter) | ||
1545 | { | ||
1546 | might_sleep(); | ||
1547 | while (test_and_set_bit(__IGBVF_RESETTING, &adapter->state)) | ||
1548 | msleep(1); | ||
1549 | igbvf_down(adapter); | ||
1550 | igbvf_up(adapter); | ||
1551 | clear_bit(__IGBVF_RESETTING, &adapter->state); | ||
1552 | } | ||
1553 | |||
1554 | /** | ||
1555 | * igbvf_sw_init - Initialize general software structures (struct igbvf_adapter) | ||
1556 | * @adapter: board private structure to initialize | ||
1557 | * | ||
1558 | * igbvf_sw_init initializes the Adapter private data structure. | ||
1559 | * Fields are initialized based on PCI device information and | ||
1560 | * OS network device settings (MTU size). | ||
1561 | **/ | ||
1562 | static int __devinit igbvf_sw_init(struct igbvf_adapter *adapter) | ||
1563 | { | ||
1564 | struct net_device *netdev = adapter->netdev; | ||
1565 | s32 rc; | ||
1566 | |||
1567 | adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN; | ||
1568 | adapter->rx_ps_hdr_size = 0; | ||
1569 | adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN; | ||
1570 | adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN; | ||
1571 | |||
1572 | adapter->tx_int_delay = 8; | ||
1573 | adapter->tx_abs_int_delay = 32; | ||
1574 | adapter->rx_int_delay = 0; | ||
1575 | adapter->rx_abs_int_delay = 8; | ||
1576 | adapter->itr_setting = 3; | ||
1577 | adapter->itr = 20000; | ||
1578 | |||
1579 | /* Set various function pointers */ | ||
1580 | adapter->ei->init_ops(&adapter->hw); | ||
1581 | |||
1582 | rc = adapter->hw.mac.ops.init_params(&adapter->hw); | ||
1583 | if (rc) | ||
1584 | return rc; | ||
1585 | |||
1586 | rc = adapter->hw.mbx.ops.init_params(&adapter->hw); | ||
1587 | if (rc) | ||
1588 | return rc; | ||
1589 | |||
1590 | igbvf_set_interrupt_capability(adapter); | ||
1591 | |||
1592 | if (igbvf_alloc_queues(adapter)) | ||
1593 | return -ENOMEM; | ||
1594 | |||
1595 | spin_lock_init(&adapter->tx_queue_lock); | ||
1596 | |||
1597 | /* Explicitly disable IRQ since the NIC can be in any state. */ | ||
1598 | igbvf_irq_disable(adapter); | ||
1599 | |||
1600 | spin_lock_init(&adapter->stats_lock); | ||
1601 | |||
1602 | set_bit(__IGBVF_DOWN, &adapter->state); | ||
1603 | return 0; | ||
1604 | } | ||
1605 | |||
1606 | static void igbvf_initialize_last_counter_stats(struct igbvf_adapter *adapter) | ||
1607 | { | ||
1608 | struct e1000_hw *hw = &adapter->hw; | ||
1609 | |||
1610 | adapter->stats.last_gprc = er32(VFGPRC); | ||
1611 | adapter->stats.last_gorc = er32(VFGORC); | ||
1612 | adapter->stats.last_gptc = er32(VFGPTC); | ||
1613 | adapter->stats.last_gotc = er32(VFGOTC); | ||
1614 | adapter->stats.last_mprc = er32(VFMPRC); | ||
1615 | adapter->stats.last_gotlbc = er32(VFGOTLBC); | ||
1616 | adapter->stats.last_gptlbc = er32(VFGPTLBC); | ||
1617 | adapter->stats.last_gorlbc = er32(VFGORLBC); | ||
1618 | adapter->stats.last_gprlbc = er32(VFGPRLBC); | ||
1619 | |||
1620 | adapter->stats.base_gprc = er32(VFGPRC); | ||
1621 | adapter->stats.base_gorc = er32(VFGORC); | ||
1622 | adapter->stats.base_gptc = er32(VFGPTC); | ||
1623 | adapter->stats.base_gotc = er32(VFGOTC); | ||
1624 | adapter->stats.base_mprc = er32(VFMPRC); | ||
1625 | adapter->stats.base_gotlbc = er32(VFGOTLBC); | ||
1626 | adapter->stats.base_gptlbc = er32(VFGPTLBC); | ||
1627 | adapter->stats.base_gorlbc = er32(VFGORLBC); | ||
1628 | adapter->stats.base_gprlbc = er32(VFGPRLBC); | ||
1629 | } | ||
1630 | |||
1631 | /** | ||
1632 | * igbvf_open - Called when a network interface is made active | ||
1633 | * @netdev: network interface device structure | ||
1634 | * | ||
1635 | * Returns 0 on success, negative value on failure | ||
1636 | * | ||
1637 | * The open entry point is called when a network interface is made | ||
1638 | * active by the system (IFF_UP). At this point all resources needed | ||
1639 | * for transmit and receive operations are allocated, the interrupt | ||
1640 | * handler is registered with the OS, the watchdog timer is started, | ||
1641 | * and the stack is notified that the interface is ready. | ||
1642 | **/ | ||
1643 | static int igbvf_open(struct net_device *netdev) | ||
1644 | { | ||
1645 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
1646 | struct e1000_hw *hw = &adapter->hw; | ||
1647 | int err; | ||
1648 | |||
1649 | /* disallow open during test */ | ||
1650 | if (test_bit(__IGBVF_TESTING, &adapter->state)) | ||
1651 | return -EBUSY; | ||
1652 | |||
1653 | /* allocate transmit descriptors */ | ||
1654 | err = igbvf_setup_tx_resources(adapter, adapter->tx_ring); | ||
1655 | if (err) | ||
1656 | goto err_setup_tx; | ||
1657 | |||
1658 | /* allocate receive descriptors */ | ||
1659 | err = igbvf_setup_rx_resources(adapter, adapter->rx_ring); | ||
1660 | if (err) | ||
1661 | goto err_setup_rx; | ||
1662 | |||
1663 | /* | ||
1664 | * before we allocate an interrupt, we must be ready to handle it. | ||
1665 | * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt | ||
1666 | * as soon as we call pci_request_irq, so we have to setup our | ||
1667 | * clean_rx handler before we do so. | ||
1668 | */ | ||
1669 | igbvf_configure(adapter); | ||
1670 | |||
1671 | err = igbvf_request_irq(adapter); | ||
1672 | if (err) | ||
1673 | goto err_req_irq; | ||
1674 | |||
1675 | /* From here on the code is the same as igbvf_up() */ | ||
1676 | clear_bit(__IGBVF_DOWN, &adapter->state); | ||
1677 | |||
1678 | napi_enable(&adapter->rx_ring->napi); | ||
1679 | |||
1680 | /* clear any pending interrupts */ | ||
1681 | er32(EICR); | ||
1682 | |||
1683 | igbvf_irq_enable(adapter); | ||
1684 | |||
1685 | /* start the watchdog */ | ||
1686 | hw->mac.get_link_status = 1; | ||
1687 | mod_timer(&adapter->watchdog_timer, jiffies + 1); | ||
1688 | |||
1689 | return 0; | ||
1690 | |||
1691 | err_req_irq: | ||
1692 | igbvf_free_rx_resources(adapter->rx_ring); | ||
1693 | err_setup_rx: | ||
1694 | igbvf_free_tx_resources(adapter->tx_ring); | ||
1695 | err_setup_tx: | ||
1696 | igbvf_reset(adapter); | ||
1697 | |||
1698 | return err; | ||
1699 | } | ||
1700 | |||
1701 | /** | ||
1702 | * igbvf_close - Disables a network interface | ||
1703 | * @netdev: network interface device structure | ||
1704 | * | ||
1705 | * Returns 0, this is not allowed to fail | ||
1706 | * | ||
1707 | * The close entry point is called when an interface is de-activated | ||
1708 | * by the OS. The hardware is still under the drivers control, but | ||
1709 | * needs to be disabled. A global MAC reset is issued to stop the | ||
1710 | * hardware, and all transmit and receive resources are freed. | ||
1711 | **/ | ||
1712 | static int igbvf_close(struct net_device *netdev) | ||
1713 | { | ||
1714 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
1715 | |||
1716 | WARN_ON(test_bit(__IGBVF_RESETTING, &adapter->state)); | ||
1717 | igbvf_down(adapter); | ||
1718 | |||
1719 | igbvf_free_irq(adapter); | ||
1720 | |||
1721 | igbvf_free_tx_resources(adapter->tx_ring); | ||
1722 | igbvf_free_rx_resources(adapter->rx_ring); | ||
1723 | |||
1724 | return 0; | ||
1725 | } | ||
1726 | /** | ||
1727 | * igbvf_set_mac - Change the Ethernet Address of the NIC | ||
1728 | * @netdev: network interface device structure | ||
1729 | * @p: pointer to an address structure | ||
1730 | * | ||
1731 | * Returns 0 on success, negative on failure | ||
1732 | **/ | ||
1733 | static int igbvf_set_mac(struct net_device *netdev, void *p) | ||
1734 | { | ||
1735 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
1736 | struct e1000_hw *hw = &adapter->hw; | ||
1737 | struct sockaddr *addr = p; | ||
1738 | |||
1739 | if (!is_valid_ether_addr(addr->sa_data)) | ||
1740 | return -EADDRNOTAVAIL; | ||
1741 | |||
1742 | memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len); | ||
1743 | |||
1744 | hw->mac.ops.rar_set(hw, hw->mac.addr, 0); | ||
1745 | |||
1746 | if (memcmp(addr->sa_data, hw->mac.addr, 6)) | ||
1747 | return -EADDRNOTAVAIL; | ||
1748 | |||
1749 | memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); | ||
1750 | |||
1751 | return 0; | ||
1752 | } | ||
1753 | |||
1754 | #define UPDATE_VF_COUNTER(reg, name) \ | ||
1755 | { \ | ||
1756 | u32 current_counter = er32(reg); \ | ||
1757 | if (current_counter < adapter->stats.last_##name) \ | ||
1758 | adapter->stats.name += 0x100000000LL; \ | ||
1759 | adapter->stats.last_##name = current_counter; \ | ||
1760 | adapter->stats.name &= 0xFFFFFFFF00000000LL; \ | ||
1761 | adapter->stats.name |= current_counter; \ | ||
1762 | } | ||
1763 | |||
1764 | /** | ||
1765 | * igbvf_update_stats - Update the board statistics counters | ||
1766 | * @adapter: board private structure | ||
1767 | **/ | ||
1768 | void igbvf_update_stats(struct igbvf_adapter *adapter) | ||
1769 | { | ||
1770 | struct e1000_hw *hw = &adapter->hw; | ||
1771 | struct pci_dev *pdev = adapter->pdev; | ||
1772 | |||
1773 | /* | ||
1774 | * Prevent stats update while adapter is being reset, link is down | ||
1775 | * or if the pci connection is down. | ||
1776 | */ | ||
1777 | if (adapter->link_speed == 0) | ||
1778 | return; | ||
1779 | |||
1780 | if (test_bit(__IGBVF_RESETTING, &adapter->state)) | ||
1781 | return; | ||
1782 | |||
1783 | if (pci_channel_offline(pdev)) | ||
1784 | return; | ||
1785 | |||
1786 | UPDATE_VF_COUNTER(VFGPRC, gprc); | ||
1787 | UPDATE_VF_COUNTER(VFGORC, gorc); | ||
1788 | UPDATE_VF_COUNTER(VFGPTC, gptc); | ||
1789 | UPDATE_VF_COUNTER(VFGOTC, gotc); | ||
1790 | UPDATE_VF_COUNTER(VFMPRC, mprc); | ||
1791 | UPDATE_VF_COUNTER(VFGOTLBC, gotlbc); | ||
1792 | UPDATE_VF_COUNTER(VFGPTLBC, gptlbc); | ||
1793 | UPDATE_VF_COUNTER(VFGORLBC, gorlbc); | ||
1794 | UPDATE_VF_COUNTER(VFGPRLBC, gprlbc); | ||
1795 | |||
1796 | /* Fill out the OS statistics structure */ | ||
1797 | adapter->net_stats.multicast = adapter->stats.mprc; | ||
1798 | } | ||
1799 | |||
1800 | static void igbvf_print_link_info(struct igbvf_adapter *adapter) | ||
1801 | { | ||
1802 | dev_info(&adapter->pdev->dev, "Link is Up %d Mbps %s\n", | ||
1803 | adapter->link_speed, | ||
1804 | ((adapter->link_duplex == FULL_DUPLEX) ? | ||
1805 | "Full Duplex" : "Half Duplex")); | ||
1806 | } | ||
1807 | |||
1808 | static bool igbvf_has_link(struct igbvf_adapter *adapter) | ||
1809 | { | ||
1810 | struct e1000_hw *hw = &adapter->hw; | ||
1811 | s32 ret_val = E1000_SUCCESS; | ||
1812 | bool link_active; | ||
1813 | |||
1814 | ret_val = hw->mac.ops.check_for_link(hw); | ||
1815 | link_active = !hw->mac.get_link_status; | ||
1816 | |||
1817 | /* if check for link returns error we will need to reset */ | ||
1818 | if (ret_val) | ||
1819 | schedule_work(&adapter->reset_task); | ||
1820 | |||
1821 | return link_active; | ||
1822 | } | ||
1823 | |||
1824 | /** | ||
1825 | * igbvf_watchdog - Timer Call-back | ||
1826 | * @data: pointer to adapter cast into an unsigned long | ||
1827 | **/ | ||
1828 | static void igbvf_watchdog(unsigned long data) | ||
1829 | { | ||
1830 | struct igbvf_adapter *adapter = (struct igbvf_adapter *) data; | ||
1831 | |||
1832 | /* Do the rest outside of interrupt context */ | ||
1833 | schedule_work(&adapter->watchdog_task); | ||
1834 | } | ||
1835 | |||
1836 | static void igbvf_watchdog_task(struct work_struct *work) | ||
1837 | { | ||
1838 | struct igbvf_adapter *adapter = container_of(work, | ||
1839 | struct igbvf_adapter, | ||
1840 | watchdog_task); | ||
1841 | struct net_device *netdev = adapter->netdev; | ||
1842 | struct e1000_mac_info *mac = &adapter->hw.mac; | ||
1843 | struct igbvf_ring *tx_ring = adapter->tx_ring; | ||
1844 | struct e1000_hw *hw = &adapter->hw; | ||
1845 | u32 link; | ||
1846 | int tx_pending = 0; | ||
1847 | |||
1848 | link = igbvf_has_link(adapter); | ||
1849 | |||
1850 | if (link) { | ||
1851 | if (!netif_carrier_ok(netdev)) { | ||
1852 | bool txb2b = 1; | ||
1853 | |||
1854 | mac->ops.get_link_up_info(&adapter->hw, | ||
1855 | &adapter->link_speed, | ||
1856 | &adapter->link_duplex); | ||
1857 | igbvf_print_link_info(adapter); | ||
1858 | |||
1859 | /* | ||
1860 | * tweak tx_queue_len according to speed/duplex | ||
1861 | * and adjust the timeout factor | ||
1862 | */ | ||
1863 | netdev->tx_queue_len = adapter->tx_queue_len; | ||
1864 | adapter->tx_timeout_factor = 1; | ||
1865 | switch (adapter->link_speed) { | ||
1866 | case SPEED_10: | ||
1867 | txb2b = 0; | ||
1868 | netdev->tx_queue_len = 10; | ||
1869 | adapter->tx_timeout_factor = 16; | ||
1870 | break; | ||
1871 | case SPEED_100: | ||
1872 | txb2b = 0; | ||
1873 | netdev->tx_queue_len = 100; | ||
1874 | /* maybe add some timeout factor ? */ | ||
1875 | break; | ||
1876 | } | ||
1877 | |||
1878 | netif_carrier_on(netdev); | ||
1879 | netif_wake_queue(netdev); | ||
1880 | } | ||
1881 | } else { | ||
1882 | if (netif_carrier_ok(netdev)) { | ||
1883 | adapter->link_speed = 0; | ||
1884 | adapter->link_duplex = 0; | ||
1885 | dev_info(&adapter->pdev->dev, "Link is Down\n"); | ||
1886 | netif_carrier_off(netdev); | ||
1887 | netif_stop_queue(netdev); | ||
1888 | } | ||
1889 | } | ||
1890 | |||
1891 | if (netif_carrier_ok(netdev)) { | ||
1892 | igbvf_update_stats(adapter); | ||
1893 | } else { | ||
1894 | tx_pending = (igbvf_desc_unused(tx_ring) + 1 < | ||
1895 | tx_ring->count); | ||
1896 | if (tx_pending) { | ||
1897 | /* | ||
1898 | * We've lost link, so the controller stops DMA, | ||
1899 | * but we've got queued Tx work that's never going | ||
1900 | * to get done, so reset controller to flush Tx. | ||
1901 | * (Do the reset outside of interrupt context). | ||
1902 | */ | ||
1903 | adapter->tx_timeout_count++; | ||
1904 | schedule_work(&adapter->reset_task); | ||
1905 | } | ||
1906 | } | ||
1907 | |||
1908 | /* Cause software interrupt to ensure Rx ring is cleaned */ | ||
1909 | ew32(EICS, adapter->rx_ring->eims_value); | ||
1910 | |||
1911 | /* Force detection of hung controller every watchdog period */ | ||
1912 | adapter->detect_tx_hung = 1; | ||
1913 | |||
1914 | /* Reset the timer */ | ||
1915 | if (!test_bit(__IGBVF_DOWN, &adapter->state)) | ||
1916 | mod_timer(&adapter->watchdog_timer, | ||
1917 | round_jiffies(jiffies + (2 * HZ))); | ||
1918 | } | ||
1919 | |||
1920 | #define IGBVF_TX_FLAGS_CSUM 0x00000001 | ||
1921 | #define IGBVF_TX_FLAGS_VLAN 0x00000002 | ||
1922 | #define IGBVF_TX_FLAGS_TSO 0x00000004 | ||
1923 | #define IGBVF_TX_FLAGS_IPV4 0x00000008 | ||
1924 | #define IGBVF_TX_FLAGS_VLAN_MASK 0xffff0000 | ||
1925 | #define IGBVF_TX_FLAGS_VLAN_SHIFT 16 | ||
1926 | |||
1927 | static int igbvf_tso(struct igbvf_adapter *adapter, | ||
1928 | struct igbvf_ring *tx_ring, | ||
1929 | struct sk_buff *skb, u32 tx_flags, u8 *hdr_len) | ||
1930 | { | ||
1931 | struct e1000_adv_tx_context_desc *context_desc; | ||
1932 | unsigned int i; | ||
1933 | int err; | ||
1934 | struct igbvf_buffer *buffer_info; | ||
1935 | u32 info = 0, tu_cmd = 0; | ||
1936 | u32 mss_l4len_idx, l4len; | ||
1937 | *hdr_len = 0; | ||
1938 | |||
1939 | if (skb_header_cloned(skb)) { | ||
1940 | err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC); | ||
1941 | if (err) { | ||
1942 | dev_err(&adapter->pdev->dev, | ||
1943 | "igbvf_tso returning an error\n"); | ||
1944 | return err; | ||
1945 | } | ||
1946 | } | ||
1947 | |||
1948 | l4len = tcp_hdrlen(skb); | ||
1949 | *hdr_len += l4len; | ||
1950 | |||
1951 | if (skb->protocol == htons(ETH_P_IP)) { | ||
1952 | struct iphdr *iph = ip_hdr(skb); | ||
1953 | iph->tot_len = 0; | ||
1954 | iph->check = 0; | ||
1955 | tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, | ||
1956 | iph->daddr, 0, | ||
1957 | IPPROTO_TCP, | ||
1958 | 0); | ||
1959 | } else if (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6) { | ||
1960 | ipv6_hdr(skb)->payload_len = 0; | ||
1961 | tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, | ||
1962 | &ipv6_hdr(skb)->daddr, | ||
1963 | 0, IPPROTO_TCP, 0); | ||
1964 | } | ||
1965 | |||
1966 | i = tx_ring->next_to_use; | ||
1967 | |||
1968 | buffer_info = &tx_ring->buffer_info[i]; | ||
1969 | context_desc = IGBVF_TX_CTXTDESC_ADV(*tx_ring, i); | ||
1970 | /* VLAN MACLEN IPLEN */ | ||
1971 | if (tx_flags & IGBVF_TX_FLAGS_VLAN) | ||
1972 | info |= (tx_flags & IGBVF_TX_FLAGS_VLAN_MASK); | ||
1973 | info |= (skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT); | ||
1974 | *hdr_len += skb_network_offset(skb); | ||
1975 | info |= (skb_transport_header(skb) - skb_network_header(skb)); | ||
1976 | *hdr_len += (skb_transport_header(skb) - skb_network_header(skb)); | ||
1977 | context_desc->vlan_macip_lens = cpu_to_le32(info); | ||
1978 | |||
1979 | /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */ | ||
1980 | tu_cmd |= (E1000_TXD_CMD_DEXT | E1000_ADVTXD_DTYP_CTXT); | ||
1981 | |||
1982 | if (skb->protocol == htons(ETH_P_IP)) | ||
1983 | tu_cmd |= E1000_ADVTXD_TUCMD_IPV4; | ||
1984 | tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP; | ||
1985 | |||
1986 | context_desc->type_tucmd_mlhl = cpu_to_le32(tu_cmd); | ||
1987 | |||
1988 | /* MSS L4LEN IDX */ | ||
1989 | mss_l4len_idx = (skb_shinfo(skb)->gso_size << E1000_ADVTXD_MSS_SHIFT); | ||
1990 | mss_l4len_idx |= (l4len << E1000_ADVTXD_L4LEN_SHIFT); | ||
1991 | |||
1992 | context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx); | ||
1993 | context_desc->seqnum_seed = 0; | ||
1994 | |||
1995 | buffer_info->time_stamp = jiffies; | ||
1996 | buffer_info->next_to_watch = i; | ||
1997 | buffer_info->dma = 0; | ||
1998 | i++; | ||
1999 | if (i == tx_ring->count) | ||
2000 | i = 0; | ||
2001 | |||
2002 | tx_ring->next_to_use = i; | ||
2003 | |||
2004 | return true; | ||
2005 | } | ||
2006 | |||
2007 | static inline bool igbvf_tx_csum(struct igbvf_adapter *adapter, | ||
2008 | struct igbvf_ring *tx_ring, | ||
2009 | struct sk_buff *skb, u32 tx_flags) | ||
2010 | { | ||
2011 | struct e1000_adv_tx_context_desc *context_desc; | ||
2012 | unsigned int i; | ||
2013 | struct igbvf_buffer *buffer_info; | ||
2014 | u32 info = 0, tu_cmd = 0; | ||
2015 | |||
2016 | if ((skb->ip_summed == CHECKSUM_PARTIAL) || | ||
2017 | (tx_flags & IGBVF_TX_FLAGS_VLAN)) { | ||
2018 | i = tx_ring->next_to_use; | ||
2019 | buffer_info = &tx_ring->buffer_info[i]; | ||
2020 | context_desc = IGBVF_TX_CTXTDESC_ADV(*tx_ring, i); | ||
2021 | |||
2022 | if (tx_flags & IGBVF_TX_FLAGS_VLAN) | ||
2023 | info |= (tx_flags & IGBVF_TX_FLAGS_VLAN_MASK); | ||
2024 | |||
2025 | info |= (skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT); | ||
2026 | if (skb->ip_summed == CHECKSUM_PARTIAL) | ||
2027 | info |= (skb_transport_header(skb) - | ||
2028 | skb_network_header(skb)); | ||
2029 | |||
2030 | |||
2031 | context_desc->vlan_macip_lens = cpu_to_le32(info); | ||
2032 | |||
2033 | tu_cmd |= (E1000_TXD_CMD_DEXT | E1000_ADVTXD_DTYP_CTXT); | ||
2034 | |||
2035 | if (skb->ip_summed == CHECKSUM_PARTIAL) { | ||
2036 | switch (skb->protocol) { | ||
2037 | case __constant_htons(ETH_P_IP): | ||
2038 | tu_cmd |= E1000_ADVTXD_TUCMD_IPV4; | ||
2039 | if (ip_hdr(skb)->protocol == IPPROTO_TCP) | ||
2040 | tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP; | ||
2041 | break; | ||
2042 | case __constant_htons(ETH_P_IPV6): | ||
2043 | if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP) | ||
2044 | tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP; | ||
2045 | break; | ||
2046 | default: | ||
2047 | break; | ||
2048 | } | ||
2049 | } | ||
2050 | |||
2051 | context_desc->type_tucmd_mlhl = cpu_to_le32(tu_cmd); | ||
2052 | context_desc->seqnum_seed = 0; | ||
2053 | context_desc->mss_l4len_idx = 0; | ||
2054 | |||
2055 | buffer_info->time_stamp = jiffies; | ||
2056 | buffer_info->next_to_watch = i; | ||
2057 | buffer_info->dma = 0; | ||
2058 | i++; | ||
2059 | if (i == tx_ring->count) | ||
2060 | i = 0; | ||
2061 | tx_ring->next_to_use = i; | ||
2062 | |||
2063 | return true; | ||
2064 | } | ||
2065 | |||
2066 | return false; | ||
2067 | } | ||
2068 | |||
2069 | static int igbvf_maybe_stop_tx(struct net_device *netdev, int size) | ||
2070 | { | ||
2071 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2072 | |||
2073 | /* there is enough descriptors then we don't need to worry */ | ||
2074 | if (igbvf_desc_unused(adapter->tx_ring) >= size) | ||
2075 | return 0; | ||
2076 | |||
2077 | netif_stop_queue(netdev); | ||
2078 | |||
2079 | smp_mb(); | ||
2080 | |||
2081 | /* We need to check again just in case room has been made available */ | ||
2082 | if (igbvf_desc_unused(adapter->tx_ring) < size) | ||
2083 | return -EBUSY; | ||
2084 | |||
2085 | netif_wake_queue(netdev); | ||
2086 | |||
2087 | ++adapter->restart_queue; | ||
2088 | return 0; | ||
2089 | } | ||
2090 | |||
2091 | #define IGBVF_MAX_TXD_PWR 16 | ||
2092 | #define IGBVF_MAX_DATA_PER_TXD (1 << IGBVF_MAX_TXD_PWR) | ||
2093 | |||
2094 | static inline int igbvf_tx_map_adv(struct igbvf_adapter *adapter, | ||
2095 | struct igbvf_ring *tx_ring, | ||
2096 | struct sk_buff *skb, | ||
2097 | unsigned int first) | ||
2098 | { | ||
2099 | struct igbvf_buffer *buffer_info; | ||
2100 | unsigned int len = skb_headlen(skb); | ||
2101 | unsigned int count = 0, i; | ||
2102 | unsigned int f; | ||
2103 | dma_addr_t *map; | ||
2104 | |||
2105 | i = tx_ring->next_to_use; | ||
2106 | |||
2107 | if (skb_dma_map(&adapter->pdev->dev, skb, DMA_TO_DEVICE)) { | ||
2108 | dev_err(&adapter->pdev->dev, "TX DMA map failed\n"); | ||
2109 | return 0; | ||
2110 | } | ||
2111 | |||
2112 | map = skb_shinfo(skb)->dma_maps; | ||
2113 | |||
2114 | buffer_info = &tx_ring->buffer_info[i]; | ||
2115 | BUG_ON(len >= IGBVF_MAX_DATA_PER_TXD); | ||
2116 | buffer_info->length = len; | ||
2117 | /* set time_stamp *before* dma to help avoid a possible race */ | ||
2118 | buffer_info->time_stamp = jiffies; | ||
2119 | buffer_info->next_to_watch = i; | ||
2120 | buffer_info->dma = map[count]; | ||
2121 | count++; | ||
2122 | |||
2123 | for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) { | ||
2124 | struct skb_frag_struct *frag; | ||
2125 | |||
2126 | i++; | ||
2127 | if (i == tx_ring->count) | ||
2128 | i = 0; | ||
2129 | |||
2130 | frag = &skb_shinfo(skb)->frags[f]; | ||
2131 | len = frag->size; | ||
2132 | |||
2133 | buffer_info = &tx_ring->buffer_info[i]; | ||
2134 | BUG_ON(len >= IGBVF_MAX_DATA_PER_TXD); | ||
2135 | buffer_info->length = len; | ||
2136 | buffer_info->time_stamp = jiffies; | ||
2137 | buffer_info->next_to_watch = i; | ||
2138 | buffer_info->dma = map[count]; | ||
2139 | count++; | ||
2140 | } | ||
2141 | |||
2142 | tx_ring->buffer_info[i].skb = skb; | ||
2143 | tx_ring->buffer_info[first].next_to_watch = i; | ||
2144 | |||
2145 | return count; | ||
2146 | } | ||
2147 | |||
2148 | static inline void igbvf_tx_queue_adv(struct igbvf_adapter *adapter, | ||
2149 | struct igbvf_ring *tx_ring, | ||
2150 | int tx_flags, int count, u32 paylen, | ||
2151 | u8 hdr_len) | ||
2152 | { | ||
2153 | union e1000_adv_tx_desc *tx_desc = NULL; | ||
2154 | struct igbvf_buffer *buffer_info; | ||
2155 | u32 olinfo_status = 0, cmd_type_len; | ||
2156 | unsigned int i; | ||
2157 | |||
2158 | cmd_type_len = (E1000_ADVTXD_DTYP_DATA | E1000_ADVTXD_DCMD_IFCS | | ||
2159 | E1000_ADVTXD_DCMD_DEXT); | ||
2160 | |||
2161 | if (tx_flags & IGBVF_TX_FLAGS_VLAN) | ||
2162 | cmd_type_len |= E1000_ADVTXD_DCMD_VLE; | ||
2163 | |||
2164 | if (tx_flags & IGBVF_TX_FLAGS_TSO) { | ||
2165 | cmd_type_len |= E1000_ADVTXD_DCMD_TSE; | ||
2166 | |||
2167 | /* insert tcp checksum */ | ||
2168 | olinfo_status |= E1000_TXD_POPTS_TXSM << 8; | ||
2169 | |||
2170 | /* insert ip checksum */ | ||
2171 | if (tx_flags & IGBVF_TX_FLAGS_IPV4) | ||
2172 | olinfo_status |= E1000_TXD_POPTS_IXSM << 8; | ||
2173 | |||
2174 | } else if (tx_flags & IGBVF_TX_FLAGS_CSUM) { | ||
2175 | olinfo_status |= E1000_TXD_POPTS_TXSM << 8; | ||
2176 | } | ||
2177 | |||
2178 | olinfo_status |= ((paylen - hdr_len) << E1000_ADVTXD_PAYLEN_SHIFT); | ||
2179 | |||
2180 | i = tx_ring->next_to_use; | ||
2181 | while (count--) { | ||
2182 | buffer_info = &tx_ring->buffer_info[i]; | ||
2183 | tx_desc = IGBVF_TX_DESC_ADV(*tx_ring, i); | ||
2184 | tx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma); | ||
2185 | tx_desc->read.cmd_type_len = | ||
2186 | cpu_to_le32(cmd_type_len | buffer_info->length); | ||
2187 | tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status); | ||
2188 | i++; | ||
2189 | if (i == tx_ring->count) | ||
2190 | i = 0; | ||
2191 | } | ||
2192 | |||
2193 | tx_desc->read.cmd_type_len |= cpu_to_le32(adapter->txd_cmd); | ||
2194 | /* Force memory writes to complete before letting h/w | ||
2195 | * know there are new descriptors to fetch. (Only | ||
2196 | * applicable for weak-ordered memory model archs, | ||
2197 | * such as IA-64). */ | ||
2198 | wmb(); | ||
2199 | |||
2200 | tx_ring->next_to_use = i; | ||
2201 | writel(i, adapter->hw.hw_addr + tx_ring->tail); | ||
2202 | /* we need this if more than one processor can write to our tail | ||
2203 | * at a time, it syncronizes IO on IA64/Altix systems */ | ||
2204 | mmiowb(); | ||
2205 | } | ||
2206 | |||
2207 | static int igbvf_xmit_frame_ring_adv(struct sk_buff *skb, | ||
2208 | struct net_device *netdev, | ||
2209 | struct igbvf_ring *tx_ring) | ||
2210 | { | ||
2211 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2212 | unsigned int first, tx_flags = 0; | ||
2213 | u8 hdr_len = 0; | ||
2214 | int count = 0; | ||
2215 | int tso = 0; | ||
2216 | |||
2217 | if (test_bit(__IGBVF_DOWN, &adapter->state)) { | ||
2218 | dev_kfree_skb_any(skb); | ||
2219 | return NETDEV_TX_OK; | ||
2220 | } | ||
2221 | |||
2222 | if (skb->len <= 0) { | ||
2223 | dev_kfree_skb_any(skb); | ||
2224 | return NETDEV_TX_OK; | ||
2225 | } | ||
2226 | |||
2227 | /* | ||
2228 | * need: count + 4 desc gap to keep tail from touching | ||
2229 | * + 2 desc gap to keep tail from touching head, | ||
2230 | * + 1 desc for skb->data, | ||
2231 | * + 1 desc for context descriptor, | ||
2232 | * head, otherwise try next time | ||
2233 | */ | ||
2234 | if (igbvf_maybe_stop_tx(netdev, skb_shinfo(skb)->nr_frags + 4)) { | ||
2235 | /* this is a hard error */ | ||
2236 | return NETDEV_TX_BUSY; | ||
2237 | } | ||
2238 | |||
2239 | if (adapter->vlgrp && vlan_tx_tag_present(skb)) { | ||
2240 | tx_flags |= IGBVF_TX_FLAGS_VLAN; | ||
2241 | tx_flags |= (vlan_tx_tag_get(skb) << IGBVF_TX_FLAGS_VLAN_SHIFT); | ||
2242 | } | ||
2243 | |||
2244 | if (skb->protocol == htons(ETH_P_IP)) | ||
2245 | tx_flags |= IGBVF_TX_FLAGS_IPV4; | ||
2246 | |||
2247 | first = tx_ring->next_to_use; | ||
2248 | |||
2249 | tso = skb_is_gso(skb) ? | ||
2250 | igbvf_tso(adapter, tx_ring, skb, tx_flags, &hdr_len) : 0; | ||
2251 | if (unlikely(tso < 0)) { | ||
2252 | dev_kfree_skb_any(skb); | ||
2253 | return NETDEV_TX_OK; | ||
2254 | } | ||
2255 | |||
2256 | if (tso) | ||
2257 | tx_flags |= IGBVF_TX_FLAGS_TSO; | ||
2258 | else if (igbvf_tx_csum(adapter, tx_ring, skb, tx_flags) && | ||
2259 | (skb->ip_summed == CHECKSUM_PARTIAL)) | ||
2260 | tx_flags |= IGBVF_TX_FLAGS_CSUM; | ||
2261 | |||
2262 | /* | ||
2263 | * count reflects descriptors mapped, if 0 then mapping error | ||
2264 | * has occured and we need to rewind the descriptor queue | ||
2265 | */ | ||
2266 | count = igbvf_tx_map_adv(adapter, tx_ring, skb, first); | ||
2267 | |||
2268 | if (count) { | ||
2269 | igbvf_tx_queue_adv(adapter, tx_ring, tx_flags, count, | ||
2270 | skb->len, hdr_len); | ||
2271 | netdev->trans_start = jiffies; | ||
2272 | /* Make sure there is space in the ring for the next send. */ | ||
2273 | igbvf_maybe_stop_tx(netdev, MAX_SKB_FRAGS + 4); | ||
2274 | } else { | ||
2275 | dev_kfree_skb_any(skb); | ||
2276 | tx_ring->buffer_info[first].time_stamp = 0; | ||
2277 | tx_ring->next_to_use = first; | ||
2278 | } | ||
2279 | |||
2280 | return NETDEV_TX_OK; | ||
2281 | } | ||
2282 | |||
2283 | static int igbvf_xmit_frame(struct sk_buff *skb, struct net_device *netdev) | ||
2284 | { | ||
2285 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2286 | struct igbvf_ring *tx_ring; | ||
2287 | int retval; | ||
2288 | |||
2289 | if (test_bit(__IGBVF_DOWN, &adapter->state)) { | ||
2290 | dev_kfree_skb_any(skb); | ||
2291 | return NETDEV_TX_OK; | ||
2292 | } | ||
2293 | |||
2294 | tx_ring = &adapter->tx_ring[0]; | ||
2295 | |||
2296 | retval = igbvf_xmit_frame_ring_adv(skb, netdev, tx_ring); | ||
2297 | |||
2298 | return retval; | ||
2299 | } | ||
2300 | |||
2301 | /** | ||
2302 | * igbvf_tx_timeout - Respond to a Tx Hang | ||
2303 | * @netdev: network interface device structure | ||
2304 | **/ | ||
2305 | static void igbvf_tx_timeout(struct net_device *netdev) | ||
2306 | { | ||
2307 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2308 | |||
2309 | /* Do the reset outside of interrupt context */ | ||
2310 | adapter->tx_timeout_count++; | ||
2311 | schedule_work(&adapter->reset_task); | ||
2312 | } | ||
2313 | |||
2314 | static void igbvf_reset_task(struct work_struct *work) | ||
2315 | { | ||
2316 | struct igbvf_adapter *adapter; | ||
2317 | adapter = container_of(work, struct igbvf_adapter, reset_task); | ||
2318 | |||
2319 | igbvf_reinit_locked(adapter); | ||
2320 | } | ||
2321 | |||
2322 | /** | ||
2323 | * igbvf_get_stats - Get System Network Statistics | ||
2324 | * @netdev: network interface device structure | ||
2325 | * | ||
2326 | * Returns the address of the device statistics structure. | ||
2327 | * The statistics are actually updated from the timer callback. | ||
2328 | **/ | ||
2329 | static struct net_device_stats *igbvf_get_stats(struct net_device *netdev) | ||
2330 | { | ||
2331 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2332 | |||
2333 | /* only return the current stats */ | ||
2334 | return &adapter->net_stats; | ||
2335 | } | ||
2336 | |||
2337 | /** | ||
2338 | * igbvf_change_mtu - Change the Maximum Transfer Unit | ||
2339 | * @netdev: network interface device structure | ||
2340 | * @new_mtu: new value for maximum frame size | ||
2341 | * | ||
2342 | * Returns 0 on success, negative on failure | ||
2343 | **/ | ||
2344 | static int igbvf_change_mtu(struct net_device *netdev, int new_mtu) | ||
2345 | { | ||
2346 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2347 | int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN; | ||
2348 | |||
2349 | if ((new_mtu < 68) || (max_frame > MAX_JUMBO_FRAME_SIZE)) { | ||
2350 | dev_err(&adapter->pdev->dev, "Invalid MTU setting\n"); | ||
2351 | return -EINVAL; | ||
2352 | } | ||
2353 | |||
2354 | /* Jumbo frame size limits */ | ||
2355 | if (max_frame > ETH_FRAME_LEN + ETH_FCS_LEN) { | ||
2356 | if (!(adapter->flags & FLAG_HAS_JUMBO_FRAMES)) { | ||
2357 | dev_err(&adapter->pdev->dev, | ||
2358 | "Jumbo Frames not supported.\n"); | ||
2359 | return -EINVAL; | ||
2360 | } | ||
2361 | } | ||
2362 | |||
2363 | #define MAX_STD_JUMBO_FRAME_SIZE 9234 | ||
2364 | if (max_frame > MAX_STD_JUMBO_FRAME_SIZE) { | ||
2365 | dev_err(&adapter->pdev->dev, "MTU > 9216 not supported.\n"); | ||
2366 | return -EINVAL; | ||
2367 | } | ||
2368 | |||
2369 | while (test_and_set_bit(__IGBVF_RESETTING, &adapter->state)) | ||
2370 | msleep(1); | ||
2371 | /* igbvf_down has a dependency on max_frame_size */ | ||
2372 | adapter->max_frame_size = max_frame; | ||
2373 | if (netif_running(netdev)) | ||
2374 | igbvf_down(adapter); | ||
2375 | |||
2376 | /* | ||
2377 | * NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN | ||
2378 | * means we reserve 2 more, this pushes us to allocate from the next | ||
2379 | * larger slab size. | ||
2380 | * i.e. RXBUFFER_2048 --> size-4096 slab | ||
2381 | * However with the new *_jumbo_rx* routines, jumbo receives will use | ||
2382 | * fragmented skbs | ||
2383 | */ | ||
2384 | |||
2385 | if (max_frame <= 1024) | ||
2386 | adapter->rx_buffer_len = 1024; | ||
2387 | else if (max_frame <= 2048) | ||
2388 | adapter->rx_buffer_len = 2048; | ||
2389 | else | ||
2390 | #if (PAGE_SIZE / 2) > 16384 | ||
2391 | adapter->rx_buffer_len = 16384; | ||
2392 | #else | ||
2393 | adapter->rx_buffer_len = PAGE_SIZE / 2; | ||
2394 | #endif | ||
2395 | |||
2396 | |||
2397 | /* adjust allocation if LPE protects us, and we aren't using SBP */ | ||
2398 | if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN) || | ||
2399 | (max_frame == ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN)) | ||
2400 | adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN + | ||
2401 | ETH_FCS_LEN; | ||
2402 | |||
2403 | dev_info(&adapter->pdev->dev, "changing MTU from %d to %d\n", | ||
2404 | netdev->mtu, new_mtu); | ||
2405 | netdev->mtu = new_mtu; | ||
2406 | |||
2407 | if (netif_running(netdev)) | ||
2408 | igbvf_up(adapter); | ||
2409 | else | ||
2410 | igbvf_reset(adapter); | ||
2411 | |||
2412 | clear_bit(__IGBVF_RESETTING, &adapter->state); | ||
2413 | |||
2414 | return 0; | ||
2415 | } | ||
2416 | |||
2417 | static int igbvf_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) | ||
2418 | { | ||
2419 | switch (cmd) { | ||
2420 | default: | ||
2421 | return -EOPNOTSUPP; | ||
2422 | } | ||
2423 | } | ||
2424 | |||
2425 | static int igbvf_suspend(struct pci_dev *pdev, pm_message_t state) | ||
2426 | { | ||
2427 | struct net_device *netdev = pci_get_drvdata(pdev); | ||
2428 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2429 | #ifdef CONFIG_PM | ||
2430 | int retval = 0; | ||
2431 | #endif | ||
2432 | |||
2433 | netif_device_detach(netdev); | ||
2434 | |||
2435 | if (netif_running(netdev)) { | ||
2436 | WARN_ON(test_bit(__IGBVF_RESETTING, &adapter->state)); | ||
2437 | igbvf_down(adapter); | ||
2438 | igbvf_free_irq(adapter); | ||
2439 | } | ||
2440 | |||
2441 | #ifdef CONFIG_PM | ||
2442 | retval = pci_save_state(pdev); | ||
2443 | if (retval) | ||
2444 | return retval; | ||
2445 | #endif | ||
2446 | |||
2447 | pci_disable_device(pdev); | ||
2448 | |||
2449 | return 0; | ||
2450 | } | ||
2451 | |||
2452 | #ifdef CONFIG_PM | ||
2453 | static int igbvf_resume(struct pci_dev *pdev) | ||
2454 | { | ||
2455 | struct net_device *netdev = pci_get_drvdata(pdev); | ||
2456 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2457 | u32 err; | ||
2458 | |||
2459 | pci_restore_state(pdev); | ||
2460 | err = pci_enable_device_mem(pdev); | ||
2461 | if (err) { | ||
2462 | dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n"); | ||
2463 | return err; | ||
2464 | } | ||
2465 | |||
2466 | pci_set_master(pdev); | ||
2467 | |||
2468 | if (netif_running(netdev)) { | ||
2469 | err = igbvf_request_irq(adapter); | ||
2470 | if (err) | ||
2471 | return err; | ||
2472 | } | ||
2473 | |||
2474 | igbvf_reset(adapter); | ||
2475 | |||
2476 | if (netif_running(netdev)) | ||
2477 | igbvf_up(adapter); | ||
2478 | |||
2479 | netif_device_attach(netdev); | ||
2480 | |||
2481 | return 0; | ||
2482 | } | ||
2483 | #endif | ||
2484 | |||
2485 | static void igbvf_shutdown(struct pci_dev *pdev) | ||
2486 | { | ||
2487 | igbvf_suspend(pdev, PMSG_SUSPEND); | ||
2488 | } | ||
2489 | |||
2490 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
2491 | /* | ||
2492 | * Polling 'interrupt' - used by things like netconsole to send skbs | ||
2493 | * without having to re-enable interrupts. It's not called while | ||
2494 | * the interrupt routine is executing. | ||
2495 | */ | ||
2496 | static void igbvf_netpoll(struct net_device *netdev) | ||
2497 | { | ||
2498 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2499 | |||
2500 | disable_irq(adapter->pdev->irq); | ||
2501 | |||
2502 | igbvf_clean_tx_irq(adapter->tx_ring); | ||
2503 | |||
2504 | enable_irq(adapter->pdev->irq); | ||
2505 | } | ||
2506 | #endif | ||
2507 | |||
2508 | /** | ||
2509 | * igbvf_io_error_detected - called when PCI error is detected | ||
2510 | * @pdev: Pointer to PCI device | ||
2511 | * @state: The current pci connection state | ||
2512 | * | ||
2513 | * This function is called after a PCI bus error affecting | ||
2514 | * this device has been detected. | ||
2515 | */ | ||
2516 | static pci_ers_result_t igbvf_io_error_detected(struct pci_dev *pdev, | ||
2517 | pci_channel_state_t state) | ||
2518 | { | ||
2519 | struct net_device *netdev = pci_get_drvdata(pdev); | ||
2520 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2521 | |||
2522 | netif_device_detach(netdev); | ||
2523 | |||
2524 | if (netif_running(netdev)) | ||
2525 | igbvf_down(adapter); | ||
2526 | pci_disable_device(pdev); | ||
2527 | |||
2528 | /* Request a slot slot reset. */ | ||
2529 | return PCI_ERS_RESULT_NEED_RESET; | ||
2530 | } | ||
2531 | |||
2532 | /** | ||
2533 | * igbvf_io_slot_reset - called after the pci bus has been reset. | ||
2534 | * @pdev: Pointer to PCI device | ||
2535 | * | ||
2536 | * Restart the card from scratch, as if from a cold-boot. Implementation | ||
2537 | * resembles the first-half of the igbvf_resume routine. | ||
2538 | */ | ||
2539 | static pci_ers_result_t igbvf_io_slot_reset(struct pci_dev *pdev) | ||
2540 | { | ||
2541 | struct net_device *netdev = pci_get_drvdata(pdev); | ||
2542 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2543 | |||
2544 | if (pci_enable_device_mem(pdev)) { | ||
2545 | dev_err(&pdev->dev, | ||
2546 | "Cannot re-enable PCI device after reset.\n"); | ||
2547 | return PCI_ERS_RESULT_DISCONNECT; | ||
2548 | } | ||
2549 | pci_set_master(pdev); | ||
2550 | |||
2551 | igbvf_reset(adapter); | ||
2552 | |||
2553 | return PCI_ERS_RESULT_RECOVERED; | ||
2554 | } | ||
2555 | |||
2556 | /** | ||
2557 | * igbvf_io_resume - called when traffic can start flowing again. | ||
2558 | * @pdev: Pointer to PCI device | ||
2559 | * | ||
2560 | * This callback is called when the error recovery driver tells us that | ||
2561 | * its OK to resume normal operation. Implementation resembles the | ||
2562 | * second-half of the igbvf_resume routine. | ||
2563 | */ | ||
2564 | static void igbvf_io_resume(struct pci_dev *pdev) | ||
2565 | { | ||
2566 | struct net_device *netdev = pci_get_drvdata(pdev); | ||
2567 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2568 | |||
2569 | if (netif_running(netdev)) { | ||
2570 | if (igbvf_up(adapter)) { | ||
2571 | dev_err(&pdev->dev, | ||
2572 | "can't bring device back up after reset\n"); | ||
2573 | return; | ||
2574 | } | ||
2575 | } | ||
2576 | |||
2577 | netif_device_attach(netdev); | ||
2578 | } | ||
2579 | |||
2580 | static void igbvf_print_device_info(struct igbvf_adapter *adapter) | ||
2581 | { | ||
2582 | struct e1000_hw *hw = &adapter->hw; | ||
2583 | struct net_device *netdev = adapter->netdev; | ||
2584 | struct pci_dev *pdev = adapter->pdev; | ||
2585 | |||
2586 | dev_info(&pdev->dev, "Intel(R) 82576 Virtual Function\n"); | ||
2587 | dev_info(&pdev->dev, "Address: %02x:%02x:%02x:%02x:%02x:%02x\n", | ||
2588 | /* MAC address */ | ||
2589 | netdev->dev_addr[0], netdev->dev_addr[1], | ||
2590 | netdev->dev_addr[2], netdev->dev_addr[3], | ||
2591 | netdev->dev_addr[4], netdev->dev_addr[5]); | ||
2592 | dev_info(&pdev->dev, "MAC: %d\n", hw->mac.type); | ||
2593 | } | ||
2594 | |||
2595 | static const struct net_device_ops igbvf_netdev_ops = { | ||
2596 | .ndo_open = igbvf_open, | ||
2597 | .ndo_stop = igbvf_close, | ||
2598 | .ndo_start_xmit = igbvf_xmit_frame, | ||
2599 | .ndo_get_stats = igbvf_get_stats, | ||
2600 | .ndo_set_multicast_list = igbvf_set_multi, | ||
2601 | .ndo_set_mac_address = igbvf_set_mac, | ||
2602 | .ndo_change_mtu = igbvf_change_mtu, | ||
2603 | .ndo_do_ioctl = igbvf_ioctl, | ||
2604 | .ndo_tx_timeout = igbvf_tx_timeout, | ||
2605 | .ndo_vlan_rx_register = igbvf_vlan_rx_register, | ||
2606 | .ndo_vlan_rx_add_vid = igbvf_vlan_rx_add_vid, | ||
2607 | .ndo_vlan_rx_kill_vid = igbvf_vlan_rx_kill_vid, | ||
2608 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
2609 | .ndo_poll_controller = igbvf_netpoll, | ||
2610 | #endif | ||
2611 | }; | ||
2612 | |||
2613 | /** | ||
2614 | * igbvf_probe - Device Initialization Routine | ||
2615 | * @pdev: PCI device information struct | ||
2616 | * @ent: entry in igbvf_pci_tbl | ||
2617 | * | ||
2618 | * Returns 0 on success, negative on failure | ||
2619 | * | ||
2620 | * igbvf_probe initializes an adapter identified by a pci_dev structure. | ||
2621 | * The OS initialization, configuring of the adapter private structure, | ||
2622 | * and a hardware reset occur. | ||
2623 | **/ | ||
2624 | static int __devinit igbvf_probe(struct pci_dev *pdev, | ||
2625 | const struct pci_device_id *ent) | ||
2626 | { | ||
2627 | struct net_device *netdev; | ||
2628 | struct igbvf_adapter *adapter; | ||
2629 | struct e1000_hw *hw; | ||
2630 | const struct igbvf_info *ei = igbvf_info_tbl[ent->driver_data]; | ||
2631 | |||
2632 | static int cards_found; | ||
2633 | int err, pci_using_dac; | ||
2634 | |||
2635 | err = pci_enable_device_mem(pdev); | ||
2636 | if (err) | ||
2637 | return err; | ||
2638 | |||
2639 | pci_using_dac = 0; | ||
2640 | err = pci_set_dma_mask(pdev, DMA_64BIT_MASK); | ||
2641 | if (!err) { | ||
2642 | err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); | ||
2643 | if (!err) | ||
2644 | pci_using_dac = 1; | ||
2645 | } else { | ||
2646 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); | ||
2647 | if (err) { | ||
2648 | err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK); | ||
2649 | if (err) { | ||
2650 | dev_err(&pdev->dev, "No usable DMA " | ||
2651 | "configuration, aborting\n"); | ||
2652 | goto err_dma; | ||
2653 | } | ||
2654 | } | ||
2655 | } | ||
2656 | |||
2657 | err = pci_request_regions(pdev, igbvf_driver_name); | ||
2658 | if (err) | ||
2659 | goto err_pci_reg; | ||
2660 | |||
2661 | pci_set_master(pdev); | ||
2662 | |||
2663 | err = -ENOMEM; | ||
2664 | netdev = alloc_etherdev(sizeof(struct igbvf_adapter)); | ||
2665 | if (!netdev) | ||
2666 | goto err_alloc_etherdev; | ||
2667 | |||
2668 | SET_NETDEV_DEV(netdev, &pdev->dev); | ||
2669 | |||
2670 | pci_set_drvdata(pdev, netdev); | ||
2671 | adapter = netdev_priv(netdev); | ||
2672 | hw = &adapter->hw; | ||
2673 | adapter->netdev = netdev; | ||
2674 | adapter->pdev = pdev; | ||
2675 | adapter->ei = ei; | ||
2676 | adapter->pba = ei->pba; | ||
2677 | adapter->flags = ei->flags; | ||
2678 | adapter->hw.back = adapter; | ||
2679 | adapter->hw.mac.type = ei->mac; | ||
2680 | adapter->msg_enable = (1 << NETIF_MSG_DRV | NETIF_MSG_PROBE) - 1; | ||
2681 | |||
2682 | /* PCI config space info */ | ||
2683 | |||
2684 | hw->vendor_id = pdev->vendor; | ||
2685 | hw->device_id = pdev->device; | ||
2686 | hw->subsystem_vendor_id = pdev->subsystem_vendor; | ||
2687 | hw->subsystem_device_id = pdev->subsystem_device; | ||
2688 | |||
2689 | pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id); | ||
2690 | |||
2691 | err = -EIO; | ||
2692 | adapter->hw.hw_addr = ioremap(pci_resource_start(pdev, 0), | ||
2693 | pci_resource_len(pdev, 0)); | ||
2694 | |||
2695 | if (!adapter->hw.hw_addr) | ||
2696 | goto err_ioremap; | ||
2697 | |||
2698 | if (ei->get_variants) { | ||
2699 | err = ei->get_variants(adapter); | ||
2700 | if (err) | ||
2701 | goto err_ioremap; | ||
2702 | } | ||
2703 | |||
2704 | /* setup adapter struct */ | ||
2705 | err = igbvf_sw_init(adapter); | ||
2706 | if (err) | ||
2707 | goto err_sw_init; | ||
2708 | |||
2709 | /* construct the net_device struct */ | ||
2710 | netdev->netdev_ops = &igbvf_netdev_ops; | ||
2711 | |||
2712 | igbvf_set_ethtool_ops(netdev); | ||
2713 | netdev->watchdog_timeo = 5 * HZ; | ||
2714 | strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1); | ||
2715 | |||
2716 | adapter->bd_number = cards_found++; | ||
2717 | |||
2718 | netdev->features = NETIF_F_SG | | ||
2719 | NETIF_F_IP_CSUM | | ||
2720 | NETIF_F_HW_VLAN_TX | | ||
2721 | NETIF_F_HW_VLAN_RX | | ||
2722 | NETIF_F_HW_VLAN_FILTER; | ||
2723 | |||
2724 | netdev->features |= NETIF_F_IPV6_CSUM; | ||
2725 | netdev->features |= NETIF_F_TSO; | ||
2726 | netdev->features |= NETIF_F_TSO6; | ||
2727 | |||
2728 | if (pci_using_dac) | ||
2729 | netdev->features |= NETIF_F_HIGHDMA; | ||
2730 | |||
2731 | netdev->vlan_features |= NETIF_F_TSO; | ||
2732 | netdev->vlan_features |= NETIF_F_TSO6; | ||
2733 | netdev->vlan_features |= NETIF_F_IP_CSUM; | ||
2734 | netdev->vlan_features |= NETIF_F_IPV6_CSUM; | ||
2735 | netdev->vlan_features |= NETIF_F_SG; | ||
2736 | |||
2737 | /*reset the controller to put the device in a known good state */ | ||
2738 | err = hw->mac.ops.reset_hw(hw); | ||
2739 | if (err) { | ||
2740 | dev_info(&pdev->dev, | ||
2741 | "PF still in reset state, assigning new address\n"); | ||
2742 | random_ether_addr(hw->mac.addr); | ||
2743 | } else { | ||
2744 | err = hw->mac.ops.read_mac_addr(hw); | ||
2745 | if (err) { | ||
2746 | dev_err(&pdev->dev, "Error reading MAC address\n"); | ||
2747 | goto err_hw_init; | ||
2748 | } | ||
2749 | } | ||
2750 | |||
2751 | memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len); | ||
2752 | memcpy(netdev->perm_addr, adapter->hw.mac.addr, netdev->addr_len); | ||
2753 | |||
2754 | if (!is_valid_ether_addr(netdev->perm_addr)) { | ||
2755 | dev_err(&pdev->dev, "Invalid MAC Address: " | ||
2756 | "%02x:%02x:%02x:%02x:%02x:%02x\n", | ||
2757 | netdev->dev_addr[0], netdev->dev_addr[1], | ||
2758 | netdev->dev_addr[2], netdev->dev_addr[3], | ||
2759 | netdev->dev_addr[4], netdev->dev_addr[5]); | ||
2760 | err = -EIO; | ||
2761 | goto err_hw_init; | ||
2762 | } | ||
2763 | |||
2764 | setup_timer(&adapter->watchdog_timer, &igbvf_watchdog, | ||
2765 | (unsigned long) adapter); | ||
2766 | |||
2767 | INIT_WORK(&adapter->reset_task, igbvf_reset_task); | ||
2768 | INIT_WORK(&adapter->watchdog_task, igbvf_watchdog_task); | ||
2769 | |||
2770 | /* ring size defaults */ | ||
2771 | adapter->rx_ring->count = 1024; | ||
2772 | adapter->tx_ring->count = 1024; | ||
2773 | |||
2774 | /* reset the hardware with the new settings */ | ||
2775 | igbvf_reset(adapter); | ||
2776 | |||
2777 | /* tell the stack to leave us alone until igbvf_open() is called */ | ||
2778 | netif_carrier_off(netdev); | ||
2779 | netif_stop_queue(netdev); | ||
2780 | |||
2781 | strcpy(netdev->name, "eth%d"); | ||
2782 | err = register_netdev(netdev); | ||
2783 | if (err) | ||
2784 | goto err_hw_init; | ||
2785 | |||
2786 | igbvf_print_device_info(adapter); | ||
2787 | |||
2788 | igbvf_initialize_last_counter_stats(adapter); | ||
2789 | |||
2790 | return 0; | ||
2791 | |||
2792 | err_hw_init: | ||
2793 | kfree(adapter->tx_ring); | ||
2794 | kfree(adapter->rx_ring); | ||
2795 | err_sw_init: | ||
2796 | igbvf_reset_interrupt_capability(adapter); | ||
2797 | iounmap(adapter->hw.hw_addr); | ||
2798 | err_ioremap: | ||
2799 | free_netdev(netdev); | ||
2800 | err_alloc_etherdev: | ||
2801 | pci_release_regions(pdev); | ||
2802 | err_pci_reg: | ||
2803 | err_dma: | ||
2804 | pci_disable_device(pdev); | ||
2805 | return err; | ||
2806 | } | ||
2807 | |||
2808 | /** | ||
2809 | * igbvf_remove - Device Removal Routine | ||
2810 | * @pdev: PCI device information struct | ||
2811 | * | ||
2812 | * igbvf_remove is called by the PCI subsystem to alert the driver | ||
2813 | * that it should release a PCI device. The could be caused by a | ||
2814 | * Hot-Plug event, or because the driver is going to be removed from | ||
2815 | * memory. | ||
2816 | **/ | ||
2817 | static void __devexit igbvf_remove(struct pci_dev *pdev) | ||
2818 | { | ||
2819 | struct net_device *netdev = pci_get_drvdata(pdev); | ||
2820 | struct igbvf_adapter *adapter = netdev_priv(netdev); | ||
2821 | struct e1000_hw *hw = &adapter->hw; | ||
2822 | |||
2823 | /* | ||
2824 | * flush_scheduled work may reschedule our watchdog task, so | ||
2825 | * explicitly disable watchdog tasks from being rescheduled | ||
2826 | */ | ||
2827 | set_bit(__IGBVF_DOWN, &adapter->state); | ||
2828 | del_timer_sync(&adapter->watchdog_timer); | ||
2829 | |||
2830 | flush_scheduled_work(); | ||
2831 | |||
2832 | unregister_netdev(netdev); | ||
2833 | |||
2834 | igbvf_reset_interrupt_capability(adapter); | ||
2835 | |||
2836 | /* | ||
2837 | * it is important to delete the napi struct prior to freeing the | ||
2838 | * rx ring so that you do not end up with null pointer refs | ||
2839 | */ | ||
2840 | netif_napi_del(&adapter->rx_ring->napi); | ||
2841 | kfree(adapter->tx_ring); | ||
2842 | kfree(adapter->rx_ring); | ||
2843 | |||
2844 | iounmap(hw->hw_addr); | ||
2845 | if (hw->flash_address) | ||
2846 | iounmap(hw->flash_address); | ||
2847 | pci_release_regions(pdev); | ||
2848 | |||
2849 | free_netdev(netdev); | ||
2850 | |||
2851 | pci_disable_device(pdev); | ||
2852 | } | ||
2853 | |||
2854 | /* PCI Error Recovery (ERS) */ | ||
2855 | static struct pci_error_handlers igbvf_err_handler = { | ||
2856 | .error_detected = igbvf_io_error_detected, | ||
2857 | .slot_reset = igbvf_io_slot_reset, | ||
2858 | .resume = igbvf_io_resume, | ||
2859 | }; | ||
2860 | |||
2861 | static struct pci_device_id igbvf_pci_tbl[] = { | ||
2862 | { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_VF), board_vf }, | ||
2863 | { } /* terminate list */ | ||
2864 | }; | ||
2865 | MODULE_DEVICE_TABLE(pci, igbvf_pci_tbl); | ||
2866 | |||
2867 | /* PCI Device API Driver */ | ||
2868 | static struct pci_driver igbvf_driver = { | ||
2869 | .name = igbvf_driver_name, | ||
2870 | .id_table = igbvf_pci_tbl, | ||
2871 | .probe = igbvf_probe, | ||
2872 | .remove = __devexit_p(igbvf_remove), | ||
2873 | #ifdef CONFIG_PM | ||
2874 | /* Power Management Hooks */ | ||
2875 | .suspend = igbvf_suspend, | ||
2876 | .resume = igbvf_resume, | ||
2877 | #endif | ||
2878 | .shutdown = igbvf_shutdown, | ||
2879 | .err_handler = &igbvf_err_handler | ||
2880 | }; | ||
2881 | |||
2882 | /** | ||
2883 | * igbvf_init_module - Driver Registration Routine | ||
2884 | * | ||
2885 | * igbvf_init_module is the first routine called when the driver is | ||
2886 | * loaded. All it does is register with the PCI subsystem. | ||
2887 | **/ | ||
2888 | static int __init igbvf_init_module(void) | ||
2889 | { | ||
2890 | int ret; | ||
2891 | printk(KERN_INFO "%s - version %s\n", | ||
2892 | igbvf_driver_string, igbvf_driver_version); | ||
2893 | printk(KERN_INFO "%s\n", igbvf_copyright); | ||
2894 | |||
2895 | ret = pci_register_driver(&igbvf_driver); | ||
2896 | pm_qos_add_requirement(PM_QOS_CPU_DMA_LATENCY, igbvf_driver_name, | ||
2897 | PM_QOS_DEFAULT_VALUE); | ||
2898 | |||
2899 | return ret; | ||
2900 | } | ||
2901 | module_init(igbvf_init_module); | ||
2902 | |||
2903 | /** | ||
2904 | * igbvf_exit_module - Driver Exit Cleanup Routine | ||
2905 | * | ||
2906 | * igbvf_exit_module is called just before the driver is removed | ||
2907 | * from memory. | ||
2908 | **/ | ||
2909 | static void __exit igbvf_exit_module(void) | ||
2910 | { | ||
2911 | pci_unregister_driver(&igbvf_driver); | ||
2912 | pm_qos_remove_requirement(PM_QOS_CPU_DMA_LATENCY, igbvf_driver_name); | ||
2913 | } | ||
2914 | module_exit(igbvf_exit_module); | ||
2915 | |||
2916 | |||
2917 | MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>"); | ||
2918 | MODULE_DESCRIPTION("Intel(R) 82576 Virtual Function Network Driver"); | ||
2919 | MODULE_LICENSE("GPL"); | ||
2920 | MODULE_VERSION(DRV_VERSION); | ||
2921 | |||
2922 | /* netdev.c */ | ||
diff --git a/drivers/net/igbvf/regs.h b/drivers/net/igbvf/regs.h new file mode 100644 index 000000000000..b9e24ed70d0a --- /dev/null +++ b/drivers/net/igbvf/regs.h | |||
@@ -0,0 +1,108 @@ | |||
1 | /******************************************************************************* | ||
2 | |||
3 | Intel(R) 82576 Virtual Function Linux driver | ||
4 | Copyright(c) 2009 Intel Corporation. | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify it | ||
7 | under the terms and conditions of the GNU General Public License, | ||
8 | version 2, as published by the Free Software Foundation. | ||
9 | |||
10 | This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along with | ||
16 | this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | |||
19 | The full GNU General Public License is included in this distribution in | ||
20 | the file called "COPYING". | ||
21 | |||
22 | Contact Information: | ||
23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | |||
26 | *******************************************************************************/ | ||
27 | |||
28 | #ifndef _E1000_REGS_H_ | ||
29 | #define _E1000_REGS_H_ | ||
30 | |||
31 | #define E1000_CTRL 0x00000 /* Device Control - RW */ | ||
32 | #define E1000_STATUS 0x00008 /* Device Status - RO */ | ||
33 | #define E1000_ITR 0x000C4 /* Interrupt Throttling Rate - RW */ | ||
34 | #define E1000_EICR 0x01580 /* Ext. Interrupt Cause Read - R/clr */ | ||
35 | #define E1000_EITR(_n) (0x01680 + (0x4 * (_n))) | ||
36 | #define E1000_EICS 0x01520 /* Ext. Interrupt Cause Set - W0 */ | ||
37 | #define E1000_EIMS 0x01524 /* Ext. Interrupt Mask Set/Read - RW */ | ||
38 | #define E1000_EIMC 0x01528 /* Ext. Interrupt Mask Clear - WO */ | ||
39 | #define E1000_EIAC 0x0152C /* Ext. Interrupt Auto Clear - RW */ | ||
40 | #define E1000_EIAM 0x01530 /* Ext. Interrupt Ack Auto Clear Mask - RW */ | ||
41 | #define E1000_IVAR0 0x01700 /* Interrupt Vector Allocation (array) - RW */ | ||
42 | #define E1000_IVAR_MISC 0x01740 /* IVAR for "other" causes - RW */ | ||
43 | /* | ||
44 | * Convenience macros | ||
45 | * | ||
46 | * Note: "_n" is the queue number of the register to be written to. | ||
47 | * | ||
48 | * Example usage: | ||
49 | * E1000_RDBAL_REG(current_rx_queue) | ||
50 | */ | ||
51 | #define E1000_RDBAL(_n) ((_n) < 4 ? (0x02800 + ((_n) * 0x100)) : \ | ||
52 | (0x0C000 + ((_n) * 0x40))) | ||
53 | #define E1000_RDBAH(_n) ((_n) < 4 ? (0x02804 + ((_n) * 0x100)) : \ | ||
54 | (0x0C004 + ((_n) * 0x40))) | ||
55 | #define E1000_RDLEN(_n) ((_n) < 4 ? (0x02808 + ((_n) * 0x100)) : \ | ||
56 | (0x0C008 + ((_n) * 0x40))) | ||
57 | #define E1000_SRRCTL(_n) ((_n) < 4 ? (0x0280C + ((_n) * 0x100)) : \ | ||
58 | (0x0C00C + ((_n) * 0x40))) | ||
59 | #define E1000_RDH(_n) ((_n) < 4 ? (0x02810 + ((_n) * 0x100)) : \ | ||
60 | (0x0C010 + ((_n) * 0x40))) | ||
61 | #define E1000_RDT(_n) ((_n) < 4 ? (0x02818 + ((_n) * 0x100)) : \ | ||
62 | (0x0C018 + ((_n) * 0x40))) | ||
63 | #define E1000_RXDCTL(_n) ((_n) < 4 ? (0x02828 + ((_n) * 0x100)) : \ | ||
64 | (0x0C028 + ((_n) * 0x40))) | ||
65 | #define E1000_TDBAL(_n) ((_n) < 4 ? (0x03800 + ((_n) * 0x100)) : \ | ||
66 | (0x0E000 + ((_n) * 0x40))) | ||
67 | #define E1000_TDBAH(_n) ((_n) < 4 ? (0x03804 + ((_n) * 0x100)) : \ | ||
68 | (0x0E004 + ((_n) * 0x40))) | ||
69 | #define E1000_TDLEN(_n) ((_n) < 4 ? (0x03808 + ((_n) * 0x100)) : \ | ||
70 | (0x0E008 + ((_n) * 0x40))) | ||
71 | #define E1000_TDH(_n) ((_n) < 4 ? (0x03810 + ((_n) * 0x100)) : \ | ||
72 | (0x0E010 + ((_n) * 0x40))) | ||
73 | #define E1000_TDT(_n) ((_n) < 4 ? (0x03818 + ((_n) * 0x100)) : \ | ||
74 | (0x0E018 + ((_n) * 0x40))) | ||
75 | #define E1000_TXDCTL(_n) ((_n) < 4 ? (0x03828 + ((_n) * 0x100)) : \ | ||
76 | (0x0E028 + ((_n) * 0x40))) | ||
77 | #define E1000_DCA_TXCTRL(_n) (0x03814 + (_n << 8)) | ||
78 | #define E1000_DCA_RXCTRL(_n) (0x02814 + (_n << 8)) | ||
79 | #define E1000_RAL(_i) (((_i) <= 15) ? (0x05400 + ((_i) * 8)) : \ | ||
80 | (0x054E0 + ((_i - 16) * 8))) | ||
81 | #define E1000_RAH(_i) (((_i) <= 15) ? (0x05404 + ((_i) * 8)) : \ | ||
82 | (0x054E4 + ((_i - 16) * 8))) | ||
83 | |||
84 | /* Statistics registers */ | ||
85 | #define E1000_VFGPRC 0x00F10 | ||
86 | #define E1000_VFGORC 0x00F18 | ||
87 | #define E1000_VFMPRC 0x00F3C | ||
88 | #define E1000_VFGPTC 0x00F14 | ||
89 | #define E1000_VFGOTC 0x00F34 | ||
90 | #define E1000_VFGOTLBC 0x00F50 | ||
91 | #define E1000_VFGPTLBC 0x00F44 | ||
92 | #define E1000_VFGORLBC 0x00F48 | ||
93 | #define E1000_VFGPRLBC 0x00F40 | ||
94 | |||
95 | /* These act per VF so an array friendly macro is used */ | ||
96 | #define E1000_V2PMAILBOX(_n) (0x00C40 + (4 * (_n))) | ||
97 | #define E1000_VMBMEM(_n) (0x00800 + (64 * (_n))) | ||
98 | |||
99 | /* Define macros for handling registers */ | ||
100 | #define er32(reg) readl(hw->hw_addr + E1000_##reg) | ||
101 | #define ew32(reg, val) writel((val), hw->hw_addr + E1000_##reg) | ||
102 | #define array_er32(reg, offset) \ | ||
103 | readl(hw->hw_addr + E1000_##reg + (offset << 2)) | ||
104 | #define array_ew32(reg, offset, val) \ | ||
105 | writel((val), hw->hw_addr + E1000_##reg + (offset << 2)) | ||
106 | #define e1e_flush() er32(STATUS) | ||
107 | |||
108 | #endif | ||
diff --git a/drivers/net/igbvf/vf.c b/drivers/net/igbvf/vf.c new file mode 100644 index 000000000000..2a4faf9ade69 --- /dev/null +++ b/drivers/net/igbvf/vf.c | |||
@@ -0,0 +1,398 @@ | |||
1 | /******************************************************************************* | ||
2 | |||
3 | Intel(R) 82576 Virtual Function Linux driver | ||
4 | Copyright(c) 2009 Intel Corporation. | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify it | ||
7 | under the terms and conditions of the GNU General Public License, | ||
8 | version 2, as published by the Free Software Foundation. | ||
9 | |||
10 | This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along with | ||
16 | this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | |||
19 | The full GNU General Public License is included in this distribution in | ||
20 | the file called "COPYING". | ||
21 | |||
22 | Contact Information: | ||
23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | |||
26 | *******************************************************************************/ | ||
27 | |||
28 | |||
29 | #include "vf.h" | ||
30 | |||
31 | static s32 e1000_check_for_link_vf(struct e1000_hw *hw); | ||
32 | static s32 e1000_get_link_up_info_vf(struct e1000_hw *hw, u16 *speed, | ||
33 | u16 *duplex); | ||
34 | static s32 e1000_init_hw_vf(struct e1000_hw *hw); | ||
35 | static s32 e1000_reset_hw_vf(struct e1000_hw *hw); | ||
36 | |||
37 | static void e1000_update_mc_addr_list_vf(struct e1000_hw *hw, u8 *, | ||
38 | u32, u32, u32); | ||
39 | static void e1000_rar_set_vf(struct e1000_hw *, u8 *, u32); | ||
40 | static s32 e1000_read_mac_addr_vf(struct e1000_hw *); | ||
41 | static s32 e1000_set_vfta_vf(struct e1000_hw *, u16, bool); | ||
42 | |||
43 | /** | ||
44 | * e1000_init_mac_params_vf - Inits MAC params | ||
45 | * @hw: pointer to the HW structure | ||
46 | **/ | ||
47 | static s32 e1000_init_mac_params_vf(struct e1000_hw *hw) | ||
48 | { | ||
49 | struct e1000_mac_info *mac = &hw->mac; | ||
50 | |||
51 | /* VF's have no MTA Registers - PF feature only */ | ||
52 | mac->mta_reg_count = 128; | ||
53 | /* VF's have no access to RAR entries */ | ||
54 | mac->rar_entry_count = 1; | ||
55 | |||
56 | /* Function pointers */ | ||
57 | /* reset */ | ||
58 | mac->ops.reset_hw = e1000_reset_hw_vf; | ||
59 | /* hw initialization */ | ||
60 | mac->ops.init_hw = e1000_init_hw_vf; | ||
61 | /* check for link */ | ||
62 | mac->ops.check_for_link = e1000_check_for_link_vf; | ||
63 | /* link info */ | ||
64 | mac->ops.get_link_up_info = e1000_get_link_up_info_vf; | ||
65 | /* multicast address update */ | ||
66 | mac->ops.update_mc_addr_list = e1000_update_mc_addr_list_vf; | ||
67 | /* set mac address */ | ||
68 | mac->ops.rar_set = e1000_rar_set_vf; | ||
69 | /* read mac address */ | ||
70 | mac->ops.read_mac_addr = e1000_read_mac_addr_vf; | ||
71 | /* set vlan filter table array */ | ||
72 | mac->ops.set_vfta = e1000_set_vfta_vf; | ||
73 | |||
74 | return E1000_SUCCESS; | ||
75 | } | ||
76 | |||
77 | /** | ||
78 | * e1000_init_function_pointers_vf - Inits function pointers | ||
79 | * @hw: pointer to the HW structure | ||
80 | **/ | ||
81 | void e1000_init_function_pointers_vf(struct e1000_hw *hw) | ||
82 | { | ||
83 | hw->mac.ops.init_params = e1000_init_mac_params_vf; | ||
84 | hw->mbx.ops.init_params = e1000_init_mbx_params_vf; | ||
85 | } | ||
86 | |||
87 | /** | ||
88 | * e1000_get_link_up_info_vf - Gets link info. | ||
89 | * @hw: pointer to the HW structure | ||
90 | * @speed: pointer to 16 bit value to store link speed. | ||
91 | * @duplex: pointer to 16 bit value to store duplex. | ||
92 | * | ||
93 | * Since we cannot read the PHY and get accurate link info, we must rely upon | ||
94 | * the status register's data which is often stale and inaccurate. | ||
95 | **/ | ||
96 | static s32 e1000_get_link_up_info_vf(struct e1000_hw *hw, u16 *speed, | ||
97 | u16 *duplex) | ||
98 | { | ||
99 | s32 status; | ||
100 | |||
101 | status = er32(STATUS); | ||
102 | if (status & E1000_STATUS_SPEED_1000) | ||
103 | *speed = SPEED_1000; | ||
104 | else if (status & E1000_STATUS_SPEED_100) | ||
105 | *speed = SPEED_100; | ||
106 | else | ||
107 | *speed = SPEED_10; | ||
108 | |||
109 | if (status & E1000_STATUS_FD) | ||
110 | *duplex = FULL_DUPLEX; | ||
111 | else | ||
112 | *duplex = HALF_DUPLEX; | ||
113 | |||
114 | return E1000_SUCCESS; | ||
115 | } | ||
116 | |||
117 | /** | ||
118 | * e1000_reset_hw_vf - Resets the HW | ||
119 | * @hw: pointer to the HW structure | ||
120 | * | ||
121 | * VF's provide a function level reset. This is done using bit 26 of ctrl_reg. | ||
122 | * This is all the reset we can perform on a VF. | ||
123 | **/ | ||
124 | static s32 e1000_reset_hw_vf(struct e1000_hw *hw) | ||
125 | { | ||
126 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
127 | u32 timeout = E1000_VF_INIT_TIMEOUT; | ||
128 | u32 ret_val = -E1000_ERR_MAC_INIT; | ||
129 | u32 msgbuf[3]; | ||
130 | u8 *addr = (u8 *)(&msgbuf[1]); | ||
131 | u32 ctrl; | ||
132 | |||
133 | /* assert vf queue/interrupt reset */ | ||
134 | ctrl = er32(CTRL); | ||
135 | ew32(CTRL, ctrl | E1000_CTRL_RST); | ||
136 | |||
137 | /* we cannot initialize while the RSTI / RSTD bits are asserted */ | ||
138 | while (!mbx->ops.check_for_rst(hw) && timeout) { | ||
139 | timeout--; | ||
140 | udelay(5); | ||
141 | } | ||
142 | |||
143 | if (timeout) { | ||
144 | /* mailbox timeout can now become active */ | ||
145 | mbx->timeout = E1000_VF_MBX_INIT_TIMEOUT; | ||
146 | |||
147 | /* notify pf of vf reset completion */ | ||
148 | msgbuf[0] = E1000_VF_RESET; | ||
149 | mbx->ops.write_posted(hw, msgbuf, 1); | ||
150 | |||
151 | msleep(10); | ||
152 | |||
153 | /* set our "perm_addr" based on info provided by PF */ | ||
154 | ret_val = mbx->ops.read_posted(hw, msgbuf, 3); | ||
155 | if (!ret_val) { | ||
156 | if (msgbuf[0] == (E1000_VF_RESET | E1000_VT_MSGTYPE_ACK)) | ||
157 | memcpy(hw->mac.perm_addr, addr, 6); | ||
158 | else | ||
159 | ret_val = -E1000_ERR_MAC_INIT; | ||
160 | } | ||
161 | } | ||
162 | |||
163 | return ret_val; | ||
164 | } | ||
165 | |||
166 | /** | ||
167 | * e1000_init_hw_vf - Inits the HW | ||
168 | * @hw: pointer to the HW structure | ||
169 | * | ||
170 | * Not much to do here except clear the PF Reset indication if there is one. | ||
171 | **/ | ||
172 | static s32 e1000_init_hw_vf(struct e1000_hw *hw) | ||
173 | { | ||
174 | /* attempt to set and restore our mac address */ | ||
175 | e1000_rar_set_vf(hw, hw->mac.addr, 0); | ||
176 | |||
177 | return E1000_SUCCESS; | ||
178 | } | ||
179 | |||
180 | /** | ||
181 | * e1000_hash_mc_addr_vf - Generate a multicast hash value | ||
182 | * @hw: pointer to the HW structure | ||
183 | * @mc_addr: pointer to a multicast address | ||
184 | * | ||
185 | * Generates a multicast address hash value which is used to determine | ||
186 | * the multicast filter table array address and new table value. See | ||
187 | * e1000_mta_set_generic() | ||
188 | **/ | ||
189 | static u32 e1000_hash_mc_addr_vf(struct e1000_hw *hw, u8 *mc_addr) | ||
190 | { | ||
191 | u32 hash_value, hash_mask; | ||
192 | u8 bit_shift = 0; | ||
193 | |||
194 | /* Register count multiplied by bits per register */ | ||
195 | hash_mask = (hw->mac.mta_reg_count * 32) - 1; | ||
196 | |||
197 | /* | ||
198 | * The bit_shift is the number of left-shifts | ||
199 | * where 0xFF would still fall within the hash mask. | ||
200 | */ | ||
201 | while (hash_mask >> bit_shift != 0xFF) | ||
202 | bit_shift++; | ||
203 | |||
204 | hash_value = hash_mask & (((mc_addr[4] >> (8 - bit_shift)) | | ||
205 | (((u16) mc_addr[5]) << bit_shift))); | ||
206 | |||
207 | return hash_value; | ||
208 | } | ||
209 | |||
210 | /** | ||
211 | * e1000_update_mc_addr_list_vf - Update Multicast addresses | ||
212 | * @hw: pointer to the HW structure | ||
213 | * @mc_addr_list: array of multicast addresses to program | ||
214 | * @mc_addr_count: number of multicast addresses to program | ||
215 | * @rar_used_count: the first RAR register free to program | ||
216 | * @rar_count: total number of supported Receive Address Registers | ||
217 | * | ||
218 | * Updates the Receive Address Registers and Multicast Table Array. | ||
219 | * The caller must have a packed mc_addr_list of multicast addresses. | ||
220 | * The parameter rar_count will usually be hw->mac.rar_entry_count | ||
221 | * unless there are workarounds that change this. | ||
222 | **/ | ||
223 | void e1000_update_mc_addr_list_vf(struct e1000_hw *hw, | ||
224 | u8 *mc_addr_list, u32 mc_addr_count, | ||
225 | u32 rar_used_count, u32 rar_count) | ||
226 | { | ||
227 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
228 | u32 msgbuf[E1000_VFMAILBOX_SIZE]; | ||
229 | u16 *hash_list = (u16 *)&msgbuf[1]; | ||
230 | u32 hash_value; | ||
231 | u32 cnt, i; | ||
232 | |||
233 | /* Each entry in the list uses 1 16 bit word. We have 30 | ||
234 | * 16 bit words available in our HW msg buffer (minus 1 for the | ||
235 | * msg type). That's 30 hash values if we pack 'em right. If | ||
236 | * there are more than 30 MC addresses to add then punt the | ||
237 | * extras for now and then add code to handle more than 30 later. | ||
238 | * It would be unusual for a server to request that many multi-cast | ||
239 | * addresses except for in large enterprise network environments. | ||
240 | */ | ||
241 | |||
242 | cnt = (mc_addr_count > 30) ? 30 : mc_addr_count; | ||
243 | msgbuf[0] = E1000_VF_SET_MULTICAST; | ||
244 | msgbuf[0] |= cnt << E1000_VT_MSGINFO_SHIFT; | ||
245 | |||
246 | for (i = 0; i < cnt; i++) { | ||
247 | hash_value = e1000_hash_mc_addr_vf(hw, mc_addr_list); | ||
248 | hash_list[i] = hash_value & 0x0FFFF; | ||
249 | mc_addr_list += ETH_ADDR_LEN; | ||
250 | } | ||
251 | |||
252 | mbx->ops.write_posted(hw, msgbuf, E1000_VFMAILBOX_SIZE); | ||
253 | } | ||
254 | |||
255 | /** | ||
256 | * e1000_set_vfta_vf - Set/Unset vlan filter table address | ||
257 | * @hw: pointer to the HW structure | ||
258 | * @vid: determines the vfta register and bit to set/unset | ||
259 | * @set: if true then set bit, else clear bit | ||
260 | **/ | ||
261 | static s32 e1000_set_vfta_vf(struct e1000_hw *hw, u16 vid, bool set) | ||
262 | { | ||
263 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
264 | u32 msgbuf[2]; | ||
265 | s32 err; | ||
266 | |||
267 | msgbuf[0] = E1000_VF_SET_VLAN; | ||
268 | msgbuf[1] = vid; | ||
269 | /* Setting the 8 bit field MSG INFO to true indicates "add" */ | ||
270 | if (set) | ||
271 | msgbuf[0] |= 1 << E1000_VT_MSGINFO_SHIFT; | ||
272 | |||
273 | mbx->ops.write_posted(hw, msgbuf, 2); | ||
274 | |||
275 | err = mbx->ops.read_posted(hw, msgbuf, 2); | ||
276 | |||
277 | /* if nacked the vlan was rejected */ | ||
278 | if (!err && (msgbuf[0] == (E1000_VF_SET_VLAN | E1000_VT_MSGTYPE_NACK))) | ||
279 | err = -E1000_ERR_MAC_INIT; | ||
280 | |||
281 | return err; | ||
282 | } | ||
283 | |||
284 | /** e1000_rlpml_set_vf - Set the maximum receive packet length | ||
285 | * @hw: pointer to the HW structure | ||
286 | * @max_size: value to assign to max frame size | ||
287 | **/ | ||
288 | void e1000_rlpml_set_vf(struct e1000_hw *hw, u16 max_size) | ||
289 | { | ||
290 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
291 | u32 msgbuf[2]; | ||
292 | |||
293 | msgbuf[0] = E1000_VF_SET_LPE; | ||
294 | msgbuf[1] = max_size; | ||
295 | |||
296 | mbx->ops.write_posted(hw, msgbuf, 2); | ||
297 | } | ||
298 | |||
299 | /** | ||
300 | * e1000_rar_set_vf - set device MAC address | ||
301 | * @hw: pointer to the HW structure | ||
302 | * @addr: pointer to the receive address | ||
303 | * @index receive address array register | ||
304 | **/ | ||
305 | static void e1000_rar_set_vf(struct e1000_hw *hw, u8 * addr, u32 index) | ||
306 | { | ||
307 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
308 | u32 msgbuf[3]; | ||
309 | u8 *msg_addr = (u8 *)(&msgbuf[1]); | ||
310 | s32 ret_val; | ||
311 | |||
312 | memset(msgbuf, 0, 12); | ||
313 | msgbuf[0] = E1000_VF_SET_MAC_ADDR; | ||
314 | memcpy(msg_addr, addr, 6); | ||
315 | ret_val = mbx->ops.write_posted(hw, msgbuf, 3); | ||
316 | |||
317 | if (!ret_val) | ||
318 | ret_val = mbx->ops.read_posted(hw, msgbuf, 3); | ||
319 | |||
320 | /* if nacked the address was rejected, use "perm_addr" */ | ||
321 | if (!ret_val && | ||
322 | (msgbuf[0] == (E1000_VF_SET_MAC_ADDR | E1000_VT_MSGTYPE_NACK))) | ||
323 | e1000_read_mac_addr_vf(hw); | ||
324 | } | ||
325 | |||
326 | /** | ||
327 | * e1000_read_mac_addr_vf - Read device MAC address | ||
328 | * @hw: pointer to the HW structure | ||
329 | **/ | ||
330 | static s32 e1000_read_mac_addr_vf(struct e1000_hw *hw) | ||
331 | { | ||
332 | int i; | ||
333 | |||
334 | for (i = 0; i < ETH_ADDR_LEN; i++) | ||
335 | hw->mac.addr[i] = hw->mac.perm_addr[i]; | ||
336 | |||
337 | return E1000_SUCCESS; | ||
338 | } | ||
339 | |||
340 | /** | ||
341 | * e1000_check_for_link_vf - Check for link for a virtual interface | ||
342 | * @hw: pointer to the HW structure | ||
343 | * | ||
344 | * Checks to see if the underlying PF is still talking to the VF and | ||
345 | * if it is then it reports the link state to the hardware, otherwise | ||
346 | * it reports link down and returns an error. | ||
347 | **/ | ||
348 | static s32 e1000_check_for_link_vf(struct e1000_hw *hw) | ||
349 | { | ||
350 | struct e1000_mbx_info *mbx = &hw->mbx; | ||
351 | struct e1000_mac_info *mac = &hw->mac; | ||
352 | s32 ret_val = E1000_SUCCESS; | ||
353 | u32 in_msg = 0; | ||
354 | |||
355 | /* | ||
356 | * We only want to run this if there has been a rst asserted. | ||
357 | * in this case that could mean a link change, device reset, | ||
358 | * or a virtual function reset | ||
359 | */ | ||
360 | |||
361 | /* If we were hit with a reset drop the link */ | ||
362 | if (!mbx->ops.check_for_rst(hw)) | ||
363 | mac->get_link_status = true; | ||
364 | |||
365 | if (!mac->get_link_status) | ||
366 | goto out; | ||
367 | |||
368 | /* if link status is down no point in checking to see if pf is up */ | ||
369 | if (!(er32(STATUS) & E1000_STATUS_LU)) | ||
370 | goto out; | ||
371 | |||
372 | /* if the read failed it could just be a mailbox collision, best wait | ||
373 | * until we are called again and don't report an error */ | ||
374 | if (mbx->ops.read(hw, &in_msg, 1)) | ||
375 | goto out; | ||
376 | |||
377 | /* if incoming message isn't clear to send we are waiting on response */ | ||
378 | if (!(in_msg & E1000_VT_MSGTYPE_CTS)) { | ||
379 | /* message is not CTS and is NACK we must have lost CTS status */ | ||
380 | if (in_msg & E1000_VT_MSGTYPE_NACK) | ||
381 | ret_val = -E1000_ERR_MAC_INIT; | ||
382 | goto out; | ||
383 | } | ||
384 | |||
385 | /* the pf is talking, if we timed out in the past we reinit */ | ||
386 | if (!mbx->timeout) { | ||
387 | ret_val = -E1000_ERR_MAC_INIT; | ||
388 | goto out; | ||
389 | } | ||
390 | |||
391 | /* if we passed all the tests above then the link is up and we no | ||
392 | * longer need to check for link */ | ||
393 | mac->get_link_status = false; | ||
394 | |||
395 | out: | ||
396 | return ret_val; | ||
397 | } | ||
398 | |||
diff --git a/drivers/net/igbvf/vf.h b/drivers/net/igbvf/vf.h new file mode 100644 index 000000000000..1e8ce3741a67 --- /dev/null +++ b/drivers/net/igbvf/vf.h | |||
@@ -0,0 +1,264 @@ | |||
1 | /******************************************************************************* | ||
2 | |||
3 | Intel(R) 82576 Virtual Function Linux driver | ||
4 | Copyright(c) 2009 Intel Corporation. | ||
5 | |||
6 | This program is free software; you can redistribute it and/or modify it | ||
7 | under the terms and conditions of the GNU General Public License, | ||
8 | version 2, as published by the Free Software Foundation. | ||
9 | |||
10 | This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along with | ||
16 | this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | |||
19 | The full GNU General Public License is included in this distribution in | ||
20 | the file called "COPYING". | ||
21 | |||
22 | Contact Information: | ||
23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | ||
25 | |||
26 | *******************************************************************************/ | ||
27 | |||
28 | #ifndef _E1000_VF_H_ | ||
29 | #define _E1000_VF_H_ | ||
30 | |||
31 | #include <linux/pci.h> | ||
32 | #include <linux/delay.h> | ||
33 | #include <linux/interrupt.h> | ||
34 | #include <linux/if_ether.h> | ||
35 | |||
36 | #include "regs.h" | ||
37 | #include "defines.h" | ||
38 | |||
39 | struct e1000_hw; | ||
40 | |||
41 | #define E1000_DEV_ID_82576_VF 0x10CA | ||
42 | #define E1000_REVISION_0 0 | ||
43 | #define E1000_REVISION_1 1 | ||
44 | #define E1000_REVISION_2 2 | ||
45 | #define E1000_REVISION_3 3 | ||
46 | #define E1000_REVISION_4 4 | ||
47 | |||
48 | #define E1000_FUNC_0 0 | ||
49 | #define E1000_FUNC_1 1 | ||
50 | |||
51 | /* | ||
52 | * Receive Address Register Count | ||
53 | * Number of high/low register pairs in the RAR. The RAR (Receive Address | ||
54 | * Registers) holds the directed and multicast addresses that we monitor. | ||
55 | * These entries are also used for MAC-based filtering. | ||
56 | */ | ||
57 | #define E1000_RAR_ENTRIES_VF 1 | ||
58 | |||
59 | /* Receive Descriptor - Advanced */ | ||
60 | union e1000_adv_rx_desc { | ||
61 | struct { | ||
62 | u64 pkt_addr; /* Packet buffer address */ | ||
63 | u64 hdr_addr; /* Header buffer address */ | ||
64 | } read; | ||
65 | struct { | ||
66 | struct { | ||
67 | union { | ||
68 | u32 data; | ||
69 | struct { | ||
70 | u16 pkt_info; /* RSS/Packet type */ | ||
71 | u16 hdr_info; /* Split Header, | ||
72 | * hdr buffer length */ | ||
73 | } hs_rss; | ||
74 | } lo_dword; | ||
75 | union { | ||
76 | u32 rss; /* RSS Hash */ | ||
77 | struct { | ||
78 | u16 ip_id; /* IP id */ | ||
79 | u16 csum; /* Packet Checksum */ | ||
80 | } csum_ip; | ||
81 | } hi_dword; | ||
82 | } lower; | ||
83 | struct { | ||
84 | u32 status_error; /* ext status/error */ | ||
85 | u16 length; /* Packet length */ | ||
86 | u16 vlan; /* VLAN tag */ | ||
87 | } upper; | ||
88 | } wb; /* writeback */ | ||
89 | }; | ||
90 | |||
91 | #define E1000_RXDADV_HDRBUFLEN_MASK 0x7FE0 | ||
92 | #define E1000_RXDADV_HDRBUFLEN_SHIFT 5 | ||
93 | |||
94 | /* Transmit Descriptor - Advanced */ | ||
95 | union e1000_adv_tx_desc { | ||
96 | struct { | ||
97 | u64 buffer_addr; /* Address of descriptor's data buf */ | ||
98 | u32 cmd_type_len; | ||
99 | u32 olinfo_status; | ||
100 | } read; | ||
101 | struct { | ||
102 | u64 rsvd; /* Reserved */ | ||
103 | u32 nxtseq_seed; | ||
104 | u32 status; | ||
105 | } wb; | ||
106 | }; | ||
107 | |||
108 | /* Adv Transmit Descriptor Config Masks */ | ||
109 | #define E1000_ADVTXD_DTYP_CTXT 0x00200000 /* Advanced Context Descriptor */ | ||
110 | #define E1000_ADVTXD_DTYP_DATA 0x00300000 /* Advanced Data Descriptor */ | ||
111 | #define E1000_ADVTXD_DCMD_EOP 0x01000000 /* End of Packet */ | ||
112 | #define E1000_ADVTXD_DCMD_IFCS 0x02000000 /* Insert FCS (Ethernet CRC) */ | ||
113 | #define E1000_ADVTXD_DCMD_RS 0x08000000 /* Report Status */ | ||
114 | #define E1000_ADVTXD_DCMD_DEXT 0x20000000 /* Descriptor extension (1=Adv) */ | ||
115 | #define E1000_ADVTXD_DCMD_VLE 0x40000000 /* VLAN pkt enable */ | ||
116 | #define E1000_ADVTXD_DCMD_TSE 0x80000000 /* TCP Seg enable */ | ||
117 | #define E1000_ADVTXD_PAYLEN_SHIFT 14 /* Adv desc PAYLEN shift */ | ||
118 | |||
119 | /* Context descriptors */ | ||
120 | struct e1000_adv_tx_context_desc { | ||
121 | u32 vlan_macip_lens; | ||
122 | u32 seqnum_seed; | ||
123 | u32 type_tucmd_mlhl; | ||
124 | u32 mss_l4len_idx; | ||
125 | }; | ||
126 | |||
127 | #define E1000_ADVTXD_MACLEN_SHIFT 9 /* Adv ctxt desc mac len shift */ | ||
128 | #define E1000_ADVTXD_TUCMD_IPV4 0x00000400 /* IP Packet Type: 1=IPv4 */ | ||
129 | #define E1000_ADVTXD_TUCMD_L4T_TCP 0x00000800 /* L4 Packet TYPE of TCP */ | ||
130 | #define E1000_ADVTXD_L4LEN_SHIFT 8 /* Adv ctxt L4LEN shift */ | ||
131 | #define E1000_ADVTXD_MSS_SHIFT 16 /* Adv ctxt MSS shift */ | ||
132 | |||
133 | enum e1000_mac_type { | ||
134 | e1000_undefined = 0, | ||
135 | e1000_vfadapt, | ||
136 | e1000_num_macs /* List is 1-based, so subtract 1 for true count. */ | ||
137 | }; | ||
138 | |||
139 | struct e1000_vf_stats { | ||
140 | u64 base_gprc; | ||
141 | u64 base_gptc; | ||
142 | u64 base_gorc; | ||
143 | u64 base_gotc; | ||
144 | u64 base_mprc; | ||
145 | u64 base_gotlbc; | ||
146 | u64 base_gptlbc; | ||
147 | u64 base_gorlbc; | ||
148 | u64 base_gprlbc; | ||
149 | |||
150 | u32 last_gprc; | ||
151 | u32 last_gptc; | ||
152 | u32 last_gorc; | ||
153 | u32 last_gotc; | ||
154 | u32 last_mprc; | ||
155 | u32 last_gotlbc; | ||
156 | u32 last_gptlbc; | ||
157 | u32 last_gorlbc; | ||
158 | u32 last_gprlbc; | ||
159 | |||
160 | u64 gprc; | ||
161 | u64 gptc; | ||
162 | u64 gorc; | ||
163 | u64 gotc; | ||
164 | u64 mprc; | ||
165 | u64 gotlbc; | ||
166 | u64 gptlbc; | ||
167 | u64 gorlbc; | ||
168 | u64 gprlbc; | ||
169 | }; | ||
170 | |||
171 | #include "mbx.h" | ||
172 | |||
173 | struct e1000_mac_operations { | ||
174 | /* Function pointers for the MAC. */ | ||
175 | s32 (*init_params)(struct e1000_hw *); | ||
176 | s32 (*check_for_link)(struct e1000_hw *); | ||
177 | void (*clear_vfta)(struct e1000_hw *); | ||
178 | s32 (*get_bus_info)(struct e1000_hw *); | ||
179 | s32 (*get_link_up_info)(struct e1000_hw *, u16 *, u16 *); | ||
180 | void (*update_mc_addr_list)(struct e1000_hw *, u8 *, u32, u32, u32); | ||
181 | s32 (*reset_hw)(struct e1000_hw *); | ||
182 | s32 (*init_hw)(struct e1000_hw *); | ||
183 | s32 (*setup_link)(struct e1000_hw *); | ||
184 | void (*write_vfta)(struct e1000_hw *, u32, u32); | ||
185 | void (*mta_set)(struct e1000_hw *, u32); | ||
186 | void (*rar_set)(struct e1000_hw *, u8*, u32); | ||
187 | s32 (*read_mac_addr)(struct e1000_hw *); | ||
188 | s32 (*set_vfta)(struct e1000_hw *, u16, bool); | ||
189 | }; | ||
190 | |||
191 | struct e1000_mac_info { | ||
192 | struct e1000_mac_operations ops; | ||
193 | u8 addr[6]; | ||
194 | u8 perm_addr[6]; | ||
195 | |||
196 | enum e1000_mac_type type; | ||
197 | |||
198 | u16 mta_reg_count; | ||
199 | u16 rar_entry_count; | ||
200 | |||
201 | bool get_link_status; | ||
202 | }; | ||
203 | |||
204 | struct e1000_mbx_operations { | ||
205 | s32 (*init_params)(struct e1000_hw *hw); | ||
206 | s32 (*read)(struct e1000_hw *, u32 *, u16); | ||
207 | s32 (*write)(struct e1000_hw *, u32 *, u16); | ||
208 | s32 (*read_posted)(struct e1000_hw *, u32 *, u16); | ||
209 | s32 (*write_posted)(struct e1000_hw *, u32 *, u16); | ||
210 | s32 (*check_for_msg)(struct e1000_hw *); | ||
211 | s32 (*check_for_ack)(struct e1000_hw *); | ||
212 | s32 (*check_for_rst)(struct e1000_hw *); | ||
213 | }; | ||
214 | |||
215 | struct e1000_mbx_stats { | ||
216 | u32 msgs_tx; | ||
217 | u32 msgs_rx; | ||
218 | |||
219 | u32 acks; | ||
220 | u32 reqs; | ||
221 | u32 rsts; | ||
222 | }; | ||
223 | |||
224 | struct e1000_mbx_info { | ||
225 | struct e1000_mbx_operations ops; | ||
226 | struct e1000_mbx_stats stats; | ||
227 | u32 timeout; | ||
228 | u32 usec_delay; | ||
229 | u16 size; | ||
230 | }; | ||
231 | |||
232 | struct e1000_dev_spec_vf { | ||
233 | u32 vf_number; | ||
234 | u32 v2p_mailbox; | ||
235 | }; | ||
236 | |||
237 | struct e1000_hw { | ||
238 | void *back; | ||
239 | |||
240 | u8 __iomem *hw_addr; | ||
241 | u8 __iomem *flash_address; | ||
242 | unsigned long io_base; | ||
243 | |||
244 | struct e1000_mac_info mac; | ||
245 | struct e1000_mbx_info mbx; | ||
246 | |||
247 | union { | ||
248 | struct e1000_dev_spec_vf vf; | ||
249 | } dev_spec; | ||
250 | |||
251 | u16 device_id; | ||
252 | u16 subsystem_vendor_id; | ||
253 | u16 subsystem_device_id; | ||
254 | u16 vendor_id; | ||
255 | |||
256 | u8 revision_id; | ||
257 | }; | ||
258 | |||
259 | /* These functions must be implemented by drivers */ | ||
260 | void e1000_rlpml_set_vf(struct e1000_hw *, u16); | ||
261 | void e1000_init_function_pointers_vf(struct e1000_hw *hw); | ||
262 | |||
263 | |||
264 | #endif /* _E1000_VF_H_ */ | ||
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c index cbc63ff13add..c5593f4665a4 100644 --- a/drivers/net/ioc3-eth.c +++ b/drivers/net/ioc3-eth.c | |||
@@ -1214,6 +1214,19 @@ static void __devinit ioc3_serial_probe(struct pci_dev *pdev, struct ioc3 *ioc3) | |||
1214 | } | 1214 | } |
1215 | #endif | 1215 | #endif |
1216 | 1216 | ||
1217 | static const struct net_device_ops ioc3_netdev_ops = { | ||
1218 | .ndo_open = ioc3_open, | ||
1219 | .ndo_stop = ioc3_close, | ||
1220 | .ndo_start_xmit = ioc3_start_xmit, | ||
1221 | .ndo_tx_timeout = ioc3_timeout, | ||
1222 | .ndo_get_stats = ioc3_get_stats, | ||
1223 | .ndo_set_multicast_list = ioc3_set_multicast_list, | ||
1224 | .ndo_do_ioctl = ioc3_ioctl, | ||
1225 | .ndo_validate_addr = eth_validate_addr, | ||
1226 | .ndo_set_mac_address = ioc3_set_mac_address, | ||
1227 | .ndo_change_mtu = eth_change_mtu, | ||
1228 | }; | ||
1229 | |||
1217 | static int __devinit ioc3_probe(struct pci_dev *pdev, | 1230 | static int __devinit ioc3_probe(struct pci_dev *pdev, |
1218 | const struct pci_device_id *ent) | 1231 | const struct pci_device_id *ent) |
1219 | { | 1232 | { |
@@ -1310,15 +1323,8 @@ static int __devinit ioc3_probe(struct pci_dev *pdev, | |||
1310 | ioc3_get_eaddr(ip); | 1323 | ioc3_get_eaddr(ip); |
1311 | 1324 | ||
1312 | /* The IOC3-specific entries in the device structure. */ | 1325 | /* The IOC3-specific entries in the device structure. */ |
1313 | dev->open = ioc3_open; | ||
1314 | dev->hard_start_xmit = ioc3_start_xmit; | ||
1315 | dev->tx_timeout = ioc3_timeout; | ||
1316 | dev->watchdog_timeo = 5 * HZ; | 1326 | dev->watchdog_timeo = 5 * HZ; |
1317 | dev->stop = ioc3_close; | 1327 | dev->netdev_ops = &ioc3_netdev_ops; |
1318 | dev->get_stats = ioc3_get_stats; | ||
1319 | dev->do_ioctl = ioc3_ioctl; | ||
1320 | dev->set_multicast_list = ioc3_set_multicast_list; | ||
1321 | dev->set_mac_address = ioc3_set_mac_address; | ||
1322 | dev->ethtool_ops = &ioc3_ethtool_ops; | 1328 | dev->ethtool_ops = &ioc3_ethtool_ops; |
1323 | dev->features = NETIF_F_IP_CSUM; | 1329 | dev->features = NETIF_F_IP_CSUM; |
1324 | 1330 | ||
diff --git a/drivers/net/isa-skeleton.c b/drivers/net/isa-skeleton.c index 3126678bdd3c..73585fd8f29f 100644 --- a/drivers/net/isa-skeleton.c +++ b/drivers/net/isa-skeleton.c | |||
@@ -181,6 +181,18 @@ out: | |||
181 | } | 181 | } |
182 | #endif | 182 | #endif |
183 | 183 | ||
184 | static const struct net_device_ops netcard_netdev_ops = { | ||
185 | .ndo_open = net_open, | ||
186 | .ndo_stop = net_close, | ||
187 | .ndo_start_xmit = net_send_packet, | ||
188 | .ndo_get_stats = net_get_stats, | ||
189 | .ndo_set_multicast_list = set_multicast_list, | ||
190 | .ndo_tx_timeout = net_tx_timeout, | ||
191 | .ndo_validate_addr = eth_validate_addr, | ||
192 | .ndo_set_mac_address = eth_mac_addr, | ||
193 | .ndo_change_mtu = eth_change_mtu, | ||
194 | }; | ||
195 | |||
184 | /* | 196 | /* |
185 | * This is the real probe routine. Linux has a history of friendly device | 197 | * This is the real probe routine. Linux has a history of friendly device |
186 | * probes on the ISA bus. A good device probes avoids doing writes, and | 198 | * probes on the ISA bus. A good device probes avoids doing writes, and |
@@ -303,13 +315,7 @@ static int __init netcard_probe1(struct net_device *dev, int ioaddr) | |||
303 | np = netdev_priv(dev); | 315 | np = netdev_priv(dev); |
304 | spin_lock_init(&np->lock); | 316 | spin_lock_init(&np->lock); |
305 | 317 | ||
306 | dev->open = net_open; | 318 | dev->netdev_ops = &netcard_netdev_ops; |
307 | dev->stop = net_close; | ||
308 | dev->hard_start_xmit = net_send_packet; | ||
309 | dev->get_stats = net_get_stats; | ||
310 | dev->set_multicast_list = &set_multicast_list; | ||
311 | |||
312 | dev->tx_timeout = &net_tx_timeout; | ||
313 | dev->watchdog_timeo = MY_TX_TIMEOUT; | 319 | dev->watchdog_timeo = MY_TX_TIMEOUT; |
314 | 320 | ||
315 | err = register_netdev(dev); | 321 | err = register_netdev(dev); |
diff --git a/drivers/net/ixgbe/ixgbe_82598.c b/drivers/net/ixgbe/ixgbe_82598.c index a7ae4d45b53d..03eb54f4f1cc 100644 --- a/drivers/net/ixgbe/ixgbe_82598.c +++ b/drivers/net/ixgbe/ixgbe_82598.c | |||
@@ -921,61 +921,6 @@ static s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw) | |||
921 | } | 921 | } |
922 | 922 | ||
923 | /** | 923 | /** |
924 | * ixgbe_blink_led_start_82598 - Blink LED based on index. | ||
925 | * @hw: pointer to hardware structure | ||
926 | * @index: led number to blink | ||
927 | **/ | ||
928 | static s32 ixgbe_blink_led_start_82598(struct ixgbe_hw *hw, u32 index) | ||
929 | { | ||
930 | ixgbe_link_speed speed = 0; | ||
931 | bool link_up = 0; | ||
932 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); | ||
933 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
934 | |||
935 | /* | ||
936 | * Link must be up to auto-blink the LEDs on the 82598EB MAC; | ||
937 | * force it if link is down. | ||
938 | */ | ||
939 | hw->mac.ops.check_link(hw, &speed, &link_up, false); | ||
940 | |||
941 | if (!link_up) { | ||
942 | autoc_reg |= IXGBE_AUTOC_FLU; | ||
943 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); | ||
944 | msleep(10); | ||
945 | } | ||
946 | |||
947 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
948 | led_reg |= IXGBE_LED_BLINK(index); | ||
949 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
950 | IXGBE_WRITE_FLUSH(hw); | ||
951 | |||
952 | return 0; | ||
953 | } | ||
954 | |||
955 | /** | ||
956 | * ixgbe_blink_led_stop_82598 - Stop blinking LED based on index. | ||
957 | * @hw: pointer to hardware structure | ||
958 | * @index: led number to stop blinking | ||
959 | **/ | ||
960 | static s32 ixgbe_blink_led_stop_82598(struct ixgbe_hw *hw, u32 index) | ||
961 | { | ||
962 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); | ||
963 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
964 | |||
965 | autoc_reg &= ~IXGBE_AUTOC_FLU; | ||
966 | autoc_reg |= IXGBE_AUTOC_AN_RESTART; | ||
967 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); | ||
968 | |||
969 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
970 | led_reg &= ~IXGBE_LED_BLINK(index); | ||
971 | led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index); | ||
972 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
973 | IXGBE_WRITE_FLUSH(hw); | ||
974 | |||
975 | return 0; | ||
976 | } | ||
977 | |||
978 | /** | ||
979 | * ixgbe_read_analog_reg8_82598 - Reads 8 bit Atlas analog register | 924 | * ixgbe_read_analog_reg8_82598 - Reads 8 bit Atlas analog register |
980 | * @hw: pointer to hardware structure | 925 | * @hw: pointer to hardware structure |
981 | * @reg: analog register to read | 926 | * @reg: analog register to read |
@@ -1197,8 +1142,8 @@ static struct ixgbe_mac_operations mac_ops_82598 = { | |||
1197 | .get_link_capabilities = &ixgbe_get_link_capabilities_82598, | 1142 | .get_link_capabilities = &ixgbe_get_link_capabilities_82598, |
1198 | .led_on = &ixgbe_led_on_generic, | 1143 | .led_on = &ixgbe_led_on_generic, |
1199 | .led_off = &ixgbe_led_off_generic, | 1144 | .led_off = &ixgbe_led_off_generic, |
1200 | .blink_led_start = &ixgbe_blink_led_start_82598, | 1145 | .blink_led_start = &ixgbe_blink_led_start_generic, |
1201 | .blink_led_stop = &ixgbe_blink_led_stop_82598, | 1146 | .blink_led_stop = &ixgbe_blink_led_stop_generic, |
1202 | .set_rar = &ixgbe_set_rar_generic, | 1147 | .set_rar = &ixgbe_set_rar_generic, |
1203 | .clear_rar = &ixgbe_clear_rar_generic, | 1148 | .clear_rar = &ixgbe_clear_rar_generic, |
1204 | .set_vmdq = &ixgbe_set_vmdq_82598, | 1149 | .set_vmdq = &ixgbe_set_vmdq_82598, |
diff --git a/drivers/net/ixgbe/ixgbe_82599.c b/drivers/net/ixgbe/ixgbe_82599.c index b3f4e96a018c..9e824b450416 100644 --- a/drivers/net/ixgbe/ixgbe_82599.c +++ b/drivers/net/ixgbe/ixgbe_82599.c | |||
@@ -68,8 +68,6 @@ s32 ixgbe_clear_vmdq_82599(struct ixgbe_hw *hw, u32 rar, u32 vmdq); | |||
68 | s32 ixgbe_set_vfta_82599(struct ixgbe_hw *hw, u32 vlan, | 68 | s32 ixgbe_set_vfta_82599(struct ixgbe_hw *hw, u32 vlan, |
69 | u32 vind, bool vlan_on); | 69 | u32 vind, bool vlan_on); |
70 | s32 ixgbe_clear_vfta_82599(struct ixgbe_hw *hw); | 70 | s32 ixgbe_clear_vfta_82599(struct ixgbe_hw *hw); |
71 | s32 ixgbe_blink_led_stop_82599(struct ixgbe_hw *hw, u32 index); | ||
72 | s32 ixgbe_blink_led_start_82599(struct ixgbe_hw *hw, u32 index); | ||
73 | s32 ixgbe_init_uta_tables_82599(struct ixgbe_hw *hw); | 71 | s32 ixgbe_init_uta_tables_82599(struct ixgbe_hw *hw); |
74 | s32 ixgbe_read_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 *val); | 72 | s32 ixgbe_read_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 *val); |
75 | s32 ixgbe_write_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 val); | 73 | s32 ixgbe_write_analog_reg8_82599(struct ixgbe_hw *hw, u32 reg, u8 val); |
@@ -1039,40 +1037,6 @@ s32 ixgbe_clear_vfta_82599(struct ixgbe_hw *hw) | |||
1039 | } | 1037 | } |
1040 | 1038 | ||
1041 | /** | 1039 | /** |
1042 | * ixgbe_blink_led_start_82599 - Blink LED based on index. | ||
1043 | * @hw: pointer to hardware structure | ||
1044 | * @index: led number to blink | ||
1045 | **/ | ||
1046 | s32 ixgbe_blink_led_start_82599(struct ixgbe_hw *hw, u32 index) | ||
1047 | { | ||
1048 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
1049 | |||
1050 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
1051 | led_reg |= IXGBE_LED_BLINK(index); | ||
1052 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
1053 | IXGBE_WRITE_FLUSH(hw); | ||
1054 | |||
1055 | return 0; | ||
1056 | } | ||
1057 | |||
1058 | /** | ||
1059 | * ixgbe_blink_led_stop_82599 - Stop blinking LED based on index. | ||
1060 | * @hw: pointer to hardware structure | ||
1061 | * @index: led number to stop blinking | ||
1062 | **/ | ||
1063 | s32 ixgbe_blink_led_stop_82599(struct ixgbe_hw *hw, u32 index) | ||
1064 | { | ||
1065 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
1066 | |||
1067 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
1068 | led_reg &= ~IXGBE_LED_BLINK(index); | ||
1069 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
1070 | IXGBE_WRITE_FLUSH(hw); | ||
1071 | |||
1072 | return 0; | ||
1073 | } | ||
1074 | |||
1075 | /** | ||
1076 | * ixgbe_init_uta_tables_82599 - Initialize the Unicast Table Array | 1040 | * ixgbe_init_uta_tables_82599 - Initialize the Unicast Table Array |
1077 | * @hw: pointer to hardware structure | 1041 | * @hw: pointer to hardware structure |
1078 | **/ | 1042 | **/ |
@@ -1353,8 +1317,8 @@ static struct ixgbe_mac_operations mac_ops_82599 = { | |||
1353 | .get_link_capabilities = &ixgbe_get_link_capabilities_82599, | 1317 | .get_link_capabilities = &ixgbe_get_link_capabilities_82599, |
1354 | .led_on = &ixgbe_led_on_generic, | 1318 | .led_on = &ixgbe_led_on_generic, |
1355 | .led_off = &ixgbe_led_off_generic, | 1319 | .led_off = &ixgbe_led_off_generic, |
1356 | .blink_led_start = &ixgbe_blink_led_start_82599, | 1320 | .blink_led_start = &ixgbe_blink_led_start_generic, |
1357 | .blink_led_stop = &ixgbe_blink_led_stop_82599, | 1321 | .blink_led_stop = &ixgbe_blink_led_stop_generic, |
1358 | .set_rar = &ixgbe_set_rar_generic, | 1322 | .set_rar = &ixgbe_set_rar_generic, |
1359 | .clear_rar = &ixgbe_clear_rar_generic, | 1323 | .clear_rar = &ixgbe_clear_rar_generic, |
1360 | .set_vmdq = &ixgbe_set_vmdq_82599, | 1324 | .set_vmdq = &ixgbe_set_vmdq_82599, |
diff --git a/drivers/net/ixgbe/ixgbe_common.c b/drivers/net/ixgbe/ixgbe_common.c index 2d4af5d2d3f7..5f2ee34e9d1d 100644 --- a/drivers/net/ixgbe/ixgbe_common.c +++ b/drivers/net/ixgbe/ixgbe_common.c | |||
@@ -2074,3 +2074,58 @@ s32 ixgbe_enable_rx_dma_generic(struct ixgbe_hw *hw, u32 regval) | |||
2074 | 2074 | ||
2075 | return 0; | 2075 | return 0; |
2076 | } | 2076 | } |
2077 | |||
2078 | /** | ||
2079 | * ixgbe_blink_led_start_generic - Blink LED based on index. | ||
2080 | * @hw: pointer to hardware structure | ||
2081 | * @index: led number to blink | ||
2082 | **/ | ||
2083 | s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index) | ||
2084 | { | ||
2085 | ixgbe_link_speed speed = 0; | ||
2086 | bool link_up = 0; | ||
2087 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); | ||
2088 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
2089 | |||
2090 | /* | ||
2091 | * Link must be up to auto-blink the LEDs; | ||
2092 | * Force it if link is down. | ||
2093 | */ | ||
2094 | hw->mac.ops.check_link(hw, &speed, &link_up, false); | ||
2095 | |||
2096 | if (!link_up) { | ||
2097 | autoc_reg |= IXGBE_AUTOC_FLU; | ||
2098 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); | ||
2099 | msleep(10); | ||
2100 | } | ||
2101 | |||
2102 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
2103 | led_reg |= IXGBE_LED_BLINK(index); | ||
2104 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
2105 | IXGBE_WRITE_FLUSH(hw); | ||
2106 | |||
2107 | return 0; | ||
2108 | } | ||
2109 | |||
2110 | /** | ||
2111 | * ixgbe_blink_led_stop_generic - Stop blinking LED based on index. | ||
2112 | * @hw: pointer to hardware structure | ||
2113 | * @index: led number to stop blinking | ||
2114 | **/ | ||
2115 | s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index) | ||
2116 | { | ||
2117 | u32 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC); | ||
2118 | u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); | ||
2119 | |||
2120 | autoc_reg &= ~IXGBE_AUTOC_FLU; | ||
2121 | autoc_reg |= IXGBE_AUTOC_AN_RESTART; | ||
2122 | IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg); | ||
2123 | |||
2124 | led_reg &= ~IXGBE_LED_MODE_MASK(index); | ||
2125 | led_reg &= ~IXGBE_LED_BLINK(index); | ||
2126 | led_reg |= IXGBE_LED_LINK_ACTIVE << IXGBE_LED_MODE_SHIFT(index); | ||
2127 | IXGBE_WRITE_REG(hw, IXGBE_LEDCTL, led_reg); | ||
2128 | IXGBE_WRITE_FLUSH(hw); | ||
2129 | |||
2130 | return 0; | ||
2131 | } | ||
diff --git a/drivers/net/ixgbe/ixgbe_common.h b/drivers/net/ixgbe/ixgbe_common.h index 24f73e719c3f..dd260890ad0a 100644 --- a/drivers/net/ixgbe/ixgbe_common.h +++ b/drivers/net/ixgbe/ixgbe_common.h | |||
@@ -76,6 +76,9 @@ s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw); | |||
76 | s32 ixgbe_read_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 *val); | 76 | s32 ixgbe_read_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 *val); |
77 | s32 ixgbe_write_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 val); | 77 | s32 ixgbe_write_analog_reg8_generic(struct ixgbe_hw *hw, u32 reg, u8 val); |
78 | 78 | ||
79 | s32 ixgbe_blink_led_start_generic(struct ixgbe_hw *hw, u32 index); | ||
80 | s32 ixgbe_blink_led_stop_generic(struct ixgbe_hw *hw, u32 index); | ||
81 | |||
79 | #define IXGBE_WRITE_REG(a, reg, value) writel((value), ((a)->hw_addr + (reg))) | 82 | #define IXGBE_WRITE_REG(a, reg, value) writel((value), ((a)->hw_addr + (reg))) |
80 | 83 | ||
81 | #ifndef writeq | 84 | #ifndef writeq |
diff --git a/drivers/net/ixgbe/ixgbe_ethtool.c b/drivers/net/ixgbe/ixgbe_ethtool.c index aafc120f164e..f0a20facc650 100644 --- a/drivers/net/ixgbe/ixgbe_ethtool.c +++ b/drivers/net/ixgbe/ixgbe_ethtool.c | |||
@@ -943,6 +943,24 @@ static void ixgbe_get_strings(struct net_device *netdev, u32 stringset, | |||
943 | } | 943 | } |
944 | 944 | ||
945 | 945 | ||
946 | static int ixgbe_wol_exclusion(struct ixgbe_adapter *adapter, | ||
947 | struct ethtool_wolinfo *wol) | ||
948 | { | ||
949 | struct ixgbe_hw *hw = &adapter->hw; | ||
950 | int retval = 1; | ||
951 | |||
952 | switch(hw->device_id) { | ||
953 | case IXGBE_DEV_ID_82599_KX4: | ||
954 | retval = 0; | ||
955 | break; | ||
956 | default: | ||
957 | wol->supported = 0; | ||
958 | retval = 0; | ||
959 | } | ||
960 | |||
961 | return retval; | ||
962 | } | ||
963 | |||
946 | static void ixgbe_get_wol(struct net_device *netdev, | 964 | static void ixgbe_get_wol(struct net_device *netdev, |
947 | struct ethtool_wolinfo *wol) | 965 | struct ethtool_wolinfo *wol) |
948 | { | 966 | { |
@@ -952,7 +970,8 @@ static void ixgbe_get_wol(struct net_device *netdev, | |||
952 | WAKE_BCAST | WAKE_MAGIC; | 970 | WAKE_BCAST | WAKE_MAGIC; |
953 | wol->wolopts = 0; | 971 | wol->wolopts = 0; |
954 | 972 | ||
955 | if (!device_can_wakeup(&adapter->pdev->dev)) | 973 | if (ixgbe_wol_exclusion(adapter, wol) || |
974 | !device_can_wakeup(&adapter->pdev->dev)) | ||
956 | return; | 975 | return; |
957 | 976 | ||
958 | if (adapter->wol & IXGBE_WUFC_EX) | 977 | if (adapter->wol & IXGBE_WUFC_EX) |
@@ -974,6 +993,9 @@ static int ixgbe_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol) | |||
974 | if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE)) | 993 | if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE)) |
975 | return -EOPNOTSUPP; | 994 | return -EOPNOTSUPP; |
976 | 995 | ||
996 | if (ixgbe_wol_exclusion(adapter, wol)) | ||
997 | return wol->wolopts ? -EOPNOTSUPP : 0; | ||
998 | |||
977 | adapter->wol = 0; | 999 | adapter->wol = 0; |
978 | 1000 | ||
979 | if (wol->wolopts & WAKE_UCAST) | 1001 | if (wol->wolopts & WAKE_UCAST) |
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index 813c5bc1a8fa..0d9a3ac043a6 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
@@ -2723,17 +2723,21 @@ static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter) | |||
2723 | **/ | 2723 | **/ |
2724 | static void ixgbe_set_num_queues(struct ixgbe_adapter *adapter) | 2724 | static void ixgbe_set_num_queues(struct ixgbe_adapter *adapter) |
2725 | { | 2725 | { |
2726 | /* Start with base case */ | ||
2727 | adapter->num_rx_queues = 1; | ||
2728 | adapter->num_tx_queues = 1; | ||
2729 | |||
2730 | #ifdef CONFIG_IXGBE_DCB | 2726 | #ifdef CONFIG_IXGBE_DCB |
2731 | if (ixgbe_set_dcb_queues(adapter)) | 2727 | if (ixgbe_set_dcb_queues(adapter)) |
2732 | return; | 2728 | goto done; |
2733 | 2729 | ||
2734 | #endif | 2730 | #endif |
2735 | if (ixgbe_set_rss_queues(adapter)) | 2731 | if (ixgbe_set_rss_queues(adapter)) |
2736 | return; | 2732 | goto done; |
2733 | |||
2734 | /* fallback to base case */ | ||
2735 | adapter->num_rx_queues = 1; | ||
2736 | adapter->num_tx_queues = 1; | ||
2737 | |||
2738 | done: | ||
2739 | /* Notify the stack of the (possibly) reduced Tx Queue count. */ | ||
2740 | adapter->netdev->real_num_tx_queues = adapter->num_tx_queues; | ||
2737 | } | 2741 | } |
2738 | 2742 | ||
2739 | static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter, | 2743 | static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter, |
@@ -2992,9 +2996,6 @@ try_msi: | |||
2992 | } | 2996 | } |
2993 | 2997 | ||
2994 | out: | 2998 | out: |
2995 | /* Notify the stack of the (possibly) reduced Tx Queue count. */ | ||
2996 | adapter->netdev->real_num_tx_queues = adapter->num_tx_queues; | ||
2997 | |||
2998 | return err; | 2999 | return err; |
2999 | } | 3000 | } |
3000 | 3001 | ||
@@ -3611,9 +3612,9 @@ static int ixgbe_resume(struct pci_dev *pdev) | |||
3611 | 3612 | ||
3612 | return 0; | 3613 | return 0; |
3613 | } | 3614 | } |
3614 | |||
3615 | #endif /* CONFIG_PM */ | 3615 | #endif /* CONFIG_PM */ |
3616 | static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state) | 3616 | |
3617 | static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake) | ||
3617 | { | 3618 | { |
3618 | struct net_device *netdev = pci_get_drvdata(pdev); | 3619 | struct net_device *netdev = pci_get_drvdata(pdev); |
3619 | struct ixgbe_adapter *adapter = netdev_priv(netdev); | 3620 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
@@ -3672,18 +3673,46 @@ static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state) | |||
3672 | pci_enable_wake(pdev, PCI_D3cold, 0); | 3673 | pci_enable_wake(pdev, PCI_D3cold, 0); |
3673 | } | 3674 | } |
3674 | 3675 | ||
3676 | *enable_wake = !!wufc; | ||
3677 | |||
3675 | ixgbe_release_hw_control(adapter); | 3678 | ixgbe_release_hw_control(adapter); |
3676 | 3679 | ||
3677 | pci_disable_device(pdev); | 3680 | pci_disable_device(pdev); |
3678 | 3681 | ||
3679 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | 3682 | return 0; |
3683 | } | ||
3684 | |||
3685 | #ifdef CONFIG_PM | ||
3686 | static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state) | ||
3687 | { | ||
3688 | int retval; | ||
3689 | bool wake; | ||
3690 | |||
3691 | retval = __ixgbe_shutdown(pdev, &wake); | ||
3692 | if (retval) | ||
3693 | return retval; | ||
3694 | |||
3695 | if (wake) { | ||
3696 | pci_prepare_to_sleep(pdev); | ||
3697 | } else { | ||
3698 | pci_wake_from_d3(pdev, false); | ||
3699 | pci_set_power_state(pdev, PCI_D3hot); | ||
3700 | } | ||
3680 | 3701 | ||
3681 | return 0; | 3702 | return 0; |
3682 | } | 3703 | } |
3704 | #endif /* CONFIG_PM */ | ||
3683 | 3705 | ||
3684 | static void ixgbe_shutdown(struct pci_dev *pdev) | 3706 | static void ixgbe_shutdown(struct pci_dev *pdev) |
3685 | { | 3707 | { |
3686 | ixgbe_suspend(pdev, PMSG_SUSPEND); | 3708 | bool wake; |
3709 | |||
3710 | __ixgbe_shutdown(pdev, &wake); | ||
3711 | |||
3712 | if (system_state == SYSTEM_POWER_OFF) { | ||
3713 | pci_wake_from_d3(pdev, wake); | ||
3714 | pci_set_power_state(pdev, PCI_D3hot); | ||
3715 | } | ||
3687 | } | 3716 | } |
3688 | 3717 | ||
3689 | /** | 3718 | /** |
@@ -4342,7 +4371,7 @@ static int ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev) | |||
4342 | int count = 0; | 4371 | int count = 0; |
4343 | unsigned int f; | 4372 | unsigned int f; |
4344 | 4373 | ||
4345 | r_idx = (adapter->num_tx_queues - 1) & skb->queue_mapping; | 4374 | r_idx = skb->queue_mapping; |
4346 | tx_ring = &adapter->tx_ring[r_idx]; | 4375 | tx_ring = &adapter->tx_ring[r_idx]; |
4347 | 4376 | ||
4348 | if (adapter->vlgrp && vlan_tx_tag_present(skb)) { | 4377 | if (adapter->vlgrp && vlan_tx_tag_present(skb)) { |
diff --git a/drivers/net/mac89x0.c b/drivers/net/mac89x0.c index 380a1a54d530..384e072de2e7 100644 --- a/drivers/net/mac89x0.c +++ b/drivers/net/mac89x0.c | |||
@@ -168,6 +168,17 @@ writereg(struct net_device *dev, int portno, int value) | |||
168 | nubus_writew(swab16(value), dev->mem_start + portno); | 168 | nubus_writew(swab16(value), dev->mem_start + portno); |
169 | } | 169 | } |
170 | 170 | ||
171 | static const struct net_device_ops mac89x0_netdev_ops = { | ||
172 | .ndo_open = net_open, | ||
173 | .ndo_stop = net_close, | ||
174 | .ndo_start_xmit = net_send_packet, | ||
175 | .ndo_get_stats = net_get_stats, | ||
176 | .ndo_set_multicast_list = set_multicast_list, | ||
177 | .ndo_set_mac_address = set_mac_address, | ||
178 | .ndo_validate_addr = eth_validate_addr, | ||
179 | .ndo_change_mtu = eth_change_mtu, | ||
180 | }; | ||
181 | |||
171 | /* Probe for the CS8900 card in slot E. We won't bother looking | 182 | /* Probe for the CS8900 card in slot E. We won't bother looking |
172 | anywhere else until we have a really good reason to do so. */ | 183 | anywhere else until we have a really good reason to do so. */ |
173 | struct net_device * __init mac89x0_probe(int unit) | 184 | struct net_device * __init mac89x0_probe(int unit) |
@@ -280,12 +291,7 @@ struct net_device * __init mac89x0_probe(int unit) | |||
280 | 291 | ||
281 | printk(" IRQ %d ADDR %pM\n", dev->irq, dev->dev_addr); | 292 | printk(" IRQ %d ADDR %pM\n", dev->irq, dev->dev_addr); |
282 | 293 | ||
283 | dev->open = net_open; | 294 | dev->netdev_ops = &mac89x0_netdev_ops; |
284 | dev->stop = net_close; | ||
285 | dev->hard_start_xmit = net_send_packet; | ||
286 | dev->get_stats = net_get_stats; | ||
287 | dev->set_multicast_list = &set_multicast_list; | ||
288 | dev->set_mac_address = &set_mac_address; | ||
289 | 295 | ||
290 | err = register_netdev(dev); | 296 | err = register_netdev(dev); |
291 | if (err) | 297 | if (err) |
diff --git a/drivers/net/macb.c b/drivers/net/macb.c index f50501013b1c..46073de290cf 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c | |||
@@ -1100,6 +1100,18 @@ static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) | |||
1100 | return phy_mii_ioctl(phydev, if_mii(rq), cmd); | 1100 | return phy_mii_ioctl(phydev, if_mii(rq), cmd); |
1101 | } | 1101 | } |
1102 | 1102 | ||
1103 | static const struct net_device_ops macb_netdev_ops = { | ||
1104 | .ndo_open = macb_open, | ||
1105 | .ndo_stop = macb_close, | ||
1106 | .ndo_start_xmit = macb_start_xmit, | ||
1107 | .ndo_set_multicast_list = macb_set_rx_mode, | ||
1108 | .ndo_get_stats = macb_get_stats, | ||
1109 | .ndo_do_ioctl = macb_ioctl, | ||
1110 | .ndo_validate_addr = eth_validate_addr, | ||
1111 | .ndo_change_mtu = eth_change_mtu, | ||
1112 | .ndo_set_mac_address = eth_mac_addr, | ||
1113 | }; | ||
1114 | |||
1103 | static int __init macb_probe(struct platform_device *pdev) | 1115 | static int __init macb_probe(struct platform_device *pdev) |
1104 | { | 1116 | { |
1105 | struct eth_platform_data *pdata; | 1117 | struct eth_platform_data *pdata; |
@@ -1175,12 +1187,7 @@ static int __init macb_probe(struct platform_device *pdev) | |||
1175 | goto err_out_iounmap; | 1187 | goto err_out_iounmap; |
1176 | } | 1188 | } |
1177 | 1189 | ||
1178 | dev->open = macb_open; | 1190 | dev->netdev_ops = &macb_netdev_ops; |
1179 | dev->stop = macb_close; | ||
1180 | dev->hard_start_xmit = macb_start_xmit; | ||
1181 | dev->get_stats = macb_get_stats; | ||
1182 | dev->set_multicast_list = macb_set_rx_mode; | ||
1183 | dev->do_ioctl = macb_ioctl; | ||
1184 | netif_napi_add(dev, &bp->napi, macb_poll, 64); | 1191 | netif_napi_add(dev, &bp->napi, macb_poll, 64); |
1185 | dev->ethtool_ops = &macb_ethtool_ops; | 1192 | dev->ethtool_ops = &macb_ethtool_ops; |
1186 | 1193 | ||
diff --git a/drivers/net/macsonic.c b/drivers/net/macsonic.c index 527166e35d56..acd143da161d 100644 --- a/drivers/net/macsonic.c +++ b/drivers/net/macsonic.c | |||
@@ -167,6 +167,18 @@ static int macsonic_close(struct net_device* dev) | |||
167 | return err; | 167 | return err; |
168 | } | 168 | } |
169 | 169 | ||
170 | static const struct net_device_ops macsonic_netdev_ops = { | ||
171 | .ndo_open = macsonic_open, | ||
172 | .ndo_stop = macsonic_close, | ||
173 | .ndo_start_xmit = sonic_send_packet, | ||
174 | .ndo_set_multicast_list = sonic_multicast_list, | ||
175 | .ndo_tx_timeout = sonic_tx_timeout, | ||
176 | .ndo_get_stats = sonic_get_stats, | ||
177 | .ndo_validate_addr = eth_validate_addr, | ||
178 | .ndo_change_mtu = eth_change_mtu, | ||
179 | .ndo_set_mac_address = eth_mac_addr, | ||
180 | }; | ||
181 | |||
170 | static int __init macsonic_init(struct net_device *dev) | 182 | static int __init macsonic_init(struct net_device *dev) |
171 | { | 183 | { |
172 | struct sonic_local* lp = netdev_priv(dev); | 184 | struct sonic_local* lp = netdev_priv(dev); |
@@ -198,12 +210,7 @@ static int __init macsonic_init(struct net_device *dev) | |||
198 | lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS | 210 | lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS |
199 | * SONIC_BUS_SCALE(lp->dma_bitmode)); | 211 | * SONIC_BUS_SCALE(lp->dma_bitmode)); |
200 | 212 | ||
201 | dev->open = macsonic_open; | 213 | dev->netdev_ops = &macsonic_netdev_ops; |
202 | dev->stop = macsonic_close; | ||
203 | dev->hard_start_xmit = sonic_send_packet; | ||
204 | dev->get_stats = sonic_get_stats; | ||
205 | dev->set_multicast_list = &sonic_multicast_list; | ||
206 | dev->tx_timeout = sonic_tx_timeout; | ||
207 | dev->watchdog_timeo = TX_TIMEOUT; | 214 | dev->watchdog_timeo = TX_TIMEOUT; |
208 | 215 | ||
209 | /* | 216 | /* |
diff --git a/drivers/net/mlx4/port.c b/drivers/net/mlx4/port.c index 7cce3342ef8c..606aa58afdea 100644 --- a/drivers/net/mlx4/port.c +++ b/drivers/net/mlx4/port.c | |||
@@ -299,13 +299,14 @@ int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port) | |||
299 | struct mlx4_cmd_mailbox *mailbox; | 299 | struct mlx4_cmd_mailbox *mailbox; |
300 | int err; | 300 | int err; |
301 | 301 | ||
302 | if (dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH) | ||
303 | return 0; | ||
304 | |||
302 | mailbox = mlx4_alloc_cmd_mailbox(dev); | 305 | mailbox = mlx4_alloc_cmd_mailbox(dev); |
303 | if (IS_ERR(mailbox)) | 306 | if (IS_ERR(mailbox)) |
304 | return PTR_ERR(mailbox); | 307 | return PTR_ERR(mailbox); |
305 | 308 | ||
306 | memset(mailbox->buf, 0, 256); | 309 | memset(mailbox->buf, 0, 256); |
307 | if (dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH) | ||
308 | return 0; | ||
309 | 310 | ||
310 | ((__be32 *) mailbox->buf)[1] = dev->caps.ib_port_def_cap[port]; | 311 | ((__be32 *) mailbox->buf)[1] = dev->caps.ib_port_def_cap[port]; |
311 | err = mlx4_cmd(dev, mailbox->dma, port, 0, MLX4_CMD_SET_PORT, | 312 | err = mlx4_cmd(dev, mailbox->dma, port, 0, MLX4_CMD_SET_PORT, |
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index a56d9d2df73f..b3185bf2c158 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c | |||
@@ -2274,8 +2274,6 @@ static void port_start(struct mv643xx_eth_private *mp) | |||
2274 | pscr |= FORCE_LINK_PASS; | 2274 | pscr |= FORCE_LINK_PASS; |
2275 | wrlp(mp, PORT_SERIAL_CONTROL, pscr); | 2275 | wrlp(mp, PORT_SERIAL_CONTROL, pscr); |
2276 | 2276 | ||
2277 | wrlp(mp, SDMA_CONFIG, PORT_SDMA_CONFIG_DEFAULT_VALUE); | ||
2278 | |||
2279 | /* | 2277 | /* |
2280 | * Configure TX path and queues. | 2278 | * Configure TX path and queues. |
2281 | */ | 2279 | */ |
@@ -2957,6 +2955,8 @@ static int mv643xx_eth_probe(struct platform_device *pdev) | |||
2957 | 2955 | ||
2958 | netif_carrier_off(dev); | 2956 | netif_carrier_off(dev); |
2959 | 2957 | ||
2958 | wrlp(mp, SDMA_CONFIG, PORT_SDMA_CONFIG_DEFAULT_VALUE); | ||
2959 | |||
2960 | set_rx_coal(mp, 250); | 2960 | set_rx_coal(mp, 250); |
2961 | set_tx_coal(mp, 0); | 2961 | set_tx_coal(mp, 0); |
2962 | 2962 | ||
diff --git a/drivers/net/myri10ge/myri10ge.c b/drivers/net/myri10ge/myri10ge.c index 9eed126a82f0..f2c4a665e93f 100644 --- a/drivers/net/myri10ge/myri10ge.c +++ b/drivers/net/myri10ge/myri10ge.c | |||
@@ -2447,6 +2447,7 @@ static int myri10ge_open(struct net_device *dev) | |||
2447 | lro_mgr->lro_arr = ss->rx_done.lro_desc; | 2447 | lro_mgr->lro_arr = ss->rx_done.lro_desc; |
2448 | lro_mgr->get_frag_header = myri10ge_get_frag_header; | 2448 | lro_mgr->get_frag_header = myri10ge_get_frag_header; |
2449 | lro_mgr->max_aggr = myri10ge_lro_max_pkts; | 2449 | lro_mgr->max_aggr = myri10ge_lro_max_pkts; |
2450 | lro_mgr->frag_align_pad = 2; | ||
2450 | if (lro_mgr->max_aggr > MAX_SKB_FRAGS) | 2451 | if (lro_mgr->max_aggr > MAX_SKB_FRAGS) |
2451 | lro_mgr->max_aggr = MAX_SKB_FRAGS; | 2452 | lro_mgr->max_aggr = MAX_SKB_FRAGS; |
2452 | 2453 | ||
diff --git a/drivers/net/niu.c b/drivers/net/niu.c index 73cac6c78cb6..2b1745328cf7 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c | |||
@@ -4834,6 +4834,7 @@ static int niu_compute_rbr_cfig_b(struct rx_ring_info *rp, u64 *ret) | |||
4834 | { | 4834 | { |
4835 | u64 val = 0; | 4835 | u64 val = 0; |
4836 | 4836 | ||
4837 | *ret = 0; | ||
4837 | switch (rp->rbr_block_size) { | 4838 | switch (rp->rbr_block_size) { |
4838 | case 4 * 1024: | 4839 | case 4 * 1024: |
4839 | val |= (RBR_BLKSIZE_4K << RBR_CFIG_B_BLKSIZE_SHIFT); | 4840 | val |= (RBR_BLKSIZE_4K << RBR_CFIG_B_BLKSIZE_SHIFT); |
@@ -9542,7 +9543,7 @@ static struct niu_parent * __devinit niu_new_parent(struct niu *np, | |||
9542 | 9543 | ||
9543 | plat_dev = platform_device_register_simple("niu", niu_parent_index, | 9544 | plat_dev = platform_device_register_simple("niu", niu_parent_index, |
9544 | NULL, 0); | 9545 | NULL, 0); |
9545 | if (!plat_dev) | 9546 | if (IS_ERR(plat_dev)) |
9546 | return NULL; | 9547 | return NULL; |
9547 | 9548 | ||
9548 | for (i = 0; attr_name(niu_parent_attributes[i]); i++) { | 9549 | for (i = 0; attr_name(niu_parent_attributes[i]); i++) { |
diff --git a/drivers/net/phy/fixed.c b/drivers/net/phy/fixed.c index cf24cc34debe..e7070515d2e3 100644 --- a/drivers/net/phy/fixed.c +++ b/drivers/net/phy/fixed.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/mii.h> | 19 | #include <linux/mii.h> |
20 | #include <linux/phy.h> | 20 | #include <linux/phy.h> |
21 | #include <linux/phy_fixed.h> | 21 | #include <linux/phy_fixed.h> |
22 | #include <linux/err.h> | ||
22 | 23 | ||
23 | #define MII_REGS_NUM 29 | 24 | #define MII_REGS_NUM 29 |
24 | 25 | ||
@@ -207,8 +208,8 @@ static int __init fixed_mdio_bus_init(void) | |||
207 | int ret; | 208 | int ret; |
208 | 209 | ||
209 | pdev = platform_device_register_simple("Fixed MDIO bus", 0, NULL, 0); | 210 | pdev = platform_device_register_simple("Fixed MDIO bus", 0, NULL, 0); |
210 | if (!pdev) { | 211 | if (IS_ERR(pdev)) { |
211 | ret = -ENOMEM; | 212 | ret = PTR_ERR(pdev); |
212 | goto err_pdev; | 213 | goto err_pdev; |
213 | } | 214 | } |
214 | 215 | ||
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index eb6411c4694f..7a3ec9d39a9a 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c | |||
@@ -69,6 +69,11 @@ | |||
69 | #define MII_M1111_COPPER 0 | 69 | #define MII_M1111_COPPER 0 |
70 | #define MII_M1111_FIBER 1 | 70 | #define MII_M1111_FIBER 1 |
71 | 71 | ||
72 | #define MII_88E1121_PHY_LED_CTRL 16 | ||
73 | #define MII_88E1121_PHY_LED_PAGE 3 | ||
74 | #define MII_88E1121_PHY_LED_DEF 0x0030 | ||
75 | #define MII_88E1121_PHY_PAGE 22 | ||
76 | |||
72 | #define MII_M1011_PHY_STATUS 0x11 | 77 | #define MII_M1011_PHY_STATUS 0x11 |
73 | #define MII_M1011_PHY_STATUS_1000 0x8000 | 78 | #define MII_M1011_PHY_STATUS_1000 0x8000 |
74 | #define MII_M1011_PHY_STATUS_100 0x4000 | 79 | #define MII_M1011_PHY_STATUS_100 0x4000 |
@@ -154,6 +159,30 @@ static int marvell_config_aneg(struct phy_device *phydev) | |||
154 | return err; | 159 | return err; |
155 | } | 160 | } |
156 | 161 | ||
162 | static int m88e1121_config_aneg(struct phy_device *phydev) | ||
163 | { | ||
164 | int err, temp; | ||
165 | |||
166 | err = phy_write(phydev, MII_BMCR, BMCR_RESET); | ||
167 | if (err < 0) | ||
168 | return err; | ||
169 | |||
170 | err = phy_write(phydev, MII_M1011_PHY_SCR, | ||
171 | MII_M1011_PHY_SCR_AUTO_CROSS); | ||
172 | if (err < 0) | ||
173 | return err; | ||
174 | |||
175 | temp = phy_read(phydev, MII_88E1121_PHY_PAGE); | ||
176 | |||
177 | phy_write(phydev, MII_88E1121_PHY_PAGE, MII_88E1121_PHY_LED_PAGE); | ||
178 | phy_write(phydev, MII_88E1121_PHY_LED_CTRL, MII_88E1121_PHY_LED_DEF); | ||
179 | phy_write(phydev, MII_88E1121_PHY_PAGE, temp); | ||
180 | |||
181 | err = genphy_config_aneg(phydev); | ||
182 | |||
183 | return err; | ||
184 | } | ||
185 | |||
157 | static int m88e1111_config_init(struct phy_device *phydev) | 186 | static int m88e1111_config_init(struct phy_device *phydev) |
158 | { | 187 | { |
159 | int err; | 188 | int err; |
@@ -429,6 +458,18 @@ static int marvell_read_status(struct phy_device *phydev) | |||
429 | return 0; | 458 | return 0; |
430 | } | 459 | } |
431 | 460 | ||
461 | static int m88e1121_did_interrupt(struct phy_device *phydev) | ||
462 | { | ||
463 | int imask; | ||
464 | |||
465 | imask = phy_read(phydev, MII_M1011_IEVENT); | ||
466 | |||
467 | if (imask & MII_M1011_IMASK_INIT) | ||
468 | return 1; | ||
469 | |||
470 | return 0; | ||
471 | } | ||
472 | |||
432 | static struct phy_driver marvell_drivers[] = { | 473 | static struct phy_driver marvell_drivers[] = { |
433 | { | 474 | { |
434 | .phy_id = 0x01410c60, | 475 | .phy_id = 0x01410c60, |
@@ -482,6 +523,19 @@ static struct phy_driver marvell_drivers[] = { | |||
482 | .driver = {.owner = THIS_MODULE,}, | 523 | .driver = {.owner = THIS_MODULE,}, |
483 | }, | 524 | }, |
484 | { | 525 | { |
526 | .phy_id = 0x01410cb0, | ||
527 | .phy_id_mask = 0xfffffff0, | ||
528 | .name = "Marvell 88E1121R", | ||
529 | .features = PHY_GBIT_FEATURES, | ||
530 | .flags = PHY_HAS_INTERRUPT, | ||
531 | .config_aneg = &m88e1121_config_aneg, | ||
532 | .read_status = &marvell_read_status, | ||
533 | .ack_interrupt = &marvell_ack_interrupt, | ||
534 | .config_intr = &marvell_config_intr, | ||
535 | .did_interrupt = &m88e1121_did_interrupt, | ||
536 | .driver = { .owner = THIS_MODULE }, | ||
537 | }, | ||
538 | { | ||
485 | .phy_id = 0x01410cd0, | 539 | .phy_id = 0x01410cd0, |
486 | .phy_id_mask = 0xfffffff0, | 540 | .phy_id_mask = 0xfffffff0, |
487 | .name = "Marvell 88E1145", | 541 | .name = "Marvell 88E1145", |
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 3ff1f425f1bb..61755cbd978e 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c | |||
@@ -434,7 +434,7 @@ void phy_start_machine(struct phy_device *phydev, | |||
434 | phydev->adjust_state = handler; | 434 | phydev->adjust_state = handler; |
435 | 435 | ||
436 | INIT_DELAYED_WORK(&phydev->state_queue, phy_state_machine); | 436 | INIT_DELAYED_WORK(&phydev->state_queue, phy_state_machine); |
437 | schedule_delayed_work(&phydev->state_queue, jiffies + HZ); | 437 | schedule_delayed_work(&phydev->state_queue, HZ); |
438 | } | 438 | } |
439 | 439 | ||
440 | /** | 440 | /** |
@@ -655,6 +655,10 @@ static void phy_change(struct work_struct *work) | |||
655 | struct phy_device *phydev = | 655 | struct phy_device *phydev = |
656 | container_of(work, struct phy_device, phy_queue); | 656 | container_of(work, struct phy_device, phy_queue); |
657 | 657 | ||
658 | if (phydev->drv->did_interrupt && | ||
659 | !phydev->drv->did_interrupt(phydev)) | ||
660 | goto ignore; | ||
661 | |||
658 | err = phy_disable_interrupts(phydev); | 662 | err = phy_disable_interrupts(phydev); |
659 | 663 | ||
660 | if (err) | 664 | if (err) |
@@ -681,6 +685,11 @@ static void phy_change(struct work_struct *work) | |||
681 | 685 | ||
682 | return; | 686 | return; |
683 | 687 | ||
688 | ignore: | ||
689 | atomic_dec(&phydev->irq_disable); | ||
690 | enable_irq(phydev->irq); | ||
691 | return; | ||
692 | |||
684 | irq_enable_err: | 693 | irq_enable_err: |
685 | disable_irq(phydev->irq); | 694 | disable_irq(phydev->irq); |
686 | atomic_inc(&phydev->irq_disable); | 695 | atomic_inc(&phydev->irq_disable); |
@@ -937,6 +946,5 @@ static void phy_state_machine(struct work_struct *work) | |||
937 | if (err < 0) | 946 | if (err < 0) |
938 | phy_error(phydev); | 947 | phy_error(phydev); |
939 | 948 | ||
940 | schedule_delayed_work(&phydev->state_queue, | 949 | schedule_delayed_work(&phydev->state_queue, PHY_STATE_TIME * HZ); |
941 | jiffies + PHY_STATE_TIME * HZ); | ||
942 | } | 950 | } |
diff --git a/drivers/net/r6040.c b/drivers/net/r6040.c index 5e8540b6ffa1..6f97b47d74a6 100644 --- a/drivers/net/r6040.c +++ b/drivers/net/r6040.c | |||
@@ -160,6 +160,7 @@ MODULE_AUTHOR("Sten Wang <sten.wang@rdc.com.tw>," | |||
160 | "Florian Fainelli <florian@openwrt.org>"); | 160 | "Florian Fainelli <florian@openwrt.org>"); |
161 | MODULE_LICENSE("GPL"); | 161 | MODULE_LICENSE("GPL"); |
162 | MODULE_DESCRIPTION("RDC R6040 NAPI PCI FastEthernet driver"); | 162 | MODULE_DESCRIPTION("RDC R6040 NAPI PCI FastEthernet driver"); |
163 | MODULE_VERSION(DRV_VERSION " " DRV_RELDATE); | ||
163 | 164 | ||
164 | /* RX and TX interrupts that we handle */ | 165 | /* RX and TX interrupts that we handle */ |
165 | #define RX_INTS (RX_FIFO_FULL | RX_NO_DESC | RX_FINISH) | 166 | #define RX_INTS (RX_FIFO_FULL | RX_NO_DESC | RX_FINISH) |
diff --git a/drivers/net/sfc/efx.c b/drivers/net/sfc/efx.c index dee23b159df2..7269a426051c 100644 --- a/drivers/net/sfc/efx.c +++ b/drivers/net/sfc/efx.c | |||
@@ -448,9 +448,6 @@ static void efx_init_channels(struct efx_nic *efx) | |||
448 | 448 | ||
449 | WARN_ON(channel->rx_pkt != NULL); | 449 | WARN_ON(channel->rx_pkt != NULL); |
450 | efx_rx_strategy(channel); | 450 | efx_rx_strategy(channel); |
451 | |||
452 | netif_napi_add(channel->napi_dev, &channel->napi_str, | ||
453 | efx_poll, napi_weight); | ||
454 | } | 451 | } |
455 | } | 452 | } |
456 | 453 | ||
@@ -1321,6 +1318,8 @@ static int efx_init_napi(struct efx_nic *efx) | |||
1321 | 1318 | ||
1322 | efx_for_each_channel(channel, efx) { | 1319 | efx_for_each_channel(channel, efx) { |
1323 | channel->napi_dev = efx->net_dev; | 1320 | channel->napi_dev = efx->net_dev; |
1321 | netif_napi_add(channel->napi_dev, &channel->napi_str, | ||
1322 | efx_poll, napi_weight); | ||
1324 | } | 1323 | } |
1325 | return 0; | 1324 | return 0; |
1326 | } | 1325 | } |
@@ -1330,6 +1329,8 @@ static void efx_fini_napi(struct efx_nic *efx) | |||
1330 | struct efx_channel *channel; | 1329 | struct efx_channel *channel; |
1331 | 1330 | ||
1332 | efx_for_each_channel(channel, efx) { | 1331 | efx_for_each_channel(channel, efx) { |
1332 | if (channel->napi_dev) | ||
1333 | netif_napi_del(&channel->napi_str); | ||
1333 | channel->napi_dev = NULL; | 1334 | channel->napi_dev = NULL; |
1334 | } | 1335 | } |
1335 | } | 1336 | } |
diff --git a/drivers/net/sfc/falcon.c b/drivers/net/sfc/falcon.c index d4629ab2c614..466a8abb0053 100644 --- a/drivers/net/sfc/falcon.c +++ b/drivers/net/sfc/falcon.c | |||
@@ -1176,9 +1176,9 @@ void falcon_sim_phy_event(struct efx_nic *efx) | |||
1176 | 1176 | ||
1177 | EFX_POPULATE_QWORD_1(phy_event, EV_CODE, GLOBAL_EV_DECODE); | 1177 | EFX_POPULATE_QWORD_1(phy_event, EV_CODE, GLOBAL_EV_DECODE); |
1178 | if (EFX_IS10G(efx)) | 1178 | if (EFX_IS10G(efx)) |
1179 | EFX_SET_OWORD_FIELD(phy_event, XG_PHY_INTR, 1); | 1179 | EFX_SET_QWORD_FIELD(phy_event, XG_PHY_INTR, 1); |
1180 | else | 1180 | else |
1181 | EFX_SET_OWORD_FIELD(phy_event, G_PHY0_INTR, 1); | 1181 | EFX_SET_QWORD_FIELD(phy_event, G_PHY0_INTR, 1); |
1182 | 1182 | ||
1183 | falcon_generate_event(&efx->channel[0], &phy_event); | 1183 | falcon_generate_event(&efx->channel[0], &phy_event); |
1184 | } | 1184 | } |
diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index 7b1882765a0c..3ab28bb00c12 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c | |||
@@ -1188,6 +1188,19 @@ out: | |||
1188 | return ret; | 1188 | return ret; |
1189 | } | 1189 | } |
1190 | 1190 | ||
1191 | static const struct net_device_ops sh_eth_netdev_ops = { | ||
1192 | .ndo_open = sh_eth_open, | ||
1193 | .ndo_stop = sh_eth_close, | ||
1194 | .ndo_start_xmit = sh_eth_start_xmit, | ||
1195 | .ndo_get_stats = sh_eth_get_stats, | ||
1196 | .ndo_set_multicast_list = sh_eth_set_multicast_list, | ||
1197 | .ndo_tx_timeout = sh_eth_tx_timeout, | ||
1198 | .ndo_do_ioctl = sh_eth_do_ioctl, | ||
1199 | .ndo_validate_addr = eth_validate_addr, | ||
1200 | .ndo_set_mac_address = eth_mac_addr, | ||
1201 | .ndo_change_mtu = eth_change_mtu, | ||
1202 | }; | ||
1203 | |||
1191 | static int sh_eth_drv_probe(struct platform_device *pdev) | 1204 | static int sh_eth_drv_probe(struct platform_device *pdev) |
1192 | { | 1205 | { |
1193 | int ret, i, devno = 0; | 1206 | int ret, i, devno = 0; |
@@ -1240,13 +1253,7 @@ static int sh_eth_drv_probe(struct platform_device *pdev) | |||
1240 | mdp->edmac_endian = pd->edmac_endian; | 1253 | mdp->edmac_endian = pd->edmac_endian; |
1241 | 1254 | ||
1242 | /* set function */ | 1255 | /* set function */ |
1243 | ndev->open = sh_eth_open; | 1256 | ndev->netdev_ops = &sh_eth_netdev_ops; |
1244 | ndev->hard_start_xmit = sh_eth_start_xmit; | ||
1245 | ndev->stop = sh_eth_close; | ||
1246 | ndev->get_stats = sh_eth_get_stats; | ||
1247 | ndev->set_multicast_list = sh_eth_set_multicast_list; | ||
1248 | ndev->do_ioctl = sh_eth_do_ioctl; | ||
1249 | ndev->tx_timeout = sh_eth_tx_timeout; | ||
1250 | ndev->watchdog_timeo = TX_TIMEOUT; | 1257 | ndev->watchdog_timeo = TX_TIMEOUT; |
1251 | 1258 | ||
1252 | mdp->post_rx = POST_RX >> (devno << 1); | 1259 | mdp->post_rx = POST_RX >> (devno << 1); |
diff --git a/drivers/net/skge.c b/drivers/net/skge.c index b8978d4af1b7..c11cdd08ec57 100644 --- a/drivers/net/skge.c +++ b/drivers/net/skge.c | |||
@@ -2674,7 +2674,7 @@ static int skge_down(struct net_device *dev) | |||
2674 | if (netif_msg_ifdown(skge)) | 2674 | if (netif_msg_ifdown(skge)) |
2675 | printk(KERN_INFO PFX "%s: disabling interface\n", dev->name); | 2675 | printk(KERN_INFO PFX "%s: disabling interface\n", dev->name); |
2676 | 2676 | ||
2677 | netif_stop_queue(dev); | 2677 | netif_tx_disable(dev); |
2678 | 2678 | ||
2679 | if (hw->chip_id == CHIP_ID_GENESIS && hw->phy_type == SK_PHY_XMAC) | 2679 | if (hw->chip_id == CHIP_ID_GENESIS && hw->phy_type == SK_PHY_XMAC) |
2680 | del_timer_sync(&skge->link_timer); | 2680 | del_timer_sync(&skge->link_timer); |
@@ -2881,7 +2881,6 @@ static void skge_tx_clean(struct net_device *dev) | |||
2881 | } | 2881 | } |
2882 | 2882 | ||
2883 | skge->tx_ring.to_clean = e; | 2883 | skge->tx_ring.to_clean = e; |
2884 | netif_wake_queue(dev); | ||
2885 | } | 2884 | } |
2886 | 2885 | ||
2887 | static void skge_tx_timeout(struct net_device *dev) | 2886 | static void skge_tx_timeout(struct net_device *dev) |
@@ -2893,6 +2892,7 @@ static void skge_tx_timeout(struct net_device *dev) | |||
2893 | 2892 | ||
2894 | skge_write8(skge->hw, Q_ADDR(txqaddr[skge->port], Q_CSR), CSR_STOP); | 2893 | skge_write8(skge->hw, Q_ADDR(txqaddr[skge->port], Q_CSR), CSR_STOP); |
2895 | skge_tx_clean(dev); | 2894 | skge_tx_clean(dev); |
2895 | netif_wake_queue(dev); | ||
2896 | } | 2896 | } |
2897 | 2897 | ||
2898 | static int skge_change_mtu(struct net_device *dev, int new_mtu) | 2898 | static int skge_change_mtu(struct net_device *dev, int new_mtu) |
diff --git a/drivers/net/smc91x.h b/drivers/net/smc91x.h index 912308eec865..329f890e2903 100644 --- a/drivers/net/smc91x.h +++ b/drivers/net/smc91x.h | |||
@@ -369,7 +369,7 @@ static inline void LPD7_SMC_outsw (unsigned char* a, int r, | |||
369 | * MN10300/AM33 configuration | 369 | * MN10300/AM33 configuration |
370 | */ | 370 | */ |
371 | 371 | ||
372 | #include <asm/unit/smc91111.h> | 372 | #include <unit/smc91111.h> |
373 | 373 | ||
374 | #else | 374 | #else |
375 | 375 | ||
diff --git a/drivers/net/smsc911x.c b/drivers/net/smsc911x.c index 6da678129828..eb7db032a780 100644 --- a/drivers/net/smsc911x.c +++ b/drivers/net/smsc911x.c | |||
@@ -317,7 +317,7 @@ static int smsc911x_mii_read(struct mii_bus *bus, int phyaddr, int regidx) | |||
317 | goto out; | 317 | goto out; |
318 | } | 318 | } |
319 | 319 | ||
320 | SMSC_WARNING(HW, "Timed out waiting for MII write to finish"); | 320 | SMSC_WARNING(HW, "Timed out waiting for MII read to finish"); |
321 | reg = -EIO; | 321 | reg = -EIO; |
322 | 322 | ||
323 | out: | 323 | out: |
diff --git a/drivers/net/sun3_82586.c b/drivers/net/sun3_82586.c index e0d84772771c..a39c0b9ba8b6 100644 --- a/drivers/net/sun3_82586.c +++ b/drivers/net/sun3_82586.c | |||
@@ -331,6 +331,18 @@ out: | |||
331 | return ERR_PTR(err); | 331 | return ERR_PTR(err); |
332 | } | 332 | } |
333 | 333 | ||
334 | static const struct net_device_ops sun3_82586_netdev_ops = { | ||
335 | .ndo_open = sun3_82586_open, | ||
336 | .ndo_stop = sun3_82586_close, | ||
337 | .ndo_start_xmit = sun3_82586_send_packet, | ||
338 | .ndo_set_multicast_list = set_multicast_list, | ||
339 | .ndo_tx_timeout = sun3_82586_timeout, | ||
340 | .ndo_get_stats = sun3_82586_get_stats, | ||
341 | .ndo_validate_addr = eth_validate_addr, | ||
342 | .ndo_set_mac_address = eth_mac_addr, | ||
343 | .ndo_change_mtu = eth_change_mtu, | ||
344 | }; | ||
345 | |||
334 | static int __init sun3_82586_probe1(struct net_device *dev,int ioaddr) | 346 | static int __init sun3_82586_probe1(struct net_device *dev,int ioaddr) |
335 | { | 347 | { |
336 | int i, size, retval; | 348 | int i, size, retval; |
@@ -381,13 +393,8 @@ static int __init sun3_82586_probe1(struct net_device *dev,int ioaddr) | |||
381 | 393 | ||
382 | printk("Memaddr: 0x%lx, Memsize: %d, IRQ %d\n",dev->mem_start,size, dev->irq); | 394 | printk("Memaddr: 0x%lx, Memsize: %d, IRQ %d\n",dev->mem_start,size, dev->irq); |
383 | 395 | ||
384 | dev->open = sun3_82586_open; | 396 | dev->netdev_ops = &sun3_82586_netdev_ops; |
385 | dev->stop = sun3_82586_close; | ||
386 | dev->get_stats = sun3_82586_get_stats; | ||
387 | dev->tx_timeout = sun3_82586_timeout; | ||
388 | dev->watchdog_timeo = HZ/20; | 397 | dev->watchdog_timeo = HZ/20; |
389 | dev->hard_start_xmit = sun3_82586_send_packet; | ||
390 | dev->set_multicast_list = set_multicast_list; | ||
391 | 398 | ||
392 | dev->if_port = 0; | 399 | dev->if_port = 0; |
393 | return 0; | 400 | return 0; |
diff --git a/drivers/net/tc35815.c b/drivers/net/tc35815.c index d91e95b237b7..0ce2db6ce2bf 100644 --- a/drivers/net/tc35815.c +++ b/drivers/net/tc35815.c | |||
@@ -862,6 +862,22 @@ static int __devinit tc35815_init_dev_addr(struct net_device *dev) | |||
862 | return 0; | 862 | return 0; |
863 | } | 863 | } |
864 | 864 | ||
865 | static const struct net_device_ops tc35815_netdev_ops = { | ||
866 | .ndo_open = tc35815_open, | ||
867 | .ndo_stop = tc35815_close, | ||
868 | .ndo_start_xmit = tc35815_send_packet, | ||
869 | .ndo_get_stats = tc35815_get_stats, | ||
870 | .ndo_set_multicast_list = tc35815_set_multicast_list, | ||
871 | .ndo_tx_timeout = tc35815_tx_timeout, | ||
872 | .ndo_do_ioctl = tc35815_ioctl, | ||
873 | .ndo_validate_addr = eth_validate_addr, | ||
874 | .ndo_change_mtu = eth_change_mtu, | ||
875 | .ndo_set_mac_address = eth_mac_addr, | ||
876 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
877 | .ndo_poll_controller = tc35815_poll_controller, | ||
878 | #endif | ||
879 | }; | ||
880 | |||
865 | static int __devinit tc35815_init_one(struct pci_dev *pdev, | 881 | static int __devinit tc35815_init_one(struct pci_dev *pdev, |
866 | const struct pci_device_id *ent) | 882 | const struct pci_device_id *ent) |
867 | { | 883 | { |
@@ -904,21 +920,12 @@ static int __devinit tc35815_init_one(struct pci_dev *pdev, | |||
904 | ioaddr = pcim_iomap_table(pdev)[1]; | 920 | ioaddr = pcim_iomap_table(pdev)[1]; |
905 | 921 | ||
906 | /* Initialize the device structure. */ | 922 | /* Initialize the device structure. */ |
907 | dev->open = tc35815_open; | 923 | dev->netdev_ops = &tc35815_netdev_ops; |
908 | dev->hard_start_xmit = tc35815_send_packet; | ||
909 | dev->stop = tc35815_close; | ||
910 | dev->get_stats = tc35815_get_stats; | ||
911 | dev->set_multicast_list = tc35815_set_multicast_list; | ||
912 | dev->do_ioctl = tc35815_ioctl; | ||
913 | dev->ethtool_ops = &tc35815_ethtool_ops; | 924 | dev->ethtool_ops = &tc35815_ethtool_ops; |
914 | dev->tx_timeout = tc35815_tx_timeout; | ||
915 | dev->watchdog_timeo = TC35815_TX_TIMEOUT; | 925 | dev->watchdog_timeo = TC35815_TX_TIMEOUT; |
916 | #ifdef TC35815_NAPI | 926 | #ifdef TC35815_NAPI |
917 | netif_napi_add(dev, &lp->napi, tc35815_poll, NAPI_WEIGHT); | 927 | netif_napi_add(dev, &lp->napi, tc35815_poll, NAPI_WEIGHT); |
918 | #endif | 928 | #endif |
919 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
920 | dev->poll_controller = tc35815_poll_controller; | ||
921 | #endif | ||
922 | 929 | ||
923 | dev->irq = pdev->irq; | 930 | dev->irq = pdev->irq; |
924 | dev->base_addr = (unsigned long)ioaddr; | 931 | dev->base_addr = (unsigned long)ioaddr; |
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 6a736dda3ee2..7a837c465960 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -12443,8 +12443,13 @@ static int __devinit tg3_get_device_address(struct tg3 *tp) | |||
12443 | /* Next, try NVRAM. */ | 12443 | /* Next, try NVRAM. */ |
12444 | if (!tg3_nvram_read_be32(tp, mac_offset + 0, &hi) && | 12444 | if (!tg3_nvram_read_be32(tp, mac_offset + 0, &hi) && |
12445 | !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) { | 12445 | !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) { |
12446 | memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2); | 12446 | dev->dev_addr[0] = ((hi >> 16) & 0xff); |
12447 | memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo)); | 12447 | dev->dev_addr[1] = ((hi >> 24) & 0xff); |
12448 | dev->dev_addr[2] = ((lo >> 0) & 0xff); | ||
12449 | dev->dev_addr[3] = ((lo >> 8) & 0xff); | ||
12450 | dev->dev_addr[4] = ((lo >> 16) & 0xff); | ||
12451 | dev->dev_addr[5] = ((lo >> 24) & 0xff); | ||
12452 | |||
12448 | } | 12453 | } |
12449 | /* Finally just fetch it out of the MAC control regs. */ | 12454 | /* Finally just fetch it out of the MAC control regs. */ |
12450 | else { | 12455 | else { |
diff --git a/drivers/net/tsi108_eth.c b/drivers/net/tsi108_eth.c index bb43e7fb2a50..0f78f99f9b20 100644 --- a/drivers/net/tsi108_eth.c +++ b/drivers/net/tsi108_eth.c | |||
@@ -1561,6 +1561,18 @@ static const struct ethtool_ops tsi108_ethtool_ops = { | |||
1561 | .set_settings = tsi108_set_settings, | 1561 | .set_settings = tsi108_set_settings, |
1562 | }; | 1562 | }; |
1563 | 1563 | ||
1564 | static const struct net_device_ops tsi108_netdev_ops = { | ||
1565 | .ndo_open = tsi108_open, | ||
1566 | .ndo_stop = tsi108_close, | ||
1567 | .ndo_start_xmit = tsi108_send_packet, | ||
1568 | .ndo_set_multicast_list = tsi108_set_rx_mode, | ||
1569 | .ndo_get_stats = tsi108_get_stats, | ||
1570 | .ndo_do_ioctl = tsi108_do_ioctl, | ||
1571 | .ndo_set_mac_address = tsi108_set_mac, | ||
1572 | .ndo_validate_addr = eth_validate_addr, | ||
1573 | .ndo_change_mtu = eth_change_mtu, | ||
1574 | }; | ||
1575 | |||
1564 | static int | 1576 | static int |
1565 | tsi108_init_one(struct platform_device *pdev) | 1577 | tsi108_init_one(struct platform_device *pdev) |
1566 | { | 1578 | { |
@@ -1616,14 +1628,8 @@ tsi108_init_one(struct platform_device *pdev) | |||
1616 | data->phy_type = einfo->phy_type; | 1628 | data->phy_type = einfo->phy_type; |
1617 | data->irq_num = einfo->irq_num; | 1629 | data->irq_num = einfo->irq_num; |
1618 | data->id = pdev->id; | 1630 | data->id = pdev->id; |
1619 | dev->open = tsi108_open; | ||
1620 | dev->stop = tsi108_close; | ||
1621 | dev->hard_start_xmit = tsi108_send_packet; | ||
1622 | dev->set_mac_address = tsi108_set_mac; | ||
1623 | dev->set_multicast_list = tsi108_set_rx_mode; | ||
1624 | dev->get_stats = tsi108_get_stats; | ||
1625 | netif_napi_add(dev, &data->napi, tsi108_poll, 64); | 1631 | netif_napi_add(dev, &data->napi, tsi108_poll, 64); |
1626 | dev->do_ioctl = tsi108_do_ioctl; | 1632 | dev->netdev_ops = &tsi108_netdev_ops; |
1627 | dev->ethtool_ops = &tsi108_ethtool_ops; | 1633 | dev->ethtool_ops = &tsi108_ethtool_ops; |
1628 | 1634 | ||
1629 | /* Apparently, the Linux networking code won't use scatter-gather | 1635 | /* Apparently, the Linux networking code won't use scatter-gather |
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index a1b0697340ba..16716aef184c 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c | |||
@@ -518,7 +518,7 @@ static inline struct sk_buff *tun_alloc_skb(struct tun_struct *tun, | |||
518 | int err; | 518 | int err; |
519 | 519 | ||
520 | /* Under a page? Don't bother with paged skb. */ | 520 | /* Under a page? Don't bother with paged skb. */ |
521 | if (prepad + len < PAGE_SIZE) | 521 | if (prepad + len < PAGE_SIZE || !linear) |
522 | linear = len; | 522 | linear = len; |
523 | 523 | ||
524 | skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock, | 524 | skb = sock_alloc_send_pskb(sk, prepad + linear, len - linear, noblock, |
@@ -565,7 +565,8 @@ static __inline__ ssize_t tun_get_user(struct tun_struct *tun, | |||
565 | 565 | ||
566 | if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) { | 566 | if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) { |
567 | align = NET_IP_ALIGN; | 567 | align = NET_IP_ALIGN; |
568 | if (unlikely(len < ETH_HLEN)) | 568 | if (unlikely(len < ETH_HLEN || |
569 | (gso.hdr_len && gso.hdr_len < ETH_HLEN))) | ||
569 | return -EINVAL; | 570 | return -EINVAL; |
570 | } | 571 | } |
571 | 572 | ||
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c index fb53ef872df3..754a4b182c1d 100644 --- a/drivers/net/via-velocity.c +++ b/drivers/net/via-velocity.c | |||
@@ -377,7 +377,7 @@ static void velocity_print_info(struct velocity_info *vptr); | |||
377 | static int velocity_open(struct net_device *dev); | 377 | static int velocity_open(struct net_device *dev); |
378 | static int velocity_change_mtu(struct net_device *dev, int mtu); | 378 | static int velocity_change_mtu(struct net_device *dev, int mtu); |
379 | static int velocity_xmit(struct sk_buff *skb, struct net_device *dev); | 379 | static int velocity_xmit(struct sk_buff *skb, struct net_device *dev); |
380 | static int velocity_intr(int irq, void *dev_instance); | 380 | static irqreturn_t velocity_intr(int irq, void *dev_instance); |
381 | static void velocity_set_multi(struct net_device *dev); | 381 | static void velocity_set_multi(struct net_device *dev); |
382 | static struct net_device_stats *velocity_get_stats(struct net_device *dev); | 382 | static struct net_device_stats *velocity_get_stats(struct net_device *dev); |
383 | static int velocity_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); | 383 | static int velocity_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
@@ -2215,7 +2215,7 @@ out: | |||
2215 | * efficiently as possible. | 2215 | * efficiently as possible. |
2216 | */ | 2216 | */ |
2217 | 2217 | ||
2218 | static int velocity_intr(int irq, void *dev_instance) | 2218 | static irqreturn_t velocity_intr(int irq, void *dev_instance) |
2219 | { | 2219 | { |
2220 | struct net_device *dev = dev_instance; | 2220 | struct net_device *dev = dev_instance; |
2221 | struct velocity_info *vptr = netdev_priv(dev); | 2221 | struct velocity_info *vptr = netdev_priv(dev); |
diff --git a/drivers/net/xtsonic.c b/drivers/net/xtsonic.c index a12a7211c982..5a4ad156f63e 100644 --- a/drivers/net/xtsonic.c +++ b/drivers/net/xtsonic.c | |||
@@ -108,6 +108,18 @@ static int xtsonic_close(struct net_device *dev) | |||
108 | return err; | 108 | return err; |
109 | } | 109 | } |
110 | 110 | ||
111 | static const struct net_device_ops xtsonic_netdev_ops = { | ||
112 | .ndo_open = xtsonic_open, | ||
113 | .ndo_stop = xtsonic_close, | ||
114 | .ndo_start_xmit = sonic_send_packet, | ||
115 | .ndo_get_stats = sonic_get_stats, | ||
116 | .ndo_set_multicast_list = sonic_multicast_list, | ||
117 | .ndo_tx_timeout = sonic_tx_timeout, | ||
118 | .ndo_validate_addr = eth_validate_addr, | ||
119 | .ndo_change_mtu = eth_change_mtu, | ||
120 | .ndo_set_mac_address = eth_mac_addr, | ||
121 | }; | ||
122 | |||
111 | static int __init sonic_probe1(struct net_device *dev) | 123 | static int __init sonic_probe1(struct net_device *dev) |
112 | { | 124 | { |
113 | static unsigned version_printed = 0; | 125 | static unsigned version_printed = 0; |
@@ -205,12 +217,7 @@ static int __init sonic_probe1(struct net_device *dev) | |||
205 | lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS | 217 | lp->rra_laddr = lp->rda_laddr + (SIZEOF_SONIC_RD * SONIC_NUM_RDS |
206 | * SONIC_BUS_SCALE(lp->dma_bitmode)); | 218 | * SONIC_BUS_SCALE(lp->dma_bitmode)); |
207 | 219 | ||
208 | dev->open = xtsonic_open; | 220 | dev->netdev_ops = &xtsonic_netdev_ops; |
209 | dev->stop = xtsonic_close; | ||
210 | dev->hard_start_xmit = sonic_send_packet; | ||
211 | dev->get_stats = sonic_get_stats; | ||
212 | dev->set_multicast_list = &sonic_multicast_list; | ||
213 | dev->tx_timeout = sonic_tx_timeout; | ||
214 | dev->watchdog_timeo = TX_TIMEOUT; | 221 | dev->watchdog_timeo = TX_TIMEOUT; |
215 | 222 | ||
216 | /* | 223 | /* |