1 /*******************************************************************************
3 * Linux ThunderLAN Driver
8 * (C) 1997-1998 Caldera, Inc.
10 * (C) 1999-2001 Torben Mathiasen
11 * (C) 2002 Samuel Chessman
13 * This software may be used and distributed according to the terms
14 * of the GNU General Public License, incorporated herein by reference.
16 ** This file is best viewed/edited with columns>=132.
18 ** Useful (if not required) reading:
20 * Texas Instruments, ThunderLAN Programmer's Guide,
21 * TI Literature Number SPWU013A
22 * available in PDF format from www.ti.com
23 * Level One, LXT901 and LXT970 Data Sheets
24 * available in PDF format from www.level1.com
25 * National Semiconductor, DP83840A Data Sheet
26 * available in PDF format from www.national.com
27 * Microchip Technology, 24C01A/02A/04A Data Sheet
28 * available in PDF format from www.microchip.com
32 * Tigran Aivazian <tigran@sco.com>: TLan_PciProbe() now uses
33 * new PCI BIOS interface.
34 * Alan Cox <alan@redhat.com>: Fixed the out of memory
37 * Torben Mathiasen <torben.mathiasen@compaq.com> New Maintainer!
39 * v1.1 Dec 20, 1999 - Removed linux version checking
40 * Patch from Tigran Aivazian.
41 * - v1.1 includes Alan's SMP updates.
42 * - We still have problems on SMP though,
43 * but I'm looking into that.
45 * v1.2 Jan 02, 2000 - Hopefully fixed the SMP deadlock.
46 * - Removed dependency of HZ being 100.
47 * - We now allow higher priority timers to
48 * overwrite timers like TLAN_TIMER_ACTIVITY
49 * Patch from John Cagle <john.cagle@compaq.com>.
50 * - Fixed a few compiler warnings.
52 * v1.3 Feb 04, 2000 - Fixed the remaining HZ issues.
53 * - Removed call to pci_present().
54 * - Removed SA_INTERRUPT flag from irq handler.
55 * - Added __init and __initdata to reduce resisdent
57 * - Driver now uses module_init/module_exit.
58 * - Rewrote init_module and tlan_probe to
59 * share a lot more code. We now use tlan_probe
60 * with builtin and module driver.
61 * - Driver ported to new net API.
62 * - tlan.txt has been reworked to reflect current
66 * v1.4 Feb 10, 2000 - Updated with more changes required after Dave's
67 * network cleanup in 2.3.43pre7 (Tigran & myself)
70 * v1.5 March 22, 2000 - Fixed another timer bug that would hang the driver
71 * if no cable/link were present.
73 * - TODO: Port completely to new PCI/DMA API
76 * v1.6 April 04, 2000 - Fixed driver support for kernel-parameters. Haven't
77 * tested it though, as the kernel support is currently
78 * broken (2.3.99p4p3).
79 * - Updated tlan.txt accordingly.
80 * - Adjusted minimum/maximum frame length.
81 * - There is now a TLAN website up at
82 * http://tlan.kernel.dk
84 * v1.7 April 07, 2000 - Started to implement custom ioctls. Driver now
85 * reports PHY information when used with Donald
86 * Beckers userspace MII diagnostics utility.
88 * v1.8 April 23, 2000 - Fixed support for forced speed/duplex settings.
89 * - Added link information to Auto-Neg and forced
90 * modes. When NIC operates with auto-neg the driver
91 * will report Link speed & duplex modes as well as
92 * link partner abilities. When forced link is used,
93 * the driver will report status of the established
95 * Please read tlan.txt for additional information.
96 * - Removed call to check_region(), and used
97 * return value of request_region() instead.
99 * v1.8a May 28, 2000 - Minor updates.
101 * v1.9 July 25, 2000 - Fixed a few remaining Full-Duplex issues.
102 * - Updated with timer fixes from Andrew Morton.
103 * - Fixed module race in TLan_Open.
104 * - Added routine to monitor PHY status.
105 * - Added activity led support for Proliant devices.
107 * v1.10 Aug 30, 2000 - Added support for EISA based tlan controllers
108 * like the Compaq NetFlex3/E.
109 * - Rewrote tlan_probe to better handle multiple
110 * bus probes. Probing and device setup is now
111 * done through TLan_Probe and TLan_init_one. Actual
112 * hardware probe is done with kernel API and
114 * - Adjusted debug information for probing.
115 * - Fixed bug that would cause general debug information
116 * to be printed after driver removal.
117 * - Added transmit timeout handling.
118 * - Fixed OOM return values in tlan_probe.
119 * - Fixed possible mem leak in tlan_exit
120 * (now tlan_remove_one).
121 * - Fixed timer bug in TLan_phyMonitor.
122 * - This driver version is alpha quality, please
123 * send me any bug issues you may encounter.
125 * v1.11 Aug 31, 2000 - Do not try to register irq 0 if no irq line was
126 * set for EISA cards.
127 * - Added support for NetFlex3/E with nibble-rate
128 * 10Base-T PHY. This is untestet as I haven't got
129 * one of these cards.
130 * - Fixed timer being added twice.
131 * - Disabled PhyMonitoring by default as this is
132 * work in progress. Define MONITOR to enable it.
133 * - Now we don't display link info with PHYs that
134 * doesn't support it (level1).
135 * - Incresed tx_timeout beacuse of auto-neg.
136 * - Adjusted timers for forced speeds.
138 * v1.12 Oct 12, 2000 - Minor fixes (memleak, init, etc.)
140 * v1.13 Nov 28, 2000 - Stop flooding console with auto-neg issues
141 * when link can't be established.
142 * - Added the bbuf option as a kernel parameter.
143 * - Fixed ioaddr probe bug.
144 * - Fixed stupid deadlock with MII interrupts.
145 * - Added support for speed/duplex selection with
147 * - Added partly fix for TX Channel lockup with
148 * TLAN v1.0 silicon. This needs to be investigated
151 * v1.14 Dec 16, 2000 - Added support for servicing multiple frames per.
152 * interrupt. Thanks goes to
153 * Adam Keys <adam@ti.com>
154 * Denis Beaudoin <dbeaudoin@ti.com>
155 * for providing the patch.
156 * - Fixed auto-neg output when using multiple
158 * - Converted to use new taskq interface.
160 * v1.14a Jan 6, 2001 - Minor adjustments (spinlocks, etc.)
162 * Samuel Chessman <chessman@tux.org> New Maintainer!
164 * v1.15 Apr 4, 2002 - Correct operation when aui=1 to be
165 * 10T half duplex no loopback
166 * Thanks to Gunnar Eikman
167 *******************************************************************************/
169 #include <linux/module.h>
170 #include <linux/init.h>
171 #include <linux/ioport.h>
172 #include <linux/eisa.h>
173 #include <linux/pci.h>
174 #include <linux/dma-mapping.h>
175 #include <linux/netdevice.h>
176 #include <linux/etherdevice.h>
177 #include <linux/delay.h>
178 #include <linux/spinlock.h>
179 #include <linux/workqueue.h>
180 #include <linux/mii.h>
184 typedef u32 (TLanIntVectorFunc)( struct net_device *, u16 );
187 /* For removing EISA devices */
188 static struct net_device *TLan_Eisa_Devices;
190 static int TLanDevicesInstalled;
192 /* Set speed, duplex and aui settings */
193 static int aui[MAX_TLAN_BOARDS];
194 static int duplex[MAX_TLAN_BOARDS];
195 static int speed[MAX_TLAN_BOARDS];
196 static int boards_found;
197 module_param_array(aui, int, NULL, 0);
198 module_param_array(duplex, int, NULL, 0);
199 module_param_array(speed, int, NULL, 0);
200 MODULE_PARM_DESC(aui, "ThunderLAN use AUI port(s) (0-1)");
201 MODULE_PARM_DESC(duplex, "ThunderLAN duplex setting(s) (0-default, 1-half, 2-full)");
202 MODULE_PARM_DESC(speed, "ThunderLAN port speen setting(s) (0,10,100)");
204 MODULE_AUTHOR("Maintainer: Samuel Chessman <chessman@tux.org>");
205 MODULE_DESCRIPTION("Driver for TI ThunderLAN based ethernet PCI adapters");
206 MODULE_LICENSE("GPL");
209 /* Define this to enable Link beat monitoring */
212 /* Turn on debugging. See Documentation/networking/tlan.txt for details */
214 module_param(debug, int, 0);
215 MODULE_PARM_DESC(debug, "ThunderLAN debug mask");
218 module_param(bbuf, int, 0);
219 MODULE_PARM_DESC(bbuf, "ThunderLAN use big buffer (0-1)");
221 static u8 *TLanPadBuffer;
222 static dma_addr_t TLanPadBufferDMA;
223 static char TLanSignature[] = "TLAN";
224 static const char tlan_banner[] = "ThunderLAN driver v1.15\n";
225 static int tlan_have_pci;
226 static int tlan_have_eisa;
228 static const char *media[] = {
229 "10BaseT-HD ", "10BaseT-FD ","100baseTx-HD ",
230 "100baseTx-FD", "100baseT4", NULL
233 static struct board {
234 const char *deviceLabel;
238 { "Compaq Netelligent 10 T PCI UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 },
239 { "Compaq Netelligent 10/100 TX PCI UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 },
240 { "Compaq Integrated NetFlex-3/P", TLAN_ADAPTER_NONE, 0x83 },
241 { "Compaq NetFlex-3/P", TLAN_ADAPTER_UNMANAGED_PHY | TLAN_ADAPTER_BIT_RATE_PHY, 0x83 },
242 { "Compaq NetFlex-3/P", TLAN_ADAPTER_NONE, 0x83 },
243 { "Compaq Netelligent Integrated 10/100 TX UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 },
244 { "Compaq Netelligent Dual 10/100 TX PCI UTP", TLAN_ADAPTER_NONE, 0x83 },
245 { "Compaq Netelligent 10/100 TX Embedded UTP", TLAN_ADAPTER_NONE, 0x83 },
246 { "Olicom OC-2183/2185", TLAN_ADAPTER_USE_INTERN_10, 0x83 },
247 { "Olicom OC-2325", TLAN_ADAPTER_UNMANAGED_PHY, 0xF8 },
248 { "Olicom OC-2326", TLAN_ADAPTER_USE_INTERN_10, 0xF8 },
249 { "Compaq Netelligent 10/100 TX UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 },
250 { "Compaq Netelligent 10 T/2 PCI UTP/Coax", TLAN_ADAPTER_NONE, 0x83 },
251 { "Compaq NetFlex-3/E", TLAN_ADAPTER_ACTIVITY_LED | /* EISA card */
252 TLAN_ADAPTER_UNMANAGED_PHY | TLAN_ADAPTER_BIT_RATE_PHY, 0x83 },
253 { "Compaq NetFlex-3/E", TLAN_ADAPTER_ACTIVITY_LED, 0x83 }, /* EISA card */
256 static struct pci_device_id tlan_pci_tbl[] = {
257 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL10,
258 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
259 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100,
260 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1 },
261 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETFLEX3I,
262 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2 },
263 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_THUNDER,
264 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3 },
265 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETFLEX3B,
266 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 },
267 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100PI,
268 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 5 },
269 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100D,
270 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 6 },
271 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100I,
272 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 7 },
273 { PCI_VENDOR_ID_OLICOM, PCI_DEVICE_ID_OLICOM_OC2183,
274 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 8 },
275 { PCI_VENDOR_ID_OLICOM, PCI_DEVICE_ID_OLICOM_OC2325,
276 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 9 },
277 { PCI_VENDOR_ID_OLICOM, PCI_DEVICE_ID_OLICOM_OC2326,
278 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 10 },
279 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_NETELLIGENT_10_100_WS_5100,
280 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 11 },
281 { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_NETELLIGENT_10_T2,
282 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 12 },
285 MODULE_DEVICE_TABLE(pci, tlan_pci_tbl);
287 static void TLan_EisaProbe( void );
288 static void TLan_Eisa_Cleanup( void );
289 static int TLan_Init( struct net_device * );
290 static int TLan_Open( struct net_device *dev );
291 static int TLan_StartTx( struct sk_buff *, struct net_device *);
292 static irqreturn_t TLan_HandleInterrupt( int, void *);
293 static int TLan_Close( struct net_device *);
294 static struct net_device_stats *TLan_GetStats( struct net_device *);
295 static void TLan_SetMulticastList( struct net_device *);
296 static int TLan_ioctl( struct net_device *dev, struct ifreq *rq, int cmd);
297 static int TLan_probe1( struct pci_dev *pdev, long ioaddr, int irq, int rev, const struct pci_device_id *ent);
298 static void TLan_tx_timeout( struct net_device *dev);
299 static void TLan_tx_timeout_work(struct work_struct *work);
300 static int tlan_init_one( struct pci_dev *pdev, const struct pci_device_id *ent);
302 static u32 TLan_HandleInvalid( struct net_device *, u16 );
303 static u32 TLan_HandleTxEOF( struct net_device *, u16 );
304 static u32 TLan_HandleStatOverflow( struct net_device *, u16 );
305 static u32 TLan_HandleRxEOF( struct net_device *, u16 );
306 static u32 TLan_HandleDummy( struct net_device *, u16 );
307 static u32 TLan_HandleTxEOC( struct net_device *, u16 );
308 static u32 TLan_HandleStatusCheck( struct net_device *, u16 );
309 static u32 TLan_HandleRxEOC( struct net_device *, u16 );
311 static void TLan_Timer( unsigned long );
313 static void TLan_ResetLists( struct net_device * );
314 static void TLan_FreeLists( struct net_device * );
315 static void TLan_PrintDio( u16 );
316 static void TLan_PrintList( TLanList *, char *, int );
317 static void TLan_ReadAndClearStats( struct net_device *, int );
318 static void TLan_ResetAdapter( struct net_device * );
319 static void TLan_FinishReset( struct net_device * );
320 static void TLan_SetMac( struct net_device *, int areg, char *mac );
322 static void TLan_PhyPrint( struct net_device * );
323 static void TLan_PhyDetect( struct net_device * );
324 static void TLan_PhyPowerDown( struct net_device * );
325 static void TLan_PhyPowerUp( struct net_device * );
326 static void TLan_PhyReset( struct net_device * );
327 static void TLan_PhyStartLink( struct net_device * );
328 static void TLan_PhyFinishAutoNeg( struct net_device * );
330 static void TLan_PhyMonitor( struct net_device * );
334 static int TLan_PhyNop( struct net_device * );
335 static int TLan_PhyInternalCheck( struct net_device * );
336 static int TLan_PhyInternalService( struct net_device * );
337 static int TLan_PhyDp83840aCheck( struct net_device * );
340 static int TLan_MiiReadReg( struct net_device *, u16, u16, u16 * );
341 static void TLan_MiiSendData( u16, u32, unsigned );
342 static void TLan_MiiSync( u16 );
343 static void TLan_MiiWriteReg( struct net_device *, u16, u16, u16 );
345 static void TLan_EeSendStart( u16 );
346 static int TLan_EeSendByte( u16, u8, int );
347 static void TLan_EeReceiveByte( u16, u8 *, int );
348 static int TLan_EeReadByte( struct net_device *, u8, u8 * );
352 TLan_StoreSKB( struct tlan_list_tag *tag, struct sk_buff *skb)
354 unsigned long addr = (unsigned long)skb;
355 tag->buffer[9].address = (u32)addr;
356 addr >>= 31; /* >>= 32 is undefined for 32bit arch, stupid C */
358 tag->buffer[8].address = (u32)addr;
361 static struct sk_buff *
362 TLan_GetSKB( struct tlan_list_tag *tag)
364 unsigned long addr = tag->buffer[8].address;
367 addr |= tag->buffer[9].address;
368 return (struct sk_buff *) addr;
372 static TLanIntVectorFunc *TLanIntVector[TLAN_INT_NUMBER_OF_INTS] = {
375 TLan_HandleStatOverflow,
379 TLan_HandleStatusCheck,
384 TLan_SetTimer( struct net_device *dev, u32 ticks, u32 type )
386 TLanPrivateInfo *priv = netdev_priv(dev);
387 unsigned long flags = 0;
390 spin_lock_irqsave(&priv->lock, flags);
391 if ( priv->timer.function != NULL &&
392 priv->timerType != TLAN_TIMER_ACTIVITY ) {
394 spin_unlock_irqrestore(&priv->lock, flags);
397 priv->timer.function = &TLan_Timer;
399 spin_unlock_irqrestore(&priv->lock, flags);
401 priv->timer.data = (unsigned long) dev;
402 priv->timerSetAt = jiffies;
403 priv->timerType = type;
404 mod_timer(&priv->timer, jiffies + ticks);
406 } /* TLan_SetTimer */
409 /*****************************************************************************
410 ******************************************************************************
412 ThunderLAN Driver Primary Functions
414 These functions are more or less common to all Linux network drivers.
416 ******************************************************************************
417 *****************************************************************************/
423 /***************************************************************
431 * Goes through the TLanDevices list and frees the device
432 * structs and memory associated with each device (lists
433 * and buffers). It also ureserves the IO port regions
434 * associated with this device.
436 **************************************************************/
439 static void __devexit tlan_remove_one( struct pci_dev *pdev)
441 struct net_device *dev = pci_get_drvdata( pdev );
442 TLanPrivateInfo *priv = netdev_priv(dev);
444 unregister_netdev( dev );
446 if ( priv->dmaStorage ) {
447 pci_free_consistent(priv->pciDev, priv->dmaSize, priv->dmaStorage, priv->dmaStorageDMA );
451 pci_release_regions(pdev);
456 pci_set_drvdata( pdev, NULL );
459 static struct pci_driver tlan_driver = {
461 .id_table = tlan_pci_tbl,
462 .probe = tlan_init_one,
463 .remove = __devexit_p(tlan_remove_one),
466 static int __init tlan_probe(void)
468 static int pad_allocated;
470 printk(KERN_INFO "%s", tlan_banner);
472 TLanPadBuffer = (u8 *) pci_alloc_consistent(NULL, TLAN_MIN_FRAME_SIZE, &TLanPadBufferDMA);
474 if (TLanPadBuffer == NULL) {
475 printk(KERN_ERR "TLAN: Could not allocate memory for pad buffer.\n");
479 memset(TLanPadBuffer, 0, TLAN_MIN_FRAME_SIZE);
482 TLAN_DBG(TLAN_DEBUG_PROBE, "Starting PCI Probe....\n");
484 /* Use new style PCI probing. Now the kernel will
485 do most of this for us */
486 pci_register_driver(&tlan_driver);
488 TLAN_DBG(TLAN_DEBUG_PROBE, "Starting EISA Probe....\n");
491 printk(KERN_INFO "TLAN: %d device%s installed, PCI: %d EISA: %d\n",
492 TLanDevicesInstalled, TLanDevicesInstalled == 1 ? "" : "s",
493 tlan_have_pci, tlan_have_eisa);
495 if (TLanDevicesInstalled == 0) {
496 pci_unregister_driver(&tlan_driver);
497 pci_free_consistent(NULL, TLAN_MIN_FRAME_SIZE, TLanPadBuffer, TLanPadBufferDMA);
504 static int __devinit tlan_init_one( struct pci_dev *pdev,
505 const struct pci_device_id *ent)
507 return TLan_probe1( pdev, -1, -1, 0, ent);
512 ***************************************************************
516 * 0 on success, error code on error
520 * The name is lower case to fit in with all the rest of
521 * the netcard_probe names. This function looks for
522 * another TLan based adapter, setting it up with the
523 * allocated device struct if one is found.
524 * tlan_probe has been ported to the new net API and
525 * now allocates its own device structure. This function
526 * is also used by modules.
528 **************************************************************/
530 static int __devinit TLan_probe1(struct pci_dev *pdev,
531 long ioaddr, int irq, int rev, const struct pci_device_id *ent )
534 struct net_device *dev;
535 TLanPrivateInfo *priv;
537 int reg, rc = -ENODEV;
541 rc = pci_enable_device(pdev);
545 rc = pci_request_regions(pdev, TLanSignature);
547 printk(KERN_ERR "TLAN: Could not reserve IO regions\n");
551 #endif /* CONFIG_PCI */
553 dev = alloc_etherdev(sizeof(TLanPrivateInfo));
555 printk(KERN_ERR "TLAN: Could not allocate memory for device.\n");
557 goto err_out_regions;
559 SET_MODULE_OWNER(dev);
560 SET_NETDEV_DEV(dev, &pdev->dev);
562 priv = netdev_priv(dev);
567 /* Is this a PCI device? */
571 priv->adapter = &board_info[ent->driver_data];
573 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
575 printk(KERN_ERR "TLAN: No suitable PCI mapping available.\n");
576 goto err_out_free_dev;
579 for ( reg= 0; reg <= 5; reg ++ ) {
580 if (pci_resource_flags(pdev, reg) & IORESOURCE_IO) {
581 pci_io_base = pci_resource_start(pdev, reg);
582 TLAN_DBG( TLAN_DEBUG_GNRL, "IO mapping is available at %x.\n",
588 printk(KERN_ERR "TLAN: No IO mappings available\n");
590 goto err_out_free_dev;
593 dev->base_addr = pci_io_base;
594 dev->irq = pdev->irq;
595 priv->adapterRev = pdev->revision;
596 pci_set_master(pdev);
597 pci_set_drvdata(pdev, dev);
599 } else { /* EISA card */
600 /* This is a hack. We need to know which board structure
601 * is suited for this adapter */
602 device_id = inw(ioaddr + EISA_ID2);
604 if (device_id == 0x20F1) {
605 priv->adapter = &board_info[13]; /* NetFlex-3/E */
606 priv->adapterRev = 23; /* TLAN 2.3 */
608 priv->adapter = &board_info[14];
609 priv->adapterRev = 10; /* TLAN 1.0 */
611 dev->base_addr = ioaddr;
615 /* Kernel parameters */
616 if (dev->mem_start) {
617 priv->aui = dev->mem_start & 0x01;
618 priv->duplex = ((dev->mem_start & 0x06) == 0x06) ? 0 : (dev->mem_start & 0x06) >> 1;
619 priv->speed = ((dev->mem_start & 0x18) == 0x18) ? 0 : (dev->mem_start & 0x18) >> 3;
621 if (priv->speed == 0x1) {
622 priv->speed = TLAN_SPEED_10;
623 } else if (priv->speed == 0x2) {
624 priv->speed = TLAN_SPEED_100;
626 debug = priv->debug = dev->mem_end;
628 priv->aui = aui[boards_found];
629 priv->speed = speed[boards_found];
630 priv->duplex = duplex[boards_found];
634 /* This will be used when we get an adapter error from
635 * within our irq handler */
636 INIT_WORK(&priv->tlan_tqueue, TLan_tx_timeout_work);
638 spin_lock_init(&priv->lock);
642 printk(KERN_ERR "TLAN: Could not set up device.\n");
643 goto err_out_free_dev;
646 rc = register_netdev(dev);
648 printk(KERN_ERR "TLAN: Could not register device.\n");
653 TLanDevicesInstalled++;
656 /* pdev is NULL if this is an EISA device */
660 priv->nextDevice = TLan_Eisa_Devices;
661 TLan_Eisa_Devices = dev;
665 printk(KERN_INFO "TLAN: %s irq=%2d, io=%04x, %s, Rev. %d\n",
668 (int) dev->base_addr,
669 priv->adapter->deviceLabel,
674 pci_free_consistent(priv->pciDev, priv->dmaSize, priv->dmaStorage,
675 priv->dmaStorageDMA );
681 pci_release_regions(pdev);
685 pci_disable_device(pdev);
690 static void TLan_Eisa_Cleanup(void)
692 struct net_device *dev;
693 TLanPrivateInfo *priv;
695 while( tlan_have_eisa ) {
696 dev = TLan_Eisa_Devices;
697 priv = netdev_priv(dev);
698 if (priv->dmaStorage) {
699 pci_free_consistent(priv->pciDev, priv->dmaSize, priv->dmaStorage, priv->dmaStorageDMA );
701 release_region( dev->base_addr, 0x10);
702 unregister_netdev( dev );
703 TLan_Eisa_Devices = priv->nextDevice;
710 static void __exit tlan_exit(void)
712 pci_unregister_driver(&tlan_driver);
717 pci_free_consistent(NULL, TLAN_MIN_FRAME_SIZE, TLanPadBuffer, TLanPadBufferDMA);
722 /* Module loading/unloading */
723 module_init(tlan_probe);
724 module_exit(tlan_exit);
728 /**************************************************************
731 * Returns: 0 on success, 1 otherwise
736 * This functions probes for EISA devices and calls
737 * TLan_probe1 when one is found.
739 *************************************************************/
741 static void __init TLan_EisaProbe (void)
749 TLAN_DBG(TLAN_DEBUG_PROBE, "No EISA bus present\n");
753 /* Loop through all slots of the EISA bus */
754 for (ioaddr = 0x1000; ioaddr < 0x9000; ioaddr += 0x1000) {
756 TLAN_DBG(TLAN_DEBUG_PROBE,"EISA_ID 0x%4x: 0x%4x\n", (int) ioaddr + 0xC80, inw(ioaddr + EISA_ID));
757 TLAN_DBG(TLAN_DEBUG_PROBE,"EISA_ID 0x%4x: 0x%4x\n", (int) ioaddr + 0xC82, inw(ioaddr + EISA_ID2));
760 TLAN_DBG(TLAN_DEBUG_PROBE, "Probing for EISA adapter at IO: 0x%4x : ",
762 if (request_region(ioaddr, 0x10, TLanSignature) == NULL)
765 if (inw(ioaddr + EISA_ID) != 0x110E) {
766 release_region(ioaddr, 0x10);
770 device_id = inw(ioaddr + EISA_ID2);
771 if (device_id != 0x20F1 && device_id != 0x40F1) {
772 release_region (ioaddr, 0x10);
776 if (inb(ioaddr + EISA_CR) != 0x1) { /* Check if adapter is enabled */
777 release_region (ioaddr, 0x10);
782 printk("Found one\n");
785 /* Get irq from board */
786 switch (inb(ioaddr + 0xCC0)) {
804 /* Setup the newly found eisa adapter */
805 rc = TLan_probe1( NULL, ioaddr, irq,
811 printk("None found\n");
814 out2: if (debug == 0x10)
815 printk("Card found but it is not enabled, skipping\n");
820 } /* TLan_EisaProbe */
822 #ifdef CONFIG_NET_POLL_CONTROLLER
823 static void TLan_Poll(struct net_device *dev)
825 disable_irq(dev->irq);
826 TLan_HandleInterrupt(dev->irq, dev);
827 enable_irq(dev->irq);
834 /***************************************************************
838 * 0 on success, error code otherwise.
840 * dev The structure of the device to be
843 * This function completes the initialization of the
844 * device structure and driver. It reserves the IO
845 * addresses, allocates memory for the lists and bounce
846 * buffers, retrieves the MAC address from the eeprom
847 * and assignes the device's methods.
849 **************************************************************/
851 static int TLan_Init( struct net_device *dev )
856 TLanPrivateInfo *priv;
858 priv = netdev_priv(dev);
861 dma_size = ( TLAN_NUM_RX_LISTS + TLAN_NUM_TX_LISTS )
862 * ( sizeof(TLanList) + TLAN_MAX_FRAME_SIZE );
864 dma_size = ( TLAN_NUM_RX_LISTS + TLAN_NUM_TX_LISTS )
865 * ( sizeof(TLanList) );
867 priv->dmaStorage = pci_alloc_consistent(priv->pciDev, dma_size, &priv->dmaStorageDMA);
868 priv->dmaSize = dma_size;
870 if ( priv->dmaStorage == NULL ) {
871 printk(KERN_ERR "TLAN: Could not allocate lists and buffers for %s.\n",
875 memset( priv->dmaStorage, 0, dma_size );
876 priv->rxList = (TLanList *)
877 ( ( ( (u32) priv->dmaStorage ) + 7 ) & 0xFFFFFFF8 );
878 priv->rxListDMA = ( ( ( (u32) priv->dmaStorageDMA ) + 7 ) & 0xFFFFFFF8 );
879 priv->txList = priv->rxList + TLAN_NUM_RX_LISTS;
880 priv->txListDMA = priv->rxListDMA + sizeof(TLanList) * TLAN_NUM_RX_LISTS;
882 priv->rxBuffer = (u8 *) ( priv->txList + TLAN_NUM_TX_LISTS );
883 priv->rxBufferDMA =priv->txListDMA + sizeof(TLanList) * TLAN_NUM_TX_LISTS;
884 priv->txBuffer = priv->rxBuffer + ( TLAN_NUM_RX_LISTS * TLAN_MAX_FRAME_SIZE );
885 priv->txBufferDMA = priv->rxBufferDMA + ( TLAN_NUM_RX_LISTS * TLAN_MAX_FRAME_SIZE );
889 for ( i = 0; i < 6 ; i++ )
890 err |= TLan_EeReadByte( dev,
891 (u8) priv->adapter->addrOfs + i,
892 (u8 *) &dev->dev_addr[i] );
894 printk(KERN_ERR "TLAN: %s: Error reading MAC from eeprom: %d\n",
900 netif_carrier_off(dev);
903 dev->open = &TLan_Open;
904 dev->hard_start_xmit = &TLan_StartTx;
905 dev->stop = &TLan_Close;
906 dev->get_stats = &TLan_GetStats;
907 dev->set_multicast_list = &TLan_SetMulticastList;
908 dev->do_ioctl = &TLan_ioctl;
909 #ifdef CONFIG_NET_POLL_CONTROLLER
910 dev->poll_controller = &TLan_Poll;
912 dev->tx_timeout = &TLan_tx_timeout;
913 dev->watchdog_timeo = TX_TIMEOUT;
922 /***************************************************************
926 * 0 on success, error code otherwise.
928 * dev Structure of device to be opened.
930 * This routine puts the driver and TLAN adapter in a
931 * state where it is ready to send and receive packets.
932 * It allocates the IRQ, resets and brings the adapter
933 * out of reset, and allows interrupts. It also delays
934 * the startup for autonegotiation or sends a Rx GO
935 * command to the adapter, as appropriate.
937 **************************************************************/
939 static int TLan_Open( struct net_device *dev )
941 TLanPrivateInfo *priv = netdev_priv(dev);
944 priv->tlanRev = TLan_DioRead8( dev->base_addr, TLAN_DEF_REVISION );
945 err = request_irq( dev->irq, TLan_HandleInterrupt, IRQF_SHARED, TLanSignature, dev );
948 printk(KERN_ERR "TLAN: Cannot open %s because IRQ %d is already in use.\n", dev->name, dev->irq );
952 init_timer(&priv->timer);
953 netif_start_queue(dev);
955 /* NOTE: It might not be necessary to read the stats before a
956 reset if you don't care what the values are.
958 TLan_ResetLists( dev );
959 TLan_ReadAndClearStats( dev, TLAN_IGNORE );
960 TLan_ResetAdapter( dev );
962 TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Opened. TLAN Chip Rev: %x\n", dev->name, priv->tlanRev );
970 /**************************************************************
974 * 0 on success, error code otherwise
976 * dev structure of device to receive ioctl.
978 * rq ifreq structure to hold userspace data.
983 *************************************************************/
985 static int TLan_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
987 TLanPrivateInfo *priv = netdev_priv(dev);
988 struct mii_ioctl_data *data = if_mii(rq);
989 u32 phy = priv->phy[priv->phyNum];
991 if (!priv->phyOnline)
995 case SIOCGMIIPHY: /* Get address of MII PHY in use. */
999 case SIOCGMIIREG: /* Read MII PHY register. */
1000 TLan_MiiReadReg(dev, data->phy_id & 0x1f, data->reg_num & 0x1f, &data->val_out);
1004 case SIOCSMIIREG: /* Write MII PHY register. */
1005 if (!capable(CAP_NET_ADMIN))
1007 TLan_MiiWriteReg(dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
1015 /***************************************************************
1021 * dev structure of device which timed out
1024 **************************************************************/
1026 static void TLan_tx_timeout(struct net_device *dev)
1029 TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Transmit timed out.\n", dev->name);
1031 /* Ok so we timed out, lets see what we can do about it...*/
1032 TLan_FreeLists( dev );
1033 TLan_ResetLists( dev );
1034 TLan_ReadAndClearStats( dev, TLAN_IGNORE );
1035 TLan_ResetAdapter( dev );
1036 dev->trans_start = jiffies;
1037 netif_wake_queue( dev );
1042 /***************************************************************
1043 * TLan_tx_timeout_work
1048 * work work item of device which timed out
1050 **************************************************************/
1052 static void TLan_tx_timeout_work(struct work_struct *work)
1054 TLanPrivateInfo *priv =
1055 container_of(work, TLanPrivateInfo, tlan_tqueue);
1057 TLan_tx_timeout(priv->dev);
1062 /***************************************************************
1066 * 0 on success, non-zero on failure.
1068 * skb A pointer to the sk_buff containing the
1070 * dev The device to send the data on.
1072 * This function adds a frame to the Tx list to be sent
1073 * ASAP. First it verifies that the adapter is ready and
1074 * there is room in the queue. Then it sets up the next
1075 * available list, copies the frame to the corresponding
1076 * buffer. If the adapter Tx channel is idle, it gives
1077 * the adapter a Tx Go command on the list, otherwise it
1078 * sets the forward address of the previous list to point
1079 * to this one. Then it frees the sk_buff.
1081 **************************************************************/
1083 static int TLan_StartTx( struct sk_buff *skb, struct net_device *dev )
1085 TLanPrivateInfo *priv = netdev_priv(dev);
1086 TLanList *tail_list;
1087 dma_addr_t tail_list_phys;
1090 unsigned long flags;
1092 if ( ! priv->phyOnline ) {
1093 TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT: %s PHY is not ready\n", dev->name );
1094 dev_kfree_skb_any(skb);
1098 tail_list = priv->txList + priv->txTail;
1099 tail_list_phys = priv->txListDMA + sizeof(TLanList) * priv->txTail;
1101 if ( tail_list->cStat != TLAN_CSTAT_UNUSED ) {
1102 TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT: %s is busy (Head=%d Tail=%d)\n", dev->name, priv->txHead, priv->txTail );
1103 netif_stop_queue(dev);
1104 priv->txBusyCount++;
1108 tail_list->forward = 0;
1111 tail_buffer = priv->txBuffer + ( priv->txTail * TLAN_MAX_FRAME_SIZE );
1112 skb_copy_from_linear_data(skb, tail_buffer, skb->len);
1114 tail_list->buffer[0].address = pci_map_single(priv->pciDev, skb->data, skb->len, PCI_DMA_TODEVICE);
1115 TLan_StoreSKB(tail_list, skb);
1118 pad = TLAN_MIN_FRAME_SIZE - skb->len;
1121 tail_list->frameSize = (u16) skb->len + pad;
1122 tail_list->buffer[0].count = (u32) skb->len;
1123 tail_list->buffer[1].count = TLAN_LAST_BUFFER | (u32) pad;
1124 tail_list->buffer[1].address = TLanPadBufferDMA;
1126 tail_list->frameSize = (u16) skb->len;
1127 tail_list->buffer[0].count = TLAN_LAST_BUFFER | (u32) skb->len;
1128 tail_list->buffer[1].count = 0;
1129 tail_list->buffer[1].address = 0;
1132 spin_lock_irqsave(&priv->lock, flags);
1133 tail_list->cStat = TLAN_CSTAT_READY;
1134 if ( ! priv->txInProgress ) {
1135 priv->txInProgress = 1;
1136 TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT: Starting TX on buffer %d\n", priv->txTail );
1137 outl( tail_list_phys, dev->base_addr + TLAN_CH_PARM );
1138 outl( TLAN_HC_GO, dev->base_addr + TLAN_HOST_CMD );
1140 TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT: Adding buffer %d to TX channel\n", priv->txTail );
1141 if ( priv->txTail == 0 ) {
1142 ( priv->txList + ( TLAN_NUM_TX_LISTS - 1 ) )->forward = tail_list_phys;
1144 ( priv->txList + ( priv->txTail - 1 ) )->forward = tail_list_phys;
1147 spin_unlock_irqrestore(&priv->lock, flags);
1149 CIRC_INC( priv->txTail, TLAN_NUM_TX_LISTS );
1152 dev_kfree_skb_any(skb);
1154 dev->trans_start = jiffies;
1157 } /* TLan_StartTx */
1162 /***************************************************************
1163 * TLan_HandleInterrupt
1168 * irq The line on which the interrupt
1170 * dev_id A pointer to the device assigned to
1173 * This function handles an interrupt generated by its
1174 * assigned TLAN adapter. The function deactivates
1175 * interrupts on its adapter, records the type of
1176 * interrupt, executes the appropriate subhandler, and
1177 * acknowdges the interrupt to the adapter (thus
1178 * re-enabling adapter interrupts.
1180 **************************************************************/
1182 static irqreturn_t TLan_HandleInterrupt(int irq, void *dev_id)
1185 struct net_device *dev;
1189 TLanPrivateInfo *priv;
1192 priv = netdev_priv(dev);
1194 spin_lock(&priv->lock);
1196 host_int = inw( dev->base_addr + TLAN_HOST_INT );
1197 outw( host_int, dev->base_addr + TLAN_HOST_INT );
1199 type = ( host_int & TLAN_HI_IT_MASK ) >> 2;
1201 ack = TLanIntVector[type]( dev, host_int );
1204 host_cmd = TLAN_HC_ACK | ack | ( type << 18 );
1205 outl( host_cmd, dev->base_addr + TLAN_HOST_CMD );
1208 spin_unlock(&priv->lock);
1211 } /* TLan_HandleInterrupts */
1216 /***************************************************************
1222 * dev The device structure of the device to
1225 * This function shuts down the adapter. It records any
1226 * stats, puts the adapter into reset state, deactivates
1227 * its time as needed, and frees the irq it is using.
1229 **************************************************************/
1231 static int TLan_Close(struct net_device *dev)
1233 TLanPrivateInfo *priv = netdev_priv(dev);
1235 netif_stop_queue(dev);
1236 priv->neg_be_verbose = 0;
1238 TLan_ReadAndClearStats( dev, TLAN_RECORD );
1239 outl( TLAN_HC_AD_RST, dev->base_addr + TLAN_HOST_CMD );
1240 if ( priv->timer.function != NULL ) {
1241 del_timer_sync( &priv->timer );
1242 priv->timer.function = NULL;
1245 free_irq( dev->irq, dev );
1246 TLan_FreeLists( dev );
1247 TLAN_DBG( TLAN_DEBUG_GNRL, "Device %s closed.\n", dev->name );
1256 /***************************************************************
1260 * A pointer to the device's statistics structure.
1262 * dev The device structure to return the
1265 * This function updates the devices statistics by reading
1266 * the TLAN chip's onboard registers. Then it returns the
1267 * address of the statistics structure.
1269 **************************************************************/
1271 static struct net_device_stats *TLan_GetStats( struct net_device *dev )
1273 TLanPrivateInfo *priv = netdev_priv(dev);
1276 /* Should only read stats if open ? */
1277 TLan_ReadAndClearStats( dev, TLAN_RECORD );
1279 TLAN_DBG( TLAN_DEBUG_RX, "RECEIVE: %s EOC count = %d\n", dev->name, priv->rxEocCount );
1280 TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT: %s Busy count = %d\n", dev->name, priv->txBusyCount );
1281 if ( debug & TLAN_DEBUG_GNRL ) {
1282 TLan_PrintDio( dev->base_addr );
1283 TLan_PhyPrint( dev );
1285 if ( debug & TLAN_DEBUG_LIST ) {
1286 for ( i = 0; i < TLAN_NUM_RX_LISTS; i++ )
1287 TLan_PrintList( priv->rxList + i, "RX", i );
1288 for ( i = 0; i < TLAN_NUM_TX_LISTS; i++ )
1289 TLan_PrintList( priv->txList + i, "TX", i );
1292 return ( &( (TLanPrivateInfo *) netdev_priv(dev) )->stats );
1294 } /* TLan_GetStats */
1299 /***************************************************************
1300 * TLan_SetMulticastList
1305 * dev The device structure to set the
1306 * multicast list for.
1308 * This function sets the TLAN adaptor to various receive
1309 * modes. If the IFF_PROMISC flag is set, promiscuous
1310 * mode is acitviated. Otherwise, promiscuous mode is
1311 * turned off. If the IFF_ALLMULTI flag is set, then
1312 * the hash table is set to receive all group addresses.
1313 * Otherwise, the first three multicast addresses are
1314 * stored in AREG_1-3, and the rest are selected via the
1315 * hash table, as necessary.
1317 **************************************************************/
1319 static void TLan_SetMulticastList( struct net_device *dev )
1321 struct dev_mc_list *dmi = dev->mc_list;
1328 if ( dev->flags & IFF_PROMISC ) {
1329 tmp = TLan_DioRead8( dev->base_addr, TLAN_NET_CMD );
1330 TLan_DioWrite8( dev->base_addr, TLAN_NET_CMD, tmp | TLAN_NET_CMD_CAF );
1332 tmp = TLan_DioRead8( dev->base_addr, TLAN_NET_CMD );
1333 TLan_DioWrite8( dev->base_addr, TLAN_NET_CMD, tmp & ~TLAN_NET_CMD_CAF );
1334 if ( dev->flags & IFF_ALLMULTI ) {
1335 for ( i = 0; i < 3; i++ )
1336 TLan_SetMac( dev, i + 1, NULL );
1337 TLan_DioWrite32( dev->base_addr, TLAN_HASH_1, 0xFFFFFFFF );
1338 TLan_DioWrite32( dev->base_addr, TLAN_HASH_2, 0xFFFFFFFF );
1340 for ( i = 0; i < dev->mc_count; i++ ) {
1342 TLan_SetMac( dev, i + 1, (char *) &dmi->dmi_addr );
1344 offset = TLan_HashFunc( (u8 *) &dmi->dmi_addr );
1346 hash1 |= ( 1 << offset );
1348 hash2 |= ( 1 << ( offset - 32 ) );
1352 for ( ; i < 3; i++ )
1353 TLan_SetMac( dev, i + 1, NULL );
1354 TLan_DioWrite32( dev->base_addr, TLAN_HASH_1, hash1 );
1355 TLan_DioWrite32( dev->base_addr, TLAN_HASH_2, hash2 );
1359 } /* TLan_SetMulticastList */
1363 /*****************************************************************************
1364 ******************************************************************************
1366 ThunderLAN Driver Interrupt Vectors and Table
1368 Please see Chap. 4, "Interrupt Handling" of the "ThunderLAN
1369 Programmer's Guide" for more informations on handling interrupts
1370 generated by TLAN based adapters.
1372 ******************************************************************************
1373 *****************************************************************************/
1376 /***************************************************************
1377 * TLan_HandleInvalid
1382 * dev Device assigned the IRQ that was
1384 * host_int The contents of the HOST_INT
1387 * This function handles invalid interrupts. This should
1388 * never happen unless some other adapter is trying to use
1389 * the IRQ line assigned to the device.
1391 **************************************************************/
1393 u32 TLan_HandleInvalid( struct net_device *dev, u16 host_int )
1395 /* printk( "TLAN: Invalid interrupt on %s.\n", dev->name ); */
1398 } /* TLan_HandleInvalid */
1403 /***************************************************************
1409 * dev Device assigned the IRQ that was
1411 * host_int The contents of the HOST_INT
1414 * This function handles Tx EOF interrupts which are raised
1415 * by the adapter when it has completed sending the
1416 * contents of a buffer. If detemines which list/buffer
1417 * was completed and resets it. If the buffer was the last
1418 * in the channel (EOC), then the function checks to see if
1419 * another buffer is ready to send, and if so, sends a Tx
1420 * Go command. Finally, the driver activates/continues the
1423 **************************************************************/
1425 u32 TLan_HandleTxEOF( struct net_device *dev, u16 host_int )
1427 TLanPrivateInfo *priv = netdev_priv(dev);
1429 TLanList *head_list;
1430 dma_addr_t head_list_phys;
1434 TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT: Handling TX EOF (Head=%d Tail=%d)\n", priv->txHead, priv->txTail );
1435 head_list = priv->txList + priv->txHead;
1437 while (((tmpCStat = head_list->cStat ) & TLAN_CSTAT_FRM_CMP) && (ack < 255)) {
1440 struct sk_buff *skb = TLan_GetSKB(head_list);
1441 pci_unmap_single(priv->pciDev, head_list->buffer[0].address, skb->len, PCI_DMA_TODEVICE);
1442 dev_kfree_skb_any(skb);
1443 head_list->buffer[8].address = 0;
1444 head_list->buffer[9].address = 0;
1447 if ( tmpCStat & TLAN_CSTAT_EOC )
1450 priv->stats.tx_bytes += head_list->frameSize;
1452 head_list->cStat = TLAN_CSTAT_UNUSED;
1453 netif_start_queue(dev);
1454 CIRC_INC( priv->txHead, TLAN_NUM_TX_LISTS );
1455 head_list = priv->txList + priv->txHead;
1459 printk(KERN_INFO "TLAN: Received interrupt for uncompleted TX frame.\n");
1462 TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT: Handling TX EOC (Head=%d Tail=%d)\n", priv->txHead, priv->txTail );
1463 head_list = priv->txList + priv->txHead;
1464 head_list_phys = priv->txListDMA + sizeof(TLanList) * priv->txHead;
1465 if ( ( head_list->cStat & TLAN_CSTAT_READY ) == TLAN_CSTAT_READY ) {
1466 outl(head_list_phys, dev->base_addr + TLAN_CH_PARM );
1469 priv->txInProgress = 0;
1473 if ( priv->adapter->flags & TLAN_ADAPTER_ACTIVITY_LED ) {
1474 TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK | TLAN_LED_ACT );
1475 if ( priv->timer.function == NULL ) {
1476 priv->timer.function = &TLan_Timer;
1477 priv->timer.data = (unsigned long) dev;
1478 priv->timer.expires = jiffies + TLAN_TIMER_ACT_DELAY;
1479 priv->timerSetAt = jiffies;
1480 priv->timerType = TLAN_TIMER_ACTIVITY;
1481 add_timer(&priv->timer);
1482 } else if ( priv->timerType == TLAN_TIMER_ACTIVITY ) {
1483 priv->timerSetAt = jiffies;
1489 } /* TLan_HandleTxEOF */
1494 /***************************************************************
1495 * TLan_HandleStatOverflow
1500 * dev Device assigned the IRQ that was
1502 * host_int The contents of the HOST_INT
1505 * This function handles the Statistics Overflow interrupt
1506 * which means that one or more of the TLAN statistics
1507 * registers has reached 1/2 capacity and needs to be read.
1509 **************************************************************/
1511 u32 TLan_HandleStatOverflow( struct net_device *dev, u16 host_int )
1513 TLan_ReadAndClearStats( dev, TLAN_RECORD );
1517 } /* TLan_HandleStatOverflow */
1522 /***************************************************************
1528 * dev Device assigned the IRQ that was
1530 * host_int The contents of the HOST_INT
1533 * This function handles the Rx EOF interrupt which
1534 * indicates a frame has been received by the adapter from
1535 * the net and the frame has been transferred to memory.
1536 * The function determines the bounce buffer the frame has
1537 * been loaded into, creates a new sk_buff big enough to
1538 * hold the frame, and sends it to protocol stack. It
1539 * then resets the used buffer and appends it to the end
1540 * of the list. If the frame was the last in the Rx
1541 * channel (EOC), the function restarts the receive channel
1542 * by sending an Rx Go command to the adapter. Then it
1543 * activates/continues the activity LED.
1545 **************************************************************/
1547 u32 TLan_HandleRxEOF( struct net_device *dev, u16 host_int )
1549 TLanPrivateInfo *priv = netdev_priv(dev);
1553 TLanList *head_list;
1554 struct sk_buff *skb;
1555 TLanList *tail_list;
1559 dma_addr_t head_list_phys;
1561 TLAN_DBG( TLAN_DEBUG_RX, "RECEIVE: Handling RX EOF (Head=%d Tail=%d)\n", priv->rxHead, priv->rxTail );
1562 head_list = priv->rxList + priv->rxHead;
1563 head_list_phys = priv->rxListDMA + sizeof(TLanList) * priv->rxHead;
1565 while (((tmpCStat = head_list->cStat) & TLAN_CSTAT_FRM_CMP) && (ack < 255)) {
1566 frameSize = head_list->frameSize;
1568 if (tmpCStat & TLAN_CSTAT_EOC)
1572 skb = dev_alloc_skb(frameSize + 7);
1574 printk(KERN_INFO "TLAN: Couldn't allocate memory for received data.\n");
1576 head_buffer = priv->rxBuffer + (priv->rxHead * TLAN_MAX_FRAME_SIZE);
1577 skb_reserve(skb, 2);
1578 t = (void *) skb_put(skb, frameSize);
1580 priv->stats.rx_bytes += head_list->frameSize;
1582 memcpy( t, head_buffer, frameSize );
1583 skb->protocol = eth_type_trans( skb, dev );
1587 struct sk_buff *new_skb;
1590 * I changed the algorithm here. What we now do
1591 * is allocate the new frame. If this fails we
1592 * simply recycle the frame.
1595 new_skb = dev_alloc_skb( TLAN_MAX_FRAME_SIZE + 7 );
1597 if ( new_skb != NULL ) {
1598 skb = TLan_GetSKB(head_list);
1599 pci_unmap_single(priv->pciDev, head_list->buffer[0].address, TLAN_MAX_FRAME_SIZE, PCI_DMA_FROMDEVICE);
1600 skb_trim( skb, frameSize );
1602 priv->stats.rx_bytes += frameSize;
1604 skb->protocol = eth_type_trans( skb, dev );
1607 skb_reserve( new_skb, 2 );
1608 t = (void *) skb_put( new_skb, TLAN_MAX_FRAME_SIZE );
1609 head_list->buffer[0].address = pci_map_single(priv->pciDev, new_skb->data, TLAN_MAX_FRAME_SIZE, PCI_DMA_FROMDEVICE);
1610 head_list->buffer[8].address = (u32) t;
1611 TLan_StoreSKB(head_list, new_skb);
1613 printk(KERN_WARNING "TLAN: Couldn't allocate memory for received data.\n" );
1616 head_list->forward = 0;
1617 head_list->cStat = 0;
1618 tail_list = priv->rxList + priv->rxTail;
1619 tail_list->forward = head_list_phys;
1621 CIRC_INC( priv->rxHead, TLAN_NUM_RX_LISTS );
1622 CIRC_INC( priv->rxTail, TLAN_NUM_RX_LISTS );
1623 head_list = priv->rxList + priv->rxHead;
1624 head_list_phys = priv->rxListDMA + sizeof(TLanList) * priv->rxHead;
1628 printk(KERN_INFO "TLAN: Received interrupt for uncompleted RX frame.\n");
1634 TLAN_DBG( TLAN_DEBUG_RX, "RECEIVE: Handling RX EOC (Head=%d Tail=%d)\n", priv->rxHead, priv->rxTail );
1635 head_list = priv->rxList + priv->rxHead;
1636 head_list_phys = priv->rxListDMA + sizeof(TLanList) * priv->rxHead;
1637 outl(head_list_phys, dev->base_addr + TLAN_CH_PARM );
1638 ack |= TLAN_HC_GO | TLAN_HC_RT;
1642 if ( priv->adapter->flags & TLAN_ADAPTER_ACTIVITY_LED ) {
1643 TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK | TLAN_LED_ACT );
1644 if ( priv->timer.function == NULL ) {
1645 priv->timer.function = &TLan_Timer;
1646 priv->timer.data = (unsigned long) dev;
1647 priv->timer.expires = jiffies + TLAN_TIMER_ACT_DELAY;
1648 priv->timerSetAt = jiffies;
1649 priv->timerType = TLAN_TIMER_ACTIVITY;
1650 add_timer(&priv->timer);
1651 } else if ( priv->timerType == TLAN_TIMER_ACTIVITY ) {
1652 priv->timerSetAt = jiffies;
1656 dev->last_rx = jiffies;
1660 } /* TLan_HandleRxEOF */
1665 /***************************************************************
1671 * dev Device assigned the IRQ that was
1673 * host_int The contents of the HOST_INT
1676 * This function handles the Dummy interrupt, which is
1677 * raised whenever a test interrupt is generated by setting
1678 * the Req_Int bit of HOST_CMD to 1.
1680 **************************************************************/
1682 u32 TLan_HandleDummy( struct net_device *dev, u16 host_int )
1684 printk( "TLAN: Test interrupt on %s.\n", dev->name );
1687 } /* TLan_HandleDummy */
1692 /***************************************************************
1698 * dev Device assigned the IRQ that was
1700 * host_int The contents of the HOST_INT
1703 * This driver is structured to determine EOC occurrences by
1704 * reading the CSTAT member of the list structure. Tx EOC
1705 * interrupts are disabled via the DIO INTDIS register.
1706 * However, TLAN chips before revision 3.0 didn't have this
1707 * functionality, so process EOC events if this is the
1710 **************************************************************/
1712 u32 TLan_HandleTxEOC( struct net_device *dev, u16 host_int )
1714 TLanPrivateInfo *priv = netdev_priv(dev);
1715 TLanList *head_list;
1716 dma_addr_t head_list_phys;
1720 if ( priv->tlanRev < 0x30 ) {
1721 TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT: Handling TX EOC (Head=%d Tail=%d) -- IRQ\n", priv->txHead, priv->txTail );
1722 head_list = priv->txList + priv->txHead;
1723 head_list_phys = priv->txListDMA + sizeof(TLanList) * priv->txHead;
1724 if ( ( head_list->cStat & TLAN_CSTAT_READY ) == TLAN_CSTAT_READY ) {
1725 netif_stop_queue(dev);
1726 outl( head_list_phys, dev->base_addr + TLAN_CH_PARM );
1729 priv->txInProgress = 0;
1735 } /* TLan_HandleTxEOC */
1740 /***************************************************************
1741 * TLan_HandleStatusCheck
1744 * 0 if Adapter check, 1 if Network Status check.
1746 * dev Device assigned the IRQ that was
1748 * host_int The contents of the HOST_INT
1751 * This function handles Adapter Check/Network Status
1752 * interrupts generated by the adapter. It checks the
1753 * vector in the HOST_INT register to determine if it is
1754 * an Adapter Check interrupt. If so, it resets the
1755 * adapter. Otherwise it clears the status registers
1756 * and services the PHY.
1758 **************************************************************/
1760 u32 TLan_HandleStatusCheck( struct net_device *dev, u16 host_int )
1762 TLanPrivateInfo *priv = netdev_priv(dev);
1771 if ( host_int & TLAN_HI_IV_MASK ) {
1772 netif_stop_queue( dev );
1773 error = inl( dev->base_addr + TLAN_CH_PARM );
1774 printk( "TLAN: %s: Adaptor Error = 0x%x\n", dev->name, error );
1775 TLan_ReadAndClearStats( dev, TLAN_RECORD );
1776 outl( TLAN_HC_AD_RST, dev->base_addr + TLAN_HOST_CMD );
1778 schedule_work(&priv->tlan_tqueue);
1780 netif_wake_queue(dev);
1783 TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Status Check\n", dev->name );
1784 phy = priv->phy[priv->phyNum];
1786 net_sts = TLan_DioRead8( dev->base_addr, TLAN_NET_STS );
1788 TLan_DioWrite8( dev->base_addr, TLAN_NET_STS, net_sts );
1789 TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Net_Sts = %x\n", dev->name, (unsigned) net_sts );
1791 if ( ( net_sts & TLAN_NET_STS_MIRQ ) && ( priv->phyNum == 0 ) ) {
1792 TLan_MiiReadReg( dev, phy, TLAN_TLPHY_STS, &tlphy_sts );
1793 TLan_MiiReadReg( dev, phy, TLAN_TLPHY_CTL, &tlphy_ctl );
1794 if ( ! ( tlphy_sts & TLAN_TS_POLOK ) && ! ( tlphy_ctl & TLAN_TC_SWAPOL ) ) {
1795 tlphy_ctl |= TLAN_TC_SWAPOL;
1796 TLan_MiiWriteReg( dev, phy, TLAN_TLPHY_CTL, tlphy_ctl);
1797 } else if ( ( tlphy_sts & TLAN_TS_POLOK ) && ( tlphy_ctl & TLAN_TC_SWAPOL ) ) {
1798 tlphy_ctl &= ~TLAN_TC_SWAPOL;
1799 TLan_MiiWriteReg( dev, phy, TLAN_TLPHY_CTL, tlphy_ctl);
1803 TLan_PhyPrint( dev );
1810 } /* TLan_HandleStatusCheck */
1815 /***************************************************************
1821 * dev Device assigned the IRQ that was
1823 * host_int The contents of the HOST_INT
1826 * This driver is structured to determine EOC occurrences by
1827 * reading the CSTAT member of the list structure. Rx EOC
1828 * interrupts are disabled via the DIO INTDIS register.
1829 * However, TLAN chips before revision 3.0 didn't have this
1830 * CSTAT member or a INTDIS register, so if this chip is
1831 * pre-3.0, process EOC interrupts normally.
1833 **************************************************************/
1835 u32 TLan_HandleRxEOC( struct net_device *dev, u16 host_int )
1837 TLanPrivateInfo *priv = netdev_priv(dev);
1838 dma_addr_t head_list_phys;
1841 if ( priv->tlanRev < 0x30 ) {
1842 TLAN_DBG( TLAN_DEBUG_RX, "RECEIVE: Handling RX EOC (Head=%d Tail=%d) -- IRQ\n", priv->rxHead, priv->rxTail );
1843 head_list_phys = priv->rxListDMA + sizeof(TLanList) * priv->rxHead;
1844 outl( head_list_phys, dev->base_addr + TLAN_CH_PARM );
1845 ack |= TLAN_HC_GO | TLAN_HC_RT;
1851 } /* TLan_HandleRxEOC */
1856 /*****************************************************************************
1857 ******************************************************************************
1859 ThunderLAN Driver Timer Function
1861 ******************************************************************************
1862 *****************************************************************************/
1865 /***************************************************************
1871 * data A value given to add timer when
1872 * add_timer was called.
1874 * This function handles timed functionality for the
1875 * TLAN driver. The two current timer uses are for
1876 * delaying for autonegotionation and driving the ACT LED.
1877 * - Autonegotiation requires being allowed about
1878 * 2 1/2 seconds before attempting to transmit a
1879 * packet. It would be a very bad thing to hang
1880 * the kernel this long, so the driver doesn't
1881 * allow transmission 'til after this time, for
1882 * certain PHYs. It would be much nicer if all
1883 * PHYs were interrupt-capable like the internal
1885 * - The ACT LED, which shows adapter activity, is
1886 * driven by the driver, and so must be left on
1887 * for a short period to power up the LED so it
1888 * can be seen. This delay can be changed by
1889 * changing the TLAN_TIMER_ACT_DELAY in tlan.h,
1890 * if desired. 100 ms produces a slightly
1891 * sluggish response.
1893 **************************************************************/
1895 void TLan_Timer( unsigned long data )
1897 struct net_device *dev = (struct net_device *) data;
1898 TLanPrivateInfo *priv = netdev_priv(dev);
1900 unsigned long flags = 0;
1902 priv->timer.function = NULL;
1904 switch ( priv->timerType ) {
1906 case TLAN_TIMER_LINK_BEAT:
1907 TLan_PhyMonitor( dev );
1910 case TLAN_TIMER_PHY_PDOWN:
1911 TLan_PhyPowerDown( dev );
1913 case TLAN_TIMER_PHY_PUP:
1914 TLan_PhyPowerUp( dev );
1916 case TLAN_TIMER_PHY_RESET:
1917 TLan_PhyReset( dev );
1919 case TLAN_TIMER_PHY_START_LINK:
1920 TLan_PhyStartLink( dev );
1922 case TLAN_TIMER_PHY_FINISH_AN:
1923 TLan_PhyFinishAutoNeg( dev );
1925 case TLAN_TIMER_FINISH_RESET:
1926 TLan_FinishReset( dev );
1928 case TLAN_TIMER_ACTIVITY:
1929 spin_lock_irqsave(&priv->lock, flags);
1930 if ( priv->timer.function == NULL ) {
1931 elapsed = jiffies - priv->timerSetAt;
1932 if ( elapsed >= TLAN_TIMER_ACT_DELAY ) {
1933 TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK );
1935 priv->timer.function = &TLan_Timer;
1936 priv->timer.expires = priv->timerSetAt + TLAN_TIMER_ACT_DELAY;
1937 spin_unlock_irqrestore(&priv->lock, flags);
1938 add_timer( &priv->timer );
1942 spin_unlock_irqrestore(&priv->lock, flags);
1953 /*****************************************************************************
1954 ******************************************************************************
1956 ThunderLAN Driver Adapter Related Routines
1958 ******************************************************************************
1959 *****************************************************************************/
1962 /***************************************************************
1968 * dev The device structure with the list
1969 * stuctures to be reset.
1971 * This routine sets the variables associated with managing
1972 * the TLAN lists to their initial values.
1974 **************************************************************/
1976 void TLan_ResetLists( struct net_device *dev )
1978 TLanPrivateInfo *priv = netdev_priv(dev);
1981 dma_addr_t list_phys;
1982 struct sk_buff *skb;
1987 for ( i = 0; i < TLAN_NUM_TX_LISTS; i++ ) {
1988 list = priv->txList + i;
1989 list->cStat = TLAN_CSTAT_UNUSED;
1991 list->buffer[0].address = priv->txBufferDMA + ( i * TLAN_MAX_FRAME_SIZE );
1993 list->buffer[0].address = 0;
1995 list->buffer[2].count = 0;
1996 list->buffer[2].address = 0;
1997 list->buffer[8].address = 0;
1998 list->buffer[9].address = 0;
2002 priv->rxTail = TLAN_NUM_RX_LISTS - 1;
2003 for ( i = 0; i < TLAN_NUM_RX_LISTS; i++ ) {
2004 list = priv->rxList + i;
2005 list_phys = priv->rxListDMA + sizeof(TLanList) * i;
2006 list->cStat = TLAN_CSTAT_READY;
2007 list->frameSize = TLAN_MAX_FRAME_SIZE;
2008 list->buffer[0].count = TLAN_MAX_FRAME_SIZE | TLAN_LAST_BUFFER;
2010 list->buffer[0].address = priv->rxBufferDMA + ( i * TLAN_MAX_FRAME_SIZE );
2012 skb = dev_alloc_skb( TLAN_MAX_FRAME_SIZE + 7 );
2013 if ( skb == NULL ) {
2014 printk( "TLAN: Couldn't allocate memory for received data.\n" );
2015 /* If this ever happened it would be a problem */
2018 skb_reserve( skb, 2 );
2019 t = (void *) skb_put( skb, TLAN_MAX_FRAME_SIZE );
2021 list->buffer[0].address = pci_map_single(priv->pciDev, t, TLAN_MAX_FRAME_SIZE, PCI_DMA_FROMDEVICE);
2022 list->buffer[8].address = (u32) t;
2023 TLan_StoreSKB(list, skb);
2025 list->buffer[1].count = 0;
2026 list->buffer[1].address = 0;
2027 if ( i < TLAN_NUM_RX_LISTS - 1 )
2028 list->forward = list_phys + sizeof(TLanList);
2033 } /* TLan_ResetLists */
2036 void TLan_FreeLists( struct net_device *dev )
2038 TLanPrivateInfo *priv = netdev_priv(dev);
2041 struct sk_buff *skb;
2044 for ( i = 0; i < TLAN_NUM_TX_LISTS; i++ ) {
2045 list = priv->txList + i;
2046 skb = TLan_GetSKB(list);
2048 pci_unmap_single(priv->pciDev, list->buffer[0].address, skb->len, PCI_DMA_TODEVICE);
2049 dev_kfree_skb_any( skb );
2050 list->buffer[8].address = 0;
2051 list->buffer[9].address = 0;
2055 for ( i = 0; i < TLAN_NUM_RX_LISTS; i++ ) {
2056 list = priv->rxList + i;
2057 skb = TLan_GetSKB(list);
2059 pci_unmap_single(priv->pciDev, list->buffer[0].address, TLAN_MAX_FRAME_SIZE, PCI_DMA_FROMDEVICE);
2060 dev_kfree_skb_any( skb );
2061 list->buffer[8].address = 0;
2062 list->buffer[9].address = 0;
2066 } /* TLan_FreeLists */
2071 /***************************************************************
2077 * io_base Base IO port of the device of
2078 * which to print DIO registers.
2080 * This function prints out all the internal (DIO)
2081 * registers of a TLAN chip.
2083 **************************************************************/
2085 void TLan_PrintDio( u16 io_base )
2090 printk( "TLAN: Contents of internal registers for io base 0x%04hx.\n", io_base );
2091 printk( "TLAN: Off. +0 +4\n" );
2092 for ( i = 0; i < 0x4C; i+= 8 ) {
2093 data0 = TLan_DioRead32( io_base, i );
2094 data1 = TLan_DioRead32( io_base, i + 0x4 );
2095 printk( "TLAN: 0x%02x 0x%08x 0x%08x\n", i, data0, data1 );
2098 } /* TLan_PrintDio */
2103 /***************************************************************
2109 * list A pointer to the TLanList structure to
2111 * type A string to designate type of list,
2113 * num The index of the list.
2115 * This function prints out the contents of the list
2116 * pointed to by the list parameter.
2118 **************************************************************/
2120 void TLan_PrintList( TLanList *list, char *type, int num)
2124 printk( "TLAN: %s List %d at 0x%08x\n", type, num, (u32) list );
2125 printk( "TLAN: Forward = 0x%08x\n", list->forward );
2126 printk( "TLAN: CSTAT = 0x%04hx\n", list->cStat );
2127 printk( "TLAN: Frame Size = 0x%04hx\n", list->frameSize );
2128 /* for ( i = 0; i < 10; i++ ) { */
2129 for ( i = 0; i < 2; i++ ) {
2130 printk( "TLAN: Buffer[%d].count, addr = 0x%08x, 0x%08x\n", i, list->buffer[i].count, list->buffer[i].address );
2133 } /* TLan_PrintList */
2138 /***************************************************************
2139 * TLan_ReadAndClearStats
2144 * dev Pointer to device structure of adapter
2145 * to which to read stats.
2146 * record Flag indicating whether to add
2148 * This functions reads all the internal status registers
2149 * of the TLAN chip, which clears them as a side effect.
2150 * It then either adds the values to the device's status
2151 * struct, or discards them, depending on whether record
2152 * is TLAN_RECORD (!=0) or TLAN_IGNORE (==0).
2154 **************************************************************/
2156 void TLan_ReadAndClearStats( struct net_device *dev, int record )
2158 TLanPrivateInfo *priv = netdev_priv(dev);
2159 u32 tx_good, tx_under;
2160 u32 rx_good, rx_over;
2161 u32 def_tx, crc, code;
2162 u32 multi_col, single_col;
2163 u32 excess_col, late_col, loss;
2165 outw( TLAN_GOOD_TX_FRMS, dev->base_addr + TLAN_DIO_ADR );
2166 tx_good = inb( dev->base_addr + TLAN_DIO_DATA );
2167 tx_good += inb( dev->base_addr + TLAN_DIO_DATA + 1 ) << 8;
2168 tx_good += inb( dev->base_addr + TLAN_DIO_DATA + 2 ) << 16;
2169 tx_under = inb( dev->base_addr + TLAN_DIO_DATA + 3 );
2171 outw( TLAN_GOOD_RX_FRMS, dev->base_addr + TLAN_DIO_ADR );
2172 rx_good = inb( dev->base_addr + TLAN_DIO_DATA );
2173 rx_good += inb( dev->base_addr + TLAN_DIO_DATA + 1 ) << 8;
2174 rx_good += inb( dev->base_addr + TLAN_DIO_DATA + 2 ) << 16;
2175 rx_over = inb( dev->base_addr + TLAN_DIO_DATA + 3 );
2177 outw( TLAN_DEFERRED_TX, dev->base_addr + TLAN_DIO_ADR );
2178 def_tx = inb( dev->base_addr + TLAN_DIO_DATA );
2179 def_tx += inb( dev->base_addr + TLAN_DIO_DATA + 1 ) << 8;
2180 crc = inb( dev->base_addr + TLAN_DIO_DATA + 2 );
2181 code = inb( dev->base_addr + TLAN_DIO_DATA + 3 );
2183 outw( TLAN_MULTICOL_FRMS, dev->base_addr + TLAN_DIO_ADR );
2184 multi_col = inb( dev->base_addr + TLAN_DIO_DATA );
2185 multi_col += inb( dev->base_addr + TLAN_DIO_DATA + 1 ) << 8;
2186 single_col = inb( dev->base_addr + TLAN_DIO_DATA + 2 );
2187 single_col += inb( dev->base_addr + TLAN_DIO_DATA + 3 ) << 8;
2189 outw( TLAN_EXCESSCOL_FRMS, dev->base_addr + TLAN_DIO_ADR );
2190 excess_col = inb( dev->base_addr + TLAN_DIO_DATA );
2191 late_col = inb( dev->base_addr + TLAN_DIO_DATA + 1 );
2192 loss = inb( dev->base_addr + TLAN_DIO_DATA + 2 );
2195 priv->stats.rx_packets += rx_good;
2196 priv->stats.rx_errors += rx_over + crc + code;
2197 priv->stats.tx_packets += tx_good;
2198 priv->stats.tx_errors += tx_under + loss;
2199 priv->stats.collisions += multi_col + single_col + excess_col + late_col;
2201 priv->stats.rx_over_errors += rx_over;
2202 priv->stats.rx_crc_errors += crc;
2203 priv->stats.rx_frame_errors += code;
2205 priv->stats.tx_aborted_errors += tx_under;
2206 priv->stats.tx_carrier_errors += loss;
2209 } /* TLan_ReadAndClearStats */
2214 /***************************************************************
2220 * dev Pointer to device structure of adapter
2223 * This function resets the adapter and it's physical
2224 * device. See Chap. 3, pp. 9-10 of the "ThunderLAN
2225 * Programmer's Guide" for details. The routine tries to
2226 * implement what is detailed there, though adjustments
2229 **************************************************************/
2232 TLan_ResetAdapter( struct net_device *dev )
2234 TLanPrivateInfo *priv = netdev_priv(dev);
2240 priv->tlanFullDuplex = FALSE;
2242 netif_carrier_off(dev);
2244 /* 1. Assert reset bit. */
2246 data = inl(dev->base_addr + TLAN_HOST_CMD);
2247 data |= TLAN_HC_AD_RST;
2248 outl(data, dev->base_addr + TLAN_HOST_CMD);
2252 /* 2. Turn off interrupts. ( Probably isn't necessary ) */
2254 data = inl(dev->base_addr + TLAN_HOST_CMD);
2255 data |= TLAN_HC_INT_OFF;
2256 outl(data, dev->base_addr + TLAN_HOST_CMD);
2258 /* 3. Clear AREGs and HASHs. */
2260 for ( i = TLAN_AREG_0; i <= TLAN_HASH_2; i += 4 ) {
2261 TLan_DioWrite32( dev->base_addr, (u16) i, 0 );
2264 /* 4. Setup NetConfig register. */
2266 data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN | TLAN_NET_CFG_PHY_EN;
2267 TLan_DioWrite16( dev->base_addr, TLAN_NET_CONFIG, (u16) data );
2269 /* 5. Load Ld_Tmr and Ld_Thr in HOST_CMD. */
2271 outl( TLAN_HC_LD_TMR | 0x3f, dev->base_addr + TLAN_HOST_CMD );
2272 outl( TLAN_HC_LD_THR | 0x9, dev->base_addr + TLAN_HOST_CMD );
2274 /* 6. Unreset the MII by setting NMRST (in NetSio) to 1. */
2276 outw( TLAN_NET_SIO, dev->base_addr + TLAN_DIO_ADR );
2277 addr = dev->base_addr + TLAN_DIO_DATA + TLAN_NET_SIO;
2278 TLan_SetBit( TLAN_NET_SIO_NMRST, addr );
2280 /* 7. Setup the remaining registers. */
2282 if ( priv->tlanRev >= 0x30 ) {
2283 data8 = TLAN_ID_TX_EOC | TLAN_ID_RX_EOC;
2284 TLan_DioWrite8( dev->base_addr, TLAN_INT_DIS, data8 );
2286 TLan_PhyDetect( dev );
2287 data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN;
2289 if ( priv->adapter->flags & TLAN_ADAPTER_BIT_RATE_PHY ) {
2290 data |= TLAN_NET_CFG_BIT;
2291 if ( priv->aui == 1 ) {
2292 TLan_DioWrite8( dev->base_addr, TLAN_ACOMMIT, 0x0a );
2293 } else if ( priv->duplex == TLAN_DUPLEX_FULL ) {
2294 TLan_DioWrite8( dev->base_addr, TLAN_ACOMMIT, 0x00 );
2295 priv->tlanFullDuplex = TRUE;
2297 TLan_DioWrite8( dev->base_addr, TLAN_ACOMMIT, 0x08 );
2301 if ( priv->phyNum == 0 ) {
2302 data |= TLAN_NET_CFG_PHY_EN;
2304 TLan_DioWrite16( dev->base_addr, TLAN_NET_CONFIG, (u16) data );
2306 if ( priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY ) {
2307 TLan_FinishReset( dev );
2309 TLan_PhyPowerDown( dev );
2312 } /* TLan_ResetAdapter */
2318 TLan_FinishReset( struct net_device *dev )
2320 TLanPrivateInfo *priv = netdev_priv(dev);
2328 u16 tlphy_id1, tlphy_id2;
2331 phy = priv->phy[priv->phyNum];
2333 data = TLAN_NET_CMD_NRESET | TLAN_NET_CMD_NWRAP;
2334 if ( priv->tlanFullDuplex ) {
2335 data |= TLAN_NET_CMD_DUPLEX;
2337 TLan_DioWrite8( dev->base_addr, TLAN_NET_CMD, data );
2338 data = TLAN_NET_MASK_MASK4 | TLAN_NET_MASK_MASK5;
2339 if ( priv->phyNum == 0 ) {
2340 data |= TLAN_NET_MASK_MASK7;
2342 TLan_DioWrite8( dev->base_addr, TLAN_NET_MASK, data );
2343 TLan_DioWrite16( dev->base_addr, TLAN_MAX_RX, ((1536)+7)&~7 );
2344 TLan_MiiReadReg( dev, phy, MII_GEN_ID_HI, &tlphy_id1 );
2345 TLan_MiiReadReg( dev, phy, MII_GEN_ID_LO, &tlphy_id2 );
2347 if ( ( priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY ) || ( priv->aui ) ) {
2348 status = MII_GS_LINK;
2349 printk( "TLAN: %s: Link forced.\n", dev->name );
2351 TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
2353 TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
2354 if ( (status & MII_GS_LINK) && /* We only support link info on Nat.Sem. PHY's */
2355 (tlphy_id1 == NAT_SEM_ID1) &&
2356 (tlphy_id2 == NAT_SEM_ID2) ) {
2357 TLan_MiiReadReg( dev, phy, MII_AN_LPA, &partner );
2358 TLan_MiiReadReg( dev, phy, TLAN_TLPHY_PAR, &tlphy_par );
2360 printk( "TLAN: %s: Link active with ", dev->name );
2361 if (!(tlphy_par & TLAN_PHY_AN_EN_STAT)) {
2362 printk( "forced 10%sMbps %s-Duplex\n",
2363 tlphy_par & TLAN_PHY_SPEED_100 ? "" : "0",
2364 tlphy_par & TLAN_PHY_DUPLEX_FULL ? "Full" : "Half");
2366 printk( "AutoNegotiation enabled, at 10%sMbps %s-Duplex\n",
2367 tlphy_par & TLAN_PHY_SPEED_100 ? "" : "0",
2368 tlphy_par & TLAN_PHY_DUPLEX_FULL ? "Full" : "Half");
2369 printk("TLAN: Partner capability: ");
2370 for (i = 5; i <= 10; i++)
2371 if (partner & (1<<i))
2372 printk("%s",media[i-5]);
2376 TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK );
2378 /* We have link beat..for now anyway */
2380 /*Enabling link beat monitoring */
2381 TLan_SetTimer( dev, (10*HZ), TLAN_TIMER_LINK_BEAT );
2383 } else if (status & MII_GS_LINK) {
2384 printk( "TLAN: %s: Link active\n", dev->name );
2385 TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK );
2389 if ( priv->phyNum == 0 ) {
2390 TLan_MiiReadReg( dev, phy, TLAN_TLPHY_CTL, &tlphy_ctl );
2391 tlphy_ctl |= TLAN_TC_INTEN;
2392 TLan_MiiWriteReg( dev, phy, TLAN_TLPHY_CTL, tlphy_ctl );
2393 sio = TLan_DioRead8( dev->base_addr, TLAN_NET_SIO );
2394 sio |= TLAN_NET_SIO_MINTEN;
2395 TLan_DioWrite8( dev->base_addr, TLAN_NET_SIO, sio );
2398 if ( status & MII_GS_LINK ) {
2399 TLan_SetMac( dev, 0, dev->dev_addr );
2400 priv->phyOnline = 1;
2401 outb( ( TLAN_HC_INT_ON >> 8 ), dev->base_addr + TLAN_HOST_CMD + 1 );
2402 if ( debug >= 1 && debug != TLAN_DEBUG_PROBE ) {
2403 outb( ( TLAN_HC_REQ_INT >> 8 ), dev->base_addr + TLAN_HOST_CMD + 1 );
2405 outl( priv->rxListDMA, dev->base_addr + TLAN_CH_PARM );
2406 outl( TLAN_HC_GO | TLAN_HC_RT, dev->base_addr + TLAN_HOST_CMD );
2407 netif_carrier_on(dev);
2409 printk( "TLAN: %s: Link inactive, will retry in 10 secs...\n", dev->name );
2410 TLan_SetTimer( dev, (10*HZ), TLAN_TIMER_FINISH_RESET );
2413 TLan_SetMulticastList(dev);
2415 } /* TLan_FinishReset */
2420 /***************************************************************
2426 * dev Pointer to device structure of adapter
2427 * on which to change the AREG.
2428 * areg The AREG to set the address in (0 - 3).
2429 * mac A pointer to an array of chars. Each
2430 * element stores one byte of the address.
2431 * IE, it isn't in ascii.
2433 * This function transfers a MAC address to one of the
2434 * TLAN AREGs (address registers). The TLAN chip locks
2435 * the register on writing to offset 0 and unlocks the
2436 * register after writing to offset 5. If NULL is passed
2437 * in mac, then the AREG is filled with 0's.
2439 **************************************************************/
2441 void TLan_SetMac( struct net_device *dev, int areg, char *mac )
2447 if ( mac != NULL ) {
2448 for ( i = 0; i < 6; i++ )
2449 TLan_DioWrite8( dev->base_addr, TLAN_AREG_0 + areg + i, mac[i] );
2451 for ( i = 0; i < 6; i++ )
2452 TLan_DioWrite8( dev->base_addr, TLAN_AREG_0 + areg + i, 0 );
2460 /*****************************************************************************
2461 ******************************************************************************
2463 ThunderLAN Driver PHY Layer Routines
2465 ******************************************************************************
2466 *****************************************************************************/
2470 /*********************************************************************
2476 * dev A pointer to the device structure of the
2477 * TLAN device having the PHYs to be detailed.
2479 * This function prints the registers a PHY (aka transceiver).
2481 ********************************************************************/
2483 void TLan_PhyPrint( struct net_device *dev )
2485 TLanPrivateInfo *priv = netdev_priv(dev);
2486 u16 i, data0, data1, data2, data3, phy;
2488 phy = priv->phy[priv->phyNum];
2490 if ( priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY ) {
2491 printk( "TLAN: Device %s, Unmanaged PHY.\n", dev->name );
2492 } else if ( phy <= TLAN_PHY_MAX_ADDR ) {
2493 printk( "TLAN: Device %s, PHY 0x%02x.\n", dev->name, phy );
2494 printk( "TLAN: Off. +0 +1 +2 +3 \n" );
2495 for ( i = 0; i < 0x20; i+= 4 ) {
2496 printk( "TLAN: 0x%02x", i );
2497 TLan_MiiReadReg( dev, phy, i, &data0 );
2498 printk( " 0x%04hx", data0 );
2499 TLan_MiiReadReg( dev, phy, i + 1, &data1 );
2500 printk( " 0x%04hx", data1 );
2501 TLan_MiiReadReg( dev, phy, i + 2, &data2 );
2502 printk( " 0x%04hx", data2 );
2503 TLan_MiiReadReg( dev, phy, i + 3, &data3 );
2504 printk( " 0x%04hx\n", data3 );
2507 printk( "TLAN: Device %s, Invalid PHY.\n", dev->name );
2510 } /* TLan_PhyPrint */
2515 /*********************************************************************
2521 * dev A pointer to the device structure of the adapter
2522 * for which the PHY needs determined.
2524 * So far I've found that adapters which have external PHYs
2525 * may also use the internal PHY for part of the functionality.
2526 * (eg, AUI/Thinnet). This function finds out if this TLAN
2527 * chip has an internal PHY, and then finds the first external
2528 * PHY (starting from address 0) if it exists).
2530 ********************************************************************/
2532 void TLan_PhyDetect( struct net_device *dev )
2534 TLanPrivateInfo *priv = netdev_priv(dev);
2540 if ( priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY ) {
2541 priv->phyNum = 0xFFFF;
2545 TLan_MiiReadReg( dev, TLAN_PHY_MAX_ADDR, MII_GEN_ID_HI, &hi );
2547 if ( hi != 0xFFFF ) {
2548 priv->phy[0] = TLAN_PHY_MAX_ADDR;
2550 priv->phy[0] = TLAN_PHY_NONE;
2553 priv->phy[1] = TLAN_PHY_NONE;
2554 for ( phy = 0; phy <= TLAN_PHY_MAX_ADDR; phy++ ) {
2555 TLan_MiiReadReg( dev, phy, MII_GEN_CTL, &control );
2556 TLan_MiiReadReg( dev, phy, MII_GEN_ID_HI, &hi );
2557 TLan_MiiReadReg( dev, phy, MII_GEN_ID_LO, &lo );
2558 if ( ( control != 0xFFFF ) || ( hi != 0xFFFF ) || ( lo != 0xFFFF ) ) {
2559 TLAN_DBG( TLAN_DEBUG_GNRL, "PHY found at %02x %04x %04x %04x\n", phy, control, hi, lo );
2560 if ( ( priv->phy[1] == TLAN_PHY_NONE ) && ( phy != TLAN_PHY_MAX_ADDR ) ) {
2566 if ( priv->phy[1] != TLAN_PHY_NONE ) {
2568 } else if ( priv->phy[0] != TLAN_PHY_NONE ) {
2571 printk( "TLAN: Cannot initialize device, no PHY was found!\n" );
2574 } /* TLan_PhyDetect */
2579 void TLan_PhyPowerDown( struct net_device *dev )
2581 TLanPrivateInfo *priv = netdev_priv(dev);
2584 TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Powering down PHY(s).\n", dev->name );
2585 value = MII_GC_PDOWN | MII_GC_LOOPBK | MII_GC_ISOLATE;
2586 TLan_MiiSync( dev->base_addr );
2587 TLan_MiiWriteReg( dev, priv->phy[priv->phyNum], MII_GEN_CTL, value );
2588 if ( ( priv->phyNum == 0 ) && ( priv->phy[1] != TLAN_PHY_NONE ) && ( ! ( priv->adapter->flags & TLAN_ADAPTER_USE_INTERN_10 ) ) ) {
2589 TLan_MiiSync( dev->base_addr );
2590 TLan_MiiWriteReg( dev, priv->phy[1], MII_GEN_CTL, value );
2593 /* Wait for 50 ms and powerup
2594 * This is abitrary. It is intended to make sure the
2595 * transceiver settles.
2597 TLan_SetTimer( dev, (HZ/20), TLAN_TIMER_PHY_PUP );
2599 } /* TLan_PhyPowerDown */
2604 void TLan_PhyPowerUp( struct net_device *dev )
2606 TLanPrivateInfo *priv = netdev_priv(dev);
2609 TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Powering up PHY.\n", dev->name );
2610 TLan_MiiSync( dev->base_addr );
2611 value = MII_GC_LOOPBK;
2612 TLan_MiiWriteReg( dev, priv->phy[priv->phyNum], MII_GEN_CTL, value );
2613 TLan_MiiSync(dev->base_addr);
2614 /* Wait for 500 ms and reset the
2615 * transceiver. The TLAN docs say both 50 ms and
2616 * 500 ms, so do the longer, just in case.
2618 TLan_SetTimer( dev, (HZ/20), TLAN_TIMER_PHY_RESET );
2620 } /* TLan_PhyPowerUp */
2625 void TLan_PhyReset( struct net_device *dev )
2627 TLanPrivateInfo *priv = netdev_priv(dev);
2631 phy = priv->phy[priv->phyNum];
2633 TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Reseting PHY.\n", dev->name );
2634 TLan_MiiSync( dev->base_addr );
2635 value = MII_GC_LOOPBK | MII_GC_RESET;
2636 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, value );
2637 TLan_MiiReadReg( dev, phy, MII_GEN_CTL, &value );
2638 while ( value & MII_GC_RESET ) {
2639 TLan_MiiReadReg( dev, phy, MII_GEN_CTL, &value );
2642 /* Wait for 500 ms and initialize.
2643 * I don't remember why I wait this long.
2644 * I've changed this to 50ms, as it seems long enough.
2646 TLan_SetTimer( dev, (HZ/20), TLAN_TIMER_PHY_START_LINK );
2648 } /* TLan_PhyReset */
2653 void TLan_PhyStartLink( struct net_device *dev )
2655 TLanPrivateInfo *priv = netdev_priv(dev);
2663 phy = priv->phy[priv->phyNum];
2664 TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Trying to activate link.\n", dev->name );
2665 TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
2666 TLan_MiiReadReg( dev, phy, MII_GEN_STS, &ability );
2668 if ( ( status & MII_GS_AUTONEG ) &&
2670 ability = status >> 11;
2671 if ( priv->speed == TLAN_SPEED_10 &&
2672 priv->duplex == TLAN_DUPLEX_HALF) {
2673 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x0000);
2674 } else if ( priv->speed == TLAN_SPEED_10 &&
2675 priv->duplex == TLAN_DUPLEX_FULL) {
2676 priv->tlanFullDuplex = TRUE;
2677 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x0100);
2678 } else if ( priv->speed == TLAN_SPEED_100 &&
2679 priv->duplex == TLAN_DUPLEX_HALF) {
2680 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x2000);
2681 } else if ( priv->speed == TLAN_SPEED_100 &&
2682 priv->duplex == TLAN_DUPLEX_FULL) {
2683 priv->tlanFullDuplex = TRUE;
2684 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x2100);
2687 /* Set Auto-Neg advertisement */
2688 TLan_MiiWriteReg( dev, phy, MII_AN_ADV, (ability << 5) | 1);
2689 /* Enablee Auto-Neg */
2690 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x1000 );
2691 /* Restart Auto-Neg */
2692 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x1200 );
2693 /* Wait for 4 sec for autonegotiation
2694 * to complete. The max spec time is less than this
2695 * but the card need additional time to start AN.
2696 * .5 sec should be plenty extra.
2698 printk( "TLAN: %s: Starting autonegotiation.\n", dev->name );
2699 TLan_SetTimer( dev, (2*HZ), TLAN_TIMER_PHY_FINISH_AN );
2705 if ( ( priv->aui ) && ( priv->phyNum != 0 ) ) {
2707 data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN | TLAN_NET_CFG_PHY_EN;
2708 TLan_DioWrite16( dev->base_addr, TLAN_NET_CONFIG, data );
2709 TLan_SetTimer( dev, (40*HZ/1000), TLAN_TIMER_PHY_PDOWN );
2711 } else if ( priv->phyNum == 0 ) {
2713 TLan_MiiReadReg( dev, phy, TLAN_TLPHY_CTL, &tctl );
2715 tctl |= TLAN_TC_AUISEL;
2717 tctl &= ~TLAN_TC_AUISEL;
2718 if ( priv->duplex == TLAN_DUPLEX_FULL ) {
2719 control |= MII_GC_DUPLEX;
2720 priv->tlanFullDuplex = TRUE;
2722 if ( priv->speed == TLAN_SPEED_100 ) {
2723 control |= MII_GC_SPEEDSEL;
2726 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, control );
2727 TLan_MiiWriteReg( dev, phy, TLAN_TLPHY_CTL, tctl );
2730 /* Wait for 2 sec to give the transceiver time
2731 * to establish link.
2733 TLan_SetTimer( dev, (4*HZ), TLAN_TIMER_FINISH_RESET );
2735 } /* TLan_PhyStartLink */
2740 void TLan_PhyFinishAutoNeg( struct net_device *dev )
2742 TLanPrivateInfo *priv = netdev_priv(dev);
2750 phy = priv->phy[priv->phyNum];
2752 TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
2754 TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
2756 if ( ! ( status & MII_GS_AUTOCMPLT ) ) {
2757 /* Wait for 8 sec to give the process
2758 * more time. Perhaps we should fail after a while.
2760 if (!priv->neg_be_verbose++) {
2761 printk(KERN_INFO "TLAN: Giving autonegotiation more time.\n");
2762 printk(KERN_INFO "TLAN: Please check that your adapter has\n");
2763 printk(KERN_INFO "TLAN: been properly connected to a HUB or Switch.\n");
2764 printk(KERN_INFO "TLAN: Trying to establish link in the background...\n");
2766 TLan_SetTimer( dev, (8*HZ), TLAN_TIMER_PHY_FINISH_AN );
2770 printk( "TLAN: %s: Autonegotiation complete.\n", dev->name );
2771 TLan_MiiReadReg( dev, phy, MII_AN_ADV, &an_adv );
2772 TLan_MiiReadReg( dev, phy, MII_AN_LPA, &an_lpa );
2773 mode = an_adv & an_lpa & 0x03E0;
2774 if ( mode & 0x0100 ) {
2775 priv->tlanFullDuplex = TRUE;
2776 } else if ( ! ( mode & 0x0080 ) && ( mode & 0x0040 ) ) {
2777 priv->tlanFullDuplex = TRUE;
2780 if ( ( ! ( mode & 0x0180 ) ) && ( priv->adapter->flags & TLAN_ADAPTER_USE_INTERN_10 ) && ( priv->phyNum != 0 ) ) {
2782 data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN | TLAN_NET_CFG_PHY_EN;
2783 TLan_DioWrite16( dev->base_addr, TLAN_NET_CONFIG, data );
2784 TLan_SetTimer( dev, (400*HZ/1000), TLAN_TIMER_PHY_PDOWN );
2788 if ( priv->phyNum == 0 ) {
2789 if ( ( priv->duplex == TLAN_DUPLEX_FULL ) || ( an_adv & an_lpa & 0x0040 ) ) {
2790 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, MII_GC_AUTOENB | MII_GC_DUPLEX );
2791 printk( "TLAN: Starting internal PHY with FULL-DUPLEX\n" );
2793 TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, MII_GC_AUTOENB );
2794 printk( "TLAN: Starting internal PHY with HALF-DUPLEX\n" );
2798 /* Wait for 100 ms. No reason in partiticular.
2800 TLan_SetTimer( dev, (HZ/10), TLAN_TIMER_FINISH_RESET );
2802 } /* TLan_PhyFinishAutoNeg */
2806 /*********************************************************************
2814 * dev The device structure of this device.
2817 * This function monitors PHY condition by reading the status
2818 * register via the MII bus. This can be used to give info
2819 * about link changes (up/down), and possible switch to alternate
2822 * ******************************************************************/
2824 void TLan_PhyMonitor( struct net_device *dev )
2826 TLanPrivateInfo *priv = netdev_priv(dev);
2830 phy = priv->phy[priv->phyNum];
2832 /* Get PHY status register */
2833 TLan_MiiReadReg( dev, phy, MII_GEN_STS, &phy_status );
2835 /* Check if link has been lost */
2836 if (!(phy_status & MII_GS_LINK)) {
2839 printk(KERN_DEBUG "TLAN: %s has lost link\n", dev->name);
2840 netif_carrier_off(dev);
2841 TLan_SetTimer( dev, (2*HZ), TLAN_TIMER_LINK_BEAT );
2846 /* Link restablished? */
2847 if ((phy_status & MII_GS_LINK) && !priv->link) {
2849 printk(KERN_DEBUG "TLAN: %s has reestablished link\n", dev->name);
2850 netif_carrier_on(dev);
2853 /* Setup a new monitor */
2854 TLan_SetTimer( dev, (2*HZ), TLAN_TIMER_LINK_BEAT );
2857 #endif /* MONITOR */
2860 /*****************************************************************************
2861 ******************************************************************************
2863 ThunderLAN Driver MII Routines
2865 These routines are based on the information in Chap. 2 of the
2866 "ThunderLAN Programmer's Guide", pp. 15-24.
2868 ******************************************************************************
2869 *****************************************************************************/
2872 /***************************************************************
2876 * 0 if ack received ok
2880 * dev The device structure containing
2881 * The io address and interrupt count
2883 * phy The address of the PHY to be queried.
2884 * reg The register whose contents are to be
2886 * val A pointer to a variable to store the
2889 * This function uses the TLAN's MII bus to retrieve the contents
2890 * of a given register on a PHY. It sends the appropriate info
2891 * and then reads the 16-bit register value from the MII bus via
2892 * the TLAN SIO register.
2894 **************************************************************/
2896 int TLan_MiiReadReg( struct net_device *dev, u16 phy, u16 reg, u16 *val )
2903 TLanPrivateInfo *priv = netdev_priv(dev);
2904 unsigned long flags = 0;
2907 outw(TLAN_NET_SIO, dev->base_addr + TLAN_DIO_ADR);
2908 sio = dev->base_addr + TLAN_DIO_DATA + TLAN_NET_SIO;
2911 spin_lock_irqsave(&priv->lock, flags);
2913 TLan_MiiSync(dev->base_addr);
2915 minten = TLan_GetBit( TLAN_NET_SIO_MINTEN, sio );
2917 TLan_ClearBit(TLAN_NET_SIO_MINTEN, sio);
2919 TLan_MiiSendData( dev->base_addr, 0x1, 2 ); /* Start ( 01b ) */
2920 TLan_MiiSendData( dev->base_addr, 0x2, 2 ); /* Read ( 10b ) */
2921 TLan_MiiSendData( dev->base_addr, phy, 5 ); /* Device # */
2922 TLan_MiiSendData( dev->base_addr, reg, 5 ); /* Register # */
2925 TLan_ClearBit(TLAN_NET_SIO_MTXEN, sio); /* Change direction */
2927 TLan_ClearBit(TLAN_NET_SIO_MCLK, sio); /* Clock Idle bit */
2928 TLan_SetBit(TLAN_NET_SIO_MCLK, sio);
2929 TLan_ClearBit(TLAN_NET_SIO_MCLK, sio); /* Wait 300ns */
2931 nack = TLan_GetBit(TLAN_NET_SIO_MDATA, sio); /* Check for ACK */
2932 TLan_SetBit(TLAN_NET_SIO_MCLK, sio); /* Finish ACK */
2933 if (nack) { /* No ACK, so fake it */
2934 for (i = 0; i < 16; i++) {
2935 TLan_ClearBit(TLAN_NET_SIO_MCLK, sio);
2936 TLan_SetBit(TLAN_NET_SIO_MCLK, sio);
2940 } else { /* ACK, so read data */
2941 for (tmp = 0, i = 0x8000; i; i >>= 1) {
2942 TLan_ClearBit(TLAN_NET_SIO_MCLK, sio);
2943 if (TLan_GetBit(TLAN_NET_SIO_MDATA, sio))
2945 TLan_SetBit(TLAN_NET_SIO_MCLK, sio);
2950 TLan_ClearBit(TLAN_NET_SIO_MCLK, sio); /* Idle cycle */
2951 TLan_SetBit(TLAN_NET_SIO_MCLK, sio);
2954 TLan_SetBit(TLAN_NET_SIO_MINTEN, sio);
2959 spin_unlock_irqrestore(&priv->lock, flags);
2963 } /* TLan_MiiReadReg */
2968 /***************************************************************
2974 * base_port The base IO port of the adapter in
2976 * dev The address of the PHY to be queried.
2977 * data The value to be placed on the MII bus.
2978 * num_bits The number of bits in data that are to
2979 * be placed on the MII bus.
2981 * This function sends on sequence of bits on the MII
2982 * configuration bus.
2984 **************************************************************/
2986 void TLan_MiiSendData( u16 base_port, u32 data, unsigned num_bits )
2991 if ( num_bits == 0 )
2994 outw( TLAN_NET_SIO, base_port + TLAN_DIO_ADR );
2995 sio = base_port + TLAN_DIO_DATA + TLAN_NET_SIO;
2996 TLan_SetBit( TLAN_NET_SIO_MTXEN, sio );
2998 for ( i = ( 0x1 << ( num_bits - 1 ) ); i; i >>= 1 ) {
2999 TLan_ClearBit( TLAN_NET_SIO_MCLK, sio );
3000 (void) TLan_GetBit( TLAN_NET_SIO_MCLK, sio );
3002 TLan_SetBit( TLAN_NET_SIO_MDATA, sio );
3004 TLan_ClearBit( TLAN_NET_SIO_MDATA, sio );
3005 TLan_SetBit( TLAN_NET_SIO_MCLK, sio );
3006 (void) TLan_GetBit( TLAN_NET_SIO_MCLK, sio );
3009 } /* TLan_MiiSendData */
3014 /***************************************************************
3020 * base_port The base IO port of the adapter in
3023 * This functions syncs all PHYs in terms of the MII configuration
3026 **************************************************************/
3028 void TLan_MiiSync( u16 base_port )
3033 outw( TLAN_NET_SIO, base_port + TLAN_DIO_ADR );
3034 sio = base_port + TLAN_DIO_DATA + TLAN_NET_SIO;
3036 TLan_ClearBit( TLAN_NET_SIO_MTXEN, sio );
3037 for ( i = 0; i < 32; i++ ) {
3038 TLan_ClearBit( TLAN_NET_SIO_MCLK, sio );
3039 TLan_SetBit( TLAN_NET_SIO_MCLK, sio );
3042 } /* TLan_MiiSync */
3047 /***************************************************************
3053 * dev The device structure for the device
3055 * phy The address of the PHY to be written to.
3056 * reg The register whose contents are to be
3058 * val The value to be written to the register.
3060 * This function uses the TLAN's MII bus to write the contents of a
3061 * given register on a PHY. It sends the appropriate info and then
3062 * writes the 16-bit register value from the MII configuration bus
3063 * via the TLAN SIO register.
3065 **************************************************************/
3067 void TLan_MiiWriteReg( struct net_device *dev, u16 phy, u16 reg, u16 val )
3071 unsigned long flags = 0;
3072 TLanPrivateInfo *priv = netdev_priv(dev);
3074 outw(TLAN_NET_SIO, dev->base_addr + TLAN_DIO_ADR);
3075 sio = dev->base_addr + TLAN_DIO_DATA + TLAN_NET_SIO;
3078 spin_lock_irqsave(&priv->lock, flags);
3080 TLan_MiiSync( dev->base_addr );
3082 minten = TLan_GetBit( TLAN_NET_SIO_MINTEN, sio );
3084 TLan_ClearBit( TLAN_NET_SIO_MINTEN, sio );
3086 TLan_MiiSendData( dev->base_addr, 0x1, 2 ); /* Start ( 01b ) */
3087 TLan_MiiSendData( dev->base_addr, 0x1, 2 ); /* Write ( 01b ) */
3088 TLan_MiiSendData( dev->base_addr, phy, 5 ); /* Device # */
3089 TLan_MiiSendData( dev->base_addr, reg, 5 ); /* Register # */
3091 TLan_MiiSendData( dev->base_addr, 0x2, 2 ); /* Send ACK */
3092 TLan_MiiSendData( dev->base_addr, val, 16 ); /* Send Data */
3094 TLan_ClearBit( TLAN_NET_SIO_MCLK, sio ); /* Idle cycle */
3095 TLan_SetBit( TLAN_NET_SIO_MCLK, sio );
3098 TLan_SetBit( TLAN_NET_SIO_MINTEN, sio );
3101 spin_unlock_irqrestore(&priv->lock, flags);
3103 } /* TLan_MiiWriteReg */
3108 /*****************************************************************************
3109 ******************************************************************************
3111 ThunderLAN Driver Eeprom routines
3113 The Compaq Netelligent 10 and 10/100 cards use a Microchip 24C02A
3114 EEPROM. These functions are based on information in Microchip's
3115 data sheet. I don't know how well this functions will work with
3118 ******************************************************************************
3119 *****************************************************************************/
3122 /***************************************************************
3128 * io_base The IO port base address for the
3129 * TLAN device with the EEPROM to
3132 * This function sends a start cycle to an EEPROM attached
3135 **************************************************************/
3137 void TLan_EeSendStart( u16 io_base )
3141 outw( TLAN_NET_SIO, io_base + TLAN_DIO_ADR );
3142 sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO;
3144 TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
3145 TLan_SetBit( TLAN_NET_SIO_EDATA, sio );
3146 TLan_SetBit( TLAN_NET_SIO_ETXEN, sio );
3147 TLan_ClearBit( TLAN_NET_SIO_EDATA, sio );
3148 TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
3150 } /* TLan_EeSendStart */
3155 /***************************************************************
3159 * If the correct ack was received, 0, otherwise 1
3160 * Parms: io_base The IO port base address for the
3161 * TLAN device with the EEPROM to
3163 * data The 8 bits of information to
3164 * send to the EEPROM.
3165 * stop If TLAN_EEPROM_STOP is passed, a
3166 * stop cycle is sent after the
3167 * byte is sent after the ack is
3170 * This function sends a byte on the serial EEPROM line,
3171 * driving the clock to send each bit. The function then
3172 * reverses transmission direction and reads an acknowledge
3175 **************************************************************/
3177 int TLan_EeSendByte( u16 io_base, u8 data, int stop )
3183 outw( TLAN_NET_SIO, io_base + TLAN_DIO_ADR );
3184 sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO;
3186 /* Assume clock is low, tx is enabled; */
3187 for ( place = 0x80; place != 0; place >>= 1 ) {
3189 TLan_SetBit( TLAN_NET_SIO_EDATA, sio );
3191 TLan_ClearBit( TLAN_NET_SIO_EDATA, sio );
3192 TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
3193 TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
3195 TLan_ClearBit( TLAN_NET_SIO_ETXEN, sio );
3196 TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
3197 err = TLan_GetBit( TLAN_NET_SIO_EDATA, sio );
3198 TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
3199 TLan_SetBit( TLAN_NET_SIO_ETXEN, sio );
3201 if ( ( ! err ) && stop ) {
3202 TLan_ClearBit( TLAN_NET_SIO_EDATA, sio ); /* STOP, raise data while clock is high */
3203 TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
3204 TLan_SetBit( TLAN_NET_SIO_EDATA, sio );
3209 } /* TLan_EeSendByte */
3214 /***************************************************************
3215 * TLan_EeReceiveByte
3220 * io_base The IO port base address for the
3221 * TLAN device with the EEPROM to
3223 * data An address to a char to hold the
3224 * data sent from the EEPROM.
3225 * stop If TLAN_EEPROM_STOP is passed, a
3226 * stop cycle is sent after the
3227 * byte is received, and no ack is
3230 * This function receives 8 bits of data from the EEPROM
3231 * over the serial link. It then sends and ack bit, or no
3232 * ack and a stop bit. This function is used to retrieve
3233 * data after the address of a byte in the EEPROM has been
3236 **************************************************************/
3238 void TLan_EeReceiveByte( u16 io_base, u8 *data, int stop )
3243 outw( TLAN_NET_SIO, io_base + TLAN_DIO_ADR );
3244 sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO;
3247 /* Assume clock is low, tx is enabled; */
3248 TLan_ClearBit( TLAN_NET_SIO_ETXEN, sio );
3249 for ( place = 0x80; place; place >>= 1 ) {
3250 TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
3251 if ( TLan_GetBit( TLAN_NET_SIO_EDATA, sio ) )
3253 TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
3256 TLan_SetBit( TLAN_NET_SIO_ETXEN, sio );
3258 TLan_ClearBit( TLAN_NET_SIO_EDATA, sio ); /* Ack = 0 */
3259 TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
3260 TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
3262 TLan_SetBit( TLAN_NET_SIO_EDATA, sio ); /* No ack = 1 (?) */
3263 TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
3264 TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
3265 TLan_ClearBit( TLAN_NET_SIO_EDATA, sio ); /* STOP, raise data while clock is high */
3266 TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
3267 TLan_SetBit( TLAN_NET_SIO_EDATA, sio );
3270 } /* TLan_EeReceiveByte */
3275 /***************************************************************
3279 * No error = 0, else, the stage at which the error
3282 * io_base The IO port base address for the
3283 * TLAN device with the EEPROM to
3285 * ee_addr The address of the byte in the
3286 * EEPROM whose contents are to be
3288 * data An address to a char to hold the
3289 * data obtained from the EEPROM.
3291 * This function reads a byte of information from an byte
3292 * cell in the EEPROM.
3294 **************************************************************/
3296 int TLan_EeReadByte( struct net_device *dev, u8 ee_addr, u8 *data )
3299 TLanPrivateInfo *priv = netdev_priv(dev);
3300 unsigned long flags = 0;
3303 spin_lock_irqsave(&priv->lock, flags);
3305 TLan_EeSendStart( dev->base_addr );
3306 err = TLan_EeSendByte( dev->base_addr, 0xA0, TLAN_EEPROM_ACK );
3312 err = TLan_EeSendByte( dev->base_addr, ee_addr, TLAN_EEPROM_ACK );
3318 TLan_EeSendStart( dev->base_addr );
3319 err = TLan_EeSendByte( dev->base_addr, 0xA1, TLAN_EEPROM_ACK );
3325 TLan_EeReceiveByte( dev->base_addr, data, TLAN_EEPROM_STOP );
3327 spin_unlock_irqrestore(&priv->lock, flags);
3331 } /* TLan_EeReadByte */