aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/atlx/atl2.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/atlx/atl2.c')
-rw-r--r--drivers/net/atlx/atl2.c60
1 files changed, 27 insertions, 33 deletions
diff --git a/drivers/net/atlx/atl2.c b/drivers/net/atlx/atl2.c
index 8da87383fb39..16249e9b6b95 100644
--- a/drivers/net/atlx/atl2.c
+++ b/drivers/net/atlx/atl2.c
@@ -51,10 +51,10 @@
51 51
52#define ATL2_DRV_VERSION "2.2.3" 52#define ATL2_DRV_VERSION "2.2.3"
53 53
54static char atl2_driver_name[] = "atl2"; 54static const char atl2_driver_name[] = "atl2";
55static const char atl2_driver_string[] = "Atheros(R) L2 Ethernet Driver"; 55static const char atl2_driver_string[] = "Atheros(R) L2 Ethernet Driver";
56static char atl2_copyright[] = "Copyright (c) 2007 Atheros Corporation."; 56static const char atl2_copyright[] = "Copyright (c) 2007 Atheros Corporation.";
57static char atl2_driver_version[] = ATL2_DRV_VERSION; 57static const char atl2_driver_version[] = ATL2_DRV_VERSION;
58 58
59MODULE_AUTHOR("Atheros Corporation <xiong.huang@atheros.com>, Chris Snook <csnook@redhat.com>"); 59MODULE_AUTHOR("Atheros Corporation <xiong.huang@atheros.com>, Chris Snook <csnook@redhat.com>");
60MODULE_DESCRIPTION("Atheros Fast Ethernet Network Driver"); 60MODULE_DESCRIPTION("Atheros Fast Ethernet Network Driver");
@@ -93,8 +93,8 @@ static int __devinit atl2_sw_init(struct atl2_adapter *adapter)
93 hw->device_id = pdev->device; 93 hw->device_id = pdev->device;
94 hw->subsystem_vendor_id = pdev->subsystem_vendor; 94 hw->subsystem_vendor_id = pdev->subsystem_vendor;
95 hw->subsystem_id = pdev->subsystem_device; 95 hw->subsystem_id = pdev->subsystem_device;
96 hw->revision_id = pdev->revision;
96 97
97 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
98 pci_read_config_word(pdev, PCI_COMMAND, &hw->pci_cmd_word); 98 pci_read_config_word(pdev, PCI_COMMAND, &hw->pci_cmd_word);
99 99
100 adapter->wol = 0; 100 adapter->wol = 0;
@@ -870,7 +870,7 @@ static netdev_tx_t atl2_xmit_frame(struct sk_buff *skb,
870 offset = ((u32)(skb->len-copy_len + 3) & ~3); 870 offset = ((u32)(skb->len-copy_len + 3) & ~3);
871 } 871 }
872#ifdef NETIF_F_HW_VLAN_TX 872#ifdef NETIF_F_HW_VLAN_TX
873 if (adapter->vlgrp && vlan_tx_tag_present(skb)) { 873 if (vlan_tx_tag_present(skb)) {
874 u16 vlan_tag = vlan_tx_tag_get(skb); 874 u16 vlan_tag = vlan_tx_tag_get(skb);
875 vlan_tag = (vlan_tag << 4) | 875 vlan_tag = (vlan_tag << 4) |
876 (vlan_tag >> 13) | 876 (vlan_tag >> 13) |
@@ -1411,9 +1411,8 @@ static int __devinit atl2_probe(struct pci_dev *pdev,
1411 1411
1412 err = -EIO; 1412 err = -EIO;
1413 1413
1414#ifdef NETIF_F_HW_VLAN_TX 1414 netdev->hw_features = NETIF_F_SG;
1415 netdev->features |= (NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX); 1415 netdev->features |= (NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX);
1416#endif
1417 1416
1418 /* Init PHY as early as possible due to power saving issue */ 1417 /* Init PHY as early as possible due to power saving issue */
1419 atl2_phy_init(&adapter->hw); 1418 atl2_phy_init(&adapter->hw);
@@ -1444,11 +1443,11 @@ static int __devinit atl2_probe(struct pci_dev *pdev,
1444 atl2_check_options(adapter); 1443 atl2_check_options(adapter);
1445 1444
1446 init_timer(&adapter->watchdog_timer); 1445 init_timer(&adapter->watchdog_timer);
1447 adapter->watchdog_timer.function = &atl2_watchdog; 1446 adapter->watchdog_timer.function = atl2_watchdog;
1448 adapter->watchdog_timer.data = (unsigned long) adapter; 1447 adapter->watchdog_timer.data = (unsigned long) adapter;
1449 1448
1450 init_timer(&adapter->phy_config_timer); 1449 init_timer(&adapter->phy_config_timer);
1451 adapter->phy_config_timer.function = &atl2_phy_config; 1450 adapter->phy_config_timer.function = atl2_phy_config;
1452 adapter->phy_config_timer.data = (unsigned long) adapter; 1451 adapter->phy_config_timer.data = (unsigned long) adapter;
1453 1452
1454 INIT_WORK(&adapter->reset_task, atl2_reset_task); 1453 INIT_WORK(&adapter->reset_task, atl2_reset_task);
@@ -1504,8 +1503,8 @@ static void __devexit atl2_remove(struct pci_dev *pdev)
1504 1503
1505 del_timer_sync(&adapter->watchdog_timer); 1504 del_timer_sync(&adapter->watchdog_timer);
1506 del_timer_sync(&adapter->phy_config_timer); 1505 del_timer_sync(&adapter->phy_config_timer);
1507 1506 cancel_work_sync(&adapter->reset_task);
1508 flush_scheduled_work(); 1507 cancel_work_sync(&adapter->link_chg_task);
1509 1508
1510 unregister_netdev(netdev); 1509 unregister_netdev(netdev);
1511 1510
@@ -1701,7 +1700,7 @@ static struct pci_driver atl2_driver = {
1701 .id_table = atl2_pci_tbl, 1700 .id_table = atl2_pci_tbl,
1702 .probe = atl2_probe, 1701 .probe = atl2_probe,
1703 .remove = __devexit_p(atl2_remove), 1702 .remove = __devexit_p(atl2_remove),
1704 /* Power Managment Hooks */ 1703 /* Power Management Hooks */
1705 .suspend = atl2_suspend, 1704 .suspend = atl2_suspend,
1706#ifdef CONFIG_PM 1705#ifdef CONFIG_PM
1707 .resume = atl2_resume, 1706 .resume = atl2_resume,
@@ -1770,13 +1769,13 @@ static int atl2_get_settings(struct net_device *netdev,
1770 ecmd->transceiver = XCVR_INTERNAL; 1769 ecmd->transceiver = XCVR_INTERNAL;
1771 1770
1772 if (adapter->link_speed != SPEED_0) { 1771 if (adapter->link_speed != SPEED_0) {
1773 ecmd->speed = adapter->link_speed; 1772 ethtool_cmd_speed_set(ecmd, adapter->link_speed);
1774 if (adapter->link_duplex == FULL_DUPLEX) 1773 if (adapter->link_duplex == FULL_DUPLEX)
1775 ecmd->duplex = DUPLEX_FULL; 1774 ecmd->duplex = DUPLEX_FULL;
1776 else 1775 else
1777 ecmd->duplex = DUPLEX_HALF; 1776 ecmd->duplex = DUPLEX_HALF;
1778 } else { 1777 } else {
1779 ecmd->speed = -1; 1778 ethtool_cmd_speed_set(ecmd, -1);
1780 ecmd->duplex = -1; 1779 ecmd->duplex = -1;
1781 } 1780 }
1782 1781
@@ -1840,11 +1839,6 @@ static int atl2_set_settings(struct net_device *netdev,
1840 return 0; 1839 return 0;
1841} 1840}
1842 1841
1843static u32 atl2_get_tx_csum(struct net_device *netdev)
1844{
1845 return (netdev->features & NETIF_F_HW_CSUM) != 0;
1846}
1847
1848static u32 atl2_get_msglevel(struct net_device *netdev) 1842static u32 atl2_get_msglevel(struct net_device *netdev)
1849{ 1843{
1850 return 0; 1844 return 0;
@@ -1996,13 +1990,15 @@ static int atl2_set_eeprom(struct net_device *netdev,
1996 if (!eeprom_buff) 1990 if (!eeprom_buff)
1997 return -ENOMEM; 1991 return -ENOMEM;
1998 1992
1999 ptr = (u32 *)eeprom_buff; 1993 ptr = eeprom_buff;
2000 1994
2001 if (eeprom->offset & 3) { 1995 if (eeprom->offset & 3) {
2002 /* need read/modify/write of first changed EEPROM word */ 1996 /* need read/modify/write of first changed EEPROM word */
2003 /* only the second byte of the word is being modified */ 1997 /* only the second byte of the word is being modified */
2004 if (!atl2_read_eeprom(hw, first_dword*4, &(eeprom_buff[0]))) 1998 if (!atl2_read_eeprom(hw, first_dword*4, &(eeprom_buff[0]))) {
2005 return -EIO; 1999 ret_val = -EIO;
2000 goto out;
2001 }
2006 ptr++; 2002 ptr++;
2007 } 2003 }
2008 if (((eeprom->offset + eeprom->len) & 3)) { 2004 if (((eeprom->offset + eeprom->len) & 3)) {
@@ -2011,18 +2007,22 @@ static int atl2_set_eeprom(struct net_device *netdev,
2011 * only the first byte of the word is being modified 2007 * only the first byte of the word is being modified
2012 */ 2008 */
2013 if (!atl2_read_eeprom(hw, last_dword * 4, 2009 if (!atl2_read_eeprom(hw, last_dword * 4,
2014 &(eeprom_buff[last_dword - first_dword]))) 2010 &(eeprom_buff[last_dword - first_dword]))) {
2015 return -EIO; 2011 ret_val = -EIO;
2012 goto out;
2013 }
2016 } 2014 }
2017 2015
2018 /* Device's eeprom is always little-endian, word addressable */ 2016 /* Device's eeprom is always little-endian, word addressable */
2019 memcpy(ptr, bytes, eeprom->len); 2017 memcpy(ptr, bytes, eeprom->len);
2020 2018
2021 for (i = 0; i < last_dword - first_dword + 1; i++) { 2019 for (i = 0; i < last_dword - first_dword + 1; i++) {
2022 if (!atl2_write_eeprom(hw, ((first_dword+i)*4), eeprom_buff[i])) 2020 if (!atl2_write_eeprom(hw, ((first_dword+i)*4), eeprom_buff[i])) {
2023 return -EIO; 2021 ret_val = -EIO;
2022 goto out;
2023 }
2024 } 2024 }
2025 2025 out:
2026 kfree(eeprom_buff); 2026 kfree(eeprom_buff);
2027 return ret_val; 2027 return ret_val;
2028} 2028}
@@ -2106,12 +2106,6 @@ static const struct ethtool_ops atl2_ethtool_ops = {
2106 .get_eeprom_len = atl2_get_eeprom_len, 2106 .get_eeprom_len = atl2_get_eeprom_len,
2107 .get_eeprom = atl2_get_eeprom, 2107 .get_eeprom = atl2_get_eeprom,
2108 .set_eeprom = atl2_set_eeprom, 2108 .set_eeprom = atl2_set_eeprom,
2109 .get_tx_csum = atl2_get_tx_csum,
2110 .get_sg = ethtool_op_get_sg,
2111 .set_sg = ethtool_op_set_sg,
2112#ifdef NETIF_F_TSO
2113 .get_tso = ethtool_op_get_tso,
2114#endif
2115}; 2109};
2116 2110
2117static void atl2_set_ethtool_ops(struct net_device *netdev) 2111static void atl2_set_ethtool_ops(struct net_device *netdev)