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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* lance.c: An AMD LANCE/PCnet ethernet driver for Linux. */
  2. /*
  3. Written/copyright 1993-1998 by Donald Becker.
  4. Copyright 1993 United States Government as represented by the
  5. Director, National Security Agency.
  6. This software may be used and distributed according to the terms
  7. of the GNU General Public License, incorporated herein by reference.
  8. This driver is for the Allied Telesis AT1500 and HP J2405A, and should work
  9. with most other LANCE-based bus-master (NE2100/NE2500) ethercards.
  10. The author may be reached as becker@scyld.com, or C/O
  11. Scyld Computing Corporation
  12. 410 Severn Ave., Suite 210
  13. Annapolis MD 21403
  14. Andrey V. Savochkin:
  15. - alignment problem with 1.3.* kernel and some minor changes.
  16. Thomas Bogendoerfer (tsbogend@bigbug.franken.de):
  17. - added support for Linux/Alpha, but removed most of it, because
  18.         it worked only for the PCI chip. 
  19.       - added hook for the 32bit lance driver
  20.       - added PCnetPCI II (79C970A) to chip table
  21. Paul Gortmaker (gpg109@rsphy1.anu.edu.au):
  22. - hopefully fix above so Linux/Alpha can use ISA cards too.
  23.     8/20/96 Fixed 7990 autoIRQ failure and reversed unneeded alignment -djb
  24.     v1.12 10/27/97 Module support -djb
  25.     v1.14  2/3/98 Module support modified, made PCI support optional -djb
  26.     v1.15 5/27/99 Fixed bug in the cleanup_module(). dev->priv was freed
  27.                   before unregister_netdev() which caused NULL pointer
  28.                   reference later in the chain (in rtnetlink_fill_ifinfo())
  29.                   -- Mika Kuoppala <miku@iki.fi>
  30.     
  31.     Forward ported v1.14 to 2.1.129, merged the PCI and misc changes from
  32.     the 2.1 version of the old driver - Alan Cox
  33.     Get rid of check_region, check kmalloc return in lance_probe1
  34.     Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 11/01/2001
  35. */
  36. static const char version[] = "lance.c:v1.15ac 1999/11/13 dplatt@3do.com, becker@cesdis.gsfc.nasa.govn";
  37. #include <linux/module.h>
  38. #include <linux/kernel.h>
  39. #include <linux/sched.h>
  40. #include <linux/string.h>
  41. #include <linux/ptrace.h>
  42. #include <linux/errno.h>
  43. #include <linux/ioport.h>
  44. #include <linux/slab.h>
  45. #include <linux/interrupt.h>
  46. #include <linux/pci.h>
  47. #include <linux/init.h>
  48. #include <asm/bitops.h>
  49. #include <asm/io.h>
  50. #include <asm/dma.h>
  51. #include <linux/netdevice.h>
  52. #include <linux/etherdevice.h>
  53. #include <linux/skbuff.h>
  54. static unsigned int lance_portlist[] __initdata = { 0x300, 0x320, 0x340, 0x360, 0};
  55. int lance_probe(struct net_device *dev);
  56. static int lance_probe1(struct net_device *dev, int ioaddr, int irq, int options);
  57. #ifdef LANCE_DEBUG
  58. static int lance_debug = LANCE_DEBUG;
  59. #else
  60. static int lance_debug = 1;
  61. #endif
  62. /*
  63. Theory of Operation
  64. I. Board Compatibility
  65. This device driver is designed for the AMD 79C960, the "PCnet-ISA
  66. single-chip ethernet controller for ISA".  This chip is used in a wide
  67. variety of boards from vendors such as Allied Telesis, HP, Kingston,
  68. and Boca.  This driver is also intended to work with older AMD 7990
  69. designs, such as the NE1500 and NE2100, and newer 79C961.  For convenience,
  70. I use the name LANCE to refer to all of the AMD chips, even though it properly
  71. refers only to the original 7990.
  72. II. Board-specific settings
  73. The driver is designed to work the boards that use the faster
  74. bus-master mode, rather than in shared memory mode.  (Only older designs
  75. have on-board buffer memory needed to support the slower shared memory mode.)
  76. Most ISA boards have jumpered settings for the I/O base, IRQ line, and DMA
  77. channel.  This driver probes the likely base addresses:
  78. {0x300, 0x320, 0x340, 0x360}.
  79. After the board is found it generates a DMA-timeout interrupt and uses
  80. autoIRQ to find the IRQ line.  The DMA channel can be set with the low bits
  81. of the otherwise-unused dev->mem_start value (aka PARAM1).  If unset it is
  82. probed for by enabling each free DMA channel in turn and checking if
  83. initialization succeeds.
  84. The HP-J2405A board is an exception: with this board it is easy to read the
  85. EEPROM-set values for the base, IRQ, and DMA.  (Of course you must already
  86. _know_ the base address -- that field is for writing the EEPROM.)
  87. III. Driver operation
  88. IIIa. Ring buffers
  89. The LANCE uses ring buffers of Tx and Rx descriptors.  Each entry describes
  90. the base and length of the data buffer, along with status bits.  The length
  91. of these buffers is set by LANCE_LOG_{RX,TX}_BUFFERS, which is log_2() of
  92. the buffer length (rather than being directly the buffer length) for
  93. implementation ease.  The current values are 2 (Tx) and 4 (Rx), which leads to
  94. ring sizes of 4 (Tx) and 16 (Rx).  Increasing the number of ring entries
  95. needlessly uses extra space and reduces the chance that an upper layer will
  96. be able to reorder queued Tx packets based on priority.  Decreasing the number
  97. of entries makes it more difficult to achieve back-to-back packet transmission
  98. and increases the chance that Rx ring will overflow.  (Consider the worst case
  99. of receiving back-to-back minimum-sized packets.)
  100. The LANCE has the capability to "chain" both Rx and Tx buffers, but this driver
  101. statically allocates full-sized (slightly oversized -- PKT_BUF_SZ) buffers to
  102. avoid the administrative overhead. For the Rx side this avoids dynamically
  103. allocating full-sized buffers "just in case", at the expense of a
  104. memory-to-memory data copy for each packet received.  For most systems this
  105. is a good tradeoff: the Rx buffer will always be in low memory, the copy
  106. is inexpensive, and it primes the cache for later packet processing.  For Tx
  107. the buffers are only used when needed as low-memory bounce buffers.
  108. IIIB. 16M memory limitations.
  109. For the ISA bus master mode all structures used directly by the LANCE,
  110. the initialization block, Rx and Tx rings, and data buffers, must be
  111. accessible from the ISA bus, i.e. in the lower 16M of real memory.
  112. This is a problem for current Linux kernels on >16M machines. The network
  113. devices are initialized after memory initialization, and the kernel doles out
  114. memory from the top of memory downward.  The current solution is to have a
  115. special network initialization routine that's called before memory
  116. initialization; this will eventually be generalized for all network devices.
  117. As mentioned before, low-memory "bounce-buffers" are used when needed.
  118. IIIC. Synchronization
  119. The driver runs as two independent, single-threaded flows of control.  One
  120. is the send-packet routine, which enforces single-threaded use by the
  121. dev->tbusy flag.  The other thread is the interrupt handler, which is single
  122. threaded by the hardware and other software.
  123. The send packet thread has partial control over the Tx ring and 'dev->tbusy'
  124. flag.  It sets the tbusy flag whenever it's queuing a Tx packet. If the next
  125. queue slot is empty, it clears the tbusy flag when finished otherwise it sets
  126. the 'lp->tx_full' flag.
  127. The interrupt handler has exclusive control over the Rx ring and records stats
  128. from the Tx ring. (The Tx-done interrupt can't be selectively turned off, so
  129. we can't avoid the interrupt overhead by having the Tx routine reap the Tx
  130. stats.)  After reaping the stats, it marks the queue entry as empty by setting
  131. the 'base' to zero. Iff the 'lp->tx_full' flag is set, it clears both the
  132. tx_full and tbusy flags.
  133. */
  134. /* Set the number of Tx and Rx buffers, using Log_2(# buffers).
  135.    Reasonable default values are 16 Tx buffers, and 16 Rx buffers.
  136.    That translates to 4 and 4 (16 == 2^^4).
  137.    This is a compile-time option for efficiency.
  138.    */
  139. #ifndef LANCE_LOG_TX_BUFFERS
  140. #define LANCE_LOG_TX_BUFFERS 4
  141. #define LANCE_LOG_RX_BUFFERS 4
  142. #endif
  143. #define TX_RING_SIZE (1 << (LANCE_LOG_TX_BUFFERS))
  144. #define TX_RING_MOD_MASK (TX_RING_SIZE - 1)
  145. #define TX_RING_LEN_BITS ((LANCE_LOG_TX_BUFFERS) << 29)
  146. #define RX_RING_SIZE (1 << (LANCE_LOG_RX_BUFFERS))
  147. #define RX_RING_MOD_MASK (RX_RING_SIZE - 1)
  148. #define RX_RING_LEN_BITS ((LANCE_LOG_RX_BUFFERS) << 29)
  149. #define PKT_BUF_SZ 1544
  150. /* Offsets from base I/O address. */
  151. #define LANCE_DATA 0x10
  152. #define LANCE_ADDR 0x12
  153. #define LANCE_RESET 0x14
  154. #define LANCE_BUS_IF 0x16
  155. #define LANCE_TOTAL_SIZE 0x18
  156. #define TX_TIMEOUT 20
  157. /* The LANCE Rx and Tx ring descriptors. */
  158. struct lance_rx_head {
  159. s32 base;
  160. s16 buf_length; /* This length is 2s complement (negative)! */
  161. s16 msg_length; /* This length is "normal". */
  162. };
  163. struct lance_tx_head {
  164. s32 base;
  165. s16 length; /* Length is 2s complement (negative)! */
  166. s16 misc;
  167. };
  168. /* The LANCE initialization block, described in databook. */
  169. struct lance_init_block {
  170. u16 mode; /* Pre-set mode (reg. 15) */
  171. u8  phys_addr[6]; /* Physical ethernet address */
  172. u32 filter[2]; /* Multicast filter (unused). */
  173. /* Receive and transmit ring base, along with extra bits. */
  174. u32  rx_ring; /* Tx and Rx ring base pointers */
  175. u32  tx_ring;
  176. };
  177. struct lance_private {
  178. /* The Tx and Rx ring entries must be aligned on 8-byte boundaries. */
  179. struct lance_rx_head rx_ring[RX_RING_SIZE];
  180. struct lance_tx_head tx_ring[TX_RING_SIZE];
  181. struct lance_init_block init_block;
  182. const char *name;
  183. /* The saved address of a sent-in-place packet/buffer, for skfree(). */
  184. struct sk_buff* tx_skbuff[TX_RING_SIZE];
  185. /* The addresses of receive-in-place skbuffs. */
  186. struct sk_buff* rx_skbuff[RX_RING_SIZE];
  187. unsigned long rx_buffs; /* Address of Rx and Tx buffers. */
  188. /* Tx low-memory "bounce buffer" address. */
  189. char (*tx_bounce_buffs)[PKT_BUF_SZ];
  190. int cur_rx, cur_tx; /* The next free ring entry */
  191. int dirty_rx, dirty_tx; /* The ring entries to be free()ed. */
  192. int dma;
  193. struct net_device_stats stats;
  194. unsigned char chip_version; /* See lance_chip_type. */
  195. spinlock_t devlock;
  196. };
  197. #define LANCE_MUST_PAD          0x00000001
  198. #define LANCE_ENABLE_AUTOSELECT 0x00000002
  199. #define LANCE_MUST_REINIT_RING  0x00000004
  200. #define LANCE_MUST_UNRESET      0x00000008
  201. #define LANCE_HAS_MISSED_FRAME  0x00000010
  202. /* A mapping from the chip ID number to the part number and features.
  203.    These are from the datasheets -- in real life the '970 version
  204.    reportedly has the same ID as the '965. */
  205. static struct lance_chip_type {
  206. int id_number;
  207. const char *name;
  208. int flags;
  209. } chip_table[] = {
  210. {0x0000, "LANCE 7990", /* Ancient lance chip.  */
  211. LANCE_MUST_PAD + LANCE_MUST_UNRESET},
  212. {0x0003, "PCnet/ISA 79C960", /* 79C960 PCnet/ISA.  */
  213. LANCE_ENABLE_AUTOSELECT + LANCE_MUST_REINIT_RING +
  214. LANCE_HAS_MISSED_FRAME},
  215. {0x2260, "PCnet/ISA+ 79C961", /* 79C961 PCnet/ISA+, Plug-n-Play.  */
  216. LANCE_ENABLE_AUTOSELECT + LANCE_MUST_REINIT_RING +
  217. LANCE_HAS_MISSED_FRAME},
  218. {0x2420, "PCnet/PCI 79C970", /* 79C970 or 79C974 PCnet-SCSI, PCI. */
  219. LANCE_ENABLE_AUTOSELECT + LANCE_MUST_REINIT_RING +
  220. LANCE_HAS_MISSED_FRAME},
  221. /* Bug: the PCnet/PCI actually uses the PCnet/VLB ID number, so just call
  222. it the PCnet32. */
  223. {0x2430, "PCnet32", /* 79C965 PCnet for VL bus. */
  224. LANCE_ENABLE_AUTOSELECT + LANCE_MUST_REINIT_RING +
  225. LANCE_HAS_MISSED_FRAME},
  226.         {0x2621, "PCnet/PCI-II 79C970A",        /* 79C970A PCInetPCI II. */
  227.                 LANCE_ENABLE_AUTOSELECT + LANCE_MUST_REINIT_RING +
  228.                         LANCE_HAS_MISSED_FRAME},
  229. {0x0,   "PCnet (unknown)",
  230. LANCE_ENABLE_AUTOSELECT + LANCE_MUST_REINIT_RING +
  231. LANCE_HAS_MISSED_FRAME},
  232. };
  233. enum {OLD_LANCE = 0, PCNET_ISA=1, PCNET_ISAP=2, PCNET_PCI=3, PCNET_VLB=4, PCNET_PCI_II=5, LANCE_UNKNOWN=6};
  234. /* Non-zero if lance_probe1() needs to allocate low-memory bounce buffers.
  235.    Assume yes until we know the memory size. */
  236. static unsigned char lance_need_isa_bounce_buffers = 1;
  237. static int lance_open(struct net_device *dev);
  238. static int lance_open_fail(struct net_device *dev);
  239. static void lance_init_ring(struct net_device *dev, int mode);
  240. static int lance_start_xmit(struct sk_buff *skb, struct net_device *dev);
  241. static int lance_rx(struct net_device *dev);
  242. static void lance_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  243. static int lance_close(struct net_device *dev);
  244. static struct net_device_stats *lance_get_stats(struct net_device *dev);
  245. static void set_multicast_list(struct net_device *dev);
  246. static void lance_tx_timeout (struct net_device *dev);
  247. #ifdef MODULE
  248. #define MAX_CARDS 8 /* Max number of interfaces (cards) per module */
  249. static struct net_device dev_lance[MAX_CARDS];
  250. static int io[MAX_CARDS];
  251. static int dma[MAX_CARDS];
  252. static int irq[MAX_CARDS];
  253. MODULE_PARM(io, "1-" __MODULE_STRING(MAX_CARDS) "i");
  254. MODULE_PARM(dma, "1-" __MODULE_STRING(MAX_CARDS) "i");
  255. MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_CARDS) "i");
  256. MODULE_PARM(lance_debug, "i");
  257. MODULE_PARM_DESC(io, "LANCE/PCnet I/O base address(es),required");
  258. MODULE_PARM_DESC(dma, "LANCE/PCnet ISA DMA channel (ignored for some devices)");
  259. MODULE_PARM_DESC(irq, "LANCE/PCnet IRQ number (ignored for some devices)");
  260. MODULE_PARM_DESC(lance_debug, "LANCE/PCnet debug level (0-7)");
  261. int init_module(void)
  262. {
  263. int this_dev, found = 0;
  264. for (this_dev = 0; this_dev < MAX_CARDS; this_dev++) {
  265. struct net_device *dev = &dev_lance[this_dev];
  266. dev->irq = irq[this_dev];
  267. dev->base_addr = io[this_dev];
  268. dev->dma = dma[this_dev];
  269. dev->init = lance_probe;
  270. if (io[this_dev] == 0)  {
  271. if (this_dev != 0) break; /* only complain once */
  272. printk(KERN_NOTICE "lance.c: Module autoprobing not allowed. Append "io=0xNNN" value(s).n");
  273. return -EPERM;
  274. }
  275. if (register_netdev(dev) != 0) {
  276. printk(KERN_WARNING "lance.c: No PCnet/LANCE card found (i/o = 0x%x).n", io[this_dev]);
  277. if (found != 0) return 0; /* Got at least one. */
  278. return -ENXIO;
  279. }
  280. found++;
  281. }
  282. return 0;
  283. }
  284. void cleanup_module(void)
  285. {
  286. int this_dev;
  287. for (this_dev = 0; this_dev < MAX_CARDS; this_dev++) {
  288. struct net_device *dev = &dev_lance[this_dev];
  289. if (dev->priv != NULL) {
  290. unregister_netdev(dev);
  291. free_dma(dev->dma);
  292. release_region(dev->base_addr, LANCE_TOTAL_SIZE);
  293. kfree(dev->priv);
  294. dev->priv = NULL;
  295. }
  296. }
  297. }
  298. #endif /* MODULE */
  299. MODULE_LICENSE("GPL");
  300. /* Starting in v2.1.*, the LANCE/PCnet probe is now similar to the other
  301.    board probes now that kmalloc() can allocate ISA DMA-able regions.
  302.    This also allows the LANCE driver to be used as a module.
  303.    */
  304. int lance_probe(struct net_device *dev)
  305. {
  306. int *port, result;
  307. if (high_memory <= phys_to_virt(16*1024*1024))
  308. lance_need_isa_bounce_buffers = 0;
  309. for (port = lance_portlist; *port; port++) {
  310. int ioaddr = *port;
  311. struct resource *r = request_region(ioaddr, LANCE_TOTAL_SIZE,
  312. "lance-probe");
  313. if (r) {
  314. /* Detect "normal" 0x57 0x57 and the NI6510EB 0x52 0x44
  315.    signatures w/ minimal I/O reads */
  316. char offset15, offset14 = inb(ioaddr + 14);
  317. if ((offset14 == 0x52 || offset14 == 0x57) &&
  318. ((offset15 = inb(ioaddr + 15)) == 0x57 ||
  319.  offset15 == 0x44)) {
  320. result = lance_probe1(dev, ioaddr, 0, 0);
  321. if (!result) {
  322. struct lance_private *lp = dev->priv;
  323. int ver = lp->chip_version;
  324. r->name = chip_table[ver].name;
  325. return 0;
  326. }
  327. }
  328. release_resource(r);
  329. }
  330. }
  331. return -ENODEV;
  332. }
  333. static int __init lance_probe1(struct net_device *dev, int ioaddr, int irq, int options)
  334. {
  335. struct lance_private *lp;
  336. short dma_channels; /* Mark spuriously-busy DMA channels */
  337. int i, reset_val, lance_version;
  338. const char *chipname;
  339. /* Flags for specific chips or boards. */
  340. unsigned char hpJ2405A = 0; /* HP ISA adaptor */
  341. int hp_builtin = 0; /* HP on-board ethernet. */
  342. static int did_version; /* Already printed version info. */
  343. unsigned long flags;
  344. /* First we look for special cases.
  345.    Check for HP's on-board ethernet by looking for 'HP' in the BIOS.
  346.    There are two HP versions, check the BIOS for the configuration port.
  347.    This method provided by L. Julliard, Laurent_Julliard@grenoble.hp.com.
  348.    */
  349. if (isa_readw(0x000f0102) == 0x5048)  {
  350. static const short ioaddr_table[] = { 0x300, 0x320, 0x340, 0x360};
  351. int hp_port = (isa_readl(0x000f00f1) & 1)  ? 0x499 : 0x99;
  352. /* We can have boards other than the built-in!  Verify this is on-board. */
  353. if ((inb(hp_port) & 0xc0) == 0x80
  354. && ioaddr_table[inb(hp_port) & 3] == ioaddr)
  355. hp_builtin = hp_port;
  356. }
  357. /* We also recognize the HP Vectra on-board here, but check below. */
  358. hpJ2405A = (inb(ioaddr) == 0x08 && inb(ioaddr+1) == 0x00
  359. && inb(ioaddr+2) == 0x09);
  360. /* Reset the LANCE.  */
  361. reset_val = inw(ioaddr+LANCE_RESET); /* Reset the LANCE */
  362. /* The Un-Reset needed is only needed for the real NE2100, and will
  363.    confuse the HP board. */
  364. if (!hpJ2405A)
  365. outw(reset_val, ioaddr+LANCE_RESET);
  366. outw(0x0000, ioaddr+LANCE_ADDR); /* Switch to window 0 */
  367. if (inw(ioaddr+LANCE_DATA) != 0x0004)
  368. return -ENODEV;
  369. /* Get the version of the chip. */
  370. outw(88, ioaddr+LANCE_ADDR);
  371. if (inw(ioaddr+LANCE_ADDR) != 88) {
  372. lance_version = 0;
  373. } else { /* Good, it's a newer chip. */
  374. int chip_version = inw(ioaddr+LANCE_DATA);
  375. outw(89, ioaddr+LANCE_ADDR);
  376. chip_version |= inw(ioaddr+LANCE_DATA) << 16;
  377. if (lance_debug > 2)
  378. printk("  LANCE chip version is %#x.n", chip_version);
  379. if ((chip_version & 0xfff) != 0x003)
  380. return -ENODEV;
  381. chip_version = (chip_version >> 12) & 0xffff;
  382. for (lance_version = 1; chip_table[lance_version].id_number; lance_version++) {
  383. if (chip_table[lance_version].id_number == chip_version)
  384. break;
  385. }
  386. }
  387. /* We can't use init_etherdev() to allocate dev->priv because it must
  388.    a ISA DMA-able region. */
  389. dev = init_etherdev(dev, 0);
  390. if (!dev)
  391. return -ENOMEM;
  392. SET_MODULE_OWNER(dev);
  393. dev->open = lance_open_fail;
  394. chipname = chip_table[lance_version].name;
  395. printk("%s: %s at %#3x,", dev->name, chipname, ioaddr);
  396. /* There is a 16 byte station address PROM at the base address.
  397.    The first six bytes are the station address. */
  398. for (i = 0; i < 6; i++)
  399. printk(" %2.2x", dev->dev_addr[i] = inb(ioaddr + i));
  400. dev->base_addr = ioaddr;
  401. /* Make certain the data structures used by the LANCE are aligned and DMAble. */
  402. lp = (struct lance_private *)(((unsigned long)kmalloc(sizeof(*lp)+7,
  403.    GFP_DMA | GFP_KERNEL)+7) & ~7);
  404. if(lp==NULL)
  405. return -ENODEV;
  406. if (lance_debug > 6) printk(" (#0x%05lx)", (unsigned long)lp);
  407. memset(lp, 0, sizeof(*lp));
  408. dev->priv = lp;
  409. lp->name = chipname;
  410. lp->rx_buffs = (unsigned long)kmalloc(PKT_BUF_SZ*RX_RING_SIZE,
  411.   GFP_DMA | GFP_KERNEL);
  412. if (!lp->rx_buffs)
  413. goto out_lp;
  414. if (lance_need_isa_bounce_buffers) {
  415. lp->tx_bounce_buffs = kmalloc(PKT_BUF_SZ*TX_RING_SIZE,
  416.   GFP_DMA | GFP_KERNEL);
  417. if (!lp->tx_bounce_buffs)
  418. goto out_rx;
  419. } else
  420. lp->tx_bounce_buffs = NULL;
  421. lp->chip_version = lance_version;
  422. lp->devlock = SPIN_LOCK_UNLOCKED;
  423. lp->init_block.mode = 0x0003; /* Disable Rx and Tx. */
  424. for (i = 0; i < 6; i++)
  425. lp->init_block.phys_addr[i] = dev->dev_addr[i];
  426. lp->init_block.filter[0] = 0x00000000;
  427. lp->init_block.filter[1] = 0x00000000;
  428. lp->init_block.rx_ring = ((u32)virt_to_bus(lp->rx_ring) & 0xffffff) | RX_RING_LEN_BITS;
  429. lp->init_block.tx_ring = ((u32)virt_to_bus(lp->tx_ring) & 0xffffff) | TX_RING_LEN_BITS;
  430. outw(0x0001, ioaddr+LANCE_ADDR);
  431. inw(ioaddr+LANCE_ADDR);
  432. outw((short) (u32) virt_to_bus(&lp->init_block), ioaddr+LANCE_DATA);
  433. outw(0x0002, ioaddr+LANCE_ADDR);
  434. inw(ioaddr+LANCE_ADDR);
  435. outw(((u32)virt_to_bus(&lp->init_block)) >> 16, ioaddr+LANCE_DATA);
  436. outw(0x0000, ioaddr+LANCE_ADDR);
  437. inw(ioaddr+LANCE_ADDR);
  438. if (irq) { /* Set iff PCI card. */
  439. dev->dma = 4; /* Native bus-master, no DMA channel needed. */
  440. dev->irq = irq;
  441. } else if (hp_builtin) {
  442. static const char dma_tbl[4] = {3, 5, 6, 0};
  443. static const char irq_tbl[4] = {3, 4, 5, 9};
  444. unsigned char port_val = inb(hp_builtin);
  445. dev->dma = dma_tbl[(port_val >> 4) & 3];
  446. dev->irq = irq_tbl[(port_val >> 2) & 3];
  447. printk(" HP Vectra IRQ %d DMA %d.n", dev->irq, dev->dma);
  448. } else if (hpJ2405A) {
  449. static const char dma_tbl[4] = {3, 5, 6, 7};
  450. static const char irq_tbl[8] = {3, 4, 5, 9, 10, 11, 12, 15};
  451. short reset_val = inw(ioaddr+LANCE_RESET);
  452. dev->dma = dma_tbl[(reset_val >> 2) & 3];
  453. dev->irq = irq_tbl[(reset_val >> 4) & 7];
  454. printk(" HP J2405A IRQ %d DMA %d.n", dev->irq, dev->dma);
  455. } else if (lance_version == PCNET_ISAP) { /* The plug-n-play version. */
  456. short bus_info;
  457. outw(8, ioaddr+LANCE_ADDR);
  458. bus_info = inw(ioaddr+LANCE_BUS_IF);
  459. dev->dma = bus_info & 0x07;
  460. dev->irq = (bus_info >> 4) & 0x0F;
  461. } else {
  462. /* The DMA channel may be passed in PARAM1. */
  463. if (dev->mem_start & 0x07)
  464. dev->dma = dev->mem_start & 0x07;
  465. }
  466. if (dev->dma == 0) {
  467. /* Read the DMA channel status register, so that we can avoid
  468.    stuck DMA channels in the DMA detection below. */
  469. dma_channels = ((inb(DMA1_STAT_REG) >> 4) & 0x0f) |
  470. (inb(DMA2_STAT_REG) & 0xf0);
  471. }
  472. if (dev->irq >= 2)
  473. printk(" assigned IRQ %d", dev->irq);
  474. else if (lance_version != 0)  { /* 7990 boards need DMA detection first. */
  475. /* To auto-IRQ we enable the initialization-done and DMA error
  476.    interrupts. For ISA boards we get a DMA error, but VLB and PCI
  477.    boards will work. */
  478. autoirq_setup(0);
  479. /* Trigger an initialization just for the interrupt. */
  480. outw(0x0041, ioaddr+LANCE_DATA);
  481. dev->irq = autoirq_report(2);
  482. if (dev->irq)
  483. printk(", probed IRQ %d", dev->irq);
  484. else {
  485. printk(", failed to detect IRQ line.n");
  486. return -ENODEV;
  487. }
  488. /* Check for the initialization done bit, 0x0100, which means
  489.    that we don't need a DMA channel. */
  490. if (inw(ioaddr+LANCE_DATA) & 0x0100)
  491. dev->dma = 4;
  492. }
  493. if (dev->dma == 4) {
  494. printk(", no DMA needed.n");
  495. } else if (dev->dma) {
  496. if (request_dma(dev->dma, chipname)) {
  497. printk("DMA %d allocation failed.n", dev->dma);
  498. return -ENODEV;
  499. } else
  500. printk(", assigned DMA %d.n", dev->dma);
  501. } else { /* OK, we have to auto-DMA. */
  502. for (i = 0; i < 4; i++) {
  503. static const char dmas[] = { 5, 6, 7, 3 };
  504. int dma = dmas[i];
  505. int boguscnt;
  506. /* Don't enable a permanently busy DMA channel, or the machine
  507.    will hang. */
  508. if (test_bit(dma, &dma_channels))
  509. continue;
  510. outw(0x7f04, ioaddr+LANCE_DATA); /* Clear the memory error bits. */
  511. if (request_dma(dma, chipname))
  512. continue;
  513. flags=claim_dma_lock();
  514. set_dma_mode(dma, DMA_MODE_CASCADE);
  515. enable_dma(dma);
  516. release_dma_lock(flags);
  517. /* Trigger an initialization. */
  518. outw(0x0001, ioaddr+LANCE_DATA);
  519. for (boguscnt = 100; boguscnt > 0; --boguscnt)
  520. if (inw(ioaddr+LANCE_DATA) & 0x0900)
  521. break;
  522. if (inw(ioaddr+LANCE_DATA) & 0x0100) {
  523. dev->dma = dma;
  524. printk(", DMA %d.n", dev->dma);
  525. break;
  526. } else {
  527. flags=claim_dma_lock();
  528. disable_dma(dma);
  529. release_dma_lock(flags);
  530. free_dma(dma);
  531. }
  532. }
  533. if (i == 4) { /* Failure: bail. */
  534. printk("DMA detection failed.n");
  535. return -ENODEV;
  536. }
  537. }
  538. if (lance_version == 0 && dev->irq == 0) {
  539. /* We may auto-IRQ now that we have a DMA channel. */
  540. /* Trigger an initialization just for the interrupt. */
  541. autoirq_setup(0);
  542. outw(0x0041, ioaddr+LANCE_DATA);
  543. dev->irq = autoirq_report(4);
  544. if (dev->irq == 0) {
  545. printk("  Failed to detect the 7990 IRQ line.n");
  546. return -ENODEV;
  547. }
  548. printk("  Auto-IRQ detected IRQ%d.n", dev->irq);
  549. }
  550. if (chip_table[lp->chip_version].flags & LANCE_ENABLE_AUTOSELECT) {
  551. /* Turn on auto-select of media (10baseT or BNC) so that the user
  552.    can watch the LEDs even if the board isn't opened. */
  553. outw(0x0002, ioaddr+LANCE_ADDR);
  554. /* Don't touch 10base2 power bit. */
  555. outw(inw(ioaddr+LANCE_BUS_IF) | 0x0002, ioaddr+LANCE_BUS_IF);
  556. }
  557. if (lance_debug > 0  &&  did_version++ == 0)
  558. printk(version);
  559. /* The LANCE-specific entries in the device structure. */
  560. dev->open = lance_open;
  561. dev->hard_start_xmit = lance_start_xmit;
  562. dev->stop = lance_close;
  563. dev->get_stats = lance_get_stats;
  564. dev->set_multicast_list = set_multicast_list;
  565. dev->tx_timeout = lance_tx_timeout;
  566. dev->watchdog_timeo = TX_TIMEOUT;
  567. return 0;
  568. out_rx: kfree((void*)lp->rx_buffs);
  569. out_lp: kfree(lp);
  570. return -ENOMEM;
  571. }
  572. static int
  573. lance_open_fail(struct net_device *dev)
  574. {
  575. return -ENODEV;
  576. }
  577. static int
  578. lance_open(struct net_device *dev)
  579. {
  580. struct lance_private *lp = dev->priv;
  581. int ioaddr = dev->base_addr;
  582. int i;
  583. if (dev->irq == 0 ||
  584. request_irq(dev->irq, &lance_interrupt, 0, lp->name, dev)) {
  585. return -EAGAIN;
  586. }
  587. /* We used to allocate DMA here, but that was silly.
  588.    DMA lines can't be shared!  We now permanently allocate them. */
  589. /* Reset the LANCE */
  590. inw(ioaddr+LANCE_RESET);
  591. /* The DMA controller is used as a no-operation slave, "cascade mode". */
  592. if (dev->dma != 4) {
  593. unsigned long flags=claim_dma_lock();
  594. enable_dma(dev->dma);
  595. set_dma_mode(dev->dma, DMA_MODE_CASCADE);
  596. release_dma_lock(flags);
  597. }
  598. /* Un-Reset the LANCE, needed only for the NE2100. */
  599. if (chip_table[lp->chip_version].flags & LANCE_MUST_UNRESET)
  600. outw(0, ioaddr+LANCE_RESET);
  601. if (chip_table[lp->chip_version].flags & LANCE_ENABLE_AUTOSELECT) {
  602. /* This is 79C960-specific: Turn on auto-select of media (AUI, BNC). */
  603. outw(0x0002, ioaddr+LANCE_ADDR);
  604. /* Only touch autoselect bit. */
  605. outw(inw(ioaddr+LANCE_BUS_IF) | 0x0002, ioaddr+LANCE_BUS_IF);
  606.   }
  607. if (lance_debug > 1)
  608. printk("%s: lance_open() irq %d dma %d tx/rx rings %#x/%#x init %#x.n",
  609.    dev->name, dev->irq, dev->dma,
  610.            (u32) virt_to_bus(lp->tx_ring),
  611.            (u32) virt_to_bus(lp->rx_ring),
  612.    (u32) virt_to_bus(&lp->init_block));
  613. lance_init_ring(dev, GFP_KERNEL);
  614. /* Re-initialize the LANCE, and start it when done. */
  615. outw(0x0001, ioaddr+LANCE_ADDR);
  616. outw((short) (u32) virt_to_bus(&lp->init_block), ioaddr+LANCE_DATA);
  617. outw(0x0002, ioaddr+LANCE_ADDR);
  618. outw(((u32)virt_to_bus(&lp->init_block)) >> 16, ioaddr+LANCE_DATA);
  619. outw(0x0004, ioaddr+LANCE_ADDR);
  620. outw(0x0915, ioaddr+LANCE_DATA);
  621. outw(0x0000, ioaddr+LANCE_ADDR);
  622. outw(0x0001, ioaddr+LANCE_DATA);
  623. netif_start_queue (dev);
  624. i = 0;
  625. while (i++ < 100)
  626. if (inw(ioaddr+LANCE_DATA) & 0x0100)
  627. break;
  628. /* 
  629.  * We used to clear the InitDone bit, 0x0100, here but Mark Stockton
  630.  * reports that doing so triggers a bug in the '974.
  631.  */
  632.   outw(0x0042, ioaddr+LANCE_DATA);
  633. if (lance_debug > 2)
  634. printk("%s: LANCE open after %d ticks, init block %#x csr0 %4.4x.n",
  635.    dev->name, i, (u32) virt_to_bus(&lp->init_block), inw(ioaddr+LANCE_DATA));
  636. return 0; /* Always succeed */
  637. }
  638. /* The LANCE has been halted for one reason or another (busmaster memory
  639.    arbitration error, Tx FIFO underflow, driver stopped it to reconfigure,
  640.    etc.).  Modern LANCE variants always reload their ring-buffer
  641.    configuration when restarted, so we must reinitialize our ring
  642.    context before restarting.  As part of this reinitialization,
  643.    find all packets still on the Tx ring and pretend that they had been
  644.    sent (in effect, drop the packets on the floor) - the higher-level
  645.    protocols will time out and retransmit.  It'd be better to shuffle
  646.    these skbs to a temp list and then actually re-Tx them after
  647.    restarting the chip, but I'm too lazy to do so right now.  dplatt@3do.com
  648. */
  649. static void 
  650. lance_purge_ring(struct net_device *dev)
  651. {
  652. struct lance_private *lp = dev->priv;
  653. int i;
  654. /* Free all the skbuffs in the Rx and Tx queues. */
  655. for (i = 0; i < RX_RING_SIZE; i++) {
  656. struct sk_buff *skb = lp->rx_skbuff[i];
  657. lp->rx_skbuff[i] = 0;
  658. lp->rx_ring[i].base = 0; /* Not owned by LANCE chip. */
  659. if (skb)
  660. dev_kfree_skb_any(skb);
  661. }
  662. for (i = 0; i < TX_RING_SIZE; i++) {
  663. if (lp->tx_skbuff[i]) {
  664. dev_kfree_skb_any(lp->tx_skbuff[i]);
  665. lp->tx_skbuff[i] = NULL;
  666. }
  667. }
  668. }
  669. /* Initialize the LANCE Rx and Tx rings. */
  670. static void
  671. lance_init_ring(struct net_device *dev, int gfp)
  672. {
  673. struct lance_private *lp = dev->priv;
  674. int i;
  675. lp->cur_rx = lp->cur_tx = 0;
  676. lp->dirty_rx = lp->dirty_tx = 0;
  677. for (i = 0; i < RX_RING_SIZE; i++) {
  678. struct sk_buff *skb;
  679. void *rx_buff;
  680. skb = alloc_skb(PKT_BUF_SZ, GFP_DMA | gfp);
  681. lp->rx_skbuff[i] = skb;
  682. if (skb) {
  683. skb->dev = dev;
  684. rx_buff = skb->tail;
  685. } else
  686. rx_buff = kmalloc(PKT_BUF_SZ, GFP_DMA | gfp);
  687. if (rx_buff == NULL)
  688. lp->rx_ring[i].base = 0;
  689. else
  690. lp->rx_ring[i].base = (u32)virt_to_bus(rx_buff) | 0x80000000;
  691. lp->rx_ring[i].buf_length = -PKT_BUF_SZ;
  692. }
  693. /* The Tx buffer address is filled in as needed, but we do need to clear
  694.    the upper ownership bit. */
  695. for (i = 0; i < TX_RING_SIZE; i++) {
  696. lp->tx_skbuff[i] = 0;
  697. lp->tx_ring[i].base = 0;
  698. }
  699. lp->init_block.mode = 0x0000;
  700. for (i = 0; i < 6; i++)
  701. lp->init_block.phys_addr[i] = dev->dev_addr[i];
  702. lp->init_block.filter[0] = 0x00000000;
  703. lp->init_block.filter[1] = 0x00000000;
  704. lp->init_block.rx_ring = ((u32)virt_to_bus(lp->rx_ring) & 0xffffff) | RX_RING_LEN_BITS;
  705. lp->init_block.tx_ring = ((u32)virt_to_bus(lp->tx_ring) & 0xffffff) | TX_RING_LEN_BITS;
  706. }
  707. static void
  708. lance_restart(struct net_device *dev, unsigned int csr0_bits, int must_reinit)
  709. {
  710. struct lance_private *lp = dev->priv;
  711. if (must_reinit ||
  712. (chip_table[lp->chip_version].flags & LANCE_MUST_REINIT_RING)) {
  713. lance_purge_ring(dev);
  714. lance_init_ring(dev, GFP_ATOMIC);
  715. }
  716. outw(0x0000,    dev->base_addr + LANCE_ADDR);
  717. outw(csr0_bits, dev->base_addr + LANCE_DATA);
  718. }
  719. static void lance_tx_timeout (struct net_device *dev)
  720. {
  721. struct lance_private *lp = (struct lance_private *) dev->priv;
  722. int ioaddr = dev->base_addr;
  723. outw (0, ioaddr + LANCE_ADDR);
  724. printk ("%s: transmit timed out, status %4.4x, resetting.n",
  725. dev->name, inw (ioaddr + LANCE_DATA));
  726. outw (0x0004, ioaddr + LANCE_DATA);
  727. lp->stats.tx_errors++;
  728. #ifndef final_version
  729. if (lance_debug > 3) {
  730. int i;
  731. printk (" Ring data dump: dirty_tx %d cur_tx %d%s cur_rx %d.",
  732.   lp->dirty_tx, lp->cur_tx, netif_queue_stopped(dev) ? " (full)" : "",
  733. lp->cur_rx);
  734. for (i = 0; i < RX_RING_SIZE; i++)
  735. printk ("%s %08x %04x %04x", i & 0x3 ? "" : "n ",
  736.  lp->rx_ring[i].base, -lp->rx_ring[i].buf_length,
  737. lp->rx_ring[i].msg_length);
  738. for (i = 0; i < TX_RING_SIZE; i++)
  739. printk ("%s %08x %04x %04x", i & 0x3 ? "" : "n ",
  740.      lp->tx_ring[i].base, -lp->tx_ring[i].length,
  741. lp->tx_ring[i].misc);
  742. printk ("n");
  743. }
  744. #endif
  745. lance_restart (dev, 0x0043, 1);
  746. dev->trans_start = jiffies;
  747. netif_wake_queue (dev);
  748. }
  749. static int lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
  750. {
  751. struct lance_private *lp = dev->priv;
  752. int ioaddr = dev->base_addr;
  753. int entry;
  754. unsigned long flags;
  755. spin_lock_irqsave(&lp->devlock, flags);
  756. if (lance_debug > 3) {
  757. outw(0x0000, ioaddr+LANCE_ADDR);
  758. printk("%s: lance_start_xmit() called, csr0 %4.4x.n", dev->name,
  759.    inw(ioaddr+LANCE_DATA));
  760. outw(0x0000, ioaddr+LANCE_DATA);
  761. }
  762. /* Fill in a Tx ring entry */
  763. /* Mask to ring buffer boundary. */
  764. entry = lp->cur_tx & TX_RING_MOD_MASK;
  765. /* Caution: the write order is important here, set the base address
  766.    with the "ownership" bits last. */
  767. /* The old LANCE chips doesn't automatically pad buffers to min. size. */
  768. if (chip_table[lp->chip_version].flags & LANCE_MUST_PAD) {
  769. lp->tx_ring[entry].length =
  770. -(ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN);
  771. } else
  772. lp->tx_ring[entry].length = -skb->len;
  773. lp->tx_ring[entry].misc = 0x0000;
  774. lp->stats.tx_bytes += skb->len;
  775. /* If any part of this buffer is >16M we must copy it to a low-memory
  776.    buffer. */
  777. if ((u32)virt_to_bus(skb->data) + skb->len > 0x01000000) {
  778. if (lance_debug > 5)
  779. printk("%s: bouncing a high-memory packet (%#x).n",
  780.    dev->name, (u32)virt_to_bus(skb->data));
  781. memcpy(&lp->tx_bounce_buffs[entry], skb->data, skb->len);
  782. lp->tx_ring[entry].base =
  783. ((u32)virt_to_bus((lp->tx_bounce_buffs + entry)) & 0xffffff) | 0x83000000;
  784. dev_kfree_skb(skb);
  785. } else {
  786. lp->tx_skbuff[entry] = skb;
  787. lp->tx_ring[entry].base = ((u32)virt_to_bus(skb->data) & 0xffffff) | 0x83000000;
  788. }
  789. lp->cur_tx++;
  790. /* Trigger an immediate send poll. */
  791. outw(0x0000, ioaddr+LANCE_ADDR);
  792. outw(0x0048, ioaddr+LANCE_DATA);
  793. dev->trans_start = jiffies;
  794. if ((lp->cur_tx - lp->dirty_tx) >= TX_RING_SIZE)
  795. netif_stop_queue(dev);
  796. spin_unlock_irqrestore(&lp->devlock, flags);
  797. return 0;
  798. }
  799. /* The LANCE interrupt handler. */
  800. static void
  801. lance_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  802. {
  803. struct net_device *dev = dev_id;
  804. struct lance_private *lp;
  805. int csr0, ioaddr, boguscnt=10;
  806. int must_restart;
  807. if (dev == NULL) {
  808. printk ("lance_interrupt(): irq %d for unknown device.n", irq);
  809. return;
  810. }
  811. ioaddr = dev->base_addr;
  812. lp = dev->priv;
  813. spin_lock (&lp->devlock);
  814. outw(0x00, dev->base_addr + LANCE_ADDR);
  815. while ((csr0 = inw(dev->base_addr + LANCE_DATA)) & 0x8600
  816.    && --boguscnt >= 0) {
  817. /* Acknowledge all of the current interrupt sources ASAP. */
  818. outw(csr0 & ~0x004f, dev->base_addr + LANCE_DATA);
  819. must_restart = 0;
  820. if (lance_debug > 5)
  821. printk("%s: interrupt  csr0=%#2.2x new csr=%#2.2x.n",
  822.    dev->name, csr0, inw(dev->base_addr + LANCE_DATA));
  823. if (csr0 & 0x0400) /* Rx interrupt */
  824. lance_rx(dev);
  825. if (csr0 & 0x0200) { /* Tx-done interrupt */
  826. int dirty_tx = lp->dirty_tx;
  827. while (dirty_tx < lp->cur_tx) {
  828. int entry = dirty_tx & TX_RING_MOD_MASK;
  829. int status = lp->tx_ring[entry].base;
  830. if (status < 0)
  831. break; /* It still hasn't been Txed */
  832. lp->tx_ring[entry].base = 0;
  833. if (status & 0x40000000) {
  834. /* There was an major error, log it. */
  835. int err_status = lp->tx_ring[entry].misc;
  836. lp->stats.tx_errors++;
  837. if (err_status & 0x0400) lp->stats.tx_aborted_errors++;
  838. if (err_status & 0x0800) lp->stats.tx_carrier_errors++;
  839. if (err_status & 0x1000) lp->stats.tx_window_errors++;
  840. if (err_status & 0x4000) {
  841. /* Ackk!  On FIFO errors the Tx unit is turned off! */
  842. lp->stats.tx_fifo_errors++;
  843. /* Remove this verbosity later! */
  844. printk("%s: Tx FIFO error! Status %4.4x.n",
  845.    dev->name, csr0);
  846. /* Restart the chip. */
  847. must_restart = 1;
  848. }
  849. } else {
  850. if (status & 0x18000000)
  851. lp->stats.collisions++;
  852. lp->stats.tx_packets++;
  853. }
  854. /* We must free the original skb if it's not a data-only copy
  855.    in the bounce buffer. */
  856. if (lp->tx_skbuff[entry]) {
  857. dev_kfree_skb_irq(lp->tx_skbuff[entry]);
  858. lp->tx_skbuff[entry] = 0;
  859. }
  860. dirty_tx++;
  861. }
  862. #ifndef final_version
  863. if (lp->cur_tx - dirty_tx >= TX_RING_SIZE) {
  864. printk("out-of-sync dirty pointer, %d vs. %d, full=%s.n",
  865.    dirty_tx, lp->cur_tx,
  866.    netif_queue_stopped(dev) ? "yes" : "no");
  867. dirty_tx += TX_RING_SIZE;
  868. }
  869. #endif
  870. /* if the ring is no longer full, accept more packets */
  871. if (netif_queue_stopped(dev) &&
  872.     dirty_tx > lp->cur_tx - TX_RING_SIZE + 2)
  873. netif_wake_queue (dev);
  874. lp->dirty_tx = dirty_tx;
  875. }
  876. /* Log misc errors. */
  877. if (csr0 & 0x4000) lp->stats.tx_errors++; /* Tx babble. */
  878. if (csr0 & 0x1000) lp->stats.rx_errors++; /* Missed a Rx frame. */
  879. if (csr0 & 0x0800) {
  880. printk("%s: Bus master arbitration failure, status %4.4x.n",
  881.    dev->name, csr0);
  882. /* Restart the chip. */
  883. must_restart = 1;
  884. }
  885. if (must_restart) {
  886. /* stop the chip to clear the error condition, then restart */
  887. outw(0x0000, dev->base_addr + LANCE_ADDR);
  888. outw(0x0004, dev->base_addr + LANCE_DATA);
  889. lance_restart(dev, 0x0002, 0);
  890. }
  891. }
  892. /* Clear any other interrupt, and set interrupt enable. */
  893. outw(0x0000, dev->base_addr + LANCE_ADDR);
  894. outw(0x7940, dev->base_addr + LANCE_DATA);
  895. if (lance_debug > 4)
  896. printk("%s: exiting interrupt, csr%d=%#4.4x.n",
  897.    dev->name, inw(ioaddr + LANCE_ADDR),
  898.    inw(dev->base_addr + LANCE_DATA));
  899. spin_unlock (&lp->devlock);
  900. }
  901. static int
  902. lance_rx(struct net_device *dev)
  903. {
  904. struct lance_private *lp = dev->priv;
  905. int entry = lp->cur_rx & RX_RING_MOD_MASK;
  906. int i;
  907. /* If we own the next entry, it's a new packet. Send it up. */
  908. while (lp->rx_ring[entry].base >= 0) {
  909. int status = lp->rx_ring[entry].base >> 24;
  910. if (status != 0x03) { /* There was an error. */
  911. /* There is a tricky error noted by John Murphy,
  912.    <murf@perftech.com> to Russ Nelson: Even with full-sized
  913.    buffers it's possible for a jabber packet to use two
  914.    buffers, with only the last correctly noting the error. */
  915. if (status & 0x01) /* Only count a general error at the */
  916. lp->stats.rx_errors++; /* end of a packet.*/
  917. if (status & 0x20) lp->stats.rx_frame_errors++;
  918. if (status & 0x10) lp->stats.rx_over_errors++;
  919. if (status & 0x08) lp->stats.rx_crc_errors++;
  920. if (status & 0x04) lp->stats.rx_fifo_errors++;
  921. lp->rx_ring[entry].base &= 0x03ffffff;
  922. }
  923. else 
  924. {
  925. /* Malloc up new buffer, compatible with net3. */
  926. short pkt_len = (lp->rx_ring[entry].msg_length & 0xfff)-4;
  927. struct sk_buff *skb;
  928. if(pkt_len<60)
  929. {
  930. printk("%s: Runt packet!n",dev->name);
  931. lp->stats.rx_errors++;
  932. }
  933. else
  934. {
  935. skb = dev_alloc_skb(pkt_len+2);
  936. if (skb == NULL) 
  937. {
  938. printk("%s: Memory squeeze, deferring packet.n", dev->name);
  939. for (i=0; i < RX_RING_SIZE; i++)
  940. if (lp->rx_ring[(entry+i) & RX_RING_MOD_MASK].base < 0)
  941. break;
  942. if (i > RX_RING_SIZE -2) 
  943. {
  944. lp->stats.rx_dropped++;
  945. lp->rx_ring[entry].base |= 0x80000000;
  946. lp->cur_rx++;
  947. }
  948. break;
  949. }
  950. skb->dev = dev;
  951. skb_reserve(skb,2); /* 16 byte align */
  952. skb_put(skb,pkt_len); /* Make room */
  953. eth_copy_and_sum(skb,
  954. (unsigned char *)bus_to_virt((lp->rx_ring[entry].base & 0x00ffffff)),
  955. pkt_len,0);
  956. skb->protocol=eth_type_trans(skb,dev);
  957. netif_rx(skb);
  958. dev->last_rx = jiffies;
  959. lp->stats.rx_packets++;
  960. lp->stats.rx_bytes+=pkt_len;
  961. }
  962. }
  963. /* The docs say that the buffer length isn't touched, but Andrew Boyd
  964.    of QNX reports that some revs of the 79C965 clear it. */
  965. lp->rx_ring[entry].buf_length = -PKT_BUF_SZ;
  966. lp->rx_ring[entry].base |= 0x80000000;
  967. entry = (++lp->cur_rx) & RX_RING_MOD_MASK;
  968. }
  969. /* We should check that at least two ring entries are free.  If not,
  970.    we should free one and mark stats->rx_dropped++. */
  971. return 0;
  972. }
  973. static int
  974. lance_close(struct net_device *dev)
  975. {
  976. int ioaddr = dev->base_addr;
  977. struct lance_private *lp = dev->priv;
  978. netif_stop_queue (dev);
  979. if (chip_table[lp->chip_version].flags & LANCE_HAS_MISSED_FRAME) {
  980. outw(112, ioaddr+LANCE_ADDR);
  981. lp->stats.rx_missed_errors = inw(ioaddr+LANCE_DATA);
  982. }
  983. outw(0, ioaddr+LANCE_ADDR);
  984. if (lance_debug > 1)
  985. printk("%s: Shutting down ethercard, status was %2.2x.n",
  986.    dev->name, inw(ioaddr+LANCE_DATA));
  987. /* We stop the LANCE here -- it occasionally polls
  988.    memory if we don't. */
  989. outw(0x0004, ioaddr+LANCE_DATA);
  990. if (dev->dma != 4)
  991. {
  992. unsigned long flags=claim_dma_lock();
  993. disable_dma(dev->dma);
  994. release_dma_lock(flags);
  995. }
  996. free_irq(dev->irq, dev);
  997. lance_purge_ring(dev);
  998. return 0;
  999. }
  1000. static struct net_device_stats *lance_get_stats(struct net_device *dev)
  1001. {
  1002. struct lance_private *lp = dev->priv;
  1003. if (chip_table[lp->chip_version].flags & LANCE_HAS_MISSED_FRAME) {
  1004. short ioaddr = dev->base_addr;
  1005. short saved_addr;
  1006. unsigned long flags;
  1007. spin_lock_irqsave(&lp->devlock, flags);
  1008. saved_addr = inw(ioaddr+LANCE_ADDR);
  1009. outw(112, ioaddr+LANCE_ADDR);
  1010. lp->stats.rx_missed_errors = inw(ioaddr+LANCE_DATA);
  1011. outw(saved_addr, ioaddr+LANCE_ADDR);
  1012. spin_unlock_irqrestore(&lp->devlock, flags);
  1013. }
  1014. return &lp->stats;
  1015. }
  1016. /* Set or clear the multicast filter for this adaptor.
  1017.  */
  1018. static void set_multicast_list(struct net_device *dev)
  1019. {
  1020. short ioaddr = dev->base_addr;
  1021. outw(0, ioaddr+LANCE_ADDR);
  1022. outw(0x0004, ioaddr+LANCE_DATA); /* Temporarily stop the lance.  */
  1023. if (dev->flags&IFF_PROMISC) {
  1024. /* Log any net taps. */
  1025. printk("%s: Promiscuous mode enabled.n", dev->name);
  1026. outw(15, ioaddr+LANCE_ADDR);
  1027. outw(0x8000, ioaddr+LANCE_DATA); /* Set promiscuous mode */
  1028. } else {
  1029. short multicast_table[4];
  1030. int i;
  1031. int num_addrs=dev->mc_count;
  1032. if(dev->flags&IFF_ALLMULTI)
  1033. num_addrs=1;
  1034. /* FIXIT: We don't use the multicast table, but rely on upper-layer filtering. */
  1035. memset(multicast_table, (num_addrs == 0) ? 0 : -1, sizeof(multicast_table));
  1036. for (i = 0; i < 4; i++) {
  1037. outw(8 + i, ioaddr+LANCE_ADDR);
  1038. outw(multicast_table[i], ioaddr+LANCE_DATA);
  1039. }
  1040. outw(15, ioaddr+LANCE_ADDR);
  1041. outw(0x0000, ioaddr+LANCE_DATA); /* Unset promiscuous mode */
  1042. }
  1043. lance_restart(dev, 0x0142, 0); /*  Resume normal operation */
  1044. }