znet.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:25k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* znet.c: An Zenith Z-Note ethernet driver for linux. */
  2. static const char version[] = "znet.c:v1.02 9/23/94 becker@cesdis.gsfc.nasa.govn";
  3. /*
  4. Written by Donald Becker.
  5. The author may be reached as becker@scyld.com.
  6. This driver is based on the Linux skeleton driver.  The copyright of the
  7. skeleton driver is held by the United States Government, as represented
  8. by DIRNSA, and it is released under the GPL.
  9. Thanks to Mike Hollick for alpha testing and suggestions.
  10.   References:
  11.    The Crynwr packet driver.
  12.   "82593 CSMA/CD Core LAN Controller" Intel datasheet, 1992
  13.   Intel Microcommunications Databook, Vol. 1, 1990.
  14.     As usual with Intel, the documentation is incomplete and inaccurate.
  15. I had to read the Crynwr packet driver to figure out how to actually
  16. use the i82593, and guess at what register bits matched the loosely
  17. related i82586.
  18. Theory of Operation
  19. The i82593 used in the Zenith Z-Note series operates using two(!) slave
  20. DMA channels, one interrupt, and one 8-bit I/O port.
  21. While there several ways to configure '593 DMA system, I chose the one
  22. that seemed commensurate with the highest system performance in the face
  23. of moderate interrupt latency: Both DMA channels are configured as
  24. recirculating ring buffers, with one channel (#0) dedicated to Rx and
  25. the other channel (#1) to Tx and configuration.  (Note that this is
  26. different than the Crynwr driver, where the Tx DMA channel is initialized
  27. before each operation.  That approach simplifies operation and Tx error
  28. recovery, but requires additional I/O in normal operation and precludes
  29. transmit buffer chaining.)
  30. Both rings are set to 8192 bytes using {TX,RX}_RING_SIZE.  This provides
  31. a reasonable ring size for Rx, while simplifying DMA buffer allocation --
  32. DMA buffers must not cross a 128K boundary.  (In truth the size selection
  33. was influenced by my lack of '593 documentation.  I thus was constrained
  34. to use the Crynwr '593 initialization table, which sets the Rx ring size
  35. to 8K.)
  36. Despite my usual low opinion about Intel-designed parts, I must admit
  37. that the bulk data handling of the i82593 is a good design for
  38. an integrated system, like a laptop, where using two slave DMA channels
  39. doesn't pose a problem.  I still take issue with using only a single I/O
  40. port.  In the same controlled environment there are essentially no
  41. limitations on I/O space, and using multiple locations would eliminate
  42. the need for multiple operations when looking at status registers,
  43. setting the Rx ring boundary, or switching to promiscuous mode.
  44. I also question Zenith's selection of the '593: one of the advertised
  45. advantages of earlier Intel parts was that if you figured out the magic
  46. initialization incantation you could use the same part on many different
  47. network types.  Zenith's use of the "FriendlyNet" (sic) connector rather
  48. than an on-board transceiver leads me to believe that they were planning
  49. to take advantage of this.  But, uhmmm, the '593 omits all but ethernet
  50. functionality from the serial subsystem.
  51.  */
  52. #include <linux/kernel.h>
  53. #include <linux/sched.h>
  54. #include <linux/string.h>
  55. #include <linux/ptrace.h>
  56. #include <linux/errno.h>
  57. #include <linux/interrupt.h>
  58. #include <linux/ioport.h>
  59. #include <linux/init.h>
  60. #include <asm/system.h>
  61. #include <asm/bitops.h>
  62. #include <asm/io.h>
  63. #include <asm/dma.h>
  64. #include <linux/netdevice.h>
  65. #include <linux/etherdevice.h>
  66. #include <linux/skbuff.h>
  67. #include <linux/if_arp.h>
  68. #ifndef ZNET_DEBUG
  69. #define ZNET_DEBUG 1
  70. #endif
  71. static unsigned int znet_debug = ZNET_DEBUG;
  72. /* The DMA modes we need aren't in <dma.h>. */
  73. #define DMA_RX_MODE 0x14 /* Auto init, I/O to mem, ++, demand. */
  74. #define DMA_TX_MODE 0x18 /* Auto init, Mem to I/O, ++, demand. */
  75. #define dma_page_eq(ptr1, ptr2) ((long)(ptr1)>>17 == (long)(ptr2)>>17)
  76. #define DMA_BUF_SIZE 8192
  77. #define RX_BUF_SIZE 8192
  78. #define TX_BUF_SIZE 8192
  79. /* Commands to the i82593 channel 0. */
  80. #define CMD0_CHNL_0 0x00
  81. #define CMD0_CHNL_1 0x10 /* Switch to channel 1. */
  82. #define CMD0_NOP (CMD0_CHNL_0)
  83. #define CMD0_PORT_1 CMD0_CHNL_1
  84. #define CMD1_PORT_0 1
  85. #define CMD0_IA_SETUP 1
  86. #define CMD0_CONFIGURE 2
  87. #define CMD0_MULTICAST_LIST 3
  88. #define CMD0_TRANSMIT 4
  89. #define CMD0_DUMP 6
  90. #define CMD0_DIAGNOSE 7
  91. #define CMD0_Rx_ENABLE 8
  92. #define CMD0_Rx_DISABLE 10
  93. #define CMD0_Rx_STOP 11
  94. #define CMD0_RETRANSMIT 12
  95. #define CMD0_ABORT 13
  96. #define CMD0_RESET 14
  97. #define CMD0_ACK 0x80
  98. #define CMD0_STAT0 (0 << 5)
  99. #define CMD0_STAT1 (1 << 5)
  100. #define CMD0_STAT2 (2 << 5)
  101. #define CMD0_STAT3 (3 << 5)
  102. #define TX_TIMEOUT 10
  103. #define net_local znet_private
  104. struct znet_private {
  105. int rx_dma, tx_dma;
  106. struct net_device_stats stats;
  107. spinlock_t lock;
  108. /* The starting, current, and end pointers for the packet buffers. */
  109. ushort *rx_start, *rx_cur, *rx_end;
  110. ushort *tx_start, *tx_cur, *tx_end;
  111. ushort tx_buf_len; /* Tx buffer length, in words. */
  112. };
  113. /* Only one can be built-in;-> */
  114. static struct znet_private zn;
  115. static ushort dma_buffer1[DMA_BUF_SIZE/2];
  116. static ushort dma_buffer2[DMA_BUF_SIZE/2];
  117. static ushort dma_buffer3[DMA_BUF_SIZE/2 + 8];
  118. /* The configuration block.  What an undocumented nightmare.  The first
  119.    set of values are those suggested (without explanation) for ethernet
  120.    in the Intel 82586 databook.  The rest appear to be completely undocumented,
  121.    except for cryptic notes in the Crynwr packet driver.  This driver uses
  122.    the Crynwr values verbatim. */
  123. static unsigned char i593_init[] = {
  124.   0xAA, /* 0: 16-byte input & 80-byte output FIFO. */
  125. /*   threshold, 96-byte FIFO, 82593 mode. */
  126.   0x88, /* 1: Continuous w/interrupts, 128-clock DMA.*/
  127.   0x2E, /* 2: 8-byte preamble, NO address insertion, */
  128. /*   6-byte Ethernet address, loopback off.*/
  129.   0x00, /* 3: Default priorities & backoff methods. */
  130.   0x60, /* 4: 96-bit interframe spacing. */
  131.   0x00, /* 5: 512-bit slot time (low-order). */
  132.   0xF2, /* 6: Slot time (high-order), 15 COLL retries. */
  133.   0x00, /* 7: Promisc-off, broadcast-on, default CRC. */
  134.   0x00, /* 8: Default carrier-sense, collision-detect. */
  135.   0x40, /* 9: 64-byte minimum frame length. */
  136.   0x5F, /* A: Type/length checks OFF, no CRC input,
  137.    "jabber" termination, etc. */
  138.   0x00, /* B: Full-duplex disabled. */
  139.   0x3F, /* C: Default multicast addresses & backoff. */
  140.   0x07, /* D: Default IFS retriggering. */
  141.   0x31, /* E: Internal retransmit, drop "runt" packets,
  142.    synchr. DRQ deassertion, 6 status bytes. */
  143.   0x22, /* F: Receive ring-buffer size (8K), 
  144.    receive-stop register enable. */
  145. };
  146. struct netidblk {
  147. char magic[8]; /* The magic number (string) "NETIDBLK" */
  148. unsigned char netid[8]; /* The physical station address */
  149. char nettype, globalopt;
  150. char vendor[8]; /* The machine vendor and product name. */
  151. char product[8];
  152. char irq1, irq2; /* Interrupts, only one is currently used. */
  153. char dma1, dma2;
  154. short dma_mem_misc[8]; /* DMA buffer locations (unused in Linux). */
  155. short iobase1, iosize1;
  156. short iobase2, iosize2; /* Second iobase unused. */
  157. char driver_options; /* Misc. bits */
  158. char pad;
  159. };
  160. int znet_probe(struct net_device *dev);
  161. static int znet_open(struct net_device *dev);
  162. static int znet_send_packet(struct sk_buff *skb, struct net_device *dev);
  163. static void znet_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  164. static void znet_rx(struct net_device *dev);
  165. static int znet_close(struct net_device *dev);
  166. static struct net_device_stats *net_get_stats(struct net_device *dev);
  167. static void set_multicast_list(struct net_device *dev);
  168. static void hardware_init(struct net_device *dev);
  169. static void update_stop_hit(short ioaddr, unsigned short rx_stop_offset);
  170. static void znet_tx_timeout (struct net_device *dev);
  171. #ifdef notdef
  172. static struct sigaction znet_sigaction = { &znet_interrupt, 0, 0, NULL, };
  173. #endif
  174. /* The Z-Note probe is pretty easy.  The NETIDBLK exists in the safe-to-probe
  175.    BIOS area.  We just scan for the signature, and pull the vital parameters
  176.    out of the structure. */
  177. int __init znet_probe(struct net_device *dev)
  178. {
  179. int i;
  180. struct netidblk *netinfo;
  181. char *p;
  182. /* This code scans the region 0xf0000 to 0xfffff for a "NETIDBLK". */
  183. for(p = (char *)phys_to_virt(0xf0000); p < (char *)phys_to_virt(0x100000); p++)
  184. if (*p == 'N'  &&  strncmp(p, "NETIDBLK", 8) == 0)
  185. break;
  186. if (p >= (char *)phys_to_virt(0x100000)) {
  187. if (znet_debug > 1)
  188. printk(KERN_INFO "No Z-Note ethernet adaptor found.n");
  189. return -ENODEV;
  190. }
  191. netinfo = (struct netidblk *)p;
  192. dev->base_addr = netinfo->iobase1;
  193. dev->irq = netinfo->irq1;
  194. printk(KERN_INFO "%s: ZNET at %#3lx,", dev->name, dev->base_addr);
  195. /* The station address is in the "netidblk" at 0x0f0000. */
  196. for (i = 0; i < 6; i++)
  197. printk(" %2.2x", dev->dev_addr[i] = netinfo->netid[i]);
  198. printk(", using IRQ %d DMA %d and %d.n", dev->irq, netinfo->dma1,
  199. netinfo->dma2);
  200. if (znet_debug > 1) {
  201. printk(KERN_INFO "%s: vendor '%16.16s' IRQ1 %d IRQ2 %d DMA1 %d DMA2 %d.n",
  202.    dev->name, netinfo->vendor,
  203.    netinfo->irq1, netinfo->irq2,
  204.    netinfo->dma1, netinfo->dma2);
  205. printk(KERN_INFO "%s: iobase1 %#x size %d iobase2 %#x size %d net type %2.2x.n",
  206.    dev->name, netinfo->iobase1, netinfo->iosize1,
  207.    netinfo->iobase2, netinfo->iosize2, netinfo->nettype);
  208. }
  209. if (znet_debug > 0)
  210. printk("%s%s", KERN_INFO, version);
  211. dev->priv = (void *) &zn;
  212. zn.rx_dma = netinfo->dma1;
  213. zn.tx_dma = netinfo->dma2;
  214. zn.lock = SPIN_LOCK_UNLOCKED;
  215. /* These should never fail.  You can't add devices to a sealed box! */
  216. if (request_irq(dev->irq, &znet_interrupt, 0, "ZNet", dev)
  217. || request_dma(zn.rx_dma,"ZNet rx")
  218. || request_dma(zn.tx_dma,"ZNet tx")) {
  219. printk(KERN_WARNING "%s: Not opened -- resource busy?!?n", dev->name);
  220. return -EBUSY;
  221. }
  222. /* Allocate buffer memory. We can cross a 128K boundary, so we
  223.    must be careful about the allocation.  It's easiest to waste 8K. */
  224. if (dma_page_eq(dma_buffer1, &dma_buffer1[RX_BUF_SIZE/2-1]))
  225.   zn.rx_start = dma_buffer1;
  226. else 
  227.   zn.rx_start = dma_buffer2;
  228. if (dma_page_eq(dma_buffer3, &dma_buffer3[RX_BUF_SIZE/2-1]))
  229.   zn.tx_start = dma_buffer3;
  230. else
  231.   zn.tx_start = dma_buffer2;
  232. zn.rx_end = zn.rx_start + RX_BUF_SIZE/2;
  233. zn.tx_buf_len = TX_BUF_SIZE/2;
  234. zn.tx_end = zn.tx_start + zn.tx_buf_len;
  235. /* The ZNET-specific entries in the device structure. */
  236. dev->open = &znet_open;
  237. dev->hard_start_xmit = &znet_send_packet;
  238. dev->stop = &znet_close;
  239. dev->get_stats = net_get_stats;
  240. dev->set_multicast_list = &set_multicast_list;
  241. dev->tx_timeout = znet_tx_timeout;
  242. dev->watchdog_timeo = TX_TIMEOUT;
  243. /* Fill in the 'dev' with ethernet-generic values. */
  244. ether_setup(dev);
  245. return 0;
  246. }
  247. static int znet_open(struct net_device *dev)
  248. {
  249. int ioaddr = dev->base_addr;
  250. if (znet_debug > 2)
  251. printk(KERN_DEBUG "%s: znet_open() called.n", dev->name);
  252. /* Turn on the 82501 SIA, using zenith-specific magic. */
  253. outb(0x10, 0xe6); /* Select LAN control register */
  254. outb(inb(0xe7) | 0x84, 0xe7); /* Turn on LAN power (bit 2). */
  255. /* According to the Crynwr driver we should wait 50 msec. for the
  256.    LAN clock to stabilize.  My experiments indicates that the '593 can
  257.    be initialized immediately.  The delay is probably needed for the
  258.    DC-to-DC converter to come up to full voltage, and for the oscillator
  259.    to be spot-on at 20Mhz before transmitting.
  260.    Until this proves to be a problem we rely on the higher layers for the
  261.    delay and save allocating a timer entry. */
  262. /* This follows the packet driver's lead, and checks for success. */
  263. if (inb(ioaddr) != 0x10 && inb(ioaddr) != 0x00)
  264. printk(KERN_WARNING "%s: Problem turning on the transceiver power.n",
  265.    dev->name);
  266. hardware_init(dev);
  267. netif_start_queue (dev);
  268. return 0;
  269. }
  270. static void znet_tx_timeout (struct net_device *dev)
  271. {
  272. int ioaddr = dev->base_addr;
  273. ushort event, tx_status, rx_offset, state;
  274. outb (CMD0_STAT0, ioaddr);
  275. event = inb (ioaddr);
  276. outb (CMD0_STAT1, ioaddr);
  277. tx_status = inw (ioaddr);
  278. outb (CMD0_STAT2, ioaddr);
  279. rx_offset = inw (ioaddr);
  280. outb (CMD0_STAT3, ioaddr);
  281. state = inb (ioaddr);
  282. printk (KERN_WARNING "%s: transmit timed out, status %02x %04x %04x %02x,"
  283.  " resetting.n", dev->name, event, tx_status, rx_offset, state);
  284. if (tx_status == 0x0400)
  285. printk (KERN_WARNING "%s: Tx carrier error, check transceiver cable.n",
  286. dev->name);
  287. outb (CMD0_RESET, ioaddr);
  288. hardware_init (dev);
  289. netif_wake_queue (dev);
  290. }
  291. static int znet_send_packet(struct sk_buff *skb, struct net_device *dev)
  292. {
  293. int ioaddr = dev->base_addr;
  294. struct net_local *lp = (struct net_local *)dev->priv;
  295. unsigned long flags;
  296. if (znet_debug > 4)
  297. printk(KERN_DEBUG "%s: ZNet_send_packet.n", dev->name);
  298. netif_stop_queue (dev);
  299. /* Check that the part hasn't reset itself, probably from suspend. */
  300. outb(CMD0_STAT0, ioaddr);
  301. if (inw(ioaddr) == 0x0010
  302. && inw(ioaddr) == 0x0000
  303. && inw(ioaddr) == 0x0010)
  304.   hardware_init(dev);
  305. if (1) {
  306. short length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
  307. unsigned char *buf = (void *)skb->data;
  308. ushort *tx_link = zn.tx_cur - 1;
  309. ushort rnd_len = (length + 1)>>1;
  310. lp->stats.tx_bytes+=length;
  311. {
  312. short dma_port = ((zn.tx_dma&3)<<2) + IO_DMA2_BASE;
  313. unsigned addr = inb(dma_port);
  314. addr |= inb(dma_port) << 8;
  315. addr <<= 1;
  316. if (((int)zn.tx_cur & 0x1ffff) != addr)
  317.   printk(KERN_WARNING "Address mismatch at Tx: %#x vs %#x.n",
  318.  (int)zn.tx_cur & 0xffff, addr);
  319. zn.tx_cur = (ushort *)(((int)zn.tx_cur & 0xfe0000) | addr);
  320. }
  321. if (zn.tx_cur >= zn.tx_end)
  322.   zn.tx_cur = zn.tx_start;
  323. *zn.tx_cur++ = length;
  324. if (zn.tx_cur + rnd_len + 1 > zn.tx_end) {
  325. int semi_cnt = (zn.tx_end - zn.tx_cur)<<1; /* Cvrt to byte cnt. */
  326. memcpy(zn.tx_cur, buf, semi_cnt);
  327. rnd_len -= semi_cnt>>1;
  328. memcpy(zn.tx_start, buf + semi_cnt, length - semi_cnt);
  329. zn.tx_cur = zn.tx_start + rnd_len;
  330. } else {
  331. memcpy(zn.tx_cur, buf, skb->len);
  332. zn.tx_cur += rnd_len;
  333. }
  334. *zn.tx_cur++ = 0;
  335. spin_lock_irqsave(&lp->lock, flags);
  336. {
  337. *tx_link = CMD0_TRANSMIT + CMD0_CHNL_1;
  338. /* Is this always safe to do? */
  339. outb(CMD0_TRANSMIT + CMD0_CHNL_1,ioaddr);
  340. }
  341. spin_unlock_irqrestore (&lp->lock, flags);
  342. dev->trans_start = jiffies;
  343. netif_start_queue (dev);
  344. if (znet_debug > 4)
  345.   printk(KERN_DEBUG "%s: Transmitter queued, length %d.n", dev->name, length);
  346. }
  347. dev_kfree_skb(skb); 
  348. return 0;
  349. }
  350. /* The ZNET interrupt handler. */
  351. static void znet_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  352. {
  353. struct net_device *dev = dev_id;
  354. struct net_local *lp = (struct net_local *)dev->priv;
  355. int ioaddr;
  356. int boguscnt = 20;
  357. if (dev == NULL) {
  358. printk(KERN_WARNING "znet_interrupt(): IRQ %d for unknown device.n", irq);
  359. return;
  360. }
  361. spin_lock (&lp->lock);
  362. ioaddr = dev->base_addr;
  363. outb(CMD0_STAT0, ioaddr);
  364. do {
  365. ushort status = inb(ioaddr);
  366. if (znet_debug > 5) {
  367. ushort result, rx_ptr, running;
  368. outb(CMD0_STAT1, ioaddr);
  369. result = inw(ioaddr);
  370. outb(CMD0_STAT2, ioaddr);
  371. rx_ptr = inw(ioaddr);
  372. outb(CMD0_STAT3, ioaddr);
  373. running = inb(ioaddr);
  374. printk(KERN_DEBUG "%s: interrupt, status %02x, %04x %04x %02x serial %d.n",
  375.  dev->name, status, result, rx_ptr, running, boguscnt);
  376. }
  377. if ((status & 0x80) == 0)
  378. break;
  379. if ((status & 0x0F) == 4) { /* Transmit done. */
  380. int tx_status;
  381. outb(CMD0_STAT1, ioaddr);
  382. tx_status = inw(ioaddr);
  383. /* It's undocumented, but tx_status seems to match the i82586. */
  384. if (tx_status & 0x2000) {
  385. lp->stats.tx_packets++;
  386. lp->stats.collisions += tx_status & 0xf;
  387. } else {
  388. if (tx_status & 0x0600)  lp->stats.tx_carrier_errors++;
  389. if (tx_status & 0x0100)  lp->stats.tx_fifo_errors++;
  390. if (!(tx_status & 0x0040)) lp->stats.tx_heartbeat_errors++;
  391. if (tx_status & 0x0020)  lp->stats.tx_aborted_errors++;
  392. /* ...and the catch-all. */
  393. if ((tx_status | 0x0760) != 0x0760)
  394.   lp->stats.tx_errors++;
  395. }
  396. netif_wake_queue (dev);
  397. }
  398. if ((status & 0x40)
  399. || (status & 0x0f) == 11) {
  400. znet_rx(dev);
  401. }
  402. /* Clear the interrupts we've handled. */
  403. outb(CMD0_ACK,ioaddr);
  404. } while (boguscnt--);
  405. spin_unlock (&lp->lock);
  406. return;
  407. }
  408. static void znet_rx(struct net_device *dev)
  409. {
  410. struct net_local *lp = (struct net_local *)dev->priv;
  411. int ioaddr = dev->base_addr;
  412. int boguscount = 1;
  413. short next_frame_end_offset = 0;  /* Offset of next frame start. */
  414. short *cur_frame_end;
  415. short cur_frame_end_offset;
  416. outb(CMD0_STAT2, ioaddr);
  417. cur_frame_end_offset = inw(ioaddr);
  418. if (cur_frame_end_offset == zn.rx_cur - zn.rx_start) {
  419. printk(KERN_WARNING "%s: Interrupted, but nothing to receive, offset %03x.n",
  420.    dev->name, cur_frame_end_offset);
  421. return;
  422. }
  423. /* Use same method as the Crynwr driver: construct a forward list in
  424.    the same area of the backwards links we now have.  This allows us to
  425.    pass packets to the upper layers in the order they were received --
  426.    important for fast-path sequential operations. */
  427.  while (zn.rx_start + cur_frame_end_offset != zn.rx_cur
  428. && ++boguscount < 5) {
  429. unsigned short hi_cnt, lo_cnt, hi_status, lo_status;
  430. int count, status;
  431. if (cur_frame_end_offset < 4) {
  432. /* Oh no, we have a special case: the frame trailer wraps around
  433.    the end of the ring buffer.  We've saved space at the end of
  434.    the ring buffer for just this problem. */
  435. memcpy(zn.rx_end, zn.rx_start, 8);
  436. cur_frame_end_offset += (RX_BUF_SIZE/2);
  437. }
  438. cur_frame_end = zn.rx_start + cur_frame_end_offset - 4;
  439. lo_status = *cur_frame_end++;
  440. hi_status = *cur_frame_end++;
  441. status = ((hi_status & 0xff) << 8) + (lo_status & 0xff);
  442. lo_cnt = *cur_frame_end++;
  443. hi_cnt = *cur_frame_end++;
  444. count = ((hi_cnt & 0xff) << 8) + (lo_cnt & 0xff);
  445. if (znet_debug > 5)
  446.   printk(KERN_DEBUG "Constructing trailer at location %03x, %04x %04x %04x %04x"
  447.  " count %#x status %04x.n",
  448.  cur_frame_end_offset<<1, lo_status, hi_status, lo_cnt, hi_cnt,
  449.  count, status);
  450. cur_frame_end[-4] = status;
  451. cur_frame_end[-3] = next_frame_end_offset;
  452. cur_frame_end[-2] = count;
  453. next_frame_end_offset = cur_frame_end_offset;
  454. cur_frame_end_offset -= ((count + 1)>>1) + 3;
  455. if (cur_frame_end_offset < 0)
  456.   cur_frame_end_offset += RX_BUF_SIZE/2;
  457. };
  458. /* Now step  forward through the list. */
  459. do {
  460. ushort *this_rfp_ptr = zn.rx_start + next_frame_end_offset;
  461. int status = this_rfp_ptr[-4];
  462. int pkt_len = this_rfp_ptr[-2];
  463.   
  464. if (znet_debug > 5)
  465.   printk(KERN_DEBUG "Looking at trailer ending at %04x status %04x length %03x"
  466.  " next %04x.n", next_frame_end_offset<<1, status, pkt_len,
  467.  this_rfp_ptr[-3]<<1);
  468. /* Once again we must assume that the i82586 docs apply. */
  469. if ( ! (status & 0x2000)) { /* There was an error. */
  470. lp->stats.rx_errors++;
  471. if (status & 0x0800) lp->stats.rx_crc_errors++;
  472. if (status & 0x0400) lp->stats.rx_frame_errors++;
  473. if (status & 0x0200) lp->stats.rx_over_errors++; /* Wrong. */
  474. if (status & 0x0100) lp->stats.rx_fifo_errors++;
  475. if (status & 0x0080) lp->stats.rx_length_errors++;
  476. } else if (pkt_len > 1536) {
  477. lp->stats.rx_length_errors++;
  478. } else {
  479. /* Malloc up new buffer. */
  480. struct sk_buff *skb;
  481. skb = dev_alloc_skb(pkt_len);
  482. if (skb == NULL) {
  483. if (znet_debug)
  484.   printk(KERN_WARNING "%s: Memory squeeze, dropping packet.n", dev->name);
  485. lp->stats.rx_dropped++;
  486. break;
  487. }
  488. skb->dev = dev;
  489. if (&zn.rx_cur[(pkt_len+1)>>1] > zn.rx_end) {
  490. int semi_cnt = (zn.rx_end - zn.rx_cur)<<1;
  491. memcpy(skb_put(skb,semi_cnt), zn.rx_cur, semi_cnt);
  492. memcpy(skb_put(skb,pkt_len-semi_cnt), zn.rx_start,
  493.    pkt_len - semi_cnt);
  494. } else {
  495. memcpy(skb_put(skb,pkt_len), zn.rx_cur, pkt_len);
  496. if (znet_debug > 6) {
  497. unsigned int *packet = (unsigned int *) skb->data;
  498. printk(KERN_DEBUG "Packet data is %08x %08x %08x %08x.n", packet[0],
  499.    packet[1], packet[2], packet[3]);
  500. }
  501.   }
  502.   skb->protocol=eth_type_trans(skb,dev);
  503.   netif_rx(skb);
  504.   dev->last_rx = jiffies;
  505.   lp->stats.rx_packets++;
  506.   lp->stats.rx_bytes += pkt_len;
  507. }
  508. zn.rx_cur = this_rfp_ptr;
  509. if (zn.rx_cur >= zn.rx_end)
  510. zn.rx_cur -= RX_BUF_SIZE/2;
  511. update_stop_hit(ioaddr, (zn.rx_cur - zn.rx_start)<<1);
  512. next_frame_end_offset = this_rfp_ptr[-3];
  513. if (next_frame_end_offset == 0) /* Read all the frames? */
  514. break; /* Done for now */
  515. this_rfp_ptr = zn.rx_start + next_frame_end_offset;
  516. } while (--boguscount);
  517. /* If any worth-while packets have been received, dev_rint()
  518.    has done a mark_bh(INET_BH) for us and will work on them
  519.    when we get to the bottom-half routine. */
  520. return;
  521. }
  522. /* The inverse routine to znet_open(). */
  523. static int znet_close(struct net_device *dev)
  524. {
  525. unsigned long flags;
  526. int ioaddr = dev->base_addr;
  527. netif_stop_queue (dev);
  528. outb(CMD0_RESET, ioaddr); /* CMD0_RESET */
  529. flags=claim_dma_lock();
  530. disable_dma(zn.rx_dma);
  531. disable_dma(zn.tx_dma);
  532. release_dma_lock(flags);
  533. free_irq(dev->irq, dev);
  534. if (znet_debug > 1)
  535. printk(KERN_DEBUG "%s: Shutting down ethercard.n", dev->name);
  536. /* Turn off transceiver power. */
  537. outb(0x10, 0xe6); /* Select LAN control register */
  538. outb(inb(0xe7) & ~0x84, 0xe7); /* Turn on LAN power (bit 2). */
  539. return 0;
  540. }
  541. /* Get the current statistics. This may be called with the card open or
  542.    closed. */
  543. static struct net_device_stats *net_get_stats(struct net_device *dev)
  544. {
  545. struct net_local *lp = (struct net_local *)dev->priv;
  546. return &lp->stats;
  547. }
  548. /* Set or clear the multicast filter for this adaptor.
  549.    As a side effect this routine must also initialize the device parameters.
  550.    This is taken advantage of in open().
  551.    N.B. that we change i593_init[] in place.  This (properly) makes the
  552.    mode change persistent, but must be changed if this code is moved to
  553.    a multiple adaptor environment.
  554.  */
  555. static void set_multicast_list(struct net_device *dev)
  556. {
  557. short ioaddr = dev->base_addr;
  558. if (dev->flags&IFF_PROMISC) {
  559. /* Enable promiscuous mode */
  560. i593_init[7] &= ~3; i593_init[7] |= 1;
  561. i593_init[13] &= ~8; i593_init[13] |= 8;
  562. } else if (dev->mc_list || (dev->flags&IFF_ALLMULTI)) {
  563. /* Enable accept-all-multicast mode */
  564. i593_init[7] &= ~3; i593_init[7] |= 0;
  565. i593_init[13] &= ~8; i593_init[13] |= 8;
  566. } else { /* Enable normal mode. */
  567. i593_init[7] &= ~3; i593_init[7] |= 0;
  568. i593_init[13] &= ~8; i593_init[13] |= 0;
  569. }
  570. *zn.tx_cur++ = sizeof(i593_init);
  571. memcpy(zn.tx_cur, i593_init, sizeof(i593_init));
  572. zn.tx_cur += sizeof(i593_init)/2;
  573. outb(CMD0_CONFIGURE+CMD0_CHNL_1, ioaddr);
  574. #ifdef not_tested
  575. if (num_addrs > 0) {
  576. int addrs_len = 6*num_addrs;
  577. *zn.tx_cur++ = addrs_len;
  578. memcpy(zn.tx_cur, addrs, addrs_len);
  579. outb(CMD0_MULTICAST_LIST+CMD0_CHNL_1, ioaddr);
  580. zn.tx_cur += addrs_len>>1;
  581. }
  582. #endif
  583. }
  584. void show_dma(void)
  585. {
  586. unsigned long flags;
  587. short dma_port = ((zn.tx_dma&3)<<2) + IO_DMA2_BASE;
  588. unsigned addr = inb(dma_port);
  589. addr |= inb(dma_port) << 8;
  590. flags=claim_dma_lock();
  591. printk("Addr: %04x cnt:%3x...", addr<<1, get_dma_residue(zn.tx_dma));
  592. release_dma_lock(flags);
  593. }
  594. /* Initialize the hardware.  We have to do this when the board is open()ed
  595.    or when we come out of suspend mode. */
  596. static void hardware_init(struct net_device *dev)
  597. {
  598. unsigned long flags;
  599. short ioaddr = dev->base_addr;
  600. zn.rx_cur = zn.rx_start;
  601. zn.tx_cur = zn.tx_start;
  602. /* Reset the chip, and start it up. */
  603. outb(CMD0_RESET, ioaddr);
  604. flags=claim_dma_lock();
  605. disable_dma(zn.rx_dma);  /* reset by an interrupting task. */
  606. clear_dma_ff(zn.rx_dma);
  607. set_dma_mode(zn.rx_dma, DMA_RX_MODE);
  608. set_dma_addr(zn.rx_dma, (unsigned int) zn.rx_start);
  609. set_dma_count(zn.rx_dma, RX_BUF_SIZE);
  610. enable_dma(zn.rx_dma);
  611. /* Now set up the Tx channel. */
  612. disable_dma(zn.tx_dma);
  613. clear_dma_ff(zn.tx_dma);
  614. set_dma_mode(zn.tx_dma, DMA_TX_MODE);
  615. set_dma_addr(zn.tx_dma, (unsigned int) zn.tx_start);
  616. set_dma_count(zn.tx_dma, zn.tx_buf_len<<1);
  617. enable_dma(zn.tx_dma);
  618. release_dma_lock(flags);
  619. if (znet_debug > 1)
  620.   printk(KERN_DEBUG "%s: Initializing the i82593, tx buf %p... ", dev->name,
  621.  zn.tx_start);
  622. /* Do an empty configure command, just like the Crynwr driver.  This
  623.    resets to chip to its default values. */
  624. *zn.tx_cur++ = 0;
  625. *zn.tx_cur++ = 0;
  626. printk("stat:%02x ", inb(ioaddr)); show_dma();
  627. outb(CMD0_CONFIGURE+CMD0_CHNL_1, ioaddr);
  628. *zn.tx_cur++ = sizeof(i593_init);
  629. memcpy(zn.tx_cur, i593_init, sizeof(i593_init));
  630. zn.tx_cur += sizeof(i593_init)/2;
  631. printk("stat:%02x ", inb(ioaddr)); show_dma();
  632. outb(CMD0_CONFIGURE+CMD0_CHNL_1, ioaddr);
  633. *zn.tx_cur++ = 6;
  634. memcpy(zn.tx_cur, dev->dev_addr, 6);
  635. zn.tx_cur += 3;
  636. printk("stat:%02x ", inb(ioaddr)); show_dma();
  637. outb(CMD0_IA_SETUP + CMD0_CHNL_1, ioaddr);
  638. printk("stat:%02x ", inb(ioaddr)); show_dma();
  639. update_stop_hit(ioaddr, 8192);
  640. if (znet_debug > 1)  printk("enabling Rx.n");
  641. outb(CMD0_Rx_ENABLE+CMD0_CHNL_0, ioaddr);
  642. netif_start_queue (dev);
  643. }
  644. static void update_stop_hit(short ioaddr, unsigned short rx_stop_offset)
  645. {
  646. outb(CMD0_PORT_1, ioaddr);
  647. if (znet_debug > 5)
  648.   printk(KERN_DEBUG "Updating stop hit with value %02x.n",
  649.  (rx_stop_offset >> 6) | 0x80);
  650. outb((rx_stop_offset >> 6) | 0x80, ioaddr);
  651. outb(CMD1_PORT_0, ioaddr);
  652. }
  653. /*
  654.  * Local variables:
  655.  *  compile-command: "gcc -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict-prototypes -O6 -m486 -c znet.c"
  656.  *  version-control: t
  657.  *  kept-new-versions: 5
  658.  *  c-indent-level: 4
  659.  *  tab-width: 4
  660.  * End:
  661.  */