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 ** Useful (if not required) reading:
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
30 * Tigran Aivazian <tigran@sco.com>: TLan_PciProbe() now uses
31 * new PCI BIOS interface.
32 * Alan Cox <alan@redhat.com>: Fixed the out of memory
35 * Torben Mathiasen <torben.mathiasen@compaq.com> New Maintainer!
37 * v1.1 Dec 20, 1999 - Removed linux version checking
38 * Patch from Tigran Aivazian.
39 * - v1.1 includes Alan's SMP updates.
40 * - We still have problems on SMP though,
41 * but I'm looking into that.
43 * v1.2 Jan 02, 2000 - Hopefully fixed the SMP deadlock.
44 * - Removed dependency of HZ being 100.
45 * - We now allow higher priority timers to
46 * overwrite timers like TLAN_TIMER_ACTIVITY
47 * Patch from John Cagle <john.cagle@compaq.com>.
48 * - Fixed a few compiler warnings.
50 * v1.3 Feb 04, 2000 - Fixed the remaining HZ issues.
51 * - Removed call to pci_present().
52 * - Removed SA_INTERRUPT flag from irq handler.
53 * - Added __init and __initdata to reduce resisdent
55 * - Driver now uses module_init/module_exit.
56 * - Rewrote init_module and tlan_probe to
57 * share a lot more code. We now use tlan_probe
58 * with builtin and module driver.
59 * - Driver ported to new net API.
60 * - tlan.txt has been reworked to reflect current
64 * v1.4 Feb 10, 2000 - Updated with more changes required after Dave's
65 * network cleanup in 2.3.43pre7 (Tigran & myself)
68 * v1.5 March 22, 2000 - Fixed another timer bug that would hang the driver
69 * if no cable/link were present.
71 * - TODO: Port completely to new PCI/DMA API
74 * v1.6 April 04, 2000 - Fixed driver support for kernel-parameters. Haven't
75 * tested it though, as the kernel support is currently
76 * broken (2.3.99p4p3).
77 * - Updated tlan.txt accordingly.
78 * - Adjusted minimum/maximum frame length.
79 * - There is now a TLAN website up at
80 * http://tlan.kernel.dk
82 * v1.7 April 07, 2000 - Started to implement custom ioctls. Driver now
83 * reports PHY information when used with Donald
84 * Beckers userspace MII diagnostics utility.
86 * v1.8 April 23, 2000 - Fixed support for forced speed/duplex settings.
87 * - Added link information to Auto-Neg and forced
88 * modes. When NIC operates with auto-neg the driver
89 * will report Link speed & duplex modes as well as
90 * link partner abilities. When forced link is used,
91 * the driver will report status of the established
93 * Please read tlan.txt for additional information.
94 * - Removed call to check_region(), and used
95 * return value of request_region() instead.
97 * v1.8a May 28, 2000 - Minor updates.
99 * v1.9 July 25, 2000 - Fixed a few remaining Full-Duplex issues.
100 * - Updated with timer fixes from Andrew Morton.
101 * - Fixed module race in TLan_Open.
102 * - Added routine to monitor PHY status.
103 * - Added activity led support for Proliant devices.
105 * v1.10 Aug 30, 2000 - Added support for EISA based tlan controllers
106 * like the Compaq NetFlex3/E.
107 * - Rewrote tlan_probe to better handle multiple
108 * bus probes. Probing and device setup is now
109 * done through TLan_Probe and TLan_init_one. Actual
110 * hardware probe is done with kernel API and
112 * - Adjusted debug information for probing.
113 * - Fixed bug that would cause general debug information
114 * to be printed after driver removal.
115 * - Added transmit timeout handling.
116 * - Fixed OOM return values in tlan_probe.
117 * - Fixed possible mem leak in tlan_exit
118 * (now tlan_remove_one).
119 * - Fixed timer bug in TLan_phyMonitor.
120 * - This driver version is alpha quality, please
121 * send me any bug issues you may encounter.
123 * v1.11 Aug 31, 2000 - Do not try to register irq 0 if no irq line was
124 * set for EISA cards.
125 * - Added support for NetFlex3/E with nibble-rate
126 * 10Base-T PHY. This is untestet as I haven't got
127 * one of these cards.
128 * - Fixed timer being added twice.
129 * - Disabled PhyMonitoring by default as this is
130 * work in progress. Define MONITOR to enable it.
131 * - Now we don't display link info with PHYs that
132 * doesn't support it (level1).
133 * - Incresed tx_timeout beacuse of auto-neg.
134 * - Adjusted timers for forced speeds.
136 * v1.12 Oct 12, 2000 - Minor fixes (memleak, init, etc.)
138 * v1.13 Nov 28, 2000 - Stop flooding console with auto-neg issues
139 * when link can't be established.
140 * - Added the bbuf option as a kernel parameter.
141 * - Fixed ioaddr probe bug.
142 * - Fixed stupid deadlock with MII interrupts.
143 * - Added support for speed/duplex selection with
145 * - Added partly fix for TX Channel lockup with
146 * TLAN v1.0 silicon. This needs to be investigated
149 * v1.14 Dec 16, 2000 - Added support for servicing multiple frames per.
150 * interrupt. Thanks goes to
151 * Adam Keys <adam@ti.com>
152 * Denis Beaudoin <dbeaudoin@ti.com>
153 * for providing the patch.
154 * - Fixed auto-neg output when using multiple
156 * - Converted to use new taskq interface.
158 * v1.14a Jan 6, 2001 - Minor adjustments (spinlocks, etc.)
160 * Samuel Chessman <chessman@tux.org> New Maintainer!
162 * v1.15 Apr 4, 2002 - Correct operation when aui=1 to be
163 * 10T half duplex no loopback
164 * Thanks to Gunnar Eikman
165 *******************************************************************************/
167 #include <linux/module.h>
168 #include <linux/init.h>
169 #include <linux/ioport.h>
170 #include <linux/eisa.h>
171 #include <linux/pci.h>
172 #include <linux/dma-mapping.h>
173 #include <linux/netdevice.h>
174 #include <linux/etherdevice.h>
175 #include <linux/delay.h>
176 #include <linux/spinlock.h>
177 #include <linux/workqueue.h>
178 #include <linux/mii.h>
182 typedef u32 (TLanIntVectorFunc
)( struct net_device
*, u16
);
185 /* For removing EISA devices */
186 static struct net_device
*TLan_Eisa_Devices
;
188 static int TLanDevicesInstalled
;
190 /* Set speed, duplex and aui settings */
191 static int aui
[MAX_TLAN_BOARDS
];
192 static int duplex
[MAX_TLAN_BOARDS
];
193 static int speed
[MAX_TLAN_BOARDS
];
194 static int boards_found
;
195 module_param_array(aui
, int, NULL
, 0);
196 module_param_array(duplex
, int, NULL
, 0);
197 module_param_array(speed
, int, NULL
, 0);
198 MODULE_PARM_DESC(aui
, "ThunderLAN use AUI port(s) (0-1)");
199 MODULE_PARM_DESC(duplex
, "ThunderLAN duplex setting(s) (0-default, 1-half, 2-full)");
200 MODULE_PARM_DESC(speed
, "ThunderLAN port speen setting(s) (0,10,100)");
202 MODULE_AUTHOR("Maintainer: Samuel Chessman <chessman@tux.org>");
203 MODULE_DESCRIPTION("Driver for TI ThunderLAN based ethernet PCI adapters");
204 MODULE_LICENSE("GPL");
207 /* Define this to enable Link beat monitoring */
210 /* Turn on debugging. See Documentation/networking/tlan.txt for details */
212 module_param(debug
, int, 0);
213 MODULE_PARM_DESC(debug
, "ThunderLAN debug mask");
216 module_param(bbuf
, int, 0);
217 MODULE_PARM_DESC(bbuf
, "ThunderLAN use big buffer (0-1)");
219 static const char TLanSignature
[] = "TLAN";
220 static const char tlan_banner
[] = "ThunderLAN driver v1.15\n";
221 static int tlan_have_pci
;
222 static int tlan_have_eisa
;
224 static const char *media
[] = {
225 "10BaseT-HD ", "10BaseT-FD ","100baseTx-HD ",
226 "100baseTx-FD", "100baseT4", NULL
229 static struct board
{
230 const char *deviceLabel
;
234 { "Compaq Netelligent 10 T PCI UTP", TLAN_ADAPTER_ACTIVITY_LED
, 0x83 },
235 { "Compaq Netelligent 10/100 TX PCI UTP", TLAN_ADAPTER_ACTIVITY_LED
, 0x83 },
236 { "Compaq Integrated NetFlex-3/P", TLAN_ADAPTER_NONE
, 0x83 },
237 { "Compaq NetFlex-3/P",
238 TLAN_ADAPTER_UNMANAGED_PHY
| TLAN_ADAPTER_BIT_RATE_PHY
, 0x83 },
239 { "Compaq NetFlex-3/P", TLAN_ADAPTER_NONE
, 0x83 },
240 { "Compaq Netelligent Integrated 10/100 TX UTP",
241 TLAN_ADAPTER_ACTIVITY_LED
, 0x83 },
242 { "Compaq Netelligent Dual 10/100 TX PCI UTP", TLAN_ADAPTER_NONE
, 0x83 },
243 { "Compaq Netelligent 10/100 TX Embedded UTP", TLAN_ADAPTER_NONE
, 0x83 },
244 { "Olicom OC-2183/2185", TLAN_ADAPTER_USE_INTERN_10
, 0x83 },
245 { "Olicom OC-2325", TLAN_ADAPTER_UNMANAGED_PHY
, 0xF8 },
246 { "Olicom OC-2326", TLAN_ADAPTER_USE_INTERN_10
, 0xF8 },
247 { "Compaq Netelligent 10/100 TX UTP", TLAN_ADAPTER_ACTIVITY_LED
, 0x83 },
248 { "Compaq Netelligent 10 T/2 PCI UTP/Coax", TLAN_ADAPTER_NONE
, 0x83 },
249 { "Compaq NetFlex-3/E",
250 TLAN_ADAPTER_ACTIVITY_LED
| /* EISA card */
251 TLAN_ADAPTER_UNMANAGED_PHY
| TLAN_ADAPTER_BIT_RATE_PHY
, 0x83 },
252 { "Compaq NetFlex-3/E", TLAN_ADAPTER_ACTIVITY_LED
, 0x83 }, /* EISA card */
255 static struct pci_device_id tlan_pci_tbl
[] = {
256 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL10
,
257 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
258 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL100
,
259 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 1 },
260 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETFLEX3I
,
261 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 2 },
262 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_THUNDER
,
263 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 3 },
264 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETFLEX3B
,
265 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 4 },
266 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL100PI
,
267 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 5 },
268 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL100D
,
269 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 6 },
270 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL100I
,
271 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 7 },
272 { PCI_VENDOR_ID_OLICOM
, PCI_DEVICE_ID_OLICOM_OC2183
,
273 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 8 },
274 { PCI_VENDOR_ID_OLICOM
, PCI_DEVICE_ID_OLICOM_OC2325
,
275 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 9 },
276 { PCI_VENDOR_ID_OLICOM
, PCI_DEVICE_ID_OLICOM_OC2326
,
277 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 10 },
278 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_NETELLIGENT_10_100_WS_5100
,
279 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 11 },
280 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_NETELLIGENT_10_T2
,
281 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 12 },
284 MODULE_DEVICE_TABLE(pci
, tlan_pci_tbl
);
286 static void TLan_EisaProbe( void );
287 static void TLan_Eisa_Cleanup( void );
288 static int TLan_Init( struct net_device
* );
289 static int TLan_Open( struct net_device
*dev
);
290 static int TLan_StartTx( struct sk_buff
*, struct net_device
*);
291 static irqreturn_t
TLan_HandleInterrupt( int, void *);
292 static int TLan_Close( struct net_device
*);
293 static struct net_device_stats
*TLan_GetStats( struct net_device
*);
294 static void TLan_SetMulticastList( struct net_device
*);
295 static int TLan_ioctl( struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
296 static int TLan_probe1( struct pci_dev
*pdev
, long ioaddr
,
297 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_HandleTxEOF( struct net_device
*, u16
);
303 static u32
TLan_HandleStatOverflow( struct net_device
*, u16
);
304 static u32
TLan_HandleRxEOF( struct net_device
*, u16
);
305 static u32
TLan_HandleDummy( struct net_device
*, u16
);
306 static u32
TLan_HandleTxEOC( struct net_device
*, u16
);
307 static u32
TLan_HandleStatusCheck( struct net_device
*, u16
);
308 static u32
TLan_HandleRxEOC( struct net_device
*, u16
);
310 static void TLan_Timer( unsigned long );
312 static void TLan_ResetLists( struct net_device
* );
313 static void TLan_FreeLists( struct net_device
* );
314 static void TLan_PrintDio( u16
);
315 static void TLan_PrintList( TLanList
*, char *, int );
316 static void TLan_ReadAndClearStats( struct net_device
*, int );
317 static void TLan_ResetAdapter( struct net_device
* );
318 static void TLan_FinishReset( struct net_device
* );
319 static void TLan_SetMac( struct net_device
*, int areg
, char *mac
);
321 static void TLan_PhyPrint( struct net_device
* );
322 static void TLan_PhyDetect( struct net_device
* );
323 static void TLan_PhyPowerDown( struct net_device
* );
324 static void TLan_PhyPowerUp( struct net_device
* );
325 static void TLan_PhyReset( struct net_device
* );
326 static void TLan_PhyStartLink( struct net_device
* );
327 static void TLan_PhyFinishAutoNeg( struct net_device
* );
329 static void TLan_PhyMonitor( struct net_device
* );
333 static int TLan_PhyNop( struct net_device * );
334 static int TLan_PhyInternalCheck( struct net_device * );
335 static int TLan_PhyInternalService( struct net_device * );
336 static int TLan_PhyDp83840aCheck( struct net_device * );
339 static int TLan_MiiReadReg( struct net_device
*, u16
, u16
, u16
* );
340 static void TLan_MiiSendData( u16
, u32
, unsigned );
341 static void TLan_MiiSync( u16
);
342 static void TLan_MiiWriteReg( struct net_device
*, u16
, u16
, u16
);
344 static void TLan_EeSendStart( u16
);
345 static int TLan_EeSendByte( u16
, u8
, int );
346 static void TLan_EeReceiveByte( u16
, u8
*, int );
347 static int TLan_EeReadByte( struct net_device
*, u8
, u8
* );
351 TLan_StoreSKB( struct tlan_list_tag
*tag
, struct sk_buff
*skb
)
353 unsigned long addr
= (unsigned long)skb
;
354 tag
->buffer
[9].address
= addr
;
355 tag
->buffer
[8].address
= upper_32_bits(addr
);
358 static inline struct sk_buff
*
359 TLan_GetSKB( const struct tlan_list_tag
*tag
)
363 addr
= tag
->buffer
[8].address
;
364 addr
|= (tag
->buffer
[9].address
<< 16) << 16;
365 return (struct sk_buff
*) addr
;
369 static TLanIntVectorFunc
*TLanIntVector
[TLAN_INT_NUMBER_OF_INTS
] = {
372 TLan_HandleStatOverflow
,
376 TLan_HandleStatusCheck
,
381 TLan_SetTimer( struct net_device
*dev
, u32 ticks
, u32 type
)
383 TLanPrivateInfo
*priv
= netdev_priv(dev
);
384 unsigned long flags
= 0;
387 spin_lock_irqsave(&priv
->lock
, flags
);
388 if ( priv
->timer
.function
!= NULL
&&
389 priv
->timerType
!= TLAN_TIMER_ACTIVITY
) {
391 spin_unlock_irqrestore(&priv
->lock
, flags
);
394 priv
->timer
.function
= &TLan_Timer
;
396 spin_unlock_irqrestore(&priv
->lock
, flags
);
398 priv
->timer
.data
= (unsigned long) dev
;
399 priv
->timerSetAt
= jiffies
;
400 priv
->timerType
= type
;
401 mod_timer(&priv
->timer
, jiffies
+ ticks
);
403 } /* TLan_SetTimer */
406 /*****************************************************************************
407 ******************************************************************************
409 ThunderLAN Driver Primary Functions
411 These functions are more or less common to all Linux network drivers.
413 ******************************************************************************
414 *****************************************************************************/
420 /***************************************************************
428 * Goes through the TLanDevices list and frees the device
429 * structs and memory associated with each device (lists
430 * and buffers). It also ureserves the IO port regions
431 * associated with this device.
433 **************************************************************/
436 static void __devexit
tlan_remove_one( struct pci_dev
*pdev
)
438 struct net_device
*dev
= pci_get_drvdata( pdev
);
439 TLanPrivateInfo
*priv
= netdev_priv(dev
);
441 unregister_netdev( dev
);
443 if ( priv
->dmaStorage
) {
444 pci_free_consistent(priv
->pciDev
,
445 priv
->dmaSize
, priv
->dmaStorage
,
446 priv
->dmaStorageDMA
);
450 pci_release_regions(pdev
);
455 pci_set_drvdata( pdev
, NULL
);
458 static struct pci_driver tlan_driver
= {
460 .id_table
= tlan_pci_tbl
,
461 .probe
= tlan_init_one
,
462 .remove
= __devexit_p(tlan_remove_one
),
465 static int __init
tlan_probe(void)
469 printk(KERN_INFO
"%s", tlan_banner
);
471 TLAN_DBG(TLAN_DEBUG_PROBE
, "Starting PCI Probe....\n");
473 /* Use new style PCI probing. Now the kernel will
474 do most of this for us */
475 rc
= pci_register_driver(&tlan_driver
);
478 printk(KERN_ERR
"TLAN: Could not register pci driver.\n");
479 goto err_out_pci_free
;
482 TLAN_DBG(TLAN_DEBUG_PROBE
, "Starting EISA Probe....\n");
485 printk(KERN_INFO
"TLAN: %d device%s installed, PCI: %d EISA: %d\n",
486 TLanDevicesInstalled
, TLanDevicesInstalled
== 1 ? "" : "s",
487 tlan_have_pci
, tlan_have_eisa
);
489 if (TLanDevicesInstalled
== 0) {
491 goto err_out_pci_unreg
;
496 pci_unregister_driver(&tlan_driver
);
502 static int __devinit
tlan_init_one( struct pci_dev
*pdev
,
503 const struct pci_device_id
*ent
)
505 return TLan_probe1( pdev
, -1, -1, 0, ent
);
510 ***************************************************************
514 * 0 on success, error code on error
518 * The name is lower case to fit in with all the rest of
519 * the netcard_probe names. This function looks for
520 * another TLan based adapter, setting it up with the
521 * allocated device struct if one is found.
522 * tlan_probe has been ported to the new net API and
523 * now allocates its own device structure. This function
524 * is also used by modules.
526 **************************************************************/
528 static int __devinit
TLan_probe1(struct pci_dev
*pdev
,
529 long ioaddr
, int irq
, int rev
,
530 const struct pci_device_id
*ent
)
533 struct net_device
*dev
;
534 TLanPrivateInfo
*priv
;
536 int reg
, rc
= -ENODEV
;
540 rc
= pci_enable_device(pdev
);
544 rc
= pci_request_regions(pdev
, TLanSignature
);
546 printk(KERN_ERR
"TLAN: Could not reserve IO regions\n");
550 #endif /* CONFIG_PCI */
552 dev
= alloc_etherdev(sizeof(TLanPrivateInfo
));
554 printk(KERN_ERR
"TLAN: Could not allocate memory for device.\n");
556 goto err_out_regions
;
558 SET_NETDEV_DEV(dev
, &pdev
->dev
);
560 priv
= netdev_priv(dev
);
565 /* Is this a PCI device? */
569 priv
->adapter
= &board_info
[ent
->driver_data
];
571 rc
= pci_set_dma_mask(pdev
, DMA_32BIT_MASK
);
573 printk(KERN_ERR
"TLAN: No suitable PCI mapping available.\n");
574 goto err_out_free_dev
;
577 for ( reg
= 0; reg
<= 5; reg
++ ) {
578 if (pci_resource_flags(pdev
, reg
) & IORESOURCE_IO
) {
579 pci_io_base
= pci_resource_start(pdev
, reg
);
580 TLAN_DBG( TLAN_DEBUG_GNRL
, "IO mapping is available at %x.\n",
586 printk(KERN_ERR
"TLAN: No IO mappings available\n");
588 goto err_out_free_dev
;
591 dev
->base_addr
= pci_io_base
;
592 dev
->irq
= pdev
->irq
;
593 priv
->adapterRev
= pdev
->revision
;
594 pci_set_master(pdev
);
595 pci_set_drvdata(pdev
, dev
);
597 } else { /* EISA card */
598 /* This is a hack. We need to know which board structure
599 * is suited for this adapter */
600 device_id
= inw(ioaddr
+ EISA_ID2
);
602 if (device_id
== 0x20F1) {
603 priv
->adapter
= &board_info
[13]; /* NetFlex-3/E */
604 priv
->adapterRev
= 23; /* TLAN 2.3 */
606 priv
->adapter
= &board_info
[14];
607 priv
->adapterRev
= 10; /* TLAN 1.0 */
609 dev
->base_addr
= ioaddr
;
613 /* Kernel parameters */
614 if (dev
->mem_start
) {
615 priv
->aui
= dev
->mem_start
& 0x01;
616 priv
->duplex
= ((dev
->mem_start
& 0x06) == 0x06) ? 0
617 : (dev
->mem_start
& 0x06) >> 1;
618 priv
->speed
= ((dev
->mem_start
& 0x18) == 0x18) ? 0
619 : (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
,
700 priv
->dmaStorage
, priv
->dmaStorageDMA
);
702 release_region( dev
->base_addr
, 0x10);
703 unregister_netdev( dev
);
704 TLan_Eisa_Devices
= priv
->nextDevice
;
711 static void __exit
tlan_exit(void)
713 pci_unregister_driver(&tlan_driver
);
721 /* Module loading/unloading */
722 module_init(tlan_probe
);
723 module_exit(tlan_exit
);
727 /**************************************************************
730 * Returns: 0 on success, 1 otherwise
735 * This functions probes for EISA devices and calls
736 * TLan_probe1 when one is found.
738 *************************************************************/
740 static void __init
TLan_EisaProbe (void)
748 TLAN_DBG(TLAN_DEBUG_PROBE
, "No EISA bus present\n");
752 /* Loop through all slots of the EISA bus */
753 for (ioaddr
= 0x1000; ioaddr
< 0x9000; ioaddr
+= 0x1000) {
755 TLAN_DBG(TLAN_DEBUG_PROBE
,"EISA_ID 0x%4x: 0x%4x\n",
756 (int) ioaddr
+ 0xC80, inw(ioaddr
+ EISA_ID
));
757 TLAN_DBG(TLAN_DEBUG_PROBE
,"EISA_ID 0x%4x: 0x%4x\n",
758 (int) ioaddr
+ 0xC82, inw(ioaddr
+ EISA_ID2
));
761 TLAN_DBG(TLAN_DEBUG_PROBE
, "Probing for EISA adapter at IO: 0x%4x : ",
763 if (request_region(ioaddr
, 0x10, TLanSignature
) == NULL
)
766 if (inw(ioaddr
+ EISA_ID
) != 0x110E) {
767 release_region(ioaddr
, 0x10);
771 device_id
= inw(ioaddr
+ EISA_ID2
);
772 if (device_id
!= 0x20F1 && device_id
!= 0x40F1) {
773 release_region (ioaddr
, 0x10);
777 if (inb(ioaddr
+ EISA_CR
) != 0x1) { /* Check if adapter is enabled */
778 release_region (ioaddr
, 0x10);
783 printk("Found one\n");
786 /* Get irq from board */
787 switch (inb(ioaddr
+ 0xCC0)) {
805 /* Setup the newly found eisa adapter */
806 rc
= TLan_probe1( NULL
, ioaddr
, irq
,
812 printk("None found\n");
815 out2
: if (debug
== 0x10)
816 printk("Card found but it is not enabled, skipping\n");
821 } /* TLan_EisaProbe */
823 #ifdef CONFIG_NET_POLL_CONTROLLER
824 static void TLan_Poll(struct net_device
*dev
)
826 disable_irq(dev
->irq
);
827 TLan_HandleInterrupt(dev
->irq
, dev
);
828 enable_irq(dev
->irq
);
835 /***************************************************************
839 * 0 on success, error code otherwise.
841 * dev The structure of the device to be
844 * This function completes the initialization of the
845 * device structure and driver. It reserves the IO
846 * addresses, allocates memory for the lists and bounce
847 * buffers, retrieves the MAC address from the eeprom
848 * and assignes the device's methods.
850 **************************************************************/
852 static int TLan_Init( struct net_device
*dev
)
857 TLanPrivateInfo
*priv
;
859 priv
= netdev_priv(dev
);
862 dma_size
= ( TLAN_NUM_RX_LISTS
+ TLAN_NUM_TX_LISTS
)
863 * ( sizeof(TLanList
) + TLAN_MAX_FRAME_SIZE
);
865 dma_size
= ( TLAN_NUM_RX_LISTS
+ TLAN_NUM_TX_LISTS
)
866 * ( sizeof(TLanList
) );
868 priv
->dmaStorage
= pci_alloc_consistent(priv
->pciDev
,
869 dma_size
, &priv
->dmaStorageDMA
);
870 priv
->dmaSize
= dma_size
;
872 if ( priv
->dmaStorage
== NULL
) {
873 printk(KERN_ERR
"TLAN: Could not allocate lists and buffers for %s.\n",
877 memset( priv
->dmaStorage
, 0, dma_size
);
878 priv
->rxList
= (TLanList
*) ALIGN((unsigned long)priv
->dmaStorage
, 8);
879 priv
->rxListDMA
= ALIGN(priv
->dmaStorageDMA
, 8);
880 priv
->txList
= priv
->rxList
+ TLAN_NUM_RX_LISTS
;
881 priv
->txListDMA
= priv
->rxListDMA
+ sizeof(TLanList
) * TLAN_NUM_RX_LISTS
;
884 priv
->rxBuffer
= (u8
*) ( priv
->txList
+ TLAN_NUM_TX_LISTS
);
885 priv
->rxBufferDMA
=priv
->txListDMA
886 + sizeof(TLanList
) * TLAN_NUM_TX_LISTS
;
887 priv
->txBuffer
= priv
->rxBuffer
888 + ( TLAN_NUM_RX_LISTS
* TLAN_MAX_FRAME_SIZE
);
889 priv
->txBufferDMA
= priv
->rxBufferDMA
890 + ( TLAN_NUM_RX_LISTS
* TLAN_MAX_FRAME_SIZE
);
894 for ( i
= 0; i
< 6 ; i
++ )
895 err
|= TLan_EeReadByte( dev
,
896 (u8
) priv
->adapter
->addrOfs
+ i
,
897 (u8
*) &dev
->dev_addr
[i
] );
899 printk(KERN_ERR
"TLAN: %s: Error reading MAC from eeprom: %d\n",
905 netif_carrier_off(dev
);
908 dev
->open
= &TLan_Open
;
909 dev
->hard_start_xmit
= &TLan_StartTx
;
910 dev
->stop
= &TLan_Close
;
911 dev
->get_stats
= &TLan_GetStats
;
912 dev
->set_multicast_list
= &TLan_SetMulticastList
;
913 dev
->do_ioctl
= &TLan_ioctl
;
914 #ifdef CONFIG_NET_POLL_CONTROLLER
915 dev
->poll_controller
= &TLan_Poll
;
917 dev
->tx_timeout
= &TLan_tx_timeout
;
918 dev
->watchdog_timeo
= TX_TIMEOUT
;
927 /***************************************************************
931 * 0 on success, error code otherwise.
933 * dev Structure of device to be opened.
935 * This routine puts the driver and TLAN adapter in a
936 * state where it is ready to send and receive packets.
937 * It allocates the IRQ, resets and brings the adapter
938 * out of reset, and allows interrupts. It also delays
939 * the startup for autonegotiation or sends a Rx GO
940 * command to the adapter, as appropriate.
942 **************************************************************/
944 static int TLan_Open( struct net_device
*dev
)
946 TLanPrivateInfo
*priv
= netdev_priv(dev
);
949 priv
->tlanRev
= TLan_DioRead8( dev
->base_addr
, TLAN_DEF_REVISION
);
950 err
= request_irq( dev
->irq
, TLan_HandleInterrupt
, IRQF_SHARED
,
954 pr_err("TLAN: Cannot open %s because IRQ %d is already in use.\n",
955 dev
->name
, dev
->irq
);
959 init_timer(&priv
->timer
);
960 netif_start_queue(dev
);
962 /* NOTE: It might not be necessary to read the stats before a
963 reset if you don't care what the values are.
965 TLan_ResetLists( dev
);
966 TLan_ReadAndClearStats( dev
, TLAN_IGNORE
);
967 TLan_ResetAdapter( dev
);
969 TLAN_DBG( TLAN_DEBUG_GNRL
, "%s: Opened. TLAN Chip Rev: %x\n",
970 dev
->name
, priv
->tlanRev
);
978 /**************************************************************
982 * 0 on success, error code otherwise
984 * dev structure of device to receive ioctl.
986 * rq ifreq structure to hold userspace data.
991 *************************************************************/
993 static int TLan_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
995 TLanPrivateInfo
*priv
= netdev_priv(dev
);
996 struct mii_ioctl_data
*data
= if_mii(rq
);
997 u32 phy
= priv
->phy
[priv
->phyNum
];
999 if (!priv
->phyOnline
)
1003 case SIOCGMIIPHY
: /* Get address of MII PHY in use. */
1007 case SIOCGMIIREG
: /* Read MII PHY register. */
1008 TLan_MiiReadReg(dev
, data
->phy_id
& 0x1f,
1009 data
->reg_num
& 0x1f, &data
->val_out
);
1013 case SIOCSMIIREG
: /* Write MII PHY register. */
1014 if (!capable(CAP_NET_ADMIN
))
1016 TLan_MiiWriteReg(dev
, data
->phy_id
& 0x1f,
1017 data
->reg_num
& 0x1f, data
->val_in
);
1025 /***************************************************************
1031 * dev structure of device which timed out
1034 **************************************************************/
1036 static void TLan_tx_timeout(struct net_device
*dev
)
1039 TLAN_DBG( TLAN_DEBUG_GNRL
, "%s: Transmit timed out.\n", dev
->name
);
1041 /* Ok so we timed out, lets see what we can do about it...*/
1042 TLan_FreeLists( dev
);
1043 TLan_ResetLists( dev
);
1044 TLan_ReadAndClearStats( dev
, TLAN_IGNORE
);
1045 TLan_ResetAdapter( dev
);
1046 dev
->trans_start
= jiffies
;
1047 netif_wake_queue( dev
);
1052 /***************************************************************
1053 * TLan_tx_timeout_work
1058 * work work item of device which timed out
1060 **************************************************************/
1062 static void TLan_tx_timeout_work(struct work_struct
*work
)
1064 TLanPrivateInfo
*priv
=
1065 container_of(work
, TLanPrivateInfo
, tlan_tqueue
);
1067 TLan_tx_timeout(priv
->dev
);
1072 /***************************************************************
1076 * 0 on success, non-zero on failure.
1078 * skb A pointer to the sk_buff containing the
1080 * dev The device to send the data on.
1082 * This function adds a frame to the Tx list to be sent
1083 * ASAP. First it verifies that the adapter is ready and
1084 * there is room in the queue. Then it sets up the next
1085 * available list, copies the frame to the corresponding
1086 * buffer. If the adapter Tx channel is idle, it gives
1087 * the adapter a Tx Go command on the list, otherwise it
1088 * sets the forward address of the previous list to point
1089 * to this one. Then it frees the sk_buff.
1091 **************************************************************/
1093 static int TLan_StartTx( struct sk_buff
*skb
, struct net_device
*dev
)
1095 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1096 TLanList
*tail_list
;
1097 dma_addr_t tail_list_phys
;
1099 unsigned long flags
;
1101 if ( ! priv
->phyOnline
) {
1102 TLAN_DBG( TLAN_DEBUG_TX
, "TRANSMIT: %s PHY is not ready\n",
1104 dev_kfree_skb_any(skb
);
1108 if (skb_padto(skb
, TLAN_MIN_FRAME_SIZE
))
1111 tail_list
= priv
->txList
+ priv
->txTail
;
1112 tail_list_phys
= priv
->txListDMA
+ sizeof(TLanList
) * priv
->txTail
;
1114 if ( tail_list
->cStat
!= TLAN_CSTAT_UNUSED
) {
1115 TLAN_DBG( TLAN_DEBUG_TX
,
1116 "TRANSMIT: %s is busy (Head=%d Tail=%d)\n",
1117 dev
->name
, priv
->txHead
, priv
->txTail
);
1118 netif_stop_queue(dev
);
1119 priv
->txBusyCount
++;
1123 tail_list
->forward
= 0;
1126 tail_buffer
= priv
->txBuffer
+ ( priv
->txTail
* TLAN_MAX_FRAME_SIZE
);
1127 skb_copy_from_linear_data(skb
, tail_buffer
, skb
->len
);
1129 tail_list
->buffer
[0].address
= pci_map_single(priv
->pciDev
,
1130 skb
->data
, skb
->len
,
1132 TLan_StoreSKB(tail_list
, skb
);
1135 tail_list
->frameSize
= (u16
) skb
->len
;
1136 tail_list
->buffer
[0].count
= TLAN_LAST_BUFFER
| (u32
) skb
->len
;
1137 tail_list
->buffer
[1].count
= 0;
1138 tail_list
->buffer
[1].address
= 0;
1140 spin_lock_irqsave(&priv
->lock
, flags
);
1141 tail_list
->cStat
= TLAN_CSTAT_READY
;
1142 if ( ! priv
->txInProgress
) {
1143 priv
->txInProgress
= 1;
1144 TLAN_DBG( TLAN_DEBUG_TX
,
1145 "TRANSMIT: Starting TX on buffer %d\n", priv
->txTail
);
1146 outl( tail_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1147 outl( TLAN_HC_GO
, dev
->base_addr
+ TLAN_HOST_CMD
);
1149 TLAN_DBG( TLAN_DEBUG_TX
, "TRANSMIT: Adding buffer %d to TX channel\n",
1151 if ( priv
->txTail
== 0 ) {
1152 ( priv
->txList
+ ( TLAN_NUM_TX_LISTS
- 1 ) )->forward
1155 ( priv
->txList
+ ( priv
->txTail
- 1 ) )->forward
1159 spin_unlock_irqrestore(&priv
->lock
, flags
);
1161 CIRC_INC( priv
->txTail
, TLAN_NUM_TX_LISTS
);
1164 dev_kfree_skb_any(skb
);
1166 dev
->trans_start
= jiffies
;
1169 } /* TLan_StartTx */
1174 /***************************************************************
1175 * TLan_HandleInterrupt
1180 * irq The line on which the interrupt
1182 * dev_id A pointer to the device assigned to
1185 * This function handles an interrupt generated by its
1186 * assigned TLAN adapter. The function deactivates
1187 * interrupts on its adapter, records the type of
1188 * interrupt, executes the appropriate subhandler, and
1189 * acknowdges the interrupt to the adapter (thus
1190 * re-enabling adapter interrupts.
1192 **************************************************************/
1194 static irqreturn_t
TLan_HandleInterrupt(int irq
, void *dev_id
)
1196 struct net_device
*dev
= dev_id
;
1197 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1201 spin_lock(&priv
->lock
);
1203 host_int
= inw( dev
->base_addr
+ TLAN_HOST_INT
);
1204 type
= ( host_int
& TLAN_HI_IT_MASK
) >> 2;
1209 outw( host_int
, dev
->base_addr
+ TLAN_HOST_INT
);
1210 ack
= TLanIntVector
[type
]( dev
, host_int
);
1213 host_cmd
= TLAN_HC_ACK
| ack
| ( type
<< 18 );
1214 outl( host_cmd
, dev
->base_addr
+ TLAN_HOST_CMD
);
1218 spin_unlock(&priv
->lock
);
1220 return IRQ_RETVAL(type
);
1221 } /* TLan_HandleInterrupts */
1226 /***************************************************************
1232 * dev The device structure of the device to
1235 * This function shuts down the adapter. It records any
1236 * stats, puts the adapter into reset state, deactivates
1237 * its time as needed, and frees the irq it is using.
1239 **************************************************************/
1241 static int TLan_Close(struct net_device
*dev
)
1243 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1245 netif_stop_queue(dev
);
1246 priv
->neg_be_verbose
= 0;
1248 TLan_ReadAndClearStats( dev
, TLAN_RECORD
);
1249 outl( TLAN_HC_AD_RST
, dev
->base_addr
+ TLAN_HOST_CMD
);
1250 if ( priv
->timer
.function
!= NULL
) {
1251 del_timer_sync( &priv
->timer
);
1252 priv
->timer
.function
= NULL
;
1255 free_irq( dev
->irq
, dev
);
1256 TLan_FreeLists( dev
);
1257 TLAN_DBG( TLAN_DEBUG_GNRL
, "Device %s closed.\n", dev
->name
);
1266 /***************************************************************
1270 * A pointer to the device's statistics structure.
1272 * dev The device structure to return the
1275 * This function updates the devices statistics by reading
1276 * the TLAN chip's onboard registers. Then it returns the
1277 * address of the statistics structure.
1279 **************************************************************/
1281 static struct net_device_stats
*TLan_GetStats( struct net_device
*dev
)
1283 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1286 /* Should only read stats if open ? */
1287 TLan_ReadAndClearStats( dev
, TLAN_RECORD
);
1289 TLAN_DBG( TLAN_DEBUG_RX
, "RECEIVE: %s EOC count = %d\n", dev
->name
,
1291 TLAN_DBG( TLAN_DEBUG_TX
, "TRANSMIT: %s Busy count = %d\n", dev
->name
,
1292 priv
->txBusyCount
);
1293 if ( debug
& TLAN_DEBUG_GNRL
) {
1294 TLan_PrintDio( dev
->base_addr
);
1295 TLan_PhyPrint( dev
);
1297 if ( debug
& TLAN_DEBUG_LIST
) {
1298 for ( i
= 0; i
< TLAN_NUM_RX_LISTS
; i
++ )
1299 TLan_PrintList( priv
->rxList
+ i
, "RX", i
);
1300 for ( i
= 0; i
< TLAN_NUM_TX_LISTS
; i
++ )
1301 TLan_PrintList( priv
->txList
+ i
, "TX", i
);
1306 } /* TLan_GetStats */
1311 /***************************************************************
1312 * TLan_SetMulticastList
1317 * dev The device structure to set the
1318 * multicast list for.
1320 * This function sets the TLAN adaptor to various receive
1321 * modes. If the IFF_PROMISC flag is set, promiscuous
1322 * mode is acitviated. Otherwise, promiscuous mode is
1323 * turned off. If the IFF_ALLMULTI flag is set, then
1324 * the hash table is set to receive all group addresses.
1325 * Otherwise, the first three multicast addresses are
1326 * stored in AREG_1-3, and the rest are selected via the
1327 * hash table, as necessary.
1329 **************************************************************/
1331 static void TLan_SetMulticastList( struct net_device
*dev
)
1333 struct dev_mc_list
*dmi
= dev
->mc_list
;
1340 if ( dev
->flags
& IFF_PROMISC
) {
1341 tmp
= TLan_DioRead8( dev
->base_addr
, TLAN_NET_CMD
);
1342 TLan_DioWrite8( dev
->base_addr
,
1343 TLAN_NET_CMD
, tmp
| TLAN_NET_CMD_CAF
);
1345 tmp
= TLan_DioRead8( dev
->base_addr
, TLAN_NET_CMD
);
1346 TLan_DioWrite8( dev
->base_addr
,
1347 TLAN_NET_CMD
, tmp
& ~TLAN_NET_CMD_CAF
);
1348 if ( dev
->flags
& IFF_ALLMULTI
) {
1349 for ( i
= 0; i
< 3; i
++ )
1350 TLan_SetMac( dev
, i
+ 1, NULL
);
1351 TLan_DioWrite32( dev
->base_addr
, TLAN_HASH_1
, 0xFFFFFFFF );
1352 TLan_DioWrite32( dev
->base_addr
, TLAN_HASH_2
, 0xFFFFFFFF );
1354 for ( i
= 0; i
< dev
->mc_count
; i
++ ) {
1356 TLan_SetMac( dev
, i
+ 1,
1357 (char *) &dmi
->dmi_addr
);
1359 offset
= TLan_HashFunc( (u8
*) &dmi
->dmi_addr
);
1361 hash1
|= ( 1 << offset
);
1363 hash2
|= ( 1 << ( offset
- 32 ) );
1367 for ( ; i
< 3; i
++ )
1368 TLan_SetMac( dev
, i
+ 1, NULL
);
1369 TLan_DioWrite32( dev
->base_addr
, TLAN_HASH_1
, hash1
);
1370 TLan_DioWrite32( dev
->base_addr
, TLAN_HASH_2
, hash2
);
1374 } /* TLan_SetMulticastList */
1378 /*****************************************************************************
1379 ******************************************************************************
1381 ThunderLAN Driver Interrupt Vectors and Table
1383 Please see Chap. 4, "Interrupt Handling" of the "ThunderLAN
1384 Programmer's Guide" for more informations on handling interrupts
1385 generated by TLAN based adapters.
1387 ******************************************************************************
1388 *****************************************************************************/
1393 /***************************************************************
1399 * dev Device assigned the IRQ that was
1401 * host_int The contents of the HOST_INT
1404 * This function handles Tx EOF interrupts which are raised
1405 * by the adapter when it has completed sending the
1406 * contents of a buffer. If detemines which list/buffer
1407 * was completed and resets it. If the buffer was the last
1408 * in the channel (EOC), then the function checks to see if
1409 * another buffer is ready to send, and if so, sends a Tx
1410 * Go command. Finally, the driver activates/continues the
1413 **************************************************************/
1415 static u32
TLan_HandleTxEOF( struct net_device
*dev
, u16 host_int
)
1417 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1419 TLanList
*head_list
;
1420 dma_addr_t head_list_phys
;
1424 TLAN_DBG( TLAN_DEBUG_TX
, "TRANSMIT: Handling TX EOF (Head=%d Tail=%d)\n",
1425 priv
->txHead
, priv
->txTail
);
1426 head_list
= priv
->txList
+ priv
->txHead
;
1428 while (((tmpCStat
= head_list
->cStat
) & TLAN_CSTAT_FRM_CMP
) && (ack
< 255)) {
1431 struct sk_buff
*skb
= TLan_GetSKB(head_list
);
1432 pci_unmap_single(priv
->pciDev
, head_list
->buffer
[0].address
,
1433 skb
->len
, PCI_DMA_TODEVICE
);
1434 dev_kfree_skb_any(skb
);
1435 head_list
->buffer
[8].address
= 0;
1436 head_list
->buffer
[9].address
= 0;
1439 if ( tmpCStat
& TLAN_CSTAT_EOC
)
1442 dev
->stats
.tx_bytes
+= head_list
->frameSize
;
1444 head_list
->cStat
= TLAN_CSTAT_UNUSED
;
1445 netif_start_queue(dev
);
1446 CIRC_INC( priv
->txHead
, TLAN_NUM_TX_LISTS
);
1447 head_list
= priv
->txList
+ priv
->txHead
;
1451 printk(KERN_INFO
"TLAN: Received interrupt for uncompleted TX frame.\n");
1454 TLAN_DBG( TLAN_DEBUG_TX
,
1455 "TRANSMIT: Handling TX EOC (Head=%d Tail=%d)\n",
1456 priv
->txHead
, priv
->txTail
);
1457 head_list
= priv
->txList
+ priv
->txHead
;
1458 head_list_phys
= priv
->txListDMA
+ sizeof(TLanList
) * priv
->txHead
;
1459 if ( ( head_list
->cStat
& TLAN_CSTAT_READY
) == TLAN_CSTAT_READY
) {
1460 outl(head_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1463 priv
->txInProgress
= 0;
1467 if ( priv
->adapter
->flags
& TLAN_ADAPTER_ACTIVITY_LED
) {
1468 TLan_DioWrite8( dev
->base_addr
,
1469 TLAN_LED_REG
, TLAN_LED_LINK
| TLAN_LED_ACT
);
1470 if ( priv
->timer
.function
== NULL
) {
1471 priv
->timer
.function
= &TLan_Timer
;
1472 priv
->timer
.data
= (unsigned long) dev
;
1473 priv
->timer
.expires
= jiffies
+ TLAN_TIMER_ACT_DELAY
;
1474 priv
->timerSetAt
= jiffies
;
1475 priv
->timerType
= TLAN_TIMER_ACTIVITY
;
1476 add_timer(&priv
->timer
);
1477 } else if ( priv
->timerType
== TLAN_TIMER_ACTIVITY
) {
1478 priv
->timerSetAt
= jiffies
;
1484 } /* TLan_HandleTxEOF */
1489 /***************************************************************
1490 * TLan_HandleStatOverflow
1495 * dev Device assigned the IRQ that was
1497 * host_int The contents of the HOST_INT
1500 * This function handles the Statistics Overflow interrupt
1501 * which means that one or more of the TLAN statistics
1502 * registers has reached 1/2 capacity and needs to be read.
1504 **************************************************************/
1506 static u32
TLan_HandleStatOverflow( struct net_device
*dev
, u16 host_int
)
1508 TLan_ReadAndClearStats( dev
, TLAN_RECORD
);
1512 } /* TLan_HandleStatOverflow */
1517 /***************************************************************
1523 * dev Device assigned the IRQ that was
1525 * host_int The contents of the HOST_INT
1528 * This function handles the Rx EOF interrupt which
1529 * indicates a frame has been received by the adapter from
1530 * the net and the frame has been transferred to memory.
1531 * The function determines the bounce buffer the frame has
1532 * been loaded into, creates a new sk_buff big enough to
1533 * hold the frame, and sends it to protocol stack. It
1534 * then resets the used buffer and appends it to the end
1535 * of the list. If the frame was the last in the Rx
1536 * channel (EOC), the function restarts the receive channel
1537 * by sending an Rx Go command to the adapter. Then it
1538 * activates/continues the activity LED.
1540 **************************************************************/
1542 static u32
TLan_HandleRxEOF( struct net_device
*dev
, u16 host_int
)
1544 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1548 TLanList
*head_list
;
1549 struct sk_buff
*skb
;
1550 TLanList
*tail_list
;
1552 dma_addr_t head_list_phys
;
1554 TLAN_DBG( TLAN_DEBUG_RX
, "RECEIVE: Handling RX EOF (Head=%d Tail=%d)\n",
1555 priv
->rxHead
, priv
->rxTail
);
1556 head_list
= priv
->rxList
+ priv
->rxHead
;
1557 head_list_phys
= priv
->rxListDMA
+ sizeof(TLanList
) * priv
->rxHead
;
1559 while (((tmpCStat
= head_list
->cStat
) & TLAN_CSTAT_FRM_CMP
) && (ack
< 255)) {
1560 dma_addr_t frameDma
= head_list
->buffer
[0].address
;
1561 u32 frameSize
= head_list
->frameSize
;
1563 if (tmpCStat
& TLAN_CSTAT_EOC
)
1567 skb
= netdev_alloc_skb(dev
, frameSize
+ 7);
1569 goto drop_and_reuse
;
1571 head_buffer
= priv
->rxBuffer
1572 + (priv
->rxHead
* TLAN_MAX_FRAME_SIZE
);
1573 skb_reserve(skb
, 2);
1574 pci_dma_sync_single_for_cpu(priv
->pciDev
,
1575 frameDma
, frameSize
,
1576 PCI_DMA_FROMDEVICE
);
1577 skb_copy_from_linear_data(skb
, head_buffer
, frameSize
);
1578 skb_put(skb
, frameSize
);
1579 dev
->stats
.rx_bytes
+= frameSize
;
1581 skb
->protocol
= eth_type_trans( skb
, dev
);
1584 struct sk_buff
*new_skb
;
1586 new_skb
= netdev_alloc_skb(dev
, TLAN_MAX_FRAME_SIZE
+ 7 );
1588 goto drop_and_reuse
;
1590 skb
= TLan_GetSKB(head_list
);
1591 pci_unmap_single(priv
->pciDev
, frameDma
,
1592 TLAN_MAX_FRAME_SIZE
, PCI_DMA_FROMDEVICE
);
1593 skb_put( skb
, frameSize
);
1595 dev
->stats
.rx_bytes
+= frameSize
;
1597 skb
->protocol
= eth_type_trans( skb
, dev
);
1600 skb_reserve( new_skb
, NET_IP_ALIGN
);
1601 head_list
->buffer
[0].address
= pci_map_single(priv
->pciDev
,
1603 TLAN_MAX_FRAME_SIZE
,
1604 PCI_DMA_FROMDEVICE
);
1606 TLan_StoreSKB(head_list
, new_skb
);
1610 head_list
->forward
= 0;
1611 head_list
->cStat
= 0;
1612 tail_list
= priv
->rxList
+ priv
->rxTail
;
1613 tail_list
->forward
= head_list_phys
;
1615 CIRC_INC( priv
->rxHead
, TLAN_NUM_RX_LISTS
);
1616 CIRC_INC( priv
->rxTail
, TLAN_NUM_RX_LISTS
);
1617 head_list
= priv
->rxList
+ priv
->rxHead
;
1618 head_list_phys
= priv
->rxListDMA
+ sizeof(TLanList
) * priv
->rxHead
;
1622 printk(KERN_INFO
"TLAN: Received interrupt for uncompleted RX frame.\n");
1626 TLAN_DBG( TLAN_DEBUG_RX
,
1627 "RECEIVE: Handling RX EOC (Head=%d Tail=%d)\n",
1628 priv
->rxHead
, priv
->rxTail
);
1629 head_list
= priv
->rxList
+ priv
->rxHead
;
1630 head_list_phys
= priv
->rxListDMA
+ sizeof(TLanList
) * priv
->rxHead
;
1631 outl(head_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1632 ack
|= TLAN_HC_GO
| TLAN_HC_RT
;
1636 if ( priv
->adapter
->flags
& TLAN_ADAPTER_ACTIVITY_LED
) {
1637 TLan_DioWrite8( dev
->base_addr
,
1638 TLAN_LED_REG
, TLAN_LED_LINK
| TLAN_LED_ACT
);
1639 if ( priv
->timer
.function
== NULL
) {
1640 priv
->timer
.function
= &TLan_Timer
;
1641 priv
->timer
.data
= (unsigned long) dev
;
1642 priv
->timer
.expires
= jiffies
+ TLAN_TIMER_ACT_DELAY
;
1643 priv
->timerSetAt
= jiffies
;
1644 priv
->timerType
= TLAN_TIMER_ACTIVITY
;
1645 add_timer(&priv
->timer
);
1646 } else if ( priv
->timerType
== TLAN_TIMER_ACTIVITY
) {
1647 priv
->timerSetAt
= jiffies
;
1651 dev
->last_rx
= jiffies
;
1655 } /* TLan_HandleRxEOF */
1660 /***************************************************************
1666 * dev Device assigned the IRQ that was
1668 * host_int The contents of the HOST_INT
1671 * This function handles the Dummy interrupt, which is
1672 * raised whenever a test interrupt is generated by setting
1673 * the Req_Int bit of HOST_CMD to 1.
1675 **************************************************************/
1677 static u32
TLan_HandleDummy( struct net_device
*dev
, u16 host_int
)
1679 printk( "TLAN: Test interrupt on %s.\n", dev
->name
);
1682 } /* TLan_HandleDummy */
1687 /***************************************************************
1693 * dev Device assigned the IRQ that was
1695 * host_int The contents of the HOST_INT
1698 * This driver is structured to determine EOC occurrences by
1699 * reading the CSTAT member of the list structure. Tx EOC
1700 * interrupts are disabled via the DIO INTDIS register.
1701 * However, TLAN chips before revision 3.0 didn't have this
1702 * functionality, so process EOC events if this is the
1705 **************************************************************/
1707 static u32
TLan_HandleTxEOC( struct net_device
*dev
, u16 host_int
)
1709 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1710 TLanList
*head_list
;
1711 dma_addr_t head_list_phys
;
1715 if ( priv
->tlanRev
< 0x30 ) {
1716 TLAN_DBG( TLAN_DEBUG_TX
,
1717 "TRANSMIT: Handling TX EOC (Head=%d Tail=%d) -- IRQ\n",
1718 priv
->txHead
, priv
->txTail
);
1719 head_list
= priv
->txList
+ priv
->txHead
;
1720 head_list_phys
= priv
->txListDMA
+ sizeof(TLanList
) * priv
->txHead
;
1721 if ( ( head_list
->cStat
& TLAN_CSTAT_READY
) == TLAN_CSTAT_READY
) {
1722 netif_stop_queue(dev
);
1723 outl( head_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1726 priv
->txInProgress
= 0;
1732 } /* TLan_HandleTxEOC */
1737 /***************************************************************
1738 * TLan_HandleStatusCheck
1741 * 0 if Adapter check, 1 if Network Status check.
1743 * dev Device assigned the IRQ that was
1745 * host_int The contents of the HOST_INT
1748 * This function handles Adapter Check/Network Status
1749 * interrupts generated by the adapter. It checks the
1750 * vector in the HOST_INT register to determine if it is
1751 * an Adapter Check interrupt. If so, it resets the
1752 * adapter. Otherwise it clears the status registers
1753 * and services the PHY.
1755 **************************************************************/
1757 static u32
TLan_HandleStatusCheck( struct net_device
*dev
, u16 host_int
)
1759 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1768 if ( host_int
& TLAN_HI_IV_MASK
) {
1769 netif_stop_queue( dev
);
1770 error
= inl( dev
->base_addr
+ TLAN_CH_PARM
);
1771 printk( "TLAN: %s: Adaptor Error = 0x%x\n", dev
->name
, error
);
1772 TLan_ReadAndClearStats( dev
, TLAN_RECORD
);
1773 outl( TLAN_HC_AD_RST
, dev
->base_addr
+ TLAN_HOST_CMD
);
1775 schedule_work(&priv
->tlan_tqueue
);
1777 netif_wake_queue(dev
);
1780 TLAN_DBG( TLAN_DEBUG_GNRL
, "%s: Status Check\n", dev
->name
);
1781 phy
= priv
->phy
[priv
->phyNum
];
1783 net_sts
= TLan_DioRead8( dev
->base_addr
, TLAN_NET_STS
);
1785 TLan_DioWrite8( dev
->base_addr
, TLAN_NET_STS
, net_sts
);
1786 TLAN_DBG( TLAN_DEBUG_GNRL
, "%s: Net_Sts = %x\n",
1787 dev
->name
, (unsigned) net_sts
);
1789 if ( ( net_sts
& TLAN_NET_STS_MIRQ
) && ( priv
->phyNum
== 0 ) ) {
1790 TLan_MiiReadReg( dev
, phy
, TLAN_TLPHY_STS
, &tlphy_sts
);
1791 TLan_MiiReadReg( dev
, phy
, TLAN_TLPHY_CTL
, &tlphy_ctl
);
1792 if ( ! ( tlphy_sts
& TLAN_TS_POLOK
) &&
1793 ! ( tlphy_ctl
& TLAN_TC_SWAPOL
) ) {
1794 tlphy_ctl
|= TLAN_TC_SWAPOL
;
1795 TLan_MiiWriteReg( dev
, phy
, TLAN_TLPHY_CTL
, tlphy_ctl
);
1796 } else if ( ( tlphy_sts
& TLAN_TS_POLOK
)
1797 && ( 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 static 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
,
1843 "RECEIVE: Handling RX EOC (Head=%d Tail=%d) -- IRQ\n",
1844 priv
->rxHead
, priv
->rxTail
);
1845 head_list_phys
= priv
->rxListDMA
+ sizeof(TLanList
) * priv
->rxHead
;
1846 outl( head_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1847 ack
|= TLAN_HC_GO
| TLAN_HC_RT
;
1853 } /* TLan_HandleRxEOC */
1858 /*****************************************************************************
1859 ******************************************************************************
1861 ThunderLAN Driver Timer Function
1863 ******************************************************************************
1864 *****************************************************************************/
1867 /***************************************************************
1873 * data A value given to add timer when
1874 * add_timer was called.
1876 * This function handles timed functionality for the
1877 * TLAN driver. The two current timer uses are for
1878 * delaying for autonegotionation and driving the ACT LED.
1879 * - Autonegotiation requires being allowed about
1880 * 2 1/2 seconds before attempting to transmit a
1881 * packet. It would be a very bad thing to hang
1882 * the kernel this long, so the driver doesn't
1883 * allow transmission 'til after this time, for
1884 * certain PHYs. It would be much nicer if all
1885 * PHYs were interrupt-capable like the internal
1887 * - The ACT LED, which shows adapter activity, is
1888 * driven by the driver, and so must be left on
1889 * for a short period to power up the LED so it
1890 * can be seen. This delay can be changed by
1891 * changing the TLAN_TIMER_ACT_DELAY in tlan.h,
1892 * if desired. 100 ms produces a slightly
1893 * sluggish response.
1895 **************************************************************/
1897 static void TLan_Timer( unsigned long data
)
1899 struct net_device
*dev
= (struct net_device
*) data
;
1900 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1902 unsigned long flags
= 0;
1904 priv
->timer
.function
= NULL
;
1906 switch ( priv
->timerType
) {
1908 case TLAN_TIMER_LINK_BEAT
:
1909 TLan_PhyMonitor( dev
);
1912 case TLAN_TIMER_PHY_PDOWN
:
1913 TLan_PhyPowerDown( dev
);
1915 case TLAN_TIMER_PHY_PUP
:
1916 TLan_PhyPowerUp( dev
);
1918 case TLAN_TIMER_PHY_RESET
:
1919 TLan_PhyReset( dev
);
1921 case TLAN_TIMER_PHY_START_LINK
:
1922 TLan_PhyStartLink( dev
);
1924 case TLAN_TIMER_PHY_FINISH_AN
:
1925 TLan_PhyFinishAutoNeg( dev
);
1927 case TLAN_TIMER_FINISH_RESET
:
1928 TLan_FinishReset( dev
);
1930 case TLAN_TIMER_ACTIVITY
:
1931 spin_lock_irqsave(&priv
->lock
, flags
);
1932 if ( priv
->timer
.function
== NULL
) {
1933 elapsed
= jiffies
- priv
->timerSetAt
;
1934 if ( elapsed
>= TLAN_TIMER_ACT_DELAY
) {
1935 TLan_DioWrite8( dev
->base_addr
,
1936 TLAN_LED_REG
, TLAN_LED_LINK
);
1938 priv
->timer
.function
= &TLan_Timer
;
1939 priv
->timer
.expires
= priv
->timerSetAt
1940 + TLAN_TIMER_ACT_DELAY
;
1941 spin_unlock_irqrestore(&priv
->lock
, flags
);
1942 add_timer( &priv
->timer
);
1946 spin_unlock_irqrestore(&priv
->lock
, flags
);
1957 /*****************************************************************************
1958 ******************************************************************************
1960 ThunderLAN Driver Adapter Related Routines
1962 ******************************************************************************
1963 *****************************************************************************/
1966 /***************************************************************
1972 * dev The device structure with the list
1973 * stuctures to be reset.
1975 * This routine sets the variables associated with managing
1976 * the TLAN lists to their initial values.
1978 **************************************************************/
1980 static void TLan_ResetLists( struct net_device
*dev
)
1982 TLanPrivateInfo
*priv
= netdev_priv(dev
);
1985 dma_addr_t list_phys
;
1986 struct sk_buff
*skb
;
1991 for ( i
= 0; i
< TLAN_NUM_TX_LISTS
; i
++ ) {
1992 list
= priv
->txList
+ i
;
1993 list
->cStat
= TLAN_CSTAT_UNUSED
;
1995 list
->buffer
[0].address
= priv
->txBufferDMA
1996 + ( i
* TLAN_MAX_FRAME_SIZE
);
1998 list
->buffer
[0].address
= 0;
2000 list
->buffer
[2].count
= 0;
2001 list
->buffer
[2].address
= 0;
2002 list
->buffer
[8].address
= 0;
2003 list
->buffer
[9].address
= 0;
2007 priv
->rxTail
= TLAN_NUM_RX_LISTS
- 1;
2008 for ( i
= 0; i
< TLAN_NUM_RX_LISTS
; i
++ ) {
2009 list
= priv
->rxList
+ i
;
2010 list_phys
= priv
->rxListDMA
+ sizeof(TLanList
) * i
;
2011 list
->cStat
= TLAN_CSTAT_READY
;
2012 list
->frameSize
= TLAN_MAX_FRAME_SIZE
;
2013 list
->buffer
[0].count
= TLAN_MAX_FRAME_SIZE
| TLAN_LAST_BUFFER
;
2015 list
->buffer
[0].address
= priv
->rxBufferDMA
2016 + ( i
* TLAN_MAX_FRAME_SIZE
);
2018 skb
= netdev_alloc_skb(dev
, TLAN_MAX_FRAME_SIZE
+ 7 );
2020 pr_err("TLAN: out of memory for received data.\n" );
2024 skb_reserve( skb
, NET_IP_ALIGN
);
2025 list
->buffer
[0].address
= pci_map_single(priv
->pciDev
, t
,
2026 TLAN_MAX_FRAME_SIZE
,
2027 PCI_DMA_FROMDEVICE
);
2028 TLan_StoreSKB(list
, skb
);
2030 list
->buffer
[1].count
= 0;
2031 list
->buffer
[1].address
= 0;
2032 list
->forward
= list_phys
+ sizeof(TLanList
);
2035 /* in case ran out of memory early, clear bits */
2036 while (i
< TLAN_NUM_RX_LISTS
) {
2037 TLan_StoreSKB(priv
->rxList
+ i
, NULL
);
2042 } /* TLan_ResetLists */
2045 static void TLan_FreeLists( struct net_device
*dev
)
2047 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2050 struct sk_buff
*skb
;
2053 for ( i
= 0; i
< TLAN_NUM_TX_LISTS
; i
++ ) {
2054 list
= priv
->txList
+ i
;
2055 skb
= TLan_GetSKB(list
);
2057 pci_unmap_single(priv
->pciDev
,
2058 list
->buffer
[0].address
, skb
->len
,
2060 dev_kfree_skb_any( skb
);
2061 list
->buffer
[8].address
= 0;
2062 list
->buffer
[9].address
= 0;
2066 for ( i
= 0; i
< TLAN_NUM_RX_LISTS
; i
++ ) {
2067 list
= priv
->rxList
+ i
;
2068 skb
= TLan_GetSKB(list
);
2070 pci_unmap_single(priv
->pciDev
,
2071 list
->buffer
[0].address
,
2072 TLAN_MAX_FRAME_SIZE
,
2073 PCI_DMA_FROMDEVICE
);
2074 dev_kfree_skb_any( skb
);
2075 list
->buffer
[8].address
= 0;
2076 list
->buffer
[9].address
= 0;
2080 } /* TLan_FreeLists */
2085 /***************************************************************
2091 * io_base Base IO port of the device of
2092 * which to print DIO registers.
2094 * This function prints out all the internal (DIO)
2095 * registers of a TLAN chip.
2097 **************************************************************/
2099 static void TLan_PrintDio( u16 io_base
)
2104 printk( "TLAN: Contents of internal registers for io base 0x%04hx.\n",
2106 printk( "TLAN: Off. +0 +4\n" );
2107 for ( i
= 0; i
< 0x4C; i
+= 8 ) {
2108 data0
= TLan_DioRead32( io_base
, i
);
2109 data1
= TLan_DioRead32( io_base
, i
+ 0x4 );
2110 printk( "TLAN: 0x%02x 0x%08x 0x%08x\n", i
, data0
, data1
);
2113 } /* TLan_PrintDio */
2118 /***************************************************************
2124 * list A pointer to the TLanList structure to
2126 * type A string to designate type of list,
2128 * num The index of the list.
2130 * This function prints out the contents of the list
2131 * pointed to by the list parameter.
2133 **************************************************************/
2135 static void TLan_PrintList( TLanList
*list
, char *type
, int num
)
2139 printk( "TLAN: %s List %d at %p\n", type
, num
, list
);
2140 printk( "TLAN: Forward = 0x%08x\n", list
->forward
);
2141 printk( "TLAN: CSTAT = 0x%04hx\n", list
->cStat
);
2142 printk( "TLAN: Frame Size = 0x%04hx\n", list
->frameSize
);
2143 /* for ( i = 0; i < 10; i++ ) { */
2144 for ( i
= 0; i
< 2; i
++ ) {
2145 printk( "TLAN: Buffer[%d].count, addr = 0x%08x, 0x%08x\n",
2146 i
, list
->buffer
[i
].count
, list
->buffer
[i
].address
);
2149 } /* TLan_PrintList */
2154 /***************************************************************
2155 * TLan_ReadAndClearStats
2160 * dev Pointer to device structure of adapter
2161 * to which to read stats.
2162 * record Flag indicating whether to add
2164 * This functions reads all the internal status registers
2165 * of the TLAN chip, which clears them as a side effect.
2166 * It then either adds the values to the device's status
2167 * struct, or discards them, depending on whether record
2168 * is TLAN_RECORD (!=0) or TLAN_IGNORE (==0).
2170 **************************************************************/
2172 static void TLan_ReadAndClearStats( struct net_device
*dev
, int record
)
2174 u32 tx_good
, tx_under
;
2175 u32 rx_good
, rx_over
;
2176 u32 def_tx
, crc
, code
;
2177 u32 multi_col
, single_col
;
2178 u32 excess_col
, late_col
, loss
;
2180 outw( TLAN_GOOD_TX_FRMS
, dev
->base_addr
+ TLAN_DIO_ADR
);
2181 tx_good
= inb( dev
->base_addr
+ TLAN_DIO_DATA
);
2182 tx_good
+= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 1 ) << 8;
2183 tx_good
+= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 2 ) << 16;
2184 tx_under
= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 3 );
2186 outw( TLAN_GOOD_RX_FRMS
, dev
->base_addr
+ TLAN_DIO_ADR
);
2187 rx_good
= inb( dev
->base_addr
+ TLAN_DIO_DATA
);
2188 rx_good
+= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 1 ) << 8;
2189 rx_good
+= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 2 ) << 16;
2190 rx_over
= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 3 );
2192 outw( TLAN_DEFERRED_TX
, dev
->base_addr
+ TLAN_DIO_ADR
);
2193 def_tx
= inb( dev
->base_addr
+ TLAN_DIO_DATA
);
2194 def_tx
+= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 1 ) << 8;
2195 crc
= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 2 );
2196 code
= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 3 );
2198 outw( TLAN_MULTICOL_FRMS
, dev
->base_addr
+ TLAN_DIO_ADR
);
2199 multi_col
= inb( dev
->base_addr
+ TLAN_DIO_DATA
);
2200 multi_col
+= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 1 ) << 8;
2201 single_col
= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 2 );
2202 single_col
+= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 3 ) << 8;
2204 outw( TLAN_EXCESSCOL_FRMS
, dev
->base_addr
+ TLAN_DIO_ADR
);
2205 excess_col
= inb( dev
->base_addr
+ TLAN_DIO_DATA
);
2206 late_col
= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 1 );
2207 loss
= inb( dev
->base_addr
+ TLAN_DIO_DATA
+ 2 );
2210 dev
->stats
.rx_packets
+= rx_good
;
2211 dev
->stats
.rx_errors
+= rx_over
+ crc
+ code
;
2212 dev
->stats
.tx_packets
+= tx_good
;
2213 dev
->stats
.tx_errors
+= tx_under
+ loss
;
2214 dev
->stats
.collisions
+= multi_col
+ single_col
+ excess_col
+ late_col
;
2216 dev
->stats
.rx_over_errors
+= rx_over
;
2217 dev
->stats
.rx_crc_errors
+= crc
;
2218 dev
->stats
.rx_frame_errors
+= code
;
2220 dev
->stats
.tx_aborted_errors
+= tx_under
;
2221 dev
->stats
.tx_carrier_errors
+= loss
;
2224 } /* TLan_ReadAndClearStats */
2229 /***************************************************************
2235 * dev Pointer to device structure of adapter
2238 * This function resets the adapter and it's physical
2239 * device. See Chap. 3, pp. 9-10 of the "ThunderLAN
2240 * Programmer's Guide" for details. The routine tries to
2241 * implement what is detailed there, though adjustments
2244 **************************************************************/
2247 TLan_ResetAdapter( struct net_device
*dev
)
2249 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2255 priv
->tlanFullDuplex
= FALSE
;
2257 netif_carrier_off(dev
);
2259 /* 1. Assert reset bit. */
2261 data
= inl(dev
->base_addr
+ TLAN_HOST_CMD
);
2262 data
|= TLAN_HC_AD_RST
;
2263 outl(data
, dev
->base_addr
+ TLAN_HOST_CMD
);
2267 /* 2. Turn off interrupts. ( Probably isn't necessary ) */
2269 data
= inl(dev
->base_addr
+ TLAN_HOST_CMD
);
2270 data
|= TLAN_HC_INT_OFF
;
2271 outl(data
, dev
->base_addr
+ TLAN_HOST_CMD
);
2273 /* 3. Clear AREGs and HASHs. */
2275 for ( i
= TLAN_AREG_0
; i
<= TLAN_HASH_2
; i
+= 4 ) {
2276 TLan_DioWrite32( dev
->base_addr
, (u16
) i
, 0 );
2279 /* 4. Setup NetConfig register. */
2281 data
= TLAN_NET_CFG_1FRAG
| TLAN_NET_CFG_1CHAN
| TLAN_NET_CFG_PHY_EN
;
2282 TLan_DioWrite16( dev
->base_addr
, TLAN_NET_CONFIG
, (u16
) data
);
2284 /* 5. Load Ld_Tmr and Ld_Thr in HOST_CMD. */
2286 outl( TLAN_HC_LD_TMR
| 0x3f, dev
->base_addr
+ TLAN_HOST_CMD
);
2287 outl( TLAN_HC_LD_THR
| 0x9, dev
->base_addr
+ TLAN_HOST_CMD
);
2289 /* 6. Unreset the MII by setting NMRST (in NetSio) to 1. */
2291 outw( TLAN_NET_SIO
, dev
->base_addr
+ TLAN_DIO_ADR
);
2292 addr
= dev
->base_addr
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
2293 TLan_SetBit( TLAN_NET_SIO_NMRST
, addr
);
2295 /* 7. Setup the remaining registers. */
2297 if ( priv
->tlanRev
>= 0x30 ) {
2298 data8
= TLAN_ID_TX_EOC
| TLAN_ID_RX_EOC
;
2299 TLan_DioWrite8( dev
->base_addr
, TLAN_INT_DIS
, data8
);
2301 TLan_PhyDetect( dev
);
2302 data
= TLAN_NET_CFG_1FRAG
| TLAN_NET_CFG_1CHAN
;
2304 if ( priv
->adapter
->flags
& TLAN_ADAPTER_BIT_RATE_PHY
) {
2305 data
|= TLAN_NET_CFG_BIT
;
2306 if ( priv
->aui
== 1 ) {
2307 TLan_DioWrite8( dev
->base_addr
, TLAN_ACOMMIT
, 0x0a );
2308 } else if ( priv
->duplex
== TLAN_DUPLEX_FULL
) {
2309 TLan_DioWrite8( dev
->base_addr
, TLAN_ACOMMIT
, 0x00 );
2310 priv
->tlanFullDuplex
= TRUE
;
2312 TLan_DioWrite8( dev
->base_addr
, TLAN_ACOMMIT
, 0x08 );
2316 if ( priv
->phyNum
== 0 ) {
2317 data
|= TLAN_NET_CFG_PHY_EN
;
2319 TLan_DioWrite16( dev
->base_addr
, TLAN_NET_CONFIG
, (u16
) data
);
2321 if ( priv
->adapter
->flags
& TLAN_ADAPTER_UNMANAGED_PHY
) {
2322 TLan_FinishReset( dev
);
2324 TLan_PhyPowerDown( dev
);
2327 } /* TLan_ResetAdapter */
2333 TLan_FinishReset( struct net_device
*dev
)
2335 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2343 u16 tlphy_id1
, tlphy_id2
;
2346 phy
= priv
->phy
[priv
->phyNum
];
2348 data
= TLAN_NET_CMD_NRESET
| TLAN_NET_CMD_NWRAP
;
2349 if ( priv
->tlanFullDuplex
) {
2350 data
|= TLAN_NET_CMD_DUPLEX
;
2352 TLan_DioWrite8( dev
->base_addr
, TLAN_NET_CMD
, data
);
2353 data
= TLAN_NET_MASK_MASK4
| TLAN_NET_MASK_MASK5
;
2354 if ( priv
->phyNum
== 0 ) {
2355 data
|= TLAN_NET_MASK_MASK7
;
2357 TLan_DioWrite8( dev
->base_addr
, TLAN_NET_MASK
, data
);
2358 TLan_DioWrite16( dev
->base_addr
, TLAN_MAX_RX
, ((1536)+7)&~7 );
2359 TLan_MiiReadReg( dev
, phy
, MII_GEN_ID_HI
, &tlphy_id1
);
2360 TLan_MiiReadReg( dev
, phy
, MII_GEN_ID_LO
, &tlphy_id2
);
2362 if ( ( priv
->adapter
->flags
& TLAN_ADAPTER_UNMANAGED_PHY
) ||
2364 status
= MII_GS_LINK
;
2365 printk( "TLAN: %s: Link forced.\n", dev
->name
);
2367 TLan_MiiReadReg( dev
, phy
, MII_GEN_STS
, &status
);
2369 TLan_MiiReadReg( dev
, phy
, MII_GEN_STS
, &status
);
2370 if ( (status
& MII_GS_LINK
) &&
2371 /* We only support link info on Nat.Sem. PHY's */
2372 (tlphy_id1
== NAT_SEM_ID1
) &&
2373 (tlphy_id2
== NAT_SEM_ID2
) ) {
2374 TLan_MiiReadReg( dev
, phy
, MII_AN_LPA
, &partner
);
2375 TLan_MiiReadReg( dev
, phy
, TLAN_TLPHY_PAR
, &tlphy_par
);
2377 printk( "TLAN: %s: Link active with ", dev
->name
);
2378 if (!(tlphy_par
& TLAN_PHY_AN_EN_STAT
)) {
2379 printk( "forced 10%sMbps %s-Duplex\n",
2380 tlphy_par
& TLAN_PHY_SPEED_100
? "" : "0",
2381 tlphy_par
& TLAN_PHY_DUPLEX_FULL
? "Full" : "Half");
2383 printk( "AutoNegotiation enabled, at 10%sMbps %s-Duplex\n",
2384 tlphy_par
& TLAN_PHY_SPEED_100
? "" : "0",
2385 tlphy_par
& TLAN_PHY_DUPLEX_FULL
? "Full" : "Half");
2386 printk("TLAN: Partner capability: ");
2387 for (i
= 5; i
<= 10; i
++)
2388 if (partner
& (1<<i
))
2389 printk("%s",media
[i
-5]);
2393 TLan_DioWrite8( dev
->base_addr
, TLAN_LED_REG
, TLAN_LED_LINK
);
2395 /* We have link beat..for now anyway */
2397 /*Enabling link beat monitoring */
2398 TLan_SetTimer( dev
, (10*HZ
), TLAN_TIMER_LINK_BEAT
);
2400 } else if (status
& MII_GS_LINK
) {
2401 printk( "TLAN: %s: Link active\n", dev
->name
);
2402 TLan_DioWrite8( dev
->base_addr
, TLAN_LED_REG
, TLAN_LED_LINK
);
2406 if ( priv
->phyNum
== 0 ) {
2407 TLan_MiiReadReg( dev
, phy
, TLAN_TLPHY_CTL
, &tlphy_ctl
);
2408 tlphy_ctl
|= TLAN_TC_INTEN
;
2409 TLan_MiiWriteReg( dev
, phy
, TLAN_TLPHY_CTL
, tlphy_ctl
);
2410 sio
= TLan_DioRead8( dev
->base_addr
, TLAN_NET_SIO
);
2411 sio
|= TLAN_NET_SIO_MINTEN
;
2412 TLan_DioWrite8( dev
->base_addr
, TLAN_NET_SIO
, sio
);
2415 if ( status
& MII_GS_LINK
) {
2416 TLan_SetMac( dev
, 0, dev
->dev_addr
);
2417 priv
->phyOnline
= 1;
2418 outb( ( TLAN_HC_INT_ON
>> 8 ), dev
->base_addr
+ TLAN_HOST_CMD
+ 1 );
2419 if ( debug
>= 1 && debug
!= TLAN_DEBUG_PROBE
) {
2420 outb( ( TLAN_HC_REQ_INT
>> 8 ), dev
->base_addr
+ TLAN_HOST_CMD
+ 1 );
2422 outl( priv
->rxListDMA
, dev
->base_addr
+ TLAN_CH_PARM
);
2423 outl( TLAN_HC_GO
| TLAN_HC_RT
, dev
->base_addr
+ TLAN_HOST_CMD
);
2424 netif_carrier_on(dev
);
2426 printk( "TLAN: %s: Link inactive, will retry in 10 secs...\n",
2428 TLan_SetTimer( dev
, (10*HZ
), TLAN_TIMER_FINISH_RESET
);
2431 TLan_SetMulticastList(dev
);
2433 } /* TLan_FinishReset */
2438 /***************************************************************
2444 * dev Pointer to device structure of adapter
2445 * on which to change the AREG.
2446 * areg The AREG to set the address in (0 - 3).
2447 * mac A pointer to an array of chars. Each
2448 * element stores one byte of the address.
2449 * IE, it isn't in ascii.
2451 * This function transfers a MAC address to one of the
2452 * TLAN AREGs (address registers). The TLAN chip locks
2453 * the register on writing to offset 0 and unlocks the
2454 * register after writing to offset 5. If NULL is passed
2455 * in mac, then the AREG is filled with 0's.
2457 **************************************************************/
2459 static void TLan_SetMac( struct net_device
*dev
, int areg
, char *mac
)
2465 if ( mac
!= NULL
) {
2466 for ( i
= 0; i
< 6; i
++ )
2467 TLan_DioWrite8( dev
->base_addr
,
2468 TLAN_AREG_0
+ areg
+ i
, mac
[i
] );
2470 for ( i
= 0; i
< 6; i
++ )
2471 TLan_DioWrite8( dev
->base_addr
,
2472 TLAN_AREG_0
+ areg
+ i
, 0 );
2480 /*****************************************************************************
2481 ******************************************************************************
2483 ThunderLAN Driver PHY Layer Routines
2485 ******************************************************************************
2486 *****************************************************************************/
2490 /*********************************************************************
2496 * dev A pointer to the device structure of the
2497 * TLAN device having the PHYs to be detailed.
2499 * This function prints the registers a PHY (aka transceiver).
2501 ********************************************************************/
2503 static void TLan_PhyPrint( struct net_device
*dev
)
2505 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2506 u16 i
, data0
, data1
, data2
, data3
, phy
;
2508 phy
= priv
->phy
[priv
->phyNum
];
2510 if ( priv
->adapter
->flags
& TLAN_ADAPTER_UNMANAGED_PHY
) {
2511 printk( "TLAN: Device %s, Unmanaged PHY.\n", dev
->name
);
2512 } else if ( phy
<= TLAN_PHY_MAX_ADDR
) {
2513 printk( "TLAN: Device %s, PHY 0x%02x.\n", dev
->name
, phy
);
2514 printk( "TLAN: Off. +0 +1 +2 +3 \n" );
2515 for ( i
= 0; i
< 0x20; i
+= 4 ) {
2516 printk( "TLAN: 0x%02x", i
);
2517 TLan_MiiReadReg( dev
, phy
, i
, &data0
);
2518 printk( " 0x%04hx", data0
);
2519 TLan_MiiReadReg( dev
, phy
, i
+ 1, &data1
);
2520 printk( " 0x%04hx", data1
);
2521 TLan_MiiReadReg( dev
, phy
, i
+ 2, &data2
);
2522 printk( " 0x%04hx", data2
);
2523 TLan_MiiReadReg( dev
, phy
, i
+ 3, &data3
);
2524 printk( " 0x%04hx\n", data3
);
2527 printk( "TLAN: Device %s, Invalid PHY.\n", dev
->name
);
2530 } /* TLan_PhyPrint */
2535 /*********************************************************************
2541 * dev A pointer to the device structure of the adapter
2542 * for which the PHY needs determined.
2544 * So far I've found that adapters which have external PHYs
2545 * may also use the internal PHY for part of the functionality.
2546 * (eg, AUI/Thinnet). This function finds out if this TLAN
2547 * chip has an internal PHY, and then finds the first external
2548 * PHY (starting from address 0) if it exists).
2550 ********************************************************************/
2552 static void TLan_PhyDetect( struct net_device
*dev
)
2554 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2560 if ( priv
->adapter
->flags
& TLAN_ADAPTER_UNMANAGED_PHY
) {
2561 priv
->phyNum
= 0xFFFF;
2565 TLan_MiiReadReg( dev
, TLAN_PHY_MAX_ADDR
, MII_GEN_ID_HI
, &hi
);
2567 if ( hi
!= 0xFFFF ) {
2568 priv
->phy
[0] = TLAN_PHY_MAX_ADDR
;
2570 priv
->phy
[0] = TLAN_PHY_NONE
;
2573 priv
->phy
[1] = TLAN_PHY_NONE
;
2574 for ( phy
= 0; phy
<= TLAN_PHY_MAX_ADDR
; phy
++ ) {
2575 TLan_MiiReadReg( dev
, phy
, MII_GEN_CTL
, &control
);
2576 TLan_MiiReadReg( dev
, phy
, MII_GEN_ID_HI
, &hi
);
2577 TLan_MiiReadReg( dev
, phy
, MII_GEN_ID_LO
, &lo
);
2578 if ( ( control
!= 0xFFFF ) ||
2579 ( hi
!= 0xFFFF ) || ( lo
!= 0xFFFF ) ) {
2580 TLAN_DBG( TLAN_DEBUG_GNRL
,
2581 "PHY found at %02x %04x %04x %04x\n",
2582 phy
, control
, hi
, lo
);
2583 if ( ( priv
->phy
[1] == TLAN_PHY_NONE
) &&
2584 ( phy
!= TLAN_PHY_MAX_ADDR
) ) {
2590 if ( priv
->phy
[1] != TLAN_PHY_NONE
) {
2592 } else if ( priv
->phy
[0] != TLAN_PHY_NONE
) {
2595 printk( "TLAN: Cannot initialize device, no PHY was found!\n" );
2598 } /* TLan_PhyDetect */
2603 static void TLan_PhyPowerDown( struct net_device
*dev
)
2605 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2608 TLAN_DBG( TLAN_DEBUG_GNRL
, "%s: Powering down PHY(s).\n", dev
->name
);
2609 value
= MII_GC_PDOWN
| MII_GC_LOOPBK
| MII_GC_ISOLATE
;
2610 TLan_MiiSync( dev
->base_addr
);
2611 TLan_MiiWriteReg( dev
, priv
->phy
[priv
->phyNum
], MII_GEN_CTL
, value
);
2612 if ( ( priv
->phyNum
== 0 ) &&
2613 ( priv
->phy
[1] != TLAN_PHY_NONE
) &&
2614 ( ! ( priv
->adapter
->flags
& TLAN_ADAPTER_USE_INTERN_10
) ) ) {
2615 TLan_MiiSync( dev
->base_addr
);
2616 TLan_MiiWriteReg( dev
, priv
->phy
[1], MII_GEN_CTL
, value
);
2619 /* Wait for 50 ms and powerup
2620 * This is abitrary. It is intended to make sure the
2621 * transceiver settles.
2623 TLan_SetTimer( dev
, (HZ
/20), TLAN_TIMER_PHY_PUP
);
2625 } /* TLan_PhyPowerDown */
2630 static void TLan_PhyPowerUp( struct net_device
*dev
)
2632 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2635 TLAN_DBG( TLAN_DEBUG_GNRL
, "%s: Powering up PHY.\n", dev
->name
);
2636 TLan_MiiSync( dev
->base_addr
);
2637 value
= MII_GC_LOOPBK
;
2638 TLan_MiiWriteReg( dev
, priv
->phy
[priv
->phyNum
], MII_GEN_CTL
, value
);
2639 TLan_MiiSync(dev
->base_addr
);
2640 /* Wait for 500 ms and reset the
2641 * transceiver. The TLAN docs say both 50 ms and
2642 * 500 ms, so do the longer, just in case.
2644 TLan_SetTimer( dev
, (HZ
/20), TLAN_TIMER_PHY_RESET
);
2646 } /* TLan_PhyPowerUp */
2651 static void TLan_PhyReset( struct net_device
*dev
)
2653 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2657 phy
= priv
->phy
[priv
->phyNum
];
2659 TLAN_DBG( TLAN_DEBUG_GNRL
, "%s: Reseting PHY.\n", dev
->name
);
2660 TLan_MiiSync( dev
->base_addr
);
2661 value
= MII_GC_LOOPBK
| MII_GC_RESET
;
2662 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
, value
);
2663 TLan_MiiReadReg( dev
, phy
, MII_GEN_CTL
, &value
);
2664 while ( value
& MII_GC_RESET
) {
2665 TLan_MiiReadReg( dev
, phy
, MII_GEN_CTL
, &value
);
2668 /* Wait for 500 ms and initialize.
2669 * I don't remember why I wait this long.
2670 * I've changed this to 50ms, as it seems long enough.
2672 TLan_SetTimer( dev
, (HZ
/20), TLAN_TIMER_PHY_START_LINK
);
2674 } /* TLan_PhyReset */
2679 static void TLan_PhyStartLink( struct net_device
*dev
)
2681 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2689 phy
= priv
->phy
[priv
->phyNum
];
2690 TLAN_DBG( TLAN_DEBUG_GNRL
, "%s: Trying to activate link.\n", dev
->name
);
2691 TLan_MiiReadReg( dev
, phy
, MII_GEN_STS
, &status
);
2692 TLan_MiiReadReg( dev
, phy
, MII_GEN_STS
, &ability
);
2694 if ( ( status
& MII_GS_AUTONEG
) &&
2696 ability
= status
>> 11;
2697 if ( priv
->speed
== TLAN_SPEED_10
&&
2698 priv
->duplex
== TLAN_DUPLEX_HALF
) {
2699 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
, 0x0000);
2700 } else if ( priv
->speed
== TLAN_SPEED_10
&&
2701 priv
->duplex
== TLAN_DUPLEX_FULL
) {
2702 priv
->tlanFullDuplex
= TRUE
;
2703 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
, 0x0100);
2704 } else if ( priv
->speed
== TLAN_SPEED_100
&&
2705 priv
->duplex
== TLAN_DUPLEX_HALF
) {
2706 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
, 0x2000);
2707 } else if ( priv
->speed
== TLAN_SPEED_100
&&
2708 priv
->duplex
== TLAN_DUPLEX_FULL
) {
2709 priv
->tlanFullDuplex
= TRUE
;
2710 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
, 0x2100);
2713 /* Set Auto-Neg advertisement */
2714 TLan_MiiWriteReg( dev
, phy
, MII_AN_ADV
, (ability
<< 5) | 1);
2715 /* Enablee Auto-Neg */
2716 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
, 0x1000 );
2717 /* Restart Auto-Neg */
2718 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
, 0x1200 );
2719 /* Wait for 4 sec for autonegotiation
2720 * to complete. The max spec time is less than this
2721 * but the card need additional time to start AN.
2722 * .5 sec should be plenty extra.
2724 printk( "TLAN: %s: Starting autonegotiation.\n", dev
->name
);
2725 TLan_SetTimer( dev
, (2*HZ
), TLAN_TIMER_PHY_FINISH_AN
);
2731 if ( ( priv
->aui
) && ( priv
->phyNum
!= 0 ) ) {
2733 data
= TLAN_NET_CFG_1FRAG
| TLAN_NET_CFG_1CHAN
| TLAN_NET_CFG_PHY_EN
;
2734 TLan_DioWrite16( dev
->base_addr
, TLAN_NET_CONFIG
, data
);
2735 TLan_SetTimer( dev
, (40*HZ
/1000), TLAN_TIMER_PHY_PDOWN
);
2737 } else if ( priv
->phyNum
== 0 ) {
2739 TLan_MiiReadReg( dev
, phy
, TLAN_TLPHY_CTL
, &tctl
);
2741 tctl
|= TLAN_TC_AUISEL
;
2743 tctl
&= ~TLAN_TC_AUISEL
;
2744 if ( priv
->duplex
== TLAN_DUPLEX_FULL
) {
2745 control
|= MII_GC_DUPLEX
;
2746 priv
->tlanFullDuplex
= TRUE
;
2748 if ( priv
->speed
== TLAN_SPEED_100
) {
2749 control
|= MII_GC_SPEEDSEL
;
2752 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
, control
);
2753 TLan_MiiWriteReg( dev
, phy
, TLAN_TLPHY_CTL
, tctl
);
2756 /* Wait for 2 sec to give the transceiver time
2757 * to establish link.
2759 TLan_SetTimer( dev
, (4*HZ
), TLAN_TIMER_FINISH_RESET
);
2761 } /* TLan_PhyStartLink */
2766 static void TLan_PhyFinishAutoNeg( struct net_device
*dev
)
2768 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2776 phy
= priv
->phy
[priv
->phyNum
];
2778 TLan_MiiReadReg( dev
, phy
, MII_GEN_STS
, &status
);
2780 TLan_MiiReadReg( dev
, phy
, MII_GEN_STS
, &status
);
2782 if ( ! ( status
& MII_GS_AUTOCMPLT
) ) {
2783 /* Wait for 8 sec to give the process
2784 * more time. Perhaps we should fail after a while.
2786 if (!priv
->neg_be_verbose
++) {
2787 pr_info("TLAN: Giving autonegotiation more time.\n");
2788 pr_info("TLAN: Please check that your adapter has\n");
2789 pr_info("TLAN: been properly connected to a HUB or Switch.\n");
2790 pr_info("TLAN: Trying to establish link in the background...\n");
2792 TLan_SetTimer( dev
, (8*HZ
), TLAN_TIMER_PHY_FINISH_AN
);
2796 printk( "TLAN: %s: Autonegotiation complete.\n", dev
->name
);
2797 TLan_MiiReadReg( dev
, phy
, MII_AN_ADV
, &an_adv
);
2798 TLan_MiiReadReg( dev
, phy
, MII_AN_LPA
, &an_lpa
);
2799 mode
= an_adv
& an_lpa
& 0x03E0;
2800 if ( mode
& 0x0100 ) {
2801 priv
->tlanFullDuplex
= TRUE
;
2802 } else if ( ! ( mode
& 0x0080 ) && ( mode
& 0x0040 ) ) {
2803 priv
->tlanFullDuplex
= TRUE
;
2806 if ( ( ! ( mode
& 0x0180 ) ) &&
2807 ( priv
->adapter
->flags
& TLAN_ADAPTER_USE_INTERN_10
) &&
2808 ( priv
->phyNum
!= 0 ) ) {
2810 data
= TLAN_NET_CFG_1FRAG
| TLAN_NET_CFG_1CHAN
| TLAN_NET_CFG_PHY_EN
;
2811 TLan_DioWrite16( dev
->base_addr
, TLAN_NET_CONFIG
, data
);
2812 TLan_SetTimer( dev
, (400*HZ
/1000), TLAN_TIMER_PHY_PDOWN
);
2816 if ( priv
->phyNum
== 0 ) {
2817 if ( ( priv
->duplex
== TLAN_DUPLEX_FULL
) ||
2818 ( an_adv
& an_lpa
& 0x0040 ) ) {
2819 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
,
2820 MII_GC_AUTOENB
| MII_GC_DUPLEX
);
2821 pr_info("TLAN: Starting internal PHY with FULL-DUPLEX\n" );
2823 TLan_MiiWriteReg( dev
, phy
, MII_GEN_CTL
, MII_GC_AUTOENB
);
2824 pr_info( "TLAN: Starting internal PHY with HALF-DUPLEX\n" );
2828 /* Wait for 100 ms. No reason in partiticular.
2830 TLan_SetTimer( dev
, (HZ
/10), TLAN_TIMER_FINISH_RESET
);
2832 } /* TLan_PhyFinishAutoNeg */
2836 /*********************************************************************
2844 * dev The device structure of this device.
2847 * This function monitors PHY condition by reading the status
2848 * register via the MII bus. This can be used to give info
2849 * about link changes (up/down), and possible switch to alternate
2852 * ******************************************************************/
2854 void TLan_PhyMonitor( struct net_device
*dev
)
2856 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2860 phy
= priv
->phy
[priv
->phyNum
];
2862 /* Get PHY status register */
2863 TLan_MiiReadReg( dev
, phy
, MII_GEN_STS
, &phy_status
);
2865 /* Check if link has been lost */
2866 if (!(phy_status
& MII_GS_LINK
)) {
2869 printk(KERN_DEBUG
"TLAN: %s has lost link\n", dev
->name
);
2870 netif_carrier_off(dev
);
2871 TLan_SetTimer( dev
, (2*HZ
), TLAN_TIMER_LINK_BEAT
);
2876 /* Link restablished? */
2877 if ((phy_status
& MII_GS_LINK
) && !priv
->link
) {
2879 printk(KERN_DEBUG
"TLAN: %s has reestablished link\n", dev
->name
);
2880 netif_carrier_on(dev
);
2883 /* Setup a new monitor */
2884 TLan_SetTimer( dev
, (2*HZ
), TLAN_TIMER_LINK_BEAT
);
2887 #endif /* MONITOR */
2890 /*****************************************************************************
2891 ******************************************************************************
2893 ThunderLAN Driver MII Routines
2895 These routines are based on the information in Chap. 2 of the
2896 "ThunderLAN Programmer's Guide", pp. 15-24.
2898 ******************************************************************************
2899 *****************************************************************************/
2902 /***************************************************************
2906 * 0 if ack received ok
2910 * dev The device structure containing
2911 * The io address and interrupt count
2913 * phy The address of the PHY to be queried.
2914 * reg The register whose contents are to be
2916 * val A pointer to a variable to store the
2919 * This function uses the TLAN's MII bus to retrieve the contents
2920 * of a given register on a PHY. It sends the appropriate info
2921 * and then reads the 16-bit register value from the MII bus via
2922 * the TLAN SIO register.
2924 **************************************************************/
2926 static int TLan_MiiReadReg( struct net_device
*dev
, u16 phy
, u16 reg
, u16
*val
)
2933 TLanPrivateInfo
*priv
= netdev_priv(dev
);
2934 unsigned long flags
= 0;
2937 outw(TLAN_NET_SIO
, dev
->base_addr
+ TLAN_DIO_ADR
);
2938 sio
= dev
->base_addr
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
2941 spin_lock_irqsave(&priv
->lock
, flags
);
2943 TLan_MiiSync(dev
->base_addr
);
2945 minten
= TLan_GetBit( TLAN_NET_SIO_MINTEN
, sio
);
2947 TLan_ClearBit(TLAN_NET_SIO_MINTEN
, sio
);
2949 TLan_MiiSendData( dev
->base_addr
, 0x1, 2 ); /* Start ( 01b ) */
2950 TLan_MiiSendData( dev
->base_addr
, 0x2, 2 ); /* Read ( 10b ) */
2951 TLan_MiiSendData( dev
->base_addr
, phy
, 5 ); /* Device # */
2952 TLan_MiiSendData( dev
->base_addr
, reg
, 5 ); /* Register # */
2955 TLan_ClearBit(TLAN_NET_SIO_MTXEN
, sio
); /* Change direction */
2957 TLan_ClearBit(TLAN_NET_SIO_MCLK
, sio
); /* Clock Idle bit */
2958 TLan_SetBit(TLAN_NET_SIO_MCLK
, sio
);
2959 TLan_ClearBit(TLAN_NET_SIO_MCLK
, sio
); /* Wait 300ns */
2961 nack
= TLan_GetBit(TLAN_NET_SIO_MDATA
, sio
); /* Check for ACK */
2962 TLan_SetBit(TLAN_NET_SIO_MCLK
, sio
); /* Finish ACK */
2963 if (nack
) { /* No ACK, so fake it */
2964 for (i
= 0; i
< 16; i
++) {
2965 TLan_ClearBit(TLAN_NET_SIO_MCLK
, sio
);
2966 TLan_SetBit(TLAN_NET_SIO_MCLK
, sio
);
2970 } else { /* ACK, so read data */
2971 for (tmp
= 0, i
= 0x8000; i
; i
>>= 1) {
2972 TLan_ClearBit(TLAN_NET_SIO_MCLK
, sio
);
2973 if (TLan_GetBit(TLAN_NET_SIO_MDATA
, sio
))
2975 TLan_SetBit(TLAN_NET_SIO_MCLK
, sio
);
2980 TLan_ClearBit(TLAN_NET_SIO_MCLK
, sio
); /* Idle cycle */
2981 TLan_SetBit(TLAN_NET_SIO_MCLK
, sio
);
2984 TLan_SetBit(TLAN_NET_SIO_MINTEN
, sio
);
2989 spin_unlock_irqrestore(&priv
->lock
, flags
);
2993 } /* TLan_MiiReadReg */
2998 /***************************************************************
3004 * base_port The base IO port of the adapter in
3006 * dev The address of the PHY to be queried.
3007 * data The value to be placed on the MII bus.
3008 * num_bits The number of bits in data that are to
3009 * be placed on the MII bus.
3011 * This function sends on sequence of bits on the MII
3012 * configuration bus.
3014 **************************************************************/
3016 static void TLan_MiiSendData( u16 base_port
, u32 data
, unsigned num_bits
)
3021 if ( num_bits
== 0 )
3024 outw( TLAN_NET_SIO
, base_port
+ TLAN_DIO_ADR
);
3025 sio
= base_port
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3026 TLan_SetBit( TLAN_NET_SIO_MTXEN
, sio
);
3028 for ( i
= ( 0x1 << ( num_bits
- 1 ) ); i
; i
>>= 1 ) {
3029 TLan_ClearBit( TLAN_NET_SIO_MCLK
, sio
);
3030 (void) TLan_GetBit( TLAN_NET_SIO_MCLK
, sio
);
3032 TLan_SetBit( TLAN_NET_SIO_MDATA
, sio
);
3034 TLan_ClearBit( TLAN_NET_SIO_MDATA
, sio
);
3035 TLan_SetBit( TLAN_NET_SIO_MCLK
, sio
);
3036 (void) TLan_GetBit( TLAN_NET_SIO_MCLK
, sio
);
3039 } /* TLan_MiiSendData */
3044 /***************************************************************
3050 * base_port The base IO port of the adapter in
3053 * This functions syncs all PHYs in terms of the MII configuration
3056 **************************************************************/
3058 static void TLan_MiiSync( u16 base_port
)
3063 outw( TLAN_NET_SIO
, base_port
+ TLAN_DIO_ADR
);
3064 sio
= base_port
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3066 TLan_ClearBit( TLAN_NET_SIO_MTXEN
, sio
);
3067 for ( i
= 0; i
< 32; i
++ ) {
3068 TLan_ClearBit( TLAN_NET_SIO_MCLK
, sio
);
3069 TLan_SetBit( TLAN_NET_SIO_MCLK
, sio
);
3072 } /* TLan_MiiSync */
3077 /***************************************************************
3083 * dev The device structure for the device
3085 * phy The address of the PHY to be written to.
3086 * reg The register whose contents are to be
3088 * val The value to be written to the register.
3090 * This function uses the TLAN's MII bus to write the contents of a
3091 * given register on a PHY. It sends the appropriate info and then
3092 * writes the 16-bit register value from the MII configuration bus
3093 * via the TLAN SIO register.
3095 **************************************************************/
3097 static void TLan_MiiWriteReg( struct net_device
*dev
, u16 phy
, u16 reg
, u16 val
)
3101 unsigned long flags
= 0;
3102 TLanPrivateInfo
*priv
= netdev_priv(dev
);
3104 outw(TLAN_NET_SIO
, dev
->base_addr
+ TLAN_DIO_ADR
);
3105 sio
= dev
->base_addr
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3108 spin_lock_irqsave(&priv
->lock
, flags
);
3110 TLan_MiiSync( dev
->base_addr
);
3112 minten
= TLan_GetBit( TLAN_NET_SIO_MINTEN
, sio
);
3114 TLan_ClearBit( TLAN_NET_SIO_MINTEN
, sio
);
3116 TLan_MiiSendData( dev
->base_addr
, 0x1, 2 ); /* Start ( 01b ) */
3117 TLan_MiiSendData( dev
->base_addr
, 0x1, 2 ); /* Write ( 01b ) */
3118 TLan_MiiSendData( dev
->base_addr
, phy
, 5 ); /* Device # */
3119 TLan_MiiSendData( dev
->base_addr
, reg
, 5 ); /* Register # */
3121 TLan_MiiSendData( dev
->base_addr
, 0x2, 2 ); /* Send ACK */
3122 TLan_MiiSendData( dev
->base_addr
, val
, 16 ); /* Send Data */
3124 TLan_ClearBit( TLAN_NET_SIO_MCLK
, sio
); /* Idle cycle */
3125 TLan_SetBit( TLAN_NET_SIO_MCLK
, sio
);
3128 TLan_SetBit( TLAN_NET_SIO_MINTEN
, sio
);
3131 spin_unlock_irqrestore(&priv
->lock
, flags
);
3133 } /* TLan_MiiWriteReg */
3138 /*****************************************************************************
3139 ******************************************************************************
3141 ThunderLAN Driver Eeprom routines
3143 The Compaq Netelligent 10 and 10/100 cards use a Microchip 24C02A
3144 EEPROM. These functions are based on information in Microchip's
3145 data sheet. I don't know how well this functions will work with
3148 ******************************************************************************
3149 *****************************************************************************/
3152 /***************************************************************
3158 * io_base The IO port base address for the
3159 * TLAN device with the EEPROM to
3162 * This function sends a start cycle to an EEPROM attached
3165 **************************************************************/
3167 static void TLan_EeSendStart( u16 io_base
)
3171 outw( TLAN_NET_SIO
, io_base
+ TLAN_DIO_ADR
);
3172 sio
= io_base
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3174 TLan_SetBit( TLAN_NET_SIO_ECLOK
, sio
);
3175 TLan_SetBit( TLAN_NET_SIO_EDATA
, sio
);
3176 TLan_SetBit( TLAN_NET_SIO_ETXEN
, sio
);
3177 TLan_ClearBit( TLAN_NET_SIO_EDATA
, sio
);
3178 TLan_ClearBit( TLAN_NET_SIO_ECLOK
, sio
);
3180 } /* TLan_EeSendStart */
3185 /***************************************************************
3189 * If the correct ack was received, 0, otherwise 1
3190 * Parms: io_base The IO port base address for the
3191 * TLAN device with the EEPROM to
3193 * data The 8 bits of information to
3194 * send to the EEPROM.
3195 * stop If TLAN_EEPROM_STOP is passed, a
3196 * stop cycle is sent after the
3197 * byte is sent after the ack is
3200 * This function sends a byte on the serial EEPROM line,
3201 * driving the clock to send each bit. The function then
3202 * reverses transmission direction and reads an acknowledge
3205 **************************************************************/
3207 static int TLan_EeSendByte( u16 io_base
, u8 data
, int stop
)
3213 outw( TLAN_NET_SIO
, io_base
+ TLAN_DIO_ADR
);
3214 sio
= io_base
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3216 /* Assume clock is low, tx is enabled; */
3217 for ( place
= 0x80; place
!= 0; place
>>= 1 ) {
3219 TLan_SetBit( TLAN_NET_SIO_EDATA
, sio
);
3221 TLan_ClearBit( TLAN_NET_SIO_EDATA
, sio
);
3222 TLan_SetBit( TLAN_NET_SIO_ECLOK
, sio
);
3223 TLan_ClearBit( TLAN_NET_SIO_ECLOK
, sio
);
3225 TLan_ClearBit( TLAN_NET_SIO_ETXEN
, sio
);
3226 TLan_SetBit( TLAN_NET_SIO_ECLOK
, sio
);
3227 err
= TLan_GetBit( TLAN_NET_SIO_EDATA
, sio
);
3228 TLan_ClearBit( TLAN_NET_SIO_ECLOK
, sio
);
3229 TLan_SetBit( TLAN_NET_SIO_ETXEN
, sio
);
3231 if ( ( ! err
) && stop
) {
3232 /* STOP, raise data while clock is high */
3233 TLan_ClearBit( TLAN_NET_SIO_EDATA
, sio
);
3234 TLan_SetBit( TLAN_NET_SIO_ECLOK
, sio
);
3235 TLan_SetBit( TLAN_NET_SIO_EDATA
, sio
);
3240 } /* TLan_EeSendByte */
3245 /***************************************************************
3246 * TLan_EeReceiveByte
3251 * io_base The IO port base address for the
3252 * TLAN device with the EEPROM to
3254 * data An address to a char to hold the
3255 * data sent from the EEPROM.
3256 * stop If TLAN_EEPROM_STOP is passed, a
3257 * stop cycle is sent after the
3258 * byte is received, and no ack is
3261 * This function receives 8 bits of data from the EEPROM
3262 * over the serial link. It then sends and ack bit, or no
3263 * ack and a stop bit. This function is used to retrieve
3264 * data after the address of a byte in the EEPROM has been
3267 **************************************************************/
3269 static void TLan_EeReceiveByte( u16 io_base
, u8
*data
, int stop
)
3274 outw( TLAN_NET_SIO
, io_base
+ TLAN_DIO_ADR
);
3275 sio
= io_base
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3278 /* Assume clock is low, tx is enabled; */
3279 TLan_ClearBit( TLAN_NET_SIO_ETXEN
, sio
);
3280 for ( place
= 0x80; place
; place
>>= 1 ) {
3281 TLan_SetBit( TLAN_NET_SIO_ECLOK
, sio
);
3282 if ( TLan_GetBit( TLAN_NET_SIO_EDATA
, sio
) )
3284 TLan_ClearBit( TLAN_NET_SIO_ECLOK
, sio
);
3287 TLan_SetBit( TLAN_NET_SIO_ETXEN
, sio
);
3289 TLan_ClearBit( TLAN_NET_SIO_EDATA
, sio
); /* Ack = 0 */
3290 TLan_SetBit( TLAN_NET_SIO_ECLOK
, sio
);
3291 TLan_ClearBit( TLAN_NET_SIO_ECLOK
, sio
);
3293 TLan_SetBit( TLAN_NET_SIO_EDATA
, sio
); /* No ack = 1 (?) */
3294 TLan_SetBit( TLAN_NET_SIO_ECLOK
, sio
);
3295 TLan_ClearBit( TLAN_NET_SIO_ECLOK
, sio
);
3296 /* STOP, raise data while clock is high */
3297 TLan_ClearBit( TLAN_NET_SIO_EDATA
, sio
);
3298 TLan_SetBit( TLAN_NET_SIO_ECLOK
, sio
);
3299 TLan_SetBit( TLAN_NET_SIO_EDATA
, sio
);
3302 } /* TLan_EeReceiveByte */
3307 /***************************************************************
3311 * No error = 0, else, the stage at which the error
3314 * io_base The IO port base address for the
3315 * TLAN device with the EEPROM to
3317 * ee_addr The address of the byte in the
3318 * EEPROM whose contents are to be
3320 * data An address to a char to hold the
3321 * data obtained from the EEPROM.
3323 * This function reads a byte of information from an byte
3324 * cell in the EEPROM.
3326 **************************************************************/
3328 static int TLan_EeReadByte( struct net_device
*dev
, u8 ee_addr
, u8
*data
)
3331 TLanPrivateInfo
*priv
= netdev_priv(dev
);
3332 unsigned long flags
= 0;
3335 spin_lock_irqsave(&priv
->lock
, flags
);
3337 TLan_EeSendStart( dev
->base_addr
);
3338 err
= TLan_EeSendByte( dev
->base_addr
, 0xA0, TLAN_EEPROM_ACK
);
3344 err
= TLan_EeSendByte( dev
->base_addr
, ee_addr
, TLAN_EEPROM_ACK
);
3350 TLan_EeSendStart( dev
->base_addr
);
3351 err
= TLan_EeSendByte( dev
->base_addr
, 0xA1, TLAN_EEPROM_ACK
);
3357 TLan_EeReceiveByte( dev
->base_addr
, data
, TLAN_EEPROM_STOP
);
3359 spin_unlock_irqrestore(&priv
->lock
, flags
);
3363 } /* TLan_EeReadByte */