tlan.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:92k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*******************************************************************************
  2.  *
  3.  *  Linux ThunderLAN Driver
  4.  *
  5.  *  tlan.c
  6.  *  by James Banks
  7.  *
  8.  *  (C) 1997-1998 Caldera, Inc.
  9.  *  (C) 1998 James Banks
  10.  *  (C) 1999-2001 Torben Mathiasen
  11.  *
  12.  *  This software may be used and distributed according to the terms
  13.  *  of the GNU General Public License, incorporated herein by reference.
  14.  *
  15.  ** This file is best viewed/edited with columns>=132.
  16.  *
  17.  ** Useful (if not required) reading:
  18.  *
  19.  * Texas Instruments, ThunderLAN Programmer's Guide,
  20.  * TI Literature Number SPWU013A
  21.  * available in PDF format from www.ti.com
  22.  * Level One, LXT901 and LXT970 Data Sheets
  23.  * available in PDF format from www.level1.com
  24.  * National Semiconductor, DP83840A Data Sheet
  25.  * available in PDF format from www.national.com
  26.  * Microchip Technology, 24C01A/02A/04A Data Sheet
  27.  * available in PDF format from www.microchip.com
  28.  *
  29.  * Change History
  30.  *
  31.  * Tigran Aivazian <tigran@sco.com>: TLan_PciProbe() now uses
  32.  * new PCI BIOS interface.
  33.  * Alan Cox <alan@redhat.com>: Fixed the out of memory
  34.  * handling.
  35.  *      
  36.  * Torben Mathiasen <torben.mathiasen@compaq.com> New Maintainer!
  37.  *
  38.  * v1.1 Dec 20, 1999    - Removed linux version checking
  39.  *        Patch from Tigran Aivazian. 
  40.  *      - v1.1 includes Alan's SMP updates.
  41.  *      - We still have problems on SMP though,
  42.  *        but I'm looking into that. 
  43.  *
  44.  * v1.2 Jan 02, 2000    - Hopefully fixed the SMP deadlock.
  45.  *      - Removed dependency of HZ being 100.
  46.  *      - We now allow higher priority timers to 
  47.  *        overwrite timers like TLAN_TIMER_ACTIVITY
  48.  *        Patch from John Cagle <john.cagle@compaq.com>.
  49.  *      - Fixed a few compiler warnings.
  50.  *
  51.  * v1.3 Feb 04, 2000    - Fixed the remaining HZ issues.
  52.  *      - Removed call to pci_present(). 
  53.  *      - Removed SA_INTERRUPT flag from irq handler.
  54.  *      - Added __init and __initdata to reduce resisdent 
  55.  *        code size.
  56.  *      - Driver now uses module_init/module_exit.
  57.  *      - Rewrote init_module and tlan_probe to
  58.  *        share a lot more code. We now use tlan_probe
  59.  *        with builtin and module driver.
  60.  *      - Driver ported to new net API. 
  61.  *      - tlan.txt has been reworked to reflect current 
  62.  *        driver (almost)
  63.  *      - Other minor stuff
  64.  *
  65.  * v1.4 Feb 10, 2000    - Updated with more changes required after Dave's
  66.  *                        network cleanup in 2.3.43pre7 (Tigran & myself)
  67.  *                      - Minor stuff.
  68.  *
  69.  * v1.5 March 22, 2000  - Fixed another timer bug that would hang the driver
  70.  *        if no cable/link were present.
  71.  *      - Cosmetic changes.
  72.  *      - TODO: Port completely to new PCI/DMA API
  73.  *            Auto-Neg fallback.
  74.  *
  75.  *  v1.6 April 04, 2000  - Fixed driver support for kernel-parameters. Haven't
  76.  *         tested it though, as the kernel support is currently 
  77.  *         broken (2.3.99p4p3).
  78.  *       - Updated tlan.txt accordingly.
  79.  *       - Adjusted minimum/maximum frame length.
  80.  *       - There is now a TLAN website up at 
  81.  *         http://tlan.kernel.dk
  82.  *
  83.  *  v1.7 April 07, 2000  - Started to implement custom ioctls. Driver now
  84.  *         reports PHY information when used with Donald
  85.  *         Beckers userspace MII diagnostics utility.
  86.  *
  87.  *  v1.8 April 23, 2000  - Fixed support for forced speed/duplex settings.
  88.  *       - Added link information to Auto-Neg and forced
  89.  *         modes. When NIC operates with auto-neg the driver
  90.  *         will report Link speed & duplex modes as well as
  91.  *         link partner abilities. When forced link is used,
  92.  *         the driver will report status of the established
  93.  *         link.
  94.  *         Please read tlan.txt for additional information. 
  95.  *       - Removed call to check_region(), and used 
  96.  *         return value of request_region() instead.
  97.  *
  98.  * v1.8a May 28, 2000   - Minor updates.
  99.  *
  100.  * v1.9 July 25, 2000   - Fixed a few remaining Full-Duplex issues.
  101.  *                      - Updated with timer fixes from Andrew Morton.
  102.  *                      - Fixed module race in TLan_Open.
  103.  *                      - Added routine to monitor PHY status.
  104.  *                      - Added activity led support for Proliant devices.
  105.  *
  106.  * v1.10 Aug 30, 2000   - Added support for EISA based tlan controllers 
  107.  *        like the Compaq NetFlex3/E. 
  108.  *      - Rewrote tlan_probe to better handle multiple
  109.  *        bus probes. Probing and device setup is now
  110.  *        done through TLan_Probe and TLan_init_one. Actual
  111.  *        hardware probe is done with kernel API and 
  112.  *        TLan_EisaProbe.
  113.  *      - Adjusted debug information for probing.
  114.  *      - Fixed bug that would cause general debug information 
  115.  *        to be printed after driver removal. 
  116.  *      - Added transmit timeout handling.
  117.  *      - Fixed OOM return values in tlan_probe. 
  118.  *      - Fixed possible mem leak in tlan_exit 
  119.  *        (now tlan_remove_one).
  120.  *      - Fixed timer bug in TLan_phyMonitor.
  121.  *      - This driver version is alpha quality, please
  122.  *        send me any bug issues you may encounter.
  123.  *
  124.  * v1.11 Aug 31, 2000   - Do not try to register irq 0 if no irq line was 
  125.  *        set for EISA cards.
  126.  *      - Added support for NetFlex3/E with nibble-rate
  127.  *        10Base-T PHY. This is untestet as I haven't got
  128.  *        one of these cards.
  129.  *      - Fixed timer being added twice.
  130.  *      - Disabled PhyMonitoring by default as this is
  131.  *        work in progress. Define MONITOR to enable it.
  132.  *      - Now we don't display link info with PHYs that
  133.  *        doesn't support it (level1).
  134.  *      - Incresed tx_timeout beacuse of auto-neg.
  135.  *      - Adjusted timers for forced speeds.
  136.  *
  137.  * v1.12 Oct 12, 2000   - Minor fixes (memleak, init, etc.)
  138.  *
  139.  *  v1.13 Nov 28, 2000   - Stop flooding console with auto-neg issues
  140.  *         when link can't be established.
  141.  *      - Added the bbuf option as a kernel parameter.
  142.  *      - Fixed ioaddr probe bug.
  143.  *      - Fixed stupid deadlock with MII interrupts.
  144.  *      - Added support for speed/duplex selection with 
  145.  *        multiple nics.
  146.  *      - Added partly fix for TX Channel lockup with
  147.  *        TLAN v1.0 silicon. This needs to be investigated
  148.  *        further.
  149.  *
  150.  *  v1.14 Dec 16, 2000   - Added support for servicing multiple frames per.
  151.  *         interrupt. Thanks goes to
  152.  *         Adam Keys <adam@ti.com>
  153.  *         Denis Beaudoin <dbeaudoin@ti.com>
  154.  *         for providing the patch.
  155.  *       - Fixed auto-neg output when using multiple
  156.  *         adapters.
  157.  *       - Converted to use new taskq interface.
  158.  *
  159.  *  v1.14a Jan 6, 2001   - Minor adjustments (spinlocks, etc.)
  160.  *
  161.  *******************************************************************************/
  162.                                                                                 
  163. #include <linux/module.h>
  164. #include "tlan.h"
  165. #include <linux/init.h>
  166. #include <linux/ioport.h>
  167. #include <linux/pci.h>
  168. #include <linux/etherdevice.h>
  169. #include <linux/delay.h>
  170. #include <linux/spinlock.h>
  171. #include <linux/mii.h>
  172. typedef u32 (TLanIntVectorFunc)( struct net_device *, u16 );
  173. /* For removing EISA devices */
  174. static struct net_device *TLan_Eisa_Devices;
  175. static int TLanDevicesInstalled;
  176. /* Set speed, duplex and aui settings */
  177. static  int aui[MAX_TLAN_BOARDS];
  178. static  int duplex[MAX_TLAN_BOARDS];
  179. static  int speed[MAX_TLAN_BOARDS];
  180. static  int boards_found;
  181. MODULE_AUTHOR("Maintainer: Torben Mathiasen <torben.mathiasen@compaq.com>");
  182. MODULE_DESCRIPTION("Driver for TI ThunderLAN based ethernet PCI adapters");
  183. MODULE_LICENSE("GPL");
  184. MODULE_PARM(aui, "1-" __MODULE_STRING(MAX_TLAN_BOARDS) "i");
  185. MODULE_PARM(duplex, "1-" __MODULE_STRING(MAX_TLAN_BOARDS) "i");
  186. MODULE_PARM(speed, "1-" __MODULE_STRING(MAX_TLAN_BOARDS) "i");
  187. MODULE_PARM(debug, "i");
  188. MODULE_PARM(bbuf, "i");
  189. MODULE_PARM_DESC(aui, "ThunderLAN use AUI port(s) (0-1)");
  190. MODULE_PARM_DESC(duplex, "ThunderLAN duplex setting(s) (0-default, 1-half, 2-full)");
  191. MODULE_PARM_DESC(speed, "ThunderLAN port speen setting(s) (0,10,100)");
  192. MODULE_PARM_DESC(debug, "ThunderLAN debug mask");
  193. MODULE_PARM_DESC(bbuf, "ThunderLAN use big buffer (0-1)");
  194. EXPORT_NO_SYMBOLS;
  195. /* Define this to enable Link beat monitoring */
  196. #undef MONITOR
  197. /* Turn on debugging. See linux/Documentation/networking/tlan.txt for details */
  198. static  int debug;
  199. static int bbuf;
  200. static u8 *TLanPadBuffer;
  201. static char TLanSignature[] = "TLAN";
  202. static const char tlan_banner[] = "ThunderLAN driver v1.14an";
  203. static int tlan_have_pci;
  204. static int tlan_have_eisa;
  205. const char *media[] = {
  206. "10BaseT-HD ", "10BaseT-FD ","100baseTx-HD ", 
  207. "100baseTx-FD", "100baseT4", 0
  208. };
  209. int media_map[] = { 0x0020, 0x0040, 0x0080, 0x0100, 0x0200,};
  210. static struct board {
  211. const char *deviceLabel;
  212. u32     flags;
  213. u16     addrOfs;
  214. } board_info[] __devinitdata = {
  215. { "Compaq Netelligent 10 T PCI UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 },
  216. { "Compaq Netelligent 10/100 TX PCI UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 },
  217. { "Compaq Integrated NetFlex-3/P", TLAN_ADAPTER_NONE, 0x83 },
  218. { "Compaq NetFlex-3/P", TLAN_ADAPTER_UNMANAGED_PHY | TLAN_ADAPTER_BIT_RATE_PHY, 0x83 },
  219. { "Compaq NetFlex-3/P", TLAN_ADAPTER_NONE, 0x83 },
  220. { "Compaq Netelligent Integrated 10/100 TX UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 },
  221. { "Compaq Netelligent Dual 10/100 TX PCI UTP", TLAN_ADAPTER_NONE, 0x83 },
  222. { "Compaq Netelligent 10/100 TX Embedded UTP", TLAN_ADAPTER_NONE, 0x83 },
  223. { "Olicom OC-2183/2185", TLAN_ADAPTER_USE_INTERN_10, 0x83 },
  224. { "Olicom OC-2325", TLAN_ADAPTER_UNMANAGED_PHY, 0xF8 },
  225. { "Olicom OC-2326", TLAN_ADAPTER_USE_INTERN_10, 0xF8 },
  226. { "Compaq Netelligent 10/100 TX UTP", TLAN_ADAPTER_ACTIVITY_LED, 0x83 },
  227. { "Compaq Netelligent 10 T/2 PCI UTP/Coax", TLAN_ADAPTER_NONE, 0x83 },
  228. { "Compaq NetFlex-3/E", TLAN_ADAPTER_ACTIVITY_LED |  /* EISA card */
  229.                         TLAN_ADAPTER_UNMANAGED_PHY | TLAN_ADAPTER_BIT_RATE_PHY, 0x83 },
  230. { "Compaq NetFlex-3/E", TLAN_ADAPTER_ACTIVITY_LED, 0x83 }, /* EISA card */
  231. };
  232. static struct pci_device_id tlan_pci_tbl[] __devinitdata = {
  233. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL10,
  234. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  235. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100,
  236. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1 },
  237. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETFLEX3I,
  238. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2 },
  239. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_THUNDER,
  240. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3 },
  241. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETFLEX3B,
  242. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 4 },
  243. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100PI,
  244. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 5 },
  245. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100D,
  246. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 6 },
  247. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_COMPAQ_NETEL100I,
  248. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 7 },
  249. { PCI_VENDOR_ID_OLICOM, PCI_DEVICE_ID_OLICOM_OC2183,
  250. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 8 },
  251. { PCI_VENDOR_ID_OLICOM, PCI_DEVICE_ID_OLICOM_OC2325,
  252. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 9 },
  253. { PCI_VENDOR_ID_OLICOM, PCI_DEVICE_ID_OLICOM_OC2326,
  254. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 10 },
  255. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_NETELLIGENT_10_100_WS_5100,
  256. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 11 },
  257. { PCI_VENDOR_ID_COMPAQ, PCI_DEVICE_ID_NETELLIGENT_10_T2,
  258. PCI_ANY_ID, PCI_ANY_ID, 0, 0, 12 },
  259. { 0,}
  260. };
  261. MODULE_DEVICE_TABLE(pci, tlan_pci_tbl);
  262. static void TLan_EisaProbe( void );
  263. static void TLan_Eisa_Cleanup( void );
  264. static int      TLan_Init( struct net_device * );
  265. static int TLan_Open( struct net_device *dev );
  266. static int TLan_StartTx( struct sk_buff *, struct net_device *);
  267. static void TLan_HandleInterrupt( int, void *, struct pt_regs *);
  268. static int TLan_Close( struct net_device *);
  269. static struct net_device_stats *TLan_GetStats( struct net_device *);
  270. static void TLan_SetMulticastList( struct net_device *);
  271. static int TLan_ioctl( struct net_device *dev, struct ifreq *rq, int cmd);
  272. static int      TLan_probe1( struct pci_dev *pdev, long ioaddr, int irq, int rev, const struct pci_device_id *ent);
  273. static void TLan_tx_timeout( struct net_device *dev);
  274. static int  tlan_init_one( struct pci_dev *pdev, const struct pci_device_id *ent);
  275. static u32 TLan_HandleInvalid( struct net_device *, u16 );
  276. static u32 TLan_HandleTxEOF( struct net_device *, u16 );
  277. static u32 TLan_HandleStatOverflow( struct net_device *, u16 );
  278. static u32 TLan_HandleRxEOF( struct net_device *, u16 );
  279. static u32 TLan_HandleDummy( struct net_device *, u16 );
  280. static u32 TLan_HandleTxEOC( struct net_device *, u16 );
  281. static u32 TLan_HandleStatusCheck( struct net_device *, u16 );
  282. static u32 TLan_HandleRxEOC( struct net_device *, u16 );
  283. static void TLan_Timer( unsigned long );
  284. static void TLan_ResetLists( struct net_device * );
  285. static void TLan_FreeLists( struct net_device * );
  286. static void TLan_PrintDio( u16 );
  287. static void TLan_PrintList( TLanList *, char *, int );
  288. static void TLan_ReadAndClearStats( struct net_device *, int );
  289. static void TLan_ResetAdapter( struct net_device * );
  290. static void TLan_FinishReset( struct net_device * );
  291. static void TLan_SetMac( struct net_device *, int areg, char *mac );
  292. static void TLan_PhyPrint( struct net_device * );
  293. static void TLan_PhyDetect( struct net_device * );
  294. static void TLan_PhyPowerDown( struct net_device * );
  295. static void TLan_PhyPowerUp( struct net_device * );
  296. static void TLan_PhyReset( struct net_device * );
  297. static void TLan_PhyStartLink( struct net_device * );
  298. static void TLan_PhyFinishAutoNeg( struct net_device * );
  299. #ifdef MONITOR
  300. static void     TLan_PhyMonitor( struct net_device * );
  301. #endif
  302. /*
  303. static int TLan_PhyNop( struct net_device * );
  304. static int TLan_PhyInternalCheck( struct net_device * );
  305. static int TLan_PhyInternalService( struct net_device * );
  306. static int TLan_PhyDp83840aCheck( struct net_device * );
  307. */
  308. static int TLan_MiiReadReg( struct net_device *, u16, u16, u16 * );
  309. static void TLan_MiiSendData( u16, u32, unsigned );
  310. static void TLan_MiiSync( u16 );
  311. static void TLan_MiiWriteReg( struct net_device *, u16, u16, u16 );
  312. static void TLan_EeSendStart( u16 );
  313. static int TLan_EeSendByte( u16, u8, int );
  314. static void TLan_EeReceiveByte( u16, u8 *, int );
  315. static int TLan_EeReadByte( struct net_device *, u8, u8 * );
  316. static TLanIntVectorFunc *TLanIntVector[TLAN_INT_NUMBER_OF_INTS] = {
  317. TLan_HandleInvalid,
  318. TLan_HandleTxEOF,
  319. TLan_HandleStatOverflow,
  320. TLan_HandleRxEOF,
  321. TLan_HandleDummy,
  322. TLan_HandleTxEOC,
  323. TLan_HandleStatusCheck,
  324. TLan_HandleRxEOC
  325. };
  326. static inline void
  327. TLan_SetTimer( struct net_device *dev, u32 ticks, u32 type )
  328. {
  329. TLanPrivateInfo *priv = dev->priv;
  330. unsigned long flags = 0;
  331. if (!in_irq())
  332. spin_lock_irqsave(&priv->lock, flags);
  333. if ( priv->timer.function != NULL &&
  334. priv->timerType != TLAN_TIMER_ACTIVITY ) { 
  335. if (!in_irq())
  336. spin_unlock_irqrestore(&priv->lock, flags);
  337. return;
  338. }
  339. priv->timer.function = &TLan_Timer;
  340. if (!in_irq())
  341. spin_unlock_irqrestore(&priv->lock, flags);
  342. priv->timer.data = (unsigned long) dev;
  343. priv->timerSetAt = jiffies;
  344. priv->timerType = type;
  345. mod_timer(&priv->timer, jiffies + ticks);
  346. } /* TLan_SetTimer */
  347. /*****************************************************************************
  348. ******************************************************************************
  349. ThunderLAN Driver Primary Functions
  350. These functions are more or less common to all Linux network drivers.
  351. ******************************************************************************
  352. *****************************************************************************/
  353. /***************************************************************
  354.  * tlan_remove_one
  355.  *
  356.  * Returns:
  357.  * Nothing
  358.  * Parms:
  359.  * None
  360.  *
  361.  * Goes through the TLanDevices list and frees the device
  362.  * structs and memory associated with each device (lists
  363.  * and buffers).  It also ureserves the IO port regions
  364.  * associated with this device.
  365.  *
  366.  **************************************************************/
  367. static void __devexit tlan_remove_one( struct pci_dev *pdev)
  368. {
  369. struct net_device *dev = pci_get_drvdata( pdev );
  370. TLanPrivateInfo *priv = dev->priv;
  371. unregister_netdev( dev );
  372. if ( priv->dmaStorage ) {
  373. kfree( priv->dmaStorage );
  374. }
  375. release_region( dev->base_addr, 0x10 );
  376. kfree( dev );
  377. pci_set_drvdata( pdev, NULL );
  378. static struct pci_driver tlan_driver = {
  379. name: "tlan",
  380. id_table: tlan_pci_tbl,
  381. probe: tlan_init_one,
  382. remove: __devexit_p(tlan_remove_one),
  383. };
  384. static int __init tlan_probe(void)
  385. {
  386. static int pad_allocated;
  387. printk(KERN_INFO "%s", tlan_banner);
  388. TLanPadBuffer = (u8 *) kmalloc(TLAN_MIN_FRAME_SIZE, 
  389. GFP_KERNEL);
  390. if (TLanPadBuffer == NULL) {
  391. printk(KERN_ERR "TLAN: Could not allocate memory for pad buffer.n");
  392. return -ENOMEM;
  393. }
  394. memset(TLanPadBuffer, 0, TLAN_MIN_FRAME_SIZE);
  395. pad_allocated = 1;
  396. TLAN_DBG(TLAN_DEBUG_PROBE, "Starting PCI Probe....n");
  397. /* Use new style PCI probing. Now the kernel will
  398.    do most of this for us */
  399. pci_register_driver(&tlan_driver);
  400. TLAN_DBG(TLAN_DEBUG_PROBE, "Starting EISA Probe....n");
  401. TLan_EisaProbe();
  402. printk(KERN_INFO "TLAN: %d device%s installed, PCI: %d  EISA: %dn", 
  403.  TLanDevicesInstalled, TLanDevicesInstalled == 1 ? "" : "s",
  404.  tlan_have_pci, tlan_have_eisa);
  405. if (TLanDevicesInstalled == 0) {
  406. pci_unregister_driver(&tlan_driver);
  407. kfree(TLanPadBuffer);
  408. return -ENODEV;
  409. }
  410. return 0;
  411. }
  412. static int __devinit tlan_init_one( struct pci_dev *pdev,
  413.     const struct pci_device_id *ent)
  414. {
  415. return TLan_probe1( pdev, -1, -1, 0, ent);
  416. }
  417. /*
  418. ***************************************************************
  419.  * tlan_probe1
  420.  *
  421.  * Returns:
  422.  * 0 on success, error code on error
  423.  * Parms: 
  424.  * none
  425.  *
  426.  * The name is lower case to fit in with all the rest of
  427.  * the netcard_probe names.  This function looks for 
  428.  * another TLan based adapter, setting it up with the
  429.  * allocated device struct if one is found.
  430.  * tlan_probe has been ported to the new net API and
  431.  * now allocates its own device structure. This function
  432.  * is also used by modules.
  433.  *
  434.  **************************************************************/
  435. static int __devinit TLan_probe1(struct pci_dev *pdev, 
  436. long ioaddr, int irq, int rev, const struct pci_device_id *ent )
  437. {
  438. struct net_device  *dev;
  439. TLanPrivateInfo    *priv;
  440. u8    pci_rev;
  441. u16    device_id;
  442. int    reg;
  443. if (pdev && pci_enable_device(pdev))
  444. return -EIO;
  445. dev = init_etherdev(NULL, sizeof(TLanPrivateInfo));
  446. if (dev == NULL) {
  447. printk(KERN_ERR "TLAN: Could not allocate memory for device.n");
  448. return -ENOMEM;
  449. }
  450. SET_MODULE_OWNER(dev);
  451. priv = dev->priv;
  452. /* Is this a PCI device? */
  453. if (pdev) {
  454. u32     pci_io_base = 0;
  455. priv->adapter = &board_info[ent->driver_data];
  456. pci_read_config_byte ( pdev, PCI_REVISION_ID, &pci_rev);
  457. for ( reg= 0; reg <= 5; reg ++ ) {
  458. if (pci_resource_flags(pdev, reg) & IORESOURCE_IO) {
  459. pci_io_base = pci_resource_start(pdev, reg);
  460. TLAN_DBG( TLAN_DEBUG_GNRL, "IO mapping is available at %x.n",
  461. pci_io_base);
  462. break;
  463. }
  464. }
  465. if (!pci_io_base) {
  466. printk(KERN_ERR "TLAN: No IO mappings availablen");
  467. unregister_netdev(dev);
  468. kfree(dev);
  469. return -ENODEV;
  470. }
  471. dev->base_addr = pci_io_base;
  472. dev->irq = pdev->irq;
  473. priv->adapterRev = pci_rev; 
  474. pci_set_master(pdev);
  475. pci_set_drvdata(pdev, dev);
  476. } else {     /* EISA card */
  477. /* This is a hack. We need to know which board structure
  478.  * is suited for this adapter */
  479. device_id = inw(ioaddr + EISA_ID2);
  480. priv->is_eisa = 1;
  481. if (device_id == 0x20F1) {
  482. priv->adapter = &board_info[13];  /* NetFlex-3/E */
  483. priv->adapterRev = 23; /* TLAN 2.3 */
  484. } else {
  485. priv->adapter = &board_info[14];
  486. priv->adapterRev = 10; /* TLAN 1.0 */
  487. }
  488. dev->base_addr = ioaddr;
  489. dev->irq = irq;
  490. }
  491. /* Kernel parameters */
  492. if (dev->mem_start) {
  493. priv->aui    = dev->mem_start & 0x01;
  494. priv->duplex = ((dev->mem_start & 0x06) == 0x06) ? 0 : (dev->mem_start & 0x06) >> 1;
  495. priv->speed  = ((dev->mem_start & 0x18) == 0x18) ? 0 : (dev->mem_start & 0x18) >> 3;
  496. if (priv->speed == 0x1) {
  497. priv->speed = TLAN_SPEED_10;
  498. } else if (priv->speed == 0x2) {
  499. priv->speed = TLAN_SPEED_100;
  500. }
  501. debug = priv->debug = dev->mem_end;
  502. } else {
  503. priv->aui    = aui[boards_found];
  504. priv->speed  = speed[boards_found];
  505. priv->duplex = duplex[boards_found];
  506. priv->debug = debug;
  507. }
  508. /* This will be used when we get an adapter error from
  509.  * within our irq handler */
  510. INIT_LIST_HEAD(&priv->tlan_tqueue.list);
  511. priv->tlan_tqueue.sync = 0;
  512. priv->tlan_tqueue.routine = (void *)(void*)TLan_tx_timeout;
  513. priv->tlan_tqueue.data = dev;
  514. spin_lock_init(&priv->lock);
  515. if (TLan_Init(dev)) {
  516. printk(KERN_ERR "TLAN: Could not register device.n");
  517. unregister_netdev(dev);
  518. kfree(dev);
  519. return -EAGAIN;
  520. } else {
  521. TLanDevicesInstalled++;
  522. boards_found++;
  523. /* pdev is NULL if this is an EISA device */
  524. if (pdev)
  525. tlan_have_pci++;
  526. else {
  527. priv->nextDevice = TLan_Eisa_Devices;
  528. TLan_Eisa_Devices = dev;
  529. tlan_have_eisa++;
  530. }
  531. printk(KERN_INFO "TLAN: %s irq=%2d, io=%04x, %s, Rev. %dn",
  532. dev->name,
  533. (int) dev->irq,
  534. (int) dev->base_addr,
  535. priv->adapter->deviceLabel,
  536. priv->adapterRev);
  537. return 0;
  538. }
  539. }
  540. static void TLan_Eisa_Cleanup(void)
  541. {
  542. struct net_device *dev;
  543. TLanPrivateInfo *priv;
  544. while( tlan_have_eisa ) {
  545. dev = TLan_Eisa_Devices;
  546. priv = dev->priv;
  547. if (priv->dmaStorage) {
  548. kfree(priv->dmaStorage);
  549. }
  550. release_region( dev->base_addr, 0x10);
  551. unregister_netdev( dev );
  552. TLan_Eisa_Devices = priv->nextDevice;
  553. kfree( dev );
  554. tlan_have_eisa--;
  555. }
  556. }
  557. static void __exit tlan_exit(void)
  558. {
  559. pci_unregister_driver(&tlan_driver);
  560. if (tlan_have_eisa)
  561. TLan_Eisa_Cleanup();
  562. kfree( TLanPadBuffer );
  563. }
  564. /* Module loading/unloading */
  565. module_init(tlan_probe);
  566. module_exit(tlan_exit);
  567. /**************************************************************
  568.  *  TLan_EisaProbe
  569.  *
  570.  *   Returns: 0 on success, 1 otherwise
  571.  *
  572.  *   Parms:  None
  573.  *
  574.  *
  575.  *   This functions probes for EISA devices and calls 
  576.  *   TLan_probe1 when one is found. 
  577.  *
  578.  *************************************************************/
  579. static void  __init TLan_EisaProbe (void) 
  580. {
  581. long  ioaddr;
  582. int  rc = -ENODEV;
  583. int  irq;
  584. u16 device_id;
  585. if (!EISA_bus) {
  586. TLAN_DBG(TLAN_DEBUG_PROBE, "No EISA bus presentn");
  587. return;
  588. }
  589. /* Loop through all slots of the EISA bus */
  590. for (ioaddr = 0x1000; ioaddr < 0x9000; ioaddr += 0x1000) {
  591. TLAN_DBG(TLAN_DEBUG_PROBE,"EISA_ID 0x%4x: 0x%4xn", (int) ioaddr + 0xC80, inw(ioaddr + EISA_ID));
  592. TLAN_DBG(TLAN_DEBUG_PROBE,"EISA_ID 0x%4x: 0x%4xn", (int) ioaddr + 0xC82, inw(ioaddr + EISA_ID2));
  593. TLAN_DBG(TLAN_DEBUG_PROBE, "Probing for EISA adapter at IO: 0x%4x : ",
  594.     (int) ioaddr);
  595. if (request_region(ioaddr, 0x10, TLanSignature) == NULL) 
  596. goto out;
  597. if (inw(ioaddr + EISA_ID) != 0x110E) {
  598. release_region(ioaddr, 0x10);
  599. goto out;
  600. }
  601. device_id = inw(ioaddr + EISA_ID2);
  602. if (device_id !=  0x20F1 && device_id != 0x40F1) { 
  603. release_region (ioaddr, 0x10);
  604. goto out;
  605. }
  606.   if (inb(ioaddr + EISA_CR) != 0x1) {  /* Check if adapter is enabled */
  607. release_region (ioaddr, 0x10);
  608. goto out2;
  609. }
  610. if (debug == 0x10)
  611. printk("Found onen");
  612. /* Get irq from board */
  613. switch (inb(ioaddr + 0xCC0)) {
  614. case(0x10):
  615. irq=5;
  616. break;
  617. case(0x20):
  618. irq=9;
  619. break;
  620. case(0x40):
  621. irq=10;
  622. break;
  623. case(0x80):
  624. irq=11;
  625. break;
  626. default:
  627. goto out;
  628. }               
  629. /* Setup the newly found eisa adapter */
  630. rc = TLan_probe1( NULL, ioaddr, irq,
  631. 12, NULL);
  632. continue;
  633. out:
  634. if (debug == 0x10)
  635. printk("None foundn");
  636. continue;
  637. out2: if (debug == 0x10)
  638. printk("Card found but it is not enabled, skippingn");
  639. continue;
  640. }
  641. } /* TLan_EisaProbe */
  642. /***************************************************************
  643.  * TLan_Init
  644.  *
  645.  * Returns:
  646.  * 0 on success, error code otherwise.
  647.  * Parms:
  648.  * dev The structure of the device to be
  649.  * init'ed.
  650.  *
  651.  * This function completes the initialization of the
  652.  * device structure and driver.  It reserves the IO
  653.  * addresses, allocates memory for the lists and bounce
  654.  * buffers, retrieves the MAC address from the eeprom
  655.  * and assignes the device's methods.
  656.  *
  657.  **************************************************************/
  658. static int TLan_Init( struct net_device *dev )
  659. {
  660. int dma_size;
  661. int  err;
  662. int i;
  663. TLanPrivateInfo *priv;
  664. priv = dev->priv;
  665. if (!priv->is_eisa) /* EISA devices have already requested IO */
  666. if (!request_region( dev->base_addr, 0x10, TLanSignature )) {
  667. printk(KERN_ERR "TLAN: %s: IO port region 0x%lx size 0x%x in use.n",
  668. dev->name,
  669. dev->base_addr,
  670. 0x10 );
  671. return -EIO;
  672. }
  673. if ( bbuf ) {
  674. dma_size = ( TLAN_NUM_RX_LISTS + TLAN_NUM_TX_LISTS )
  675.            * ( sizeof(TLanList) + TLAN_MAX_FRAME_SIZE );
  676. } else {
  677. dma_size = ( TLAN_NUM_RX_LISTS + TLAN_NUM_TX_LISTS )
  678.            * ( sizeof(TLanList) );
  679. }
  680. priv->dmaStorage = kmalloc(dma_size, GFP_KERNEL | GFP_DMA);
  681. if ( priv->dmaStorage == NULL ) {
  682. printk(KERN_ERR "TLAN:  Could not allocate lists and buffers for %s.n",
  683. dev->name );
  684. release_region( dev->base_addr, 0x10 );
  685. return -ENOMEM;
  686. }
  687. memset( priv->dmaStorage, 0, dma_size );
  688. priv->rxList = (TLanList *) 
  689.        ( ( ( (u32) priv->dmaStorage ) + 7 ) & 0xFFFFFFF8 );
  690. priv->txList = priv->rxList + TLAN_NUM_RX_LISTS;
  691. if ( bbuf ) {
  692. priv->rxBuffer = (u8 *) ( priv->txList + TLAN_NUM_TX_LISTS );
  693. priv->txBuffer = priv->rxBuffer
  694.  + ( TLAN_NUM_RX_LISTS * TLAN_MAX_FRAME_SIZE );
  695. }
  696. err = 0;
  697. for ( i = 0;  i < 6 ; i++ )
  698. err |= TLan_EeReadByte( dev,
  699. (u8) priv->adapter->addrOfs + i,
  700. (u8 *) &dev->dev_addr[i] );
  701. if ( err ) {
  702. printk(KERN_ERR "TLAN: %s: Error reading MAC from eeprom: %dn",
  703. dev->name,
  704. err );
  705. }
  706. dev->addr_len = 6;
  707. /* Device methods */
  708. dev->open = &TLan_Open;
  709. dev->hard_start_xmit = &TLan_StartTx;
  710. dev->stop = &TLan_Close;
  711. dev->get_stats = &TLan_GetStats;
  712. dev->set_multicast_list = &TLan_SetMulticastList;
  713. dev->do_ioctl = &TLan_ioctl;
  714. dev->tx_timeout = &TLan_tx_timeout;
  715. dev->watchdog_timeo = TX_TIMEOUT;
  716. return 0;
  717. } /* TLan_Init */
  718. /***************************************************************
  719.  * TLan_Open
  720.  *
  721.  * Returns:
  722.  * 0 on success, error code otherwise.
  723.  * Parms:
  724.  * dev Structure of device to be opened.
  725.  *
  726.  * This routine puts the driver and TLAN adapter in a
  727.  * state where it is ready to send and receive packets.
  728.  * It allocates the IRQ, resets and brings the adapter
  729.  * out of reset, and allows interrupts.  It also delays
  730.  * the startup for autonegotiation or sends a Rx GO
  731.  * command to the adapter, as appropriate.
  732.  *
  733.  **************************************************************/
  734. static int TLan_Open( struct net_device *dev )
  735. {
  736. TLanPrivateInfo *priv = dev->priv;
  737. int err;
  738. priv->tlanRev = TLan_DioRead8( dev->base_addr, TLAN_DEF_REVISION );
  739. err = request_irq( dev->irq, TLan_HandleInterrupt, SA_SHIRQ, TLanSignature, dev );
  740. if ( err ) {
  741. printk(KERN_ERR "TLAN:  Cannot open %s because IRQ %d is already in use.n", dev->name, dev->irq );
  742. return err;
  743. }
  744. init_timer(&priv->timer);
  745. netif_start_queue(dev);
  746. /* NOTE: It might not be necessary to read the stats before a
  747.  reset if you don't care what the values are.
  748. */
  749. TLan_ResetLists( dev );
  750. TLan_ReadAndClearStats( dev, TLAN_IGNORE );
  751. TLan_ResetAdapter( dev );
  752. TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Opened.  TLAN Chip Rev: %xn", dev->name, priv->tlanRev );
  753. return 0;
  754. } /* TLan_Open */
  755. /**************************************************************
  756.  * TLan_ioctl
  757.  *
  758.  * Returns:
  759.  * 0 on success, error code otherwise
  760.  * Params:
  761.  * dev structure of device to receive ioctl.
  762.  *
  763.  * rq ifreq structure to hold userspace data.
  764.  *
  765.  * cmd ioctl command.
  766.  *
  767.  *
  768.  *************************************************************/
  769. static int TLan_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  770. {
  771. TLanPrivateInfo *priv = dev->priv;
  772. struct mii_ioctl_data *data = (struct mii_ioctl_data *)&rq->ifr_data;
  773. u32 phy   = priv->phy[priv->phyNum];
  774. if (!priv->phyOnline)
  775. return -EAGAIN;
  776. switch(cmd) {
  777. case SIOCGMIIPHY: /* Get address of MII PHY in use. */
  778. case SIOCDEVPRIVATE: /* for binary compat, remove in 2.5 */
  779. data->phy_id = phy;
  780. case SIOCGMIIREG: /* Read MII PHY register. */
  781. case SIOCDEVPRIVATE+1: /* for binary compat, remove in 2.5 */
  782. TLan_MiiReadReg(dev, data->phy_id & 0x1f, data->reg_num & 0x1f, &data->val_out);
  783. return 0;
  784. case SIOCSMIIREG: /* Write MII PHY register. */
  785. case SIOCDEVPRIVATE+2: /* for binary compat, remove in 2.5 */
  786. if (!capable(CAP_NET_ADMIN))
  787. return -EPERM;
  788. TLan_MiiWriteReg(dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
  789. return 0;
  790. default:
  791. return -EOPNOTSUPP;
  792. }
  793. } /* tlan_ioctl */
  794. /***************************************************************
  795.  *  TLan_tx_timeout
  796.  *
  797.  *  Returns: nothing
  798.  *
  799.  *  Params:
  800.  *  dev structure of device which timed out 
  801.  *  during transmit.
  802.  *
  803.  **************************************************************/
  804. static void TLan_tx_timeout(struct net_device *dev)
  805. {
  806. TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Transmit timed out.n", dev->name);
  807. /* Ok so we timed out, lets see what we can do about it...*/
  808. TLan_FreeLists( dev );
  809. TLan_ResetLists( dev );
  810. TLan_ReadAndClearStats( dev, TLAN_IGNORE );
  811. TLan_ResetAdapter( dev );
  812. dev->trans_start = jiffies;
  813. netif_wake_queue( dev );
  814. }
  815. /***************************************************************
  816.  * TLan_StartTx
  817.  *  
  818.  * Returns:
  819.  * 0 on success, non-zero on failure.
  820.  * Parms:
  821.  * skb A pointer to the sk_buff containing the
  822.  * frame to be sent.
  823.  * dev The device to send the data on.
  824.  *
  825.  * This function adds a frame to the Tx list to be sent
  826.  * ASAP.  First it verifies that the adapter is ready and
  827.  * there is room in the queue.  Then it sets up the next
  828.  * available list, copies the frame to the corresponding
  829.  * buffer.  If the adapter Tx channel is idle, it gives
  830.  * the adapter a Tx Go command on the list, otherwise it
  831.  * sets the forward address of the previous list to point
  832.  * to this one.  Then it frees the sk_buff.
  833.  *
  834.  **************************************************************/
  835. static int TLan_StartTx( struct sk_buff *skb, struct net_device *dev )
  836. {
  837. TLanPrivateInfo *priv = dev->priv;
  838. TLanList *tail_list;
  839. u8 *tail_buffer;
  840. int pad;
  841. unsigned long flags;
  842. if ( ! priv->phyOnline ) {
  843. TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT:  %s PHY is not readyn", dev->name );
  844. dev_kfree_skb_any(skb);
  845. return 0;
  846. }
  847. tail_list = priv->txList + priv->txTail;
  848. if ( tail_list->cStat != TLAN_CSTAT_UNUSED ) {
  849. TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT:  %s is busy (Head=%d Tail=%d)n", dev->name, priv->txHead, priv->txTail );
  850. netif_stop_queue(dev);
  851. priv->txBusyCount++;
  852. return 1;
  853. }
  854. tail_list->forward = 0;
  855. if ( bbuf ) {
  856. tail_buffer = priv->txBuffer + ( priv->txTail * TLAN_MAX_FRAME_SIZE );
  857. memcpy( tail_buffer, skb->data, skb->len );
  858. } else {
  859. tail_list->buffer[0].address = virt_to_bus( skb->data );
  860. tail_list->buffer[9].address = (u32) skb;
  861. }
  862. pad = TLAN_MIN_FRAME_SIZE - skb->len;
  863. if ( pad > 0 ) {
  864. tail_list->frameSize = (u16) skb->len + pad;
  865. tail_list->buffer[0].count = (u32) skb->len;
  866. tail_list->buffer[1].count = TLAN_LAST_BUFFER | (u32) pad;
  867. tail_list->buffer[1].address = virt_to_bus( TLanPadBuffer );
  868. } else {
  869. tail_list->frameSize = (u16) skb->len;
  870. tail_list->buffer[0].count = TLAN_LAST_BUFFER | (u32) skb->len;
  871. tail_list->buffer[1].count = 0;
  872. tail_list->buffer[1].address = 0;
  873. }
  874. spin_lock_irqsave(&priv->lock, flags);
  875. tail_list->cStat = TLAN_CSTAT_READY;
  876. if ( ! priv->txInProgress ) {
  877. priv->txInProgress = 1;
  878. TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT:  Starting TX on buffer %dn", priv->txTail );
  879. outl( virt_to_bus( tail_list ), dev->base_addr + TLAN_CH_PARM );
  880. outl( TLAN_HC_GO, dev->base_addr + TLAN_HOST_CMD );
  881. } else {
  882. TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT:  Adding buffer %d to TX channeln", priv->txTail );
  883. if ( priv->txTail == 0 ) {
  884. ( priv->txList + ( TLAN_NUM_TX_LISTS - 1 ) )->forward = virt_to_bus( tail_list );
  885. } else {
  886. ( priv->txList + ( priv->txTail - 1 ) )->forward = virt_to_bus( tail_list );
  887. }
  888. }
  889. spin_unlock_irqrestore(&priv->lock, flags);
  890. CIRC_INC( priv->txTail, TLAN_NUM_TX_LISTS );
  891. if ( bbuf )
  892. dev_kfree_skb_any(skb);
  893. dev->trans_start = jiffies;
  894. return 0;
  895. } /* TLan_StartTx */
  896. /***************************************************************
  897.  * TLan_HandleInterrupt
  898.  *  
  899.  * Returns:
  900.  * Nothing
  901.  * Parms:
  902.  * irq The line on which the interrupt
  903.  * occurred.
  904.  * dev_id A pointer to the device assigned to
  905.  * this irq line.
  906.  * regs ???
  907.  *
  908.  * This function handles an interrupt generated by its
  909.  * assigned TLAN adapter.  The function deactivates
  910.  * interrupts on its adapter, records the type of
  911.  * interrupt, executes the appropriate subhandler, and
  912.  * acknowdges the interrupt to the adapter (thus
  913.  * re-enabling adapter interrupts.
  914.  *
  915.  **************************************************************/
  916. static void TLan_HandleInterrupt(int irq, void *dev_id, struct pt_regs *regs)
  917. {
  918. u32 ack;
  919. struct net_device *dev;
  920. u32 host_cmd;
  921. u16 host_int;
  922. int type;
  923. TLanPrivateInfo *priv;
  924. dev = dev_id;
  925. priv = dev->priv;
  926. spin_lock(&priv->lock);
  927. host_int = inw( dev->base_addr + TLAN_HOST_INT );
  928. outw( host_int, dev->base_addr + TLAN_HOST_INT );
  929. type = ( host_int & TLAN_HI_IT_MASK ) >> 2;
  930. ack = TLanIntVector[type]( dev, host_int );
  931. if ( ack ) {
  932. host_cmd = TLAN_HC_ACK | ack | ( type << 18 );
  933. outl( host_cmd, dev->base_addr + TLAN_HOST_CMD );
  934. }
  935. spin_unlock(&priv->lock);
  936. } /* TLan_HandleInterrupts */
  937. /***************************************************************
  938.  * TLan_Close
  939.  *  
  940.  *  Returns:
  941.  * An error code.
  942.  * Parms:
  943.  * dev The device structure of the device to
  944.  * close.
  945.  *
  946.  * This function shuts down the adapter.  It records any
  947.  * stats, puts the adapter into reset state, deactivates
  948.  * its time as needed, and frees the irq it is using.
  949.  *
  950.  **************************************************************/
  951. static int TLan_Close(struct net_device *dev)
  952. {
  953. TLanPrivateInfo *priv = dev->priv;
  954. netif_stop_queue(dev);
  955. priv->neg_be_verbose = 0;
  956. TLan_ReadAndClearStats( dev, TLAN_RECORD );
  957. outl( TLAN_HC_AD_RST, dev->base_addr + TLAN_HOST_CMD );
  958. if ( priv->timer.function != NULL ) {
  959. del_timer_sync( &priv->timer );
  960. priv->timer.function = NULL;
  961. }
  962. free_irq( dev->irq, dev );
  963. TLan_FreeLists( dev );
  964. TLAN_DBG( TLAN_DEBUG_GNRL, "Device %s closed.n", dev->name );
  965. return 0;
  966. } /* TLan_Close */
  967. /***************************************************************
  968.  * TLan_GetStats
  969.  *  
  970.  * Returns:
  971.  * A pointer to the device's statistics structure.
  972.  * Parms:
  973.  * dev The device structure to return the
  974.  * stats for.
  975.  *
  976.  * This function updates the devices statistics by reading
  977.  * the TLAN chip's onboard registers.  Then it returns the
  978.  * address of the statistics structure.
  979.  *
  980.  **************************************************************/
  981. static struct net_device_stats *TLan_GetStats( struct net_device *dev )
  982. {
  983. TLanPrivateInfo *priv = dev->priv;
  984. int i;
  985. /* Should only read stats if open ? */
  986. TLan_ReadAndClearStats( dev, TLAN_RECORD );
  987. TLAN_DBG( TLAN_DEBUG_RX, "RECEIVE:  %s EOC count = %dn", dev->name, priv->rxEocCount );
  988. TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT:  %s Busy count = %dn", dev->name, priv->txBusyCount );
  989. if ( debug & TLAN_DEBUG_GNRL ) {
  990. TLan_PrintDio( dev->base_addr );
  991. TLan_PhyPrint( dev );
  992. }
  993. if ( debug & TLAN_DEBUG_LIST ) {
  994. for ( i = 0; i < TLAN_NUM_RX_LISTS; i++ )
  995. TLan_PrintList( priv->rxList + i, "RX", i );
  996. for ( i = 0; i < TLAN_NUM_TX_LISTS; i++ )
  997. TLan_PrintList( priv->txList + i, "TX", i );
  998. }
  999. return ( &( (TLanPrivateInfo *) dev->priv )->stats );
  1000. } /* TLan_GetStats */
  1001. /***************************************************************
  1002.  * TLan_SetMulticastList
  1003.  *  
  1004.  * Returns:
  1005.  * Nothing
  1006.  * Parms:
  1007.  * dev The device structure to set the
  1008.  * multicast list for.
  1009.  *
  1010.  * This function sets the TLAN adaptor to various receive
  1011.  * modes.  If the IFF_PROMISC flag is set, promiscuous
  1012.  * mode is acitviated.  Otherwise, promiscuous mode is
  1013.  * turned off.  If the IFF_ALLMULTI flag is set, then
  1014.  * the hash table is set to receive all group addresses.
  1015.  * Otherwise, the first three multicast addresses are
  1016.  * stored in AREG_1-3, and the rest are selected via the
  1017.  * hash table, as necessary.
  1018.  *
  1019.  **************************************************************/
  1020. static void TLan_SetMulticastList( struct net_device *dev )
  1021. {
  1022. struct dev_mc_list *dmi = dev->mc_list;
  1023. u32 hash1 = 0;
  1024. u32 hash2 = 0;
  1025. int i;
  1026. u32 offset;
  1027. u8 tmp;
  1028. if ( dev->flags & IFF_PROMISC ) {
  1029. tmp = TLan_DioRead8( dev->base_addr, TLAN_NET_CMD );
  1030. TLan_DioWrite8( dev->base_addr, TLAN_NET_CMD, tmp | TLAN_NET_CMD_CAF );
  1031. } else {
  1032. tmp = TLan_DioRead8( dev->base_addr, TLAN_NET_CMD );
  1033. TLan_DioWrite8( dev->base_addr, TLAN_NET_CMD, tmp & ~TLAN_NET_CMD_CAF );
  1034. if ( dev->flags & IFF_ALLMULTI ) {
  1035. for ( i = 0; i < 3; i++ ) 
  1036. TLan_SetMac( dev, i + 1, NULL );
  1037. TLan_DioWrite32( dev->base_addr, TLAN_HASH_1, 0xFFFFFFFF );
  1038. TLan_DioWrite32( dev->base_addr, TLAN_HASH_2, 0xFFFFFFFF );
  1039. } else {
  1040. for ( i = 0; i < dev->mc_count; i++ ) {
  1041. if ( i < 3 ) {
  1042. TLan_SetMac( dev, i + 1, (char *) &dmi->dmi_addr );
  1043. } else {
  1044. offset = TLan_HashFunc( (u8 *) &dmi->dmi_addr );
  1045. if ( offset < 32 ) 
  1046. hash1 |= ( 1 << offset );
  1047. else
  1048. hash2 |= ( 1 << ( offset - 32 ) );
  1049. }
  1050. dmi = dmi->next;
  1051. }
  1052. for ( ; i < 3; i++ ) 
  1053. TLan_SetMac( dev, i + 1, NULL );
  1054. TLan_DioWrite32( dev->base_addr, TLAN_HASH_1, hash1 );
  1055. TLan_DioWrite32( dev->base_addr, TLAN_HASH_2, hash2 );
  1056. }
  1057. }
  1058. } /* TLan_SetMulticastList */
  1059. /*****************************************************************************
  1060. ******************************************************************************
  1061.         ThunderLAN Driver Interrupt Vectors and Table
  1062. Please see Chap. 4, "Interrupt Handling" of the "ThunderLAN
  1063. Programmer's Guide" for more informations on handling interrupts
  1064. generated by TLAN based adapters.  
  1065. ******************************************************************************
  1066. *****************************************************************************/
  1067. /***************************************************************
  1068.  * TLan_HandleInvalid
  1069.  *
  1070.  * Returns:
  1071.  * 0
  1072.  * Parms:
  1073.  * dev Device assigned the IRQ that was
  1074.  * raised.
  1075.  * host_int The contents of the HOST_INT
  1076.  * port.
  1077.  *
  1078.  * This function handles invalid interrupts.  This should
  1079.  * never happen unless some other adapter is trying to use
  1080.  * the IRQ line assigned to the device.
  1081.  *
  1082.  **************************************************************/
  1083. u32 TLan_HandleInvalid( struct net_device *dev, u16 host_int )
  1084. {
  1085. /* printk( "TLAN:  Invalid interrupt on %s.n", dev->name ); */
  1086. return 0;
  1087. } /* TLan_HandleInvalid */
  1088. /***************************************************************
  1089.  * TLan_HandleTxEOF
  1090.  *
  1091.  * Returns:
  1092.  * 1
  1093.  * Parms:
  1094.  * dev Device assigned the IRQ that was
  1095.  * raised.
  1096.  * host_int The contents of the HOST_INT
  1097.  * port.
  1098.  *
  1099.  * This function handles Tx EOF interrupts which are raised
  1100.  * by the adapter when it has completed sending the
  1101.  * contents of a buffer.  If detemines which list/buffer
  1102.  * was completed and resets it.  If the buffer was the last
  1103.  * in the channel (EOC), then the function checks to see if
  1104.  * another buffer is ready to send, and if so, sends a Tx
  1105.  * Go command.  Finally, the driver activates/continues the
  1106.  * activity LED.
  1107.  *
  1108.  **************************************************************/
  1109. u32 TLan_HandleTxEOF( struct net_device *dev, u16 host_int )
  1110. {
  1111. TLanPrivateInfo *priv = dev->priv;
  1112. int eoc = 0;
  1113. TLanList *head_list;
  1114. u32 ack = 0;
  1115. u16 tmpCStat;
  1116. TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT:  Handling TX EOF (Head=%d Tail=%d)n", priv->txHead, priv->txTail );
  1117. head_list = priv->txList + priv->txHead;
  1118. while (((tmpCStat = head_list->cStat ) & TLAN_CSTAT_FRM_CMP) && (ack < 255)) {
  1119. ack++;
  1120. if ( ! bbuf ) {
  1121. dev_kfree_skb_any( (struct sk_buff *) head_list->buffer[9].address );
  1122. head_list->buffer[9].address = 0;
  1123. }
  1124. if ( tmpCStat & TLAN_CSTAT_EOC )
  1125. eoc = 1;
  1126. priv->stats.tx_bytes += head_list->frameSize;
  1127. head_list->cStat = TLAN_CSTAT_UNUSED;
  1128. netif_start_queue(dev);
  1129. CIRC_INC( priv->txHead, TLAN_NUM_TX_LISTS ); 
  1130. head_list = priv->txList + priv->txHead;
  1131. }
  1132. if (!ack)
  1133. printk(KERN_INFO "TLAN: Received interrupt for uncompleted TX frame.n");
  1134. if ( eoc ) {
  1135. TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT:  Handling TX EOC (Head=%d Tail=%d)n", priv->txHead, priv->txTail );
  1136. head_list = priv->txList + priv->txHead;
  1137. if ( ( head_list->cStat & TLAN_CSTAT_READY ) == TLAN_CSTAT_READY ) {
  1138. outl( virt_to_bus( head_list ), dev->base_addr + TLAN_CH_PARM );
  1139. ack |= TLAN_HC_GO;
  1140. } else {
  1141. priv->txInProgress = 0;
  1142. }
  1143. }
  1144. if ( priv->adapter->flags & TLAN_ADAPTER_ACTIVITY_LED ) {
  1145. TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK | TLAN_LED_ACT );
  1146. if ( priv->timer.function == NULL ) {
  1147.  priv->timer.function = &TLan_Timer;
  1148.  priv->timer.data = (unsigned long) dev;
  1149.  priv->timer.expires = jiffies + TLAN_TIMER_ACT_DELAY;
  1150.  priv->timerSetAt = jiffies;
  1151.  priv->timerType = TLAN_TIMER_ACTIVITY;
  1152.  add_timer(&priv->timer);
  1153. } else if ( priv->timerType == TLAN_TIMER_ACTIVITY ) {
  1154. priv->timerSetAt = jiffies;
  1155. }
  1156. }
  1157. return ack;
  1158. } /* TLan_HandleTxEOF */
  1159. /***************************************************************
  1160.  * TLan_HandleStatOverflow
  1161.  *
  1162.  * Returns:
  1163.  * 1
  1164.  * Parms:
  1165.  * dev Device assigned the IRQ that was
  1166.  * raised.
  1167.  * host_int The contents of the HOST_INT
  1168.  * port.
  1169.  *
  1170.  * This function handles the Statistics Overflow interrupt
  1171.  * which means that one or more of the TLAN statistics
  1172.  * registers has reached 1/2 capacity and needs to be read.
  1173.  *
  1174.  **************************************************************/
  1175. u32 TLan_HandleStatOverflow( struct net_device *dev, u16 host_int )
  1176. {
  1177. TLan_ReadAndClearStats( dev, TLAN_RECORD );
  1178. return 1;
  1179. } /* TLan_HandleStatOverflow */
  1180. /***************************************************************
  1181.  * TLan_HandleRxEOF
  1182.  *
  1183.  * Returns:
  1184.  * 1
  1185.  * Parms:
  1186.  * dev Device assigned the IRQ that was
  1187.  * raised.
  1188.  * host_int The contents of the HOST_INT
  1189.  * port.
  1190.  *
  1191.  * This function handles the Rx EOF interrupt which
  1192.  * indicates a frame has been received by the adapter from
  1193.  * the net and the frame has been transferred to memory.
  1194.  * The function determines the bounce buffer the frame has
  1195.  * been loaded into, creates a new sk_buff big enough to
  1196.  * hold the frame, and sends it to protocol stack.  It
  1197.  * then resets the used buffer and appends it to the end
  1198.  * of the list.  If the frame was the last in the Rx
  1199.  * channel (EOC), the function restarts the receive channel
  1200.  * by sending an Rx Go command to the adapter.  Then it
  1201.  * activates/continues the activity LED.
  1202.  *
  1203.  **************************************************************/
  1204. u32 TLan_HandleRxEOF( struct net_device *dev, u16 host_int )
  1205. {
  1206. TLanPrivateInfo *priv = dev->priv;
  1207. u32 ack = 0;
  1208. int eoc = 0;
  1209. u8 *head_buffer;
  1210. TLanList *head_list;
  1211. struct sk_buff *skb;
  1212. TLanList *tail_list;
  1213. void *t;
  1214. u32 frameSize;
  1215. u16 tmpCStat;
  1216. TLAN_DBG( TLAN_DEBUG_RX, "RECEIVE:  Handling RX EOF (Head=%d Tail=%d)n", priv->rxHead, priv->rxTail );
  1217. head_list = priv->rxList + priv->rxHead;
  1218. while (((tmpCStat = head_list->cStat) & TLAN_CSTAT_FRM_CMP) && (ack < 255)) {
  1219. frameSize = head_list->frameSize;
  1220. ack++;
  1221. if (tmpCStat & TLAN_CSTAT_EOC)
  1222. eoc = 1;
  1223. if (bbuf) {
  1224. skb = dev_alloc_skb(frameSize + 7);
  1225. if (skb == NULL)
  1226. printk(KERN_INFO "TLAN: Couldn't allocate memory for received data.n");
  1227. else {
  1228. head_buffer = priv->rxBuffer + (priv->rxHead * TLAN_MAX_FRAME_SIZE);
  1229. skb->dev = dev;
  1230. skb_reserve(skb, 2);
  1231. t = (void *) skb_put(skb, frameSize);
  1232. priv->stats.rx_bytes += head_list->frameSize;
  1233. memcpy( t, head_buffer, frameSize );
  1234. skb->protocol = eth_type_trans( skb, dev );
  1235. netif_rx( skb );
  1236. }
  1237. } else {
  1238. struct sk_buff *new_skb;
  1239. /*
  1240.   * I changed the algorithm here. What we now do
  1241.   * is allocate the new frame. If this fails we
  1242.   * simply recycle the frame.
  1243.   */
  1244. new_skb = dev_alloc_skb( TLAN_MAX_FRAME_SIZE + 7 );
  1245. if ( new_skb != NULL ) {
  1246. /* If this ever happened it would be a problem */
  1247. /* not any more - ac */
  1248. skb = (struct sk_buff *) head_list->buffer[9].address;
  1249. skb_trim( skb, frameSize );
  1250. priv->stats.rx_bytes += frameSize;
  1251. skb->protocol = eth_type_trans( skb, dev );
  1252. netif_rx( skb );
  1253. new_skb->dev = dev;
  1254. skb_reserve( new_skb, 2 );
  1255. t = (void *) skb_put( new_skb, TLAN_MAX_FRAME_SIZE );
  1256. head_list->buffer[0].address = virt_to_bus( t );
  1257. head_list->buffer[8].address = (u32) t;
  1258. head_list->buffer[9].address = (u32) new_skb;
  1259. } else 
  1260. printk(KERN_WARNING "TLAN:  Couldn't allocate memory for received data.n" );
  1261. }
  1262. head_list->forward = 0;
  1263. head_list->cStat = 0;
  1264. tail_list = priv->rxList + priv->rxTail;
  1265. tail_list->forward = virt_to_bus( head_list );
  1266. CIRC_INC( priv->rxHead, TLAN_NUM_RX_LISTS );
  1267. CIRC_INC( priv->rxTail, TLAN_NUM_RX_LISTS );
  1268. head_list = priv->rxList + priv->rxHead;
  1269. }
  1270. if (!ack)
  1271. printk(KERN_INFO "TLAN: Received interrupt for uncompleted RX frame.n");
  1272. if ( eoc ) { 
  1273. TLAN_DBG( TLAN_DEBUG_RX, "RECEIVE:  Handling RX EOC (Head=%d Tail=%d)n", priv->rxHead, priv->rxTail );
  1274. head_list = priv->rxList + priv->rxHead;
  1275. outl( virt_to_bus( head_list ), dev->base_addr + TLAN_CH_PARM );
  1276. ack |= TLAN_HC_GO | TLAN_HC_RT;
  1277. priv->rxEocCount++;
  1278. }
  1279. if ( priv->adapter->flags & TLAN_ADAPTER_ACTIVITY_LED ) {
  1280. TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK | TLAN_LED_ACT );
  1281. if ( priv->timer.function == NULL )  {
  1282. priv->timer.function = &TLan_Timer;
  1283. priv->timer.data = (unsigned long) dev;
  1284. priv->timer.expires = jiffies + TLAN_TIMER_ACT_DELAY;
  1285. priv->timerSetAt = jiffies;
  1286. priv->timerType = TLAN_TIMER_ACTIVITY;
  1287. add_timer(&priv->timer);
  1288. } else if ( priv->timerType == TLAN_TIMER_ACTIVITY ) {
  1289. priv->timerSetAt = jiffies;
  1290. }
  1291. }
  1292. dev->last_rx = jiffies;
  1293. return ack;
  1294. } /* TLan_HandleRxEOF */
  1295. /***************************************************************
  1296.  * TLan_HandleDummy
  1297.  *
  1298.  * Returns:
  1299.  * 1
  1300.  * Parms:
  1301.  * dev Device assigned the IRQ that was
  1302.  * raised.
  1303.  * host_int The contents of the HOST_INT
  1304.  * port.
  1305.  *
  1306.  * This function handles the Dummy interrupt, which is
  1307.  * raised whenever a test interrupt is generated by setting
  1308.  * the Req_Int bit of HOST_CMD to 1.
  1309.  *
  1310.  **************************************************************/
  1311. u32 TLan_HandleDummy( struct net_device *dev, u16 host_int )
  1312. {
  1313. printk( "TLAN:  Test interrupt on %s.n", dev->name );
  1314. return 1;
  1315. } /* TLan_HandleDummy */
  1316. /***************************************************************
  1317.  * TLan_HandleTxEOC
  1318.  *
  1319.  * Returns:
  1320.  * 1
  1321.  * Parms:
  1322.  * dev Device assigned the IRQ that was
  1323.  * raised.
  1324.  * host_int The contents of the HOST_INT
  1325.  * port.
  1326.  *
  1327.  * This driver is structured to determine EOC occurances by
  1328.  * reading the CSTAT member of the list structure.  Tx EOC
  1329.  * interrupts are disabled via the DIO INTDIS register.
  1330.  * However, TLAN chips before revision 3.0 didn't have this
  1331.  * functionality, so process EOC events if this is the
  1332.  * case.
  1333.  *
  1334.  **************************************************************/
  1335. u32 TLan_HandleTxEOC( struct net_device *dev, u16 host_int )
  1336. {
  1337. TLanPrivateInfo *priv = dev->priv;
  1338. TLanList *head_list;
  1339. u32 ack = 1;
  1340. host_int = 0;
  1341. if ( priv->tlanRev < 0x30 ) {
  1342. TLAN_DBG( TLAN_DEBUG_TX, "TRANSMIT:  Handling TX EOC (Head=%d Tail=%d) -- IRQn", priv->txHead, priv->txTail );
  1343. head_list = priv->txList + priv->txHead;
  1344. if ( ( head_list->cStat & TLAN_CSTAT_READY ) == TLAN_CSTAT_READY ) {
  1345. netif_stop_queue(dev);
  1346. outl( virt_to_bus( head_list ), dev->base_addr + TLAN_CH_PARM );
  1347. ack |= TLAN_HC_GO;
  1348. } else {
  1349. priv->txInProgress = 0;
  1350. }
  1351. }
  1352. return ack;
  1353. } /* TLan_HandleTxEOC */
  1354. /***************************************************************
  1355.  * TLan_HandleStatusCheck
  1356.  *
  1357.  * Returns:
  1358.  * 0 if Adapter check, 1 if Network Status check.
  1359.  * Parms:
  1360.  * dev Device assigned the IRQ that was
  1361.  * raised.
  1362.  * host_int The contents of the HOST_INT
  1363.  * port.
  1364.  *
  1365.  * This function handles Adapter Check/Network Status
  1366.  * interrupts generated by the adapter.  It checks the
  1367.  * vector in the HOST_INT register to determine if it is
  1368.  * an Adapter Check interrupt.  If so, it resets the
  1369.  * adapter.  Otherwise it clears the status registers
  1370.  * and services the PHY.
  1371.  *
  1372.  **************************************************************/
  1373. u32 TLan_HandleStatusCheck( struct net_device *dev, u16 host_int )
  1374. {
  1375. TLanPrivateInfo *priv = dev->priv;
  1376. u32 ack;
  1377. u32 error;
  1378. u8 net_sts;
  1379. u32 phy;
  1380. u16 tlphy_ctl;
  1381. u16 tlphy_sts;
  1382. ack = 1;
  1383. if ( host_int & TLAN_HI_IV_MASK ) {
  1384. netif_stop_queue( dev );
  1385. error = inl( dev->base_addr + TLAN_CH_PARM );
  1386. printk( "TLAN:  %s: Adaptor Error = 0x%xn", dev->name, error );
  1387. TLan_ReadAndClearStats( dev, TLAN_RECORD );
  1388. outl( TLAN_HC_AD_RST, dev->base_addr + TLAN_HOST_CMD );
  1389. queue_task(&priv->tlan_tqueue, &tq_immediate);
  1390. mark_bh(IMMEDIATE_BH);
  1391. netif_wake_queue(dev);
  1392. ack = 0;
  1393. } else {
  1394. TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Status Checkn", dev->name );
  1395. phy = priv->phy[priv->phyNum];
  1396. net_sts = TLan_DioRead8( dev->base_addr, TLAN_NET_STS );
  1397. if ( net_sts ) {
  1398. TLan_DioWrite8( dev->base_addr, TLAN_NET_STS, net_sts );
  1399. TLAN_DBG( TLAN_DEBUG_GNRL, "%s:    Net_Sts = %xn", dev->name, (unsigned) net_sts );
  1400. }
  1401. if ( ( net_sts & TLAN_NET_STS_MIRQ ) &&  ( priv->phyNum == 0 ) ) {
  1402. TLan_MiiReadReg( dev, phy, TLAN_TLPHY_STS, &tlphy_sts );
  1403. TLan_MiiReadReg( dev, phy, TLAN_TLPHY_CTL, &tlphy_ctl );
  1404.          if ( ! ( tlphy_sts & TLAN_TS_POLOK ) && ! ( tlphy_ctl & TLAN_TC_SWAPOL ) ) {
  1405.                  tlphy_ctl |= TLAN_TC_SWAPOL;
  1406.                  TLan_MiiWriteReg( dev, phy, TLAN_TLPHY_CTL, tlphy_ctl);
  1407.          } else if ( ( tlphy_sts & TLAN_TS_POLOK ) && ( tlphy_ctl & TLAN_TC_SWAPOL ) ) {
  1408.                  tlphy_ctl &= ~TLAN_TC_SWAPOL;
  1409.                  TLan_MiiWriteReg( dev, phy, TLAN_TLPHY_CTL, tlphy_ctl);
  1410.          }
  1411. if (debug) {
  1412. TLan_PhyPrint( dev );
  1413. }
  1414. }
  1415. }
  1416. return ack;
  1417. } /* TLan_HandleStatusCheck */
  1418. /***************************************************************
  1419.  * TLan_HandleRxEOC
  1420.  *
  1421.  * Returns:
  1422.  * 1
  1423.  * Parms:
  1424.  * dev Device assigned the IRQ that was
  1425.  * raised.
  1426.  * host_int The contents of the HOST_INT
  1427.  * port.
  1428.  *
  1429.  * This driver is structured to determine EOC occurances by
  1430.  * reading the CSTAT member of the list structure.  Rx EOC
  1431.  * interrupts are disabled via the DIO INTDIS register.
  1432.  * However, TLAN chips before revision 3.0 didn't have this
  1433.  * CSTAT member or a INTDIS register, so if this chip is
  1434.  * pre-3.0, process EOC interrupts normally.
  1435.  *
  1436.  **************************************************************/
  1437. u32 TLan_HandleRxEOC( struct net_device *dev, u16 host_int )
  1438. {
  1439. TLanPrivateInfo *priv = dev->priv;
  1440. TLanList *head_list;
  1441. u32 ack = 1;
  1442. if (  priv->tlanRev < 0x30 ) {
  1443. TLAN_DBG( TLAN_DEBUG_RX, "RECEIVE:  Handling RX EOC (Head=%d Tail=%d) -- IRQn", priv->rxHead, priv->rxTail );
  1444. head_list = priv->rxList + priv->rxHead;
  1445. outl( virt_to_bus( head_list ), dev->base_addr + TLAN_CH_PARM );
  1446. ack |= TLAN_HC_GO | TLAN_HC_RT;
  1447. priv->rxEocCount++;
  1448. }
  1449. return ack;
  1450. } /* TLan_HandleRxEOC */
  1451. /*****************************************************************************
  1452. ******************************************************************************
  1453. ThunderLAN Driver Timer Function
  1454. ******************************************************************************
  1455. *****************************************************************************/
  1456. /***************************************************************
  1457.  * TLan_Timer
  1458.  *
  1459.  * Returns:
  1460.  * Nothing
  1461.  * Parms:
  1462.  * data A value given to add timer when
  1463.  * add_timer was called.
  1464.  *
  1465.  * This function handles timed functionality for the
  1466.  * TLAN driver.  The two current timer uses are for
  1467.  * delaying for autonegotionation and driving the ACT LED.
  1468.  * - Autonegotiation requires being allowed about
  1469.  * 2 1/2 seconds before attempting to transmit a
  1470.  * packet.  It would be a very bad thing to hang
  1471.  * the kernel this long, so the driver doesn't
  1472.  * allow transmission 'til after this time, for
  1473.  * certain PHYs.  It would be much nicer if all
  1474.  * PHYs were interrupt-capable like the internal
  1475.  * PHY.
  1476.  * - The ACT LED, which shows adapter activity, is
  1477.  * driven by the driver, and so must be left on
  1478.  * for a short period to power up the LED so it
  1479.  * can be seen.  This delay can be changed by
  1480.  * changing the TLAN_TIMER_ACT_DELAY in tlan.h,
  1481.  * if desired.  100 ms  produces a slightly
  1482.  * sluggish response.
  1483.  *
  1484.  **************************************************************/
  1485. void TLan_Timer( unsigned long data )
  1486. {
  1487. struct net_device *dev = (struct net_device *) data;
  1488. TLanPrivateInfo *priv = dev->priv;
  1489. u32 elapsed;
  1490. unsigned long flags = 0;
  1491. priv->timer.function = NULL;
  1492. switch ( priv->timerType ) {
  1493. #ifdef MONITOR
  1494. case TLAN_TIMER_LINK_BEAT:
  1495. TLan_PhyMonitor( dev );
  1496. break;
  1497. #endif
  1498. case TLAN_TIMER_PHY_PDOWN:
  1499. TLan_PhyPowerDown( dev );
  1500. break;
  1501. case TLAN_TIMER_PHY_PUP:
  1502. TLan_PhyPowerUp( dev );
  1503. break;
  1504. case TLAN_TIMER_PHY_RESET:
  1505. TLan_PhyReset( dev );
  1506. break;
  1507. case TLAN_TIMER_PHY_START_LINK:
  1508. TLan_PhyStartLink( dev );
  1509. break;
  1510. case TLAN_TIMER_PHY_FINISH_AN:
  1511. TLan_PhyFinishAutoNeg( dev );
  1512. break;
  1513. case TLAN_TIMER_FINISH_RESET:
  1514. TLan_FinishReset( dev );
  1515. break;
  1516. case TLAN_TIMER_ACTIVITY:
  1517. spin_lock_irqsave(&priv->lock, flags);
  1518. if ( priv->timer.function == NULL ) {
  1519. elapsed = jiffies - priv->timerSetAt;
  1520. if ( elapsed >= TLAN_TIMER_ACT_DELAY ) {
  1521. TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK );
  1522. } else  {
  1523. priv->timer.function = &TLan_Timer;
  1524. priv->timer.expires = priv->timerSetAt + TLAN_TIMER_ACT_DELAY;
  1525. spin_unlock_irqrestore(&priv->lock, flags);
  1526. add_timer( &priv->timer );
  1527. break;
  1528. }
  1529. }
  1530. spin_unlock_irqrestore(&priv->lock, flags);
  1531. break;
  1532. default:
  1533. break;
  1534. }
  1535. } /* TLan_Timer */
  1536. /*****************************************************************************
  1537. ******************************************************************************
  1538. ThunderLAN Driver Adapter Related Routines
  1539. ******************************************************************************
  1540. *****************************************************************************/
  1541. /***************************************************************
  1542.  * TLan_ResetLists
  1543.  *  
  1544.  * Returns:
  1545.  * Nothing
  1546.  * Parms:
  1547.  * dev The device structure with the list
  1548.  * stuctures to be reset.
  1549.  *
  1550.  * This routine sets the variables associated with managing
  1551.  * the TLAN lists to their initial values.
  1552.  *
  1553.  **************************************************************/
  1554. void TLan_ResetLists( struct net_device *dev )
  1555. {
  1556. TLanPrivateInfo *priv = dev->priv;
  1557. int i;
  1558. TLanList *list;
  1559. struct sk_buff *skb;
  1560. void *t = NULL;
  1561. priv->txHead = 0;
  1562. priv->txTail = 0;
  1563. for ( i = 0; i < TLAN_NUM_TX_LISTS; i++ ) {
  1564. list = priv->txList + i;
  1565. list->cStat = TLAN_CSTAT_UNUSED;
  1566. if ( bbuf ) {
  1567. list->buffer[0].address = virt_to_bus( priv->txBuffer + ( i * TLAN_MAX_FRAME_SIZE ) );
  1568. } else {
  1569. list->buffer[0].address = 0;
  1570. }
  1571. list->buffer[2].count = 0;
  1572. list->buffer[2].address = 0;
  1573. list->buffer[9].address = 0;
  1574. }
  1575. priv->rxHead = 0;
  1576. priv->rxTail = TLAN_NUM_RX_LISTS - 1;
  1577. for ( i = 0; i < TLAN_NUM_RX_LISTS; i++ ) {
  1578. list = priv->rxList + i;
  1579. list->cStat = TLAN_CSTAT_READY;
  1580. list->frameSize = TLAN_MAX_FRAME_SIZE;
  1581. list->buffer[0].count = TLAN_MAX_FRAME_SIZE | TLAN_LAST_BUFFER;
  1582. if ( bbuf ) {
  1583. list->buffer[0].address = virt_to_bus( priv->rxBuffer + ( i * TLAN_MAX_FRAME_SIZE ) );
  1584. } else {
  1585. skb = dev_alloc_skb( TLAN_MAX_FRAME_SIZE + 7 );
  1586. if ( skb == NULL ) {
  1587. printk( "TLAN:  Couldn't allocate memory for received data.n" );
  1588. /* If this ever happened it would be a problem */
  1589. } else {
  1590. skb->dev = dev;
  1591. skb_reserve( skb, 2 );
  1592. t = (void *) skb_put( skb, TLAN_MAX_FRAME_SIZE );
  1593. }
  1594. list->buffer[0].address = virt_to_bus( t );
  1595. list->buffer[8].address = (u32) t;
  1596. list->buffer[9].address = (u32) skb;
  1597. }
  1598. list->buffer[1].count = 0;
  1599. list->buffer[1].address = 0;
  1600. if ( i < TLAN_NUM_RX_LISTS - 1 )
  1601. list->forward = virt_to_bus( list + 1 );
  1602. else
  1603. list->forward = 0;
  1604. }
  1605. } /* TLan_ResetLists */
  1606. void TLan_FreeLists( struct net_device *dev )
  1607. {
  1608. TLanPrivateInfo *priv = dev->priv;
  1609. int i;
  1610. TLanList *list;
  1611. struct sk_buff *skb;
  1612. if ( ! bbuf ) {
  1613. for ( i = 0; i < TLAN_NUM_TX_LISTS; i++ ) {
  1614. list = priv->txList + i;
  1615. skb = (struct sk_buff *) list->buffer[9].address;
  1616. if ( skb ) {
  1617. dev_kfree_skb_any( skb );
  1618. list->buffer[9].address = 0;
  1619. }
  1620. }
  1621. for ( i = 0; i < TLAN_NUM_RX_LISTS; i++ ) {
  1622. list = priv->rxList + i;
  1623. skb = (struct sk_buff *) list->buffer[9].address;
  1624. if ( skb ) {
  1625. dev_kfree_skb_any( skb );
  1626. list->buffer[9].address = 0;
  1627. }
  1628. }
  1629. }
  1630. } /* TLan_FreeLists */
  1631. /***************************************************************
  1632.  * TLan_PrintDio
  1633.  *  
  1634.  * Returns:
  1635.  * Nothing
  1636.  * Parms:
  1637.  * io_base Base IO port of the device of
  1638.  * which to print DIO registers.
  1639.  *
  1640.  * This function prints out all the internal (DIO)
  1641.  * registers of a TLAN chip.
  1642.  *
  1643.  **************************************************************/
  1644. void TLan_PrintDio( u16 io_base )
  1645. {
  1646. u32 data0, data1;
  1647. int i;
  1648. printk( "TLAN:   Contents of internal registers for io base 0x%04hx.n", io_base );
  1649. printk( "TLAN:      Off.  +0         +4n" );
  1650. for ( i = 0; i < 0x4C; i+= 8 ) {
  1651. data0 = TLan_DioRead32( io_base, i );
  1652. data1 = TLan_DioRead32( io_base, i + 0x4 );
  1653. printk( "TLAN:      0x%02x  0x%08x 0x%08xn", i, data0, data1 );
  1654. }
  1655. } /* TLan_PrintDio */
  1656. /***************************************************************
  1657.  * TLan_PrintList
  1658.  *  
  1659.  * Returns:
  1660.  * Nothing
  1661.  * Parms:
  1662.  * list A pointer to the TLanList structure to
  1663.  * be printed.
  1664.  * type A string to designate type of list,
  1665.  * "Rx" or "Tx".
  1666.  * num The index of the list.
  1667.  *
  1668.  * This function prints out the contents of the list
  1669.  * pointed to by the list parameter.
  1670.  *
  1671.  **************************************************************/
  1672. void TLan_PrintList( TLanList *list, char *type, int num)
  1673. {
  1674. int i;
  1675. printk( "TLAN:   %s List %d at 0x%08xn", type, num, (u32) list );
  1676. printk( "TLAN:      Forward    = 0x%08xn",  list->forward );
  1677. printk( "TLAN:      CSTAT      = 0x%04hxn", list->cStat );
  1678. printk( "TLAN:      Frame Size = 0x%04hxn", list->frameSize );
  1679. /* for ( i = 0; i < 10; i++ ) { */
  1680. for ( i = 0; i < 2; i++ ) {
  1681. printk( "TLAN:      Buffer[%d].count, addr = 0x%08x, 0x%08xn", i, list->buffer[i].count, list->buffer[i].address );
  1682. }
  1683. } /* TLan_PrintList */
  1684. /***************************************************************
  1685.  * TLan_ReadAndClearStats
  1686.  *
  1687.  * Returns:
  1688.  * Nothing
  1689.  * Parms:
  1690.  * dev Pointer to device structure of adapter
  1691.  * to which to read stats.
  1692.  * record Flag indicating whether to add 
  1693.  *
  1694.  * This functions reads all the internal status registers
  1695.  * of the TLAN chip, which clears them as a side effect.
  1696.  * It then either adds the values to the device's status
  1697.  * struct, or discards them, depending on whether record
  1698.  * is TLAN_RECORD (!=0)  or TLAN_IGNORE (==0).
  1699.  *
  1700.  **************************************************************/
  1701. void TLan_ReadAndClearStats( struct net_device *dev, int record )
  1702. {
  1703. TLanPrivateInfo *priv = dev->priv;
  1704. u32 tx_good, tx_under;
  1705. u32 rx_good, rx_over;
  1706. u32 def_tx, crc, code;
  1707. u32 multi_col, single_col;
  1708. u32 excess_col, late_col, loss;
  1709. outw( TLAN_GOOD_TX_FRMS, dev->base_addr + TLAN_DIO_ADR );
  1710. tx_good  = inb( dev->base_addr + TLAN_DIO_DATA );
  1711. tx_good += inb( dev->base_addr + TLAN_DIO_DATA + 1 ) << 8;
  1712. tx_good += inb( dev->base_addr + TLAN_DIO_DATA + 2 ) << 16;
  1713. tx_under = inb( dev->base_addr + TLAN_DIO_DATA + 3 );
  1714. outw( TLAN_GOOD_RX_FRMS, dev->base_addr + TLAN_DIO_ADR );
  1715. rx_good  = inb( dev->base_addr + TLAN_DIO_DATA );
  1716. rx_good += inb( dev->base_addr + TLAN_DIO_DATA + 1 ) << 8;
  1717. rx_good += inb( dev->base_addr + TLAN_DIO_DATA + 2 ) << 16;
  1718. rx_over  = inb( dev->base_addr + TLAN_DIO_DATA + 3 );
  1719. outw( TLAN_DEFERRED_TX, dev->base_addr + TLAN_DIO_ADR );
  1720. def_tx  = inb( dev->base_addr + TLAN_DIO_DATA );
  1721. def_tx += inb( dev->base_addr + TLAN_DIO_DATA + 1 ) << 8;
  1722. crc     = inb( dev->base_addr + TLAN_DIO_DATA + 2 );
  1723. code    = inb( dev->base_addr + TLAN_DIO_DATA + 3 );
  1724. outw( TLAN_MULTICOL_FRMS, dev->base_addr + TLAN_DIO_ADR );
  1725. multi_col   = inb( dev->base_addr + TLAN_DIO_DATA );
  1726. multi_col  += inb( dev->base_addr + TLAN_DIO_DATA + 1 ) << 8;
  1727. single_col  = inb( dev->base_addr + TLAN_DIO_DATA + 2 );
  1728. single_col += inb( dev->base_addr + TLAN_DIO_DATA + 3 ) << 8;
  1729. outw( TLAN_EXCESSCOL_FRMS, dev->base_addr + TLAN_DIO_ADR );
  1730. excess_col = inb( dev->base_addr + TLAN_DIO_DATA );
  1731. late_col   = inb( dev->base_addr + TLAN_DIO_DATA + 1 );
  1732. loss       = inb( dev->base_addr + TLAN_DIO_DATA + 2 );
  1733. if ( record ) {
  1734. priv->stats.rx_packets += rx_good;
  1735. priv->stats.rx_errors  += rx_over + crc + code;
  1736. priv->stats.tx_packets += tx_good;
  1737. priv->stats.tx_errors  += tx_under + loss;
  1738. priv->stats.collisions += multi_col + single_col + excess_col + late_col;
  1739. priv->stats.rx_over_errors    += rx_over;
  1740. priv->stats.rx_crc_errors     += crc;
  1741. priv->stats.rx_frame_errors   += code;
  1742. priv->stats.tx_aborted_errors += tx_under;
  1743. priv->stats.tx_carrier_errors += loss;
  1744. }
  1745. } /* TLan_ReadAndClearStats */
  1746. /***************************************************************
  1747.  * TLan_Reset
  1748.  *
  1749.  * Returns:
  1750.  * 0
  1751.  * Parms:
  1752.  * dev Pointer to device structure of adapter
  1753.  * to be reset.
  1754.  *
  1755.  * This function resets the adapter and it's physical
  1756.  * device.  See Chap. 3, pp. 9-10 of the "ThunderLAN
  1757.  * Programmer's Guide" for details.  The routine tries to
  1758.  * implement what is detailed there, though adjustments
  1759.  * have been made.
  1760.  *
  1761.  **************************************************************/
  1762. void
  1763. TLan_ResetAdapter( struct net_device *dev )
  1764. {
  1765. TLanPrivateInfo *priv = dev->priv;
  1766. int i;
  1767. u32 addr;
  1768. u32 data;
  1769. u8 data8;
  1770. priv->tlanFullDuplex = FALSE;
  1771. priv->phyOnline=0;
  1772. /*  1. Assert reset bit. */
  1773. data = inl(dev->base_addr + TLAN_HOST_CMD);
  1774. data |= TLAN_HC_AD_RST;
  1775. outl(data, dev->base_addr + TLAN_HOST_CMD);
  1776. udelay(1000);
  1777. /*  2. Turn off interrupts. ( Probably isn't necessary ) */
  1778. data = inl(dev->base_addr + TLAN_HOST_CMD);
  1779. data |= TLAN_HC_INT_OFF;
  1780. outl(data, dev->base_addr + TLAN_HOST_CMD);
  1781. /*  3. Clear AREGs and HASHs. */
  1782.   for ( i = TLAN_AREG_0; i <= TLAN_HASH_2; i += 4 ) {
  1783. TLan_DioWrite32( dev->base_addr, (u16) i, 0 );
  1784. }
  1785. /*  4. Setup NetConfig register. */
  1786. data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN | TLAN_NET_CFG_PHY_EN;
  1787. TLan_DioWrite16( dev->base_addr, TLAN_NET_CONFIG, (u16) data );
  1788. /*  5. Load Ld_Tmr and Ld_Thr in HOST_CMD. */
  1789.   outl( TLAN_HC_LD_TMR | 0x3f, dev->base_addr + TLAN_HOST_CMD );
  1790.   outl( TLAN_HC_LD_THR | 0x9, dev->base_addr + TLAN_HOST_CMD );
  1791. /*  6. Unreset the MII by setting NMRST (in NetSio) to 1. */
  1792. outw( TLAN_NET_SIO, dev->base_addr + TLAN_DIO_ADR );
  1793. addr = dev->base_addr + TLAN_DIO_DATA + TLAN_NET_SIO;
  1794. TLan_SetBit( TLAN_NET_SIO_NMRST, addr );
  1795. /*  7. Setup the remaining registers. */
  1796. if ( priv->tlanRev >= 0x30 ) {
  1797. data8 = TLAN_ID_TX_EOC | TLAN_ID_RX_EOC;
  1798. TLan_DioWrite8( dev->base_addr, TLAN_INT_DIS, data8 );
  1799. }
  1800. TLan_PhyDetect( dev );
  1801. data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN;
  1802. if ( priv->adapter->flags & TLAN_ADAPTER_BIT_RATE_PHY ) {
  1803. data |= TLAN_NET_CFG_BIT;
  1804. if ( priv->aui == 1 ) {
  1805. TLan_DioWrite8( dev->base_addr, TLAN_ACOMMIT, 0x0a );
  1806. } else if ( priv->duplex == TLAN_DUPLEX_FULL ) {
  1807. TLan_DioWrite8( dev->base_addr, TLAN_ACOMMIT, 0x00 );
  1808. priv->tlanFullDuplex = TRUE;
  1809. } else {
  1810. TLan_DioWrite8( dev->base_addr, TLAN_ACOMMIT, 0x08 );
  1811. }
  1812. }
  1813. if ( priv->phyNum == 0 ) {
  1814. data |= TLAN_NET_CFG_PHY_EN;
  1815. }
  1816. TLan_DioWrite16( dev->base_addr, TLAN_NET_CONFIG, (u16) data );
  1817. if ( priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY ) {
  1818. TLan_FinishReset( dev );
  1819. } else {
  1820. TLan_PhyPowerDown( dev );
  1821. }
  1822. } /* TLan_ResetAdapter */
  1823. void
  1824. TLan_FinishReset( struct net_device *dev )
  1825. {
  1826. TLanPrivateInfo *priv = dev->priv;
  1827. u8 data;
  1828. u32 phy;
  1829. u8 sio;
  1830. u16 status;
  1831. u16 partner;
  1832. u16 tlphy_ctl;
  1833. u16  tlphy_par;
  1834. u16 tlphy_id1, tlphy_id2;
  1835. int  i;
  1836. phy = priv->phy[priv->phyNum];
  1837. data = TLAN_NET_CMD_NRESET | TLAN_NET_CMD_NWRAP;
  1838. if ( priv->tlanFullDuplex ) {
  1839. data |= TLAN_NET_CMD_DUPLEX;
  1840. }
  1841. TLan_DioWrite8( dev->base_addr, TLAN_NET_CMD, data );
  1842. data = TLAN_NET_MASK_MASK4 | TLAN_NET_MASK_MASK5; 
  1843. if ( priv->phyNum == 0 ) {
  1844. data |= TLAN_NET_MASK_MASK7; 
  1845. }
  1846. TLan_DioWrite8( dev->base_addr, TLAN_NET_MASK, data );
  1847. TLan_DioWrite16( dev->base_addr, TLAN_MAX_RX, ((1536)+7)&~7 );
  1848. TLan_MiiReadReg( dev, phy, MII_GEN_ID_HI, &tlphy_id1 );
  1849. TLan_MiiReadReg( dev, phy, MII_GEN_ID_LO, &tlphy_id2 );
  1850. if ( ( priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY ) || ( priv->aui ) ) {
  1851. status = MII_GS_LINK;
  1852. printk( "TLAN:  %s: Link forced.n", dev->name );
  1853. } else {
  1854. TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
  1855. udelay( 1000 );
  1856. TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
  1857. if ( (status & MII_GS_LINK) &&  /* We only support link info on Nat.Sem. PHY's */ 
  1858. (tlphy_id1 == NAT_SEM_ID1) &&
  1859. (tlphy_id2 == NAT_SEM_ID2) ) {
  1860. TLan_MiiReadReg( dev, phy, MII_AN_LPA, &partner );
  1861. TLan_MiiReadReg( dev, phy, TLAN_TLPHY_PAR, &tlphy_par );
  1862. printk( "TLAN: %s: Link active with ", dev->name );
  1863. if (!(tlphy_par & TLAN_PHY_AN_EN_STAT)) {
  1864.         printk( "forced 10%sMbps %s-Duplexn", 
  1865. tlphy_par & TLAN_PHY_SPEED_100 ? "" : "0",
  1866. tlphy_par & TLAN_PHY_DUPLEX_FULL ? "Full" : "Half");
  1867. } else {
  1868. printk( "AutoNegotiation enabled, at 10%sMbps %s-Duplexn",
  1869. tlphy_par & TLAN_PHY_SPEED_100 ? "" : "0",
  1870. tlphy_par & TLAN_PHY_DUPLEX_FULL ? "Full" : "Half");
  1871. printk("TLAN: Partner capability: ");
  1872. for (i = 5; i <= 10; i++)
  1873. if (partner & (1<<i))
  1874. printk("%s", media[i-5]);
  1875. printk("n");
  1876. }
  1877. TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK );
  1878. #ifdef MONITOR
  1879. /* We have link beat..for now anyway */
  1880.          priv->link = 1;
  1881.          /*Enabling link beat monitoring */
  1882. TLan_SetTimer( dev, (10*HZ), TLAN_TIMER_LINK_BEAT );
  1883. #endif 
  1884. } else if (status & MII_GS_LINK)  {
  1885. printk( "TLAN: %s: Link activen", dev->name );
  1886. TLan_DioWrite8( dev->base_addr, TLAN_LED_REG, TLAN_LED_LINK );
  1887. }
  1888. }
  1889. if ( priv->phyNum == 0 ) {
  1890.          TLan_MiiReadReg( dev, phy, TLAN_TLPHY_CTL, &tlphy_ctl );
  1891.          tlphy_ctl |= TLAN_TC_INTEN;
  1892.          TLan_MiiWriteReg( dev, phy, TLAN_TLPHY_CTL, tlphy_ctl );
  1893.          sio = TLan_DioRead8( dev->base_addr, TLAN_NET_SIO );
  1894.          sio |= TLAN_NET_SIO_MINTEN;
  1895.          TLan_DioWrite8( dev->base_addr, TLAN_NET_SIO, sio );
  1896. }
  1897. if ( status & MII_GS_LINK ) {
  1898. TLan_SetMac( dev, 0, dev->dev_addr );
  1899. priv->phyOnline = 1;
  1900. outb( ( TLAN_HC_INT_ON >> 8 ), dev->base_addr + TLAN_HOST_CMD + 1 );
  1901. if ( debug >= 1 && debug != TLAN_DEBUG_PROBE ) {
  1902. outb( ( TLAN_HC_REQ_INT >> 8 ), dev->base_addr + TLAN_HOST_CMD + 1 );
  1903. }
  1904. outl( virt_to_bus( priv->rxList ), dev->base_addr + TLAN_CH_PARM );
  1905. outl( TLAN_HC_GO | TLAN_HC_RT, dev->base_addr + TLAN_HOST_CMD );
  1906. } else {
  1907. printk( "TLAN: %s: Link inactive, will retry in 10 secs...n", dev->name );
  1908. TLan_SetTimer( dev, (10*HZ), TLAN_TIMER_FINISH_RESET );
  1909. return;
  1910. }
  1911. } /* TLan_FinishReset */
  1912. /***************************************************************
  1913.  * TLan_SetMac
  1914.  *
  1915.  * Returns:
  1916.  * Nothing
  1917.  * Parms:
  1918.  * dev Pointer to device structure of adapter
  1919.  * on which to change the AREG.
  1920.  * areg The AREG to set the address in (0 - 3).
  1921.  * mac A pointer to an array of chars.  Each
  1922.  * element stores one byte of the address.
  1923.  * IE, it isn't in ascii.
  1924.  *
  1925.  * This function transfers a MAC address to one of the
  1926.  * TLAN AREGs (address registers).  The TLAN chip locks
  1927.  * the register on writing to offset 0 and unlocks the
  1928.  * register after writing to offset 5.  If NULL is passed
  1929.  * in mac, then the AREG is filled with 0's.
  1930.  *
  1931.  **************************************************************/
  1932. void TLan_SetMac( struct net_device *dev, int areg, char *mac )
  1933. {
  1934. int i;
  1935. areg *= 6;
  1936. if ( mac != NULL ) {
  1937. for ( i = 0; i < 6; i++ )
  1938. TLan_DioWrite8( dev->base_addr, TLAN_AREG_0 + areg + i, mac[i] );
  1939. } else {
  1940. for ( i = 0; i < 6; i++ )
  1941. TLan_DioWrite8( dev->base_addr, TLAN_AREG_0 + areg + i, 0 );
  1942. }
  1943. } /* TLan_SetMac */
  1944. /*****************************************************************************
  1945. ******************************************************************************
  1946. ThunderLAN Driver PHY Layer Routines
  1947. ******************************************************************************
  1948. *****************************************************************************/
  1949. /*********************************************************************
  1950.  * TLan_PhyPrint
  1951.  *
  1952.  * Returns:
  1953.  * Nothing
  1954.  * Parms:
  1955.  * dev A pointer to the device structure of the
  1956.  * TLAN device having the PHYs to be detailed.
  1957.  *
  1958.  * This function prints the registers a PHY (aka tranceiver).
  1959.  *
  1960.  ********************************************************************/
  1961. void TLan_PhyPrint( struct net_device *dev )
  1962. {
  1963. TLanPrivateInfo *priv = dev->priv;
  1964. u16 i, data0, data1, data2, data3, phy;
  1965. phy = priv->phy[priv->phyNum];
  1966. if ( priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY ) {
  1967. printk( "TLAN:   Device %s, Unmanaged PHY.n", dev->name );
  1968. } else if ( phy <= TLAN_PHY_MAX_ADDR ) {
  1969. printk( "TLAN:   Device %s, PHY 0x%02x.n", dev->name, phy );
  1970. printk( "TLAN:      Off.  +0     +1     +2     +3 n" );
  1971.                 for ( i = 0; i < 0x20; i+= 4 ) {
  1972. printk( "TLAN:      0x%02x", i );
  1973. TLan_MiiReadReg( dev, phy, i, &data0 );
  1974. printk( " 0x%04hx", data0 );
  1975. TLan_MiiReadReg( dev, phy, i + 1, &data1 );
  1976. printk( " 0x%04hx", data1 );
  1977. TLan_MiiReadReg( dev, phy, i + 2, &data2 );
  1978. printk( " 0x%04hx", data2 );
  1979. TLan_MiiReadReg( dev, phy, i + 3, &data3 );
  1980. printk( " 0x%04hxn", data3 );
  1981. }
  1982. } else {
  1983. printk( "TLAN:   Device %s, Invalid PHY.n", dev->name );
  1984. }
  1985. } /* TLan_PhyPrint */
  1986. /*********************************************************************
  1987.  * TLan_PhyDetect
  1988.  *
  1989.  * Returns:
  1990.  * Nothing
  1991.  * Parms:
  1992.  * dev A pointer to the device structure of the adapter
  1993.  * for which the PHY needs determined.
  1994.  *
  1995.  * So far I've found that adapters which have external PHYs
  1996.  * may also use the internal PHY for part of the functionality.
  1997.  * (eg, AUI/Thinnet).  This function finds out if this TLAN
  1998.  * chip has an internal PHY, and then finds the first external
  1999.  * PHY (starting from address 0) if it exists).
  2000.  *
  2001.  ********************************************************************/
  2002. void TLan_PhyDetect( struct net_device *dev )
  2003. {
  2004. TLanPrivateInfo *priv = dev->priv;
  2005. u16 control;
  2006. u16 hi;
  2007. u16 lo;
  2008. u32 phy;
  2009. if ( priv->adapter->flags & TLAN_ADAPTER_UNMANAGED_PHY ) {
  2010. priv->phyNum = 0xFFFF;
  2011. return;
  2012. }
  2013. TLan_MiiReadReg( dev, TLAN_PHY_MAX_ADDR, MII_GEN_ID_HI, &hi );
  2014. if ( hi != 0xFFFF ) {
  2015. priv->phy[0] = TLAN_PHY_MAX_ADDR;
  2016. } else {
  2017. priv->phy[0] = TLAN_PHY_NONE;
  2018. }
  2019. priv->phy[1] = TLAN_PHY_NONE;
  2020. for ( phy = 0; phy <= TLAN_PHY_MAX_ADDR; phy++ ) {
  2021. TLan_MiiReadReg( dev, phy, MII_GEN_CTL, &control );
  2022. TLan_MiiReadReg( dev, phy, MII_GEN_ID_HI, &hi );
  2023. TLan_MiiReadReg( dev, phy, MII_GEN_ID_LO, &lo );
  2024. if ( ( control != 0xFFFF ) || ( hi != 0xFFFF ) || ( lo != 0xFFFF ) ) {
  2025. TLAN_DBG( TLAN_DEBUG_GNRL, "PHY found at %02x %04x %04x %04xn", phy, control, hi, lo );
  2026. if ( ( priv->phy[1] == TLAN_PHY_NONE ) && ( phy != TLAN_PHY_MAX_ADDR ) ) {
  2027. priv->phy[1] = phy;
  2028. }
  2029. }
  2030. }
  2031. if ( priv->phy[1] != TLAN_PHY_NONE ) {
  2032. priv->phyNum = 1;
  2033. } else if ( priv->phy[0] != TLAN_PHY_NONE ) {
  2034. priv->phyNum = 0;
  2035. } else {
  2036. printk( "TLAN:  Cannot initialize device, no PHY was found!n" );
  2037. }
  2038. } /* TLan_PhyDetect */
  2039. void TLan_PhyPowerDown( struct net_device *dev )
  2040. {
  2041. TLanPrivateInfo *priv = dev->priv;
  2042. u16 value;
  2043. TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Powering down PHY(s).n", dev->name );
  2044. value = MII_GC_PDOWN | MII_GC_LOOPBK | MII_GC_ISOLATE;
  2045. TLan_MiiSync( dev->base_addr );
  2046. TLan_MiiWriteReg( dev, priv->phy[priv->phyNum], MII_GEN_CTL, value );
  2047. if ( ( priv->phyNum == 0 ) && ( priv->phy[1] != TLAN_PHY_NONE ) && ( ! ( priv->adapter->flags & TLAN_ADAPTER_USE_INTERN_10 ) ) ) {
  2048. TLan_MiiSync( dev->base_addr );
  2049. TLan_MiiWriteReg( dev, priv->phy[1], MII_GEN_CTL, value );
  2050. }
  2051. /* Wait for 50 ms and powerup
  2052.  * This is abitrary.  It is intended to make sure the
  2053.  * tranceiver settles.
  2054.  */
  2055. TLan_SetTimer( dev, (HZ/20), TLAN_TIMER_PHY_PUP );
  2056. } /* TLan_PhyPowerDown */
  2057. void TLan_PhyPowerUp( struct net_device *dev )
  2058. {
  2059. TLanPrivateInfo *priv = dev->priv;
  2060. u16 value;
  2061. TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Powering up PHY.n", dev->name );
  2062. TLan_MiiSync( dev->base_addr );
  2063. value = MII_GC_LOOPBK;
  2064. TLan_MiiWriteReg( dev, priv->phy[priv->phyNum], MII_GEN_CTL, value );
  2065. TLan_MiiSync(dev->base_addr);
  2066. /* Wait for 500 ms and reset the
  2067.  * tranceiver.  The TLAN docs say both 50 ms and
  2068.  * 500 ms, so do the longer, just in case.
  2069.  */
  2070. TLan_SetTimer( dev, (HZ/20), TLAN_TIMER_PHY_RESET );
  2071. } /* TLan_PhyPowerUp */
  2072. void TLan_PhyReset( struct net_device *dev )
  2073. {
  2074. TLanPrivateInfo *priv = dev->priv;
  2075. u16 phy;
  2076. u16 value;
  2077. phy = priv->phy[priv->phyNum];
  2078. TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Reseting PHY.n", dev->name );
  2079. TLan_MiiSync( dev->base_addr );
  2080. value = MII_GC_LOOPBK | MII_GC_RESET;
  2081. TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, value );
  2082. TLan_MiiReadReg( dev, phy, MII_GEN_CTL, &value );
  2083. while ( value & MII_GC_RESET ) {
  2084. TLan_MiiReadReg( dev, phy, MII_GEN_CTL, &value );
  2085. }
  2086. /* Wait for 500 ms and initialize.
  2087.  * I don't remember why I wait this long.
  2088.  * I've changed this to 50ms, as it seems long enough.
  2089.  */
  2090. TLan_SetTimer( dev, (HZ/20), TLAN_TIMER_PHY_START_LINK );
  2091. } /* TLan_PhyReset */
  2092. void TLan_PhyStartLink( struct net_device *dev )
  2093. {
  2094. TLanPrivateInfo *priv = dev->priv;
  2095. u16 ability;
  2096. u16 control;
  2097. u16 data;
  2098. u16 phy;
  2099. u16 status;
  2100. u16 tctl;
  2101. phy = priv->phy[priv->phyNum];
  2102. TLAN_DBG( TLAN_DEBUG_GNRL, "%s: Trying to activate link.n", dev->name );
  2103. TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
  2104. TLan_MiiReadReg( dev, phy, MII_GEN_STS, &ability );
  2105. if ( ( status & MII_GS_AUTONEG ) && 
  2106.      ( ! priv->aui ) ) {
  2107. ability = status >> 11;
  2108. if ( priv->speed  == TLAN_SPEED_10 && 
  2109.      priv->duplex == TLAN_DUPLEX_HALF) {
  2110. TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x0000);
  2111. } else if ( priv->speed == TLAN_SPEED_10 &&
  2112.     priv->duplex == TLAN_DUPLEX_FULL) {
  2113. priv->tlanFullDuplex = TRUE;
  2114. TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x0100);
  2115. } else if ( priv->speed == TLAN_SPEED_100 &&
  2116.     priv->duplex == TLAN_DUPLEX_HALF) {
  2117. TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x2000);
  2118. } else if ( priv->speed == TLAN_SPEED_100 &&
  2119.     priv->duplex == TLAN_DUPLEX_FULL) {
  2120. priv->tlanFullDuplex = TRUE;
  2121. TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x2100);
  2122. } else {
  2123. /* Set Auto-Neg advertisement */
  2124. TLan_MiiWriteReg( dev, phy, MII_AN_ADV, (ability << 5) | 1);
  2125. /* Enablee Auto-Neg */
  2126. TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x1000 );
  2127. /* Restart Auto-Neg */
  2128. TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, 0x1200 );
  2129. /* Wait for 4 sec for autonegotiation
  2130.   * to complete.  The max spec time is less than this
  2131.   * but the card need additional time to start AN.
  2132.   * .5 sec should be plenty extra.
  2133.   */
  2134. printk( "TLAN: %s: Starting autonegotiation.n", dev->name );
  2135. TLan_SetTimer( dev, (2*HZ), TLAN_TIMER_PHY_FINISH_AN );
  2136. return;
  2137. }
  2138. }
  2139. if ( ( priv->aui ) && ( priv->phyNum != 0 ) ) {
  2140. priv->phyNum = 0;
  2141. data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN | TLAN_NET_CFG_PHY_EN;
  2142. TLan_DioWrite16( dev->base_addr, TLAN_NET_CONFIG, data );
  2143. TLan_SetTimer( dev, (40*HZ/1000), TLAN_TIMER_PHY_PDOWN );
  2144. return;
  2145. }  else if ( priv->phyNum == 0 ) {
  2146.          TLan_MiiReadReg( dev, phy, TLAN_TLPHY_CTL, &tctl );
  2147. if ( priv->aui ) {
  2148.                  tctl |= TLAN_TC_AUISEL;
  2149. } else { 
  2150.                  tctl &= ~TLAN_TC_AUISEL;
  2151. control = 0;
  2152. if ( priv->duplex == TLAN_DUPLEX_FULL ) {
  2153. control |= MII_GC_DUPLEX;
  2154. priv->tlanFullDuplex = TRUE;
  2155. }
  2156. if ( priv->speed == TLAN_SPEED_100 ) {
  2157. control |= MII_GC_SPEEDSEL;
  2158. }
  2159.         TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, control );
  2160. }
  2161.          TLan_MiiWriteReg( dev, phy, TLAN_TLPHY_CTL, tctl );
  2162. }
  2163. /* Wait for 2 sec to give the tranceiver time
  2164.  * to establish link.
  2165.  */
  2166. TLan_SetTimer( dev, (4*HZ), TLAN_TIMER_FINISH_RESET );
  2167. } /* TLan_PhyStartLink */
  2168. void TLan_PhyFinishAutoNeg( struct net_device *dev )
  2169. {
  2170. TLanPrivateInfo *priv = dev->priv;
  2171. u16 an_adv;
  2172. u16 an_lpa;
  2173. u16 data;
  2174. u16 mode;
  2175. u16 phy;
  2176. u16 status;
  2177. phy = priv->phy[priv->phyNum];
  2178. TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
  2179. udelay( 1000 );
  2180. TLan_MiiReadReg( dev, phy, MII_GEN_STS, &status );
  2181. if ( ! ( status & MII_GS_AUTOCMPLT ) ) {
  2182. /* Wait for 8 sec to give the process
  2183.  * more time.  Perhaps we should fail after a while.
  2184.  */
  2185.  if (!priv->neg_be_verbose++) {
  2186.  printk(KERN_INFO "TLAN:  Giving autonegotiation more time.n");
  2187.    printk(KERN_INFO "TLAN:  Please check that your adapter hasn");
  2188.    printk(KERN_INFO "TLAN:  been properly connected to a HUB or Switch.n");
  2189.  printk(KERN_INFO "TLAN:  Trying to establish link in the background...n");
  2190.  }
  2191. TLan_SetTimer( dev, (8*HZ), TLAN_TIMER_PHY_FINISH_AN );
  2192. return;
  2193. }
  2194. printk( "TLAN: %s: Autonegotiation complete.n", dev->name );
  2195. TLan_MiiReadReg( dev, phy, MII_AN_ADV, &an_adv );
  2196. TLan_MiiReadReg( dev, phy, MII_AN_LPA, &an_lpa );
  2197. mode = an_adv & an_lpa & 0x03E0;
  2198. if ( mode & 0x0100 ) {
  2199. priv->tlanFullDuplex = TRUE;
  2200. } else if ( ! ( mode & 0x0080 ) && ( mode & 0x0040 ) ) {
  2201. priv->tlanFullDuplex = TRUE;
  2202. }
  2203. if ( ( ! ( mode & 0x0180 ) ) && ( priv->adapter->flags & TLAN_ADAPTER_USE_INTERN_10 ) && ( priv->phyNum != 0 ) ) {
  2204. priv->phyNum = 0;
  2205. data = TLAN_NET_CFG_1FRAG | TLAN_NET_CFG_1CHAN | TLAN_NET_CFG_PHY_EN;
  2206. TLan_DioWrite16( dev->base_addr, TLAN_NET_CONFIG, data );
  2207. TLan_SetTimer( dev, (400*HZ/1000), TLAN_TIMER_PHY_PDOWN );
  2208. return;
  2209. }
  2210. if ( priv->phyNum == 0 ) {
  2211. if ( ( priv->duplex == TLAN_DUPLEX_FULL ) || ( an_adv & an_lpa & 0x0040 ) ) {
  2212. TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, MII_GC_AUTOENB | MII_GC_DUPLEX );
  2213. printk( "TLAN:  Starting internal PHY with FULL-DUPLEXn" );
  2214. } else {
  2215. TLan_MiiWriteReg( dev, phy, MII_GEN_CTL, MII_GC_AUTOENB );
  2216. printk( "TLAN:  Starting internal PHY with HALF-DUPLEXn" );
  2217. }
  2218. }
  2219. /* Wait for 100 ms.  No reason in partiticular.
  2220.  */
  2221. TLan_SetTimer( dev, (HZ/10), TLAN_TIMER_FINISH_RESET );
  2222. } /* TLan_PhyFinishAutoNeg */
  2223. #ifdef MONITOR
  2224.         /*********************************************************************
  2225.         *
  2226.         *      TLan_phyMonitor
  2227.         *
  2228.         *      Returns: 
  2229.         *              None
  2230.         *
  2231.         *      Params:
  2232.         *              dev             The device structure of this device.
  2233.         *
  2234.         *      
  2235.         *      This function monitors PHY condition by reading the status
  2236.         *      register via the MII bus. This can be used to give info
  2237.         *      about link changes (up/down), and possible switch to alternate
  2238.         *      media.
  2239.         *
  2240.         * ******************************************************************/
  2241. void TLan_PhyMonitor( struct net_device *dev )
  2242. {
  2243. TLanPrivateInfo *priv = dev->priv;
  2244. u16     phy;
  2245. u16     phy_status;
  2246. phy = priv->phy[priv->phyNum];
  2247.         /* Get PHY status register */
  2248.         TLan_MiiReadReg( dev, phy, MII_GEN_STS, &phy_status );
  2249.         /* Check if link has been lost */
  2250.         if (!(phy_status & MII_GS_LINK)) { 
  2251.          if (priv->link) {
  2252.       priv->link = 0;
  2253.               printk(KERN_DEBUG "TLAN: %s has lost linkn", dev->name);
  2254.               dev->flags &= ~IFF_RUNNING;
  2255.       TLan_SetTimer( dev, (2*HZ), TLAN_TIMER_LINK_BEAT );
  2256.       return;
  2257. }
  2258. }
  2259.         /* Link restablished? */
  2260.         if ((phy_status & MII_GS_LINK) && !priv->link) {
  2261.   priv->link = 1;
  2262.          printk(KERN_DEBUG "TLAN: %s has reestablished linkn", dev->name);
  2263.          dev->flags |= IFF_RUNNING;
  2264.         }
  2265. /* Setup a new monitor */
  2266. TLan_SetTimer( dev, (2*HZ), TLAN_TIMER_LINK_BEAT );
  2267. }
  2268. #endif /* MONITOR */
  2269. /*****************************************************************************
  2270. ******************************************************************************
  2271. ThunderLAN Driver MII Routines
  2272. These routines are based on the information in Chap. 2 of the
  2273. "ThunderLAN Programmer's Guide", pp. 15-24.
  2274. ******************************************************************************
  2275. *****************************************************************************/
  2276. /***************************************************************
  2277.  * TLan_MiiReadReg
  2278.  *
  2279.  * Returns:
  2280.  * 0 if ack received ok
  2281.  * 1 otherwise.
  2282.  *
  2283.  * Parms:
  2284.  * dev The device structure containing
  2285.  * The io address and interrupt count
  2286.  * for this device.
  2287.  * phy The address of the PHY to be queried.
  2288.  * reg The register whose contents are to be
  2289.  * retreived.
  2290.  * val A pointer to a variable to store the
  2291.  * retrieved value.
  2292.  *
  2293.  * This function uses the TLAN's MII bus to retreive the contents
  2294.  * of a given register on a PHY.  It sends the appropriate info
  2295.  * and then reads the 16-bit register value from the MII bus via
  2296.  * the TLAN SIO register.
  2297.  *
  2298.  **************************************************************/
  2299. int TLan_MiiReadReg( struct net_device *dev, u16 phy, u16 reg, u16 *val )
  2300. {
  2301. u8 nack;
  2302. u16 sio, tmp;
  2303.   u32 i;
  2304. int err;
  2305. int minten;
  2306. TLanPrivateInfo *priv = dev->priv;
  2307. unsigned long flags = 0;
  2308. err = FALSE;
  2309. outw(TLAN_NET_SIO, dev->base_addr + TLAN_DIO_ADR);
  2310. sio = dev->base_addr + TLAN_DIO_DATA + TLAN_NET_SIO;
  2311. if (!in_irq())
  2312. spin_lock_irqsave(&priv->lock, flags);
  2313. TLan_MiiSync(dev->base_addr);
  2314. minten = TLan_GetBit( TLAN_NET_SIO_MINTEN, sio );
  2315. if ( minten )
  2316. TLan_ClearBit(TLAN_NET_SIO_MINTEN, sio);
  2317. TLan_MiiSendData( dev->base_addr, 0x1, 2 ); /* Start ( 01b ) */
  2318. TLan_MiiSendData( dev->base_addr, 0x2, 2 ); /* Read  ( 10b ) */
  2319. TLan_MiiSendData( dev->base_addr, phy, 5 ); /* Device #      */
  2320. TLan_MiiSendData( dev->base_addr, reg, 5 ); /* Register #    */
  2321. TLan_ClearBit(TLAN_NET_SIO_MTXEN, sio); /* Change direction */
  2322. TLan_ClearBit(TLAN_NET_SIO_MCLK, sio); /* Clock Idle bit */
  2323. TLan_SetBit(TLAN_NET_SIO_MCLK, sio);
  2324. TLan_ClearBit(TLAN_NET_SIO_MCLK, sio); /* Wait 300ns */
  2325. nack = TLan_GetBit(TLAN_NET_SIO_MDATA, sio); /* Check for ACK */
  2326. TLan_SetBit(TLAN_NET_SIO_MCLK, sio); /* Finish ACK */
  2327. if (nack) { /* No ACK, so fake it */
  2328. for (i = 0; i < 16; i++) {
  2329. TLan_ClearBit(TLAN_NET_SIO_MCLK, sio);
  2330. TLan_SetBit(TLAN_NET_SIO_MCLK, sio);
  2331. }
  2332. tmp = 0xffff;
  2333. err = TRUE;
  2334. } else { /* ACK, so read data */
  2335. for (tmp = 0, i = 0x8000; i; i >>= 1) {
  2336. TLan_ClearBit(TLAN_NET_SIO_MCLK, sio);
  2337. if (TLan_GetBit(TLAN_NET_SIO_MDATA, sio))
  2338. tmp |= i;
  2339. TLan_SetBit(TLAN_NET_SIO_MCLK, sio);
  2340. }
  2341. }
  2342. TLan_ClearBit(TLAN_NET_SIO_MCLK, sio); /* Idle cycle */
  2343. TLan_SetBit(TLAN_NET_SIO_MCLK, sio);
  2344. if ( minten )
  2345. TLan_SetBit(TLAN_NET_SIO_MINTEN, sio);
  2346. *val = tmp;
  2347. if (!in_irq())
  2348. spin_unlock_irqrestore(&priv->lock, flags);
  2349. return err;
  2350. } /* TLan_MiiReadReg */
  2351. /***************************************************************
  2352.  * TLan_MiiSendData
  2353.  *
  2354.  * Returns:
  2355.  * Nothing
  2356.  * Parms:
  2357.  * base_port The base IO port of the adapter in
  2358.  * question.
  2359.  * dev The address of the PHY to be queried.
  2360.  * data The value to be placed on the MII bus.
  2361.  * num_bits The number of bits in data that are to
  2362.  * be placed on the MII bus.
  2363.  *
  2364.  * This function sends on sequence of bits on the MII
  2365.  * configuration bus.
  2366.  *
  2367.  **************************************************************/
  2368. void TLan_MiiSendData( u16 base_port, u32 data, unsigned num_bits )
  2369. {
  2370. u16 sio;
  2371. u32 i;
  2372. if ( num_bits == 0 )
  2373. return;
  2374. outw( TLAN_NET_SIO, base_port + TLAN_DIO_ADR );
  2375. sio = base_port + TLAN_DIO_DATA + TLAN_NET_SIO;
  2376. TLan_SetBit( TLAN_NET_SIO_MTXEN, sio );
  2377. for ( i = ( 0x1 << ( num_bits - 1 ) ); i; i >>= 1 ) {
  2378. TLan_ClearBit( TLAN_NET_SIO_MCLK, sio );
  2379. (void) TLan_GetBit( TLAN_NET_SIO_MCLK, sio );
  2380. if ( data & i )
  2381. TLan_SetBit( TLAN_NET_SIO_MDATA, sio );
  2382. else
  2383. TLan_ClearBit( TLAN_NET_SIO_MDATA, sio );
  2384. TLan_SetBit( TLAN_NET_SIO_MCLK, sio );
  2385. (void) TLan_GetBit( TLAN_NET_SIO_MCLK, sio );
  2386. }
  2387. } /* TLan_MiiSendData */
  2388. /***************************************************************
  2389.  * TLan_MiiSync
  2390.  *
  2391.  * Returns:
  2392.  * Nothing
  2393.  * Parms:
  2394.  * base_port The base IO port of the adapter in
  2395.  * question.
  2396.  *
  2397.  * This functions syncs all PHYs in terms of the MII configuration
  2398.  * bus.
  2399.  *
  2400.  **************************************************************/
  2401. void TLan_MiiSync( u16 base_port )
  2402. {
  2403. int i;
  2404. u16 sio;
  2405. outw( TLAN_NET_SIO, base_port + TLAN_DIO_ADR );
  2406. sio = base_port + TLAN_DIO_DATA + TLAN_NET_SIO;
  2407. TLan_ClearBit( TLAN_NET_SIO_MTXEN, sio );
  2408. for ( i = 0; i < 32; i++ ) {
  2409. TLan_ClearBit( TLAN_NET_SIO_MCLK, sio );
  2410. TLan_SetBit( TLAN_NET_SIO_MCLK, sio );
  2411. }
  2412. } /* TLan_MiiSync */
  2413. /***************************************************************
  2414.  * TLan_MiiWriteReg
  2415.  *
  2416.  * Returns:
  2417.  * Nothing
  2418.  * Parms:
  2419.  * dev The device structure for the device
  2420.  * to write to.
  2421.  * phy The address of the PHY to be written to.
  2422.  * reg The register whose contents are to be
  2423.  * written.
  2424.  * val The value to be written to the register.
  2425.  *
  2426.  * This function uses the TLAN's MII bus to write the contents of a
  2427.  * given register on a PHY.  It sends the appropriate info and then
  2428.  * writes the 16-bit register value from the MII configuration bus
  2429.  * via the TLAN SIO register.
  2430.  *
  2431.  **************************************************************/
  2432. void TLan_MiiWriteReg( struct net_device *dev, u16 phy, u16 reg, u16 val )
  2433. {
  2434. u16 sio;
  2435. int minten;
  2436. unsigned long flags = 0;
  2437. TLanPrivateInfo *priv = dev->priv;
  2438. outw(TLAN_NET_SIO, dev->base_addr + TLAN_DIO_ADR);
  2439. sio = dev->base_addr + TLAN_DIO_DATA + TLAN_NET_SIO;
  2440. if (!in_irq())
  2441. spin_lock_irqsave(&priv->lock, flags);
  2442. TLan_MiiSync( dev->base_addr );
  2443. minten = TLan_GetBit( TLAN_NET_SIO_MINTEN, sio );
  2444. if ( minten )
  2445. TLan_ClearBit( TLAN_NET_SIO_MINTEN, sio );
  2446. TLan_MiiSendData( dev->base_addr, 0x1, 2 ); /* Start ( 01b ) */
  2447. TLan_MiiSendData( dev->base_addr, 0x1, 2 ); /* Write ( 01b ) */
  2448. TLan_MiiSendData( dev->base_addr, phy, 5 ); /* Device #      */
  2449. TLan_MiiSendData( dev->base_addr, reg, 5 ); /* Register #    */
  2450. TLan_MiiSendData( dev->base_addr, 0x2, 2 ); /* Send ACK */
  2451. TLan_MiiSendData( dev->base_addr, val, 16 ); /* Send Data */
  2452. TLan_ClearBit( TLAN_NET_SIO_MCLK, sio ); /* Idle cycle */
  2453. TLan_SetBit( TLAN_NET_SIO_MCLK, sio );
  2454. if ( minten )
  2455. TLan_SetBit( TLAN_NET_SIO_MINTEN, sio );
  2456. if (!in_irq())
  2457. spin_unlock_irqrestore(&priv->lock, flags);
  2458. } /* TLan_MiiWriteReg */
  2459. /*****************************************************************************
  2460. ******************************************************************************
  2461. ThunderLAN Driver Eeprom routines
  2462. The Compaq Netelligent 10 and 10/100 cards use a Microchip 24C02A
  2463. EEPROM.  These functions are based on information in Microchip's
  2464. data sheet.  I don't know how well this functions will work with
  2465. other EEPROMs.
  2466. ******************************************************************************
  2467. *****************************************************************************/
  2468. /***************************************************************
  2469.  * TLan_EeSendStart
  2470.  *
  2471.  * Returns:
  2472.  * Nothing
  2473.  * Parms:
  2474.  * io_base The IO port base address for the
  2475.  * TLAN device with the EEPROM to
  2476.  * use.
  2477.  *
  2478.  * This function sends a start cycle to an EEPROM attached
  2479.  * to a TLAN chip.
  2480.  *
  2481.  **************************************************************/
  2482. void TLan_EeSendStart( u16 io_base )
  2483. {
  2484. u16 sio;
  2485. outw( TLAN_NET_SIO, io_base + TLAN_DIO_ADR );
  2486. sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO;
  2487. TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
  2488. TLan_SetBit( TLAN_NET_SIO_EDATA, sio );
  2489. TLan_SetBit( TLAN_NET_SIO_ETXEN, sio );
  2490. TLan_ClearBit( TLAN_NET_SIO_EDATA, sio );
  2491. TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
  2492. } /* TLan_EeSendStart */
  2493. /***************************************************************
  2494.  * TLan_EeSendByte
  2495.  *
  2496.  * Returns:
  2497.  * If the correct ack was received, 0, otherwise 1
  2498.  * Parms: io_base The IO port base address for the
  2499.  * TLAN device with the EEPROM to
  2500.  * use.
  2501.  * data The 8 bits of information to
  2502.  * send to the EEPROM.
  2503.  * stop If TLAN_EEPROM_STOP is passed, a
  2504.  * stop cycle is sent after the
  2505.  * byte is sent after the ack is
  2506.  * read.
  2507.  *
  2508.  * This function sends a byte on the serial EEPROM line,
  2509.  * driving the clock to send each bit. The function then
  2510.  * reverses transmission direction and reads an acknowledge
  2511.  * bit.
  2512.  *
  2513.  **************************************************************/
  2514. int TLan_EeSendByte( u16 io_base, u8 data, int stop )
  2515. {
  2516. int err;
  2517. u8 place;
  2518. u16 sio;
  2519. outw( TLAN_NET_SIO, io_base + TLAN_DIO_ADR );
  2520. sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO;
  2521. /* Assume clock is low, tx is enabled; */
  2522. for ( place = 0x80; place != 0; place >>= 1 ) {
  2523. if ( place & data )
  2524. TLan_SetBit( TLAN_NET_SIO_EDATA, sio );
  2525. else
  2526. TLan_ClearBit( TLAN_NET_SIO_EDATA, sio );
  2527. TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
  2528. TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
  2529. }
  2530. TLan_ClearBit( TLAN_NET_SIO_ETXEN, sio );
  2531. TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
  2532. err = TLan_GetBit( TLAN_NET_SIO_EDATA, sio );
  2533. TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
  2534. TLan_SetBit( TLAN_NET_SIO_ETXEN, sio );
  2535. if ( ( ! err ) && stop ) {
  2536. TLan_ClearBit( TLAN_NET_SIO_EDATA, sio ); /* STOP, raise data while clock is high */
  2537. TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
  2538. TLan_SetBit( TLAN_NET_SIO_EDATA, sio );
  2539. }
  2540. return ( err );
  2541. } /* TLan_EeSendByte */
  2542. /***************************************************************
  2543.  * TLan_EeReceiveByte
  2544.  *
  2545.  * Returns:
  2546.  * Nothing
  2547.  * Parms:
  2548.  * io_base The IO port base address for the
  2549.  * TLAN device with the EEPROM to
  2550.  * use.
  2551.  * data An address to a char to hold the
  2552.  * data sent from the EEPROM.
  2553.  * stop If TLAN_EEPROM_STOP is passed, a
  2554.  * stop cycle is sent after the
  2555.  * byte is received, and no ack is
  2556.  * sent.
  2557.  *
  2558.  * This function receives 8 bits of data from the EEPROM
  2559.  * over the serial link.  It then sends and ack bit, or no
  2560.  * ack and a stop bit.  This function is used to retrieve
  2561.  * data after the address of a byte in the EEPROM has been
  2562.  * sent.
  2563.  *
  2564.  **************************************************************/
  2565. void TLan_EeReceiveByte( u16 io_base, u8 *data, int stop )
  2566. {
  2567. u8  place;
  2568. u16 sio;
  2569. outw( TLAN_NET_SIO, io_base + TLAN_DIO_ADR );
  2570. sio = io_base + TLAN_DIO_DATA + TLAN_NET_SIO;
  2571. *data = 0;
  2572. /* Assume clock is low, tx is enabled; */
  2573. TLan_ClearBit( TLAN_NET_SIO_ETXEN, sio );
  2574. for ( place = 0x80; place; place >>= 1 ) {
  2575. TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
  2576. if ( TLan_GetBit( TLAN_NET_SIO_EDATA, sio ) )
  2577. *data |= place;
  2578. TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
  2579. }
  2580. TLan_SetBit( TLAN_NET_SIO_ETXEN, sio );
  2581. if ( ! stop ) {
  2582. TLan_ClearBit( TLAN_NET_SIO_EDATA, sio ); /* Ack = 0 */
  2583. TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
  2584. TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
  2585. } else {
  2586. TLan_SetBit( TLAN_NET_SIO_EDATA, sio ); /* No ack = 1 (?) */
  2587. TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
  2588. TLan_ClearBit( TLAN_NET_SIO_ECLOK, sio );
  2589. TLan_ClearBit( TLAN_NET_SIO_EDATA, sio ); /* STOP, raise data while clock is high */
  2590. TLan_SetBit( TLAN_NET_SIO_ECLOK, sio );
  2591. TLan_SetBit( TLAN_NET_SIO_EDATA, sio );
  2592. }
  2593. } /* TLan_EeReceiveByte */
  2594. /***************************************************************
  2595.  * TLan_EeReadByte
  2596.  *
  2597.  * Returns:
  2598.  * No error = 0, else, the stage at which the error
  2599.  * occurred.
  2600.  * Parms:
  2601.  * io_base The IO port base address for the
  2602.  * TLAN device with the EEPROM to
  2603.  * use.
  2604.  * ee_addr The address of the byte in the
  2605.  * EEPROM whose contents are to be
  2606.  * retrieved.
  2607.  * data An address to a char to hold the
  2608.  * data obtained from the EEPROM.
  2609.  *
  2610.  * This function reads a byte of information from an byte
  2611.  * cell in the EEPROM.
  2612.  *
  2613.  **************************************************************/
  2614. int TLan_EeReadByte( struct net_device *dev, u8 ee_addr, u8 *data )
  2615. {
  2616. int err;
  2617. TLanPrivateInfo *priv = dev->priv;
  2618. unsigned long flags = 0;
  2619. int ret=0;
  2620. spin_lock_irqsave(&priv->lock, flags);
  2621. TLan_EeSendStart( dev->base_addr );
  2622. err = TLan_EeSendByte( dev->base_addr, 0xA0, TLAN_EEPROM_ACK );
  2623. if (err)
  2624. {
  2625. ret=1;
  2626. goto fail;
  2627. }
  2628. err = TLan_EeSendByte( dev->base_addr, ee_addr, TLAN_EEPROM_ACK );
  2629. if (err)
  2630. {
  2631. ret=2;
  2632. goto fail;
  2633. }
  2634. TLan_EeSendStart( dev->base_addr );
  2635. err = TLan_EeSendByte( dev->base_addr, 0xA1, TLAN_EEPROM_ACK );
  2636. if (err)
  2637. {
  2638. ret=3;
  2639. goto fail;
  2640. }
  2641. TLan_EeReceiveByte( dev->base_addr, data, TLAN_EEPROM_STOP );
  2642. fail:
  2643. spin_unlock_irqrestore(&priv->lock, flags);
  2644. return ret;
  2645. } /* TLan_EeReadByte */