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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* via-rhine.c: A Linux Ethernet device driver for VIA Rhine family chips. */
  2. /*
  3. Written 1998-2001 by Donald Becker.
  4. This software may be used and distributed according to the terms of
  5. the GNU General Public License (GPL), incorporated herein by reference.
  6. Drivers based on or derived from this code fall under the GPL and must
  7. retain the authorship, copyright and license notice.  This file is not
  8. a complete program and may only be used when the entire operating
  9. system is licensed under the GPL.
  10. This driver is designed for the VIA VT86c100A Rhine-II PCI Fast Ethernet
  11. controller.  It also works with the older 3043 Rhine-I chip.
  12. The author may be reached as becker@scyld.com, or C/O
  13. Scyld Computing Corporation
  14. 410 Severn Ave., Suite 210
  15. Annapolis MD 21403
  16. This driver contains some changes from the original Donald Becker
  17. version. He may or may not be interested in bug reports on this
  18. code. You can find his versions at:
  19. http://www.scyld.com/network/via-rhine.html
  20. Linux kernel version history:
  21. LK1.1.0:
  22. - Jeff Garzik: softnet 'n stuff
  23. LK1.1.1:
  24. - Justin Guyett: softnet and locking fixes
  25. - Jeff Garzik: use PCI interface
  26. LK1.1.2:
  27. - Urban Widmark: minor cleanups, merges from Becker 1.03a/1.04 versions
  28. LK1.1.3:
  29. - Urban Widmark: use PCI DMA interface (with thanks to the eepro100.c
  30.  code) update "Theory of Operation" with
  31.  softnet/locking changes
  32. - Dave Miller: PCI DMA and endian fixups
  33. - Jeff Garzik: MOD_xxx race fixes, updated PCI resource allocation
  34. LK1.1.4:
  35. - Urban Widmark: fix gcc 2.95.2 problem and
  36.                  remove writel's to fixed address 0x7c
  37. LK1.1.5:
  38. - Urban Widmark: mdio locking, bounce buffer changes
  39.                  merges from Beckers 1.05 version
  40.                  added netif_running_on/off support
  41. LK1.1.6:
  42. - Urban Widmark: merges from Beckers 1.08b version (VT6102 + mdio)
  43.                  set netif_running_on/off on startup, del_timer_sync
  44. LK1.1.7:
  45. - Manfred Spraul: added reset into tx_timeout
  46. LK1.1.9:
  47. - Urban Widmark: merges from Beckers 1.10 version
  48.                  (media selection + eeprom reload)
  49. - David Vrabel:  merges from D-Link "1.11" version
  50.                  (disable WOL and PME on startup)
  51. LK1.1.10:
  52. - Manfred Spraul: use "singlecopy" for unaligned buffers
  53.                   don't allocate bounce buffers for !ReqTxAlign cards
  54. LK1.1.11:
  55. - David Woodhouse: Set dev->base_addr before the first time we call
  56.    wait_for_reset(). It's a lot happier that way.
  57.    Free np->tx_bufs only if we actually allocated it.
  58. LK1.1.12:
  59. - Martin Eriksson: Allow Memory-Mapped IO to be enabled.
  60. LK1.1.13 (jgarzik):
  61. - Add ethtool support
  62. - Replace some MII-related magic numbers with constants
  63. */
  64. #define DRV_NAME "via-rhine"
  65. #define DRV_VERSION "1.1.13"
  66. #define DRV_RELDATE "Nov-17-2001"
  67. /* A few user-configurable values.
  68.    These may be modified when a driver module is loaded. */
  69. static int debug = 1; /* 1 normal messages, 0 quiet .. 7 verbose. */
  70. static int max_interrupt_work = 20;
  71. /* Set the copy breakpoint for the copy-only-tiny-frames scheme.
  72.    Setting to > 1518 effectively disables this feature. */
  73. static int rx_copybreak;
  74. /* Used to pass the media type, etc.
  75.    Both 'options[]' and 'full_duplex[]' should exist for driver
  76.    interoperability.
  77.    The media type is usually passed in 'options[]'.
  78.    The default is autonegotation for speed and duplex.
  79.      This should rarely be overridden.
  80.    Use option values 0x10/0x20 for 10Mbps, 0x100,0x200 for 100Mbps.
  81.    Use option values 0x10 and 0x100 for forcing half duplex fixed speed.
  82.    Use option values 0x20 and 0x200 for forcing full duplex operation.
  83. */
  84. #define MAX_UNITS 8 /* More are supported, limit only on options */
  85. static int options[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  86. static int full_duplex[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  87. /* Maximum number of multicast addresses to filter (vs. rx-all-multicast).
  88.    The Rhine has a 64 element 8390-like hash table.  */
  89. static const int multicast_filter_limit = 32;
  90. /* Operational parameters that are set at compile time. */
  91. /* Keep the ring sizes a power of two for compile efficiency.
  92.    The compiler will convert <unsigned>'%'<2^N> into a bit mask.
  93.    Making the Tx ring too large decreases the effectiveness of channel
  94.    bonding and packet priority.
  95.    There are no ill effects from too-large receive rings. */
  96. #define TX_RING_SIZE 16
  97. #define TX_QUEUE_LEN 10 /* Limit ring entries actually used.  */
  98. #define RX_RING_SIZE 16
  99. /* Operational parameters that usually are not changed. */
  100. /* Time in jiffies before concluding the transmitter is hung. */
  101. #define TX_TIMEOUT  (2*HZ)
  102. #define PKT_BUF_SZ 1536 /* Size of each temporary Rx buffer.*/
  103. /* max time out delay time */
  104. #define W_MAX_TIMEOUT 0x0FFFU
  105. #if !defined(__OPTIMIZE__)  ||  !defined(__KERNEL__)
  106. #warning  You must compile this file with the correct options!
  107. #warning  See the last lines of the source file.
  108. #error  You must compile this driver with "-O".
  109. #endif
  110. #include <linux/module.h>
  111. #include <linux/kernel.h>
  112. #include <linux/string.h>
  113. #include <linux/timer.h>
  114. #include <linux/errno.h>
  115. #include <linux/ioport.h>
  116. #include <linux/slab.h>
  117. #include <linux/interrupt.h>
  118. #include <linux/pci.h>
  119. #include <linux/netdevice.h>
  120. #include <linux/etherdevice.h>
  121. #include <linux/skbuff.h>
  122. #include <linux/init.h>
  123. #include <linux/delay.h>
  124. #include <linux/mii.h>
  125. #include <linux/ethtool.h>
  126. #include <asm/processor.h> /* Processor type for cache alignment. */
  127. #include <asm/bitops.h>
  128. #include <asm/io.h>
  129. #include <asm/irq.h>
  130. #include <asm/uaccess.h>
  131. /* These identify the driver base version and may not be removed. */
  132. static char version[] __devinitdata =
  133. KERN_INFO DRV_NAME ".c:v1.10-LK" DRV_VERSION "  " DRV_RELDATE "  Written by Donald Beckern"
  134. KERN_INFO "  http://www.scyld.com/network/via-rhine.htmln";
  135. static char shortname[] = DRV_NAME;
  136. /* This driver was written to use PCI memory space, however most versions
  137.    of the Rhine only work correctly with I/O space accesses. */
  138. #ifdef CONFIG_VIA_RHINE_MMIO
  139. #define USE_MEM
  140. #else
  141. #define USE_IO
  142. #undef readb
  143. #undef readw
  144. #undef readl
  145. #undef writeb
  146. #undef writew
  147. #undef writel
  148. #define readb inb
  149. #define readw inw
  150. #define readl inl
  151. #define writeb outb
  152. #define writew outw
  153. #define writel outl
  154. #endif
  155. MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
  156. MODULE_DESCRIPTION("VIA Rhine PCI Fast Ethernet driver");
  157. MODULE_LICENSE("GPL");
  158. MODULE_PARM(max_interrupt_work, "i");
  159. MODULE_PARM(debug, "i");
  160. MODULE_PARM(rx_copybreak, "i");
  161. MODULE_PARM(options, "1-" __MODULE_STRING(MAX_UNITS) "i");
  162. MODULE_PARM(full_duplex, "1-" __MODULE_STRING(MAX_UNITS) "i");
  163. MODULE_PARM_DESC(max_interrupt_work, "VIA Rhine maximum events handled per interrupt");
  164. MODULE_PARM_DESC(debug, "VIA Rhine debug level (0-7)");
  165. MODULE_PARM_DESC(rx_copybreak, "VIA Rhine copy breakpoint for copy-only-tiny-frames");
  166. MODULE_PARM_DESC(options, "VIA Rhine: Bits 0-3: media type, bit 17: full duplex");
  167. MODULE_PARM_DESC(full_duplex, "VIA Rhine full duplex setting(s) (1)");
  168. /*
  169. Theory of Operation
  170. I. Board Compatibility
  171. This driver is designed for the VIA 86c100A Rhine-II PCI Fast Ethernet
  172. controller.
  173. II. Board-specific settings
  174. Boards with this chip are functional only in a bus-master PCI slot.
  175. Many operational settings are loaded from the EEPROM to the Config word at
  176. offset 0x78.  This driver assumes that they are correct.
  177. If this driver is compiled to use PCI memory space operations the EEPROM
  178. must be configured to enable memory ops.
  179. III. Driver operation
  180. IIIa. Ring buffers
  181. This driver uses two statically allocated fixed-size descriptor lists
  182. formed into rings by a branch from the final descriptor to the beginning of
  183. the list.  The ring sizes are set at compile time by RX/TX_RING_SIZE.
  184. IIIb/c. Transmit/Receive Structure
  185. This driver attempts to use a zero-copy receive and transmit scheme.
  186. Alas, all data buffers are required to start on a 32 bit boundary, so
  187. the driver must often copy transmit packets into bounce buffers.
  188. The driver allocates full frame size skbuffs for the Rx ring buffers at
  189. open() time and passes the skb->data field to the chip as receive data
  190. buffers.  When an incoming frame is less than RX_COPYBREAK bytes long,
  191. a fresh skbuff is allocated and the frame is copied to the new skbuff.
  192. When the incoming frame is larger, the skbuff is passed directly up the
  193. protocol stack.  Buffers consumed this way are replaced by newly allocated
  194. skbuffs in the last phase of via_rhine_rx().
  195. The RX_COPYBREAK value is chosen to trade-off the memory wasted by
  196. using a full-sized skbuff for small frames vs. the copying costs of larger
  197. frames.  New boards are typically used in generously configured machines
  198. and the underfilled buffers have negligible impact compared to the benefit of
  199. a single allocation size, so the default value of zero results in never
  200. copying packets.  When copying is done, the cost is usually mitigated by using
  201. a combined copy/checksum routine.  Copying also preloads the cache, which is
  202. most useful with small frames.
  203. Since the VIA chips are only able to transfer data to buffers on 32 bit
  204. boundaries, the IP header at offset 14 in an ethernet frame isn't
  205. longword aligned for further processing.  Copying these unaligned buffers
  206. has the beneficial effect of 16-byte aligning the IP header.
  207. IIId. Synchronization
  208. The driver runs as two independent, single-threaded flows of control.  One
  209. is the send-packet routine, which enforces single-threaded use by the
  210. dev->priv->lock spinlock. The other thread is the interrupt handler, which 
  211. is single threaded by the hardware and interrupt handling software.
  212. The send packet thread has partial control over the Tx ring. It locks the 
  213. dev->priv->lock whenever it's queuing a Tx packet. If the next slot in the ring
  214. is not available it stops the transmit queue by calling netif_stop_queue.
  215. The interrupt handler has exclusive control over the Rx ring and records stats
  216. from the Tx ring.  After reaping the stats, it marks the Tx queue entry as
  217. empty by incrementing the dirty_tx mark. If at least half of the entries in
  218. the Rx ring are available the transmit queue is woken up if it was stopped.
  219. IV. Notes
  220. IVb. References
  221. Preliminary VT86C100A manual from http://www.via.com.tw/
  222. http://www.scyld.com/expert/100mbps.html
  223. http://www.scyld.com/expert/NWay.html
  224. ftp://ftp.via.com.tw/public/lan/Products/NIC/VT86C100A/Datasheet/VT86C100A03.pdf
  225. ftp://ftp.via.com.tw/public/lan/Products/NIC/VT6102/Datasheet/VT6102_021.PDF
  226. IVc. Errata
  227. The VT86C100A manual is not reliable information.
  228. The 3043 chip does not handle unaligned transmit or receive buffers, resulting
  229. in significant performance degradation for bounce buffer copies on transmit
  230. and unaligned IP headers on receive.
  231. The chip does not pad to minimum transmit length.
  232. */
  233. /* This table drives the PCI probe routines.  It's mostly boilerplate in all
  234.    of the drivers, and will likely be provided by some future kernel.
  235.    Note the matching code -- the first table entry matchs all 56** cards but
  236.    second only the 1234 card.
  237. */
  238. enum pci_flags_bit {
  239. PCI_USES_IO=1, PCI_USES_MEM=2, PCI_USES_MASTER=4,
  240. PCI_ADDR0=0x10<<0, PCI_ADDR1=0x10<<1, PCI_ADDR2=0x10<<2, PCI_ADDR3=0x10<<3,
  241. };
  242. enum via_rhine_chips {
  243. VT86C100A = 0,
  244. VT6102,
  245. VT3043,
  246. };
  247. struct via_rhine_chip_info {
  248. const char *name;
  249. u16 pci_flags;
  250. int io_size;
  251. int drv_flags;
  252. };
  253. enum chip_capability_flags {
  254. CanHaveMII=1, HasESIPhy=2, HasDavicomPhy=4,
  255. ReqTxAlign=0x10, HasWOL=0x20, };
  256. #ifdef USE_MEM
  257. #define RHINE_IOTYPE (PCI_USES_MEM | PCI_USES_MASTER | PCI_ADDR1)
  258. #else
  259. #define RHINE_IOTYPE (PCI_USES_IO  | PCI_USES_MASTER | PCI_ADDR0)
  260. #endif
  261. /* directly indexed by enum via_rhine_chips, above */
  262. static struct via_rhine_chip_info via_rhine_chip_info[] __devinitdata =
  263. {
  264. { "VIA VT86C100A Rhine", RHINE_IOTYPE, 128,
  265.   CanHaveMII | ReqTxAlign },
  266. { "VIA VT6102 Rhine-II", RHINE_IOTYPE, 256,
  267.   CanHaveMII | HasWOL },
  268. { "VIA VT3043 Rhine",    RHINE_IOTYPE, 128,
  269.   CanHaveMII | ReqTxAlign }
  270. };
  271. static struct pci_device_id via_rhine_pci_tbl[] __devinitdata =
  272. {
  273. {0x1106, 0x6100, PCI_ANY_ID, PCI_ANY_ID, 0, 0, VT86C100A},
  274. {0x1106, 0x3065, PCI_ANY_ID, PCI_ANY_ID, 0, 0, VT6102},
  275. {0x1106, 0x3043, PCI_ANY_ID, PCI_ANY_ID, 0, 0, VT3043},
  276. {0,} /* terminate list */
  277. };
  278. MODULE_DEVICE_TABLE(pci, via_rhine_pci_tbl);
  279. /* Offsets to the device registers. */
  280. enum register_offsets {
  281. StationAddr=0x00, RxConfig=0x06, TxConfig=0x07, ChipCmd=0x08,
  282. IntrStatus=0x0C, IntrEnable=0x0E,
  283. MulticastFilter0=0x10, MulticastFilter1=0x14,
  284. RxRingPtr=0x18, TxRingPtr=0x1C, GFIFOTest=0x54,
  285. MIIPhyAddr=0x6C, MIIStatus=0x6D, PCIBusConfig=0x6E,
  286. MIICmd=0x70, MIIRegAddr=0x71, MIIData=0x72, MACRegEEcsr=0x74,
  287. ConfigA=0x78, ConfigB=0x79, ConfigC=0x7A, ConfigD=0x7B,
  288. RxMissed=0x7C, RxCRCErrs=0x7E,
  289. StickyHW=0x83, WOLcrClr=0xA4, WOLcgClr=0xA7, PwrcsrClr=0xAC,
  290. };
  291. #ifdef USE_MEM
  292. /* Registers we check that mmio and reg are the same. */
  293. int mmio_verify_registers[] = {
  294. RxConfig, TxConfig, IntrEnable, ConfigA, ConfigB, ConfigC, ConfigD,
  295. 0
  296. };
  297. #endif
  298. /* Bits in the interrupt status/mask registers. */
  299. enum intr_status_bits {
  300. IntrRxDone=0x0001, IntrRxErr=0x0004, IntrRxEmpty=0x0020,
  301. IntrTxDone=0x0002, IntrTxAbort=0x0008, IntrTxUnderrun=0x0010,
  302. IntrPCIErr=0x0040,
  303. IntrStatsMax=0x0080, IntrRxEarly=0x0100, IntrMIIChange=0x0200,
  304. IntrRxOverflow=0x0400, IntrRxDropped=0x0800, IntrRxNoBuf=0x1000,
  305. IntrTxAborted=0x2000, IntrLinkChange=0x4000,
  306. IntrRxWakeUp=0x8000,
  307. IntrNormalSummary=0x0003, IntrAbnormalSummary=0xC260,
  308. };
  309. /* MII interface, status flags.
  310.    Not to be confused with the MIIStatus register ... */
  311. enum mii_status_bits {
  312. MIICap100T4 = 0x8000,
  313. MIICap10100HdFd = 0x7800,
  314. MIIPreambleSupr = 0x0040,
  315. MIIAutoNegCompleted = 0x0020,
  316. MIIRemoteFault = 0x0010,
  317. MIICapAutoNeg = 0x0008,
  318. MIILink = 0x0004,
  319. MIIJabber = 0x0002,
  320. MIIExtended = 0x0001
  321. };
  322. /* The Rx and Tx buffer descriptors. */
  323. struct rx_desc {
  324. s32 rx_status;
  325. u32 desc_length;
  326. u32 addr;
  327. u32 next_desc;
  328. };
  329. struct tx_desc {
  330. s32 tx_status;
  331. u32 desc_length;
  332. u32 addr;
  333. u32 next_desc;
  334. };
  335. /* Bits in *_desc.status */
  336. enum rx_status_bits {
  337. RxOK=0x8000, RxWholePkt=0x0300, RxErr=0x008F
  338. };
  339. enum desc_status_bits {
  340. DescOwn=0x80000000, DescEndPacket=0x4000, DescIntr=0x1000,
  341. };
  342. /* Bits in ChipCmd. */
  343. enum chip_cmd_bits {
  344. CmdInit=0x0001, CmdStart=0x0002, CmdStop=0x0004, CmdRxOn=0x0008,
  345. CmdTxOn=0x0010, CmdTxDemand=0x0020, CmdRxDemand=0x0040,
  346. CmdEarlyRx=0x0100, CmdEarlyTx=0x0200, CmdFDuplex=0x0400,
  347. CmdNoTxPoll=0x0800, CmdReset=0x8000,
  348. };
  349. #define MAX_MII_CNT 4
  350. struct netdev_private {
  351. /* Descriptor rings */
  352. struct rx_desc *rx_ring;
  353. struct tx_desc *tx_ring;
  354. dma_addr_t rx_ring_dma;
  355. dma_addr_t tx_ring_dma;
  356. /* The addresses of receive-in-place skbuffs. */
  357. struct sk_buff *rx_skbuff[RX_RING_SIZE];
  358. dma_addr_t rx_skbuff_dma[RX_RING_SIZE];
  359. /* The saved address of a sent-in-place packet/buffer, for later free(). */
  360. struct sk_buff *tx_skbuff[TX_RING_SIZE];
  361. dma_addr_t tx_skbuff_dma[TX_RING_SIZE];
  362. /* Tx bounce buffers */
  363. unsigned char *tx_buf[TX_RING_SIZE];
  364. unsigned char *tx_bufs;
  365. dma_addr_t tx_bufs_dma;
  366. struct pci_dev *pdev;
  367. struct net_device_stats stats;
  368. struct timer_list timer; /* Media monitoring timer. */
  369. spinlock_t lock;
  370. /* Frequently used values: keep some adjacent for cache effect. */
  371. int chip_id, drv_flags;
  372. struct rx_desc *rx_head_desc;
  373. unsigned int cur_rx, dirty_rx; /* Producer/consumer ring indices */
  374. unsigned int cur_tx, dirty_tx;
  375. unsigned int rx_buf_sz; /* Based on MTU+slack. */
  376. u16 chip_cmd; /* Current setting for ChipCmd */
  377. /* These values are keep track of the transceiver/media in use. */
  378. unsigned int full_duplex:1; /* Full-duplex operation requested. */
  379. unsigned int duplex_lock:1;
  380. unsigned int default_port:4; /* Last dev->if_port value. */
  381. u8 tx_thresh, rx_thresh;
  382. /* MII transceiver section. */
  383. u16 advertising; /* NWay media advertisement */
  384. unsigned char phys[MAX_MII_CNT]; /* MII device addresses. */
  385. unsigned int mii_cnt; /* number of MIIs found, but only the first one is used */
  386. u16 mii_status; /* last read MII status */
  387. struct mii_if_info mii_if;
  388. };
  389. static int  mdio_read(struct net_device *dev, int phy_id, int location);
  390. static void mdio_write(struct net_device *dev, int phy_id, int location, int value);
  391. static int  via_rhine_open(struct net_device *dev);
  392. static void via_rhine_check_duplex(struct net_device *dev);
  393. static void via_rhine_timer(unsigned long data);
  394. static void via_rhine_tx_timeout(struct net_device *dev);
  395. static int  via_rhine_start_tx(struct sk_buff *skb, struct net_device *dev);
  396. static void via_rhine_interrupt(int irq, void *dev_instance, struct pt_regs *regs);
  397. static void via_rhine_tx(struct net_device *dev);
  398. static void via_rhine_rx(struct net_device *dev);
  399. static void via_rhine_error(struct net_device *dev, int intr_status);
  400. static void via_rhine_set_rx_mode(struct net_device *dev);
  401. static struct net_device_stats *via_rhine_get_stats(struct net_device *dev);
  402. static int via_rhine_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  403. static int  via_rhine_close(struct net_device *dev);
  404. static inline void clear_tally_counters(long ioaddr);
  405. static void wait_for_reset(struct net_device *dev, char *name)
  406. {
  407. struct netdev_private *np = dev->priv;
  408. long ioaddr = dev->base_addr;
  409. int chip_id = np->chip_id;
  410. int i;
  411. /* 3043 may need long delay after reset (dlink) */
  412. if (chip_id == VT3043 || chip_id == VT86C100A)
  413. udelay(100);
  414. i = 0;
  415. do {
  416. udelay(5);
  417. i++;
  418. if(i > 2000) {
  419. printk(KERN_ERR "%s: reset did not complete in 10 ms.n", name);
  420. break;
  421. }
  422. } while(readw(ioaddr + ChipCmd) & CmdReset);
  423. if (debug > 1)
  424. printk(KERN_INFO "%s: reset finished after %d microseconds.n",
  425.    name, 5*i);
  426. }
  427. #ifdef USE_MEM
  428. static void __devinit enable_mmio(long ioaddr, int chip_id)
  429. {
  430. int n;
  431. if (chip_id == VT3043 || chip_id == VT86C100A) {
  432. /* More recent docs say that this bit is reserved ... */
  433. n = inb(ioaddr + ConfigA) | 0x20;
  434. outb(n, ioaddr + ConfigA);
  435. } else if (chip_id == VT6102) {
  436. n = inb(ioaddr + ConfigD) | 0x80;
  437. outb(n, ioaddr + ConfigD);
  438. }
  439. }
  440. #endif
  441. static void __devinit reload_eeprom(long ioaddr)
  442. {
  443. int i;
  444. outb(0x20, ioaddr + MACRegEEcsr);
  445. /* Typically 2 cycles to reload. */
  446. for (i = 0; i < 150; i++)
  447. if (! (inb(ioaddr + MACRegEEcsr) & 0x20))
  448. break;
  449. }
  450. static int __devinit via_rhine_init_one (struct pci_dev *pdev,
  451.  const struct pci_device_id *ent)
  452. {
  453. struct net_device *dev;
  454. struct netdev_private *np;
  455. int i, option;
  456. int chip_id = (int) ent->driver_data;
  457. static int card_idx = -1;
  458. long ioaddr;
  459. long memaddr;
  460. int io_size;
  461. int pci_flags;
  462. #ifdef USE_MEM
  463. long ioaddr0;
  464. #endif
  465. /* when built into the kernel, we only print version if device is found */
  466. #ifndef MODULE
  467. static int printed_version;
  468. if (!printed_version++)
  469. printk(version);
  470. #endif
  471. card_idx++;
  472. option = card_idx < MAX_UNITS ? options[card_idx] : 0;
  473. io_size = via_rhine_chip_info[chip_id].io_size;
  474. pci_flags = via_rhine_chip_info[chip_id].pci_flags;
  475. if (pci_enable_device (pdev))
  476. goto err_out;
  477. /* this should always be supported */
  478. if (pci_set_dma_mask(pdev, 0xffffffff)) {
  479. printk(KERN_ERR "32-bit PCI DMA addresses not supported by the card!?n");
  480. goto err_out;
  481. }
  482. /* sanity check */
  483. if ((pci_resource_len (pdev, 0) < io_size) ||
  484.     (pci_resource_len (pdev, 1) < io_size)) {
  485. printk (KERN_ERR "Insufficient PCI resources, abortingn");
  486. goto err_out;
  487. }
  488. ioaddr = pci_resource_start (pdev, 0);
  489. memaddr = pci_resource_start (pdev, 1);
  490. if (pci_flags & PCI_USES_MASTER)
  491. pci_set_master (pdev);
  492. dev = alloc_etherdev(sizeof(*np));
  493. if (dev == NULL) {
  494. printk (KERN_ERR "init_ethernet failed for card #%dn", card_idx);
  495. goto err_out;
  496. }
  497. SET_MODULE_OWNER(dev);
  498. if (pci_request_regions(pdev, shortname))
  499. goto err_out_free_netdev;
  500. #ifdef USE_MEM
  501. ioaddr0 = ioaddr;
  502. enable_mmio(ioaddr0, chip_id);
  503. ioaddr = (long) ioremap (memaddr, io_size);
  504. if (!ioaddr) {
  505. printk (KERN_ERR "ioremap failed for device %s, region 0x%X @ 0x%lXn",
  506. pdev->slot_name, io_size, memaddr);
  507. goto err_out_free_res;
  508. }
  509. /* Check that selected MMIO registers match the PIO ones */
  510. i = 0;
  511. while (mmio_verify_registers[i]) {
  512. int reg = mmio_verify_registers[i++];
  513. unsigned char a = inb(ioaddr0+reg);
  514. unsigned char b = readb(ioaddr+reg);
  515. if (a != b) {
  516. printk (KERN_ERR "MMIO do not match PIO [%02x] (%02x != %02x)n",
  517. reg, a, b);
  518. goto err_out_unmap;
  519. }
  520. }
  521. #endif
  522. /* D-Link provided reset code (with comment additions) */
  523. if (via_rhine_chip_info[chip_id].drv_flags & HasWOL) {
  524. unsigned char byOrgValue;
  525. /* clear sticky bit before reset & read ethernet address */
  526. byOrgValue = readb(ioaddr + StickyHW);
  527. byOrgValue = byOrgValue & 0xFC;
  528. writeb(byOrgValue, ioaddr + StickyHW);
  529. /* (bits written are cleared?) */
  530. /* disable force PME-enable */
  531. writeb(0x80, ioaddr + WOLcgClr);
  532. /* disable power-event config bit */
  533. writeb(0xFF, ioaddr + WOLcrClr);
  534. /* clear power status (undocumented in vt6102 docs?) */
  535. writeb(0xFF, ioaddr + PwrcsrClr);
  536. }
  537. /* Reset the chip to erase previous misconfiguration. */
  538. writew(CmdReset, ioaddr + ChipCmd);
  539. dev->base_addr = ioaddr;
  540. wait_for_reset(dev, shortname);
  541. /* Reload the station address from the EEPROM. */
  542. #ifdef USE_IO
  543. reload_eeprom(ioaddr);
  544. #else
  545. reload_eeprom(ioaddr0);
  546. /* Reloading from eeprom overwrites cfgA-D, so we must re-enable MMIO.
  547.    If reload_eeprom() was done first this could be avoided, but it is
  548.    not known if that still works with the "win98-reboot" problem. */
  549. enable_mmio(ioaddr0, chip_id);
  550. #endif
  551. for (i = 0; i < 6; i++)
  552. dev->dev_addr[i] = readb(ioaddr + StationAddr + i);
  553. if (!is_valid_ether_addr(dev->dev_addr)) {
  554. printk(KERN_ERR "Invalid MAC address for card #%dn", card_idx);
  555. goto err_out_unmap;
  556. }
  557. if (chip_id == VT6102) {
  558. /*
  559.  * for 3065D, EEPROM reloaded will cause bit 0 in MAC_REG_CFGA
  560.  * turned on.  it makes MAC receive magic packet
  561.  * automatically. So, we turn it off. (D-Link)
  562.  */
  563. writeb(readb(ioaddr + ConfigA) & 0xFE, ioaddr + ConfigA);
  564. }
  565. dev->irq = pdev->irq;
  566. np = dev->priv;
  567. spin_lock_init (&np->lock);
  568. np->chip_id = chip_id;
  569. np->drv_flags = via_rhine_chip_info[chip_id].drv_flags;
  570. np->pdev = pdev;
  571. np->mii_if.dev = dev;
  572. np->mii_if.mdio_read = mdio_read;
  573. np->mii_if.mdio_write = mdio_write;
  574. if (dev->mem_start)
  575. option = dev->mem_start;
  576. /* The lower four bits are the media type. */
  577. if (option > 0) {
  578. if (option & 0x200)
  579. np->mii_if.full_duplex = 1;
  580. np->default_port = option & 15;
  581. }
  582. if (card_idx < MAX_UNITS  &&  full_duplex[card_idx] > 0)
  583. np->mii_if.full_duplex = 1;
  584. if (np->mii_if.full_duplex) {
  585. printk(KERN_INFO "%s: Set to forced full duplex, autonegotiation"
  586.    " disabled.n", dev->name);
  587. np->mii_if.duplex_lock = 1;
  588. }
  589. /* The chip-specific entries in the device structure. */
  590. dev->open = via_rhine_open;
  591. dev->hard_start_xmit = via_rhine_start_tx;
  592. dev->stop = via_rhine_close;
  593. dev->get_stats = via_rhine_get_stats;
  594. dev->set_multicast_list = via_rhine_set_rx_mode;
  595. dev->do_ioctl = via_rhine_ioctl;
  596. dev->tx_timeout = via_rhine_tx_timeout;
  597. dev->watchdog_timeo = TX_TIMEOUT;
  598. if (np->drv_flags & ReqTxAlign)
  599. dev->features |= NETIF_F_SG|NETIF_F_HW_CSUM;
  600. i = register_netdev(dev);
  601. if (i)
  602. goto err_out_unmap;
  603. printk(KERN_INFO "%s: %s at 0x%lx, ",
  604.    dev->name, via_rhine_chip_info[chip_id].name,
  605.    (pci_flags & PCI_USES_IO) ? ioaddr : memaddr);
  606. for (i = 0; i < 5; i++)
  607. printk("%2.2x:", dev->dev_addr[i]);
  608. printk("%2.2x, IRQ %d.n", dev->dev_addr[i], pdev->irq);
  609. pci_set_drvdata(pdev, dev);
  610. if (np->drv_flags & CanHaveMII) {
  611. int phy, phy_idx = 0;
  612. np->phys[0] = 1; /* Standard for this chip. */
  613. for (phy = 1; phy < 32 && phy_idx < MAX_MII_CNT; phy++) {
  614. int mii_status = mdio_read(dev, phy, 1);
  615. if (mii_status != 0xffff  &&  mii_status != 0x0000) {
  616. np->phys[phy_idx++] = phy;
  617. np->mii_if.advertising = mdio_read(dev, phy, 4);
  618. printk(KERN_INFO "%s: MII PHY found at address %d, status "
  619.    "0x%4.4x advertising %4.4x Link %4.4x.n",
  620.    dev->name, phy, mii_status, np->mii_if.advertising,
  621.    mdio_read(dev, phy, 5));
  622. /* set IFF_RUNNING */
  623. if (mii_status & MIILink)
  624. netif_carrier_on(dev);
  625. else
  626. netif_carrier_off(dev);
  627. }
  628. }
  629. np->mii_cnt = phy_idx;
  630. np->mii_if.phy_id = np->phys[0];
  631. }
  632. /* Allow forcing the media type. */
  633. if (option > 0) {
  634. if (option & 0x220)
  635. np->mii_if.full_duplex = 1;
  636. np->default_port = option & 0x3ff;
  637. if (np->default_port & 0x330) {
  638. /* FIXME: shouldn't someone check this variable? */
  639. /* np->medialock = 1; */
  640. printk(KERN_INFO "  Forcing %dMbs %s-duplex operation.n",
  641.    (option & 0x300 ? 100 : 10),
  642.    (option & 0x220 ? "full" : "half"));
  643. if (np->mii_cnt)
  644. mdio_write(dev, np->phys[0], 0,
  645.    ((option & 0x300) ? 0x2000 : 0) |  /* 100mbps? */
  646.    ((option & 0x220) ? 0x0100 : 0));  /* Full duplex? */
  647. }
  648. }
  649. return 0;
  650. err_out_unmap:
  651. #ifdef USE_MEM
  652. iounmap((void *)ioaddr);
  653. err_out_free_res:
  654. #endif
  655. pci_release_regions(pdev);
  656. err_out_free_netdev:
  657. kfree (dev);
  658. err_out:
  659. return -ENODEV;
  660. }
  661. static int alloc_ring(struct net_device* dev)
  662. {
  663. struct netdev_private *np = dev->priv;
  664. void *ring;
  665. dma_addr_t ring_dma;
  666. ring = pci_alloc_consistent(np->pdev, 
  667.     RX_RING_SIZE * sizeof(struct rx_desc) +
  668.     TX_RING_SIZE * sizeof(struct tx_desc),
  669.     &ring_dma);
  670. if (!ring) {
  671. printk(KERN_ERR "Could not allocate DMA memory.n");
  672. return -ENOMEM;
  673. }
  674. if (np->drv_flags & ReqTxAlign) {
  675. np->tx_bufs = pci_alloc_consistent(np->pdev, PKT_BUF_SZ * TX_RING_SIZE,
  676.    &np->tx_bufs_dma);
  677. if (np->tx_bufs == NULL) {
  678. pci_free_consistent(np->pdev, 
  679.     RX_RING_SIZE * sizeof(struct rx_desc) +
  680.     TX_RING_SIZE * sizeof(struct tx_desc),
  681.     ring, ring_dma);
  682. return -ENOMEM;
  683. }
  684. }
  685. np->rx_ring = ring;
  686. np->tx_ring = ring + RX_RING_SIZE * sizeof(struct rx_desc);
  687. np->rx_ring_dma = ring_dma;
  688. np->tx_ring_dma = ring_dma + RX_RING_SIZE * sizeof(struct rx_desc);
  689. return 0;
  690. }
  691. void free_ring(struct net_device* dev)
  692. {
  693. struct netdev_private *np = dev->priv;
  694. pci_free_consistent(np->pdev, 
  695.     RX_RING_SIZE * sizeof(struct rx_desc) +
  696.     TX_RING_SIZE * sizeof(struct tx_desc),
  697.     np->rx_ring, np->rx_ring_dma);
  698. np->tx_ring = NULL;
  699. if (np->tx_bufs)
  700. pci_free_consistent(np->pdev, PKT_BUF_SZ * TX_RING_SIZE,
  701. np->tx_bufs, np->tx_bufs_dma);
  702. np->tx_bufs = NULL;
  703. }
  704. static void alloc_rbufs(struct net_device *dev)
  705. {
  706. struct netdev_private *np = dev->priv;
  707. dma_addr_t next;
  708. int i;
  709. np->dirty_rx = np->cur_rx = 0;
  710. np->rx_buf_sz = (dev->mtu <= 1500 ? PKT_BUF_SZ : dev->mtu + 32);
  711. np->rx_head_desc = &np->rx_ring[0];
  712. next = np->rx_ring_dma;
  713. /* Init the ring entries */
  714. for (i = 0; i < RX_RING_SIZE; i++) {
  715. np->rx_ring[i].rx_status = 0;
  716. np->rx_ring[i].desc_length = cpu_to_le32(np->rx_buf_sz);
  717. next += sizeof(struct rx_desc);
  718. np->rx_ring[i].next_desc = cpu_to_le32(next);
  719. np->rx_skbuff[i] = 0;
  720. }
  721. /* Mark the last entry as wrapping the ring. */
  722. np->rx_ring[i-1].next_desc = cpu_to_le32(np->rx_ring_dma);
  723. /* Fill in the Rx buffers.  Handle allocation failure gracefully. */
  724. for (i = 0; i < RX_RING_SIZE; i++) {
  725. struct sk_buff *skb = dev_alloc_skb(np->rx_buf_sz);
  726. np->rx_skbuff[i] = skb;
  727. if (skb == NULL)
  728. break;
  729. skb->dev = dev;                 /* Mark as being used by this device. */
  730. np->rx_skbuff_dma[i] =
  731. pci_map_single(np->pdev, skb->tail, np->rx_buf_sz,
  732.    PCI_DMA_FROMDEVICE);
  733. np->rx_ring[i].addr = cpu_to_le32(np->rx_skbuff_dma[i]);
  734. np->rx_ring[i].rx_status = cpu_to_le32(DescOwn);
  735. }
  736. np->dirty_rx = (unsigned int)(i - RX_RING_SIZE);
  737. }
  738. static void free_rbufs(struct net_device* dev)
  739. {
  740. struct netdev_private *np = dev->priv;
  741. int i;
  742. /* Free all the skbuffs in the Rx queue. */
  743. for (i = 0; i < RX_RING_SIZE; i++) {
  744. np->rx_ring[i].rx_status = 0;
  745. np->rx_ring[i].addr = cpu_to_le32(0xBADF00D0); /* An invalid address. */
  746. if (np->rx_skbuff[i]) {
  747. pci_unmap_single(np->pdev,
  748.  np->rx_skbuff_dma[i],
  749.  np->rx_buf_sz, PCI_DMA_FROMDEVICE);
  750. dev_kfree_skb(np->rx_skbuff[i]);
  751. }
  752. np->rx_skbuff[i] = 0;
  753. }
  754. }
  755. static void alloc_tbufs(struct net_device* dev)
  756. {
  757. struct netdev_private *np = dev->priv;
  758. dma_addr_t next;
  759. int i;
  760. np->dirty_tx = np->cur_tx = 0;
  761. next = np->tx_ring_dma;
  762. for (i = 0; i < TX_RING_SIZE; i++) {
  763. np->tx_skbuff[i] = 0;
  764. np->tx_ring[i].tx_status = 0;
  765. np->tx_ring[i].desc_length = cpu_to_le32(0x00e08000);
  766. next += sizeof(struct tx_desc);
  767. np->tx_ring[i].next_desc = cpu_to_le32(next);
  768. np->tx_buf[i] = &np->tx_bufs[i * PKT_BUF_SZ];
  769. }
  770. np->tx_ring[i-1].next_desc = cpu_to_le32(np->tx_ring_dma);
  771. }
  772. static void free_tbufs(struct net_device* dev)
  773. {
  774. struct netdev_private *np = dev->priv;
  775. int i;
  776. for (i = 0; i < TX_RING_SIZE; i++) {
  777. np->tx_ring[i].tx_status = 0;
  778. np->tx_ring[i].desc_length = cpu_to_le32(0x00e08000);
  779. np->tx_ring[i].addr = cpu_to_le32(0xBADF00D0); /* An invalid address. */
  780. if (np->tx_skbuff[i]) {
  781. if (np->tx_skbuff_dma[i]) {
  782. pci_unmap_single(np->pdev,
  783.  np->tx_skbuff_dma[i],
  784.  np->tx_skbuff[i]->len, PCI_DMA_TODEVICE);
  785. }
  786. dev_kfree_skb(np->tx_skbuff[i]);
  787. }
  788. np->tx_skbuff[i] = 0;
  789. np->tx_buf[i] = 0;
  790. }
  791. }
  792. static void init_registers(struct net_device *dev)
  793. {
  794. struct netdev_private *np = dev->priv;
  795. long ioaddr = dev->base_addr;
  796. int i;
  797. for (i = 0; i < 6; i++)
  798. writeb(dev->dev_addr[i], ioaddr + StationAddr + i);
  799. /* Initialize other registers. */
  800. writew(0x0006, ioaddr + PCIBusConfig); /* Tune configuration??? */
  801. /* Configure the FIFO thresholds. */
  802. writeb(0x20, ioaddr + TxConfig); /* Initial threshold 32 bytes */
  803. np->tx_thresh = 0x20;
  804. np->rx_thresh = 0x60; /* Written in via_rhine_set_rx_mode(). */
  805. if (dev->if_port == 0)
  806. dev->if_port = np->default_port;
  807. writel(np->rx_ring_dma, ioaddr + RxRingPtr);
  808. writel(np->tx_ring_dma, ioaddr + TxRingPtr);
  809. via_rhine_set_rx_mode(dev);
  810. /* Enable interrupts by setting the interrupt mask. */
  811. writew(IntrRxDone | IntrRxErr | IntrRxEmpty| IntrRxOverflow| IntrRxDropped|
  812.    IntrTxDone | IntrTxAbort | IntrTxUnderrun |
  813.    IntrPCIErr | IntrStatsMax | IntrLinkChange | IntrMIIChange,
  814.    ioaddr + IntrEnable);
  815. np->chip_cmd = CmdStart|CmdTxOn|CmdRxOn|CmdNoTxPoll;
  816. if (np->mii_if.duplex_lock)
  817. np->chip_cmd |= CmdFDuplex;
  818. writew(np->chip_cmd, ioaddr + ChipCmd);
  819. via_rhine_check_duplex(dev);
  820. /* The LED outputs of various MII xcvrs should be configured.  */
  821. /* For NS or Mison phys, turn on bit 1 in register 0x17 */
  822. /* For ESI phys, turn on bit 7 in register 0x17. */
  823. mdio_write(dev, np->phys[0], 0x17, mdio_read(dev, np->phys[0], 0x17) |
  824.    (np->drv_flags & HasESIPhy) ? 0x0080 : 0x0001);
  825. }
  826. /* Read and write over the MII Management Data I/O (MDIO) interface. */
  827. static int mdio_read(struct net_device *dev, int phy_id, int regnum)
  828. {
  829. long ioaddr = dev->base_addr;
  830. int boguscnt = 1024;
  831. /* Wait for a previous command to complete. */
  832. while ((readb(ioaddr + MIICmd) & 0x60) && --boguscnt > 0)
  833. ;
  834. writeb(0x00, ioaddr + MIICmd);
  835. writeb(phy_id, ioaddr + MIIPhyAddr);
  836. writeb(regnum, ioaddr + MIIRegAddr);
  837. writeb(0x40, ioaddr + MIICmd); /* Trigger read */
  838. boguscnt = 1024;
  839. while ((readb(ioaddr + MIICmd) & 0x40) && --boguscnt > 0)
  840. ;
  841. return readw(ioaddr + MIIData);
  842. }
  843. static void mdio_write(struct net_device *dev, int phy_id, int regnum, int value)
  844. {
  845. struct netdev_private *np = dev->priv;
  846. long ioaddr = dev->base_addr;
  847. int boguscnt = 1024;
  848. if (phy_id == np->phys[0]) {
  849. switch (regnum) {
  850. case 0: /* Is user forcing speed/duplex? */
  851. if (value & 0x9000) /* Autonegotiation. */
  852. np->mii_if.duplex_lock = 0;
  853. else
  854. np->mii_if.full_duplex = (value & 0x0100) ? 1 : 0;
  855. break;
  856. case 4:
  857. np->mii_if.advertising = value;
  858. break;
  859. }
  860. }
  861. /* Wait for a previous command to complete. */
  862. while ((readb(ioaddr + MIICmd) & 0x60) && --boguscnt > 0)
  863. ;
  864. writeb(0x00, ioaddr + MIICmd);
  865. writeb(phy_id, ioaddr + MIIPhyAddr);
  866. writeb(regnum, ioaddr + MIIRegAddr);
  867. writew(value, ioaddr + MIIData);
  868. writeb(0x20, ioaddr + MIICmd); /* Trigger write. */
  869. }
  870. static int via_rhine_open(struct net_device *dev)
  871. {
  872. struct netdev_private *np = dev->priv;
  873. long ioaddr = dev->base_addr;
  874. int i;
  875. /* Reset the chip. */
  876. writew(CmdReset, ioaddr + ChipCmd);
  877. i = request_irq(np->pdev->irq, &via_rhine_interrupt, SA_SHIRQ, dev->name, dev);
  878. if (i)
  879. return i;
  880. if (debug > 1)
  881. printk(KERN_DEBUG "%s: via_rhine_open() irq %d.n",
  882.    dev->name, np->pdev->irq);
  883. i = alloc_ring(dev);
  884. if (i)
  885. return i;
  886. alloc_rbufs(dev);
  887. alloc_tbufs(dev);
  888. wait_for_reset(dev, dev->name);
  889. init_registers(dev);
  890. if (debug > 2)
  891. printk(KERN_DEBUG "%s: Done via_rhine_open(), status %4.4x "
  892.    "MII status: %4.4x.n",
  893.    dev->name, readw(ioaddr + ChipCmd),
  894.    mdio_read(dev, np->phys[0], MII_BMSR));
  895. netif_start_queue(dev);
  896. /* Set the timer to check for link beat. */
  897. init_timer(&np->timer);
  898. np->timer.expires = jiffies + 2;
  899. np->timer.data = (unsigned long)dev;
  900. np->timer.function = &via_rhine_timer; /* timer handler */
  901. add_timer(&np->timer);
  902. return 0;
  903. }
  904. static void via_rhine_check_duplex(struct net_device *dev)
  905. {
  906. struct netdev_private *np = dev->priv;
  907. long ioaddr = dev->base_addr;
  908. int mii_lpa = mdio_read(dev, np->phys[0], MII_LPA);
  909. int negotiated = mii_lpa & np->mii_if.advertising;
  910. int duplex;
  911. if (np->mii_if.duplex_lock  ||  mii_lpa == 0xffff)
  912. return;
  913. duplex = (negotiated & 0x0100) || (negotiated & 0x01C0) == 0x0040;
  914. if (np->mii_if.full_duplex != duplex) {
  915. np->mii_if.full_duplex = duplex;
  916. if (debug)
  917. printk(KERN_INFO "%s: Setting %s-duplex based on MII #%d link"
  918.    " partner capability of %4.4x.n", dev->name,
  919.    duplex ? "full" : "half", np->phys[0], mii_lpa);
  920. if (duplex)
  921. np->chip_cmd |= CmdFDuplex;
  922. else
  923. np->chip_cmd &= ~CmdFDuplex;
  924. writew(np->chip_cmd, ioaddr + ChipCmd);
  925. }
  926. }
  927. static void via_rhine_timer(unsigned long data)
  928. {
  929. struct net_device *dev = (struct net_device *)data;
  930. struct netdev_private *np = dev->priv;
  931. long ioaddr = dev->base_addr;
  932. int next_tick = 10*HZ;
  933. int mii_status;
  934. if (debug > 3) {
  935. printk(KERN_DEBUG "%s: VIA Rhine monitor tick, status %4.4x.n",
  936.    dev->name, readw(ioaddr + IntrStatus));
  937. }
  938. spin_lock_irq (&np->lock);
  939. via_rhine_check_duplex(dev);
  940. /* make IFF_RUNNING follow the MII status bit "Link established" */
  941. mii_status = mdio_read(dev, np->phys[0], MII_BMSR);
  942. if ( (mii_status & MIILink) != (np->mii_status & MIILink) ) {
  943. if (mii_status & MIILink)
  944. netif_carrier_on(dev);
  945. else
  946. netif_carrier_off(dev);
  947. }
  948. np->mii_status = mii_status;
  949. spin_unlock_irq (&np->lock);
  950. np->timer.expires = jiffies + next_tick;
  951. add_timer(&np->timer);
  952. }
  953. static void via_rhine_tx_timeout (struct net_device *dev)
  954. {
  955. struct netdev_private *np = dev->priv;
  956. long ioaddr = dev->base_addr;
  957. printk (KERN_WARNING "%s: Transmit timed out, status %4.4x, PHY status "
  958. "%4.4x, resetting...n",
  959. dev->name, readw (ioaddr + IntrStatus),
  960. mdio_read (dev, np->phys[0], MII_BMSR));
  961. dev->if_port = 0;
  962. /* protect against concurrent rx interrupts */
  963. disable_irq(np->pdev->irq);
  964. spin_lock(&np->lock);
  965. /* Reset the chip. */
  966. writew(CmdReset, ioaddr + ChipCmd);
  967. /* clear all descriptors */
  968. free_tbufs(dev);
  969. free_rbufs(dev);
  970. alloc_tbufs(dev);
  971. alloc_rbufs(dev);
  972. /* Reinitialize the hardware. */
  973. wait_for_reset(dev, dev->name);
  974. init_registers(dev);
  975. spin_unlock(&np->lock);
  976. enable_irq(np->pdev->irq);
  977. dev->trans_start = jiffies;
  978. np->stats.tx_errors++;
  979. netif_wake_queue(dev);
  980. }
  981. static int via_rhine_start_tx(struct sk_buff *skb, struct net_device *dev)
  982. {
  983. struct netdev_private *np = dev->priv;
  984. unsigned entry;
  985. /* Caution: the write order is important here, set the field
  986.    with the "ownership" bits last. */
  987. /* Calculate the next Tx descriptor entry. */
  988. entry = np->cur_tx % TX_RING_SIZE;
  989. np->tx_skbuff[entry] = skb;
  990. if ((np->drv_flags & ReqTxAlign) &&
  991. (((long)skb->data & 3) || skb_shinfo(skb)->nr_frags != 0 || skb->ip_summed == CHECKSUM_HW)
  992. ) {
  993. /* Must use alignment buffer. */
  994. if (skb->len > PKT_BUF_SZ) {
  995. /* packet too long, drop it */
  996. dev_kfree_skb(skb);
  997. np->tx_skbuff[entry] = NULL;
  998. np->stats.tx_dropped++;
  999. return 0;
  1000. }
  1001. skb_copy_and_csum_dev(skb, np->tx_buf[entry]);
  1002. np->tx_skbuff_dma[entry] = 0;
  1003. np->tx_ring[entry].addr = cpu_to_le32(np->tx_bufs_dma +
  1004.   (np->tx_buf[entry] - np->tx_bufs));
  1005. } else {
  1006. np->tx_skbuff_dma[entry] =
  1007. pci_map_single(np->pdev, skb->data, skb->len, PCI_DMA_TODEVICE);
  1008. np->tx_ring[entry].addr = cpu_to_le32(np->tx_skbuff_dma[entry]);
  1009. }
  1010. np->tx_ring[entry].desc_length = 
  1011. cpu_to_le32(0x00E08000 | (skb->len >= ETH_ZLEN ? skb->len : ETH_ZLEN));
  1012. /* lock eth irq */
  1013. spin_lock_irq (&np->lock);
  1014. wmb();
  1015. np->tx_ring[entry].tx_status = cpu_to_le32(DescOwn);
  1016. wmb();
  1017. np->cur_tx++;
  1018. /* Non-x86 Todo: explicitly flush cache lines here. */
  1019. /* Wake the potentially-idle transmit channel. */
  1020. writew(CmdTxDemand | np->chip_cmd, dev->base_addr + ChipCmd);
  1021. if (np->cur_tx == np->dirty_tx + TX_QUEUE_LEN)
  1022. netif_stop_queue(dev);
  1023. dev->trans_start = jiffies;
  1024. spin_unlock_irq (&np->lock);
  1025. if (debug > 4) {
  1026. printk(KERN_DEBUG "%s: Transmit frame #%d queued in slot %d.n",
  1027.    dev->name, np->cur_tx, entry);
  1028. }
  1029. return 0;
  1030. }
  1031. /* The interrupt handler does all of the Rx thread work and cleans up
  1032.    after the Tx thread. */
  1033. static void via_rhine_interrupt(int irq, void *dev_instance, struct pt_regs *rgs)
  1034. {
  1035. struct net_device *dev = dev_instance;
  1036. long ioaddr;
  1037. u32 intr_status;
  1038. int boguscnt = max_interrupt_work;
  1039. ioaddr = dev->base_addr;
  1040. while ((intr_status = readw(ioaddr + IntrStatus))) {
  1041. /* Acknowledge all of the current interrupt sources ASAP. */
  1042. writew(intr_status & 0xffff, ioaddr + IntrStatus);
  1043. if (debug > 4)
  1044. printk(KERN_DEBUG "%s: Interrupt, status %4.4x.n",
  1045.    dev->name, intr_status);
  1046. if (intr_status & (IntrRxDone | IntrRxErr | IntrRxDropped |
  1047.    IntrRxWakeUp | IntrRxEmpty | IntrRxNoBuf))
  1048. via_rhine_rx(dev);
  1049. if (intr_status & (IntrTxDone | IntrTxAbort | IntrTxUnderrun |
  1050.    IntrTxAborted))
  1051. via_rhine_tx(dev);
  1052. /* Abnormal error summary/uncommon events handlers. */
  1053. if (intr_status & (IntrPCIErr | IntrLinkChange | IntrMIIChange |
  1054.    IntrStatsMax | IntrTxAbort | IntrTxUnderrun))
  1055. via_rhine_error(dev, intr_status);
  1056. if (--boguscnt < 0) {
  1057. printk(KERN_WARNING "%s: Too much work at interrupt, "
  1058.    "status=0x%4.4x.n",
  1059.    dev->name, intr_status);
  1060. break;
  1061. }
  1062. }
  1063. if (debug > 3)
  1064. printk(KERN_DEBUG "%s: exiting interrupt, status=%#4.4x.n",
  1065.    dev->name, readw(ioaddr + IntrStatus));
  1066. }
  1067. /* This routine is logically part of the interrupt handler, but isolated
  1068.    for clarity. */
  1069. static void via_rhine_tx(struct net_device *dev)
  1070. {
  1071. struct netdev_private *np = dev->priv;
  1072. int txstatus = 0, entry = np->dirty_tx % TX_RING_SIZE;
  1073. spin_lock (&np->lock);
  1074. /* find and cleanup dirty tx descriptors */
  1075. while (np->dirty_tx != np->cur_tx) {
  1076. txstatus = le32_to_cpu(np->tx_ring[entry].tx_status);
  1077. if (txstatus & DescOwn)
  1078. break;
  1079. if (debug > 6)
  1080. printk(KERN_DEBUG " Tx scavenge %d status %8.8x.n",
  1081.    entry, txstatus);
  1082. if (txstatus & 0x8000) {
  1083. if (debug > 1)
  1084. printk(KERN_DEBUG "%s: Transmit error, Tx status %8.8x.n",
  1085.    dev->name, txstatus);
  1086. np->stats.tx_errors++;
  1087. if (txstatus & 0x0400) np->stats.tx_carrier_errors++;
  1088. if (txstatus & 0x0200) np->stats.tx_window_errors++;
  1089. if (txstatus & 0x0100) np->stats.tx_aborted_errors++;
  1090. if (txstatus & 0x0080) np->stats.tx_heartbeat_errors++;
  1091. if (txstatus & 0x0002) np->stats.tx_fifo_errors++;
  1092. /* Transmitter restarted in 'abnormal' handler. */
  1093. } else {
  1094. np->stats.collisions += (txstatus >> 3) & 15;
  1095. np->stats.tx_bytes += np->tx_skbuff[entry]->len;
  1096. np->stats.tx_packets++;
  1097. }
  1098. /* Free the original skb. */
  1099. if (np->tx_skbuff_dma[entry]) {
  1100. pci_unmap_single(np->pdev,
  1101.  np->tx_skbuff_dma[entry],
  1102.  np->tx_skbuff[entry]->len, PCI_DMA_TODEVICE);
  1103. }
  1104. dev_kfree_skb_irq(np->tx_skbuff[entry]);
  1105. np->tx_skbuff[entry] = NULL;
  1106. entry = (++np->dirty_tx) % TX_RING_SIZE;
  1107. }
  1108. if ((np->cur_tx - np->dirty_tx) < TX_QUEUE_LEN - 4)
  1109. netif_wake_queue (dev);
  1110. spin_unlock (&np->lock);
  1111. }
  1112. /* This routine is logically part of the interrupt handler, but isolated
  1113.    for clarity and better register allocation. */
  1114. static void via_rhine_rx(struct net_device *dev)
  1115. {
  1116. struct netdev_private *np = dev->priv;
  1117. int entry = np->cur_rx % RX_RING_SIZE;
  1118. int boguscnt = np->dirty_rx + RX_RING_SIZE - np->cur_rx;
  1119. if (debug > 4) {
  1120. printk(KERN_DEBUG " In via_rhine_rx(), entry %d status %8.8x.n",
  1121.    entry, le32_to_cpu(np->rx_head_desc->rx_status));
  1122. }
  1123. /* If EOP is set on the next entry, it's a new packet. Send it up. */
  1124. while ( ! (np->rx_head_desc->rx_status & cpu_to_le32(DescOwn))) {
  1125. struct rx_desc *desc = np->rx_head_desc;
  1126. u32 desc_status = le32_to_cpu(desc->rx_status);
  1127. int data_size = desc_status >> 16;
  1128. if (debug > 4)
  1129. printk(KERN_DEBUG "  via_rhine_rx() status is %8.8x.n",
  1130.    desc_status);
  1131. if (--boguscnt < 0)
  1132. break;
  1133. if ( (desc_status & (RxWholePkt | RxErr)) !=  RxWholePkt) {
  1134. if ((desc_status & RxWholePkt) !=  RxWholePkt) {
  1135. printk(KERN_WARNING "%s: Oversized Ethernet frame spanned "
  1136.    "multiple buffers, entry %#x length %d status %8.8x!n",
  1137.    dev->name, entry, data_size, desc_status);
  1138. printk(KERN_WARNING "%s: Oversized Ethernet frame %p vs %p.n",
  1139.    dev->name, np->rx_head_desc, &np->rx_ring[entry]);
  1140. np->stats.rx_length_errors++;
  1141. } else if (desc_status & RxErr) {
  1142. /* There was a error. */
  1143. if (debug > 2)
  1144. printk(KERN_DEBUG "  via_rhine_rx() Rx error was %8.8x.n",
  1145.    desc_status);
  1146. np->stats.rx_errors++;
  1147. if (desc_status & 0x0030) np->stats.rx_length_errors++;
  1148. if (desc_status & 0x0048) np->stats.rx_fifo_errors++;
  1149. if (desc_status & 0x0004) np->stats.rx_frame_errors++;
  1150. if (desc_status & 0x0002) {
  1151. /* this can also be updated outside the interrupt handler */
  1152. spin_lock (&np->lock);
  1153. np->stats.rx_crc_errors++;
  1154. spin_unlock (&np->lock);
  1155. }
  1156. }
  1157. } else {
  1158. struct sk_buff *skb;
  1159. /* Length should omit the CRC */
  1160. int pkt_len = data_size - 4;
  1161. /* Check if the packet is long enough to accept without copying
  1162.    to a minimally-sized skbuff. */
  1163. if (pkt_len < rx_copybreak &&
  1164. (skb = dev_alloc_skb(pkt_len + 2)) != NULL) {
  1165. skb->dev = dev;
  1166. skb_reserve(skb, 2); /* 16 byte align the IP header */
  1167. pci_dma_sync_single(np->pdev, np->rx_skbuff_dma[entry],
  1168.     np->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1169. /* *_IP_COPYSUM isn't defined anywhere and eth_copy_and_sum
  1170.    is memcpy for all archs so this is kind of pointless right
  1171.    now ... or? */
  1172. #if HAS_IP_COPYSUM                     /* Call copy + cksum if available. */
  1173. eth_copy_and_sum(skb, np->rx_skbuff[entry]->tail, pkt_len, 0);
  1174. skb_put(skb, pkt_len);
  1175. #else
  1176. memcpy(skb_put(skb, pkt_len), np->rx_skbuff[entry]->tail,
  1177.    pkt_len);
  1178. #endif
  1179. } else {
  1180. skb = np->rx_skbuff[entry];
  1181. if (skb == NULL) {
  1182. printk(KERN_ERR "%s: Inconsistent Rx descriptor chain.n",
  1183.    dev->name);
  1184. break;
  1185. }
  1186. np->rx_skbuff[entry] = NULL;
  1187. skb_put(skb, pkt_len);
  1188. pci_unmap_single(np->pdev, np->rx_skbuff_dma[entry],
  1189.  np->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1190. }
  1191. skb->protocol = eth_type_trans(skb, dev);
  1192. netif_rx(skb);
  1193. dev->last_rx = jiffies;
  1194. np->stats.rx_bytes += pkt_len;
  1195. np->stats.rx_packets++;
  1196. }
  1197. entry = (++np->cur_rx) % RX_RING_SIZE;
  1198. np->rx_head_desc = &np->rx_ring[entry];
  1199. }
  1200. /* Refill the Rx ring buffers. */
  1201. for (; np->cur_rx - np->dirty_rx > 0; np->dirty_rx++) {
  1202. struct sk_buff *skb;
  1203. entry = np->dirty_rx % RX_RING_SIZE;
  1204. if (np->rx_skbuff[entry] == NULL) {
  1205. skb = dev_alloc_skb(np->rx_buf_sz);
  1206. np->rx_skbuff[entry] = skb;
  1207. if (skb == NULL)
  1208. break; /* Better luck next round. */
  1209. skb->dev = dev; /* Mark as being used by this device. */
  1210. np->rx_skbuff_dma[entry] =
  1211. pci_map_single(np->pdev, skb->tail, np->rx_buf_sz, 
  1212.    PCI_DMA_FROMDEVICE);
  1213. np->rx_ring[entry].addr = cpu_to_le32(np->rx_skbuff_dma[entry]);
  1214. }
  1215. np->rx_ring[entry].rx_status = cpu_to_le32(DescOwn);
  1216. }
  1217. /* Pre-emptively restart Rx engine. */
  1218. writew(CmdRxDemand | np->chip_cmd, dev->base_addr + ChipCmd);
  1219. }
  1220. static void via_rhine_error(struct net_device *dev, int intr_status)
  1221. {
  1222. struct netdev_private *np = dev->priv;
  1223. long ioaddr = dev->base_addr;
  1224. spin_lock (&np->lock);
  1225. if (intr_status & (IntrMIIChange | IntrLinkChange)) {
  1226. if (readb(ioaddr + MIIStatus) & 0x02) {
  1227. /* Link failed, restart autonegotiation. */
  1228. if (np->drv_flags & HasDavicomPhy)
  1229. mdio_write(dev, np->phys[0], MII_BMCR, 0x3300);
  1230. } else
  1231. via_rhine_check_duplex(dev);
  1232. if (debug)
  1233. printk(KERN_ERR "%s: MII status changed: Autonegotiation "
  1234.    "advertising %4.4x  partner %4.4x.n", dev->name,
  1235.    mdio_read(dev, np->phys[0], MII_ADVERTISE),
  1236.    mdio_read(dev, np->phys[0], MII_LPA));
  1237. }
  1238. if (intr_status & IntrStatsMax) {
  1239. np->stats.rx_crc_errors += readw(ioaddr + RxCRCErrs);
  1240. np->stats.rx_missed_errors += readw(ioaddr + RxMissed);
  1241. clear_tally_counters(ioaddr);
  1242. }
  1243. if (intr_status & IntrTxAbort) {
  1244. /* Stats counted in Tx-done handler, just restart Tx. */
  1245. writew(CmdTxDemand | np->chip_cmd, dev->base_addr + ChipCmd);
  1246. }
  1247. if (intr_status & IntrTxUnderrun) {
  1248. if (np->tx_thresh < 0xE0)
  1249. writeb(np->tx_thresh += 0x20, ioaddr + TxConfig);
  1250. if (debug > 1)
  1251. printk(KERN_INFO "%s: Transmitter underrun, increasing Tx "
  1252.    "threshold setting to %2.2x.n", dev->name, np->tx_thresh);
  1253. }
  1254. if ((intr_status & ~( IntrLinkChange | IntrStatsMax |
  1255.   IntrTxAbort | IntrTxAborted))) {
  1256. if (debug > 1)
  1257. printk(KERN_ERR "%s: Something Wicked happened! %4.4x.n",
  1258.    dev->name, intr_status);
  1259. /* Recovery for other fault sources not known. */
  1260. writew(CmdTxDemand | np->chip_cmd, dev->base_addr + ChipCmd);
  1261. }
  1262. spin_unlock (&np->lock);
  1263. }
  1264. static struct net_device_stats *via_rhine_get_stats(struct net_device *dev)
  1265. {
  1266. struct netdev_private *np = dev->priv;
  1267. long ioaddr = dev->base_addr;
  1268. unsigned long flags;
  1269. spin_lock_irqsave(&np->lock, flags);
  1270. np->stats.rx_crc_errors += readw(ioaddr + RxCRCErrs);
  1271. np->stats.rx_missed_errors += readw(ioaddr + RxMissed);
  1272. clear_tally_counters(ioaddr);
  1273. spin_unlock_irqrestore(&np->lock, flags);
  1274. return &np->stats;
  1275. }
  1276. /* Clears the "tally counters" for CRC errors and missed frames(?).
  1277.    It has been reported that some chips need a write of 0 to clear
  1278.    these, for others the counters are set to 1 when written to and
  1279.    instead cleared when read. So we clear them both ways ... */
  1280. static inline void clear_tally_counters(const long ioaddr)
  1281. {
  1282. writel(0, ioaddr + RxMissed);
  1283. readw(ioaddr + RxCRCErrs);
  1284. readw(ioaddr + RxMissed);
  1285. }
  1286. /* The big-endian AUTODIN II ethernet CRC calculation.
  1287.    N.B. Do not use for bulk data, use a table-based routine instead.
  1288.    This is common code and should be moved to net/core/crc.c */
  1289. static unsigned const ethernet_polynomial = 0x04c11db7U;
  1290. static inline u32 ether_crc(int length, unsigned char *data)
  1291. {
  1292.     int crc = -1;
  1293.     while(--length >= 0) {
  1294. unsigned char current_octet = *data++;
  1295. int bit;
  1296. for (bit = 0; bit < 8; bit++, current_octet >>= 1) {
  1297. crc = (crc << 1) ^
  1298. ((crc < 0) ^ (current_octet & 1) ? ethernet_polynomial : 0);
  1299. }
  1300.     }
  1301.     return crc;
  1302. }
  1303. static void via_rhine_set_rx_mode(struct net_device *dev)
  1304. {
  1305. struct netdev_private *np = dev->priv;
  1306. long ioaddr = dev->base_addr;
  1307. u32 mc_filter[2]; /* Multicast hash filter */
  1308. u8 rx_mode; /* Note: 0x02=accept runt, 0x01=accept errs */
  1309. if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
  1310. /* Unconditionally log net taps. */
  1311. printk(KERN_NOTICE "%s: Promiscuous mode enabled.n", dev->name);
  1312. rx_mode = 0x1C;
  1313. } else if ((dev->mc_count > multicast_filter_limit)
  1314.    ||  (dev->flags & IFF_ALLMULTI)) {
  1315. /* Too many to match, or accept all multicasts. */
  1316. writel(0xffffffff, ioaddr + MulticastFilter0);
  1317. writel(0xffffffff, ioaddr + MulticastFilter1);
  1318. rx_mode = 0x0C;
  1319. } else {
  1320. struct dev_mc_list *mclist;
  1321. int i;
  1322. memset(mc_filter, 0, sizeof(mc_filter));
  1323. for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
  1324.  i++, mclist = mclist->next) {
  1325. int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
  1326. mc_filter[bit_nr >> 5] |= cpu_to_le32(1 << (bit_nr & 31));
  1327. }
  1328. writel(mc_filter[0], ioaddr + MulticastFilter0);
  1329. writel(mc_filter[1], ioaddr + MulticastFilter1);
  1330. rx_mode = 0x0C;
  1331. }
  1332. writeb(np->rx_thresh | rx_mode, ioaddr + RxConfig);
  1333. }
  1334. static int via_rhine_ethtool_ioctl (struct net_device *dev, void *useraddr)
  1335. {
  1336. struct netdev_private *np = dev->priv;
  1337. u32 ethcmd;
  1338. if (get_user(ethcmd, (u32 *)useraddr))
  1339. return -EFAULT;
  1340. switch (ethcmd) {
  1341. case ETHTOOL_GDRVINFO: {
  1342. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  1343. strcpy (info.driver, DRV_NAME);
  1344. strcpy (info.version, DRV_VERSION);
  1345. strcpy (info.bus_info, np->pdev->slot_name);
  1346. if (copy_to_user (useraddr, &info, sizeof (info)))
  1347. return -EFAULT;
  1348. return 0;
  1349. }
  1350. /* get settings */
  1351. case ETHTOOL_GSET: {
  1352. struct ethtool_cmd ecmd = { ETHTOOL_GSET };
  1353. if (!(np->drv_flags & CanHaveMII))
  1354. break;
  1355. spin_lock_irq(&np->lock);
  1356. mii_ethtool_gset(&np->mii_if, &ecmd);
  1357. spin_unlock_irq(&np->lock);
  1358. if (copy_to_user(useraddr, &ecmd, sizeof(ecmd)))
  1359. return -EFAULT;
  1360. return 0;
  1361. }
  1362. /* set settings */
  1363. case ETHTOOL_SSET: {
  1364. int r;
  1365. struct ethtool_cmd ecmd;
  1366. if (!(np->drv_flags & CanHaveMII))
  1367. break;
  1368. if (copy_from_user(&ecmd, useraddr, sizeof(ecmd)))
  1369. return -EFAULT;
  1370. spin_lock_irq(&np->lock);
  1371. r = mii_ethtool_sset(&np->mii_if, &ecmd);
  1372. spin_unlock_irq(&np->lock);
  1373. return r;
  1374. }
  1375. /* restart autonegotiation */
  1376. case ETHTOOL_NWAY_RST: {
  1377. if (!(np->drv_flags & CanHaveMII))
  1378. break;
  1379. return mii_nway_restart(&np->mii_if);
  1380. }
  1381. /* get link status */
  1382. case ETHTOOL_GLINK: {
  1383. struct ethtool_value edata = {ETHTOOL_GLINK};
  1384. if (!(np->drv_flags & CanHaveMII))
  1385. break;
  1386. edata.data = mii_link_ok(&np->mii_if);
  1387. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1388. return -EFAULT;
  1389. return 0;
  1390. }
  1391. /* get message-level */
  1392. case ETHTOOL_GMSGLVL: {
  1393. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  1394. edata.data = debug;
  1395. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1396. return -EFAULT;
  1397. return 0;
  1398. }
  1399. /* set message-level */
  1400. case ETHTOOL_SMSGLVL: {
  1401. struct ethtool_value edata;
  1402. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  1403. return -EFAULT;
  1404. debug = edata.data;
  1405. return 0;
  1406. }
  1407. default:
  1408. break;
  1409. }
  1410. return -EOPNOTSUPP;
  1411. }
  1412. static int via_rhine_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1413. {
  1414. struct netdev_private *np = dev->priv;
  1415. struct mii_ioctl_data *data = (struct mii_ioctl_data *)&rq->ifr_data;
  1416. unsigned long flags;
  1417. int retval;
  1418. if (cmd == SIOCETHTOOL)
  1419. return via_rhine_ethtool_ioctl(dev, (void *) rq->ifr_data);
  1420. spin_lock_irqsave(&np->lock, flags);
  1421. retval = 0;
  1422. switch(cmd) {
  1423. case SIOCGMIIPHY: /* Get address of MII PHY in use. */
  1424. case SIOCDEVPRIVATE: /* for binary compat, remove in 2.5 */
  1425. data->phy_id = np->phys[0] & 0x1f;
  1426. /* Fall Through */
  1427. case SIOCGMIIREG: /* Read MII PHY register. */
  1428. case SIOCDEVPRIVATE+1: /* for binary compat, remove in 2.5 */
  1429. data->val_out = mdio_read(dev, data->phy_id & 0x1f, data->reg_num & 0x1f);
  1430. break;
  1431. case SIOCSMIIREG: /* Write MII PHY register. */
  1432. case SIOCDEVPRIVATE+2: /* for binary compat, remove in 2.5 */
  1433. if (!capable(CAP_NET_ADMIN)) {
  1434. retval = -EPERM;
  1435. break;
  1436. }
  1437. mdio_write(dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
  1438. break;
  1439. default:
  1440. retval = -EOPNOTSUPP;
  1441. }
  1442. spin_unlock_irqrestore(&np->lock, flags);
  1443. return retval;
  1444. }
  1445. static int via_rhine_close(struct net_device *dev)
  1446. {
  1447. long ioaddr = dev->base_addr;
  1448. struct netdev_private *np = dev->priv;
  1449. del_timer_sync(&np->timer);
  1450. spin_lock_irq(&np->lock);
  1451. netif_stop_queue(dev);
  1452. if (debug > 1)
  1453. printk(KERN_DEBUG "%s: Shutting down ethercard, status was %4.4x.n",
  1454.    dev->name, readw(ioaddr + ChipCmd));
  1455. /* Switch to loopback mode to avoid hardware races. */
  1456. writeb(np->tx_thresh | 0x02, ioaddr + TxConfig);
  1457. /* Disable interrupts by clearing the interrupt mask. */
  1458. writew(0x0000, ioaddr + IntrEnable);
  1459. /* Stop the chip's Tx and Rx processes. */
  1460. writew(CmdStop, ioaddr + ChipCmd);
  1461. spin_unlock_irq(&np->lock);
  1462. free_irq(np->pdev->irq, dev);
  1463. free_rbufs(dev);
  1464. free_tbufs(dev);
  1465. free_ring(dev);
  1466. return 0;
  1467. }
  1468. static void __devexit via_rhine_remove_one (struct pci_dev *pdev)
  1469. {
  1470. struct net_device *dev = pci_get_drvdata(pdev);
  1471. unregister_netdev(dev);
  1472. pci_release_regions(pdev);
  1473. #ifdef USE_MEM
  1474. iounmap((char *)(dev->base_addr));
  1475. #endif
  1476. kfree(dev);
  1477. pci_disable_device(pdev);
  1478. pci_set_drvdata(pdev, NULL);
  1479. }
  1480. static struct pci_driver via_rhine_driver = {
  1481. name: "via-rhine",
  1482. id_table: via_rhine_pci_tbl,
  1483. probe: via_rhine_init_one,
  1484. remove: __devexit_p(via_rhine_remove_one),
  1485. };
  1486. static int __init via_rhine_init (void)
  1487. {
  1488. /* when a module, this is printed whether or not devices are found in probe */
  1489. #ifdef MODULE
  1490. printk(version);
  1491. #endif
  1492. return pci_module_init (&via_rhine_driver);
  1493. }
  1494. static void __exit via_rhine_cleanup (void)
  1495. {
  1496. pci_unregister_driver (&via_rhine_driver);
  1497. }
  1498. module_init(via_rhine_init);
  1499. module_exit(via_rhine_cleanup);
  1500. /*
  1501.  * Local variables:
  1502.  *  compile-command: "gcc -DMODULE -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict-prototypes -O6 -c via-rhine.c `[ -f /usr/include/linux/modversions.h ] && echo -DMODVERSIONS`"
  1503.  *  c-indent-level: 4
  1504.  *  c-basic-offset: 4
  1505.  *  tab-width: 4
  1506.  * End:
  1507.  */