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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 8390.c: A general NS8390 ethernet driver core for linux. */
  2. /*
  3. Written 1992-94 by Donald Becker.
  4.   
  5. Copyright 1993 United States Government as represented by the
  6. Director, National Security Agency.
  7. This software may be used and distributed according to the terms
  8. of the GNU General Public License, incorporated herein by reference.
  9. The author may be reached as becker@scyld.com, or C/O
  10. Scyld Computing Corporation
  11. 410 Severn Ave., Suite 210
  12. Annapolis MD 21403
  13.   
  14.   This is the chip-specific code for many 8390-based ethernet adaptors.
  15.   This is not a complete driver, it must be combined with board-specific
  16.   code such as ne.c, wd.c, 3c503.c, etc.
  17.   Seeing how at least eight drivers use this code, (not counting the
  18.   PCMCIA ones either) it is easy to break some card by what seems like
  19.   a simple innocent change. Please contact me or Donald if you think
  20.   you have found something that needs changing. -- PG
  21.   Changelog:
  22.   Paul Gortmaker : remove set_bit lock, other cleanups.
  23.   Paul Gortmaker : add ei_get_8390_hdr() so we can pass skb's to 
  24.   ei_block_input() for eth_io_copy_and_sum().
  25.   Paul Gortmaker : exchange static int ei_pingpong for a #define,
  26.   also add better Tx error handling.
  27.   Paul Gortmaker : rewrite Rx overrun handling as per NS specs.
  28.   Alexey Kuznetsov : use the 8390's six bit hash multicast filter.
  29.   Paul Gortmaker : tweak ANK's above multicast changes a bit.
  30.   Paul Gortmaker : update packet statistics for v2.1.x
  31.   Alan Cox : support arbitary stupid port mappings on the
  32.      68K Macintosh. Support >16bit I/O spaces
  33.   Paul Gortmaker : add kmod support for auto-loading of the 8390
  34.   module by all drivers that require it.
  35.   Alan Cox : Spinlocking work, added 'BUG_83C690'
  36.   Paul Gortmaker : Separate out Tx timeout code from Tx path.
  37.   Sources:
  38.   The National Semiconductor LAN Databook, and the 3Com 3c503 databook.
  39.   */
  40. static const char version[] =
  41.     "8390.c:v1.10cvs 9/23/94 Donald Becker (becker@cesdis.gsfc.nasa.gov)n";
  42. #include <linux/module.h>
  43. #include <linux/kernel.h>
  44. #include <linux/sched.h>
  45. #include <linux/fs.h>
  46. #include <linux/types.h>
  47. #include <linux/ptrace.h>
  48. #include <linux/string.h>
  49. #include <asm/system.h>
  50. #include <asm/uaccess.h>
  51. #include <asm/bitops.h>
  52. #include <asm/io.h>
  53. #include <asm/irq.h>
  54. #include <linux/delay.h>
  55. #include <linux/errno.h>
  56. #include <linux/fcntl.h>
  57. #include <linux/in.h>
  58. #include <linux/interrupt.h>
  59. #include <linux/init.h>
  60. #include <linux/crc32.h>
  61. #include <linux/netdevice.h>
  62. #include <linux/etherdevice.h>
  63. #define NS8390_CORE
  64. #include "8390.h"
  65. #define BUG_83C690
  66. /* These are the operational function interfaces to board-specific
  67.    routines.
  68. void reset_8390(struct net_device *dev)
  69. Resets the board associated with DEV, including a hardware reset of
  70. the 8390.  This is only called when there is a transmit timeout, and
  71. it is always followed by 8390_init().
  72. void block_output(struct net_device *dev, int count, const unsigned char *buf,
  73.   int start_page)
  74. Write the COUNT bytes of BUF to the packet buffer at START_PAGE.  The
  75. "page" value uses the 8390's 256-byte pages.
  76. void get_8390_hdr(struct net_device *dev, struct e8390_hdr *hdr, int ring_page)
  77. Read the 4 byte, page aligned 8390 header. *If* there is a
  78. subsequent read, it will be of the rest of the packet.
  79. void block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset)
  80. Read COUNT bytes from the packet buffer into the skb data area. Start 
  81. reading from RING_OFFSET, the address as the 8390 sees it.  This will always
  82. follow the read of the 8390 header. 
  83. */
  84. #define ei_reset_8390 (ei_local->reset_8390)
  85. #define ei_block_output (ei_local->block_output)
  86. #define ei_block_input (ei_local->block_input)
  87. #define ei_get_8390_hdr (ei_local->get_8390_hdr)
  88. /* use 0 for production, 1 for verification, >2 for debug */
  89. #ifndef ei_debug
  90. int ei_debug = 1;
  91. #endif
  92. /* Index to functions. */
  93. static void ei_tx_intr(struct net_device *dev);
  94. static void ei_tx_err(struct net_device *dev);
  95. static void ei_tx_timeout(struct net_device *dev);
  96. static void ei_receive(struct net_device *dev);
  97. static void ei_rx_overrun(struct net_device *dev);
  98. /* Routines generic to NS8390-based boards. */
  99. static void NS8390_trigger_send(struct net_device *dev, unsigned int length,
  100. int start_page);
  101. static void set_multicast_list(struct net_device *dev);
  102. static void do_set_multicast_list(struct net_device *dev);
  103. /*
  104.  * SMP and the 8390 setup.
  105.  *
  106.  * The 8390 isnt exactly designed to be multithreaded on RX/TX. There is
  107.  * a page register that controls bank and packet buffer access. We guard
  108.  * this with ei_local->page_lock. Nobody should assume or set the page other
  109.  * than zero when the lock is not held. Lock holders must restore page 0
  110.  * before unlocking. Even pure readers must take the lock to protect in 
  111.  * page 0.
  112.  *
  113.  * To make life difficult the chip can also be very slow. We therefore can't
  114.  * just use spinlocks. For the longer lockups we disable the irq the device
  115.  * sits on and hold the lock. We must hold the lock because there is a dual
  116.  * processor case other than interrupts (get stats/set multicast list in
  117.  * parallel with each other and transmit).
  118.  *
  119.  * Note: in theory we can just disable the irq on the card _but_ there is
  120.  * a latency on SMP irq delivery. So we can easily go "disable irq" "sync irqs"
  121.  * enter lock, take the queued irq. So we waddle instead of flying.
  122.  *
  123.  * Finally by special arrangement for the purpose of being generally 
  124.  * annoying the transmit function is called bh atomic. That places
  125.  * restrictions on the user context callers as disable_irq won't save
  126.  * them.
  127.  */
  128.  
  129. /**
  130.  * ei_open - Open/initialize the board.
  131.  * @dev: network device to initialize
  132.  *
  133.  * This routine goes all-out, setting everything
  134.  * up anew at each open, even though many of these registers should only
  135.  * need to be set once at boot.
  136.  */
  137. int ei_open(struct net_device *dev)
  138. {
  139. unsigned long flags;
  140. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  141. /* This can't happen unless somebody forgot to call ethdev_init(). */
  142. if (ei_local == NULL) 
  143. {
  144. printk(KERN_EMERG "%s: ei_open passed a non-existent device!n", dev->name);
  145. return -ENXIO;
  146. }
  147. /* The card I/O part of the driver (e.g. 3c503) can hook a Tx timeout
  148.     wrapper that does e.g. media check & then calls ei_tx_timeout. */
  149. if (dev->tx_timeout == NULL)
  150.  dev->tx_timeout = ei_tx_timeout;
  151. if (dev->watchdog_timeo <= 0)
  152.  dev->watchdog_timeo = TX_TIMEOUT;
  153.     
  154. /*
  155.  * Grab the page lock so we own the register set, then call
  156.  * the init function.
  157.  */
  158.       
  159.        spin_lock_irqsave(&ei_local->page_lock, flags);
  160. NS8390_init(dev, 1);
  161. /* Set the flag before we drop the lock, That way the IRQ arrives
  162.    after its set and we get no silly warnings */
  163. netif_start_queue(dev);
  164.        spin_unlock_irqrestore(&ei_local->page_lock, flags);
  165. ei_local->irqlock = 0;
  166. return 0;
  167. }
  168. /**
  169.  * ei_close - shut down network device
  170.  * @dev: network device to close
  171.  *
  172.  * Opposite of ei_open(). Only used when "ifconfig <devname> down" is done.
  173.  */
  174. int ei_close(struct net_device *dev)
  175. {
  176. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  177. unsigned long flags;
  178. /*
  179.  * Hold the page lock during close
  180.  */
  181.  
  182.        spin_lock_irqsave(&ei_local->page_lock, flags);
  183. NS8390_init(dev, 0);
  184.        spin_unlock_irqrestore(&ei_local->page_lock, flags);
  185. netif_stop_queue(dev);
  186. return 0;
  187. }
  188. /**
  189.  * ei_tx_timeout - handle transmit time out condition
  190.  * @dev: network device which has apparently fallen asleep
  191.  *
  192.  * Called by kernel when device never acknowledges a transmit has
  193.  * completed (or failed) - i.e. never posted a Tx related interrupt.
  194.  */
  195. void ei_tx_timeout(struct net_device *dev)
  196. {
  197. long e8390_base = dev->base_addr;
  198. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  199. int txsr, isr, tickssofar = jiffies - dev->trans_start;
  200. unsigned long flags;
  201. ei_local->stat.tx_errors++;
  202. spin_lock_irqsave(&ei_local->page_lock, flags);
  203. txsr = inb(e8390_base+EN0_TSR);
  204. isr = inb(e8390_base+EN0_ISR);
  205. spin_unlock_irqrestore(&ei_local->page_lock, flags);
  206. printk(KERN_DEBUG "%s: Tx timed out, %s TSR=%#2x, ISR=%#2x, t=%d.n",
  207. dev->name, (txsr & ENTSR_ABT) ? "excess collisions." :
  208. (isr) ? "lost interrupt?" : "cable problem?", txsr, isr, tickssofar);
  209. if (!isr && !ei_local->stat.tx_packets) 
  210. {
  211. /* The 8390 probably hasn't gotten on the cable yet. */
  212. ei_local->interface_num ^= 1;   /* Try a different xcvr.  */
  213. }
  214. /* Ugly but a reset can be slow, yet must be protected */
  215. disable_irq_nosync(dev->irq);
  216. spin_lock(&ei_local->page_lock);
  217. /* Try to restart the card.  Perhaps the user has fixed something. */
  218. ei_reset_8390(dev);
  219. NS8390_init(dev, 1);
  220. spin_unlock(&ei_local->page_lock);
  221. enable_irq(dev->irq);
  222. netif_wake_queue(dev);
  223. }
  224.     
  225. /**
  226.  * ei_start_xmit - begin packet transmission
  227.  * @skb: packet to be sent
  228.  * @dev: network device to which packet is sent
  229.  *
  230.  * Sends a packet to an 8390 network device.
  231.  */
  232.  
  233. static int ei_start_xmit(struct sk_buff *skb, struct net_device *dev)
  234. {
  235. long e8390_base = dev->base_addr;
  236. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  237. int length, send_length, output_page;
  238. unsigned long flags;
  239. length = skb->len;
  240. /* Mask interrupts from the ethercard. 
  241.    SMP: We have to grab the lock here otherwise the IRQ handler
  242.    on another CPU can flip window and race the IRQ mask set. We end
  243.    up trashing the mcast filter not disabling irqs if we dont lock */
  244.    
  245. spin_lock_irqsave(&ei_local->page_lock, flags);
  246. outb_p(0x00, e8390_base + EN0_IMR);
  247. spin_unlock_irqrestore(&ei_local->page_lock, flags);
  248. /*
  249.  * Slow phase with lock held.
  250.  */
  251.  
  252. disable_irq_nosync(dev->irq);
  253. spin_lock(&ei_local->page_lock);
  254. ei_local->irqlock = 1;
  255. send_length = ETH_ZLEN < length ? length : ETH_ZLEN;
  256.     
  257. #ifdef EI_PINGPONG
  258. /*
  259.  * We have two Tx slots available for use. Find the first free
  260.  * slot, and then perform some sanity checks. With two Tx bufs,
  261.  * you get very close to transmitting back-to-back packets. With
  262.  * only one Tx buf, the transmitter sits idle while you reload the
  263.  * card, leaving a substantial gap between each transmitted packet.
  264.  */
  265. if (ei_local->tx1 == 0) 
  266. {
  267. output_page = ei_local->tx_start_page;
  268. ei_local->tx1 = send_length;
  269. if (ei_debug  &&  ei_local->tx2 > 0)
  270. printk(KERN_DEBUG "%s: idle transmitter tx2=%d, lasttx=%d, txing=%d.n",
  271. dev->name, ei_local->tx2, ei_local->lasttx, ei_local->txing);
  272. }
  273. else if (ei_local->tx2 == 0) 
  274. {
  275. output_page = ei_local->tx_start_page + TX_1X_PAGES;
  276. ei_local->tx2 = send_length;
  277. if (ei_debug  &&  ei_local->tx1 > 0)
  278. printk(KERN_DEBUG "%s: idle transmitter, tx1=%d, lasttx=%d, txing=%d.n",
  279. dev->name, ei_local->tx1, ei_local->lasttx, ei_local->txing);
  280. }
  281. else
  282. { /* We should never get here. */
  283. if (ei_debug)
  284. printk(KERN_DEBUG "%s: No Tx buffers free! tx1=%d tx2=%d last=%dn",
  285. dev->name, ei_local->tx1, ei_local->tx2, ei_local->lasttx);
  286. ei_local->irqlock = 0;
  287. netif_stop_queue(dev);
  288. outb_p(ENISR_ALL, e8390_base + EN0_IMR);
  289. spin_unlock(&ei_local->page_lock);
  290. enable_irq(dev->irq);
  291. ei_local->stat.tx_errors++;
  292. return 1;
  293. }
  294. /*
  295.  * Okay, now upload the packet and trigger a send if the transmitter
  296.  * isn't already sending. If it is busy, the interrupt handler will
  297.  * trigger the send later, upon receiving a Tx done interrupt.
  298.  */
  299. ei_block_output(dev, length, skb->data, output_page);
  300. if (! ei_local->txing) 
  301. {
  302. ei_local->txing = 1;
  303. NS8390_trigger_send(dev, send_length, output_page);
  304. dev->trans_start = jiffies;
  305. if (output_page == ei_local->tx_start_page) 
  306. {
  307. ei_local->tx1 = -1;
  308. ei_local->lasttx = -1;
  309. }
  310. else 
  311. {
  312. ei_local->tx2 = -1;
  313. ei_local->lasttx = -2;
  314. }
  315. }
  316. else ei_local->txqueue++;
  317. if (ei_local->tx1  &&  ei_local->tx2)
  318. netif_stop_queue(dev);
  319. else
  320. netif_start_queue(dev);
  321. #else /* EI_PINGPONG */
  322. /*
  323.  * Only one Tx buffer in use. You need two Tx bufs to come close to
  324.  * back-to-back transmits. Expect a 20 -> 25% performance hit on
  325.  * reasonable hardware if you only use one Tx buffer.
  326.  */
  327. ei_block_output(dev, length, skb->data, ei_local->tx_start_page);
  328. ei_local->txing = 1;
  329. NS8390_trigger_send(dev, send_length, ei_local->tx_start_page);
  330. dev->trans_start = jiffies;
  331. netif_stop_queue(dev);
  332. #endif /* EI_PINGPONG */
  333. /* Turn 8390 interrupts back on. */
  334. ei_local->irqlock = 0;
  335. outb_p(ENISR_ALL, e8390_base + EN0_IMR);
  336. spin_unlock(&ei_local->page_lock);
  337. enable_irq(dev->irq);
  338. dev_kfree_skb (skb);
  339. ei_local->stat.tx_bytes += send_length;
  340.     
  341. return 0;
  342. }
  343. /**
  344.  * ei_interrupt - handle the interrupts from an 8390
  345.  * @irq: interrupt number
  346.  * @dev_id: a pointer to the net_device
  347.  * @regs: unused
  348.  *
  349.  * Handle the ether interface interrupts. We pull packets from
  350.  * the 8390 via the card specific functions and fire them at the networking
  351.  * stack. We also handle transmit completions and wake the transmit path if
  352.  * neccessary. We also update the counters and do other housekeeping as
  353.  * needed.
  354.  */
  355. void ei_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  356. {
  357. struct net_device *dev = dev_id;
  358. long e8390_base;
  359. int interrupts, nr_serviced = 0;
  360. struct ei_device *ei_local;
  361.     
  362. if (dev == NULL) 
  363. {
  364. printk ("net_interrupt(): irq %d for unknown device.n", irq);
  365. return;
  366. }
  367.     
  368. e8390_base = dev->base_addr;
  369. ei_local = (struct ei_device *) dev->priv;
  370. /*
  371.  * Protect the irq test too.
  372.  */
  373.  
  374. spin_lock(&ei_local->page_lock);
  375. if (ei_local->irqlock) 
  376. {
  377. #if 1 /* This might just be an interrupt for a PCI device sharing this line */
  378. /* The "irqlock" check is only for testing. */
  379. printk(ei_local->irqlock
  380.    ? "%s: Interrupted while interrupts are masked! isr=%#2x imr=%#2x.n"
  381.    : "%s: Reentering the interrupt handler! isr=%#2x imr=%#2x.n",
  382.    dev->name, inb_p(e8390_base + EN0_ISR),
  383.    inb_p(e8390_base + EN0_IMR));
  384. #endif
  385. spin_unlock(&ei_local->page_lock);
  386. return;
  387. }
  388.     
  389. /* Change to page 0 and read the intr status reg. */
  390. outb_p(E8390_NODMA+E8390_PAGE0, e8390_base + E8390_CMD);
  391. if (ei_debug > 3)
  392. printk(KERN_DEBUG "%s: interrupt(isr=%#2.2x).n", dev->name,
  393.    inb_p(e8390_base + EN0_ISR));
  394.     
  395. /* !!Assumption!! -- we stay in page 0.  Don't break this. */
  396. while ((interrupts = inb_p(e8390_base + EN0_ISR)) != 0
  397.    && ++nr_serviced < MAX_SERVICE) 
  398. {
  399. if (!netif_running(dev)) {
  400. printk(KERN_WARNING "%s: interrupt from stopped cardn", dev->name);
  401. /* rmk - acknowledge the interrupts */
  402. outb_p(interrupts, e8390_base + EN0_ISR);
  403. interrupts = 0;
  404. break;
  405. }
  406. if (interrupts & ENISR_OVER) 
  407. ei_rx_overrun(dev);
  408. else if (interrupts & (ENISR_RX+ENISR_RX_ERR)) 
  409. {
  410. /* Got a good (?) packet. */
  411. ei_receive(dev);
  412. }
  413. /* Push the next to-transmit packet through. */
  414. if (interrupts & ENISR_TX)
  415. ei_tx_intr(dev);
  416. else if (interrupts & ENISR_TX_ERR)
  417. ei_tx_err(dev);
  418. if (interrupts & ENISR_COUNTERS) 
  419. {
  420. ei_local->stat.rx_frame_errors += inb_p(e8390_base + EN0_COUNTER0);
  421. ei_local->stat.rx_crc_errors   += inb_p(e8390_base + EN0_COUNTER1);
  422. ei_local->stat.rx_missed_errors+= inb_p(e8390_base + EN0_COUNTER2);
  423. outb_p(ENISR_COUNTERS, e8390_base + EN0_ISR); /* Ack intr. */
  424. }
  425. /* Ignore any RDC interrupts that make it back to here. */
  426. if (interrupts & ENISR_RDC) 
  427. {
  428. outb_p(ENISR_RDC, e8390_base + EN0_ISR);
  429. }
  430. outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base + E8390_CMD);
  431. }
  432.     
  433. if (interrupts && ei_debug) 
  434. {
  435. outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base + E8390_CMD);
  436. if (nr_serviced >= MAX_SERVICE) 
  437. {
  438. /* 0xFF is valid for a card removal */
  439. if(interrupts!=0xFF)
  440. printk(KERN_WARNING "%s: Too much work at interrupt, status %#2.2xn",
  441.    dev->name, interrupts);
  442. outb_p(ENISR_ALL, e8390_base + EN0_ISR); /* Ack. most intrs. */
  443. } else {
  444. printk(KERN_WARNING "%s: unknown interrupt %#2xn", dev->name, interrupts);
  445. outb_p(0xff, e8390_base + EN0_ISR); /* Ack. all intrs. */
  446. }
  447. }
  448. spin_unlock(&ei_local->page_lock);
  449. return;
  450. }
  451. /**
  452.  * ei_tx_err - handle transmitter error
  453.  * @dev: network device which threw the exception
  454.  *
  455.  * A transmitter error has happened. Most likely excess collisions (which
  456.  * is a fairly normal condition). If the error is one where the Tx will
  457.  * have been aborted, we try and send another one right away, instead of
  458.  * letting the failed packet sit and collect dust in the Tx buffer. This
  459.  * is a much better solution as it avoids kernel based Tx timeouts, and
  460.  * an unnecessary card reset.
  461.  *
  462.  * Called with lock held.
  463.  */
  464. static void ei_tx_err(struct net_device *dev)
  465. {
  466. long e8390_base = dev->base_addr;
  467. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  468. unsigned char txsr = inb_p(e8390_base+EN0_TSR);
  469. unsigned char tx_was_aborted = txsr & (ENTSR_ABT+ENTSR_FU);
  470. #ifdef VERBOSE_ERROR_DUMP
  471. printk(KERN_DEBUG "%s: transmitter error (%#2x): ", dev->name, txsr);
  472. if (txsr & ENTSR_ABT)
  473. printk("excess-collisions ");
  474. if (txsr & ENTSR_ND)
  475. printk("non-deferral ");
  476. if (txsr & ENTSR_CRS)
  477. printk("lost-carrier ");
  478. if (txsr & ENTSR_FU)
  479. printk("FIFO-underrun ");
  480. if (txsr & ENTSR_CDH)
  481. printk("lost-heartbeat ");
  482. printk("n");
  483. #endif
  484. outb_p(ENISR_TX_ERR, e8390_base + EN0_ISR); /* Ack intr. */
  485. if (tx_was_aborted)
  486. ei_tx_intr(dev);
  487. else 
  488. {
  489. ei_local->stat.tx_errors++;
  490. if (txsr & ENTSR_CRS) ei_local->stat.tx_carrier_errors++;
  491. if (txsr & ENTSR_CDH) ei_local->stat.tx_heartbeat_errors++;
  492. if (txsr & ENTSR_OWC) ei_local->stat.tx_window_errors++;
  493. }
  494. }
  495. /**
  496.  * ei_tx_intr - transmit interrupt handler
  497.  * @dev: network device for which tx intr is handled
  498.  *
  499.  * We have finished a transmit: check for errors and then trigger the next
  500.  * packet to be sent. Called with lock held.
  501.  */
  502. static void ei_tx_intr(struct net_device *dev)
  503. {
  504. long e8390_base = dev->base_addr;
  505. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  506. int status = inb(e8390_base + EN0_TSR);
  507.     
  508. outb_p(ENISR_TX, e8390_base + EN0_ISR); /* Ack intr. */
  509. #ifdef EI_PINGPONG
  510. /*
  511.  * There are two Tx buffers, see which one finished, and trigger
  512.  * the send of another one if it exists.
  513.  */
  514. ei_local->txqueue--;
  515. if (ei_local->tx1 < 0) 
  516. {
  517. if (ei_local->lasttx != 1 && ei_local->lasttx != -1)
  518. printk(KERN_ERR "%s: bogus last_tx_buffer %d, tx1=%d.n",
  519. ei_local->name, ei_local->lasttx, ei_local->tx1);
  520. ei_local->tx1 = 0;
  521. if (ei_local->tx2 > 0) 
  522. {
  523. ei_local->txing = 1;
  524. NS8390_trigger_send(dev, ei_local->tx2, ei_local->tx_start_page + 6);
  525. dev->trans_start = jiffies;
  526. ei_local->tx2 = -1,
  527. ei_local->lasttx = 2;
  528. }
  529. else ei_local->lasttx = 20, ei_local->txing = 0;
  530. }
  531. else if (ei_local->tx2 < 0) 
  532. {
  533. if (ei_local->lasttx != 2  &&  ei_local->lasttx != -2)
  534. printk("%s: bogus last_tx_buffer %d, tx2=%d.n",
  535. ei_local->name, ei_local->lasttx, ei_local->tx2);
  536. ei_local->tx2 = 0;
  537. if (ei_local->tx1 > 0) 
  538. {
  539. ei_local->txing = 1;
  540. NS8390_trigger_send(dev, ei_local->tx1, ei_local->tx_start_page);
  541. dev->trans_start = jiffies;
  542. ei_local->tx1 = -1;
  543. ei_local->lasttx = 1;
  544. }
  545. else
  546. ei_local->lasttx = 10, ei_local->txing = 0;
  547. }
  548. // else printk(KERN_WARNING "%s: unexpected TX-done interrupt, lasttx=%d.n",
  549. // dev->name, ei_local->lasttx);
  550. #else /* EI_PINGPONG */
  551. /*
  552.  *  Single Tx buffer: mark it free so another packet can be loaded.
  553.  */
  554. ei_local->txing = 0;
  555. #endif
  556. /* Minimize Tx latency: update the statistics after we restart TXing. */
  557. if (status & ENTSR_COL)
  558. ei_local->stat.collisions++;
  559. if (status & ENTSR_PTX)
  560. ei_local->stat.tx_packets++;
  561. else 
  562. {
  563. ei_local->stat.tx_errors++;
  564. if (status & ENTSR_ABT) 
  565. {
  566. ei_local->stat.tx_aborted_errors++;
  567. ei_local->stat.collisions += 16;
  568. }
  569. if (status & ENTSR_CRS) 
  570. ei_local->stat.tx_carrier_errors++;
  571. if (status & ENTSR_FU) 
  572. ei_local->stat.tx_fifo_errors++;
  573. if (status & ENTSR_CDH)
  574. ei_local->stat.tx_heartbeat_errors++;
  575. if (status & ENTSR_OWC)
  576. ei_local->stat.tx_window_errors++;
  577. }
  578. netif_wake_queue(dev);
  579. }
  580. /**
  581.  * ei_receive - receive some packets
  582.  * @dev: network device with which receive will be run
  583.  *
  584.  * We have a good packet(s), get it/them out of the buffers. 
  585.  * Called with lock held.
  586.  */
  587. static void ei_receive(struct net_device *dev)
  588. {
  589. long e8390_base = dev->base_addr;
  590. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  591. unsigned char rxing_page, this_frame, next_frame;
  592. unsigned short current_offset;
  593. int rx_pkt_count = 0;
  594. struct e8390_pkt_hdr rx_frame;
  595. int num_rx_pages = ei_local->stop_page-ei_local->rx_start_page;
  596.     
  597. while (++rx_pkt_count < 10) 
  598. {
  599. int pkt_len, pkt_stat;
  600. /* Get the rx page (incoming packet pointer). */
  601. outb_p(E8390_NODMA+E8390_PAGE1, e8390_base + E8390_CMD);
  602. rxing_page = inb_p(e8390_base + EN1_CURPAG);
  603. outb_p(E8390_NODMA+E8390_PAGE0, e8390_base + E8390_CMD);
  604. /* Remove one frame from the ring.  Boundary is always a page behind. */
  605. this_frame = inb_p(e8390_base + EN0_BOUNDARY) + 1;
  606. if (this_frame >= ei_local->stop_page)
  607. this_frame = ei_local->rx_start_page;
  608. /* Someday we'll omit the previous, iff we never get this message.
  609.    (There is at least one clone claimed to have a problem.)  
  610.    
  611.    Keep quiet if it looks like a card removal. One problem here
  612.    is that some clones crash in roughly the same way.
  613.  */
  614. if (ei_debug > 0  &&  this_frame != ei_local->current_page && (this_frame!=0x0 || rxing_page!=0xFF))
  615. printk(KERN_ERR "%s: mismatched read page pointers %2x vs %2x.n",
  616.    dev->name, this_frame, ei_local->current_page);
  617. if (this_frame == rxing_page) /* Read all the frames? */
  618. break; /* Done for now */
  619. current_offset = this_frame << 8;
  620. ei_get_8390_hdr(dev, &rx_frame, this_frame);
  621. pkt_len = rx_frame.count - sizeof(struct e8390_pkt_hdr);
  622. pkt_stat = rx_frame.status;
  623. next_frame = this_frame + 1 + ((pkt_len+4)>>8);
  624. /* Check for bogosity warned by 3c503 book: the status byte is never
  625.    written.  This happened a lot during testing! This code should be
  626.    cleaned up someday. */
  627. if (rx_frame.next != next_frame
  628. && rx_frame.next != next_frame + 1
  629. && rx_frame.next != next_frame - num_rx_pages
  630. && rx_frame.next != next_frame + 1 - num_rx_pages) {
  631. ei_local->current_page = rxing_page;
  632. outb(ei_local->current_page-1, e8390_base+EN0_BOUNDARY);
  633. ei_local->stat.rx_errors++;
  634. continue;
  635. }
  636. if (pkt_len < 60  ||  pkt_len > 1518) 
  637. {
  638. if (ei_debug)
  639. printk(KERN_DEBUG "%s: bogus packet size: %d, status=%#2x nxpg=%#2x.n",
  640.    dev->name, rx_frame.count, rx_frame.status,
  641.    rx_frame.next);
  642. ei_local->stat.rx_errors++;
  643. ei_local->stat.rx_length_errors++;
  644. }
  645.  else if ((pkt_stat & 0x0F) == ENRSR_RXOK) 
  646. {
  647. struct sk_buff *skb;
  648. skb = dev_alloc_skb(pkt_len+2);
  649. if (skb == NULL) 
  650. {
  651. if (ei_debug > 1)
  652. printk(KERN_DEBUG "%s: Couldn't allocate a sk_buff of size %d.n",
  653.    dev->name, pkt_len);
  654. ei_local->stat.rx_dropped++;
  655. break;
  656. }
  657. else
  658. {
  659. skb_reserve(skb,2); /* IP headers on 16 byte boundaries */
  660. skb->dev = dev;
  661. skb_put(skb, pkt_len); /* Make room */
  662. ei_block_input(dev, pkt_len, skb, current_offset + sizeof(rx_frame));
  663. skb->protocol=eth_type_trans(skb,dev);
  664. netif_rx(skb);
  665. dev->last_rx = jiffies;
  666. ei_local->stat.rx_packets++;
  667. ei_local->stat.rx_bytes += pkt_len;
  668. if (pkt_stat & ENRSR_PHY)
  669. ei_local->stat.multicast++;
  670. }
  671. else 
  672. {
  673. if (ei_debug)
  674. printk(KERN_DEBUG "%s: bogus packet: status=%#2x nxpg=%#2x size=%dn",
  675.    dev->name, rx_frame.status, rx_frame.next,
  676.    rx_frame.count);
  677. ei_local->stat.rx_errors++;
  678. /* NB: The NIC counts CRC, frame and missed errors. */
  679. if (pkt_stat & ENRSR_FO)
  680. ei_local->stat.rx_fifo_errors++;
  681. }
  682. next_frame = rx_frame.next;
  683. /* This _should_ never happen: it's here for avoiding bad clones. */
  684. if (next_frame >= ei_local->stop_page) {
  685. printk("%s: next frame inconsistency, %#2xn", dev->name,
  686.    next_frame);
  687. next_frame = ei_local->rx_start_page;
  688. }
  689. ei_local->current_page = next_frame;
  690. outb_p(next_frame-1, e8390_base+EN0_BOUNDARY);
  691. }
  692. /* We used to also ack ENISR_OVER here, but that would sometimes mask
  693.    a real overrun, leaving the 8390 in a stopped state with rec'vr off. */
  694. outb_p(ENISR_RX+ENISR_RX_ERR, e8390_base+EN0_ISR);
  695. return;
  696. }
  697. /**
  698.  * ei_rx_overrun - handle receiver overrun
  699.  * @dev: network device which threw exception
  700.  *
  701.  * We have a receiver overrun: we have to kick the 8390 to get it started
  702.  * again. Problem is that you have to kick it exactly as NS prescribes in
  703.  * the updated datasheets, or "the NIC may act in an unpredictable manner."
  704.  * This includes causing "the NIC to defer indefinitely when it is stopped
  705.  * on a busy network."  Ugh.
  706.  * Called with lock held. Don't call this with the interrupts off or your
  707.  * computer will hate you - it takes 10ms or so. 
  708.  */
  709. static void ei_rx_overrun(struct net_device *dev)
  710. {
  711. long e8390_base = dev->base_addr;
  712. unsigned char was_txing, must_resend = 0;
  713. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  714.     
  715. /*
  716.  * Record whether a Tx was in progress and then issue the
  717.  * stop command.
  718.  */
  719. was_txing = inb_p(e8390_base+E8390_CMD) & E8390_TRANS;
  720. outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD);
  721.     
  722. if (ei_debug > 1)
  723. printk(KERN_DEBUG "%s: Receiver overrun.n", dev->name);
  724. ei_local->stat.rx_over_errors++;
  725.     
  726. /* 
  727.  * Wait a full Tx time (1.2ms) + some guard time, NS says 1.6ms total.
  728.  * Early datasheets said to poll the reset bit, but now they say that
  729.  * it "is not a reliable indicator and subsequently should be ignored."
  730.  * We wait at least 10ms.
  731.  */
  732. udelay(10*1000);
  733. /*
  734.  * Reset RBCR[01] back to zero as per magic incantation.
  735.  */
  736. outb_p(0x00, e8390_base+EN0_RCNTLO);
  737. outb_p(0x00, e8390_base+EN0_RCNTHI);
  738. /*
  739.  * See if any Tx was interrupted or not. According to NS, this
  740.  * step is vital, and skipping it will cause no end of havoc.
  741.  */
  742. if (was_txing)
  743. unsigned char tx_completed = inb_p(e8390_base+EN0_ISR) & (ENISR_TX+ENISR_TX_ERR);
  744. if (!tx_completed)
  745. must_resend = 1;
  746. }
  747. /*
  748.  * Have to enter loopback mode and then restart the NIC before
  749.  * you are allowed to slurp packets up off the ring.
  750.  */
  751. outb_p(E8390_TXOFF, e8390_base + EN0_TXCR);
  752. outb_p(E8390_NODMA + E8390_PAGE0 + E8390_START, e8390_base + E8390_CMD);
  753. /*
  754.  * Clear the Rx ring of all the debris, and ack the interrupt.
  755.  */
  756. ei_receive(dev);
  757. outb_p(ENISR_OVER, e8390_base+EN0_ISR);
  758. /*
  759.  * Leave loopback mode, and resend any packet that got stopped.
  760.  */
  761. outb_p(E8390_TXCONFIG, e8390_base + EN0_TXCR); 
  762. if (must_resend)
  763.      outb_p(E8390_NODMA + E8390_PAGE0 + E8390_START + E8390_TRANS, e8390_base + E8390_CMD);
  764. }
  765. /*
  766.  * Collect the stats. This is called unlocked and from several contexts.
  767.  */
  768.  
  769. static struct net_device_stats *get_stats(struct net_device *dev)
  770. {
  771. long ioaddr = dev->base_addr;
  772. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  773. unsigned long flags;
  774.     
  775. /* If the card is stopped, just return the present stats. */
  776. if (!netif_running(dev))
  777. return &ei_local->stat;
  778. spin_lock_irqsave(&ei_local->page_lock,flags);
  779. /* Read the counter registers, assuming we are in page 0. */
  780. ei_local->stat.rx_frame_errors += inb_p(ioaddr + EN0_COUNTER0);
  781. ei_local->stat.rx_crc_errors   += inb_p(ioaddr + EN0_COUNTER1);
  782. ei_local->stat.rx_missed_errors+= inb_p(ioaddr + EN0_COUNTER2);
  783. spin_unlock_irqrestore(&ei_local->page_lock, flags);
  784.     
  785. return &ei_local->stat;
  786. }
  787. /*
  788.  * Form the 64 bit 8390 multicast table from the linked list of addresses
  789.  * associated with this dev structure.
  790.  */
  791.  
  792. static inline void make_mc_bits(u8 *bits, struct net_device *dev)
  793. {
  794. struct dev_mc_list *dmi;
  795. for (dmi=dev->mc_list; dmi; dmi=dmi->next) 
  796. {
  797. u32 crc;
  798. if (dmi->dmi_addrlen != ETH_ALEN) 
  799. {
  800. printk(KERN_INFO "%s: invalid multicast address length given.n", dev->name);
  801. continue;
  802. }
  803. crc = ether_crc(ETH_ALEN, dmi->dmi_addr);
  804. /* 
  805.  * The 8390 uses the 6 most significant bits of the
  806.  * CRC to index the multicast table.
  807.  */
  808. bits[crc>>29] |= (1<<((crc>>26)&7));
  809. }
  810. }
  811. /**
  812.  * do_set_multicast_list - set/clear multicast filter
  813.  * @dev: net device for which multicast filter is adjusted
  814.  *
  815.  * Set or clear the multicast filter for this adaptor. May be called
  816.  * from a BH in 2.1.x. Must be called with lock held. 
  817.  */
  818.  
  819. static void do_set_multicast_list(struct net_device *dev)
  820. {
  821. long e8390_base = dev->base_addr;
  822. int i;
  823. struct ei_device *ei_local = (struct ei_device*)dev->priv;
  824. if (!(dev->flags&(IFF_PROMISC|IFF_ALLMULTI))) 
  825. {
  826. memset(ei_local->mcfilter, 0, 8);
  827. if (dev->mc_list)
  828. make_mc_bits(ei_local->mcfilter, dev);
  829. }
  830. else
  831. memset(ei_local->mcfilter, 0xFF, 8); /* mcast set to accept-all */
  832. /* 
  833.  * DP8390 manuals don't specify any magic sequence for altering
  834.  * the multicast regs on an already running card. To be safe, we
  835.  * ensure multicast mode is off prior to loading up the new hash
  836.  * table. If this proves to be not enough, we can always resort
  837.  * to stopping the NIC, loading the table and then restarting.
  838.  *
  839.  * Bug Alert!  The MC regs on the SMC 83C690 (SMC Elite and SMC 
  840.  * Elite16) appear to be write-only. The NS 8390 data sheet lists
  841.  * them as r/w so this is a bug.  The SMC 83C790 (SMC Ultra and
  842.  * Ultra32 EISA) appears to have this bug fixed.
  843.  */
  844.  
  845. if (netif_running(dev))
  846. outb_p(E8390_RXCONFIG, e8390_base + EN0_RXCR);
  847. outb_p(E8390_NODMA + E8390_PAGE1, e8390_base + E8390_CMD);
  848. for(i = 0; i < 8; i++) 
  849. {
  850. outb_p(ei_local->mcfilter[i], e8390_base + EN1_MULT_SHIFT(i));
  851. #ifndef BUG_83C690
  852. if(inb_p(e8390_base + EN1_MULT_SHIFT(i))!=ei_local->mcfilter[i])
  853. printk(KERN_ERR "Multicast filter read/write mismap %dn",i);
  854. #endif
  855. }
  856. outb_p(E8390_NODMA + E8390_PAGE0, e8390_base + E8390_CMD);
  857.    if(dev->flags&IFF_PROMISC)
  858.    outb_p(E8390_RXCONFIG | 0x18, e8390_base + EN0_RXCR);
  859. else if(dev->flags&IFF_ALLMULTI || dev->mc_list)
  860.    outb_p(E8390_RXCONFIG | 0x08, e8390_base + EN0_RXCR);
  861.    else
  862.    outb_p(E8390_RXCONFIG, e8390_base + EN0_RXCR);
  863.  }
  864. /*
  865.  * Called without lock held. This is invoked from user context and may
  866.  * be parallel to just about everything else. Its also fairly quick and
  867.  * not called too often. Must protect against both bh and irq users
  868.  */
  869.  
  870. static void set_multicast_list(struct net_device *dev)
  871. {
  872. unsigned long flags;
  873. struct ei_device *ei_local = (struct ei_device*)dev->priv;
  874. spin_lock_irqsave(&ei_local->page_lock, flags);
  875. do_set_multicast_list(dev);
  876. spin_unlock_irqrestore(&ei_local->page_lock, flags);
  877. }
  878. /**
  879.  * ethdev_init - init rest of 8390 device struct
  880.  * @dev: network device structure to init
  881.  *
  882.  * Initialize the rest of the 8390 device structure.  Do NOT __init
  883.  * this, as it is used by 8390 based modular drivers too.
  884.  */
  885. int ethdev_init(struct net_device *dev)
  886. {
  887. if (ei_debug > 1)
  888. printk(version);
  889.     
  890. if (dev->priv == NULL) 
  891. {
  892. struct ei_device *ei_local;
  893. dev->priv = kmalloc(sizeof(struct ei_device), GFP_KERNEL);
  894. if (dev->priv == NULL)
  895. return -ENOMEM;
  896. memset(dev->priv, 0, sizeof(struct ei_device));
  897. ei_local = (struct ei_device *)dev->priv;
  898. spin_lock_init(&ei_local->page_lock);
  899. }
  900.     
  901. dev->hard_start_xmit = &ei_start_xmit;
  902. dev->get_stats = get_stats;
  903. dev->set_multicast_list = &set_multicast_list;
  904. ether_setup(dev);
  905.         
  906. return 0;
  907. }
  908. /* This page of functions should be 8390 generic */
  909. /* Follow National Semi's recommendations for initializing the "NIC". */
  910. /**
  911.  * NS8390_init - initialize 8390 hardware
  912.  * @dev: network device to initialize
  913.  * @startp: boolean.  non-zero value to initiate chip processing
  914.  *
  915.  * Must be called with lock held.
  916.  */
  917. void NS8390_init(struct net_device *dev, int startp)
  918. {
  919. long e8390_base = dev->base_addr;
  920. struct ei_device *ei_local = (struct ei_device *) dev->priv;
  921. int i;
  922. int endcfg = ei_local->word16
  923.     ? (0x48 | ENDCFG_WTS | (ei_local->bigendian ? ENDCFG_BOS : 0))
  924.     : 0x48;
  925.     
  926. if(sizeof(struct e8390_pkt_hdr)!=4)
  927.      panic("8390.c: header struct mispackedn");    
  928. /* Follow National Semi's recommendations for initing the DP83902. */
  929. outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD); /* 0x21 */
  930. outb_p(endcfg, e8390_base + EN0_DCFG); /* 0x48 or 0x49 */
  931. /* Clear the remote byte count registers. */
  932. outb_p(0x00,  e8390_base + EN0_RCNTLO);
  933. outb_p(0x00,  e8390_base + EN0_RCNTHI);
  934. /* Set to monitor and loopback mode -- this is vital!. */
  935. outb_p(E8390_RXOFF, e8390_base + EN0_RXCR); /* 0x20 */
  936. outb_p(E8390_TXOFF, e8390_base + EN0_TXCR); /* 0x02 */
  937. /* Set the transmit page and receive ring. */
  938. outb_p(ei_local->tx_start_page, e8390_base + EN0_TPSR);
  939. ei_local->tx1 = ei_local->tx2 = 0;
  940. outb_p(ei_local->rx_start_page, e8390_base + EN0_STARTPG);
  941. outb_p(ei_local->stop_page-1, e8390_base + EN0_BOUNDARY); /* 3c503 says 0x3f,NS0x26*/
  942. ei_local->current_page = ei_local->rx_start_page; /* assert boundary+1 */
  943. outb_p(ei_local->stop_page, e8390_base + EN0_STOPPG);
  944. /* Clear the pending interrupts and mask. */
  945. outb_p(0xFF, e8390_base + EN0_ISR);
  946. outb_p(0x00,  e8390_base + EN0_IMR);
  947.     
  948. /* Copy the station address into the DS8390 registers. */
  949. outb_p(E8390_NODMA + E8390_PAGE1 + E8390_STOP, e8390_base+E8390_CMD); /* 0x61 */
  950. for(i = 0; i < 6; i++) 
  951. {
  952. outb_p(dev->dev_addr[i], e8390_base + EN1_PHYS_SHIFT(i));
  953. if(inb_p(e8390_base + EN1_PHYS_SHIFT(i))!=dev->dev_addr[i])
  954. printk(KERN_ERR "Hw. address read/write mismap %dn",i);
  955. }
  956. outb_p(ei_local->rx_start_page, e8390_base + EN1_CURPAG);
  957. outb_p(E8390_NODMA+E8390_PAGE0+E8390_STOP, e8390_base+E8390_CMD);
  958. netif_start_queue(dev);
  959. ei_local->tx1 = ei_local->tx2 = 0;
  960. ei_local->txing = 0;
  961. if (startp) 
  962. {
  963. outb_p(0xff,  e8390_base + EN0_ISR);
  964. outb_p(ENISR_ALL,  e8390_base + EN0_IMR);
  965. outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, e8390_base+E8390_CMD);
  966. outb_p(E8390_TXCONFIG, e8390_base + EN0_TXCR); /* xmit on. */
  967. /* 3c503 TechMan says rxconfig only after the NIC is started. */
  968. outb_p(E8390_RXCONFIG, e8390_base + EN0_RXCR); /* rx on,  */
  969. do_set_multicast_list(dev); /* (re)load the mcast table */
  970. }
  971. }
  972. /* Trigger a transmit start, assuming the length is valid. 
  973.    Always called with the page lock held */
  974.    
  975. static void NS8390_trigger_send(struct net_device *dev, unsigned int length,
  976. int start_page)
  977. {
  978. long e8390_base = dev->base_addr;
  979.   struct ei_device *ei_local __attribute((unused)) = (struct ei_device *) dev->priv;
  980.    
  981. outb_p(E8390_NODMA+E8390_PAGE0, e8390_base+E8390_CMD);
  982.     
  983. if (inb_p(e8390_base) & E8390_TRANS) 
  984. {
  985. printk(KERN_WARNING "%s: trigger_send() called with the transmitter busy.n",
  986. dev->name);
  987. return;
  988. }
  989. outb_p(length & 0xff, e8390_base + EN0_TCNTLO);
  990. outb_p(length >> 8, e8390_base + EN0_TCNTHI);
  991. outb_p(start_page, e8390_base + EN0_TPSR);
  992. outb_p(E8390_NODMA+E8390_TRANS+E8390_START, e8390_base+E8390_CMD);
  993. }
  994. EXPORT_SYMBOL(ei_open);
  995. EXPORT_SYMBOL(ei_close);
  996. EXPORT_SYMBOL(ei_interrupt);
  997. EXPORT_SYMBOL(ei_tx_timeout);
  998. EXPORT_SYMBOL(ethdev_init);
  999. EXPORT_SYMBOL(NS8390_init);
  1000. #if defined(MODULE)
  1001. int init_module(void)
  1002. {
  1003. return 0;
  1004. }
  1005. void cleanup_module(void)
  1006. {
  1007. }
  1008. #endif /* MODULE */
  1009. MODULE_LICENSE("GPL");
  1010. /*
  1011.  * Local variables:
  1012.  *  compile-command: "gcc -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict-prototypes -O6 -m486 -c 8390.c"
  1013.  *  version-control: t
  1014.  *  kept-new-versions: 5
  1015.  *  c-indent-level: 4
  1016.  *  tab-width: 4
  1017.  * End:
  1018.  */