ariadne.c

来自「linux 内核源代码」· C语言 代码 · 共 871 行 · 第 1/2 页

C
871
字号
    boguscnt = 10;    while ((csr0 = lance->RDP) & (ERR|RINT|TINT) && --boguscnt >= 0) {	/* Acknowledge all of the current interrupt sources ASAP. */	lance->RDP = csr0 & ~(INEA|TDMD|STOP|STRT|INIT);#if 0	if (ariadne_debug > 5) {	    printk(KERN_DEBUG "%s: interrupt  csr0=%#2.2x new csr=%#2.2x.",		   dev->name, csr0, lance->RDP);	    printk("[");	    if (csr0 & INTR)		printk(" INTR");	    if (csr0 & INEA)		printk(" INEA");	    if (csr0 & RXON)		printk(" RXON");	    if (csr0 & TXON)		printk(" TXON");	    if (csr0 & TDMD)		printk(" TDMD");	    if (csr0 & STOP)		printk(" STOP");	    if (csr0 & STRT)		printk(" STRT");	    if (csr0 & INIT)		printk(" INIT");	    if (csr0 & ERR)		printk(" ERR");	    if (csr0 & BABL)		printk(" BABL");	    if (csr0 & CERR)		printk(" CERR");	    if (csr0 & MISS)		printk(" MISS");	    if (csr0 & MERR)		printk(" MERR");	    if (csr0 & RINT)		printk(" RINT");	    if (csr0 & TINT)		printk(" TINT");	    if (csr0 & IDON)		printk(" IDON");	    printk(" ]\n");	}#endif	if (csr0 & RINT) {	/* Rx interrupt */	    handled = 1;	    ariadne_rx(dev);	}	if (csr0 & TINT) {	/* Tx-done interrupt */	    int dirty_tx = priv->dirty_tx;	    handled = 1;	    while (dirty_tx < priv->cur_tx) {		int entry = dirty_tx % TX_RING_SIZE;		int status = lowb(priv->tx_ring[entry]->TMD1);		if (status & TF_OWN)		    break;	/* It still hasn't been Txed */		priv->tx_ring[entry]->TMD1 &= 0xff00;		if (status & TF_ERR) {		    /* There was an major error, log it. */		    int err_status = priv->tx_ring[entry]->TMD3;		    priv->stats.tx_errors++;		    if (err_status & EF_RTRY)			priv->stats.tx_aborted_errors++;		    if (err_status & EF_LCAR)			priv->stats.tx_carrier_errors++;		    if (err_status & EF_LCOL)			priv->stats.tx_window_errors++;		    if (err_status & EF_UFLO) {			/* Ackk!  On FIFO errors the Tx unit is turned off! */			priv->stats.tx_fifo_errors++;			/* Remove this verbosity later! */			printk(KERN_ERR "%s: Tx FIFO error! Status %4.4x.\n",			       dev->name, csr0);			/* Restart the chip. */			lance->RDP = STRT;		    }		} else {		    if (status & (TF_MORE|TF_ONE))			priv->stats.collisions++;		    priv->stats.tx_packets++;		}		dirty_tx++;	    }#ifndef final_version	    if (priv->cur_tx - dirty_tx >= TX_RING_SIZE) {		printk(KERN_ERR "out-of-sync dirty pointer, %d vs. %d, "		       "full=%d.\n", dirty_tx, priv->cur_tx, priv->tx_full);		dirty_tx += TX_RING_SIZE;	    }#endif	    if (priv->tx_full && netif_queue_stopped(dev) &&		dirty_tx > priv->cur_tx - TX_RING_SIZE + 2) {		/* The ring is no longer full. */		priv->tx_full = 0;		netif_wake_queue(dev);	    }	    priv->dirty_tx = dirty_tx;	}	/* Log misc errors. */	if (csr0 & BABL) {	    handled = 1;	    priv->stats.tx_errors++;	/* Tx babble. */	}	if (csr0 & MISS) {	    handled = 1;	    priv->stats.rx_errors++;	/* Missed a Rx frame. */	}	if (csr0 & MERR) {	    handled = 1;	    printk(KERN_ERR "%s: Bus master arbitration failure, status "		   "%4.4x.\n", dev->name, csr0);	    /* Restart the chip. */	    lance->RDP = STRT;	}    }    /* Clear any other interrupt, and set interrupt enable. */    lance->RAP = CSR0;		/* PCnet-ISA Controller Status */    lance->RDP = INEA|BABL|CERR|MISS|MERR|IDON;#if 0    if (ariadne_debug > 4)	printk(KERN_DEBUG "%s: exiting interrupt, csr%d=%#4.4x.\n", dev->name,	       lance->RAP, lance->RDP);#endif    return IRQ_RETVAL(handled);}static void ariadne_tx_timeout(struct net_device *dev){    volatile struct Am79C960 *lance = (struct Am79C960*)dev->base_addr;    printk(KERN_ERR "%s: transmit timed out, status %4.4x, resetting.\n",	   dev->name, lance->RDP);    ariadne_reset(dev);    netif_wake_queue(dev);}static int ariadne_start_xmit(struct sk_buff *skb, struct net_device *dev){    struct ariadne_private *priv = netdev_priv(dev);    volatile struct Am79C960 *lance = (struct Am79C960*)dev->base_addr;    int entry;    unsigned long flags;    int len = skb->len;#if 0    if (ariadne_debug > 3) {	lance->RAP = CSR0;	/* PCnet-ISA Controller Status */	printk(KERN_DEBUG "%s: ariadne_start_xmit() called, csr0 %4.4x.\n",	       dev->name, lance->RDP);	lance->RDP = 0x0000;    }#endif    /* FIXME: is the 79C960 new enough to do its own padding right ? */    if (skb->len < ETH_ZLEN)    {    	if (skb_padto(skb, ETH_ZLEN))    	    return 0;    	len = ETH_ZLEN;    }    /* Fill in a Tx ring entry */#if 0{    DECLARE_MAC_BUF(mac);    DECLARE_MAC_BUF(mac2);    printk(KERN_DEBUG "TX pkt type 0x%04x from %s to %s "	   " data 0x%08x len %d\n",	   ((u_short *)skb->data)[6],	   print_mac(mac, ((const u8 *)skb->data)+6),	   print_mac(mac, (const u8 *)skb->data),	   (int)skb->data, (int)skb->len);}#endif    local_irq_save(flags);    entry = priv->cur_tx % TX_RING_SIZE;    /* Caution: the write order is important here, set the base address with		the "ownership" bits last. */    priv->tx_ring[entry]->TMD2 = swapw((u_short)-skb->len);    priv->tx_ring[entry]->TMD3 = 0x0000;    memcpyw(priv->tx_buff[entry], (u_short *)skb->data, len);#if 0    {	int i, len;	len = skb->len > 64 ? 64 : skb->len;	len >>= 1;	for (i = 0; i < len; i += 8) {	    int j;	    printk(KERN_DEBUG "%04x:", i);	    for (j = 0; (j < 8) && ((i+j) < len); j++) {		if (!(j & 1))		    printk(" ");		printk("%04x", priv->tx_buff[entry][i+j]);	    }	    printk("\n");	}    }#endif    priv->tx_ring[entry]->TMD1 = (priv->tx_ring[entry]->TMD1&0xff00)|TF_OWN|TF_STP|TF_ENP;    dev_kfree_skb(skb);    priv->cur_tx++;    if ((priv->cur_tx >= TX_RING_SIZE) && (priv->dirty_tx >= TX_RING_SIZE)) {#if 0	printk(KERN_DEBUG "*** Subtracting TX_RING_SIZE from cur_tx (%d) and "	       "dirty_tx (%d)\n", priv->cur_tx, priv->dirty_tx);#endif	priv->cur_tx -= TX_RING_SIZE;	priv->dirty_tx -= TX_RING_SIZE;    }    priv->stats.tx_bytes += len;    /* Trigger an immediate send poll. */    lance->RAP = CSR0;		/* PCnet-ISA Controller Status */    lance->RDP = INEA|TDMD;    dev->trans_start = jiffies;    if (lowb(priv->tx_ring[(entry+1) % TX_RING_SIZE]->TMD1) != 0) {	netif_stop_queue(dev);	priv->tx_full = 1;    }    local_irq_restore(flags);    return 0;}static int ariadne_rx(struct net_device *dev){    struct ariadne_private *priv = netdev_priv(dev);    int entry = priv->cur_rx % RX_RING_SIZE;    int i;    /* If we own the next entry, it's a new packet. Send it up. */    while (!(lowb(priv->rx_ring[entry]->RMD1) & RF_OWN)) {	int status = lowb(priv->rx_ring[entry]->RMD1);	if (status != (RF_STP|RF_ENP)) {	/* There was an error. */	    /* There is a tricky error noted by John Murphy,		<murf@perftech.com> to Russ Nelson: Even with full-sized		buffers it's possible for a jabber packet to use two		buffers, with only the last correctly noting the error. */	    if (status & RF_ENP)		/* Only count a general error at the end of a packet.*/		priv->stats.rx_errors++;	    if (status & RF_FRAM)		priv->stats.rx_frame_errors++;	    if (status & RF_OFLO)		priv->stats.rx_over_errors++;	    if (status & RF_CRC)		priv->stats.rx_crc_errors++;	    if (status & RF_BUFF)		priv->stats.rx_fifo_errors++;	    priv->rx_ring[entry]->RMD1 &= 0xff00|RF_STP|RF_ENP;	} else {	    /* Malloc up new buffer, compatible with net-3. */	    short pkt_len = swapw(priv->rx_ring[entry]->RMD3);	    struct sk_buff *skb;	    skb = dev_alloc_skb(pkt_len+2);	    if (skb == NULL) {		printk(KERN_WARNING "%s: Memory squeeze, deferring packet.\n",		       dev->name);		for (i = 0; i < RX_RING_SIZE; i++)		    if (lowb(priv->rx_ring[(entry+i) % RX_RING_SIZE]->RMD1) & RF_OWN)			break;		if (i > RX_RING_SIZE-2) {		    priv->stats.rx_dropped++;		    priv->rx_ring[entry]->RMD1 |= RF_OWN;		    priv->cur_rx++;		}		break;	    }	    skb_reserve(skb,2);		/* 16 byte align */	    skb_put(skb,pkt_len);	/* Make room */	    skb_copy_to_linear_data(skb, (char *)priv->rx_buff[entry], pkt_len);	    skb->protocol=eth_type_trans(skb,dev);#if 0{	    DECLARE_MAC_BUF(mac);	    printk(KERN_DEBUG "RX pkt type 0x%04x from ",		   ((u_short *)skb->data)[6]);	    {		u_char *ptr = &((u_char *)skb->data)[6];		printk("%s", print_mac(mac, ptr));	    }	    printk(" to ");	    {		u_char *ptr = (u_char *)skb->data;		printk("%s", print_mac(mac, ptr));	    }	    printk(" data 0x%08x len %d\n", (int)skb->data, (int)skb->len);}#endif	    netif_rx(skb);	    dev->last_rx = jiffies;	    priv->stats.rx_packets++;	    priv->stats.rx_bytes += pkt_len;	}	priv->rx_ring[entry]->RMD1 |= RF_OWN;	entry = (++priv->cur_rx) % RX_RING_SIZE;    }    priv->cur_rx = priv->cur_rx % RX_RING_SIZE;    /* We should check that at least two ring entries are free.	 If not,       we should free one and mark stats->rx_dropped++. */    return 0;}static struct net_device_stats *ariadne_get_stats(struct net_device *dev){    struct ariadne_private *priv = netdev_priv(dev);    volatile struct Am79C960 *lance = (struct Am79C960*)dev->base_addr;    short saved_addr;    unsigned long flags;    local_irq_save(flags);    saved_addr = lance->RAP;    lance->RAP = CSR112;		/* Missed Frame Count */    priv->stats.rx_missed_errors = swapw(lance->RDP);    lance->RAP = saved_addr;    local_irq_restore(flags);    return &priv->stats;}/* Set or clear the multicast filter for this adaptor.    num_addrs == -1	Promiscuous mode, receive all packets    num_addrs == 0	Normal mode, clear multicast list    num_addrs > 0	Multicast mode, receive normal and MC packets, and do			best-effort filtering. */static void set_multicast_list(struct net_device *dev){    volatile struct Am79C960 *lance = (struct Am79C960*)dev->base_addr;    if (!netif_running(dev))	return;    netif_stop_queue(dev);    /* We take the simple way out and always enable promiscuous mode. */    lance->RAP = CSR0;			/* PCnet-ISA Controller Status */    lance->RDP = STOP;			/* Temporarily stop the lance. */    ariadne_init_ring(dev);    if (dev->flags & IFF_PROMISC) {	lance->RAP = CSR15;		/* Mode Register */	lance->RDP = PROM;		/* Set promiscuous mode */    } else {	short multicast_table[4];	int num_addrs = dev->mc_count;	int i;	/* We don't use the multicast table, but rely on upper-layer filtering. */	memset(multicast_table, (num_addrs == 0) ? 0 : -1,	       sizeof(multicast_table));	for (i = 0; i < 4; i++) {	    lance->RAP = CSR8+(i<<8);	/* Logical Address Filter */	    lance->RDP = swapw(multicast_table[i]);	}	lance->RAP = CSR15;		/* Mode Register */	lance->RDP = 0x0000;		/* Unset promiscuous mode */    }    lance->RAP = CSR0;			/* PCnet-ISA Controller Status */    lance->RDP = INEA|STRT|IDON;	/* Resume normal operation. */    netif_wake_queue(dev);}static void __devexit ariadne_remove_one(struct zorro_dev *z){    struct net_device *dev = zorro_get_drvdata(z);    unregister_netdev(dev);    release_mem_region(ZTWO_PADDR(dev->base_addr), sizeof(struct Am79C960));    release_mem_region(ZTWO_PADDR(dev->mem_start), ARIADNE_RAM_SIZE);    free_netdev(dev);}static int __init ariadne_init_module(void){    return zorro_register_driver(&ariadne_driver);}static void __exit ariadne_cleanup_module(void){    zorro_unregister_driver(&ariadne_driver);}module_init(ariadne_init_module);module_exit(ariadne_cleanup_module);MODULE_LICENSE("GPL");

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?