if_wb.c

来自「基于组件方式开发操作系统的OSKIT源代码」· C语言 代码 · 共 2,152 行 · 第 1/4 页

C
2,152
字号
/* * Copyright (c) 1997, 1998 *	Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *	This product includes software developed by Bill Paul. * 4. Neither the name of the author nor the names of any co-contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * *	$Id: if_wb.c,v 1.6.2.2 1999/05/13 21:19:31 wpaul Exp $ *//* * Winbond fast ethernet PCI NIC driver * * Supports various cheap network adapters based on the Winbond W89C840F * fast ethernet controller chip. This includes adapters manufactured by * Winbond itself and some made by Linksys. * * Written by Bill Paul <wpaul@ctr.columbia.edu> * Electrical Engineering Department * Columbia University, New York City *//* * The Winbond W89C840F chip is a bus master; in some ways it resembles * a DEC 'tulip' chip, only not as complicated. Unfortunately, it has * one major difference which is that while the registers do many of * the same things as a tulip adapter, the offsets are different: where * tulip registers are typically spaced 8 bytes apart, the Winbond * registers are spaced 4 bytes apart. The receiver filter is also * programmed differently. *  * Like the tulip, the Winbond chip uses small descriptors containing * a status word, a control word and 32-bit areas that can either be used * to point to two external data blocks, or to point to a single block * and another descriptor in a linked list. Descriptors can be grouped * together in blocks to form fixed length rings or can be chained * together in linked lists. A single packet may be spread out over * several descriptors if necessary. * * For the receive ring, this driver uses a linked list of descriptors, * each pointing to a single mbuf cluster buffer, which us large enough * to hold an entire packet. The link list is looped back to created a * closed ring. * * For transmission, the driver creates a linked list of 'super descriptors' * which each contain several individual descriptors linked toghether. * Each 'super descriptor' contains WB_MAXFRAGS descriptors, which we * abuse as fragment pointers. This allows us to use a buffer managment * scheme very similar to that used in the ThunderLAN and Etherlink XL * drivers. * * Autonegotiation is performed using the external PHY via the MII bus. * The sample boards I have all use a Davicom PHY. * * Note: the author of the Linux driver for the Winbond chip alludes * to some sort of flaw in the chip's design that seems to mandate some * drastic workaround which signigicantly impairs transmit performance. * I have no idea what he's on about: transmit performance with all * three of my test boards seems fine. */#include "bpfilter.h"#include <sys/param.h>#include <sys/systm.h>#include <sys/sockio.h>#include <sys/mbuf.h>#include <sys/malloc.h>#include <sys/kernel.h>#include <sys/socket.h>#include <net/if.h>#include <net/if_arp.h>#include <net/ethernet.h>#include <net/if_dl.h>#include <net/if_media.h>#if NBPFILTER > 0#include <net/bpf.h>#endif#include <vm/vm.h>              /* for vtophys */#include <vm/pmap.h>            /* for vtophys */#include <machine/clock.h>      /* for DELAY */#include <machine/bus_memio.h>#include <machine/bus_pio.h>#include <machine/bus.h>#include <pci/pcireg.h>#include <pci/pcivar.h>#define WB_USEIOSPACE/* #define WB_BACKGROUND_AUTONEG */#include <pci/if_wbreg.h>#ifndef lintstatic const char rcsid[] =	"$Id: if_wb.c,v 1.6.2.2 1999/05/13 21:19:31 wpaul Exp $";#endif/* * Various supported device vendors/types and their names. */static struct wb_type wb_devs[] = {	{ WB_VENDORID, WB_DEVICEID_840F,		"Winbond W89C840F 10/100BaseTX" },	{ CP_VENDORID, CP_DEVICEID_RL100,		"Compex RL100-ATX 10/100baseTX" },	{ 0, 0, NULL }};/* * Various supported PHY vendors/types and their names. Note that * this driver will work with pretty much any MII-compliant PHY, * so failure to positively identify the chip is not a fatal error. */static struct wb_type wb_phys[] = {	{ TI_PHY_VENDORID, TI_PHY_10BT, "<TI ThunderLAN 10BT (internal)>" },	{ TI_PHY_VENDORID, TI_PHY_100VGPMI, "<TI TNETE211 100VG Any-LAN>" },	{ NS_PHY_VENDORID, NS_PHY_83840A, "<National Semiconductor DP83840A>"},	{ LEVEL1_PHY_VENDORID, LEVEL1_PHY_LXT970, "<Level 1 LXT970>" }, 	{ INTEL_PHY_VENDORID, INTEL_PHY_82555, "<Intel 82555>" },	{ SEEQ_PHY_VENDORID, SEEQ_PHY_80220, "<SEEQ 80220>" },	{ 0, 0, "<MII-compliant physical interface>" }};static unsigned long wb_count = 0;static const char *wb_probe	__P((pcici_t, pcidi_t));static void wb_attach		__P((pcici_t, int));static int wb_newbuf		__P((struct wb_softc *,						struct wb_chain_onefrag *));static int wb_encap		__P((struct wb_softc *, struct wb_chain *,						struct mbuf *));static void wb_rxeof		__P((struct wb_softc *));static void wb_rxeoc		__P((struct wb_softc *));static void wb_txeof		__P((struct wb_softc *));static void wb_txeoc		__P((struct wb_softc *));static void wb_intr		__P((void *));static void wb_start		__P((struct ifnet *));static int wb_ioctl		__P((struct ifnet *, u_long, caddr_t));static void wb_init		__P((void *));static void wb_stop		__P((struct wb_softc *));static void wb_watchdog		__P((struct ifnet *));static void wb_shutdown		__P((int, void *));static int wb_ifmedia_upd	__P((struct ifnet *));static void wb_ifmedia_sts	__P((struct ifnet *, struct ifmediareq *));static void wb_eeprom_putbyte	__P((struct wb_softc *, int));static void wb_eeprom_getword	__P((struct wb_softc *, int, u_int16_t *));static void wb_read_eeprom	__P((struct wb_softc *, caddr_t, int,							int, int));static void wb_mii_sync		__P((struct wb_softc *));static void wb_mii_send		__P((struct wb_softc *, u_int32_t, int));static int wb_mii_readreg	__P((struct wb_softc *, struct wb_mii_frame *));static int wb_mii_writereg	__P((struct wb_softc *, struct wb_mii_frame *));static u_int16_t wb_phy_readreg	__P((struct wb_softc *, int));static void wb_phy_writereg	__P((struct wb_softc *, int, int));static void wb_autoneg_xmit	__P((struct wb_softc *));static void wb_autoneg_mii	__P((struct wb_softc *, int, int));static void wb_setmode_mii	__P((struct wb_softc *, int));static void wb_getmode_mii	__P((struct wb_softc *));static void wb_setcfg		__P((struct wb_softc *, int));static u_int8_t wb_calchash	__P((caddr_t));static void wb_setmulti		__P((struct wb_softc *));static void wb_reset		__P((struct wb_softc *));static int wb_list_rx_init	__P((struct wb_softc *));static int wb_list_tx_init	__P((struct wb_softc *));#define WB_SETBIT(sc, reg, x)				\	CSR_WRITE_4(sc, reg,				\		CSR_READ_4(sc, reg) | x)#define WB_CLRBIT(sc, reg, x)				\	CSR_WRITE_4(sc, reg,				\		CSR_READ_4(sc, reg) & ~x)#define SIO_SET(x)					\	CSR_WRITE_4(sc, WB_SIO,				\		CSR_READ_4(sc, WB_SIO) | x)#define SIO_CLR(x)					\	CSR_WRITE_4(sc, WB_SIO,				\		CSR_READ_4(sc, WB_SIO) & ~x)/* * Send a read command and address to the EEPROM, check for ACK. */static void wb_eeprom_putbyte(sc, addr)	struct wb_softc		*sc;	int			addr;{	register int		d, i;	d = addr | WB_EECMD_READ;	/*	 * Feed in each bit and stobe the clock.	 */	for (i = 0x400; i; i >>= 1) {		if (d & i) {			SIO_SET(WB_SIO_EE_DATAIN);		} else {			SIO_CLR(WB_SIO_EE_DATAIN);		}		DELAY(100);		SIO_SET(WB_SIO_EE_CLK);		DELAY(150);		SIO_CLR(WB_SIO_EE_CLK);		DELAY(100);	}	return;}/* * Read a word of data stored in the EEPROM at address 'addr.' */static void wb_eeprom_getword(sc, addr, dest)	struct wb_softc		*sc;	int			addr;	u_int16_t		*dest;{	register int		i;	u_int16_t		word = 0;	/* Enter EEPROM access mode. */	CSR_WRITE_4(sc, WB_SIO, WB_SIO_EESEL|WB_SIO_EE_CS);	/*	 * Send address of word we want to read.	 */	wb_eeprom_putbyte(sc, addr);	CSR_WRITE_4(sc, WB_SIO, WB_SIO_EESEL|WB_SIO_EE_CS);	/*	 * Start reading bits from EEPROM.	 */	for (i = 0x8000; i; i >>= 1) {		SIO_SET(WB_SIO_EE_CLK);		DELAY(100);		if (CSR_READ_4(sc, WB_SIO) & WB_SIO_EE_DATAOUT)			word |= i;		SIO_CLR(WB_SIO_EE_CLK);		DELAY(100);	}	/* Turn off EEPROM access mode. */	CSR_WRITE_4(sc, WB_SIO, 0);	*dest = word;	return;}/* * Read a sequence of words from the EEPROM. */static void wb_read_eeprom(sc, dest, off, cnt, swap)	struct wb_softc		*sc;	caddr_t			dest;	int			off;	int			cnt;	int			swap;{	int			i;	u_int16_t		word = 0, *ptr;	for (i = 0; i < cnt; i++) {		wb_eeprom_getword(sc, off + i, &word);		ptr = (u_int16_t *)(dest + (i * 2));		if (swap)			*ptr = ntohs(word);		else			*ptr = word;	}	return;}/* * Sync the PHYs by setting data bit and strobing the clock 32 times. */static void wb_mii_sync(sc)	struct wb_softc		*sc;{	register int		i;	SIO_SET(WB_SIO_MII_DIR|WB_SIO_MII_DATAIN);	for (i = 0; i < 32; i++) {		SIO_SET(WB_SIO_MII_CLK);		DELAY(1);		SIO_CLR(WB_SIO_MII_CLK);		DELAY(1);	}	return;}/* * Clock a series of bits through the MII. */static void wb_mii_send(sc, bits, cnt)	struct wb_softc		*sc;	u_int32_t		bits;	int			cnt;{	int			i;	SIO_CLR(WB_SIO_MII_CLK);	for (i = (0x1 << (cnt - 1)); i; i >>= 1) {                if (bits & i) {			SIO_SET(WB_SIO_MII_DATAIN);                } else {			SIO_CLR(WB_SIO_MII_DATAIN);                }		DELAY(1);		SIO_CLR(WB_SIO_MII_CLK);		DELAY(1);		SIO_SET(WB_SIO_MII_CLK);	}}/* * Read an PHY register through the MII. */static int wb_mii_readreg(sc, frame)	struct wb_softc		*sc;	struct wb_mii_frame	*frame;	{	int			i, ack, s;	s = splimp();	/*	 * Set up frame for RX.	 */	frame->mii_stdelim = WB_MII_STARTDELIM;	frame->mii_opcode = WB_MII_READOP;	frame->mii_turnaround = 0;	frame->mii_data = 0;		CSR_WRITE_4(sc, WB_SIO, 0);	/* 	 * Turn on data xmit.	 */	SIO_SET(WB_SIO_MII_DIR);	wb_mii_sync(sc);	/*	 * Send command/address info.	 */	wb_mii_send(sc, frame->mii_stdelim, 2);	wb_mii_send(sc, frame->mii_opcode, 2);	wb_mii_send(sc, frame->mii_phyaddr, 5);	wb_mii_send(sc, frame->mii_regaddr, 5);	/* Idle bit */	SIO_CLR((WB_SIO_MII_CLK|WB_SIO_MII_DATAIN));	DELAY(1);	SIO_SET(WB_SIO_MII_CLK);	DELAY(1);	/* Turn off xmit. */	SIO_CLR(WB_SIO_MII_DIR);	/* Check for ack */	SIO_CLR(WB_SIO_MII_CLK);	DELAY(1);	SIO_SET(WB_SIO_MII_CLK);	DELAY(1);	ack = CSR_READ_4(sc, WB_SIO) & WB_SIO_MII_DATAOUT;	SIO_CLR(WB_SIO_MII_CLK);	DELAY(1);	SIO_SET(WB_SIO_MII_CLK);	DELAY(1);	/*	 * Now try reading data bits. If the ack failed, we still	 * need to clock through 16 cycles to keep the PHY(s) in sync.	 */	if (ack) {		for(i = 0; i < 16; i++) {			SIO_CLR(WB_SIO_MII_CLK);			DELAY(1);			SIO_SET(WB_SIO_MII_CLK);			DELAY(1);		}		goto fail;	}	for (i = 0x8000; i; i >>= 1) {		SIO_CLR(WB_SIO_MII_CLK);		DELAY(1);		if (!ack) {			if (CSR_READ_4(sc, WB_SIO) & WB_SIO_MII_DATAOUT)				frame->mii_data |= i;			DELAY(1);		}		SIO_SET(WB_SIO_MII_CLK);		DELAY(1);	}fail:	SIO_CLR(WB_SIO_MII_CLK);	DELAY(1);	SIO_SET(WB_SIO_MII_CLK);	DELAY(1);	splx(s);	if (ack)		return(1);	return(0);}/* * Write to a PHY register through the MII. */static int wb_mii_writereg(sc, frame)	struct wb_softc		*sc;	struct wb_mii_frame	*frame;	{	int			s;	s = splimp();	/*	 * Set up frame for TX.	 */	frame->mii_stdelim = WB_MII_STARTDELIM;	frame->mii_opcode = WB_MII_WRITEOP;	frame->mii_turnaround = WB_MII_TURNAROUND;		/* 	 * Turn on data output.	 */	SIO_SET(WB_SIO_MII_DIR);	wb_mii_sync(sc);	wb_mii_send(sc, frame->mii_stdelim, 2);	wb_mii_send(sc, frame->mii_opcode, 2);	wb_mii_send(sc, frame->mii_phyaddr, 5);	wb_mii_send(sc, frame->mii_regaddr, 5);	wb_mii_send(sc, frame->mii_turnaround, 2);	wb_mii_send(sc, frame->mii_data, 16);	/* Idle bit. */	SIO_SET(WB_SIO_MII_CLK);	DELAY(1);	SIO_CLR(WB_SIO_MII_CLK);	DELAY(1);	/*	 * Turn off xmit.	 */	SIO_CLR(WB_SIO_MII_DIR);	splx(s);	return(0);}static u_int16_t wb_phy_readreg(sc, reg)	struct wb_softc		*sc;	int			reg;{	struct wb_mii_frame	frame;	bzero((char *)&frame, sizeof(frame));	frame.mii_phyaddr = sc->wb_phy_addr;	frame.mii_regaddr = reg;	wb_mii_readreg(sc, &frame);	return(frame.mii_data);}static void wb_phy_writereg(sc, reg, data)	struct wb_softc		*sc;	int			reg;	int			data;{	struct wb_mii_frame	frame;	bzero((char *)&frame, sizeof(frame));	frame.mii_phyaddr = sc->wb_phy_addr;	frame.mii_regaddr = reg;	frame.mii_data = data;	wb_mii_writereg(sc, &frame);	return;}static u_int8_t wb_calchash(addr)	caddr_t			addr;{	u_int32_t		crc, carry;	int			i, j;

⌨️ 快捷键说明

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