⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 a2065.c

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Amiga Linux/68k A2065 Ethernet Driver * * (C) Copyright 1995 by Geert Uytterhoeven <geert@linux-m68k.org> * * Fixes and tips by: *	- Janos Farkas (CHEXUM@sparta.banki.hu) *	- Jes Degn Soerensen (jds@kom.auc.dk) * * ---------------------------------------------------------------------------- * * This program is based on * *	ariadne.?:	Amiga Linux/68k Ariadne Ethernet Driver *			(C) Copyright 1995 by Geert Uytterhoeven, *                                            Peter De Schrijver * *	lance.c:	An AMD LANCE ethernet driver for linux. *			Written 1993-94 by Donald Becker. * *	Am79C960:	PCnet(tm)-ISA Single-Chip Ethernet Controller *			Advanced Micro Devices *			Publication #16907, Rev. B, Amendment/0, May 1994 * * ---------------------------------------------------------------------------- * * This file is subject to the terms and conditions of the GNU General Public * License.  See the file COPYING in the main directory of the Linux * distribution for more details. * * ---------------------------------------------------------------------------- * * The A2065 is a Zorro-II board made by Commodore/Ameristar. It contains: * *	- an Am7990 Local Area Network Controller for Ethernet (LANCE) with *	  both 10BASE-2 (thin coax) and AUI (DB-15) connectors */#include <linux/module.h>#include <linux/stddef.h>#include <linux/kernel.h>#include <linux/sched.h>#include <linux/interrupt.h>#include <linux/ptrace.h>#include <linux/ioport.h>#include <linux/malloc.h>#include <linux/string.h>#include <linux/config.h>#include <linux/init.h>#include <asm/bitops.h>#include <asm/io.h>#include <asm/irq.h>#include <linux/errno.h>#include <asm/amigaints.h>#include <asm/amigahw.h>#include <linux/zorro.h>#include <linux/netdevice.h>#include <linux/etherdevice.h>#include <linux/skbuff.h>#include "a2065.h"	/*	 *		Transmit/Receive Ring Definitions	 */#define LANCE_LOG_TX_BUFFERS	(2)#define LANCE_LOG_RX_BUFFERS	(4)#define TX_RING_SIZE		(1<<LANCE_LOG_TX_BUFFERS)#define RX_RING_SIZE		(1<<LANCE_LOG_RX_BUFFERS)#define TX_RING_MOD_MASK	(TX_RING_SIZE-1)#define RX_RING_MOD_MASK	(RX_RING_SIZE-1)#define PKT_BUF_SIZE		(1544)#define RX_BUFF_SIZE            PKT_BUF_SIZE#define TX_BUFF_SIZE            PKT_BUF_SIZE	/*	 *		Layout of the Lance's RAM Buffer	 */struct lance_init_block {	unsigned short mode;		/* Pre-set mode (reg. 15) */	unsigned char phys_addr[6];     /* Physical ethernet address */	unsigned filter[2];		/* Multicast filter. */	/* Receive and transmit ring base, along with extra bits. */	unsigned short rx_ptr;		/* receive descriptor addr */	unsigned short rx_len;		/* receive len and high addr */	unsigned short tx_ptr;		/* transmit descriptor addr */	unsigned short tx_len;		/* transmit len and high addr */    	/* The Tx and Rx ring entries must aligned on 8-byte boundaries. */	struct lance_rx_desc brx_ring[RX_RING_SIZE];	struct lance_tx_desc btx_ring[TX_RING_SIZE];	char   rx_buf [RX_RING_SIZE][RX_BUFF_SIZE];	char   tx_buf [TX_RING_SIZE][TX_BUFF_SIZE];};	/*	 *		Private Device Data	 */struct lance_private {	char *name;	volatile struct lance_regs *ll;	volatile struct lance_init_block *init_block;	    /* Hosts view */	volatile struct lance_init_block *lance_init_block; /* Lance view */	int rx_new, tx_new;	int rx_old, tx_old;    	int lance_log_rx_bufs, lance_log_tx_bufs;	int rx_ring_mod_mask, tx_ring_mod_mask;	struct net_device_stats stats;	int tpe;		      /* cable-selection is TPE */	int auto_select;	      /* cable-selection by carrier */	unsigned short busmaster_regval;#ifdef CONFIG_SUNLANCE	struct Linux_SBus_DMA *ledma; /* if set this points to ledma and arch=4m */	int burst_sizes;	      /* ledma SBus burst sizes */#endif	struct timer_list         multicast_timer;	struct net_device *dev;		/* Backpointer */	struct lance_private *next_module;};#ifdef MODULEstatic struct lance_private *root_a2065_dev = NULL;#endif#define TX_BUFFS_AVAIL ((lp->tx_old<=lp->tx_new)?\			lp->tx_old+lp->tx_ring_mod_mask-lp->tx_new:\			lp->tx_old - lp->tx_new-1)#define LANCE_ADDR(x) ((int)(x) & ~0xff000000)/* Load the CSR registers */static void load_csrs (struct lance_private *lp){	volatile struct lance_regs *ll = lp->ll;	volatile struct lance_init_block *aib = lp->lance_init_block;	int leptr;	leptr = LANCE_ADDR (aib);	ll->rap = LE_CSR1;	ll->rdp = (leptr & 0xFFFF);	ll->rap = LE_CSR2;	ll->rdp = leptr >> 16;	ll->rap = LE_CSR3;	ll->rdp = lp->busmaster_regval;	/* Point back to csr0 */	ll->rap = LE_CSR0;}#define ZERO 0/* Setup the Lance Rx and Tx rings */static void lance_init_ring (struct net_device *dev){	struct lance_private *lp = (struct lance_private *) dev->priv;	volatile struct lance_init_block *ib = lp->init_block;	volatile struct lance_init_block *aib; /* for LANCE_ADDR computations */	int leptr;	int i;	aib = lp->lance_init_block;	/* Lock out other processes while setting up hardware */	netif_stop_queue(dev);	lp->rx_new = lp->tx_new = 0;	lp->rx_old = lp->tx_old = 0;	ib->mode = 0;	/* Copy the ethernet address to the lance init block	 * Note that on the sparc you need to swap the ethernet address.	 */	ib->phys_addr [0] = dev->dev_addr [1];	ib->phys_addr [1] = dev->dev_addr [0];	ib->phys_addr [2] = dev->dev_addr [3];	ib->phys_addr [3] = dev->dev_addr [2];	ib->phys_addr [4] = dev->dev_addr [5];	ib->phys_addr [5] = dev->dev_addr [4];	if (ZERO)		printk ("TX rings:\n");    	/* Setup the Tx ring entries */	for (i = 0; i <= (1<<lp->lance_log_tx_bufs); i++) {		leptr = LANCE_ADDR(&aib->tx_buf[i][0]);		ib->btx_ring [i].tmd0      = leptr;		ib->btx_ring [i].tmd1_hadr = leptr >> 16;		ib->btx_ring [i].tmd1_bits = 0;		ib->btx_ring [i].length    = 0xf000; /* The ones required by tmd2 */		ib->btx_ring [i].misc      = 0;		if (i < 3)			if (ZERO) printk ("%d: 0x%8.8x\n", i, leptr);	}	/* Setup the Rx ring entries */	if (ZERO)		printk ("RX rings:\n");	for (i = 0; i < (1<<lp->lance_log_rx_bufs); i++) {		leptr = LANCE_ADDR(&aib->rx_buf[i][0]);		ib->brx_ring [i].rmd0      = leptr;		ib->brx_ring [i].rmd1_hadr = leptr >> 16;		ib->brx_ring [i].rmd1_bits = LE_R1_OWN;		ib->brx_ring [i].length    = -RX_BUFF_SIZE | 0xf000;		ib->brx_ring [i].mblength  = 0;		if (i < 3 && ZERO)			printk ("%d: 0x%8.8x\n", i, leptr);	}	/* Setup the initialization block */    	/* Setup rx descriptor pointer */	leptr = LANCE_ADDR(&aib->brx_ring);	ib->rx_len = (lp->lance_log_rx_bufs << 13) | (leptr >> 16);	ib->rx_ptr = leptr;	if (ZERO)		printk ("RX ptr: %8.8x\n", leptr);    	/* Setup tx descriptor pointer */	leptr = LANCE_ADDR(&aib->btx_ring);	ib->tx_len = (lp->lance_log_tx_bufs << 13) | (leptr >> 16);	ib->tx_ptr = leptr;	if (ZERO)		printk ("TX ptr: %8.8x\n", leptr);	/* Clear the multicast filter */	ib->filter [0] = 0;	ib->filter [1] = 0;}static int init_restart_lance (struct lance_private *lp){	volatile struct lance_regs *ll = lp->ll;	int i;	ll->rap = LE_CSR0;	ll->rdp = LE_C0_INIT;	/* Wait for the lance to complete initialization */	for (i = 0; (i < 100) && !(ll->rdp & (LE_C0_ERR | LE_C0_IDON)); i++)		barrier();	if ((i == 100) || (ll->rdp & LE_C0_ERR)) {		printk ("LANCE unopened after %d ticks, csr0=%4.4x.\n", i, ll->rdp);		return -EIO;	}	/* Clear IDON by writing a "1", enable interrupts and start lance */	ll->rdp = LE_C0_IDON;	ll->rdp = LE_C0_INEA | LE_C0_STRT;	return 0;}static int lance_rx (struct net_device *dev){	struct lance_private *lp = (struct lance_private *) dev->priv;	volatile struct lance_init_block *ib = lp->init_block;	volatile struct lance_regs *ll = lp->ll;	volatile struct lance_rx_desc *rd;	unsigned char bits;	int len = 0;			/* XXX shut up gcc warnings */	struct sk_buff *skb = 0;	/* XXX shut up gcc warnings */#ifdef TEST_HITS	printk ("[");	for (i = 0; i < RX_RING_SIZE; i++) {		if (i == lp->rx_new)			printk ("%s",				ib->brx_ring [i].rmd1_bits & LE_R1_OWN ? "_" : "X");		else			printk ("%s",				ib->brx_ring [i].rmd1_bits & LE_R1_OWN ? "." : "1");	}	printk ("]");#endif    	ll->rdp = LE_C0_RINT|LE_C0_INEA;	for (rd = &ib->brx_ring [lp->rx_new];	     !((bits = rd->rmd1_bits) & LE_R1_OWN);	     rd = &ib->brx_ring [lp->rx_new]) {		/* We got an incomplete frame? */		if ((bits & LE_R1_POK) != LE_R1_POK) {			lp->stats.rx_over_errors++;			lp->stats.rx_errors++;			continue;		} else if (bits & LE_R1_ERR) {			/* Count only the end frame as a rx error,			 * not the beginning			 */			if (bits & LE_R1_BUF) lp->stats.rx_fifo_errors++;			if (bits & LE_R1_CRC) lp->stats.rx_crc_errors++;			if (bits & LE_R1_OFL) lp->stats.rx_over_errors++;			if (bits & LE_R1_FRA) lp->stats.rx_frame_errors++;			if (bits & LE_R1_EOP) lp->stats.rx_errors++;		} else {			len = (rd->mblength & 0xfff) - 4;			skb = dev_alloc_skb (len+2);			if (skb == 0) {				printk ("%s: Memory squeeze, deferring packet.\n",					dev->name);				lp->stats.rx_dropped++;				rd->mblength = 0;				rd->rmd1_bits = LE_R1_OWN;				lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask;				return 0;			}	    			skb->dev = dev;			skb_reserve (skb, 2);		/* 16 byte align */			skb_put (skb, len);		/* make room */			eth_copy_and_sum(skb,					 (unsigned char *)&(ib->rx_buf [lp->rx_new][0]),					 len, 0);			skb->protocol = eth_type_trans (skb, dev);			netif_rx (skb);			lp->stats.rx_packets++;		}		/* Return the packet to the pool */		rd->mblength = 0;		rd->rmd1_bits = LE_R1_OWN;		lp->rx_new = (lp->rx_new + 1) & lp->rx_ring_mod_mask;	}	return 0;}static int lance_tx (struct net_device *dev){	struct lance_private *lp = (struct lance_private *) dev->priv;	volatile struct lance_init_block *ib = lp->init_block;	volatile struct lance_regs *ll = lp->ll;	volatile struct lance_tx_desc *td;	int i, j;	int status;	/* csr0 is 2f3 */	ll->rdp = LE_C0_TINT | LE_C0_INEA;	/* csr0 is 73 */	j = lp->tx_old;	for (i = j; i != lp->tx_new; i = j) {		td = &ib->btx_ring [i];		/* If we hit a packet not owned by us, stop */		if (td->tmd1_bits & LE_T1_OWN)			break;				if (td->tmd1_bits & LE_T1_ERR) {			status = td->misc;	    			lp->stats.tx_errors++;			if (status & LE_T3_RTY)  lp->stats.tx_aborted_errors++;			if (status & LE_T3_LCOL) lp->stats.tx_window_errors++;			if (status & LE_T3_CLOS) {				lp->stats.tx_carrier_errors++;				if (lp->auto_select) {					lp->tpe = 1 - lp->tpe;					printk("%s: Carrier Lost, trying %s\n",					       dev->name, lp->tpe?"TPE":"AUI");					/* Stop the lance */					ll->rap = LE_CSR0;					ll->rdp = LE_C0_STOP;					lance_init_ring (dev);					load_csrs (lp);					init_restart_lance (lp);					return 0;				}			}			/* buffer errors and underflows turn off the transmitter */			/* Restart the adapter */			if (status & (LE_T3_BUF|LE_T3_UFL)) {				lp->stats.tx_fifo_errors++;				printk ("%s: Tx: ERR_BUF|ERR_UFL, restarting\n",					dev->name);				/* Stop the lance */				ll->rap = LE_CSR0;				ll->rdp = LE_C0_STOP;				lance_init_ring (dev);				load_csrs (lp);				init_restart_lance (lp);				return 0;			}		} else if ((td->tmd1_bits & LE_T1_POK) == LE_T1_POK) {			/*			 * So we don't count the packet more than once.			 */			td->tmd1_bits &= ~(LE_T1_POK);			/* One collision before packet was sent. */			if (td->tmd1_bits & LE_T1_EONE)				lp->stats.collisions++;			/* More than one collision, be optimistic. */			if (td->tmd1_bits & LE_T1_EMORE)

⌨️ 快捷键说明

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