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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.  * 7990.c -- LANCE ethernet IC generic routines. 
  3.  * This is an attempt to separate out the bits of various ethernet
  4.  * drivers that are common because they all use the AMD 7990 LANCE 
  5.  * (Local Area Network Controller for Ethernet) chip.
  6.  *
  7.  * Copyright (C) 05/1998 Peter Maydell <pmaydell@chiark.greenend.org.uk>
  8.  *
  9.  * Most of this stuff was obtained by looking at other LANCE drivers,
  10.  * in particular a2065.[ch]. The AMD C-LANCE datasheet was also helpful.
  11.  * NB: this was made easy by the fact that Jes Sorensen had cleaned up
  12.  * most of a2025 and sunlance with the aim of merging them, so the 
  13.  * common code was pretty obvious.
  14.  */
  15. #include <linux/module.h>
  16. #include <linux/kernel.h>
  17. #include <linux/sched.h>
  18. #include <linux/types.h>
  19. #include <linux/fcntl.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/ptrace.h>
  22. #include <linux/ioport.h>
  23. #include <linux/in.h>
  24. #include <linux/slab.h>
  25. #include <linux/string.h>
  26. #include <linux/delay.h>
  27. #include <linux/init.h>
  28. #include <linux/crc32.h>
  29. #include <asm/system.h>
  30. #include <asm/bitops.h>
  31. #include <asm/io.h>
  32. #include <asm/dma.h>
  33. #include <asm/pgtable.h>
  34. #include <linux/errno.h>
  35. /* Used for the temporal inet entries and routing */
  36. #include <linux/socket.h>
  37. #include <linux/route.h>
  38. #include <linux/dio.h>
  39. #include <linux/netdevice.h>
  40. #include <linux/etherdevice.h>
  41. #include <linux/skbuff.h>
  42. #include "7990.h"
  43. /* Lossage Factor Nine, Mr Sulu. */
  44. #define WRITERAP(x) (lp->writerap(lp,x))
  45. #define WRITERDP(x) (lp->writerdp(lp,x))
  46. #define READRDP() (lp->readrdp(lp))
  47. /* These used to be ll->rap = x, ll->rdp = x, and (ll->rdp). Sigh. 
  48.  * If you want to switch them back then 
  49.  * #define DECLARE_LL volatile struct lance_regs *ll = lp->ll
  50.  */
  51. #define DECLARE_LL /* nothing to declare */
  52. /* debugging output macros, various flavours */
  53. /* #define TEST_HITS */
  54. #ifdef UNDEF
  55. #define PRINT_RINGS() 
  56. do { 
  57.         int t; 
  58.         for (t=0; t < RX_RING_SIZE; t++) { 
  59.                 printk("R%d: @(%02X %04X) len %04X, mblen %04X, bits %02Xn",
  60.                        t, ib->brx_ring[t].rmd1_hadr, ib->brx_ring[t].rmd0,
  61.                        ib->brx_ring[t].length,
  62.                        ib->brx_ring[t].mblength, ib->brx_ring[t].rmd1_bits);
  63.         }
  64.         for (t=0; t < TX_RING_SIZE; t++) { 
  65.                 printk("T%d: @(%02X %04X) len %04X, misc %04X, bits %02Xn",
  66.                        t, ib->btx_ring[t].tmd1_hadr, ib->btx_ring[t].tmd0,
  67.                        ib->btx_ring[t].length,
  68.                        ib->btx_ring[t].misc, ib->btx_ring[t].tmd1_bits);
  69.         }
  70. } while (0) 
  71. #else
  72. #define PRINT_RINGS()
  73. #endif        
  74. /* Load the CSR registers. The LANCE has to be STOPped when we do this! */
  75. static void load_csrs (struct lance_private *lp)
  76. {
  77.         volatile struct lance_init_block *aib = lp->lance_init_block;
  78.         int leptr;
  79.         DECLARE_LL;
  80.         leptr = LANCE_ADDR (aib);
  81.         WRITERAP(LE_CSR1);                        /* load address of init block */
  82.         WRITERDP(leptr & 0xFFFF);
  83.         WRITERAP(LE_CSR2);
  84.         WRITERDP(leptr >> 16);
  85.         WRITERAP(LE_CSR3);
  86.         WRITERDP(lp->busmaster_regval);           /* set byteswap/ALEctrl/byte ctrl */
  87.         /* Point back to csr0 */
  88.         WRITERAP(LE_CSR0);
  89. }
  90. /* #define to 0 or 1 appropriately */
  91. #define DEBUG_IRING 0
  92. /* Set up the Lance Rx and Tx rings and the init block */
  93. static void lance_init_ring (struct net_device *dev)
  94. {
  95.         struct lance_private *lp = (struct lance_private *) dev->priv;
  96.         volatile struct lance_init_block *ib = lp->init_block;
  97.         volatile struct lance_init_block *aib; /* for LANCE_ADDR computations */
  98.         int leptr;
  99.         int i;
  100.         aib = lp->lance_init_block;
  101.         lp->rx_new = lp->tx_new = 0;
  102.         lp->rx_old = lp->tx_old = 0;
  103.         ib->mode = LE_MO_PROM;                             /* normal, enable Tx & Rx */
  104.         /* Copy the ethernet address to the lance init block
  105.          * Notice that we do a byteswap if we're big endian.
  106.          * [I think this is the right criterion; at least, sunlance,
  107.          * a2065 and atarilance do the byteswap and lance.c (PC) doesn't.
  108.          * However, the datasheet says that the BSWAP bit doesn't affect
  109.          * the init block, so surely it should be low byte first for
  110.          * everybody? Um.] 
  111.          * We could define the ib->physaddr as three 16bit values and
  112.          * use (addr[1] << 8) | addr[0] & co, but this is more efficient.
  113.          */
  114. #ifdef __BIG_ENDIAN
  115.         ib->phys_addr [0] = dev->dev_addr [1];
  116.         ib->phys_addr [1] = dev->dev_addr [0];
  117.         ib->phys_addr [2] = dev->dev_addr [3];
  118.         ib->phys_addr [3] = dev->dev_addr [2];
  119.         ib->phys_addr [4] = dev->dev_addr [5];
  120.         ib->phys_addr [5] = dev->dev_addr [4];
  121. #else
  122.         for (i=0; i<6; i++)
  123.            ib->phys_addr[i] = dev->dev_addr[i];
  124. #endif        
  125.         if (DEBUG_IRING)
  126.                 printk ("TX rings:n");
  127.     
  128. lp->tx_full = 0;
  129.         /* Setup the Tx ring entries */
  130.         for (i = 0; i < (1<<lp->lance_log_tx_bufs); i++) {
  131.                 leptr = LANCE_ADDR(&aib->tx_buf[i][0]);
  132.                 ib->btx_ring [i].tmd0      = leptr;
  133.                 ib->btx_ring [i].tmd1_hadr = leptr >> 16;
  134.                 ib->btx_ring [i].tmd1_bits = 0;
  135.                 ib->btx_ring [i].length    = 0xf000; /* The ones required by tmd2 */
  136.                 ib->btx_ring [i].misc      = 0;
  137.                 if (DEBUG_IRING) 
  138.                    printk ("%d: 0x%8.8xn", i, leptr);
  139.         }
  140.         /* Setup the Rx ring entries */
  141.         if (DEBUG_IRING)
  142.                 printk ("RX rings:n");
  143.         for (i = 0; i < (1<<lp->lance_log_rx_bufs); i++) {
  144.                 leptr = LANCE_ADDR(&aib->rx_buf[i][0]);
  145.                 ib->brx_ring [i].rmd0      = leptr;
  146.                 ib->brx_ring [i].rmd1_hadr = leptr >> 16;
  147.                 ib->brx_ring [i].rmd1_bits = LE_R1_OWN;
  148.                 /* 0xf000 == bits that must be one (reserved, presumably) */
  149.                 ib->brx_ring [i].length    = -RX_BUFF_SIZE | 0xf000;
  150.                 ib->brx_ring [i].mblength  = 0;
  151.                 if (DEBUG_IRING)
  152.                         printk ("%d: 0x%8.8xn", i, leptr);
  153.         }
  154.         /* Setup the initialization block */
  155.     
  156.         /* Setup rx descriptor pointer */
  157.         leptr = LANCE_ADDR(&aib->brx_ring);
  158.         ib->rx_len = (lp->lance_log_rx_bufs << 13) | (leptr >> 16);
  159.         ib->rx_ptr = leptr;
  160.         if (DEBUG_IRING)
  161.                 printk ("RX ptr: %8.8xn", leptr);
  162.     
  163.         /* Setup tx descriptor pointer */
  164.         leptr = LANCE_ADDR(&aib->btx_ring);
  165.         ib->tx_len = (lp->lance_log_tx_bufs << 13) | (leptr >> 16);
  166.         ib->tx_ptr = leptr;
  167.         if (DEBUG_IRING)
  168.                 printk ("TX ptr: %8.8xn", leptr);
  169.         /* Clear the multicast filter */
  170.         ib->filter [0] = 0;
  171.         ib->filter [1] = 0;
  172.         PRINT_RINGS();
  173. }
  174. /* LANCE must be STOPped before we do this, too... */
  175. static int init_restart_lance (struct lance_private *lp)
  176. {
  177.         int i;
  178.         DECLARE_LL;
  179.         WRITERAP(LE_CSR0);
  180.         WRITERDP(LE_C0_INIT);
  181.         /* Need a hook here for sunlance ledma stuff */
  182.         /* Wait for the lance to complete initialization */
  183.         for (i = 0; (i < 100) && !(READRDP() & (LE_C0_ERR | LE_C0_IDON)); i++)
  184.                 barrier();
  185.         if ((i == 100) || (READRDP() & LE_C0_ERR)) {
  186.                 printk ("LANCE unopened after %d ticks, csr0=%4.4x.n", i, READRDP());
  187.                 return -1;
  188.         }
  189.         /* Clear IDON by writing a "1", enable interrupts and start lance */
  190.         WRITERDP(LE_C0_IDON);
  191.         WRITERDP(LE_C0_INEA | LE_C0_STRT);
  192.         return 0;
  193. }
  194. static int lance_reset (struct net_device *dev)
  195. {
  196.         struct lance_private *lp = (struct lance_private *)dev->priv;
  197.         int status;
  198.         DECLARE_LL;
  199.     
  200.         /* Stop the lance */
  201.         WRITERAP(LE_CSR0);
  202.         WRITERDP(LE_C0_STOP);
  203.         load_csrs (lp);
  204.         lance_init_ring (dev);
  205.         dev->trans_start = jiffies;
  206.         status = init_restart_lance (lp);
  207. #ifdef DEBUG_DRIVER
  208.         printk ("Lance restart=%dn", status);
  209. #endif
  210.         return status;
  211. }
  212. static int lance_rx (struct net_device *dev)
  213. {
  214.         struct lance_private *lp = (struct lance_private *) dev->priv;
  215.         volatile struct lance_init_block *ib = lp->init_block;
  216.         volatile struct lance_rx_desc *rd;
  217.         unsigned char bits;
  218.         int len = 0;                    /* XXX shut up gcc warnings */
  219.         struct sk_buff *skb = 0;        /* XXX shut up gcc warnings */
  220. #ifdef TEST_HITS
  221.         int i;
  222. #endif
  223.         DECLARE_LL;
  224. #ifdef TEST_HITS
  225.         printk ("[");
  226.         for (i = 0; i < RX_RING_SIZE; i++) {
  227.                 if (i == lp->rx_new)
  228.                         printk ("%s",
  229.                                 ib->brx_ring [i].rmd1_bits & LE_R1_OWN ? "_" : "X");
  230.                 else
  231.                         printk ("%s",
  232.                                 ib->brx_ring [i].rmd1_bits & LE_R1_OWN ? "." : "1");
  233.         }
  234.         printk ("]");
  235. #endif
  236.     
  237.         WRITERDP(LE_C0_RINT | LE_C0_INEA);     /* ack Rx int, reenable ints */
  238.         for (rd = &ib->brx_ring [lp->rx_new];     /* For each Rx ring we own... */
  239.              !((bits = rd->rmd1_bits) & LE_R1_OWN);
  240.              rd = &ib->brx_ring [lp->rx_new]) {
  241.                 /* We got an incomplete frame? */
  242.                 if ((bits & LE_R1_POK) != LE_R1_POK) {
  243.                         lp->stats.rx_over_errors++;
  244.                         lp->stats.rx_errors++;
  245.                         continue;
  246.                 } else if (bits & LE_R1_ERR) {
  247.                         /* Count only the end frame as a rx error,
  248.                          * not the beginning
  249.                          */
  250.                         if (bits & LE_R1_BUF) lp->stats.rx_fifo_errors++;
  251.                         if (bits & LE_R1_CRC) lp->stats.rx_crc_errors++;
  252.                         if (bits & LE_R1_OFL) lp->stats.rx_over_errors++;
  253.                         if (bits & LE_R1_FRA) lp->stats.rx_frame_errors++;
  254.                         if (bits & LE_R1_EOP) lp->stats.rx_errors++;
  255.                 } else {
  256.                         len = (rd->mblength & 0xfff) - 4;
  257.                         skb = dev_alloc_skb (len+2);
  258.                         if (skb == 0) {
  259.                                 printk ("%s: Memory squeeze, deferring packet.n",
  260.                                         dev->name);
  261.                                 lp->stats.rx_dropped++;
  262.                                 rd->mblength = 0;
  263.                                 rd->rmd1_bits = LE_R1_OWN;
  264.                                 lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask;
  265.                                 return 0;
  266.                         }
  267.             
  268.                         skb->dev = dev;
  269.                         skb_reserve (skb, 2);           /* 16 byte align */
  270.                         skb_put (skb, len);             /* make room */
  271.                         eth_copy_and_sum(skb,
  272.                                          (unsigned char *)&(ib->rx_buf [lp->rx_new][0]),
  273.                                          len, 0);
  274.                         skb->protocol = eth_type_trans (skb, dev);
  275. netif_rx (skb);
  276. dev->last_rx = jiffies;
  277. lp->stats.rx_packets++;
  278. lp->stats.rx_bytes += len;
  279.                 }
  280.                 /* Return the packet to the pool */
  281.                 rd->mblength = 0;
  282.                 rd->rmd1_bits = LE_R1_OWN;
  283.                 lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask;
  284.         }
  285.         return 0;
  286. }
  287. static int lance_tx (struct net_device *dev)
  288. {
  289.         struct lance_private *lp = (struct lance_private *) dev->priv;
  290.         volatile struct lance_init_block *ib = lp->init_block;
  291.         volatile struct lance_tx_desc *td;
  292.         int i, j;
  293.         int status;
  294.         DECLARE_LL;
  295.         /* csr0 is 2f3 */
  296.         WRITERDP(LE_C0_TINT | LE_C0_INEA);
  297.         /* csr0 is 73 */
  298.         j = lp->tx_old;
  299.         for (i = j; i != lp->tx_new; i = j) {
  300.                 td = &ib->btx_ring [i];
  301.                 /* If we hit a packet not owned by us, stop */
  302.                 if (td->tmd1_bits & LE_T1_OWN)
  303.                         break;
  304.                 
  305.                 if (td->tmd1_bits & LE_T1_ERR) {
  306.                         status = td->misc;
  307.             
  308.                         lp->stats.tx_errors++;
  309.                         if (status & LE_T3_RTY)  lp->stats.tx_aborted_errors++;
  310.                         if (status & LE_T3_LCOL) lp->stats.tx_window_errors++;
  311.                         if (status & LE_T3_CLOS) {
  312.                                 lp->stats.tx_carrier_errors++;
  313.                                 if (lp->auto_select) {
  314.                                         lp->tpe = 1 - lp->tpe;
  315.                                         printk("%s: Carrier Lost, trying %sn",
  316.                                                dev->name, lp->tpe?"TPE":"AUI");
  317.                                         /* Stop the lance */
  318.                                         WRITERAP(LE_CSR0);
  319.                                         WRITERDP(LE_C0_STOP);
  320.                                         lance_init_ring (dev);
  321.                                         load_csrs (lp);
  322.                                         init_restart_lance (lp);
  323.                                         return 0;
  324.                                 }
  325.                         }
  326.                         /* buffer errors and underflows turn off the transmitter */
  327.                         /* Restart the adapter */
  328.                         if (status & (LE_T3_BUF|LE_T3_UFL)) {
  329.                                 lp->stats.tx_fifo_errors++;
  330.                                 printk ("%s: Tx: ERR_BUF|ERR_UFL, restartingn",
  331.                                         dev->name);
  332.                                 /* Stop the lance */
  333.                                 WRITERAP(LE_CSR0);
  334.                                 WRITERDP(LE_C0_STOP);
  335.                                 lance_init_ring (dev);
  336.                                 load_csrs (lp);
  337.                                 init_restart_lance (lp);
  338.                                 return 0;
  339.                         }
  340.                 } else if ((td->tmd1_bits & LE_T1_POK) == LE_T1_POK) {
  341.                         /*
  342.                          * So we don't count the packet more than once.
  343.                          */
  344.                         td->tmd1_bits &= ~(LE_T1_POK);
  345.                         /* One collision before packet was sent. */
  346.                         if (td->tmd1_bits & LE_T1_EONE)
  347.                                 lp->stats.collisions++;
  348.                         /* More than one collision, be optimistic. */
  349.                         if (td->tmd1_bits & LE_T1_EMORE)
  350.                                 lp->stats.collisions += 2;
  351.                         lp->stats.tx_packets++;
  352.                 }
  353.         
  354.                 j = (j + 1) & lp->tx_ring_mod_mask;
  355.         }
  356.         lp->tx_old = j;
  357.         WRITERDP(LE_C0_TINT | LE_C0_INEA);
  358.         return 0;
  359. }
  360. static void lance_interrupt (int irq, void *dev_id, struct pt_regs *regs)
  361. {
  362.         struct net_device *dev = (struct net_device *)dev_id;
  363.         struct lance_private *lp = (struct lance_private *)dev->priv;
  364.         int csr0;
  365.         DECLARE_LL;
  366. spin_lock (&lp->devlock);
  367.         WRITERAP(LE_CSR0);              /* LANCE Controller Status */
  368.         csr0 = READRDP();
  369.         PRINT_RINGS();
  370.         
  371.         if (!(csr0 & LE_C0_INTR)) {     /* Check if any interrupt has */
  372. spin_lock (&lp->devlock);
  373.                 return;                 /* been generated by the Lance. */
  374. }
  375.         /* Acknowledge all the interrupt sources ASAP */
  376.         WRITERDP(csr0 & ~(LE_C0_INEA|LE_C0_TDMD|LE_C0_STOP|LE_C0_STRT|LE_C0_INIT));
  377.         if ((csr0 & LE_C0_ERR)) {
  378.                 /* Clear the error condition */
  379.                 WRITERDP(LE_C0_BABL|LE_C0_ERR|LE_C0_MISS|LE_C0_INEA);
  380.         }
  381.         if (csr0 & LE_C0_RINT)
  382.                 lance_rx (dev);
  383.         if (csr0 & LE_C0_TINT)
  384.                 lance_tx (dev);
  385.         /* Log misc errors. */
  386.         if (csr0 & LE_C0_BABL)
  387.                 lp->stats.tx_errors++;       /* Tx babble. */
  388.         if (csr0 & LE_C0_MISS)
  389.                 lp->stats.rx_errors++;       /* Missed a Rx frame. */
  390.         if (csr0 & LE_C0_MERR) {
  391.                 printk("%s: Bus master arbitration failure, status %4.4x.n", 
  392.                        dev->name, csr0);
  393.                 /* Restart the chip. */
  394.                 WRITERDP(LE_C0_STRT);
  395.         }
  396.         if (lp->tx_full && netif_queue_stopped(dev) && (TX_BUFFS_AVAIL >= 0)) {
  397. lp->tx_full = 0;
  398. netif_wake_queue (dev);
  399.         }
  400.         
  401.         WRITERAP(LE_CSR0);
  402.         WRITERDP(LE_C0_BABL|LE_C0_CERR|LE_C0_MISS|LE_C0_MERR|LE_C0_IDON|LE_C0_INEA);
  403. spin_unlock (&lp->devlock);
  404. }
  405. int lance_open (struct net_device *dev)
  406. {
  407.         struct lance_private *lp = (struct lance_private *)dev->priv;
  408. int res;
  409.         DECLARE_LL;
  410.         
  411.         /* Install the Interrupt handler. Or we could shunt this out to specific drivers? */
  412.         if (request_irq(lp->irq, lance_interrupt, 0, lp->name, dev))
  413.                 return -EAGAIN;
  414.         res = lance_reset(dev);
  415. lp->devlock = SPIN_LOCK_UNLOCKED;
  416. netif_start_queue (dev);
  417. return res;
  418. }
  419. int lance_close (struct net_device *dev)
  420. {
  421.         struct lance_private *lp = (struct lance_private *) dev->priv;
  422.         DECLARE_LL;
  423.         
  424. netif_stop_queue (dev);
  425.         /* Stop the LANCE */
  426.         WRITERAP(LE_CSR0);
  427.         WRITERDP(LE_C0_STOP);
  428.         free_irq(lp->irq, dev);
  429.         return 0;
  430. }
  431. void lance_tx_timeout(struct net_device *dev)
  432. {
  433. printk("lance_tx_timeoutn");
  434. lance_reset(dev);
  435. dev->trans_start = jiffies;
  436. netif_wake_queue (dev);
  437. }
  438. int lance_start_xmit (struct sk_buff *skb, struct net_device *dev)
  439. {
  440.         struct lance_private *lp = (struct lance_private *)dev->priv;
  441.         volatile struct lance_init_block *ib = lp->init_block;
  442.         int entry, skblen, len;
  443.         static int outs;
  444. unsigned long flags;
  445.         DECLARE_LL;
  446.         if (!TX_BUFFS_AVAIL)
  447.                 return -1;
  448. netif_stop_queue (dev);
  449.         skblen = skb->len;
  450. #ifdef DEBUG_DRIVER
  451.         /* dump the packet */
  452.         {
  453.                 int i;
  454.         
  455.                 for (i = 0; i < 64; i++) {
  456.                         if ((i % 16) == 0)
  457.                                 printk ("n");
  458.                         printk ("%2.2x ", skb->data [i]);
  459.                 }
  460.         }
  461. #endif
  462.         len = (skblen <= ETH_ZLEN) ? ETH_ZLEN : skblen;
  463.         entry = lp->tx_new & lp->tx_ring_mod_mask;
  464.         ib->btx_ring [entry].length = (-len) | 0xf000;
  465.         ib->btx_ring [entry].misc = 0;
  466.     
  467.         memcpy ((char *)&ib->tx_buf [entry][0], skb->data, skblen);
  468.     
  469.         /* Now, give the packet to the lance */
  470.         ib->btx_ring [entry].tmd1_bits = (LE_T1_POK|LE_T1_OWN);
  471.         lp->tx_new = (lp->tx_new+1) & lp->tx_ring_mod_mask;
  472.         outs++;
  473.         /* Kick the lance: transmit now */
  474.         WRITERDP(LE_C0_INEA | LE_C0_TDMD);
  475.         dev->trans_start = jiffies;
  476.         dev_kfree_skb (skb);
  477.     
  478. spin_lock_irqsave (&lp->devlock, flags);
  479.         if (TX_BUFFS_AVAIL)
  480. netif_start_queue (dev);
  481. else
  482. lp->tx_full = 1;
  483. spin_unlock_irqrestore (&lp->devlock, flags);
  484.         return 0;
  485. }
  486. struct net_device_stats *lance_get_stats (struct net_device *dev)
  487. {
  488.         struct lance_private *lp = (struct lance_private *) dev->priv;
  489.         return &lp->stats;
  490. }
  491. /* taken from the depca driver via a2065.c */
  492. static void lance_load_multicast (struct net_device *dev)
  493. {
  494.         struct lance_private *lp = (struct lance_private *) dev->priv;
  495.         volatile struct lance_init_block *ib = lp->init_block;
  496.         volatile u16 *mcast_table = (u16 *)&ib->filter;
  497.         struct dev_mc_list *dmi=dev->mc_list;
  498.         char *addrs;
  499.         int i;
  500.         u32 crc;
  501.         
  502.         /* set all multicast bits */
  503.         if (dev->flags & IFF_ALLMULTI){ 
  504.                 ib->filter [0] = 0xffffffff;
  505.                 ib->filter [1] = 0xffffffff;
  506.                 return;
  507.         }
  508.         /* clear the multicast filter */
  509.         ib->filter [0] = 0;
  510.         ib->filter [1] = 0;
  511.         /* Add addresses */
  512.         for (i = 0; i < dev->mc_count; i++){
  513.                 addrs = dmi->dmi_addr;
  514.                 dmi   = dmi->next;
  515.                 /* multicast address? */
  516.                 if (!(*addrs & 1))
  517.                         continue;
  518.                 
  519. crc = ether_crc_le(6, addrs);
  520.                 crc = crc >> 26;
  521.                 mcast_table [crc >> 4] |= 1 << (crc & 0xf);
  522.         }
  523.         return;
  524. }
  525. void lance_set_multicast (struct net_device *dev)
  526. {
  527.         struct lance_private *lp = (struct lance_private *) dev->priv;
  528.         volatile struct lance_init_block *ib = lp->init_block;
  529. int stopped;
  530.         DECLARE_LL;
  531. stopped = netif_queue_stopped(dev);
  532. if (!stopped)
  533. netif_stop_queue (dev);
  534.         while (lp->tx_old != lp->tx_new)
  535.                 schedule();
  536.         WRITERAP(LE_CSR0);
  537.         WRITERDP(LE_C0_STOP);
  538.         lance_init_ring (dev);
  539.         if (dev->flags & IFF_PROMISC) {
  540.                 ib->mode |= LE_MO_PROM;
  541.         } else {
  542.                 ib->mode &= ~LE_MO_PROM;
  543.                 lance_load_multicast (dev);
  544.         }
  545.         load_csrs (lp);
  546.         init_restart_lance (lp);
  547. if (!stopped)
  548. netif_start_queue (dev);
  549. }
  550. MODULE_LICENSE("GPL");