Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * |
| 3 | * Linux ThunderLAN Driver |
| 4 | * |
| 5 | * tlan.c |
| 6 | * by James Banks |
| 7 | * |
| 8 | * (C) 1997-1998 Caldera, Inc. |
| 9 | * (C) 1998 James Banks |
| 10 | * (C) 1999-2001 Torben Mathiasen |
| 11 | * (C) 2002 Samuel Chessman |
| 12 | * |
| 13 | * This software may be used and distributed according to the terms |
| 14 | * of the GNU General Public License, incorporated herein by reference. |
| 15 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | ** Useful (if not required) reading: |
| 17 | * |
| 18 | * Texas Instruments, ThunderLAN Programmer's Guide, |
| 19 | * TI Literature Number SPWU013A |
| 20 | * available in PDF format from www.ti.com |
| 21 | * Level One, LXT901 and LXT970 Data Sheets |
| 22 | * available in PDF format from www.level1.com |
| 23 | * National Semiconductor, DP83840A Data Sheet |
| 24 | * available in PDF format from www.national.com |
| 25 | * Microchip Technology, 24C01A/02A/04A Data Sheet |
| 26 | * available in PDF format from www.microchip.com |
| 27 | * |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 28 | ******************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | #include <linux/module.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/ioport.h> |
| 33 | #include <linux/eisa.h> |
| 34 | #include <linux/pci.h> |
Domen Puncer | 1e7f0bd | 2005-06-26 18:22:14 -0400 | [diff] [blame] | 35 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/netdevice.h> |
| 37 | #include <linux/etherdevice.h> |
| 38 | #include <linux/delay.h> |
| 39 | #include <linux/spinlock.h> |
| 40 | #include <linux/workqueue.h> |
| 41 | #include <linux/mii.h> |
| 42 | |
| 43 | #include "tlan.h" |
| 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | /* For removing EISA devices */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 47 | static struct net_device *tlan_eisa_devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 49 | static int tlan_devices_installed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | /* Set speed, duplex and aui settings */ |
| 52 | static int aui[MAX_TLAN_BOARDS]; |
| 53 | static int duplex[MAX_TLAN_BOARDS]; |
| 54 | static int speed[MAX_TLAN_BOARDS]; |
| 55 | static int boards_found; |
Stephen Hemminger | 15efa9b | 2005-05-04 15:33:11 -0700 | [diff] [blame] | 56 | module_param_array(aui, int, NULL, 0); |
| 57 | module_param_array(duplex, int, NULL, 0); |
| 58 | module_param_array(speed, int, NULL, 0); |
| 59 | MODULE_PARM_DESC(aui, "ThunderLAN use AUI port(s) (0-1)"); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 60 | MODULE_PARM_DESC(duplex, |
| 61 | "ThunderLAN duplex setting(s) (0-default, 1-half, 2-full)"); |
Stephen Hemminger | 15efa9b | 2005-05-04 15:33:11 -0700 | [diff] [blame] | 62 | MODULE_PARM_DESC(speed, "ThunderLAN port speen setting(s) (0,10,100)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | MODULE_AUTHOR("Maintainer: Samuel Chessman <chessman@tux.org>"); |
| 65 | MODULE_DESCRIPTION("Driver for TI ThunderLAN based ethernet PCI adapters"); |
| 66 | MODULE_LICENSE("GPL"); |
| 67 | |
| 68 | |
| 69 | /* Define this to enable Link beat monitoring */ |
| 70 | #undef MONITOR |
| 71 | |
| 72 | /* Turn on debugging. See Documentation/networking/tlan.txt for details */ |
| 73 | static int debug; |
Stephen Hemminger | 15efa9b | 2005-05-04 15:33:11 -0700 | [diff] [blame] | 74 | module_param(debug, int, 0); |
| 75 | MODULE_PARM_DESC(debug, "ThunderLAN debug mask"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 77 | static const char tlan_signature[] = "TLAN"; |
Sakari Ailus | fa6d5d4 | 2011-01-21 10:59:31 +0000 | [diff] [blame] | 78 | static const char tlan_banner[] = "ThunderLAN driver v1.17\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | static int tlan_have_pci; |
| 80 | static int tlan_have_eisa; |
| 81 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 82 | static const char * const media[] = { |
| 83 | "10BaseT-HD", "10BaseT-FD", "100baseTx-HD", |
| 84 | "100BaseTx-FD", "100BaseT4", NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | static struct board { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 88 | const char *device_label; |
| 89 | u32 flags; |
| 90 | u16 addr_ofs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } board_info[] = { |
| 92 | { "Compaq Netelligent 10 T PCI UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 }, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 93 | { "Compaq Netelligent 10/100 TX PCI UTP", |
| 94 | TLAN_ADAPTER_ACTIVITY_LED, 0x83 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { "Compaq Integrated NetFlex-3/P", TLAN_ADAPTER_NONE, 0x83 }, |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 96 | { "Compaq NetFlex-3/P", |
| 97 | TLAN_ADAPTER_UNMANAGED_PHY | TLAN_ADAPTER_BIT_RATE_PHY, 0x83 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { "Compaq NetFlex-3/P", TLAN_ADAPTER_NONE, 0x83 }, |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 99 | { "Compaq Netelligent Integrated 10/100 TX UTP", |
| 100 | TLAN_ADAPTER_ACTIVITY_LED, 0x83 }, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 101 | { "Compaq Netelligent Dual 10/100 TX PCI UTP", |
| 102 | TLAN_ADAPTER_NONE, 0x83 }, |
| 103 | { "Compaq Netelligent 10/100 TX Embedded UTP", |
| 104 | TLAN_ADAPTER_NONE, 0x83 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { "Olicom OC-2183/2185", TLAN_ADAPTER_USE_INTERN_10, 0x83 }, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 106 | { "Olicom OC-2325", TLAN_ADAPTER_UNMANAGED_PHY, 0xf8 }, |
| 107 | { "Olicom OC-2326", TLAN_ADAPTER_USE_INTERN_10, 0xf8 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { "Compaq Netelligent 10/100 TX UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 }, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 109 | { "Compaq Netelligent 10 T/2 PCI UTP/coax", TLAN_ADAPTER_NONE, 0x83 }, |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 110 | { "Compaq NetFlex-3/E", |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 111 | TLAN_ADAPTER_ACTIVITY_LED | /* EISA card */ |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 112 | TLAN_ADAPTER_UNMANAGED_PHY | TLAN_ADAPTER_BIT_RATE_PHY, 0x83 }, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 113 | { "Compaq NetFlex-3/E", |
| 114 | TLAN_ADAPTER_ACTIVITY_LED, 0x83 }, /* EISA card */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | }; |
| 116 | |
Alexey Dobriyan | a3aa188 | 2010-01-07 11:58:11 +0000 | [diff] [blame] | 117 | static DEFINE_PCI_DEVICE_TABLE(tlan_pci_tbl) = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL10, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 119 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 121 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETFLEX3I, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 123 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_THUNDER, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 125 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETFLEX3B, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 127 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100PI, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 129 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 5 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100D, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 131 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 6 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100I, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 133 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 7 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | { PCI_VENDOR_ID_OLICOM, PCI_DEVICE_ID_OLICOM_OC2183, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 135 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 8 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { PCI_VENDOR_ID_OLICOM, PCI_DEVICE_ID_OLICOM_OC2325, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 137 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 9 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | { PCI_VENDOR_ID_OLICOM, PCI_DEVICE_ID_OLICOM_OC2326, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 139 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 10 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_NETELLIGENT_10_100_WS_5100, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 141 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 11 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_NETELLIGENT_10_T2, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 143 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 12 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { 0,} |
| 145 | }; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 146 | MODULE_DEVICE_TABLE(pci, tlan_pci_tbl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 148 | static void tlan_eisa_probe(void); |
| 149 | static void tlan_eisa_cleanup(void); |
| 150 | static int tlan_init(struct net_device *); |
| 151 | static int tlan_open(struct net_device *dev); |
| 152 | static netdev_tx_t tlan_start_tx(struct sk_buff *, struct net_device *); |
| 153 | static irqreturn_t tlan_handle_interrupt(int, void *); |
| 154 | static int tlan_close(struct net_device *); |
| 155 | static struct net_device_stats *tlan_get_stats(struct net_device *); |
| 156 | static void tlan_set_multicast_list(struct net_device *); |
| 157 | static int tlan_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
| 158 | static int tlan_probe1(struct pci_dev *pdev, long ioaddr, |
| 159 | int irq, int rev, const struct pci_device_id *ent); |
| 160 | static void tlan_tx_timeout(struct net_device *dev); |
| 161 | static void tlan_tx_timeout_work(struct work_struct *work); |
| 162 | static int tlan_init_one(struct pci_dev *pdev, |
| 163 | const struct pci_device_id *ent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 165 | static u32 tlan_handle_tx_eof(struct net_device *, u16); |
| 166 | static u32 tlan_handle_stat_overflow(struct net_device *, u16); |
| 167 | static u32 tlan_handle_rx_eof(struct net_device *, u16); |
| 168 | static u32 tlan_handle_dummy(struct net_device *, u16); |
| 169 | static u32 tlan_handle_tx_eoc(struct net_device *, u16); |
| 170 | static u32 tlan_handle_status_check(struct net_device *, u16); |
| 171 | static u32 tlan_handle_rx_eoc(struct net_device *, u16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 173 | static void tlan_timer(unsigned long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 175 | static void tlan_reset_lists(struct net_device *); |
| 176 | static void tlan_free_lists(struct net_device *); |
| 177 | static void tlan_print_dio(u16); |
| 178 | static void tlan_print_list(struct tlan_list *, char *, int); |
| 179 | static void tlan_read_and_clear_stats(struct net_device *, int); |
| 180 | static void tlan_reset_adapter(struct net_device *); |
| 181 | static void tlan_finish_reset(struct net_device *); |
| 182 | static void tlan_set_mac(struct net_device *, int areg, char *mac); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 184 | static void tlan_phy_print(struct net_device *); |
| 185 | static void tlan_phy_detect(struct net_device *); |
| 186 | static void tlan_phy_power_down(struct net_device *); |
| 187 | static void tlan_phy_power_up(struct net_device *); |
| 188 | static void tlan_phy_reset(struct net_device *); |
| 189 | static void tlan_phy_start_link(struct net_device *); |
| 190 | static void tlan_phy_finish_auto_neg(struct net_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | #ifdef MONITOR |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 192 | static void tlan_phy_monitor(struct net_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | #endif |
| 194 | |
| 195 | /* |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 196 | static int tlan_phy_nop(struct net_device *); |
| 197 | static int tlan_phy_internal_check(struct net_device *); |
| 198 | static int tlan_phy_internal_service(struct net_device *); |
| 199 | static int tlan_phy_dp83840a_check(struct net_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | */ |
| 201 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 202 | static bool tlan_mii_read_reg(struct net_device *, u16, u16, u16 *); |
| 203 | static void tlan_mii_send_data(u16, u32, unsigned); |
| 204 | static void tlan_mii_sync(u16); |
| 205 | static void tlan_mii_write_reg(struct net_device *, u16, u16, u16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 207 | static void tlan_ee_send_start(u16); |
| 208 | static int tlan_ee_send_byte(u16, u8, int); |
| 209 | static void tlan_ee_receive_byte(u16, u8 *, int); |
| 210 | static int tlan_ee_read_byte(struct net_device *, u8, u8 *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | |
Stephen Hemminger | 93e1684 | 2008-05-30 09:49:55 -0700 | [diff] [blame] | 213 | static inline void |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 214 | tlan_store_skb(struct tlan_list *tag, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | { |
| 216 | unsigned long addr = (unsigned long)skb; |
Stephen Hemminger | 93e1684 | 2008-05-30 09:49:55 -0700 | [diff] [blame] | 217 | tag->buffer[9].address = addr; |
| 218 | tag->buffer[8].address = upper_32_bits(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Stephen Hemminger | 93e1684 | 2008-05-30 09:49:55 -0700 | [diff] [blame] | 221 | static inline struct sk_buff * |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 222 | tlan_get_skb(const struct tlan_list *tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | { |
Stephen Hemminger | 93e1684 | 2008-05-30 09:49:55 -0700 | [diff] [blame] | 224 | unsigned long addr; |
| 225 | |
Robert Fitzsimons | 0d63bea | 2008-08-09 17:54:02 +0100 | [diff] [blame] | 226 | addr = tag->buffer[9].address; |
| 227 | addr |= (tag->buffer[8].address << 16) << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | return (struct sk_buff *) addr; |
| 229 | } |
| 230 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 231 | static u32 |
| 232 | (*tlan_int_vector[TLAN_INT_NUMBER_OF_INTS])(struct net_device *, u16) = { |
Stephen Hemminger | a3ccc78 | 2008-05-30 09:49:57 -0700 | [diff] [blame] | 233 | NULL, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 234 | tlan_handle_tx_eof, |
| 235 | tlan_handle_stat_overflow, |
| 236 | tlan_handle_rx_eof, |
| 237 | tlan_handle_dummy, |
| 238 | tlan_handle_tx_eoc, |
| 239 | tlan_handle_status_check, |
| 240 | tlan_handle_rx_eoc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | }; |
| 242 | |
| 243 | static inline void |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 244 | tlan_set_timer(struct net_device *dev, u32 ticks, u32 type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 246 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | unsigned long flags = 0; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | if (!in_irq()) |
| 250 | spin_lock_irqsave(&priv->lock, flags); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 251 | if (priv->timer.function != NULL && |
| 252 | priv->timer_type != TLAN_TIMER_ACTIVITY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | if (!in_irq()) |
| 254 | spin_unlock_irqrestore(&priv->lock, flags); |
| 255 | return; |
| 256 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 257 | priv->timer.function = tlan_timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | if (!in_irq()) |
| 259 | spin_unlock_irqrestore(&priv->lock, flags); |
| 260 | |
| 261 | priv->timer.data = (unsigned long) dev; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 262 | priv->timer_set_at = jiffies; |
| 263 | priv->timer_type = type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | mod_timer(&priv->timer, jiffies + ticks); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 265 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 266 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
| 268 | |
| 269 | /***************************************************************************** |
| 270 | ****************************************************************************** |
| 271 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 272 | ThunderLAN driver primary functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 274 | these functions are more or less common to all linux network drivers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
| 276 | ****************************************************************************** |
| 277 | *****************************************************************************/ |
| 278 | |
| 279 | |
| 280 | |
| 281 | |
| 282 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 283 | /*************************************************************** |
| 284 | * tlan_remove_one |
| 285 | * |
| 286 | * Returns: |
| 287 | * Nothing |
| 288 | * Parms: |
| 289 | * None |
| 290 | * |
| 291 | * Goes through the TLanDevices list and frees the device |
| 292 | * structs and memory associated with each device (lists |
| 293 | * and buffers). It also ureserves the IO port regions |
| 294 | * associated with this device. |
| 295 | * |
| 296 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
| 298 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 299 | static void __devexit tlan_remove_one(struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 301 | struct net_device *dev = pci_get_drvdata(pdev); |
| 302 | struct tlan_priv *priv = netdev_priv(dev); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 303 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 304 | unregister_netdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 306 | if (priv->dma_storage) { |
| 307 | pci_free_consistent(priv->pci_dev, |
| 308 | priv->dma_size, priv->dma_storage, |
| 309 | priv->dma_storage_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | #ifdef CONFIG_PCI |
| 313 | pci_release_regions(pdev); |
| 314 | #endif |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 315 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 316 | free_netdev(dev); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 317 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 318 | pci_set_drvdata(pdev, NULL); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 319 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
Sakari Ailus | fa6d5d4 | 2011-01-21 10:59:31 +0000 | [diff] [blame] | 321 | static void tlan_start(struct net_device *dev) |
| 322 | { |
| 323 | tlan_reset_lists(dev); |
| 324 | /* NOTE: It might not be necessary to read the stats before a |
| 325 | reset if you don't care what the values are. |
| 326 | */ |
| 327 | tlan_read_and_clear_stats(dev, TLAN_IGNORE); |
| 328 | tlan_reset_adapter(dev); |
| 329 | netif_wake_queue(dev); |
| 330 | } |
| 331 | |
| 332 | static void tlan_stop(struct net_device *dev) |
| 333 | { |
| 334 | struct tlan_priv *priv = netdev_priv(dev); |
| 335 | |
| 336 | tlan_read_and_clear_stats(dev, TLAN_RECORD); |
| 337 | outl(TLAN_HC_AD_RST, dev->base_addr + TLAN_HOST_CMD); |
| 338 | /* Reset and power down phy */ |
| 339 | tlan_reset_adapter(dev); |
| 340 | if (priv->timer.function != NULL) { |
| 341 | del_timer_sync(&priv->timer); |
| 342 | priv->timer.function = NULL; |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | #ifdef CONFIG_PM |
| 347 | |
| 348 | static int tlan_suspend(struct pci_dev *pdev, pm_message_t state) |
| 349 | { |
| 350 | struct net_device *dev = pci_get_drvdata(pdev); |
| 351 | |
| 352 | if (netif_running(dev)) |
| 353 | tlan_stop(dev); |
| 354 | |
| 355 | netif_device_detach(dev); |
| 356 | pci_save_state(pdev); |
| 357 | pci_disable_device(pdev); |
| 358 | pci_wake_from_d3(pdev, false); |
| 359 | pci_set_power_state(pdev, PCI_D3hot); |
| 360 | |
| 361 | return 0; |
| 362 | } |
| 363 | |
| 364 | static int tlan_resume(struct pci_dev *pdev) |
| 365 | { |
| 366 | struct net_device *dev = pci_get_drvdata(pdev); |
| 367 | |
| 368 | pci_set_power_state(pdev, PCI_D0); |
| 369 | pci_restore_state(pdev); |
| 370 | pci_enable_wake(pdev, 0, 0); |
| 371 | netif_device_attach(dev); |
| 372 | |
| 373 | if (netif_running(dev)) |
| 374 | tlan_start(dev); |
| 375 | |
| 376 | return 0; |
| 377 | } |
| 378 | |
| 379 | #else /* CONFIG_PM */ |
| 380 | |
| 381 | #define tlan_suspend NULL |
| 382 | #define tlan_resume NULL |
| 383 | |
| 384 | #endif /* CONFIG_PM */ |
| 385 | |
| 386 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | static struct pci_driver tlan_driver = { |
| 388 | .name = "tlan", |
| 389 | .id_table = tlan_pci_tbl, |
| 390 | .probe = tlan_init_one, |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 391 | .remove = __devexit_p(tlan_remove_one), |
Sakari Ailus | fa6d5d4 | 2011-01-21 10:59:31 +0000 | [diff] [blame] | 392 | .suspend = tlan_suspend, |
| 393 | .resume = tlan_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | }; |
| 395 | |
| 396 | static int __init tlan_probe(void) |
| 397 | { |
Leonardo Potenza | 6c04a51 | 2008-02-04 23:47:16 -0800 | [diff] [blame] | 398 | int rc = -ENODEV; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 399 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | printk(KERN_INFO "%s", tlan_banner); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 401 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | TLAN_DBG(TLAN_DEBUG_PROBE, "Starting PCI Probe....\n"); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | /* Use new style PCI probing. Now the kernel will |
| 405 | do most of this for us */ |
Leonardo Potenza | 6c04a51 | 2008-02-04 23:47:16 -0800 | [diff] [blame] | 406 | rc = pci_register_driver(&tlan_driver); |
| 407 | |
| 408 | if (rc != 0) { |
| 409 | printk(KERN_ERR "TLAN: Could not register pci driver.\n"); |
| 410 | goto err_out_pci_free; |
| 411 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
| 413 | TLAN_DBG(TLAN_DEBUG_PROBE, "Starting EISA Probe....\n"); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 414 | tlan_eisa_probe(); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 415 | |
| 416 | printk(KERN_INFO "TLAN: %d device%s installed, PCI: %d EISA: %d\n", |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 417 | tlan_devices_installed, tlan_devices_installed == 1 ? "" : "s", |
| 418 | tlan_have_pci, tlan_have_eisa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 420 | if (tlan_devices_installed == 0) { |
Leonardo Potenza | 6c04a51 | 2008-02-04 23:47:16 -0800 | [diff] [blame] | 421 | rc = -ENODEV; |
| 422 | goto err_out_pci_unreg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
| 424 | return 0; |
Leonardo Potenza | 6c04a51 | 2008-02-04 23:47:16 -0800 | [diff] [blame] | 425 | |
| 426 | err_out_pci_unreg: |
| 427 | pci_unregister_driver(&tlan_driver); |
| 428 | err_out_pci_free: |
Leonardo Potenza | 6c04a51 | 2008-02-04 23:47:16 -0800 | [diff] [blame] | 429 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 431 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 433 | static int __devinit tlan_init_one(struct pci_dev *pdev, |
| 434 | const struct pci_device_id *ent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 436 | return tlan_probe1(pdev, -1, -1, 0, ent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | |
| 440 | /* |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 441 | *************************************************************** |
| 442 | * tlan_probe1 |
| 443 | * |
| 444 | * Returns: |
| 445 | * 0 on success, error code on error |
| 446 | * Parms: |
| 447 | * none |
| 448 | * |
| 449 | * The name is lower case to fit in with all the rest of |
| 450 | * the netcard_probe names. This function looks for |
| 451 | * another TLan based adapter, setting it up with the |
| 452 | * allocated device struct if one is found. |
| 453 | * tlan_probe has been ported to the new net API and |
| 454 | * now allocates its own device structure. This function |
| 455 | * is also used by modules. |
| 456 | * |
| 457 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 459 | static int __devinit tlan_probe1(struct pci_dev *pdev, |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 460 | long ioaddr, int irq, int rev, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 461 | const struct pci_device_id *ent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | { |
| 463 | |
| 464 | struct net_device *dev; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 465 | struct tlan_priv *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | u16 device_id; |
| 467 | int reg, rc = -ENODEV; |
| 468 | |
Adrian Bunk | ad9f671 | 2006-02-05 00:37:47 +0100 | [diff] [blame] | 469 | #ifdef CONFIG_PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | if (pdev) { |
| 471 | rc = pci_enable_device(pdev); |
| 472 | if (rc) |
| 473 | return rc; |
| 474 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 475 | rc = pci_request_regions(pdev, tlan_signature); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | if (rc) { |
| 477 | printk(KERN_ERR "TLAN: Could not reserve IO regions\n"); |
| 478 | goto err_out; |
| 479 | } |
| 480 | } |
Adrian Bunk | ad9f671 | 2006-02-05 00:37:47 +0100 | [diff] [blame] | 481 | #endif /* CONFIG_PCI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 483 | dev = alloc_etherdev(sizeof(struct tlan_priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | if (dev == NULL) { |
| 485 | printk(KERN_ERR "TLAN: Could not allocate memory for device.\n"); |
| 486 | rc = -ENOMEM; |
| 487 | goto err_out_regions; |
| 488 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | SET_NETDEV_DEV(dev, &pdev->dev); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | priv = netdev_priv(dev); |
| 492 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 493 | priv->pci_dev = pdev; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 494 | priv->dev = dev; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | /* Is this a PCI device? */ |
| 497 | if (pdev) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 498 | u32 pci_io_base = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | |
| 500 | priv->adapter = &board_info[ent->driver_data]; |
| 501 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 502 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | if (rc) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 504 | printk(KERN_ERR |
| 505 | "TLAN: No suitable PCI mapping available.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | goto err_out_free_dev; |
| 507 | } |
| 508 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 509 | for (reg = 0; reg <= 5; reg++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | if (pci_resource_flags(pdev, reg) & IORESOURCE_IO) { |
| 511 | pci_io_base = pci_resource_start(pdev, reg); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 512 | TLAN_DBG(TLAN_DEBUG_GNRL, |
| 513 | "IO mapping is available at %x.\n", |
| 514 | pci_io_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | break; |
| 516 | } |
| 517 | } |
| 518 | if (!pci_io_base) { |
| 519 | printk(KERN_ERR "TLAN: No IO mappings available\n"); |
| 520 | rc = -EIO; |
| 521 | goto err_out_free_dev; |
| 522 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | dev->base_addr = pci_io_base; |
| 525 | dev->irq = pdev->irq; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 526 | priv->adapter_rev = pdev->revision; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | pci_set_master(pdev); |
| 528 | pci_set_drvdata(pdev, dev); |
| 529 | |
| 530 | } else { /* EISA card */ |
| 531 | /* This is a hack. We need to know which board structure |
| 532 | * is suited for this adapter */ |
| 533 | device_id = inw(ioaddr + EISA_ID2); |
| 534 | priv->is_eisa = 1; |
| 535 | if (device_id == 0x20F1) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 536 | priv->adapter = &board_info[13]; /* NetFlex-3/E */ |
| 537 | priv->adapter_rev = 23; /* TLAN 2.3 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } else { |
| 539 | priv->adapter = &board_info[14]; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 540 | priv->adapter_rev = 10; /* TLAN 1.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | dev->base_addr = ioaddr; |
| 543 | dev->irq = irq; |
| 544 | } |
| 545 | |
| 546 | /* Kernel parameters */ |
| 547 | if (dev->mem_start) { |
| 548 | priv->aui = dev->mem_start & 0x01; |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 549 | priv->duplex = ((dev->mem_start & 0x06) == 0x06) ? 0 |
| 550 | : (dev->mem_start & 0x06) >> 1; |
| 551 | priv->speed = ((dev->mem_start & 0x18) == 0x18) ? 0 |
| 552 | : (dev->mem_start & 0x18) >> 3; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 553 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 554 | if (priv->speed == 0x1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | priv->speed = TLAN_SPEED_10; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 556 | else if (priv->speed == 0x2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | priv->speed = TLAN_SPEED_100; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | debug = priv->debug = dev->mem_end; |
| 560 | } else { |
| 561 | priv->aui = aui[boards_found]; |
| 562 | priv->speed = speed[boards_found]; |
| 563 | priv->duplex = duplex[boards_found]; |
| 564 | priv->debug = debug; |
| 565 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | /* This will be used when we get an adapter error from |
| 568 | * within our irq handler */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 569 | INIT_WORK(&priv->tlan_tqueue, tlan_tx_timeout_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
| 571 | spin_lock_init(&priv->lock); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 572 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 573 | rc = tlan_init(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | if (rc) { |
| 575 | printk(KERN_ERR "TLAN: Could not set up device.\n"); |
| 576 | goto err_out_free_dev; |
| 577 | } |
| 578 | |
| 579 | rc = register_netdev(dev); |
| 580 | if (rc) { |
| 581 | printk(KERN_ERR "TLAN: Could not register device.\n"); |
| 582 | goto err_out_uninit; |
| 583 | } |
| 584 | |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 585 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 586 | tlan_devices_installed++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | boards_found++; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 588 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | /* pdev is NULL if this is an EISA device */ |
| 590 | if (pdev) |
| 591 | tlan_have_pci++; |
| 592 | else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 593 | priv->next_device = tlan_eisa_devices; |
| 594 | tlan_eisa_devices = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | tlan_have_eisa++; |
| 596 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | printk(KERN_INFO "TLAN: %s irq=%2d, io=%04x, %s, Rev. %d\n", |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 599 | dev->name, |
| 600 | (int) dev->irq, |
| 601 | (int) dev->base_addr, |
| 602 | priv->adapter->device_label, |
| 603 | priv->adapter_rev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | return 0; |
| 605 | |
| 606 | err_out_uninit: |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 607 | pci_free_consistent(priv->pci_dev, priv->dma_size, priv->dma_storage, |
| 608 | priv->dma_storage_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | err_out_free_dev: |
| 610 | free_netdev(dev); |
| 611 | err_out_regions: |
| 612 | #ifdef CONFIG_PCI |
| 613 | if (pdev) |
| 614 | pci_release_regions(pdev); |
| 615 | #endif |
| 616 | err_out: |
| 617 | if (pdev) |
| 618 | pci_disable_device(pdev); |
| 619 | return rc; |
| 620 | } |
| 621 | |
| 622 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 623 | static void tlan_eisa_cleanup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | { |
| 625 | struct net_device *dev; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 626 | struct tlan_priv *priv; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 627 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 628 | while (tlan_have_eisa) { |
| 629 | dev = tlan_eisa_devices; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | priv = netdev_priv(dev); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 631 | if (priv->dma_storage) { |
| 632 | pci_free_consistent(priv->pci_dev, priv->dma_size, |
| 633 | priv->dma_storage, |
| 634 | priv->dma_storage_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 636 | release_region(dev->base_addr, 0x10); |
| 637 | unregister_netdev(dev); |
| 638 | tlan_eisa_devices = priv->next_device; |
| 639 | free_netdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | tlan_have_eisa--; |
| 641 | } |
| 642 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 643 | |
| 644 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | static void __exit tlan_exit(void) |
| 646 | { |
| 647 | pci_unregister_driver(&tlan_driver); |
| 648 | |
| 649 | if (tlan_have_eisa) |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 650 | tlan_eisa_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | |
| 655 | /* Module loading/unloading */ |
| 656 | module_init(tlan_probe); |
| 657 | module_exit(tlan_exit); |
| 658 | |
| 659 | |
| 660 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 661 | /************************************************************** |
| 662 | * tlan_eisa_probe |
| 663 | * |
| 664 | * Returns: 0 on success, 1 otherwise |
| 665 | * |
| 666 | * Parms: None |
| 667 | * |
| 668 | * |
| 669 | * This functions probes for EISA devices and calls |
| 670 | * TLan_probe1 when one is found. |
| 671 | * |
| 672 | *************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 674 | static void __init tlan_eisa_probe(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 676 | long ioaddr; |
| 677 | int rc = -ENODEV; |
| 678 | int irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | u16 device_id; |
| 680 | |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 681 | if (!EISA_bus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | TLAN_DBG(TLAN_DEBUG_PROBE, "No EISA bus present\n"); |
| 683 | return; |
| 684 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 685 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | /* Loop through all slots of the EISA bus */ |
| 687 | for (ioaddr = 0x1000; ioaddr < 0x9000; ioaddr += 0x1000) { |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 688 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 689 | TLAN_DBG(TLAN_DEBUG_PROBE, "EISA_ID 0x%4x: 0x%4x\n", |
| 690 | (int) ioaddr + 0xc80, inw(ioaddr + EISA_ID)); |
| 691 | TLAN_DBG(TLAN_DEBUG_PROBE, "EISA_ID 0x%4x: 0x%4x\n", |
| 692 | (int) ioaddr + 0xc82, inw(ioaddr + EISA_ID2)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | |
| 694 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 695 | TLAN_DBG(TLAN_DEBUG_PROBE, |
| 696 | "Probing for EISA adapter at IO: 0x%4x : ", |
| 697 | (int) ioaddr); |
| 698 | if (request_region(ioaddr, 0x10, tlan_signature) == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | goto out; |
| 700 | |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 701 | if (inw(ioaddr + EISA_ID) != 0x110E) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | release_region(ioaddr, 0x10); |
| 703 | goto out; |
| 704 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | device_id = inw(ioaddr + EISA_ID2); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 707 | if (device_id != 0x20F1 && device_id != 0x40F1) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 708 | release_region(ioaddr, 0x10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | goto out; |
| 710 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 711 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 712 | /* check if adapter is enabled */ |
| 713 | if (inb(ioaddr + EISA_CR) != 0x1) { |
| 714 | release_region(ioaddr, 0x10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | goto out2; |
| 716 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 717 | |
| 718 | if (debug == 0x10) |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 719 | printk(KERN_INFO "Found one\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | |
| 721 | |
| 722 | /* Get irq from board */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 723 | switch (inb(ioaddr + 0xcc0)) { |
| 724 | case(0x10): |
| 725 | irq = 5; |
| 726 | break; |
| 727 | case(0x20): |
| 728 | irq = 9; |
| 729 | break; |
| 730 | case(0x40): |
| 731 | irq = 10; |
| 732 | break; |
| 733 | case(0x80): |
| 734 | irq = 11; |
| 735 | break; |
| 736 | default: |
| 737 | goto out; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | /* Setup the newly found eisa adapter */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 742 | rc = tlan_probe1(NULL, ioaddr, irq, |
| 743 | 12, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | continue; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 745 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 746 | out: |
| 747 | if (debug == 0x10) |
| 748 | printk(KERN_INFO "None found\n"); |
| 749 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 751 | out2: |
| 752 | if (debug == 0x10) |
| 753 | printk(KERN_INFO "Card found but it is not enabled, skipping\n"); |
| 754 | continue; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
| 757 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 758 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
| 760 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 761 | static void tlan_poll(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | { |
| 763 | disable_irq(dev->irq); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 764 | tlan_handle_interrupt(dev->irq, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | enable_irq(dev->irq); |
| 766 | } |
| 767 | #endif |
| 768 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 769 | static const struct net_device_ops tlan_netdev_ops = { |
| 770 | .ndo_open = tlan_open, |
| 771 | .ndo_stop = tlan_close, |
| 772 | .ndo_start_xmit = tlan_start_tx, |
| 773 | .ndo_tx_timeout = tlan_tx_timeout, |
| 774 | .ndo_get_stats = tlan_get_stats, |
| 775 | .ndo_set_multicast_list = tlan_set_multicast_list, |
| 776 | .ndo_do_ioctl = tlan_ioctl, |
Stephen Hemminger | 391c5e6 | 2009-01-07 17:27:15 -0800 | [diff] [blame] | 777 | .ndo_change_mtu = eth_change_mtu, |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 778 | .ndo_set_mac_address = eth_mac_addr, |
Stephen Hemminger | 391c5e6 | 2009-01-07 17:27:15 -0800 | [diff] [blame] | 779 | .ndo_validate_addr = eth_validate_addr, |
| 780 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 781 | .ndo_poll_controller = tlan_poll, |
Stephen Hemminger | 391c5e6 | 2009-01-07 17:27:15 -0800 | [diff] [blame] | 782 | #endif |
| 783 | }; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | |
| 786 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 787 | /*************************************************************** |
| 788 | * tlan_init |
| 789 | * |
| 790 | * Returns: |
| 791 | * 0 on success, error code otherwise. |
| 792 | * Parms: |
| 793 | * dev The structure of the device to be |
| 794 | * init'ed. |
| 795 | * |
| 796 | * This function completes the initialization of the |
| 797 | * device structure and driver. It reserves the IO |
| 798 | * addresses, allocates memory for the lists and bounce |
| 799 | * buffers, retrieves the MAC address from the eeprom |
| 800 | * and assignes the device's methods. |
| 801 | * |
| 802 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 804 | static int tlan_init(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | { |
| 806 | int dma_size; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 807 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | int i; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 809 | struct tlan_priv *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | |
| 811 | priv = netdev_priv(dev); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 812 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 813 | dma_size = (TLAN_NUM_RX_LISTS + TLAN_NUM_TX_LISTS) |
| 814 | * (sizeof(struct tlan_list)); |
| 815 | priv->dma_storage = pci_alloc_consistent(priv->pci_dev, |
| 816 | dma_size, |
| 817 | &priv->dma_storage_dma); |
| 818 | priv->dma_size = dma_size; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 819 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 820 | if (priv->dma_storage == NULL) { |
| 821 | printk(KERN_ERR |
| 822 | "TLAN: Could not allocate lists and buffers for %s.\n", |
| 823 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | return -ENOMEM; |
| 825 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 826 | memset(priv->dma_storage, 0, dma_size); |
| 827 | priv->rx_list = (struct tlan_list *) |
| 828 | ALIGN((unsigned long)priv->dma_storage, 8); |
| 829 | priv->rx_list_dma = ALIGN(priv->dma_storage_dma, 8); |
| 830 | priv->tx_list = priv->rx_list + TLAN_NUM_RX_LISTS; |
| 831 | priv->tx_list_dma = |
| 832 | priv->rx_list_dma + sizeof(struct tlan_list)*TLAN_NUM_RX_LISTS; |
Stephen Hemminger | 93e1684 | 2008-05-30 09:49:55 -0700 | [diff] [blame] | 833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | err = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 835 | for (i = 0; i < 6 ; i++) |
| 836 | err |= tlan_ee_read_byte(dev, |
| 837 | (u8) priv->adapter->addr_ofs + i, |
| 838 | (u8 *) &dev->dev_addr[i]); |
| 839 | if (err) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | printk(KERN_ERR "TLAN: %s: Error reading MAC from eeprom: %d\n", |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 841 | dev->name, |
| 842 | err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | } |
| 844 | dev->addr_len = 6; |
| 845 | |
| 846 | netif_carrier_off(dev); |
| 847 | |
| 848 | /* Device methods */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 849 | dev->netdev_ops = &tlan_netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | dev->watchdog_timeo = TX_TIMEOUT; |
| 851 | |
| 852 | return 0; |
| 853 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 854 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | |
| 856 | |
| 857 | |
| 858 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 859 | /*************************************************************** |
| 860 | * tlan_open |
| 861 | * |
| 862 | * Returns: |
| 863 | * 0 on success, error code otherwise. |
| 864 | * Parms: |
| 865 | * dev Structure of device to be opened. |
| 866 | * |
| 867 | * This routine puts the driver and TLAN adapter in a |
| 868 | * state where it is ready to send and receive packets. |
| 869 | * It allocates the IRQ, resets and brings the adapter |
| 870 | * out of reset, and allows interrupts. It also delays |
| 871 | * the startup for autonegotiation or sends a Rx GO |
| 872 | * command to the adapter, as appropriate. |
| 873 | * |
| 874 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 876 | static int tlan_open(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 878 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | int err; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 880 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 881 | priv->tlan_rev = tlan_dio_read8(dev->base_addr, TLAN_DEF_REVISION); |
| 882 | err = request_irq(dev->irq, tlan_handle_interrupt, IRQF_SHARED, |
| 883 | dev->name, dev); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 884 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 885 | if (err) { |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 886 | pr_err("TLAN: Cannot open %s because IRQ %d is already in use.\n", |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 887 | dev->name, dev->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | return err; |
| 889 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | init_timer(&priv->timer); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 892 | |
Sakari Ailus | fa6d5d4 | 2011-01-21 10:59:31 +0000 | [diff] [blame] | 893 | tlan_start(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 895 | TLAN_DBG(TLAN_DEBUG_GNRL, "%s: Opened. TLAN Chip Rev: %x\n", |
| 896 | dev->name, priv->tlan_rev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | |
| 898 | return 0; |
| 899 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 900 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | |
| 902 | |
| 903 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 904 | /************************************************************** |
| 905 | * tlan_ioctl |
| 906 | * |
| 907 | * Returns: |
| 908 | * 0 on success, error code otherwise |
| 909 | * Params: |
| 910 | * dev structure of device to receive ioctl. |
| 911 | * |
| 912 | * rq ifreq structure to hold userspace data. |
| 913 | * |
| 914 | * cmd ioctl command. |
| 915 | * |
| 916 | * |
| 917 | *************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 919 | static int tlan_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 921 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | struct mii_ioctl_data *data = if_mii(rq); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 923 | u32 phy = priv->phy[priv->phy_num]; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 924 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 925 | if (!priv->phy_online) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | return -EAGAIN; |
| 927 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 928 | switch (cmd) { |
| 929 | case SIOCGMIIPHY: /* get address of MII PHY in use. */ |
| 930 | data->phy_id = phy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
| 932 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 933 | case SIOCGMIIREG: /* read MII PHY register. */ |
| 934 | tlan_mii_read_reg(dev, data->phy_id & 0x1f, |
| 935 | data->reg_num & 0x1f, &data->val_out); |
| 936 | return 0; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 939 | case SIOCSMIIREG: /* write MII PHY register. */ |
| 940 | tlan_mii_write_reg(dev, data->phy_id & 0x1f, |
| 941 | data->reg_num & 0x1f, data->val_in); |
| 942 | return 0; |
| 943 | default: |
| 944 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 946 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
| 948 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 949 | /*************************************************************** |
| 950 | * tlan_tx_timeout |
| 951 | * |
| 952 | * Returns: nothing |
| 953 | * |
| 954 | * Params: |
| 955 | * dev structure of device which timed out |
| 956 | * during transmit. |
| 957 | * |
| 958 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 960 | static void tlan_tx_timeout(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | { |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 962 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 963 | TLAN_DBG(TLAN_DEBUG_GNRL, "%s: Transmit timed out.\n", dev->name); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 964 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | /* Ok so we timed out, lets see what we can do about it...*/ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 966 | tlan_free_lists(dev); |
| 967 | tlan_reset_lists(dev); |
| 968 | tlan_read_and_clear_stats(dev, TLAN_IGNORE); |
| 969 | tlan_reset_adapter(dev); |
Eric Dumazet | 1ae5dc3 | 2010-05-10 05:01:31 -0700 | [diff] [blame] | 970 | dev->trans_start = jiffies; /* prevent tx timeout */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 971 | netif_wake_queue(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
| 973 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 974 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 976 | /*************************************************************** |
| 977 | * tlan_tx_timeout_work |
| 978 | * |
| 979 | * Returns: nothing |
| 980 | * |
| 981 | * Params: |
| 982 | * work work item of device which timed out |
| 983 | * |
| 984 | **************************************************************/ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 985 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 986 | static void tlan_tx_timeout_work(struct work_struct *work) |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 987 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 988 | struct tlan_priv *priv = |
| 989 | container_of(work, struct tlan_priv, tlan_tqueue); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 990 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 991 | tlan_tx_timeout(priv->dev); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 996 | /*************************************************************** |
| 997 | * tlan_start_tx |
| 998 | * |
| 999 | * Returns: |
| 1000 | * 0 on success, non-zero on failure. |
| 1001 | * Parms: |
| 1002 | * skb A pointer to the sk_buff containing the |
| 1003 | * frame to be sent. |
| 1004 | * dev The device to send the data on. |
| 1005 | * |
| 1006 | * This function adds a frame to the Tx list to be sent |
| 1007 | * ASAP. First it verifies that the adapter is ready and |
| 1008 | * there is room in the queue. Then it sets up the next |
| 1009 | * available list, copies the frame to the corresponding |
| 1010 | * buffer. If the adapter Tx channel is idle, it gives |
| 1011 | * the adapter a Tx Go command on the list, otherwise it |
| 1012 | * sets the forward address of the previous list to point |
| 1013 | * to this one. Then it frees the sk_buff. |
| 1014 | * |
| 1015 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1017 | static netdev_tx_t tlan_start_tx(struct sk_buff *skb, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1019 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | dma_addr_t tail_list_phys; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1021 | struct tlan_list *tail_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | unsigned long flags; |
Sakari Ailus | 8953f12 | 2008-12-16 01:44:05 -0800 | [diff] [blame] | 1023 | unsigned int txlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1025 | if (!priv->phy_online) { |
| 1026 | TLAN_DBG(TLAN_DEBUG_TX, "TRANSMIT: %s PHY is not ready\n", |
| 1027 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | dev_kfree_skb_any(skb); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 1029 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | } |
| 1031 | |
Stephen Hemminger | 41873e9 | 2008-05-30 09:49:52 -0700 | [diff] [blame] | 1032 | if (skb_padto(skb, TLAN_MIN_FRAME_SIZE)) |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 1033 | return NETDEV_TX_OK; |
Sakari Ailus | 8953f12 | 2008-12-16 01:44:05 -0800 | [diff] [blame] | 1034 | txlen = max(skb->len, (unsigned int)TLAN_MIN_FRAME_SIZE); |
Stephen Hemminger | 41873e9 | 2008-05-30 09:49:52 -0700 | [diff] [blame] | 1035 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1036 | tail_list = priv->tx_list + priv->tx_tail; |
| 1037 | tail_list_phys = |
| 1038 | priv->tx_list_dma + sizeof(struct tlan_list)*priv->tx_tail; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1039 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1040 | if (tail_list->c_stat != TLAN_CSTAT_UNUSED) { |
| 1041 | TLAN_DBG(TLAN_DEBUG_TX, |
| 1042 | "TRANSMIT: %s is busy (Head=%d Tail=%d)\n", |
| 1043 | dev->name, priv->tx_head, priv->tx_tail); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | netif_stop_queue(dev); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1045 | priv->tx_busy_count++; |
Patrick McHardy | 5b54814 | 2009-06-12 06:22:29 +0000 | [diff] [blame] | 1046 | return NETDEV_TX_BUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | tail_list->forward = 0; |
| 1050 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1051 | tail_list->buffer[0].address = pci_map_single(priv->pci_dev, |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1052 | skb->data, txlen, |
| 1053 | PCI_DMA_TODEVICE); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1054 | tlan_store_skb(tail_list, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1056 | tail_list->frame_size = (u16) txlen; |
Sakari Ailus | 8953f12 | 2008-12-16 01:44:05 -0800 | [diff] [blame] | 1057 | tail_list->buffer[0].count = TLAN_LAST_BUFFER | (u32) txlen; |
Stephen Hemminger | 41873e9 | 2008-05-30 09:49:52 -0700 | [diff] [blame] | 1058 | tail_list->buffer[1].count = 0; |
| 1059 | tail_list->buffer[1].address = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | |
| 1061 | spin_lock_irqsave(&priv->lock, flags); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1062 | tail_list->c_stat = TLAN_CSTAT_READY; |
| 1063 | if (!priv->tx_in_progress) { |
| 1064 | priv->tx_in_progress = 1; |
| 1065 | TLAN_DBG(TLAN_DEBUG_TX, |
| 1066 | "TRANSMIT: Starting TX on buffer %d\n", |
| 1067 | priv->tx_tail); |
| 1068 | outl(tail_list_phys, dev->base_addr + TLAN_CH_PARM); |
| 1069 | outl(TLAN_HC_GO, dev->base_addr + TLAN_HOST_CMD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1071 | TLAN_DBG(TLAN_DEBUG_TX, |
| 1072 | "TRANSMIT: Adding buffer %d to TX channel\n", |
| 1073 | priv->tx_tail); |
| 1074 | if (priv->tx_tail == 0) { |
| 1075 | (priv->tx_list + (TLAN_NUM_TX_LISTS - 1))->forward |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 1076 | = tail_list_phys; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1078 | (priv->tx_list + (priv->tx_tail - 1))->forward |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 1079 | = tail_list_phys; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | } |
| 1081 | } |
| 1082 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1083 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1084 | CIRC_INC(priv->tx_tail, TLAN_NUM_TX_LISTS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 1086 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1088 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | |
| 1090 | |
| 1091 | |
| 1092 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1093 | /*************************************************************** |
| 1094 | * tlan_handle_interrupt |
| 1095 | * |
| 1096 | * Returns: |
| 1097 | * Nothing |
| 1098 | * Parms: |
| 1099 | * irq The line on which the interrupt |
| 1100 | * occurred. |
| 1101 | * dev_id A pointer to the device assigned to |
| 1102 | * this irq line. |
| 1103 | * |
| 1104 | * This function handles an interrupt generated by its |
| 1105 | * assigned TLAN adapter. The function deactivates |
| 1106 | * interrupts on its adapter, records the type of |
| 1107 | * interrupt, executes the appropriate subhandler, and |
| 1108 | * acknowdges the interrupt to the adapter (thus |
| 1109 | * re-enabling adapter interrupts. |
| 1110 | * |
| 1111 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1113 | static irqreturn_t tlan_handle_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | { |
Stephen Hemminger | a3ccc78 | 2008-05-30 09:49:57 -0700 | [diff] [blame] | 1115 | struct net_device *dev = dev_id; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1116 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | u16 host_int; |
Stephen Hemminger | a3ccc78 | 2008-05-30 09:49:57 -0700 | [diff] [blame] | 1118 | u16 type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | |
| 1120 | spin_lock(&priv->lock); |
| 1121 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1122 | host_int = inw(dev->base_addr + TLAN_HOST_INT); |
| 1123 | type = (host_int & TLAN_HI_IT_MASK) >> 2; |
| 1124 | if (type) { |
Stephen Hemminger | a3ccc78 | 2008-05-30 09:49:57 -0700 | [diff] [blame] | 1125 | u32 ack; |
| 1126 | u32 host_cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1128 | outw(host_int, dev->base_addr + TLAN_HOST_INT); |
| 1129 | ack = tlan_int_vector[type](dev, host_int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1131 | if (ack) { |
| 1132 | host_cmd = TLAN_HC_ACK | ack | (type << 18); |
| 1133 | outl(host_cmd, dev->base_addr + TLAN_HOST_CMD); |
Stephen Hemminger | a3ccc78 | 2008-05-30 09:49:57 -0700 | [diff] [blame] | 1134 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | } |
| 1136 | |
| 1137 | spin_unlock(&priv->lock); |
| 1138 | |
Stephen Hemminger | a3ccc78 | 2008-05-30 09:49:57 -0700 | [diff] [blame] | 1139 | return IRQ_RETVAL(type); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1140 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | |
| 1142 | |
| 1143 | |
| 1144 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1145 | /*************************************************************** |
| 1146 | * tlan_close |
| 1147 | * |
| 1148 | * Returns: |
| 1149 | * An error code. |
| 1150 | * Parms: |
| 1151 | * dev The device structure of the device to |
| 1152 | * close. |
| 1153 | * |
| 1154 | * This function shuts down the adapter. It records any |
| 1155 | * stats, puts the adapter into reset state, deactivates |
| 1156 | * its time as needed, and frees the irq it is using. |
| 1157 | * |
| 1158 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1160 | static int tlan_close(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1162 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | priv->neg_be_verbose = 0; |
Sakari Ailus | fa6d5d4 | 2011-01-21 10:59:31 +0000 | [diff] [blame] | 1165 | tlan_stop(dev); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1166 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1167 | free_irq(dev->irq, dev); |
| 1168 | tlan_free_lists(dev); |
| 1169 | TLAN_DBG(TLAN_DEBUG_GNRL, "Device %s closed.\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | |
| 1171 | return 0; |
| 1172 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1173 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | |
| 1175 | |
| 1176 | |
| 1177 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1178 | /*************************************************************** |
| 1179 | * tlan_get_stats |
| 1180 | * |
| 1181 | * Returns: |
| 1182 | * A pointer to the device's statistics structure. |
| 1183 | * Parms: |
| 1184 | * dev The device structure to return the |
| 1185 | * stats for. |
| 1186 | * |
| 1187 | * This function updates the devices statistics by reading |
| 1188 | * the TLAN chip's onboard registers. Then it returns the |
| 1189 | * address of the statistics structure. |
| 1190 | * |
| 1191 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1193 | static struct net_device_stats *tlan_get_stats(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1195 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | int i; |
| 1197 | |
| 1198 | /* Should only read stats if open ? */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1199 | tlan_read_and_clear_stats(dev, TLAN_RECORD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1201 | TLAN_DBG(TLAN_DEBUG_RX, "RECEIVE: %s EOC count = %d\n", dev->name, |
| 1202 | priv->rx_eoc_count); |
| 1203 | TLAN_DBG(TLAN_DEBUG_TX, "TRANSMIT: %s Busy count = %d\n", dev->name, |
| 1204 | priv->tx_busy_count); |
| 1205 | if (debug & TLAN_DEBUG_GNRL) { |
| 1206 | tlan_print_dio(dev->base_addr); |
| 1207 | tlan_phy_print(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1209 | if (debug & TLAN_DEBUG_LIST) { |
| 1210 | for (i = 0; i < TLAN_NUM_RX_LISTS; i++) |
| 1211 | tlan_print_list(priv->rx_list + i, "RX", i); |
| 1212 | for (i = 0; i < TLAN_NUM_TX_LISTS; i++) |
| 1213 | tlan_print_list(priv->tx_list + i, "TX", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1215 | |
Stephen Hemminger | f8f3154 | 2008-05-30 09:49:53 -0700 | [diff] [blame] | 1216 | return &dev->stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1218 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | |
| 1220 | |
| 1221 | |
| 1222 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1223 | /*************************************************************** |
| 1224 | * tlan_set_multicast_list |
| 1225 | * |
| 1226 | * Returns: |
| 1227 | * Nothing |
| 1228 | * Parms: |
| 1229 | * dev The device structure to set the |
| 1230 | * multicast list for. |
| 1231 | * |
| 1232 | * This function sets the TLAN adaptor to various receive |
| 1233 | * modes. If the IFF_PROMISC flag is set, promiscuous |
| 1234 | * mode is acitviated. Otherwise, promiscuous mode is |
| 1235 | * turned off. If the IFF_ALLMULTI flag is set, then |
| 1236 | * the hash table is set to receive all group addresses. |
| 1237 | * Otherwise, the first three multicast addresses are |
| 1238 | * stored in AREG_1-3, and the rest are selected via the |
| 1239 | * hash table, as necessary. |
| 1240 | * |
| 1241 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1243 | static void tlan_set_multicast_list(struct net_device *dev) |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1244 | { |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1245 | struct netdev_hw_addr *ha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | u32 hash1 = 0; |
| 1247 | u32 hash2 = 0; |
| 1248 | int i; |
| 1249 | u32 offset; |
| 1250 | u8 tmp; |
| 1251 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1252 | if (dev->flags & IFF_PROMISC) { |
| 1253 | tmp = tlan_dio_read8(dev->base_addr, TLAN_NET_CMD); |
| 1254 | tlan_dio_write8(dev->base_addr, |
| 1255 | TLAN_NET_CMD, tmp | TLAN_NET_CMD_CAF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1257 | tmp = tlan_dio_read8(dev->base_addr, TLAN_NET_CMD); |
| 1258 | tlan_dio_write8(dev->base_addr, |
| 1259 | TLAN_NET_CMD, tmp & ~TLAN_NET_CMD_CAF); |
| 1260 | if (dev->flags & IFF_ALLMULTI) { |
| 1261 | for (i = 0; i < 3; i++) |
| 1262 | tlan_set_mac(dev, i + 1, NULL); |
| 1263 | tlan_dio_write32(dev->base_addr, TLAN_HASH_1, |
| 1264 | 0xffffffff); |
| 1265 | tlan_dio_write32(dev->base_addr, TLAN_HASH_2, |
| 1266 | 0xffffffff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | } else { |
Jiri Pirko | 567ec87 | 2010-02-23 23:17:07 +0000 | [diff] [blame] | 1268 | i = 0; |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1269 | netdev_for_each_mc_addr(ha, dev) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1270 | if (i < 3) { |
| 1271 | tlan_set_mac(dev, i + 1, |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1272 | (char *) &ha->addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1274 | offset = |
| 1275 | tlan_hash_func((u8 *)&ha->addr); |
| 1276 | if (offset < 32) |
| 1277 | hash1 |= (1 << offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | else |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1279 | hash2 |= (1 << (offset - 32)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | } |
Jiri Pirko | 567ec87 | 2010-02-23 23:17:07 +0000 | [diff] [blame] | 1281 | i++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1283 | for ( ; i < 3; i++) |
| 1284 | tlan_set_mac(dev, i + 1, NULL); |
| 1285 | tlan_dio_write32(dev->base_addr, TLAN_HASH_1, hash1); |
| 1286 | tlan_dio_write32(dev->base_addr, TLAN_HASH_2, hash2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | } |
| 1288 | } |
| 1289 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1290 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | |
| 1292 | |
| 1293 | |
| 1294 | /***************************************************************************** |
| 1295 | ****************************************************************************** |
| 1296 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1297 | ThunderLAN driver interrupt vectors and table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1299 | please see chap. 4, "Interrupt Handling" of the "ThunderLAN |
| 1300 | Programmer's Guide" for more informations on handling interrupts |
| 1301 | generated by TLAN based adapters. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | |
| 1303 | ****************************************************************************** |
| 1304 | *****************************************************************************/ |
| 1305 | |
| 1306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
| 1308 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1309 | /*************************************************************** |
| 1310 | * tlan_handle_tx_eof |
| 1311 | * |
| 1312 | * Returns: |
| 1313 | * 1 |
| 1314 | * Parms: |
| 1315 | * dev Device assigned the IRQ that was |
| 1316 | * raised. |
| 1317 | * host_int The contents of the HOST_INT |
| 1318 | * port. |
| 1319 | * |
| 1320 | * This function handles Tx EOF interrupts which are raised |
| 1321 | * by the adapter when it has completed sending the |
| 1322 | * contents of a buffer. If detemines which list/buffer |
| 1323 | * was completed and resets it. If the buffer was the last |
| 1324 | * in the channel (EOC), then the function checks to see if |
| 1325 | * another buffer is ready to send, and if so, sends a Tx |
| 1326 | * Go command. Finally, the driver activates/continues the |
| 1327 | * activity LED. |
| 1328 | * |
| 1329 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1331 | static u32 tlan_handle_tx_eof(struct net_device *dev, u16 host_int) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1333 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | int eoc = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1335 | struct tlan_list *head_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | dma_addr_t head_list_phys; |
| 1337 | u32 ack = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1338 | u16 tmp_c_stat; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1339 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1340 | TLAN_DBG(TLAN_DEBUG_TX, |
| 1341 | "TRANSMIT: Handling TX EOF (Head=%d Tail=%d)\n", |
| 1342 | priv->tx_head, priv->tx_tail); |
| 1343 | head_list = priv->tx_list + priv->tx_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1345 | while (((tmp_c_stat = head_list->c_stat) & TLAN_CSTAT_FRM_CMP) |
| 1346 | && (ack < 255)) { |
| 1347 | struct sk_buff *skb = tlan_get_skb(head_list); |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | ack++; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1350 | pci_unmap_single(priv->pci_dev, head_list->buffer[0].address, |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1351 | max(skb->len, |
| 1352 | (unsigned int)TLAN_MIN_FRAME_SIZE), |
| 1353 | PCI_DMA_TODEVICE); |
| 1354 | dev_kfree_skb_any(skb); |
| 1355 | head_list->buffer[8].address = 0; |
| 1356 | head_list->buffer[9].address = 0; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1357 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1358 | if (tmp_c_stat & TLAN_CSTAT_EOC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | eoc = 1; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1360 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1361 | dev->stats.tx_bytes += head_list->frame_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1363 | head_list->c_stat = TLAN_CSTAT_UNUSED; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1364 | netif_start_queue(dev); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1365 | CIRC_INC(priv->tx_head, TLAN_NUM_TX_LISTS); |
| 1366 | head_list = priv->tx_list + priv->tx_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | } |
| 1368 | |
| 1369 | if (!ack) |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1370 | printk(KERN_INFO |
| 1371 | "TLAN: Received interrupt for uncompleted TX frame.\n"); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1372 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1373 | if (eoc) { |
| 1374 | TLAN_DBG(TLAN_DEBUG_TX, |
| 1375 | "TRANSMIT: handling TX EOC (Head=%d Tail=%d)\n", |
| 1376 | priv->tx_head, priv->tx_tail); |
| 1377 | head_list = priv->tx_list + priv->tx_head; |
| 1378 | head_list_phys = priv->tx_list_dma |
| 1379 | + sizeof(struct tlan_list)*priv->tx_head; |
Sakari Ailus | f45437e | 2011-02-09 10:25:06 +0000 | [diff] [blame] | 1380 | if ((head_list->c_stat & TLAN_CSTAT_READY) |
| 1381 | == TLAN_CSTAT_READY) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1382 | outl(head_list_phys, dev->base_addr + TLAN_CH_PARM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | ack |= TLAN_HC_GO; |
| 1384 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1385 | priv->tx_in_progress = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | } |
| 1387 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1388 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1389 | if (priv->adapter->flags & TLAN_ADAPTER_ACTIVITY_LED) { |
| 1390 | tlan_dio_write8(dev->base_addr, |
| 1391 | TLAN_LED_REG, TLAN_LED_LINK | TLAN_LED_ACT); |
| 1392 | if (priv->timer.function == NULL) { |
| 1393 | priv->timer.function = tlan_timer; |
| 1394 | priv->timer.data = (unsigned long) dev; |
| 1395 | priv->timer.expires = jiffies + TLAN_TIMER_ACT_DELAY; |
| 1396 | priv->timer_set_at = jiffies; |
| 1397 | priv->timer_type = TLAN_TIMER_ACTIVITY; |
| 1398 | add_timer(&priv->timer); |
| 1399 | } else if (priv->timer_type == TLAN_TIMER_ACTIVITY) { |
| 1400 | priv->timer_set_at = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | } |
| 1402 | } |
| 1403 | |
| 1404 | return ack; |
| 1405 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1406 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | |
| 1408 | |
| 1409 | |
| 1410 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1411 | /*************************************************************** |
| 1412 | * TLan_HandleStatOverflow |
| 1413 | * |
| 1414 | * Returns: |
| 1415 | * 1 |
| 1416 | * Parms: |
| 1417 | * dev Device assigned the IRQ that was |
| 1418 | * raised. |
| 1419 | * host_int The contents of the HOST_INT |
| 1420 | * port. |
| 1421 | * |
| 1422 | * This function handles the Statistics Overflow interrupt |
| 1423 | * which means that one or more of the TLAN statistics |
| 1424 | * registers has reached 1/2 capacity and needs to be read. |
| 1425 | * |
| 1426 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1428 | static u32 tlan_handle_stat_overflow(struct net_device *dev, u16 host_int) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1430 | tlan_read_and_clear_stats(dev, TLAN_RECORD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | |
| 1432 | return 1; |
| 1433 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1434 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | |
| 1436 | |
| 1437 | |
| 1438 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1439 | /*************************************************************** |
| 1440 | * TLan_HandleRxEOF |
| 1441 | * |
| 1442 | * Returns: |
| 1443 | * 1 |
| 1444 | * Parms: |
| 1445 | * dev Device assigned the IRQ that was |
| 1446 | * raised. |
| 1447 | * host_int The contents of the HOST_INT |
| 1448 | * port. |
| 1449 | * |
| 1450 | * This function handles the Rx EOF interrupt which |
| 1451 | * indicates a frame has been received by the adapter from |
| 1452 | * the net and the frame has been transferred to memory. |
| 1453 | * The function determines the bounce buffer the frame has |
| 1454 | * been loaded into, creates a new sk_buff big enough to |
| 1455 | * hold the frame, and sends it to protocol stack. It |
| 1456 | * then resets the used buffer and appends it to the end |
| 1457 | * of the list. If the frame was the last in the Rx |
| 1458 | * channel (EOC), the function restarts the receive channel |
| 1459 | * by sending an Rx Go command to the adapter. Then it |
| 1460 | * activates/continues the activity LED. |
| 1461 | * |
| 1462 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1464 | static u32 tlan_handle_rx_eof(struct net_device *dev, u16 host_int) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1466 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | u32 ack = 0; |
| 1468 | int eoc = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1469 | struct tlan_list *head_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | struct sk_buff *skb; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1471 | struct tlan_list *tail_list; |
| 1472 | u16 tmp_c_stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | dma_addr_t head_list_phys; |
| 1474 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1475 | TLAN_DBG(TLAN_DEBUG_RX, "RECEIVE: handling RX EOF (Head=%d Tail=%d)\n", |
| 1476 | priv->rx_head, priv->rx_tail); |
| 1477 | head_list = priv->rx_list + priv->rx_head; |
| 1478 | head_list_phys = |
| 1479 | priv->rx_list_dma + sizeof(struct tlan_list)*priv->rx_head; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1480 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1481 | while (((tmp_c_stat = head_list->c_stat) & TLAN_CSTAT_FRM_CMP) |
| 1482 | && (ack < 255)) { |
| 1483 | dma_addr_t frame_dma = head_list->buffer[0].address; |
| 1484 | u32 frame_size = head_list->frame_size; |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1485 | struct sk_buff *new_skb; |
| 1486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | ack++; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1488 | if (tmp_c_stat & TLAN_CSTAT_EOC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | eoc = 1; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1490 | |
Eric Dumazet | 89d71a6 | 2009-10-13 05:34:20 +0000 | [diff] [blame] | 1491 | new_skb = netdev_alloc_skb_ip_align(dev, |
| 1492 | TLAN_MAX_FRAME_SIZE + 5); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1493 | if (!new_skb) |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1494 | goto drop_and_reuse; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1495 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1496 | skb = tlan_get_skb(head_list); |
| 1497 | pci_unmap_single(priv->pci_dev, frame_dma, |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1498 | TLAN_MAX_FRAME_SIZE, PCI_DMA_FROMDEVICE); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1499 | skb_put(skb, frame_size); |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 1500 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1501 | dev->stats.rx_bytes += frame_size; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1502 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1503 | skb->protocol = eth_type_trans(skb, dev); |
| 1504 | netif_rx(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1506 | head_list->buffer[0].address = |
| 1507 | pci_map_single(priv->pci_dev, new_skb->data, |
| 1508 | TLAN_MAX_FRAME_SIZE, PCI_DMA_FROMDEVICE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1510 | tlan_store_skb(head_list, new_skb); |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 1511 | drop_and_reuse: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | head_list->forward = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1513 | head_list->c_stat = 0; |
| 1514 | tail_list = priv->rx_list + priv->rx_tail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | tail_list->forward = head_list_phys; |
| 1516 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1517 | CIRC_INC(priv->rx_head, TLAN_NUM_RX_LISTS); |
| 1518 | CIRC_INC(priv->rx_tail, TLAN_NUM_RX_LISTS); |
| 1519 | head_list = priv->rx_list + priv->rx_head; |
| 1520 | head_list_phys = priv->rx_list_dma |
| 1521 | + sizeof(struct tlan_list)*priv->rx_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | } |
| 1523 | |
| 1524 | if (!ack) |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1525 | printk(KERN_INFO |
| 1526 | "TLAN: Received interrupt for uncompleted RX frame.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | |
| 1528 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1529 | if (eoc) { |
| 1530 | TLAN_DBG(TLAN_DEBUG_RX, |
| 1531 | "RECEIVE: handling RX EOC (Head=%d Tail=%d)\n", |
| 1532 | priv->rx_head, priv->rx_tail); |
| 1533 | head_list = priv->rx_list + priv->rx_head; |
| 1534 | head_list_phys = priv->rx_list_dma |
| 1535 | + sizeof(struct tlan_list)*priv->rx_head; |
| 1536 | outl(head_list_phys, dev->base_addr + TLAN_CH_PARM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | ack |= TLAN_HC_GO | TLAN_HC_RT; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1538 | priv->rx_eoc_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | } |
| 1540 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1541 | if (priv->adapter->flags & TLAN_ADAPTER_ACTIVITY_LED) { |
| 1542 | tlan_dio_write8(dev->base_addr, |
| 1543 | TLAN_LED_REG, TLAN_LED_LINK | TLAN_LED_ACT); |
| 1544 | if (priv->timer.function == NULL) { |
| 1545 | priv->timer.function = tlan_timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | priv->timer.data = (unsigned long) dev; |
| 1547 | priv->timer.expires = jiffies + TLAN_TIMER_ACT_DELAY; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1548 | priv->timer_set_at = jiffies; |
| 1549 | priv->timer_type = TLAN_TIMER_ACTIVITY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | add_timer(&priv->timer); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1551 | } else if (priv->timer_type == TLAN_TIMER_ACTIVITY) { |
| 1552 | priv->timer_set_at = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | } |
| 1554 | } |
| 1555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | return ack; |
| 1557 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1558 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | |
| 1560 | |
| 1561 | |
| 1562 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1563 | /*************************************************************** |
| 1564 | * tlan_handle_dummy |
| 1565 | * |
| 1566 | * Returns: |
| 1567 | * 1 |
| 1568 | * Parms: |
| 1569 | * dev Device assigned the IRQ that was |
| 1570 | * raised. |
| 1571 | * host_int The contents of the HOST_INT |
| 1572 | * port. |
| 1573 | * |
| 1574 | * This function handles the Dummy interrupt, which is |
| 1575 | * raised whenever a test interrupt is generated by setting |
| 1576 | * the Req_Int bit of HOST_CMD to 1. |
| 1577 | * |
| 1578 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1580 | static u32 tlan_handle_dummy(struct net_device *dev, u16 host_int) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1582 | pr_info("TLAN: Test interrupt on %s.\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | return 1; |
| 1584 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1585 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | |
| 1587 | |
| 1588 | |
| 1589 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1590 | /*************************************************************** |
| 1591 | * tlan_handle_tx_eoc |
| 1592 | * |
| 1593 | * Returns: |
| 1594 | * 1 |
| 1595 | * Parms: |
| 1596 | * dev Device assigned the IRQ that was |
| 1597 | * raised. |
| 1598 | * host_int The contents of the HOST_INT |
| 1599 | * port. |
| 1600 | * |
| 1601 | * This driver is structured to determine EOC occurrences by |
| 1602 | * reading the CSTAT member of the list structure. Tx EOC |
| 1603 | * interrupts are disabled via the DIO INTDIS register. |
| 1604 | * However, TLAN chips before revision 3.0 didn't have this |
| 1605 | * functionality, so process EOC events if this is the |
| 1606 | * case. |
| 1607 | * |
| 1608 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1610 | static u32 tlan_handle_tx_eoc(struct net_device *dev, u16 host_int) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1612 | struct tlan_priv *priv = netdev_priv(dev); |
| 1613 | struct tlan_list *head_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | dma_addr_t head_list_phys; |
| 1615 | u32 ack = 1; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | host_int = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1618 | if (priv->tlan_rev < 0x30) { |
| 1619 | TLAN_DBG(TLAN_DEBUG_TX, |
| 1620 | "TRANSMIT: handling TX EOC (Head=%d Tail=%d) -- IRQ\n", |
| 1621 | priv->tx_head, priv->tx_tail); |
| 1622 | head_list = priv->tx_list + priv->tx_head; |
| 1623 | head_list_phys = priv->tx_list_dma |
| 1624 | + sizeof(struct tlan_list)*priv->tx_head; |
Sakari Ailus | f45437e | 2011-02-09 10:25:06 +0000 | [diff] [blame] | 1625 | if ((head_list->c_stat & TLAN_CSTAT_READY) |
| 1626 | == TLAN_CSTAT_READY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | netif_stop_queue(dev); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1628 | outl(head_list_phys, dev->base_addr + TLAN_CH_PARM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | ack |= TLAN_HC_GO; |
| 1630 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1631 | priv->tx_in_progress = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | } |
| 1633 | } |
| 1634 | |
| 1635 | return ack; |
| 1636 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1637 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | |
| 1639 | |
| 1640 | |
| 1641 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1642 | /*************************************************************** |
| 1643 | * tlan_handle_status_check |
| 1644 | * |
| 1645 | * Returns: |
| 1646 | * 0 if Adapter check, 1 if Network Status check. |
| 1647 | * Parms: |
| 1648 | * dev Device assigned the IRQ that was |
| 1649 | * raised. |
| 1650 | * host_int The contents of the HOST_INT |
| 1651 | * port. |
| 1652 | * |
| 1653 | * This function handles Adapter Check/Network Status |
| 1654 | * interrupts generated by the adapter. It checks the |
| 1655 | * vector in the HOST_INT register to determine if it is |
| 1656 | * an Adapter Check interrupt. If so, it resets the |
| 1657 | * adapter. Otherwise it clears the status registers |
| 1658 | * and services the PHY. |
| 1659 | * |
| 1660 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1662 | static u32 tlan_handle_status_check(struct net_device *dev, u16 host_int) |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1663 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1664 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | u32 ack; |
| 1666 | u32 error; |
| 1667 | u8 net_sts; |
| 1668 | u32 phy; |
| 1669 | u16 tlphy_ctl; |
| 1670 | u16 tlphy_sts; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1671 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | ack = 1; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1673 | if (host_int & TLAN_HI_IV_MASK) { |
| 1674 | netif_stop_queue(dev); |
| 1675 | error = inl(dev->base_addr + TLAN_CH_PARM); |
| 1676 | pr_info("TLAN: %s: Adaptor Error = 0x%x\n", dev->name, error); |
| 1677 | tlan_read_and_clear_stats(dev, TLAN_RECORD); |
| 1678 | outl(TLAN_HC_AD_RST, dev->base_addr + TLAN_HOST_CMD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | |
| 1680 | schedule_work(&priv->tlan_tqueue); |
| 1681 | |
| 1682 | netif_wake_queue(dev); |
| 1683 | ack = 0; |
| 1684 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1685 | TLAN_DBG(TLAN_DEBUG_GNRL, "%s: Status Check\n", dev->name); |
| 1686 | phy = priv->phy[priv->phy_num]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1688 | net_sts = tlan_dio_read8(dev->base_addr, TLAN_NET_STS); |
| 1689 | if (net_sts) { |
| 1690 | tlan_dio_write8(dev->base_addr, TLAN_NET_STS, net_sts); |
| 1691 | TLAN_DBG(TLAN_DEBUG_GNRL, "%s: Net_Sts = %x\n", |
| 1692 | dev->name, (unsigned) net_sts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1694 | if ((net_sts & TLAN_NET_STS_MIRQ) && (priv->phy_num == 0)) { |
| 1695 | tlan_mii_read_reg(dev, phy, TLAN_TLPHY_STS, &tlphy_sts); |
| 1696 | tlan_mii_read_reg(dev, phy, TLAN_TLPHY_CTL, &tlphy_ctl); |
| 1697 | if (!(tlphy_sts & TLAN_TS_POLOK) && |
| 1698 | !(tlphy_ctl & TLAN_TC_SWAPOL)) { |
| 1699 | tlphy_ctl |= TLAN_TC_SWAPOL; |
| 1700 | tlan_mii_write_reg(dev, phy, TLAN_TLPHY_CTL, |
| 1701 | tlphy_ctl); |
| 1702 | } else if ((tlphy_sts & TLAN_TS_POLOK) && |
| 1703 | (tlphy_ctl & TLAN_TC_SWAPOL)) { |
| 1704 | tlphy_ctl &= ~TLAN_TC_SWAPOL; |
| 1705 | tlan_mii_write_reg(dev, phy, TLAN_TLPHY_CTL, |
| 1706 | tlphy_ctl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1708 | |
| 1709 | if (debug) |
| 1710 | tlan_phy_print(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | } |
| 1712 | } |
| 1713 | |
| 1714 | return ack; |
| 1715 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1716 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | |
| 1718 | |
| 1719 | |
| 1720 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1721 | /*************************************************************** |
| 1722 | * tlan_handle_rx_eoc |
| 1723 | * |
| 1724 | * Returns: |
| 1725 | * 1 |
| 1726 | * Parms: |
| 1727 | * dev Device assigned the IRQ that was |
| 1728 | * raised. |
| 1729 | * host_int The contents of the HOST_INT |
| 1730 | * port. |
| 1731 | * |
| 1732 | * This driver is structured to determine EOC occurrences by |
| 1733 | * reading the CSTAT member of the list structure. Rx EOC |
| 1734 | * interrupts are disabled via the DIO INTDIS register. |
| 1735 | * However, TLAN chips before revision 3.0 didn't have this |
| 1736 | * CSTAT member or a INTDIS register, so if this chip is |
| 1737 | * pre-3.0, process EOC interrupts normally. |
| 1738 | * |
| 1739 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1741 | static u32 tlan_handle_rx_eoc(struct net_device *dev, u16 host_int) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1743 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | dma_addr_t head_list_phys; |
| 1745 | u32 ack = 1; |
| 1746 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1747 | if (priv->tlan_rev < 0x30) { |
| 1748 | TLAN_DBG(TLAN_DEBUG_RX, |
| 1749 | "RECEIVE: Handling RX EOC (head=%d tail=%d) -- IRQ\n", |
| 1750 | priv->rx_head, priv->rx_tail); |
| 1751 | head_list_phys = priv->rx_list_dma |
| 1752 | + sizeof(struct tlan_list)*priv->rx_head; |
| 1753 | outl(head_list_phys, dev->base_addr + TLAN_CH_PARM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | ack |= TLAN_HC_GO | TLAN_HC_RT; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1755 | priv->rx_eoc_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | } |
| 1757 | |
| 1758 | return ack; |
| 1759 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1760 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | |
| 1762 | |
| 1763 | |
| 1764 | |
| 1765 | /***************************************************************************** |
| 1766 | ****************************************************************************** |
| 1767 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1768 | ThunderLAN driver timer function |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | |
| 1770 | ****************************************************************************** |
| 1771 | *****************************************************************************/ |
| 1772 | |
| 1773 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1774 | /*************************************************************** |
| 1775 | * tlan_timer |
| 1776 | * |
| 1777 | * Returns: |
| 1778 | * Nothing |
| 1779 | * Parms: |
| 1780 | * data A value given to add timer when |
| 1781 | * add_timer was called. |
| 1782 | * |
| 1783 | * This function handles timed functionality for the |
| 1784 | * TLAN driver. The two current timer uses are for |
| 1785 | * delaying for autonegotionation and driving the ACT LED. |
| 1786 | * - Autonegotiation requires being allowed about |
| 1787 | * 2 1/2 seconds before attempting to transmit a |
| 1788 | * packet. It would be a very bad thing to hang |
| 1789 | * the kernel this long, so the driver doesn't |
| 1790 | * allow transmission 'til after this time, for |
| 1791 | * certain PHYs. It would be much nicer if all |
| 1792 | * PHYs were interrupt-capable like the internal |
| 1793 | * PHY. |
| 1794 | * - The ACT LED, which shows adapter activity, is |
| 1795 | * driven by the driver, and so must be left on |
| 1796 | * for a short period to power up the LED so it |
| 1797 | * can be seen. This delay can be changed by |
| 1798 | * changing the TLAN_TIMER_ACT_DELAY in tlan.h, |
| 1799 | * if desired. 100 ms produces a slightly |
| 1800 | * sluggish response. |
| 1801 | * |
| 1802 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1804 | static void tlan_timer(unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | { |
| 1806 | struct net_device *dev = (struct net_device *) data; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1807 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | u32 elapsed; |
| 1809 | unsigned long flags = 0; |
| 1810 | |
| 1811 | priv->timer.function = NULL; |
| 1812 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1813 | switch (priv->timer_type) { |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 1814 | #ifdef MONITOR |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1815 | case TLAN_TIMER_LINK_BEAT: |
| 1816 | tlan_phy_monitor(dev); |
| 1817 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | #endif |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1819 | case TLAN_TIMER_PHY_PDOWN: |
| 1820 | tlan_phy_power_down(dev); |
| 1821 | break; |
| 1822 | case TLAN_TIMER_PHY_PUP: |
| 1823 | tlan_phy_power_up(dev); |
| 1824 | break; |
| 1825 | case TLAN_TIMER_PHY_RESET: |
| 1826 | tlan_phy_reset(dev); |
| 1827 | break; |
| 1828 | case TLAN_TIMER_PHY_START_LINK: |
| 1829 | tlan_phy_start_link(dev); |
| 1830 | break; |
| 1831 | case TLAN_TIMER_PHY_FINISH_AN: |
| 1832 | tlan_phy_finish_auto_neg(dev); |
| 1833 | break; |
| 1834 | case TLAN_TIMER_FINISH_RESET: |
| 1835 | tlan_finish_reset(dev); |
| 1836 | break; |
| 1837 | case TLAN_TIMER_ACTIVITY: |
| 1838 | spin_lock_irqsave(&priv->lock, flags); |
| 1839 | if (priv->timer.function == NULL) { |
| 1840 | elapsed = jiffies - priv->timer_set_at; |
| 1841 | if (elapsed >= TLAN_TIMER_ACT_DELAY) { |
| 1842 | tlan_dio_write8(dev->base_addr, |
| 1843 | TLAN_LED_REG, TLAN_LED_LINK); |
| 1844 | } else { |
| 1845 | priv->timer.function = tlan_timer; |
| 1846 | priv->timer.expires = priv->timer_set_at |
| 1847 | + TLAN_TIMER_ACT_DELAY; |
| 1848 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1849 | add_timer(&priv->timer); |
| 1850 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1852 | } |
| 1853 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1854 | break; |
| 1855 | default: |
| 1856 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | } |
| 1858 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1859 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | |
| 1861 | |
| 1862 | |
| 1863 | |
| 1864 | /***************************************************************************** |
| 1865 | ****************************************************************************** |
| 1866 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1867 | ThunderLAN driver adapter related routines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | |
| 1869 | ****************************************************************************** |
| 1870 | *****************************************************************************/ |
| 1871 | |
| 1872 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1873 | /*************************************************************** |
| 1874 | * tlan_reset_lists |
| 1875 | * |
| 1876 | * Returns: |
| 1877 | * Nothing |
| 1878 | * Parms: |
| 1879 | * dev The device structure with the list |
| 1880 | * stuctures to be reset. |
| 1881 | * |
| 1882 | * This routine sets the variables associated with managing |
| 1883 | * the TLAN lists to their initial values. |
| 1884 | * |
| 1885 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1887 | static void tlan_reset_lists(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1889 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | int i; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1891 | struct tlan_list *list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | dma_addr_t list_phys; |
| 1893 | struct sk_buff *skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1895 | priv->tx_head = 0; |
| 1896 | priv->tx_tail = 0; |
| 1897 | for (i = 0; i < TLAN_NUM_TX_LISTS; i++) { |
| 1898 | list = priv->tx_list + i; |
| 1899 | list->c_stat = TLAN_CSTAT_UNUSED; |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1900 | list->buffer[0].address = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | list->buffer[2].count = 0; |
| 1902 | list->buffer[2].address = 0; |
| 1903 | list->buffer[8].address = 0; |
| 1904 | list->buffer[9].address = 0; |
| 1905 | } |
| 1906 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1907 | priv->rx_head = 0; |
| 1908 | priv->rx_tail = TLAN_NUM_RX_LISTS - 1; |
| 1909 | for (i = 0; i < TLAN_NUM_RX_LISTS; i++) { |
| 1910 | list = priv->rx_list + i; |
| 1911 | list_phys = priv->rx_list_dma + sizeof(struct tlan_list)*i; |
| 1912 | list->c_stat = TLAN_CSTAT_READY; |
| 1913 | list->frame_size = TLAN_MAX_FRAME_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | list->buffer[0].count = TLAN_MAX_FRAME_SIZE | TLAN_LAST_BUFFER; |
Eric Dumazet | 89d71a6 | 2009-10-13 05:34:20 +0000 | [diff] [blame] | 1915 | skb = netdev_alloc_skb_ip_align(dev, TLAN_MAX_FRAME_SIZE + 5); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1916 | if (!skb) { |
| 1917 | pr_err("TLAN: out of memory for received data.\n"); |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1918 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | } |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1920 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1921 | list->buffer[0].address = pci_map_single(priv->pci_dev, |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1922 | skb->data, |
| 1923 | TLAN_MAX_FRAME_SIZE, |
| 1924 | PCI_DMA_FROMDEVICE); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1925 | tlan_store_skb(list, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | list->buffer[1].count = 0; |
| 1927 | list->buffer[1].address = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1928 | list->forward = list_phys + sizeof(struct tlan_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1929 | } |
| 1930 | |
Stephen Hemminger | 9ded65a | 2008-05-30 09:49:56 -0700 | [diff] [blame] | 1931 | /* in case ran out of memory early, clear bits */ |
| 1932 | while (i < TLAN_NUM_RX_LISTS) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1933 | tlan_store_skb(priv->rx_list + i, NULL); |
Stephen Hemminger | 9ded65a | 2008-05-30 09:49:56 -0700 | [diff] [blame] | 1934 | ++i; |
| 1935 | } |
| 1936 | list->forward = 0; |
| 1937 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1938 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | |
| 1940 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1941 | static void tlan_free_lists(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1943 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | int i; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1945 | struct tlan_list *list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | struct sk_buff *skb; |
| 1947 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1948 | for (i = 0; i < TLAN_NUM_TX_LISTS; i++) { |
| 1949 | list = priv->tx_list + i; |
| 1950 | skb = tlan_get_skb(list); |
| 1951 | if (skb) { |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1952 | pci_unmap_single( |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1953 | priv->pci_dev, |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1954 | list->buffer[0].address, |
| 1955 | max(skb->len, |
| 1956 | (unsigned int)TLAN_MIN_FRAME_SIZE), |
| 1957 | PCI_DMA_TODEVICE); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1958 | dev_kfree_skb_any(skb); |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1959 | list->buffer[8].address = 0; |
| 1960 | list->buffer[9].address = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | } |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1962 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1964 | for (i = 0; i < TLAN_NUM_RX_LISTS; i++) { |
| 1965 | list = priv->rx_list + i; |
| 1966 | skb = tlan_get_skb(list); |
| 1967 | if (skb) { |
| 1968 | pci_unmap_single(priv->pci_dev, |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1969 | list->buffer[0].address, |
| 1970 | TLAN_MAX_FRAME_SIZE, |
| 1971 | PCI_DMA_FROMDEVICE); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1972 | dev_kfree_skb_any(skb); |
Sakari Ailus | 5eeabf5 | 2008-12-16 15:24:05 -0800 | [diff] [blame] | 1973 | list->buffer[8].address = 0; |
| 1974 | list->buffer[9].address = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | } |
| 1976 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1977 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | |
| 1979 | |
| 1980 | |
| 1981 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1982 | /*************************************************************** |
| 1983 | * tlan_print_dio |
| 1984 | * |
| 1985 | * Returns: |
| 1986 | * Nothing |
| 1987 | * Parms: |
| 1988 | * io_base Base IO port of the device of |
| 1989 | * which to print DIO registers. |
| 1990 | * |
| 1991 | * This function prints out all the internal (DIO) |
| 1992 | * registers of a TLAN chip. |
| 1993 | * |
| 1994 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 1996 | static void tlan_print_dio(u16 io_base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | { |
| 1998 | u32 data0, data1; |
| 1999 | int i; |
| 2000 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2001 | pr_info("TLAN: Contents of internal registers for io base 0x%04hx.\n", |
| 2002 | io_base); |
| 2003 | pr_info("TLAN: Off. +0 +4\n"); |
| 2004 | for (i = 0; i < 0x4C; i += 8) { |
| 2005 | data0 = tlan_dio_read32(io_base, i); |
| 2006 | data1 = tlan_dio_read32(io_base, i + 0x4); |
| 2007 | pr_info("TLAN: 0x%02x 0x%08x 0x%08x\n", i, data0, data1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | } |
| 2009 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2010 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | |
| 2012 | |
| 2013 | |
| 2014 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2015 | /*************************************************************** |
| 2016 | * TLan_PrintList |
| 2017 | * |
| 2018 | * Returns: |
| 2019 | * Nothing |
| 2020 | * Parms: |
| 2021 | * list A pointer to the struct tlan_list structure to |
| 2022 | * be printed. |
| 2023 | * type A string to designate type of list, |
| 2024 | * "Rx" or "Tx". |
| 2025 | * num The index of the list. |
| 2026 | * |
| 2027 | * This function prints out the contents of the list |
| 2028 | * pointed to by the list parameter. |
| 2029 | * |
| 2030 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2032 | static void tlan_print_list(struct tlan_list *list, char *type, int num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | { |
| 2034 | int i; |
| 2035 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2036 | pr_info("TLAN: %s List %d at %p\n", type, num, list); |
| 2037 | pr_info("TLAN: Forward = 0x%08x\n", list->forward); |
| 2038 | pr_info("TLAN: CSTAT = 0x%04hx\n", list->c_stat); |
| 2039 | pr_info("TLAN: Frame Size = 0x%04hx\n", list->frame_size); |
| 2040 | /* for (i = 0; i < 10; i++) { */ |
| 2041 | for (i = 0; i < 2; i++) { |
| 2042 | pr_info("TLAN: Buffer[%d].count, addr = 0x%08x, 0x%08x\n", |
| 2043 | i, list->buffer[i].count, list->buffer[i].address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | } |
| 2045 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2046 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | |
| 2048 | |
| 2049 | |
| 2050 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2051 | /*************************************************************** |
| 2052 | * tlan_read_and_clear_stats |
| 2053 | * |
| 2054 | * Returns: |
| 2055 | * Nothing |
| 2056 | * Parms: |
| 2057 | * dev Pointer to device structure of adapter |
| 2058 | * to which to read stats. |
| 2059 | * record Flag indicating whether to add |
| 2060 | * |
| 2061 | * This functions reads all the internal status registers |
| 2062 | * of the TLAN chip, which clears them as a side effect. |
| 2063 | * It then either adds the values to the device's status |
| 2064 | * struct, or discards them, depending on whether record |
| 2065 | * is TLAN_RECORD (!=0) or TLAN_IGNORE (==0). |
| 2066 | * |
| 2067 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2069 | static void tlan_read_and_clear_stats(struct net_device *dev, int record) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | u32 tx_good, tx_under; |
| 2072 | u32 rx_good, rx_over; |
| 2073 | u32 def_tx, crc, code; |
| 2074 | u32 multi_col, single_col; |
| 2075 | u32 excess_col, late_col, loss; |
| 2076 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2077 | outw(TLAN_GOOD_TX_FRMS, dev->base_addr + TLAN_DIO_ADR); |
| 2078 | tx_good = inb(dev->base_addr + TLAN_DIO_DATA); |
| 2079 | tx_good += inb(dev->base_addr + TLAN_DIO_DATA + 1) << 8; |
| 2080 | tx_good += inb(dev->base_addr + TLAN_DIO_DATA + 2) << 16; |
| 2081 | tx_under = inb(dev->base_addr + TLAN_DIO_DATA + 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2083 | outw(TLAN_GOOD_RX_FRMS, dev->base_addr + TLAN_DIO_ADR); |
| 2084 | rx_good = inb(dev->base_addr + TLAN_DIO_DATA); |
| 2085 | rx_good += inb(dev->base_addr + TLAN_DIO_DATA + 1) << 8; |
| 2086 | rx_good += inb(dev->base_addr + TLAN_DIO_DATA + 2) << 16; |
| 2087 | rx_over = inb(dev->base_addr + TLAN_DIO_DATA + 3); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2088 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2089 | outw(TLAN_DEFERRED_TX, dev->base_addr + TLAN_DIO_ADR); |
| 2090 | def_tx = inb(dev->base_addr + TLAN_DIO_DATA); |
| 2091 | def_tx += inb(dev->base_addr + TLAN_DIO_DATA + 1) << 8; |
| 2092 | crc = inb(dev->base_addr + TLAN_DIO_DATA + 2); |
| 2093 | code = inb(dev->base_addr + TLAN_DIO_DATA + 3); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2094 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2095 | outw(TLAN_MULTICOL_FRMS, dev->base_addr + TLAN_DIO_ADR); |
| 2096 | multi_col = inb(dev->base_addr + TLAN_DIO_DATA); |
| 2097 | multi_col += inb(dev->base_addr + TLAN_DIO_DATA + 1) << 8; |
| 2098 | single_col = inb(dev->base_addr + TLAN_DIO_DATA + 2); |
| 2099 | single_col += inb(dev->base_addr + TLAN_DIO_DATA + 3) << 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2101 | outw(TLAN_EXCESSCOL_FRMS, dev->base_addr + TLAN_DIO_ADR); |
| 2102 | excess_col = inb(dev->base_addr + TLAN_DIO_DATA); |
| 2103 | late_col = inb(dev->base_addr + TLAN_DIO_DATA + 1); |
| 2104 | loss = inb(dev->base_addr + TLAN_DIO_DATA + 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2106 | if (record) { |
Stephen Hemminger | f8f3154 | 2008-05-30 09:49:53 -0700 | [diff] [blame] | 2107 | dev->stats.rx_packets += rx_good; |
| 2108 | dev->stats.rx_errors += rx_over + crc + code; |
| 2109 | dev->stats.tx_packets += tx_good; |
| 2110 | dev->stats.tx_errors += tx_under + loss; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2111 | dev->stats.collisions += multi_col |
| 2112 | + single_col + excess_col + late_col; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | |
Stephen Hemminger | f8f3154 | 2008-05-30 09:49:53 -0700 | [diff] [blame] | 2114 | dev->stats.rx_over_errors += rx_over; |
| 2115 | dev->stats.rx_crc_errors += crc; |
| 2116 | dev->stats.rx_frame_errors += code; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | |
Stephen Hemminger | f8f3154 | 2008-05-30 09:49:53 -0700 | [diff] [blame] | 2118 | dev->stats.tx_aborted_errors += tx_under; |
| 2119 | dev->stats.tx_carrier_errors += loss; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2121 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2122 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | |
| 2124 | |
| 2125 | |
| 2126 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2127 | /*************************************************************** |
| 2128 | * TLan_Reset |
| 2129 | * |
| 2130 | * Returns: |
| 2131 | * 0 |
| 2132 | * Parms: |
| 2133 | * dev Pointer to device structure of adapter |
| 2134 | * to be reset. |
| 2135 | * |
| 2136 | * This function resets the adapter and it's physical |
| 2137 | * device. See Chap. 3, pp. 9-10 of the "ThunderLAN |
| 2138 | * Programmer's Guide" for details. The routine tries to |
| 2139 | * implement what is detailed there, though adjustments |
| 2140 | * have been made. |
| 2141 | * |
| 2142 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | |
Harvey Harrison | 98e0f52 | 2008-02-18 10:04:38 -0800 | [diff] [blame] | 2144 | static void |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2145 | tlan_reset_adapter(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2147 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | int i; |
| 2149 | u32 addr; |
| 2150 | u32 data; |
| 2151 | u8 data8; |
| 2152 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2153 | priv->tlan_full_duplex = false; |
| 2154 | priv->phy_online = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | netif_carrier_off(dev); |
| 2156 | |
| 2157 | /* 1. Assert reset bit. */ |
| 2158 | |
| 2159 | data = inl(dev->base_addr + TLAN_HOST_CMD); |
| 2160 | data |= TLAN_HC_AD_RST; |
| 2161 | outl(data, dev->base_addr + TLAN_HOST_CMD); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | udelay(1000); |
| 2164 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2165 | /* 2. Turn off interrupts. (Probably isn't necessary) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | |
| 2167 | data = inl(dev->base_addr + TLAN_HOST_CMD); |
| 2168 | data |= TLAN_HC_INT_OFF; |
| 2169 | outl(data, dev->base_addr + TLAN_HOST_CMD); |
| 2170 | |
| 2171 | /* 3. Clear AREGs and HASHs. */ |
| 2172 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2173 | for (i = TLAN_AREG_0; i <= TLAN_HASH_2; i += 4) |
| 2174 | tlan_dio_write32(dev->base_addr, (u16) i, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | |
| 2176 | /* 4. Setup NetConfig register. */ |
| 2177 | |
| 2178 | data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN | TLAN_NET_CFG_PHY_EN; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2179 | tlan_dio_write16(dev->base_addr, TLAN_NET_CONFIG, (u16) data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | |
| 2181 | /* 5. Load Ld_Tmr and Ld_Thr in HOST_CMD. */ |
| 2182 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2183 | outl(TLAN_HC_LD_TMR | 0x3f, dev->base_addr + TLAN_HOST_CMD); |
| 2184 | outl(TLAN_HC_LD_THR | 0x9, dev->base_addr + TLAN_HOST_CMD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | |
| 2186 | /* 6. Unreset the MII by setting NMRST (in NetSio) to 1. */ |
| 2187 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2188 | outw(TLAN_NET_SIO, dev->base_addr + TLAN_DIO_ADR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | addr = dev->base_addr + TLAN_DIO_DATA + TLAN_NET_SIO; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2190 | tlan_set_bit(TLAN_NET_SIO_NMRST, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | |
| 2192 | /* 7. Setup the remaining registers. */ |
| 2193 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2194 | if (priv->tlan_rev >= 0x30) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | data8 = TLAN_ID_TX_EOC | TLAN_ID_RX_EOC; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2196 | tlan_dio_write8(dev->base_addr, TLAN_INT_DIS, data8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2198 | tlan_phy_detect(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2200 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2201 | if (priv->adapter->flags & TLAN_ADAPTER_BIT_RATE_PHY) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | data |= TLAN_NET_CFG_BIT; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2203 | if (priv->aui == 1) { |
| 2204 | tlan_dio_write8(dev->base_addr, TLAN_ACOMMIT, 0x0a); |
| 2205 | } else if (priv->duplex == TLAN_DUPLEX_FULL) { |
| 2206 | tlan_dio_write8(dev->base_addr, TLAN_ACOMMIT, 0x00); |
| 2207 | priv->tlan_full_duplex = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2209 | tlan_dio_write8(dev->base_addr, TLAN_ACOMMIT, 0x08); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2210 | } |
| 2211 | } |
| 2212 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2213 | if (priv->phy_num == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | data |= TLAN_NET_CFG_PHY_EN; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2215 | tlan_dio_write16(dev->base_addr, TLAN_NET_CONFIG, (u16) data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2217 | if (priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY) |
| 2218 | tlan_finish_reset(dev); |
| 2219 | else |
| 2220 | tlan_phy_power_down(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2222 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2223 | |
| 2224 | |
| 2225 | |
| 2226 | |
Harvey Harrison | 98e0f52 | 2008-02-18 10:04:38 -0800 | [diff] [blame] | 2227 | static void |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2228 | tlan_finish_reset(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2230 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | u8 data; |
| 2232 | u32 phy; |
| 2233 | u8 sio; |
| 2234 | u16 status; |
| 2235 | u16 partner; |
| 2236 | u16 tlphy_ctl; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2237 | u16 tlphy_par; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | u16 tlphy_id1, tlphy_id2; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2239 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2241 | phy = priv->phy[priv->phy_num]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2242 | |
| 2243 | data = TLAN_NET_CMD_NRESET | TLAN_NET_CMD_NWRAP; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2244 | if (priv->tlan_full_duplex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | data |= TLAN_NET_CMD_DUPLEX; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2246 | tlan_dio_write8(dev->base_addr, TLAN_NET_CMD, data); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2247 | data = TLAN_NET_MASK_MASK4 | TLAN_NET_MASK_MASK5; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2248 | if (priv->phy_num == 0) |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2249 | data |= TLAN_NET_MASK_MASK7; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2250 | tlan_dio_write8(dev->base_addr, TLAN_NET_MASK, data); |
| 2251 | tlan_dio_write16(dev->base_addr, TLAN_MAX_RX, ((1536)+7)&~7); |
| 2252 | tlan_mii_read_reg(dev, phy, MII_GEN_ID_HI, &tlphy_id1); |
| 2253 | tlan_mii_read_reg(dev, phy, MII_GEN_ID_LO, &tlphy_id2); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2254 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2255 | if ((priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY) || |
| 2256 | (priv->aui)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | status = MII_GS_LINK; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2258 | pr_info("TLAN: %s: Link forced.\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2260 | tlan_mii_read_reg(dev, phy, MII_GEN_STS, &status); |
| 2261 | udelay(1000); |
| 2262 | tlan_mii_read_reg(dev, phy, MII_GEN_STS, &status); |
| 2263 | if ((status & MII_GS_LINK) && |
| 2264 | /* We only support link info on Nat.Sem. PHY's */ |
| 2265 | (tlphy_id1 == NAT_SEM_ID1) && |
| 2266 | (tlphy_id2 == NAT_SEM_ID2)) { |
| 2267 | tlan_mii_read_reg(dev, phy, MII_AN_LPA, &partner); |
| 2268 | tlan_mii_read_reg(dev, phy, TLAN_TLPHY_PAR, &tlphy_par); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2269 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2270 | pr_info("TLAN: %s: Link active with ", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | if (!(tlphy_par & TLAN_PHY_AN_EN_STAT)) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2272 | pr_info("forced 10%sMbps %s-Duplex\n", |
| 2273 | tlphy_par & TLAN_PHY_SPEED_100 |
| 2274 | ? "" : "0", |
| 2275 | tlphy_par & TLAN_PHY_DUPLEX_FULL |
| 2276 | ? "Full" : "Half"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2278 | pr_info("Autonegotiation enabled, at 10%sMbps %s-Duplex\n", |
| 2279 | tlphy_par & TLAN_PHY_SPEED_100 |
| 2280 | ? "" : "0", |
| 2281 | tlphy_par & TLAN_PHY_DUPLEX_FULL |
| 2282 | ? "Full" : "half"); |
| 2283 | pr_info("TLAN: Partner capability: "); |
| 2284 | for (i = 5; i <= 10; i++) |
| 2285 | if (partner & (1<<i)) |
| 2286 | printk("%s", media[i-5]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | printk("\n"); |
| 2288 | } |
| 2289 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2290 | tlan_dio_write8(dev->base_addr, TLAN_LED_REG, |
| 2291 | TLAN_LED_LINK); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2292 | #ifdef MONITOR |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | /* We have link beat..for now anyway */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2294 | priv->link = 1; |
| 2295 | /*Enabling link beat monitoring */ |
| 2296 | tlan_set_timer(dev, (10*HZ), TLAN_TIMER_LINK_BEAT); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2297 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | } else if (status & MII_GS_LINK) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2299 | pr_info("TLAN: %s: Link active\n", dev->name); |
| 2300 | tlan_dio_write8(dev->base_addr, TLAN_LED_REG, |
| 2301 | TLAN_LED_LINK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | } |
| 2303 | } |
| 2304 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2305 | if (priv->phy_num == 0) { |
| 2306 | tlan_mii_read_reg(dev, phy, TLAN_TLPHY_CTL, &tlphy_ctl); |
| 2307 | tlphy_ctl |= TLAN_TC_INTEN; |
| 2308 | tlan_mii_write_reg(dev, phy, TLAN_TLPHY_CTL, tlphy_ctl); |
| 2309 | sio = tlan_dio_read8(dev->base_addr, TLAN_NET_SIO); |
| 2310 | sio |= TLAN_NET_SIO_MINTEN; |
| 2311 | tlan_dio_write8(dev->base_addr, TLAN_NET_SIO, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | } |
| 2313 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2314 | if (status & MII_GS_LINK) { |
| 2315 | tlan_set_mac(dev, 0, dev->dev_addr); |
| 2316 | priv->phy_online = 1; |
| 2317 | outb((TLAN_HC_INT_ON >> 8), dev->base_addr + TLAN_HOST_CMD + 1); |
| 2318 | if (debug >= 1 && debug != TLAN_DEBUG_PROBE) |
| 2319 | outb((TLAN_HC_REQ_INT >> 8), |
| 2320 | dev->base_addr + TLAN_HOST_CMD + 1); |
| 2321 | outl(priv->rx_list_dma, dev->base_addr + TLAN_CH_PARM); |
| 2322 | outl(TLAN_HC_GO | TLAN_HC_RT, dev->base_addr + TLAN_HOST_CMD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | netif_carrier_on(dev); |
| 2324 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2325 | pr_info("TLAN: %s: Link inactive, will retry in 10 secs...\n", |
| 2326 | dev->name); |
| 2327 | tlan_set_timer(dev, (10*HZ), TLAN_TIMER_FINISH_RESET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | return; |
| 2329 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2330 | tlan_set_multicast_list(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2332 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2333 | |
| 2334 | |
| 2335 | |
| 2336 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2337 | /*************************************************************** |
| 2338 | * tlan_set_mac |
| 2339 | * |
| 2340 | * Returns: |
| 2341 | * Nothing |
| 2342 | * Parms: |
| 2343 | * dev Pointer to device structure of adapter |
| 2344 | * on which to change the AREG. |
| 2345 | * areg The AREG to set the address in (0 - 3). |
| 2346 | * mac A pointer to an array of chars. Each |
| 2347 | * element stores one byte of the address. |
| 2348 | * IE, it isn't in ascii. |
| 2349 | * |
| 2350 | * This function transfers a MAC address to one of the |
| 2351 | * TLAN AREGs (address registers). The TLAN chip locks |
| 2352 | * the register on writing to offset 0 and unlocks the |
| 2353 | * register after writing to offset 5. If NULL is passed |
| 2354 | * in mac, then the AREG is filled with 0's. |
| 2355 | * |
| 2356 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2357 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2358 | static void tlan_set_mac(struct net_device *dev, int areg, char *mac) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | { |
| 2360 | int i; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2362 | areg *= 6; |
| 2363 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2364 | if (mac != NULL) { |
| 2365 | for (i = 0; i < 6; i++) |
| 2366 | tlan_dio_write8(dev->base_addr, |
| 2367 | TLAN_AREG_0 + areg + i, mac[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2369 | for (i = 0; i < 6; i++) |
| 2370 | tlan_dio_write8(dev->base_addr, |
| 2371 | TLAN_AREG_0 + areg + i, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2372 | } |
| 2373 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2374 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2375 | |
| 2376 | |
| 2377 | |
| 2378 | |
| 2379 | /***************************************************************************** |
| 2380 | ****************************************************************************** |
| 2381 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2382 | ThunderLAN driver PHY layer routines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | |
| 2384 | ****************************************************************************** |
| 2385 | *****************************************************************************/ |
| 2386 | |
| 2387 | |
| 2388 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2389 | /********************************************************************* |
| 2390 | * tlan_phy_print |
| 2391 | * |
| 2392 | * Returns: |
| 2393 | * Nothing |
| 2394 | * Parms: |
| 2395 | * dev A pointer to the device structure of the |
| 2396 | * TLAN device having the PHYs to be detailed. |
| 2397 | * |
| 2398 | * This function prints the registers a PHY (aka transceiver). |
| 2399 | * |
| 2400 | ********************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2401 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2402 | static void tlan_phy_print(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2404 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | u16 i, data0, data1, data2, data3, phy; |
| 2406 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2407 | phy = priv->phy[priv->phy_num]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2408 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2409 | if (priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY) { |
| 2410 | pr_info("TLAN: Device %s, Unmanaged PHY.\n", dev->name); |
| 2411 | } else if (phy <= TLAN_PHY_MAX_ADDR) { |
| 2412 | pr_info("TLAN: Device %s, PHY 0x%02x.\n", dev->name, phy); |
| 2413 | pr_info("TLAN: Off. +0 +1 +2 +3\n"); |
| 2414 | for (i = 0; i < 0x20; i += 4) { |
| 2415 | pr_info("TLAN: 0x%02x", i); |
| 2416 | tlan_mii_read_reg(dev, phy, i, &data0); |
| 2417 | printk(" 0x%04hx", data0); |
| 2418 | tlan_mii_read_reg(dev, phy, i + 1, &data1); |
| 2419 | printk(" 0x%04hx", data1); |
| 2420 | tlan_mii_read_reg(dev, phy, i + 2, &data2); |
| 2421 | printk(" 0x%04hx", data2); |
| 2422 | tlan_mii_read_reg(dev, phy, i + 3, &data3); |
| 2423 | printk(" 0x%04hx\n", data3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2424 | } |
| 2425 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2426 | pr_info("TLAN: Device %s, Invalid PHY.\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | } |
| 2428 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2429 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | |
| 2431 | |
| 2432 | |
| 2433 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2434 | /********************************************************************* |
| 2435 | * tlan_phy_detect |
| 2436 | * |
| 2437 | * Returns: |
| 2438 | * Nothing |
| 2439 | * Parms: |
| 2440 | * dev A pointer to the device structure of the adapter |
| 2441 | * for which the PHY needs determined. |
| 2442 | * |
| 2443 | * So far I've found that adapters which have external PHYs |
| 2444 | * may also use the internal PHY for part of the functionality. |
| 2445 | * (eg, AUI/Thinnet). This function finds out if this TLAN |
| 2446 | * chip has an internal PHY, and then finds the first external |
| 2447 | * PHY (starting from address 0) if it exists). |
| 2448 | * |
| 2449 | ********************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2451 | static void tlan_phy_detect(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2452 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2453 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | u16 control; |
| 2455 | u16 hi; |
| 2456 | u16 lo; |
| 2457 | u32 phy; |
| 2458 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2459 | if (priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY) { |
| 2460 | priv->phy_num = 0xffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2461 | return; |
| 2462 | } |
| 2463 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2464 | tlan_mii_read_reg(dev, TLAN_PHY_MAX_ADDR, MII_GEN_ID_HI, &hi); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2465 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2466 | if (hi != 0xffff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | priv->phy[0] = TLAN_PHY_MAX_ADDR; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2468 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2469 | priv->phy[0] = TLAN_PHY_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2470 | |
| 2471 | priv->phy[1] = TLAN_PHY_NONE; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2472 | for (phy = 0; phy <= TLAN_PHY_MAX_ADDR; phy++) { |
| 2473 | tlan_mii_read_reg(dev, phy, MII_GEN_CTL, &control); |
| 2474 | tlan_mii_read_reg(dev, phy, MII_GEN_ID_HI, &hi); |
| 2475 | tlan_mii_read_reg(dev, phy, MII_GEN_ID_LO, &lo); |
| 2476 | if ((control != 0xffff) || |
| 2477 | (hi != 0xffff) || (lo != 0xffff)) { |
| 2478 | TLAN_DBG(TLAN_DEBUG_GNRL, |
| 2479 | "PHY found at %02x %04x %04x %04x\n", |
| 2480 | phy, control, hi, lo); |
| 2481 | if ((priv->phy[1] == TLAN_PHY_NONE) && |
| 2482 | (phy != TLAN_PHY_MAX_ADDR)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2483 | priv->phy[1] = phy; |
| 2484 | } |
| 2485 | } |
| 2486 | } |
| 2487 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2488 | if (priv->phy[1] != TLAN_PHY_NONE) |
| 2489 | priv->phy_num = 1; |
| 2490 | else if (priv->phy[0] != TLAN_PHY_NONE) |
| 2491 | priv->phy_num = 0; |
| 2492 | else |
| 2493 | pr_info("TLAN: Cannot initialize device, no PHY was found!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2494 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2495 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | |
| 2497 | |
| 2498 | |
| 2499 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2500 | static void tlan_phy_power_down(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2501 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2502 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | u16 value; |
| 2504 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2505 | TLAN_DBG(TLAN_DEBUG_GNRL, "%s: Powering down PHY(s).\n", dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2506 | value = MII_GC_PDOWN | MII_GC_LOOPBK | MII_GC_ISOLATE; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2507 | tlan_mii_sync(dev->base_addr); |
| 2508 | tlan_mii_write_reg(dev, priv->phy[priv->phy_num], MII_GEN_CTL, value); |
| 2509 | if ((priv->phy_num == 0) && |
| 2510 | (priv->phy[1] != TLAN_PHY_NONE) && |
| 2511 | (!(priv->adapter->flags & TLAN_ADAPTER_USE_INTERN_10))) { |
| 2512 | tlan_mii_sync(dev->base_addr); |
| 2513 | tlan_mii_write_reg(dev, priv->phy[1], MII_GEN_CTL, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | } |
| 2515 | |
| 2516 | /* Wait for 50 ms and powerup |
| 2517 | * This is abitrary. It is intended to make sure the |
| 2518 | * transceiver settles. |
| 2519 | */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2520 | tlan_set_timer(dev, (HZ/20), TLAN_TIMER_PHY_PUP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2522 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2523 | |
| 2524 | |
| 2525 | |
| 2526 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2527 | static void tlan_phy_power_up(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2528 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2529 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | u16 value; |
| 2531 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2532 | TLAN_DBG(TLAN_DEBUG_GNRL, "%s: Powering up PHY.\n", dev->name); |
| 2533 | tlan_mii_sync(dev->base_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2534 | value = MII_GC_LOOPBK; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2535 | tlan_mii_write_reg(dev, priv->phy[priv->phy_num], MII_GEN_CTL, value); |
| 2536 | tlan_mii_sync(dev->base_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2537 | /* Wait for 500 ms and reset the |
| 2538 | * transceiver. The TLAN docs say both 50 ms and |
| 2539 | * 500 ms, so do the longer, just in case. |
| 2540 | */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2541 | tlan_set_timer(dev, (HZ/20), TLAN_TIMER_PHY_RESET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2542 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2543 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2544 | |
| 2545 | |
| 2546 | |
| 2547 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2548 | static void tlan_phy_reset(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2549 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2550 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2551 | u16 phy; |
| 2552 | u16 value; |
| 2553 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2554 | phy = priv->phy[priv->phy_num]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2555 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2556 | TLAN_DBG(TLAN_DEBUG_GNRL, "%s: Reseting PHY.\n", dev->name); |
| 2557 | tlan_mii_sync(dev->base_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | value = MII_GC_LOOPBK | MII_GC_RESET; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2559 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, value); |
| 2560 | tlan_mii_read_reg(dev, phy, MII_GEN_CTL, &value); |
| 2561 | while (value & MII_GC_RESET) |
| 2562 | tlan_mii_read_reg(dev, phy, MII_GEN_CTL, &value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | |
| 2564 | /* Wait for 500 ms and initialize. |
| 2565 | * I don't remember why I wait this long. |
| 2566 | * I've changed this to 50ms, as it seems long enough. |
| 2567 | */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2568 | tlan_set_timer(dev, (HZ/20), TLAN_TIMER_PHY_START_LINK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2570 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 | |
| 2572 | |
| 2573 | |
| 2574 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2575 | static void tlan_phy_start_link(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2576 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2577 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2578 | u16 ability; |
| 2579 | u16 control; |
| 2580 | u16 data; |
| 2581 | u16 phy; |
| 2582 | u16 status; |
| 2583 | u16 tctl; |
| 2584 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2585 | phy = priv->phy[priv->phy_num]; |
| 2586 | TLAN_DBG(TLAN_DEBUG_GNRL, "%s: Trying to activate link.\n", dev->name); |
| 2587 | tlan_mii_read_reg(dev, phy, MII_GEN_STS, &status); |
| 2588 | tlan_mii_read_reg(dev, phy, MII_GEN_STS, &ability); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2589 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2590 | if ((status & MII_GS_AUTONEG) && |
| 2591 | (!priv->aui)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | ability = status >> 11; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2593 | if (priv->speed == TLAN_SPEED_10 && |
| 2594 | priv->duplex == TLAN_DUPLEX_HALF) { |
| 2595 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, 0x0000); |
| 2596 | } else if (priv->speed == TLAN_SPEED_10 && |
| 2597 | priv->duplex == TLAN_DUPLEX_FULL) { |
| 2598 | priv->tlan_full_duplex = true; |
| 2599 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, 0x0100); |
| 2600 | } else if (priv->speed == TLAN_SPEED_100 && |
| 2601 | priv->duplex == TLAN_DUPLEX_HALF) { |
| 2602 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, 0x2000); |
| 2603 | } else if (priv->speed == TLAN_SPEED_100 && |
| 2604 | priv->duplex == TLAN_DUPLEX_FULL) { |
| 2605 | priv->tlan_full_duplex = true; |
| 2606 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, 0x2100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2607 | } else { |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2609 | /* Set Auto-Neg advertisement */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2610 | tlan_mii_write_reg(dev, phy, MII_AN_ADV, |
| 2611 | (ability << 5) | 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | /* Enablee Auto-Neg */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2613 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, 0x1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2614 | /* Restart Auto-Neg */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2615 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, 0x1200); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2616 | /* Wait for 4 sec for autonegotiation |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2617 | * to complete. The max spec time is less than this |
| 2618 | * but the card need additional time to start AN. |
| 2619 | * .5 sec should be plenty extra. |
| 2620 | */ |
| 2621 | pr_info("TLAN: %s: Starting autonegotiation.\n", |
| 2622 | dev->name); |
| 2623 | tlan_set_timer(dev, (2*HZ), TLAN_TIMER_PHY_FINISH_AN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2624 | return; |
| 2625 | } |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2626 | |
| 2627 | } |
| 2628 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2629 | if ((priv->aui) && (priv->phy_num != 0)) { |
| 2630 | priv->phy_num = 0; |
| 2631 | data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN |
| 2632 | | TLAN_NET_CFG_PHY_EN; |
| 2633 | tlan_dio_write16(dev->base_addr, TLAN_NET_CONFIG, data); |
| 2634 | tlan_set_timer(dev, (40*HZ/1000), TLAN_TIMER_PHY_PDOWN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | return; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2636 | } else if (priv->phy_num == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | control = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2638 | tlan_mii_read_reg(dev, phy, TLAN_TLPHY_CTL, &tctl); |
| 2639 | if (priv->aui) { |
| 2640 | tctl |= TLAN_TC_AUISEL; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2641 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2642 | tctl &= ~TLAN_TC_AUISEL; |
| 2643 | if (priv->duplex == TLAN_DUPLEX_FULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2644 | control |= MII_GC_DUPLEX; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2645 | priv->tlan_full_duplex = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2646 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2647 | if (priv->speed == TLAN_SPEED_100) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2648 | control |= MII_GC_SPEEDSEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2649 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2650 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, control); |
| 2651 | tlan_mii_write_reg(dev, phy, TLAN_TLPHY_CTL, tctl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2652 | } |
| 2653 | |
| 2654 | /* Wait for 2 sec to give the transceiver time |
| 2655 | * to establish link. |
| 2656 | */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2657 | tlan_set_timer(dev, (4*HZ), TLAN_TIMER_FINISH_RESET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2658 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2659 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2660 | |
| 2661 | |
| 2662 | |
| 2663 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2664 | static void tlan_phy_finish_auto_neg(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2666 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2667 | u16 an_adv; |
| 2668 | u16 an_lpa; |
| 2669 | u16 data; |
| 2670 | u16 mode; |
| 2671 | u16 phy; |
| 2672 | u16 status; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2673 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2674 | phy = priv->phy[priv->phy_num]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2675 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2676 | tlan_mii_read_reg(dev, phy, MII_GEN_STS, &status); |
| 2677 | udelay(1000); |
| 2678 | tlan_mii_read_reg(dev, phy, MII_GEN_STS, &status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2680 | if (!(status & MII_GS_AUTOCMPLT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | /* Wait for 8 sec to give the process |
| 2682 | * more time. Perhaps we should fail after a while. |
| 2683 | */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2684 | if (!priv->neg_be_verbose++) { |
| 2685 | pr_info("TLAN: Giving autonegotiation more time.\n"); |
| 2686 | pr_info("TLAN: Please check that your adapter has\n"); |
| 2687 | pr_info("TLAN: been properly connected to a HUB or Switch.\n"); |
| 2688 | pr_info("TLAN: Trying to establish link in the background...\n"); |
| 2689 | } |
| 2690 | tlan_set_timer(dev, (8*HZ), TLAN_TIMER_PHY_FINISH_AN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2691 | return; |
| 2692 | } |
| 2693 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2694 | pr_info("TLAN: %s: Autonegotiation complete.\n", dev->name); |
| 2695 | tlan_mii_read_reg(dev, phy, MII_AN_ADV, &an_adv); |
| 2696 | tlan_mii_read_reg(dev, phy, MII_AN_LPA, &an_lpa); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2697 | mode = an_adv & an_lpa & 0x03E0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2698 | if (mode & 0x0100) |
| 2699 | priv->tlan_full_duplex = true; |
| 2700 | else if (!(mode & 0x0080) && (mode & 0x0040)) |
| 2701 | priv->tlan_full_duplex = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2703 | if ((!(mode & 0x0180)) && |
| 2704 | (priv->adapter->flags & TLAN_ADAPTER_USE_INTERN_10) && |
| 2705 | (priv->phy_num != 0)) { |
| 2706 | priv->phy_num = 0; |
| 2707 | data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN |
| 2708 | | TLAN_NET_CFG_PHY_EN; |
| 2709 | tlan_dio_write16(dev->base_addr, TLAN_NET_CONFIG, data); |
| 2710 | tlan_set_timer(dev, (400*HZ/1000), TLAN_TIMER_PHY_PDOWN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2711 | return; |
| 2712 | } |
| 2713 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2714 | if (priv->phy_num == 0) { |
| 2715 | if ((priv->duplex == TLAN_DUPLEX_FULL) || |
| 2716 | (an_adv & an_lpa & 0x0040)) { |
| 2717 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, |
| 2718 | MII_GC_AUTOENB | MII_GC_DUPLEX); |
| 2719 | pr_info("TLAN: Starting internal PHY with FULL-DUPLEX\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2721 | tlan_mii_write_reg(dev, phy, MII_GEN_CTL, |
| 2722 | MII_GC_AUTOENB); |
| 2723 | pr_info("TLAN: Starting internal PHY with HALF-DUPLEX\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2724 | } |
| 2725 | } |
| 2726 | |
| 2727 | /* Wait for 100 ms. No reason in partiticular. |
| 2728 | */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2729 | tlan_set_timer(dev, (HZ/10), TLAN_TIMER_FINISH_RESET); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2730 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2731 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | |
| 2733 | #ifdef MONITOR |
| 2734 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2735 | /********************************************************************* |
| 2736 | * |
| 2737 | * tlan_phy_monitor |
| 2738 | * |
| 2739 | * Returns: |
| 2740 | * None |
| 2741 | * |
| 2742 | * Params: |
| 2743 | * dev The device structure of this device. |
| 2744 | * |
| 2745 | * |
| 2746 | * This function monitors PHY condition by reading the status |
| 2747 | * register via the MII bus. This can be used to give info |
| 2748 | * about link changes (up/down), and possible switch to alternate |
| 2749 | * media. |
| 2750 | * |
| 2751 | *******************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2753 | void tlan_phy_monitor(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2755 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2756 | u16 phy; |
| 2757 | u16 phy_status; |
| 2758 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2759 | phy = priv->phy[priv->phy_num]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2761 | /* Get PHY status register */ |
| 2762 | tlan_mii_read_reg(dev, phy, MII_GEN_STS, &phy_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2764 | /* Check if link has been lost */ |
| 2765 | if (!(phy_status & MII_GS_LINK)) { |
| 2766 | if (priv->link) { |
| 2767 | priv->link = 0; |
| 2768 | printk(KERN_DEBUG "TLAN: %s has lost link\n", |
| 2769 | dev->name); |
| 2770 | netif_carrier_off(dev); |
| 2771 | tlan_set_timer(dev, (2*HZ), TLAN_TIMER_LINK_BEAT); |
| 2772 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2773 | } |
| 2774 | } |
| 2775 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2776 | /* Link restablished? */ |
| 2777 | if ((phy_status & MII_GS_LINK) && !priv->link) { |
| 2778 | priv->link = 1; |
| 2779 | printk(KERN_DEBUG "TLAN: %s has reestablished link\n", |
| 2780 | dev->name); |
| 7d17c1d | 2005-05-12 19:45:25 -0400 | [diff] [blame] | 2781 | netif_carrier_on(dev); |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2782 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2783 | |
| 2784 | /* Setup a new monitor */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2785 | tlan_set_timer(dev, (2*HZ), TLAN_TIMER_LINK_BEAT); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2786 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | |
| 2788 | #endif /* MONITOR */ |
| 2789 | |
| 2790 | |
| 2791 | /***************************************************************************** |
| 2792 | ****************************************************************************** |
| 2793 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2794 | ThunderLAN driver MII routines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2796 | these routines are based on the information in chap. 2 of the |
| 2797 | "ThunderLAN Programmer's Guide", pp. 15-24. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | |
| 2799 | ****************************************************************************** |
| 2800 | *****************************************************************************/ |
| 2801 | |
| 2802 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2803 | /*************************************************************** |
| 2804 | * tlan_mii_read_reg |
| 2805 | * |
| 2806 | * Returns: |
| 2807 | * false if ack received ok |
| 2808 | * true if no ack received or other error |
| 2809 | * |
| 2810 | * Parms: |
| 2811 | * dev The device structure containing |
| 2812 | * The io address and interrupt count |
| 2813 | * for this device. |
| 2814 | * phy The address of the PHY to be queried. |
| 2815 | * reg The register whose contents are to be |
| 2816 | * retrieved. |
| 2817 | * val A pointer to a variable to store the |
| 2818 | * retrieved value. |
| 2819 | * |
| 2820 | * This function uses the TLAN's MII bus to retrieve the contents |
| 2821 | * of a given register on a PHY. It sends the appropriate info |
| 2822 | * and then reads the 16-bit register value from the MII bus via |
| 2823 | * the TLAN SIO register. |
| 2824 | * |
| 2825 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2826 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2827 | static bool |
| 2828 | tlan_mii_read_reg(struct net_device *dev, u16 phy, u16 reg, u16 *val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2829 | { |
| 2830 | u8 nack; |
| 2831 | u16 sio, tmp; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2832 | u32 i; |
Joe Perches | 37fce43 | 2010-01-12 20:59:13 +0000 | [diff] [blame] | 2833 | bool err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2834 | int minten; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2835 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2836 | unsigned long flags = 0; |
| 2837 | |
Joe Perches | 37fce43 | 2010-01-12 20:59:13 +0000 | [diff] [blame] | 2838 | err = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | outw(TLAN_NET_SIO, dev->base_addr + TLAN_DIO_ADR); |
| 2840 | sio = dev->base_addr + TLAN_DIO_DATA + TLAN_NET_SIO; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | if (!in_irq()) |
| 2843 | spin_lock_irqsave(&priv->lock, flags); |
| 2844 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2845 | tlan_mii_sync(dev->base_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2847 | minten = tlan_get_bit(TLAN_NET_SIO_MINTEN, sio); |
| 2848 | if (minten) |
| 2849 | tlan_clear_bit(TLAN_NET_SIO_MINTEN, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2850 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2851 | tlan_mii_send_data(dev->base_addr, 0x1, 2); /* start (01b) */ |
| 2852 | tlan_mii_send_data(dev->base_addr, 0x2, 2); /* read (10b) */ |
| 2853 | tlan_mii_send_data(dev->base_addr, phy, 5); /* device # */ |
| 2854 | tlan_mii_send_data(dev->base_addr, reg, 5); /* register # */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | |
| 2856 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2857 | tlan_clear_bit(TLAN_NET_SIO_MTXEN, sio); /* change direction */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2858 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2859 | tlan_clear_bit(TLAN_NET_SIO_MCLK, sio); /* clock idle bit */ |
| 2860 | tlan_set_bit(TLAN_NET_SIO_MCLK, sio); |
| 2861 | tlan_clear_bit(TLAN_NET_SIO_MCLK, sio); /* wait 300ns */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2863 | nack = tlan_get_bit(TLAN_NET_SIO_MDATA, sio); /* check for ACK */ |
| 2864 | tlan_set_bit(TLAN_NET_SIO_MCLK, sio); /* finish ACK */ |
| 2865 | if (nack) { /* no ACK, so fake it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | for (i = 0; i < 16; i++) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2867 | tlan_clear_bit(TLAN_NET_SIO_MCLK, sio); |
| 2868 | tlan_set_bit(TLAN_NET_SIO_MCLK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2869 | } |
| 2870 | tmp = 0xffff; |
Joe Perches | 37fce43 | 2010-01-12 20:59:13 +0000 | [diff] [blame] | 2871 | err = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2872 | } else { /* ACK, so read data */ |
| 2873 | for (tmp = 0, i = 0x8000; i; i >>= 1) { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2874 | tlan_clear_bit(TLAN_NET_SIO_MCLK, sio); |
| 2875 | if (tlan_get_bit(TLAN_NET_SIO_MDATA, sio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2876 | tmp |= i; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2877 | tlan_set_bit(TLAN_NET_SIO_MCLK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2878 | } |
| 2879 | } |
| 2880 | |
| 2881 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2882 | tlan_clear_bit(TLAN_NET_SIO_MCLK, sio); /* idle cycle */ |
| 2883 | tlan_set_bit(TLAN_NET_SIO_MCLK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2884 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2885 | if (minten) |
| 2886 | tlan_set_bit(TLAN_NET_SIO_MINTEN, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2887 | |
| 2888 | *val = tmp; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 2889 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | if (!in_irq()) |
| 2891 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2892 | |
| 2893 | return err; |
| 2894 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2895 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | |
| 2897 | |
| 2898 | |
| 2899 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2900 | /*************************************************************** |
| 2901 | * tlan_mii_send_data |
| 2902 | * |
| 2903 | * Returns: |
| 2904 | * Nothing |
| 2905 | * Parms: |
| 2906 | * base_port The base IO port of the adapter in |
| 2907 | * question. |
| 2908 | * dev The address of the PHY to be queried. |
| 2909 | * data The value to be placed on the MII bus. |
| 2910 | * num_bits The number of bits in data that are to |
| 2911 | * be placed on the MII bus. |
| 2912 | * |
| 2913 | * This function sends on sequence of bits on the MII |
| 2914 | * configuration bus. |
| 2915 | * |
| 2916 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2917 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2918 | static void tlan_mii_send_data(u16 base_port, u32 data, unsigned num_bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2919 | { |
| 2920 | u16 sio; |
| 2921 | u32 i; |
| 2922 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2923 | if (num_bits == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | return; |
| 2925 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2926 | outw(TLAN_NET_SIO, base_port + TLAN_DIO_ADR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2927 | sio = base_port + TLAN_DIO_DATA + TLAN_NET_SIO; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2928 | tlan_set_bit(TLAN_NET_SIO_MTXEN, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2929 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2930 | for (i = (0x1 << (num_bits - 1)); i; i >>= 1) { |
| 2931 | tlan_clear_bit(TLAN_NET_SIO_MCLK, sio); |
| 2932 | (void) tlan_get_bit(TLAN_NET_SIO_MCLK, sio); |
| 2933 | if (data & i) |
| 2934 | tlan_set_bit(TLAN_NET_SIO_MDATA, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | else |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2936 | tlan_clear_bit(TLAN_NET_SIO_MDATA, sio); |
| 2937 | tlan_set_bit(TLAN_NET_SIO_MCLK, sio); |
| 2938 | (void) tlan_get_bit(TLAN_NET_SIO_MCLK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2939 | } |
| 2940 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2941 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2942 | |
| 2943 | |
| 2944 | |
| 2945 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2946 | /*************************************************************** |
| 2947 | * TLan_MiiSync |
| 2948 | * |
| 2949 | * Returns: |
| 2950 | * Nothing |
| 2951 | * Parms: |
| 2952 | * base_port The base IO port of the adapter in |
| 2953 | * question. |
| 2954 | * |
| 2955 | * This functions syncs all PHYs in terms of the MII configuration |
| 2956 | * bus. |
| 2957 | * |
| 2958 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2959 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2960 | static void tlan_mii_sync(u16 base_port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2961 | { |
| 2962 | int i; |
| 2963 | u16 sio; |
| 2964 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2965 | outw(TLAN_NET_SIO, base_port + TLAN_DIO_ADR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2966 | sio = base_port + TLAN_DIO_DATA + TLAN_NET_SIO; |
| 2967 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2968 | tlan_clear_bit(TLAN_NET_SIO_MTXEN, sio); |
| 2969 | for (i = 0; i < 32; i++) { |
| 2970 | tlan_clear_bit(TLAN_NET_SIO_MCLK, sio); |
| 2971 | tlan_set_bit(TLAN_NET_SIO_MCLK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2972 | } |
| 2973 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2974 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2975 | |
| 2976 | |
| 2977 | |
| 2978 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2979 | /*************************************************************** |
| 2980 | * tlan_mii_write_reg |
| 2981 | * |
| 2982 | * Returns: |
| 2983 | * Nothing |
| 2984 | * Parms: |
| 2985 | * dev The device structure for the device |
| 2986 | * to write to. |
| 2987 | * phy The address of the PHY to be written to. |
| 2988 | * reg The register whose contents are to be |
| 2989 | * written. |
| 2990 | * val The value to be written to the register. |
| 2991 | * |
| 2992 | * This function uses the TLAN's MII bus to write the contents of a |
| 2993 | * given register on a PHY. It sends the appropriate info and then |
| 2994 | * writes the 16-bit register value from the MII configuration bus |
| 2995 | * via the TLAN SIO register. |
| 2996 | * |
| 2997 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2998 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 2999 | static void |
| 3000 | tlan_mii_write_reg(struct net_device *dev, u16 phy, u16 reg, u16 val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3001 | { |
| 3002 | u16 sio; |
| 3003 | int minten; |
| 3004 | unsigned long flags = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3005 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | |
| 3007 | outw(TLAN_NET_SIO, dev->base_addr + TLAN_DIO_ADR); |
| 3008 | sio = dev->base_addr + TLAN_DIO_DATA + TLAN_NET_SIO; |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 3009 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3010 | if (!in_irq()) |
| 3011 | spin_lock_irqsave(&priv->lock, flags); |
| 3012 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3013 | tlan_mii_sync(dev->base_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3014 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3015 | minten = tlan_get_bit(TLAN_NET_SIO_MINTEN, sio); |
| 3016 | if (minten) |
| 3017 | tlan_clear_bit(TLAN_NET_SIO_MINTEN, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3018 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3019 | tlan_mii_send_data(dev->base_addr, 0x1, 2); /* start (01b) */ |
| 3020 | tlan_mii_send_data(dev->base_addr, 0x1, 2); /* write (01b) */ |
| 3021 | tlan_mii_send_data(dev->base_addr, phy, 5); /* device # */ |
| 3022 | tlan_mii_send_data(dev->base_addr, reg, 5); /* register # */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3024 | tlan_mii_send_data(dev->base_addr, 0x2, 2); /* send ACK */ |
| 3025 | tlan_mii_send_data(dev->base_addr, val, 16); /* send data */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3026 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3027 | tlan_clear_bit(TLAN_NET_SIO_MCLK, sio); /* idle cycle */ |
| 3028 | tlan_set_bit(TLAN_NET_SIO_MCLK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3029 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3030 | if (minten) |
| 3031 | tlan_set_bit(TLAN_NET_SIO_MINTEN, sio); |
Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 3032 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3033 | if (!in_irq()) |
| 3034 | spin_unlock_irqrestore(&priv->lock, flags); |
| 3035 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3036 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3037 | |
| 3038 | |
| 3039 | |
| 3040 | |
| 3041 | /***************************************************************************** |
| 3042 | ****************************************************************************** |
| 3043 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3044 | ThunderLAN driver eeprom routines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3045 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3046 | the Compaq netelligent 10 and 10/100 cards use a microchip 24C02A |
| 3047 | EEPROM. these functions are based on information in microchip's |
| 3048 | data sheet. I don't know how well this functions will work with |
| 3049 | other Eeproms. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3050 | |
| 3051 | ****************************************************************************** |
| 3052 | *****************************************************************************/ |
| 3053 | |
| 3054 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3055 | /*************************************************************** |
| 3056 | * tlan_ee_send_start |
| 3057 | * |
| 3058 | * Returns: |
| 3059 | * Nothing |
| 3060 | * Parms: |
| 3061 | * io_base The IO port base address for the |
| 3062 | * TLAN device with the EEPROM to |
| 3063 | * use. |
| 3064 | * |
| 3065 | * This function sends a start cycle to an EEPROM attached |
| 3066 | * to a TLAN chip. |
| 3067 | * |
| 3068 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3070 | static void tlan_ee_send_start(u16 io_base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3071 | { |
| 3072 | u16 sio; |
| 3073 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3074 | outw(TLAN_NET_SIO, io_base + TLAN_DIO_ADR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3075 | sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO; |
| 3076 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3077 | tlan_set_bit(TLAN_NET_SIO_ECLOK, sio); |
| 3078 | tlan_set_bit(TLAN_NET_SIO_EDATA, sio); |
| 3079 | tlan_set_bit(TLAN_NET_SIO_ETXEN, sio); |
| 3080 | tlan_clear_bit(TLAN_NET_SIO_EDATA, sio); |
| 3081 | tlan_clear_bit(TLAN_NET_SIO_ECLOK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3083 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3084 | |
| 3085 | |
| 3086 | |
| 3087 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3088 | /*************************************************************** |
| 3089 | * tlan_ee_send_byte |
| 3090 | * |
| 3091 | * Returns: |
| 3092 | * If the correct ack was received, 0, otherwise 1 |
| 3093 | * Parms: io_base The IO port base address for the |
| 3094 | * TLAN device with the EEPROM to |
| 3095 | * use. |
| 3096 | * data The 8 bits of information to |
| 3097 | * send to the EEPROM. |
| 3098 | * stop If TLAN_EEPROM_STOP is passed, a |
| 3099 | * stop cycle is sent after the |
| 3100 | * byte is sent after the ack is |
| 3101 | * read. |
| 3102 | * |
| 3103 | * This function sends a byte on the serial EEPROM line, |
| 3104 | * driving the clock to send each bit. The function then |
| 3105 | * reverses transmission direction and reads an acknowledge |
| 3106 | * bit. |
| 3107 | * |
| 3108 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3109 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3110 | static int tlan_ee_send_byte(u16 io_base, u8 data, int stop) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | { |
| 3112 | int err; |
| 3113 | u8 place; |
| 3114 | u16 sio; |
| 3115 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3116 | outw(TLAN_NET_SIO, io_base + TLAN_DIO_ADR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3117 | sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO; |
| 3118 | |
| 3119 | /* Assume clock is low, tx is enabled; */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3120 | for (place = 0x80; place != 0; place >>= 1) { |
| 3121 | if (place & data) |
| 3122 | tlan_set_bit(TLAN_NET_SIO_EDATA, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3123 | else |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3124 | tlan_clear_bit(TLAN_NET_SIO_EDATA, sio); |
| 3125 | tlan_set_bit(TLAN_NET_SIO_ECLOK, sio); |
| 3126 | tlan_clear_bit(TLAN_NET_SIO_ECLOK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3128 | tlan_clear_bit(TLAN_NET_SIO_ETXEN, sio); |
| 3129 | tlan_set_bit(TLAN_NET_SIO_ECLOK, sio); |
| 3130 | err = tlan_get_bit(TLAN_NET_SIO_EDATA, sio); |
| 3131 | tlan_clear_bit(TLAN_NET_SIO_ECLOK, sio); |
| 3132 | tlan_set_bit(TLAN_NET_SIO_ETXEN, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3133 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3134 | if ((!err) && stop) { |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 3135 | /* STOP, raise data while clock is high */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3136 | tlan_clear_bit(TLAN_NET_SIO_EDATA, sio); |
| 3137 | tlan_set_bit(TLAN_NET_SIO_ECLOK, sio); |
| 3138 | tlan_set_bit(TLAN_NET_SIO_EDATA, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3139 | } |
| 3140 | |
Eric Dumazet | 807540b | 2010-09-23 05:40:09 +0000 | [diff] [blame] | 3141 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3142 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3143 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3144 | |
| 3145 | |
| 3146 | |
| 3147 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3148 | /*************************************************************** |
| 3149 | * tlan_ee_receive_byte |
| 3150 | * |
| 3151 | * Returns: |
| 3152 | * Nothing |
| 3153 | * Parms: |
| 3154 | * io_base The IO port base address for the |
| 3155 | * TLAN device with the EEPROM to |
| 3156 | * use. |
| 3157 | * data An address to a char to hold the |
| 3158 | * data sent from the EEPROM. |
| 3159 | * stop If TLAN_EEPROM_STOP is passed, a |
| 3160 | * stop cycle is sent after the |
| 3161 | * byte is received, and no ack is |
| 3162 | * sent. |
| 3163 | * |
| 3164 | * This function receives 8 bits of data from the EEPROM |
| 3165 | * over the serial link. It then sends and ack bit, or no |
| 3166 | * ack and a stop bit. This function is used to retrieve |
| 3167 | * data after the address of a byte in the EEPROM has been |
| 3168 | * sent. |
| 3169 | * |
| 3170 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3171 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3172 | static void tlan_ee_receive_byte(u16 io_base, u8 *data, int stop) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3173 | { |
| 3174 | u8 place; |
| 3175 | u16 sio; |
| 3176 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3177 | outw(TLAN_NET_SIO, io_base + TLAN_DIO_ADR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3178 | sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO; |
| 3179 | *data = 0; |
| 3180 | |
| 3181 | /* Assume clock is low, tx is enabled; */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3182 | tlan_clear_bit(TLAN_NET_SIO_ETXEN, sio); |
| 3183 | for (place = 0x80; place; place >>= 1) { |
| 3184 | tlan_set_bit(TLAN_NET_SIO_ECLOK, sio); |
| 3185 | if (tlan_get_bit(TLAN_NET_SIO_EDATA, sio)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3186 | *data |= place; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3187 | tlan_clear_bit(TLAN_NET_SIO_ECLOK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3188 | } |
| 3189 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3190 | tlan_set_bit(TLAN_NET_SIO_ETXEN, sio); |
| 3191 | if (!stop) { |
| 3192 | tlan_clear_bit(TLAN_NET_SIO_EDATA, sio); /* ack = 0 */ |
| 3193 | tlan_set_bit(TLAN_NET_SIO_ECLOK, sio); |
| 3194 | tlan_clear_bit(TLAN_NET_SIO_ECLOK, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3195 | } else { |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3196 | tlan_set_bit(TLAN_NET_SIO_EDATA, sio); /* no ack = 1 (?) */ |
| 3197 | tlan_set_bit(TLAN_NET_SIO_ECLOK, sio); |
| 3198 | tlan_clear_bit(TLAN_NET_SIO_ECLOK, sio); |
Stephen Hemminger | dfc2c0a | 2008-05-30 09:49:58 -0700 | [diff] [blame] | 3199 | /* STOP, raise data while clock is high */ |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3200 | tlan_clear_bit(TLAN_NET_SIO_EDATA, sio); |
| 3201 | tlan_set_bit(TLAN_NET_SIO_ECLOK, sio); |
| 3202 | tlan_set_bit(TLAN_NET_SIO_EDATA, sio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3203 | } |
| 3204 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3205 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3206 | |
| 3207 | |
| 3208 | |
| 3209 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3210 | /*************************************************************** |
| 3211 | * tlan_ee_read_byte |
| 3212 | * |
| 3213 | * Returns: |
| 3214 | * No error = 0, else, the stage at which the error |
| 3215 | * occurred. |
| 3216 | * Parms: |
| 3217 | * io_base The IO port base address for the |
| 3218 | * TLAN device with the EEPROM to |
| 3219 | * use. |
| 3220 | * ee_addr The address of the byte in the |
| 3221 | * EEPROM whose contents are to be |
| 3222 | * retrieved. |
| 3223 | * data An address to a char to hold the |
| 3224 | * data obtained from the EEPROM. |
| 3225 | * |
| 3226 | * This function reads a byte of information from an byte |
| 3227 | * cell in the EEPROM. |
| 3228 | * |
| 3229 | **************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3231 | static int tlan_ee_read_byte(struct net_device *dev, u8 ee_addr, u8 *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3232 | { |
| 3233 | int err; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3234 | struct tlan_priv *priv = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | unsigned long flags = 0; |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3236 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3237 | |
| 3238 | spin_lock_irqsave(&priv->lock, flags); |
| 3239 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3240 | tlan_ee_send_start(dev->base_addr); |
| 3241 | err = tlan_ee_send_byte(dev->base_addr, 0xa0, TLAN_EEPROM_ACK); |
| 3242 | if (err) { |
| 3243 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3244 | goto fail; |
| 3245 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3246 | err = tlan_ee_send_byte(dev->base_addr, ee_addr, TLAN_EEPROM_ACK); |
| 3247 | if (err) { |
| 3248 | ret = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3249 | goto fail; |
| 3250 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3251 | tlan_ee_send_start(dev->base_addr); |
| 3252 | err = tlan_ee_send_byte(dev->base_addr, 0xa1, TLAN_EEPROM_ACK); |
| 3253 | if (err) { |
| 3254 | ret = 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3255 | goto fail; |
| 3256 | } |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3257 | tlan_ee_receive_byte(dev->base_addr, data, TLAN_EEPROM_STOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3258 | fail: |
| 3259 | spin_unlock_irqrestore(&priv->lock, flags); |
| 3260 | |
| 3261 | return ret; |
| 3262 | |
Sakari Ailus | c659c38 | 2011-01-21 10:59:30 +0000 | [diff] [blame] | 3263 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3264 | |
| 3265 | |
| 3266 | |